summaryrefslogtreecommitdiffstats
path: root/cpukit/include/pci/cfg_static.h
blob: 12a1264911610e6ab2ec69cbf3126dd66a67cdd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * @file
 *
 * @brief Static PCI Auto Configuration Library
 */

/*
 * COPYRIGHT (c) 2010 Cobham Gaisler AB.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#ifndef __PCI_CFG_STATIC_H__
#define __PCI_CFG_STATIC_H__

/* This function initializes all buses and device accorind to a user defined
 * "static" configuration. The configuration can manually created with C
 * data structures. Or it can be automatically created on a running target
 * using the pci_cfg_print() routine after the AUTO or READ Configuration
 * Library has setup the PCI bus
 */
extern int pci_config_static(void);

#endif