source: rtems/c/src/lib/libbsp/powerpc/score603e/PCI_bus/PCI.h @ 2039926

4.115
Last change on this file since 2039926 was 2039926, checked in by Joel Sherrill <joel.sherrill@…>, on 05/02/12 at 19:17:01

score603e - Remove bad $Id$ and clean up file header

  • Property mode set to 100644
File size: 733 bytes
Line 
1/**
2 *  @file
3 *
4 *  This include file contains prototypes for chips attached to the
5 *  PCI bus.
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2009.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 */
16
17#ifndef __PCI_h
18#define __PCI_h
19
20/*
21 * PCI.c
22 */
23
24void PCI_bus_write(
25  volatile uint32_t         * _addr,
26  uint32_t         _data
27);
28
29uint32_t         PCI_bus_read(
30  volatile uint32_t         *  _addr
31);
32
33uint32_t         Read_pci_device_register(
34  uint32_t         address
35);
36
37void  Write_pci_device_register(
38  uint32_t         address,
39  uint32_t         data
40);
41
42#endif
Note: See TracBrowser for help on using the repository browser.