-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpci.c
484 lines (433 loc) · 15.8 KB
/
pci.c
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
#include <kernel.h>
const char* pci_device_class[] = {
"Unknown",
"Mass Storage Controller",
"Network Controller",
"Display Controller",
"Multimedia Controller",
"Memory Controller",
"Bridge Device",
"Simple Communication Controller",
"Base System Peripheral",
"Input Device",
"Docking Station",
"Processor",
"Serial Bus Controller",
"Wireless Controller",
"Intelligent I/O Controller",
"Satellite Communication Controller",
"Encryption/Decryption Controller",
"Data Acquisition/Signal Processing Controller"
};
const pci_subclass pci_device_sub_class[] =
{
{ 0x00, 0x00, 0x00, "Pre-2.0 PCI Non-VGA"} ,
{ 0x00, 0x01, 0x00, "Pre-2.0 PCI VGA Compatible"} ,
{ 0x01, 0x00, 0x00, "SCSI Controller"} ,
{ 0x01, 0x01, 0x00, "IDE Controller"} ,
{ 0x01, 0x01, 0x80, "PIIX4 IDE Controller" },
{ 0x01, 0x02, 0x00, "Floppy Controller"} ,
{ 0x01, 0x03, 0x00, "IPI Mass Storage Controller"} ,
{ 0x01, 0x04, 0x00, "RAID Controller"} ,
{ 0x01, 0x05, 0x20, "ATA controller (single DMA)" } ,
{ 0x01, 0x05, 0x30, "ATA controller (chained DMA)" } ,
{ 0x01, 0x06, 0x00, "SATA controller (Vendor Specific)" } ,
{ 0x01, 0x06, 0x01, "SATA controller (AHCI 1.0)" } ,
{ 0x01, 0x06, 0x02, "SATA controller (Serial Storage Bus)" } ,
{ 0x01, 0x07, 0x00, "Serial Attached SCSI controller (SAS)" } ,
{ 0x01, 0x07, 0x01, "Serial Attached SCSI controller (Serial Storage Bus)" } ,
{ 0x01, 0x08, 0x01, "Non Volatile Memory Controller (NVMHCI)" } ,
{ 0x01, 0x08, 0x02, "Non Volatile Memory Controller (NVM Express)" } ,
{ 0x01, 0x80, 0x00, "Other Mass Storage Controller"} ,
{ 0x02, 0x00, 0x00, "Ethernet Controller"} ,
{ 0x02, 0x01, 0x00, "Token Ring Controller"} ,
{ 0x02, 0x02, 0x00, "FDDI Controller"} ,
{ 0x02, 0x03, 0x00, "ATM Controller"} ,
{ 0x02, 0x04, 0x00, "ISDN Controller"} ,
{ 0x02, 0x05, 0x00, "WorldFip Controller"} ,
{ 0x02, 0x06, 0x00, "PICMG 2.14 Multi Computing Controller"} ,
{ 0x02, 0x07, 0x00, "Infiniband Controller"} ,
{ 0x02, 0x08, 0x00, "Fabric Controller"} ,
{ 0x02, 0x80, 0x00, "Other Network Controller"} ,
{ 0x03, 0x00, 0x00, "VGA Compatible Display Controller" } ,
{ 0x03, 0x00, 0x01, "8514 Compatible Display Controller" } ,
{ 0x03, 0x01, 0x00, "XGA Display Controller" } ,
{ 0x03, 0x02, 0x00, "3D Display Controller (Non-VGA)" } ,
{ 0x03, 0x80, 0x00, "Other Display Controller" } ,
{ 0x04, 0x00, 0x00, "Video Multimedia Device" } ,
{ 0x04, 0x01, 0x00, "Audio Multimedia Device" } ,
{ 0x04, 0x02, 0x00, "Telephony Device" } ,
{ 0x04, 0x03, 0x00, "Audio Device" } ,
{ 0x04, 0x80, 0x00, "Other Multimedia Device" } ,
{ 0x05, 0x00, 0x00, "RAM Memory Controller" } ,
{ 0x05, 0x01, 0x00, "Flash Memory Controller" } ,
{ 0x05, 0x80, 0x00, "Other Memory Controller" } ,
{ 0x06, 0x00, 0x00, "Host/PCI Bridge Device" } ,
{ 0x06, 0x01, 0x00, "PCI/ISA Bridge Device" } ,
{ 0x06, 0x02, 0x00, "PCI/EISA Bridge Device" } ,
{ 0x06, 0x03, 0x00, "PCI/MCA Bridge Device" } ,
{ 0x06, 0x04, 0x00, "PCI/PCI Bridge Device (Normal Mode)" } ,
{ 0x06, 0x04, 0x01, "PCI/PCI Bridge Device (Subtractive Mode)" } ,
{ 0x06, 0x05, 0x00, "PCI/PCMCIA Bridge Device" } ,
{ 0x06, 0x06, 0x00, "PCI/NuBus Bridge Device" } ,
{ 0x06, 0x07, 0x00, "PCI/CardBus Bridge Device" } ,
{ 0x06, 0x08, 0x00, "PCI/RACEway Bridge Device (Transparent Mode)" } ,
{ 0x06, 0x08, 0x01, "PCI/RACEway Bridge Device (Endpoint Mode)" } ,
{ 0x06, 0x09, 0x40, "PCI/PCI Bridge Device (Semi-Transparent, Primary bus towards host CPU)" } ,
{ 0x06, 0x09, 0x80, "PCI/PCI Bridge Device (Semi-Transparent, Secondary bus towards host CPU)" } ,
{ 0x06, 0x0A, 0x00, "Infiniband/PCI ost Bridge" } ,
{ 0x06, 0x80, 0x00, "Other Bridge Device" } ,
{ 0x07, 0x00, 0x00, "Serial Simple Comms Controller" } ,
{ 0x07, 0x00, 0x01, "Serial 16450 Simple Comms Controller" } ,
{ 0x07, 0x00, 0x02, "Serial 16550 Simple Comms Controller" } ,
{ 0x07, 0x01, 0x00, "Parallel Simple Comms Controller" } ,
{ 0x07, 0x01, 0x00, "Parallel Bi-Directional Simple Comms Controller" } ,
{ 0x07, 0x01, 0x01, "Parallel ECP Simple Comms Controller" } ,
{ 0x07, 0x80, 0x02, "Other Simple Comms Controller" } ,
{ 0x08, 0x00, 0x00, "8259 PIC Base Device" } ,
{ 0x08, 0x00, 0x01, "ISA PICBase Device" } ,
{ 0x08, 0x00, 0x02, "PCI PIC Base Device" } ,
{ 0x08, 0x01, 0x00, "8259 DMA Base Device" } ,
{ 0x08, 0x01, 0x01, "ISA DMA Base Device" } ,
{ 0x08, 0x01, 0x02, "EISA DMA Base Device" } ,
{ 0x08, 0x02, 0x00, "8259 Timer Base Device" } ,
{ 0x08, 0x02, 0x01, "ISA Timer Base Device" } ,
{ 0x08, 0x02, 0x02, "EISA Timer Base Device" } ,
{ 0x08, 0x02, 0x03, "HPET Timer Base Device" } ,
{ 0x08, 0x03, 0x00, "Generic RTC Base Device" } ,
{ 0x08, 0x03, 0x01, "ISA RTC Base Device" } ,
{ 0x08, 0x04, 0x00, "PCI Hot Plug Controller" } ,
{ 0x08, 0x05, 0x00, "SD Host Controller" } ,
{ 0x08, 0x06, 0x00, "IOMMU" } ,
{ 0x08, 0x80, 0x00, "Other Base Device" } ,
{ 0x09, 0x00, 0x00, "Keyboard Input Device" } ,
{ 0x09, 0x01, 0x00, "Digitizer Input Device" } ,
{ 0x09, 0x02, 0x00, "Mouse Input Device" } ,
{ 0x09, 0x03, 0x00, "Scanner Input Device" } ,
{ 0x09, 0x04, 0x00, "Gameport Input Device (Generic)" } ,
{ 0x09, 0x04, 0x01, "Gameport Input Device (Extended)" } ,
{ 0x09, 0x80, 0x00, "Other Input Device" } ,
{ 0x0A, 0x00, 0x00, "Generic Docking Station" } ,
{ 0x0A, 0x80, 0x00, "Other Docking Station" } ,
{ 0x0B, 0x00, 0x00, "i386 Processor" } ,
{ 0x0B, 0x01, 0x00, "i486 Processor" } ,
{ 0x0B, 0x02, 0x00, "Pentium Processor" } ,
{ 0x0B, 0x03, 0x00, "Pentium Pro Processor" } ,
{ 0x0B, 0x10, 0x00, "Alpha Processor" } ,
{ 0x0B, 0x20, 0x00, "PowerPC Processor" } ,
{ 0x0B, 0x30, 0x00, "MIPS Processor" } ,
{ 0x0B, 0x40, 0x00, "Co-Processor" } ,
{ 0x0B, 0x80, 0x00, "Other Processor" } ,
{ 0x0C, 0x00, 0x00, "IEE1394 Serial Bus Controller" } ,
{ 0x0C, 0x01, 0x00, "ACCESS.bus Serial Bus Controller" } ,
{ 0x0C, 0x02, 0x00, "SSA Serial Bus Controller" } ,
{ 0x0C, 0x03, 0x00, "USB Controller (UHCI)" } ,
{ 0x0C, 0x03, 0x10, "USB Controller (OHCI)" } ,
{ 0x0C, 0x03, 0x20, "USB2 Host Controller (Intel EHCI)" },
{ 0x0C, 0x03, 0x20, "USB3 Host Controller (Intel XHCI)" },
{ 0x0C, 0x03, 0x80, "USB Host Controller (Intel EHCI)" },
{ 0x0C, 0x03, 0xFE, "USB Device (Not Host Controller)" },
{ 0x0C, 0x04, 0x00, "Fibre Channel Serial Bus Controller" } ,
{ 0x0C, 0x05, 0x00, "SMBus Controller" },
{ 0x0D, 0x00, 0x00, "IRDA Compatible Controller" },
{ 0x0D, 0x01, 0x00, "Consumer IR Controller" },
{ 0x0D, 0x10, 0x00, "RF Controller" },
{ 0x0D, 0x11, 0x00, "Bluetooth Controller" },
{ 0x0D, 0x12, 0x00, "Broadband Controller" },
{ 0x0D, 0x20, 0x00, "Ethernet Controller (802.11a)" },
{ 0x0D, 0x21, 0x00, "Ethernet Controller (802.11b)" },
{ 0x0D, 0x80, 0x00, "Other Wireless Controller" },
{ 0x0F, 0x01, 0x00, "Satellite TV Controller" },
{ 0x0F, 0x02, 0x00, "Satellite Audio Controller" },
{ 0x0F, 0x03, 0x00, "Satellite Voice Controller" },
{ 0x0F, 0x04, 0x00, "Satellite Data Controller" },
{ 0x10, 0x00, 0x00, "Network and Computing Encrpytion/Decryption" },
{ 0x10, 0x10, 0x00, "Entertainment Encryption/Decryption" },
{ 0x10, 0x80, 0x00, "Other Encryption/Decryption" },
{ 0xFF, 0xFF, 0xFF, "" }
};
uint32_t pci_size_map[100];
pci_dev_t dev_zero = {0};
pci_dev_t device_list[256];
size_t device_total = 0;
bool pci_bus_master(pci_dev_t device) {
uint32_t pci_command_reg = pci_read(device, PCI_COMMAND);
if(!(pci_command_reg & PCI_COMMAND_BUS_MASTER)) {
pci_command_reg |= PCI_COMMAND_BUS_MASTER;
pci_write(device, PCI_COMMAND, pci_command_reg);
return true;
}
return false;
}
bool pci_not_found(pci_dev_t device) {
return device.bits == dev_zero.bits;
}
uint8_t pci_bar_type(uint32_t field) {
return field & 0x1;
}
uint16_t pci_io_base(uint32_t field) {
return field & (~0x3);
}
uint32_t pci_mem_base(uint32_t field) {
return field & (~0xf);
}
uint32_t pci_read(pci_dev_t dev, uint32_t field) {
// Only most significant 6 bits of the field
dev.field_num = (field & 0xFC) >> 2;
dev.enable = 1;
outl(PCI_CONFIG_ADDRESS, dev.bits);
// What size is this field supposed to be ?
uint32_t size = pci_size_map[field];
if(size == 1) {
// Get the first byte only, since it's in little endian, it's actually the 3rd byte
uint8_t t =inb(PCI_CONFIG_DATA + (field & 3));
return t;
}
else if(size == 2) {
uint16_t t = inw(PCI_CONFIG_DATA + (field & 2));
return t;
}
else if(size == 4){
// Read entire 4 bytes
uint32_t t = inl(PCI_CONFIG_DATA);
return t;
} else {
uint32_t t = inl(PCI_CONFIG_DATA);
return t;
}
return 0xffff;
}
/*
* Write pci field
*/
void pci_write(pci_dev_t dev, uint32_t field, uint32_t value) {
dev.field_num = (field & 0xFC) >> 2;
dev.enable = 1;
// Tell where we want to write
outl(PCI_CONFIG_ADDRESS, dev.bits);
// Value to write
outl(PCI_CONFIG_DATA, value);
}
/*
* Get device type (i.e, is it a bridge, ide controller ? mouse controller? etc)
*/
uint32_t get_device_type(pci_dev_t dev) {
uint32_t t = pci_read(dev, PCI_CLASS) << 8;
return t | pci_read(dev, PCI_SUBCLASS);
}
/*
* Get secondary bus from a PCI bridge device
*/
uint32_t get_secondary_bus(pci_dev_t dev) {
return pci_read(dev, PCI_SECONDARY_BUS);
}
/*
* Is current device an end point ? PCI_HEADER_TYPE 0 is end point
*/
uint32_t pci_reach_end(pci_dev_t dev) {
uint32_t t = pci_read(dev, PCI_HEADER_TYPE);
return !t;
}
/*
* Recursive Scan function
*/
pci_dev_t pci_scan_function(uint16_t vendor_id, uint16_t device_id, uint32_t bus, uint32_t device, uint32_t function, int device_type) {
pci_dev_t dev = {0};
dev.bus_num = bus;
dev.device_num = device;
dev.function_num = function;
if (get_device_type(dev) != 0xffff) {
bool exists = false;
for (size_t x = 0; x < device_total; ++x) {
if (device_list[x].bus_num == dev.bus_num && device_list[x].device_num == dev.device_num && device_list[x].function_num == dev.function_num) {
exists = true;
break;
}
}
if (!exists) {
device_list[device_total++] = dev;
}
}
// If it's a PCI Bridge device, get the bus it's connected to and keep searching
if(get_device_type(dev) == PCI_TYPE_BRIDGE) {
pci_scan_bus(vendor_id, device_id, get_secondary_bus(dev), device_type);
}
// If type matches, we've found the device, just return it
if(device_type == -1 || device_type == (int)get_device_type(dev)) {
uint32_t devid = pci_read(dev, PCI_DEVICE_ID);
uint32_t vendid = pci_read(dev, PCI_VENDOR_ID);
if (device_type != -1 || (devid == device_id && vendor_id == vendid))
return dev;
}
return dev_zero;
}
size_t pci_get_device_list(pci_dev_t** list)
{
if (list == NULL) {
return 0;
}
pci_get_device(0, 0, -1);
*list = device_list;
return device_total;
}
void pci_display_device_list()
{
pci_dev_t* list;
char* device_description = NULL;
size_t count = pci_get_device_list(&list);
dprintf("PCI device enumeration:\n");
for (size_t n = 0; n < count; ++n) {
uint32_t class = pci_read(list[n], PCI_CLASS);
uint32_t subclass = pci_read(list[n], PCI_SUBCLASS);
uint32_t progif = pci_read(list[n], PCI_PROG_IF);
device_description = "(unknown device class)";
for (const pci_subclass* sc = pci_device_sub_class; sc->id != 0xFF; ++sc) {
if (sc->id == class && sc->subclass == subclass && sc->progif == progif) {
device_description = (char*)sc->description;
}
}
dprintf(
"%02x:%02x:%02x: %s (%04x:%04x) [%02x:%02x:%02x]\n",
list[n].bus_num, list[n].device_num, list[n].function_num,
device_description,
pci_read(list[n], PCI_VENDOR_ID), pci_read(list[n], PCI_DEVICE_ID),
class, subclass, progif
);
}
}
/*
* Scan device
*/
pci_dev_t pci_scan_device(uint16_t vendor_id, uint16_t device_id, uint32_t bus, uint32_t device, int device_type) {
pci_dev_t dev = {0};
dev.bus_num = bus;
dev.device_num = device;
if ((int)get_device_type(dev) == device_type && device_type > 0) {
return dev;
}
if(pci_read(dev,PCI_VENDOR_ID) == PCI_NONE)
return dev_zero;
pci_dev_t t = pci_scan_function(vendor_id, device_id, bus, device, 0, device_type);
if(t.bits)
return t;
if(pci_reach_end(dev))
return dev_zero;
for(int function = 1; function < FUNCTION_PER_DEVICE; function++) {
if(pci_read(dev,PCI_VENDOR_ID) != PCI_NONE) {
t = pci_scan_function(vendor_id, device_id, bus, device, function, device_type);
if(t.bits)
return t;
}
}
return dev_zero;
}
/*
* Scan bus
*/
pci_dev_t pci_scan_bus(uint16_t vendor_id, uint16_t device_id, uint32_t bus, int device_type) {
for(int device = 0; device < DEVICE_PER_BUS; device++) {
pci_dev_t t = pci_scan_device(vendor_id, device_id, bus, device, device_type);
if(t.bits)
return t;
}
return dev_zero;
}
/*
* Device driver use this function to get its device object(given unique vendor id and device id)
*/
pci_dev_t pci_get_device(uint16_t vendor_id, uint16_t device_id, int device_type)
{
device_total = 0;
pci_dev_t t = pci_scan_bus(vendor_id, device_id, 0, device_type);
if(t.bits)
return t;
// Handle multiple pci host controllers
for(int function = 1; function < FUNCTION_PER_DEVICE; function++) {
pci_dev_t dev = {0};
dev.function_num = function;
if(pci_read(dev, PCI_VENDOR_ID) == PCI_NONE)
break;
t = pci_scan_bus(vendor_id, device_id, function, device_type);
if(t.bits)
return t;
}
return dev_zero;
}
/*
* PCI Init, filling size for each field in config space
*/
void init_pci() {
// Init size map
pci_size_map[PCI_VENDOR_ID] = 2;
pci_size_map[PCI_DEVICE_ID] = 2;
pci_size_map[PCI_COMMAND] = 2;
pci_size_map[PCI_STATUS] = 2;
pci_size_map[PCI_SUBCLASS] = 1;
pci_size_map[PCI_CLASS] = 1;
pci_size_map[PCI_CACHE_LINE_SIZE] = 1;
pci_size_map[PCI_LATENCY_TIMER] = 1;
pci_size_map[PCI_HEADER_TYPE] = 1;
pci_size_map[PCI_BIST] = 1;
pci_size_map[PCI_BAR0] = 4;
pci_size_map[PCI_BAR1] = 4;
pci_size_map[PCI_BAR2] = 4;
pci_size_map[PCI_BAR3] = 4;
pci_size_map[PCI_BAR4] = 4;
pci_size_map[PCI_BAR5] = 4;
pci_size_map[PCI_CAPABILITIES] = 4;
pci_size_map[PCI_INTERRUPT_LINE] = 1;
pci_size_map[PCI_INTERRUPT_PIN] = 1;
pci_size_map[PCI_MIN_GNT] = 1;
pci_size_map[PCI_MAX_LAT] = 1;
pci_size_map[PCI_SECONDARY_BUS] = 1;
pci_display_device_list();
}
void pci_interrupt_enable(pci_dev_t device, bool enable)
{
uint32_t device_command_flags = pci_read(device, PCI_COMMAND);
if (!enable && !(device_command_flags & PCI_COMMAND_INTERRUPT_DISABLE)) {
pci_write(device, PCI_COMMAND, device_command_flags | PCI_COMMAND_INTERRUPT_DISABLE);
} else if (enable && device_command_flags & PCI_COMMAND_INTERRUPT_DISABLE) {
pci_write(device, PCI_COMMAND, device_command_flags & ~PCI_COMMAND_INTERRUPT_DISABLE);
}
}
bool pci_enable_msi(pci_dev_t device, uint32_t vector, bool edgetrigger, bool deassert)
{
uint32_t status = pci_read(device, PCI_STATUS);
/* Check for capabilities list */
if (!(status & PCI_STATUS_CAPABAILITIES_LIST)) {
return false;
}
uint32_t capabilities_ptr = pci_read(device, PCI_CAPABILITIES);
uint32_t current = capabilities_ptr, config_space;
while ((config_space = pci_read(device, current))) {
uint8_t id = config_space & 0xFF;
uint16_t device_id = pci_read(device, PCI_DEVICE_ID);
uint16_t vendor_id = pci_read(device, PCI_VENDOR_ID);
uint32_t next_capability = (config_space & 0xFF00) >> 8;
if (id == PCI_CAPABILITY_MSI) {
/* MSI capability */
interrupts_off();
uint32_t new_message_data = (vector & 0xFF) | (edgetrigger ? 0 : PCI_MSI_EDGETRIGGER) | (deassert ? 0 : PCI_MSI_DEASSERT);
uint32_t new_message_address = (0xFEE00000 | (cpu_id() << 12));
bool bits64cap = (config_space & PCI_MSI_64BIT);
dprintf("Enable MSI for %04x:%04x with data=%08x address=%08x vector %d\n", vendor_id, device_id, new_message_data, new_message_address, vector);
pci_write(device, current + 0x04, new_message_address);
pci_interrupt_enable(device, false);
if (bits64cap) {
pci_write(device, current + 0x08, 0);
pci_write(device, current + 0x0C, new_message_data);
} else {
pci_write(device, current + 0x08, new_message_data);
}
pci_write(device, current + 0x00, config_space | PCI_MSI_ENABLE); // Mask in enable bit
interrupts_on();
return true;
}
current = next_capability;
if (next_capability == 0) {
break;
}
}
return false;
}