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

4.104.114.84.95
Last change on this file since 9c448e1 was 9c448e1, checked in by Joel Sherrill <joel.sherrill@…>, on 02/19/99 at 00:22:33

BSP for Vista Score603e added.

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