Rename pci_find_class() to pci_find_classprog(), and add new functions.
[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
66 /****************************************************************
67  * PIR table
68  ****************************************************************/
69
70 struct link_info {
71     u8 link;
72     u16 bitmap;
73 } PACKED;
74
75 struct pir_slot {
76     u8 bus;
77     u8 dev;
78     struct link_info links[4];
79     u8 slot_nr;
80     u8 reserved;
81 } PACKED;
82
83 struct pir_header {
84     u32 signature;
85     u16 version;
86     u16 size;
87     u8 router_bus;
88     u8 router_devfunc;
89     u16 exclusive_irqs;
90     u32 compatible_devid;
91     u32 miniport_data;
92     u8 reserved[11];
93     u8 checksum;
94     struct pir_slot slots[0];
95 } PACKED;
96
97 #define PIR_SIGNATURE 0x52495024 // $PIR
98
99
100 #endif