Use defines for PCI ids.
[seabios.git] / src / pci.h
1 #ifndef __PCI_H
2 #define __PCI_H
3
4 #include "types.h" // u32
5
6 typedef struct PCIDevice {
7     u8 bus;
8     u8 devfn;
9 } PCIDevice;
10
11 static inline PCIDevice pci_bd(u8 bus, u8 devfn) {
12     struct PCIDevice d = {bus, devfn};
13     return d;
14 }
15 static inline u16 pci_to_bdf(PCIDevice d) {
16     return (d.bus << 8) | d.devfn;
17 }
18 static inline u8 pci_bdf_to_bus(u16 bdf) {
19     return bdf >> 8;
20 }
21 static inline u8 pci_bdf_to_dev(u16 bdf) {
22     return (bdf >> 3) & 0x1f;
23 }
24 static inline u8 pci_bdf_to_fn(u16 bdf) {
25     return bdf & 0x07;
26 }
27
28 void pci_config_writel(PCIDevice d, u32 addr, u32 val);
29 void pci_config_writew(PCIDevice d, u32 addr, u16 val);
30 void pci_config_writeb(PCIDevice d, u32 addr, u8 val);
31 u32 pci_config_readl(PCIDevice d, u32 addr);
32 u16 pci_config_readw(PCIDevice d, u32 addr);
33 u8 pci_config_readb(PCIDevice d, u32 addr);
34
35 int pci_find_device(u16 vendid, u16 devid, int index, PCIDevice *dev);
36 int pci_find_classprog(u32 classprog, int index, PCIDevice *dev);
37 int pci_find_class(u16 classid, int index, PCIDevice *dev);
38
39 // pirtable.c
40 void create_pirtable();
41
42
43 /****************************************************************
44  * PCI definitions
45  ****************************************************************/
46
47 #define PCI_VENDOR_ID           0x00    /* 16 bits */
48 #define PCI_DEVICE_ID           0x02    /* 16 bits */
49 #define PCI_COMMAND             0x04    /* 16 bits */
50 #define  PCI_COMMAND_IO         0x1     /* Enable response in I/O space */
51 #define  PCI_COMMAND_MEMORY     0x2     /* Enable response in Memory space */
52 #define PCI_CLASS_PROG          0x09
53 #define PCI_CLASS_DEVICE        0x0a    /* Device class */
54 #define PCI_BASE_ADDR_0         0x10
55 #define PCI_BASE_ADDR_1         0x14
56 #define PCI_BASE_ADDR_2         0x18
57 #define PCI_BASE_ADDR_3         0x1c
58 #define PCI_BASE_ADDR_4         0x20
59 #define PCI_BASE_ADDR_5         0x24
60 #define PCI_INTERRUPT_LINE      0x3c    /* 8 bits */
61 #define PCI_INTERRUPT_PIN       0x3d    /* 8 bits */
62 #define PCI_MIN_GNT             0x3e    /* 8 bits */
63 #define PCI_MAX_LAT             0x3f    /* 8 bits */
64
65 #define PCI_VENDOR_ID_INTEL             0x8086
66 #define PCI_VENDOR_ID_IBM               0x1014
67 #define PCI_VENDOR_ID_APPLE             0x106b
68
69 #define PCI_DEVICE_ID_INTEL_82441       0x1237
70 #define PCI_DEVICE_ID_INTEL_82371SB_0   0x7000
71 #define PCI_DEVICE_ID_INTEL_82371SB_1   0x7010
72 #define PCI_DEVICE_ID_INTEL_82371AB_3   0x7113
73
74
75 /****************************************************************
76  * PIR table
77  ****************************************************************/
78
79 struct link_info {
80     u8 link;
81     u16 bitmap;
82 } PACKED;
83
84 struct pir_slot {
85     u8 bus;
86     u8 dev;
87     struct link_info links[4];
88     u8 slot_nr;
89     u8 reserved;
90 } PACKED;
91
92 struct pir_header {
93     u32 signature;
94     u16 version;
95     u16 size;
96     u8 router_bus;
97     u8 router_devfunc;
98     u16 exclusive_irqs;
99     u32 compatible_devid;
100     u32 miniport_data;
101     u8 reserved[11];
102     u8 checksum;
103     struct pir_slot slots[0];
104 } PACKED;
105
106 #define PIR_SIGNATURE 0x52495024 // $PIR
107
108
109 #endif