1 | /*
|
---|
2 | * Copyright 2004, Egbert Eich
|
---|
3 | *
|
---|
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy
|
---|
5 | * of this software and associated documentation files (the "Software"), to
|
---|
6 | * deal in the Software without restriction, including without limitation the
|
---|
7 | * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
---|
8 | * sell copies of the Software, and to permit persons to whom the Software is
|
---|
9 | * furnished to do so, subject to the following conditions:
|
---|
10 | *
|
---|
11 | * The above copyright notice and this permission notice shall be included in
|
---|
12 | * all copies or substantial portions of the Software.
|
---|
13 | *
|
---|
14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
---|
17 | * EGBERT EICH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
---|
18 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
|
---|
19 | * NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
---|
20 | *
|
---|
21 | * Except as contained in this notice, the name of Egbert Eich shall not
|
---|
22 | * be used in advertising or otherwise to promote the sale, use or other deal-
|
---|
23 | *ings in this Software without prior written authorization from Egbert Eich.
|
---|
24 | *
|
---|
25 | */
|
---|
26 | #ifdef HAVE_XORG_CONFIG_H
|
---|
27 | #include <xorg-config.h>
|
---|
28 | #endif
|
---|
29 |
|
---|
30 | #ifndef _IA64_PCI_H
|
---|
31 | # define _IA64_PCI_H
|
---|
32 |
|
---|
33 | #include "Pci.h"
|
---|
34 |
|
---|
35 | typedef enum {
|
---|
36 | NONE_CHIPSET,
|
---|
37 | I460GX_CHIPSET,
|
---|
38 | E8870_CHIPSET,
|
---|
39 | ZX1_CHIPSET,
|
---|
40 | ALTIX_CHIPSET
|
---|
41 | } IA64Chipset;
|
---|
42 |
|
---|
43 | # ifdef OS_PROBE_PCI_CHIPSET
|
---|
44 | extern IA64Chipset OS_PROBE_PCI_CHIPSET(scanpciWrapperOpt flags);
|
---|
45 | # endif
|
---|
46 | #endif
|
---|