Statistics
| Branch: | Revision:

root / hw / pci.h @ b8c18e4c

History | View | Annotate | Download (10.5 kB)

1 87ecb68b pbrook
#ifndef QEMU_PCI_H
2 87ecb68b pbrook
#define QEMU_PCI_H
3 87ecb68b pbrook
4 376253ec aliguori
#include "qemu-common.h"
5 376253ec aliguori
6 87ecb68b pbrook
/* PCI includes legacy ISA access.  */
7 87ecb68b pbrook
#include "isa.h"
8 87ecb68b pbrook
9 87ecb68b pbrook
/* PCI bus */
10 87ecb68b pbrook
11 87ecb68b pbrook
extern target_phys_addr_t pci_mem_base;
12 87ecb68b pbrook
13 3ae80618 aliguori
#define PCI_DEVFN(slot, func)   ((((slot) & 0x1f) << 3) | ((func) & 0x07))
14 3ae80618 aliguori
#define PCI_SLOT(devfn)         (((devfn) >> 3) & 0x1f)
15 3ae80618 aliguori
#define PCI_FUNC(devfn)         ((devfn) & 0x07)
16 3ae80618 aliguori
17 173a543b blueswir1
/* Device classes and subclasses */
18 173a543b blueswir1
19 6f338c34 aliguori
#define PCI_BASE_CLASS_STORAGE           0x01
20 6f338c34 aliguori
#define PCI_BASE_CLASS_NETWORK           0x02
21 6f338c34 aliguori
22 173a543b blueswir1
#define PCI_CLASS_STORAGE_SCSI           0x0100
23 173a543b blueswir1
#define PCI_CLASS_STORAGE_IDE            0x0101
24 173a543b blueswir1
#define PCI_CLASS_STORAGE_OTHER          0x0180
25 173a543b blueswir1
26 173a543b blueswir1
#define PCI_CLASS_NETWORK_ETHERNET       0x0200
27 173a543b blueswir1
28 173a543b blueswir1
#define PCI_CLASS_DISPLAY_VGA            0x0300
29 173a543b blueswir1
#define PCI_CLASS_DISPLAY_OTHER          0x0380
30 173a543b blueswir1
31 173a543b blueswir1
#define PCI_CLASS_MULTIMEDIA_AUDIO       0x0401
32 173a543b blueswir1
33 173a543b blueswir1
#define PCI_CLASS_MEMORY_RAM             0x0500
34 173a543b blueswir1
35 173a543b blueswir1
#define PCI_CLASS_SYSTEM_OTHER           0x0880
36 173a543b blueswir1
37 173a543b blueswir1
#define PCI_CLASS_SERIAL_USB             0x0c03
38 173a543b blueswir1
39 173a543b blueswir1
#define PCI_CLASS_BRIDGE_HOST            0x0600
40 173a543b blueswir1
#define PCI_CLASS_BRIDGE_ISA             0x0601
41 173a543b blueswir1
#define PCI_CLASS_BRIDGE_PCI             0x0604
42 173a543b blueswir1
#define PCI_CLASS_BRIDGE_OTHER           0x0680
43 173a543b blueswir1
44 173a543b blueswir1
#define PCI_CLASS_PROCESSOR_CO           0x0b40
45 74c62ba8 aurel32
#define PCI_CLASS_PROCESSOR_POWERPC      0x0b20
46 173a543b blueswir1
47 173a543b blueswir1
#define PCI_CLASS_OTHERS                 0xff
48 173a543b blueswir1
49 173a543b blueswir1
/* Vendors and devices. */
50 173a543b blueswir1
51 deb54399 aliguori
#define PCI_VENDOR_ID_LSI_LOGIC          0x1000
52 deb54399 aliguori
#define PCI_DEVICE_ID_LSI_53C895A        0x0012
53 deb54399 aliguori
54 deb54399 aliguori
#define PCI_VENDOR_ID_DEC                0x1011
55 4ebcf884 blueswir1
#define PCI_DEVICE_ID_DEC_21154          0x0026
56 deb54399 aliguori
57 deb54399 aliguori
#define PCI_VENDOR_ID_CIRRUS             0x1013
58 deb54399 aliguori
59 deb54399 aliguori
#define PCI_VENDOR_ID_IBM                0x1014
60 4ebcf884 blueswir1
#define PCI_DEVICE_ID_IBM_OPENPIC2       0xffff
61 deb54399 aliguori
62 deb54399 aliguori
#define PCI_VENDOR_ID_AMD                0x1022
63 deb54399 aliguori
#define PCI_DEVICE_ID_AMD_LANCE          0x2000
64 deb54399 aliguori
65 deb54399 aliguori
#define PCI_VENDOR_ID_HITACHI            0x1054
66 deb54399 aliguori
67 deb54399 aliguori
#define PCI_VENDOR_ID_MOTOROLA           0x1057
68 deb54399 aliguori
#define PCI_DEVICE_ID_MOTOROLA_MPC106    0x0002
69 deb54399 aliguori
#define PCI_DEVICE_ID_MOTOROLA_RAVEN     0x4801
70 deb54399 aliguori
71 deb54399 aliguori
#define PCI_VENDOR_ID_APPLE              0x106b
72 4ebcf884 blueswir1
#define PCI_DEVICE_ID_APPLE_343S1201     0x0010
73 4ebcf884 blueswir1
#define PCI_DEVICE_ID_APPLE_UNI_N_I_PCI  0x001e
74 4ebcf884 blueswir1
#define PCI_DEVICE_ID_APPLE_UNI_N_PCI    0x001f
75 deb54399 aliguori
#define PCI_DEVICE_ID_APPLE_UNI_N_AGP    0x0020
76 4ebcf884 blueswir1
#define PCI_DEVICE_ID_APPLE_UNI_N_KEYL   0x0022
77 deb54399 aliguori
78 deb54399 aliguori
#define PCI_VENDOR_ID_SUN                0x108e
79 deb54399 aliguori
#define PCI_DEVICE_ID_SUN_EBUS           0x1000
80 480b9f24 blueswir1
#define PCI_DEVICE_ID_SUN_SIMBA          0x5000
81 deb54399 aliguori
#define PCI_DEVICE_ID_SUN_SABRE          0xa000
82 deb54399 aliguori
83 deb54399 aliguori
#define PCI_VENDOR_ID_CMD                0x1095
84 deb54399 aliguori
#define PCI_DEVICE_ID_CMD_646            0x0646
85 deb54399 aliguori
86 deb54399 aliguori
#define PCI_VENDOR_ID_REALTEK            0x10ec
87 4ebcf884 blueswir1
#define PCI_DEVICE_ID_REALTEK_RTL8029    0x8029
88 deb54399 aliguori
#define PCI_DEVICE_ID_REALTEK_8139       0x8139
89 deb54399 aliguori
90 deb54399 aliguori
#define PCI_VENDOR_ID_XILINX             0x10ee
91 deb54399 aliguori
92 deb54399 aliguori
#define PCI_VENDOR_ID_MARVELL            0x11ab
93 deb54399 aliguori
94 4ebcf884 blueswir1
#define PCI_VENDOR_ID_QEMU               0x1234
95 4ebcf884 blueswir1
#define PCI_DEVICE_ID_QEMU_VGA           0x1111
96 4ebcf884 blueswir1
97 deb54399 aliguori
#define PCI_VENDOR_ID_ENSONIQ            0x1274
98 deb54399 aliguori
#define PCI_DEVICE_ID_ENSONIQ_ES1370     0x5000
99 deb54399 aliguori
100 deb54399 aliguori
#define PCI_VENDOR_ID_VMWARE             0x15ad
101 deb54399 aliguori
#define PCI_DEVICE_ID_VMWARE_SVGA2       0x0405
102 deb54399 aliguori
#define PCI_DEVICE_ID_VMWARE_SVGA        0x0710
103 deb54399 aliguori
#define PCI_DEVICE_ID_VMWARE_NET         0x0720
104 deb54399 aliguori
#define PCI_DEVICE_ID_VMWARE_SCSI        0x0730
105 deb54399 aliguori
#define PCI_DEVICE_ID_VMWARE_IDE         0x1729
106 deb54399 aliguori
107 deb54399 aliguori
#define PCI_VENDOR_ID_INTEL              0x8086
108 deb54399 aliguori
#define PCI_DEVICE_ID_INTEL_82441        0x1237
109 deb54399 aliguori
#define PCI_DEVICE_ID_INTEL_82801AA_5    0x2415
110 deb54399 aliguori
#define PCI_DEVICE_ID_INTEL_82371SB_0    0x7000
111 deb54399 aliguori
#define PCI_DEVICE_ID_INTEL_82371SB_1    0x7010
112 deb54399 aliguori
#define PCI_DEVICE_ID_INTEL_82371SB_2    0x7020
113 deb54399 aliguori
#define PCI_DEVICE_ID_INTEL_82371AB_0    0x7110
114 deb54399 aliguori
#define PCI_DEVICE_ID_INTEL_82371AB      0x7111
115 deb54399 aliguori
#define PCI_DEVICE_ID_INTEL_82371AB_2    0x7112
116 deb54399 aliguori
#define PCI_DEVICE_ID_INTEL_82371AB_3    0x7113
117 deb54399 aliguori
118 74c62ba8 aurel32
#define PCI_VENDOR_ID_FSL                0x1957
119 74c62ba8 aurel32
#define PCI_DEVICE_ID_FSL_E500           0x0030
120 74c62ba8 aurel32
121 deb54399 aliguori
/* Red Hat / Qumranet (for QEMU) -- see pci-ids.txt */
122 d350d97d aliguori
#define PCI_VENDOR_ID_REDHAT_QUMRANET    0x1af4
123 d350d97d aliguori
#define PCI_SUBVENDOR_ID_REDHAT_QUMRANET 0x1af4
124 d350d97d aliguori
#define PCI_SUBDEVICE_ID_QEMU            0x1100
125 d350d97d aliguori
126 d350d97d aliguori
#define PCI_DEVICE_ID_VIRTIO_NET         0x1000
127 d350d97d aliguori
#define PCI_DEVICE_ID_VIRTIO_BLOCK       0x1001
128 d350d97d aliguori
#define PCI_DEVICE_ID_VIRTIO_BALLOON     0x1002
129 14d50bef aliguori
#define PCI_DEVICE_ID_VIRTIO_CONSOLE     0x1003
130 d350d97d aliguori
131 87ecb68b pbrook
typedef void PCIConfigWriteFunc(PCIDevice *pci_dev,
132 87ecb68b pbrook
                                uint32_t address, uint32_t data, int len);
133 87ecb68b pbrook
typedef uint32_t PCIConfigReadFunc(PCIDevice *pci_dev,
134 87ecb68b pbrook
                                   uint32_t address, int len);
135 87ecb68b pbrook
typedef void PCIMapIORegionFunc(PCIDevice *pci_dev, int region_num,
136 87ecb68b pbrook
                                uint32_t addr, uint32_t size, int type);
137 5851e08c aliguori
typedef int PCIUnregisterFunc(PCIDevice *pci_dev);
138 87ecb68b pbrook
139 87ecb68b pbrook
#define PCI_ADDRESS_SPACE_MEM                0x00
140 87ecb68b pbrook
#define PCI_ADDRESS_SPACE_IO                0x01
141 87ecb68b pbrook
#define PCI_ADDRESS_SPACE_MEM_PREFETCH        0x08
142 87ecb68b pbrook
143 87ecb68b pbrook
typedef struct PCIIORegion {
144 87ecb68b pbrook
    uint32_t addr; /* current PCI mapping address. -1 means not mapped */
145 87ecb68b pbrook
    uint32_t size;
146 87ecb68b pbrook
    uint8_t type;
147 87ecb68b pbrook
    PCIMapIORegionFunc *map_func;
148 87ecb68b pbrook
} PCIIORegion;
149 87ecb68b pbrook
150 87ecb68b pbrook
#define PCI_ROM_SLOT 6
151 87ecb68b pbrook
#define PCI_NUM_REGIONS 7
152 87ecb68b pbrook
153 87ecb68b pbrook
#define PCI_DEVICES_MAX 64
154 87ecb68b pbrook
155 87ecb68b pbrook
#define PCI_VENDOR_ID                0x00        /* 16 bits */
156 87ecb68b pbrook
#define PCI_DEVICE_ID                0x02        /* 16 bits */
157 87ecb68b pbrook
#define PCI_COMMAND                0x04        /* 16 bits */
158 87ecb68b pbrook
#define  PCI_COMMAND_IO                0x1        /* Enable response in I/O space */
159 87ecb68b pbrook
#define  PCI_COMMAND_MEMORY        0x2        /* Enable response in Memory space */
160 d350d97d aliguori
#define PCI_REVISION            0x08
161 87ecb68b pbrook
#define PCI_CLASS_DEVICE        0x0a    /* Device class */
162 d350d97d aliguori
#define PCI_SUBVENDOR_ID        0x2c        /* 16 bits */
163 d350d97d aliguori
#define PCI_SUBDEVICE_ID        0x2e        /* 16 bits */
164 87ecb68b pbrook
#define PCI_INTERRUPT_LINE        0x3c        /* 8 bits */
165 87ecb68b pbrook
#define PCI_INTERRUPT_PIN        0x3d        /* 8 bits */
166 87ecb68b pbrook
#define PCI_MIN_GNT                0x3e        /* 8 bits */
167 87ecb68b pbrook
#define PCI_MAX_LAT                0x3f        /* 8 bits */
168 87ecb68b pbrook
169 8098ed41 aurel32
/* Bits in the PCI Status Register (PCI 2.3 spec) */
170 8098ed41 aurel32
#define PCI_STATUS_RESERVED1        0x007
171 8098ed41 aurel32
#define PCI_STATUS_INT_STATUS        0x008
172 8098ed41 aurel32
#define PCI_STATUS_CAPABILITIES        0x010
173 8098ed41 aurel32
#define PCI_STATUS_66MHZ        0x020
174 8098ed41 aurel32
#define PCI_STATUS_RESERVED2        0x040
175 8098ed41 aurel32
#define PCI_STATUS_FAST_BACK        0x080
176 8098ed41 aurel32
#define PCI_STATUS_DEVSEL        0x600
177 8098ed41 aurel32
178 8098ed41 aurel32
#define PCI_STATUS_RESERVED_MASK_LO (PCI_STATUS_RESERVED1 | \
179 8098ed41 aurel32
                PCI_STATUS_INT_STATUS | PCI_STATUS_CAPABILITIES | \
180 8098ed41 aurel32
                PCI_STATUS_66MHZ | PCI_STATUS_RESERVED2 | PCI_STATUS_FAST_BACK)
181 8098ed41 aurel32
182 8098ed41 aurel32
#define PCI_STATUS_RESERVED_MASK_HI (PCI_STATUS_DEVSEL >> 8)
183 8098ed41 aurel32
184 475dc65f aurel32
/* Bits in the PCI Command Register (PCI 2.3 spec) */
185 475dc65f aurel32
#define PCI_COMMAND_RESERVED        0xf800
186 475dc65f aurel32
187 475dc65f aurel32
#define PCI_COMMAND_RESERVED_MASK_HI (PCI_COMMAND_RESERVED >> 8)
188 475dc65f aurel32
189 87ecb68b pbrook
struct PCIDevice {
190 87ecb68b pbrook
    /* PCI config space */
191 87ecb68b pbrook
    uint8_t config[256];
192 87ecb68b pbrook
193 87ecb68b pbrook
    /* the following fields are read only */
194 87ecb68b pbrook
    PCIBus *bus;
195 87ecb68b pbrook
    int devfn;
196 87ecb68b pbrook
    char name[64];
197 87ecb68b pbrook
    PCIIORegion io_regions[PCI_NUM_REGIONS];
198 87ecb68b pbrook
199 87ecb68b pbrook
    /* do not access the following fields */
200 87ecb68b pbrook
    PCIConfigReadFunc *config_read;
201 87ecb68b pbrook
    PCIConfigWriteFunc *config_write;
202 5851e08c aliguori
    PCIUnregisterFunc *unregister;
203 87ecb68b pbrook
    /* ??? This is a PC-specific hack, and should be removed.  */
204 87ecb68b pbrook
    int irq_index;
205 87ecb68b pbrook
206 87ecb68b pbrook
    /* IRQ objects for the INTA-INTD pins.  */
207 87ecb68b pbrook
    qemu_irq *irq;
208 87ecb68b pbrook
209 87ecb68b pbrook
    /* Current IRQ levels.  Used internally by the generic PCI code.  */
210 87ecb68b pbrook
    int irq_state[4];
211 87ecb68b pbrook
};
212 87ecb68b pbrook
213 87ecb68b pbrook
PCIDevice *pci_register_device(PCIBus *bus, const char *name,
214 87ecb68b pbrook
                               int instance_size, int devfn,
215 87ecb68b pbrook
                               PCIConfigReadFunc *config_read,
216 87ecb68b pbrook
                               PCIConfigWriteFunc *config_write);
217 5851e08c aliguori
int pci_unregister_device(PCIDevice *pci_dev);
218 87ecb68b pbrook
219 87ecb68b pbrook
void pci_register_io_region(PCIDevice *pci_dev, int region_num,
220 87ecb68b pbrook
                            uint32_t size, int type,
221 87ecb68b pbrook
                            PCIMapIORegionFunc *map_func);
222 87ecb68b pbrook
223 87ecb68b pbrook
uint32_t pci_default_read_config(PCIDevice *d,
224 87ecb68b pbrook
                                 uint32_t address, int len);
225 87ecb68b pbrook
void pci_default_write_config(PCIDevice *d,
226 87ecb68b pbrook
                              uint32_t address, uint32_t val, int len);
227 87ecb68b pbrook
void pci_device_save(PCIDevice *s, QEMUFile *f);
228 87ecb68b pbrook
int pci_device_load(PCIDevice *s, QEMUFile *f);
229 87ecb68b pbrook
230 87ecb68b pbrook
typedef void (*pci_set_irq_fn)(qemu_irq *pic, int irq_num, int level);
231 87ecb68b pbrook
typedef int (*pci_map_irq_fn)(PCIDevice *pci_dev, int irq_num);
232 87ecb68b pbrook
PCIBus *pci_register_bus(pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
233 87ecb68b pbrook
                         qemu_irq *pic, int devfn_min, int nirq);
234 87ecb68b pbrook
235 72da4208 aliguori
PCIDevice *pci_nic_init(PCIBus *bus, NICInfo *nd, int devfn,
236 cb457d76 aliguori
                  const char *default_model);
237 87ecb68b pbrook
void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len);
238 87ecb68b pbrook
uint32_t pci_data_read(void *opaque, uint32_t addr, int len);
239 87ecb68b pbrook
int pci_bus_num(PCIBus *s);
240 87ecb68b pbrook
void pci_for_each_device(int bus_num, void (*fn)(PCIDevice *d));
241 3ae80618 aliguori
PCIBus *pci_find_bus(int bus_num);
242 3ae80618 aliguori
PCIDevice *pci_find_device(int bus_num, int slot, int function);
243 87ecb68b pbrook
244 880345c4 aliguori
int pci_read_devaddr(const char *addr, int *domp, int *busp, unsigned *slotp);
245 880345c4 aliguori
int pci_assign_devaddr(const char *addr, int *domp, int *busp, unsigned *slotp);
246 880345c4 aliguori
247 376253ec aliguori
void pci_info(Monitor *mon);
248 480b9f24 blueswir1
PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint16_t vid, uint16_t did,
249 87ecb68b pbrook
                        pci_map_irq_fn map_irq, const char *name);
250 87ecb68b pbrook
251 deb54399 aliguori
static inline void
252 deb54399 aliguori
pci_config_set_vendor_id(uint8_t *pci_config, uint16_t val)
253 deb54399 aliguori
{
254 deb54399 aliguori
    cpu_to_le16wu((uint16_t *)&pci_config[PCI_VENDOR_ID], val);
255 deb54399 aliguori
}
256 deb54399 aliguori
257 deb54399 aliguori
static inline void
258 deb54399 aliguori
pci_config_set_device_id(uint8_t *pci_config, uint16_t val)
259 deb54399 aliguori
{
260 deb54399 aliguori
    cpu_to_le16wu((uint16_t *)&pci_config[PCI_DEVICE_ID], val);
261 deb54399 aliguori
}
262 deb54399 aliguori
263 173a543b blueswir1
static inline void
264 173a543b blueswir1
pci_config_set_class(uint8_t *pci_config, uint16_t val)
265 173a543b blueswir1
{
266 173a543b blueswir1
    cpu_to_le16wu((uint16_t *)&pci_config[PCI_CLASS_DEVICE], val);
267 173a543b blueswir1
}
268 173a543b blueswir1
269 87ecb68b pbrook
/* lsi53c895a.c */
270 e4bcb14c ths
#define LSI_MAX_DEVS 7
271 87ecb68b pbrook
void lsi_scsi_attach(void *opaque, BlockDriverState *bd, int id);
272 87ecb68b pbrook
void *lsi_scsi_init(PCIBus *bus, int devfn);
273 87ecb68b pbrook
274 87ecb68b pbrook
/* vmware_vga.c */
275 3023f332 aliguori
void pci_vmsvga_init(PCIBus *bus, uint8_t *vga_ram_base,
276 87ecb68b pbrook
                     unsigned long vga_ram_offset, int vga_ram_size);
277 87ecb68b pbrook
278 87ecb68b pbrook
/* usb-uhci.c */
279 87ecb68b pbrook
void usb_uhci_piix3_init(PCIBus *bus, int devfn);
280 87ecb68b pbrook
void usb_uhci_piix4_init(PCIBus *bus, int devfn);
281 87ecb68b pbrook
282 87ecb68b pbrook
/* usb-ohci.c */
283 87ecb68b pbrook
void usb_ohci_init_pci(struct PCIBus *bus, int num_ports, int devfn);
284 87ecb68b pbrook
285 87ecb68b pbrook
/* eepro100.c */
286 87ecb68b pbrook
287 72da4208 aliguori
PCIDevice *pci_i82551_init(PCIBus *bus, NICInfo *nd, int devfn);
288 72da4208 aliguori
PCIDevice *pci_i82557b_init(PCIBus *bus, NICInfo *nd, int devfn);
289 72da4208 aliguori
PCIDevice *pci_i82559er_init(PCIBus *bus, NICInfo *nd, int devfn);
290 87ecb68b pbrook
291 87ecb68b pbrook
/* ne2000.c */
292 87ecb68b pbrook
293 72da4208 aliguori
PCIDevice *pci_ne2000_init(PCIBus *bus, NICInfo *nd, int devfn);
294 87ecb68b pbrook
295 87ecb68b pbrook
/* rtl8139.c */
296 87ecb68b pbrook
297 72da4208 aliguori
PCIDevice *pci_rtl8139_init(PCIBus *bus, NICInfo *nd, int devfn);
298 87ecb68b pbrook
299 7c23b892 balrog
/* e1000.c */
300 72da4208 aliguori
PCIDevice *pci_e1000_init(PCIBus *bus, NICInfo *nd, int devfn);
301 7c23b892 balrog
302 87ecb68b pbrook
/* pcnet.c */
303 72da4208 aliguori
PCIDevice *pci_pcnet_init(PCIBus *bus, NICInfo *nd, int devfn);
304 87ecb68b pbrook
305 87ecb68b pbrook
/* prep_pci.c */
306 87ecb68b pbrook
PCIBus *pci_prep_init(qemu_irq *pic);
307 87ecb68b pbrook
308 87ecb68b pbrook
/* apb_pci.c */
309 c190ea07 blueswir1
PCIBus *pci_apb_init(target_phys_addr_t special_base,
310 c190ea07 blueswir1
                     target_phys_addr_t mem_base,
311 c190ea07 blueswir1
                     qemu_irq *pic, PCIBus **bus2, PCIBus **bus3);
312 87ecb68b pbrook
313 b79e1752 aurel32
/* sh_pci.c */
314 b79e1752 aurel32
PCIBus *sh_pci_register_bus(pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
315 b79e1752 aurel32
                            qemu_irq *pic, int devfn_min, int nirq);
316 b79e1752 aurel32
317 87ecb68b pbrook
#endif