Printing coreboot debug messages on VGA console is pretty much useless, since
[coreboot.git] / src / devices / pci_device.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * It was originally based on the Linux kernel (drivers/pci/pci.c).
5  *
6  * Modifications are:
7  * Copyright (C) 2003-2004 Linux Networx
8  * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
9  * Copyright (C) 2003-2006 Ronald G. Minnich <rminnich@gmail.com>
10  * Copyright (C) 2004-2005 Li-Ta Lo <ollie@lanl.gov>
11  * Copyright (C) 2005-2006 Tyan
12  * (Written by Yinghai Lu <yhlu@tyan.com> for Tyan)
13  * Copyright (C) 2005-2009 coresystems GmbH
14  * (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
15  */
16
17 /*
18  * PCI Bus Services, see include/linux/pci.h for further explanation.
19  *
20  * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
21  * David Mosberger-Tang
22  *
23  * Copyright 1997 -- 1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
24  */
25
26 #include <console/console.h>
27 #include <stdlib.h>
28 #include <stdint.h>
29 #include <bitops.h>
30 #include <string.h>
31 #include <arch/io.h>
32 #include <device/device.h>
33 #include <device/pci.h>
34 #include <device/pci_ids.h>
35 #include <delay.h>
36 #if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT == 1
37 #include <device/hypertransport.h>
38 #endif
39 #if CONFIG_PCIX_PLUGIN_SUPPORT == 1
40 #include <device/pcix.h>
41 #endif
42 #if CONFIG_PCIEXP_PLUGIN_SUPPORT == 1
43 #include <device/pciexp.h>
44 #endif
45 #if CONFIG_AGP_PLUGIN_SUPPORT == 1
46 #include <device/agp.h>
47 #endif
48 #if CONFIG_CARDBUS_PLUGIN_SUPPORT == 1
49 #include <device/cardbus.h>
50 #endif
51 #define CONFIG_PC80_SYSTEM 1
52 #if CONFIG_PC80_SYSTEM == 1
53 #include <pc80/i8259.h>
54 #endif
55
56 u8 pci_moving_config8(struct device *dev, unsigned int reg)
57 {
58         u8 value, ones, zeroes;
59
60         value = pci_read_config8(dev, reg);
61
62         pci_write_config8(dev, reg, 0xff);
63         ones = pci_read_config8(dev, reg);
64
65         pci_write_config8(dev, reg, 0x00);
66         zeroes = pci_read_config8(dev, reg);
67
68         pci_write_config8(dev, reg, value);
69
70         return ones ^ zeroes;
71 }
72
73 u16 pci_moving_config16(struct device *dev, unsigned int reg)
74 {
75         u16 value, ones, zeroes;
76
77         value = pci_read_config16(dev, reg);
78
79         pci_write_config16(dev, reg, 0xffff);
80         ones = pci_read_config16(dev, reg);
81
82         pci_write_config16(dev, reg, 0x0000);
83         zeroes = pci_read_config16(dev, reg);
84
85         pci_write_config16(dev, reg, value);
86
87         return ones ^ zeroes;
88 }
89
90 u32 pci_moving_config32(struct device *dev, unsigned int reg)
91 {
92         u32 value, ones, zeroes;
93
94         value = pci_read_config32(dev, reg);
95
96         pci_write_config32(dev, reg, 0xffffffff);
97         ones = pci_read_config32(dev, reg);
98
99         pci_write_config32(dev, reg, 0x00000000);
100         zeroes = pci_read_config32(dev, reg);
101
102         pci_write_config32(dev, reg, value);
103
104         return ones ^ zeroes;
105 }
106
107 /**
108  * Given a device, a capability type, and a last position, return the next
109  * matching capability. Always start at the head of the list.
110  *
111  * @param dev Pointer to the device structure.
112  * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
113  * @param last Location of the PCI capability register to start from.
114  * @return The next matching capability.
115  */
116 unsigned pci_find_next_capability(struct device *dev, unsigned cap,
117                                   unsigned last)
118 {
119         unsigned pos = 0;
120         u16 status;
121         unsigned reps = 48;
122
123         status = pci_read_config16(dev, PCI_STATUS);
124         if (!(status & PCI_STATUS_CAP_LIST))
125                 return 0;
126
127         switch (dev->hdr_type & 0x7f) {
128         case PCI_HEADER_TYPE_NORMAL:
129         case PCI_HEADER_TYPE_BRIDGE:
130                 pos = PCI_CAPABILITY_LIST;
131                 break;
132         case PCI_HEADER_TYPE_CARDBUS:
133                 pos = PCI_CB_CAPABILITY_LIST;
134                 break;
135         default:
136                 return 0;
137         }
138
139         pos = pci_read_config8(dev, pos);
140         while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
141                 int this_cap;
142
143                 pos &= ~3;
144                 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
145                 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
146                        this_cap, pos);
147                 if (this_cap == 0xff)
148                         break;
149
150                 if (!last && (this_cap == cap))
151                         return pos;
152
153                 if (last == pos)
154                         last = 0;
155
156                 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
157         }
158         return 0;
159 }
160
161 /**
162  * Given a device, and a capability type, return the next matching
163  * capability. Always start at the head of the list.
164  *
165  * @param dev Pointer to the device structure.
166  * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
167  * @return The next matching capability.
168  */
169 unsigned pci_find_capability(device_t dev, unsigned cap)
170 {
171         return pci_find_next_capability(dev, cap, 0);
172 }
173
174 /**
175  * Given a device and register, read the size of the BAR for that register.
176  *
177  * @param dev Pointer to the device structure.
178  * @param index Address of the PCI configuration register.
179  * @return TODO
180  */
181 struct resource *pci_get_resource(struct device *dev, unsigned long index)
182 {
183         struct resource *resource;
184         unsigned long value, attr;
185         resource_t moving, limit;
186
187         /* Initialize the resources to nothing. */
188         resource = new_resource(dev, index);
189
190         /* Get the initial value. */
191         value = pci_read_config32(dev, index);
192
193         /* See which bits move. */
194         moving = pci_moving_config32(dev, index);
195
196         /* Initialize attr to the bits that do not move. */
197         attr = value & ~moving;
198
199         /* If it is a 64bit resource look at the high half as well. */
200         if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
201             ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
202              PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
203                 /* Find the high bits that move. */
204                 moving |=
205                     ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
206         }
207
208         /* Find the resource constraints.
209          * Start by finding the bits that move. From there:
210          * - Size is the least significant bit of the bits that move.
211          * - Limit is all of the bits that move plus all of the lower bits.
212          * See PCI Spec 6.2.5.1.
213          */
214         limit = 0;
215         if (moving) {
216                 resource->size = 1;
217                 resource->align = resource->gran = 0;
218                 while (!(moving & resource->size)) {
219                         resource->size <<= 1;
220                         resource->align += 1;
221                         resource->gran += 1;
222                 }
223                 resource->limit = limit = moving | (resource->size - 1);
224         }
225
226         /*
227          * Some broken hardware has read-only registers that do not
228          * really size correctly.
229          *
230          * Example: the Acer M7229 has BARs 1-4 normally read-only,
231          * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
232          * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
233          * is a violation of the spec.
234          *
235          * We catch this case and ignore it by observing which bits move.
236          *
237          * This also catches the common case of unimplemented registers
238          * that always read back as 0.
239          */
240         if (moving == 0) {
241                 if (value != 0) {
242                         printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
243                                "read-only ignoring it\n",
244                                dev_path(dev), index, value);
245                 }
246                 resource->flags = 0;
247         } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
248                 /* An I/O mapped base address. */
249                 attr &= PCI_BASE_ADDRESS_IO_ATTR_MASK;
250                 resource->flags |= IORESOURCE_IO;
251                 /* I don't want to deal with 32bit I/O resources. */
252                 resource->limit = 0xffff;
253         } else {
254                 /* A Memory mapped base address. */
255                 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
256                 resource->flags |= IORESOURCE_MEM;
257                 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
258                         resource->flags |= IORESOURCE_PREFETCH;
259                 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
260                 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
261                         /* 32bit limit. */
262                         resource->limit = 0xffffffffUL;
263                 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
264                         /* 1MB limit. */
265                         resource->limit = 0x000fffffUL;
266                 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
267                         /* 64bit limit. */
268                         resource->limit = 0xffffffffffffffffULL;
269                         resource->flags |= IORESOURCE_PCI64;
270                 } else {
271                         /* Invalid value. */
272                         printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
273                         printk(BIOS_ERR, " on dev %s at index %02lx\n",
274                                dev_path(dev), index);
275                         resource->flags = 0;
276                 }
277         }
278
279         /* Don't let the limit exceed which bits can move. */
280         if (resource->limit > limit)
281                 resource->limit = limit;
282
283         return resource;
284 }
285
286 /**
287  * Given a device and an index, read the size of the BAR for that register.
288  *
289  * @param dev Pointer to the device structure.
290  * @param index Address of the PCI configuration register.
291  */
292 static void pci_get_rom_resource(struct device *dev, unsigned long index)
293 {
294         struct resource *resource;
295         unsigned long value;
296         resource_t moving;
297
298         /* Initialize the resources to nothing. */
299         resource = new_resource(dev, index);
300
301         /* Get the initial value. */
302         value = pci_read_config32(dev, index);
303
304         /* See which bits move. */
305         moving = pci_moving_config32(dev, index);
306
307         /* Clear the Enable bit. */
308         moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
309
310         /* Find the resource constraints.
311          * Start by finding the bits that move. From there:
312          * - Size is the least significant bit of the bits that move.
313          * - Limit is all of the bits that move plus all of the lower bits.
314          * See PCI Spec 6.2.5.1.
315          */
316         if (moving) {
317                 resource->size = 1;
318                 resource->align = resource->gran = 0;
319                 while (!(moving & resource->size)) {
320                         resource->size <<= 1;
321                         resource->align += 1;
322                         resource->gran += 1;
323                 }
324                 resource->limit = moving | (resource->size - 1);
325                 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
326         } else {
327                 if (value != 0) {
328                         printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
329                                "read-only ignoring it\n",
330                                dev_path(dev), index, value);
331                 }
332                 resource->flags = 0;
333         }
334         compact_resources(dev);
335 }
336
337 /**
338  * Read the base address registers for a given device.
339  *
340  * @param dev Pointer to the dev structure.
341  * @param howmany How many registers to read (6 for device, 2 for bridge).
342  */
343 static void pci_read_bases(struct device *dev, unsigned int howmany)
344 {
345         unsigned long index;
346
347         for (index = PCI_BASE_ADDRESS_0;
348              (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
349                 struct resource *resource;
350                 resource = pci_get_resource(dev, index);
351                 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
352         }
353
354         compact_resources(dev);
355 }
356
357 static void pci_record_bridge_resource(struct device *dev, resource_t moving,
358                                        unsigned index, unsigned long type)
359 {
360         struct resource *resource;
361         unsigned long gran;
362         resource_t step;
363
364         resource = NULL;
365
366         if (!moving)
367                 return;
368
369         /* Initialize the constraints on the current bus. */
370         resource = new_resource(dev, index);
371         resource->size = 0;
372         gran = 0;
373         step = 1;
374         while ((moving & step) == 0) {
375                 gran += 1;
376                 step <<= 1;
377         }
378         resource->gran = gran;
379         resource->align = gran;
380         resource->limit = moving | (step - 1);
381         resource->flags = type | IORESOURCE_PCI_BRIDGE |
382                           IORESOURCE_BRIDGE;
383 }
384
385 static void pci_bridge_read_bases(struct device *dev)
386 {
387         resource_t moving_base, moving_limit, moving;
388
389         /* See if the bridge I/O resources are implemented. */
390         moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
391         moving_base |=
392           ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
393
394         moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
395         moving_limit |=
396           ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
397
398         moving = moving_base & moving_limit;
399
400         /* Initialize the I/O space constraints on the current bus. */
401         pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
402
403         /* See if the bridge prefmem resources are implemented. */
404         moving_base =
405           ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
406         moving_base |=
407           ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
408
409         moving_limit =
410           ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
411         moving_limit |=
412           ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
413
414         moving = moving_base & moving_limit;
415         /* Initialize the prefetchable memory constraints on the current bus. */
416         pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
417                                    IORESOURCE_MEM | IORESOURCE_PREFETCH);
418
419         /* See if the bridge mem resources are implemented. */
420         moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
421         moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
422
423         moving = moving_base & moving_limit;
424
425         /* Initialize the memory resources on the current bus. */
426         pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
427                                    IORESOURCE_MEM);
428
429         compact_resources(dev);
430 }
431
432 void pci_dev_read_resources(struct device *dev)
433 {
434         pci_read_bases(dev, 6);
435         pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
436 }
437
438 void pci_bus_read_resources(struct device *dev)
439 {
440         pci_bridge_read_bases(dev);
441         pci_read_bases(dev, 2);
442         pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
443 }
444
445 void pci_domain_read_resources(struct device *dev)
446 {
447         struct resource *res;
448
449         /* Initialize the system-wide I/O space constraints. */
450         res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
451         res->limit = 0xffffUL;
452         res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
453                      IORESOURCE_ASSIGNED;
454
455         /* Initialize the system-wide memory resources constraints. */
456         res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
457         res->limit = 0xffffffffULL;
458         res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
459                      IORESOURCE_ASSIGNED;
460 }
461
462 static void pci_set_resource(struct device *dev, struct resource *resource)
463 {
464         resource_t base, end;
465
466         /* Make certain the resource has actually been assigned a value. */
467         if (!(resource->flags & IORESOURCE_ASSIGNED)) {
468                 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
469                        "assigned\n", dev_path(dev), resource->index,
470                        resource_type(resource), resource->size);
471                 return;
472         }
473
474         /* If this resource is fixed don't worry about it. */
475         if (resource->flags & IORESOURCE_FIXED)
476                 return;
477
478         /* If I have already stored this resource don't worry about it. */
479         if (resource->flags & IORESOURCE_STORED)
480                 return;
481
482         /* If the resource is subtractive don't worry about it. */
483         if (resource->flags & IORESOURCE_SUBTRACTIVE)
484                 return;
485
486         /* Only handle PCI memory and I/O resources for now. */
487         if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
488                 return;
489
490         /* Enable the resources in the command register. */
491         if (resource->size) {
492                 if (resource->flags & IORESOURCE_MEM)
493                         dev->command |= PCI_COMMAND_MEMORY;
494                 if (resource->flags & IORESOURCE_IO)
495                         dev->command |= PCI_COMMAND_IO;
496                 if (resource->flags & IORESOURCE_PCI_BRIDGE)
497                         dev->command |= PCI_COMMAND_MASTER;
498         }
499
500         /* Get the base address. */
501         base = resource->base;
502
503         /* Get the end. */
504         end = resource_end(resource);
505
506         /* Now store the resource. */
507         resource->flags |= IORESOURCE_STORED;
508
509         /*
510          * PCI bridges have no enable bit. They are disabled if the base of
511          * the range is greater than the limit. If the size is zero, disable
512          * by setting the base = limit and end = limit - 2^gran.
513          */
514         if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
515                 base = resource->limit;
516                 end = resource->limit - (1 << resource->gran);
517                 resource->base = base;
518         }
519
520         if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
521                 unsigned long base_lo, base_hi;
522
523                 /*
524                  * Some chipsets allow us to set/clear the I/O bit
525                  * (e.g. VIA 82C686A). So set it to be safe.
526                  */
527                 base_lo = base & 0xffffffff;
528                 base_hi = (base >> 32) & 0xffffffff;
529                 if (resource->flags & IORESOURCE_IO)
530                         base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
531                 pci_write_config32(dev, resource->index, base_lo);
532                 if (resource->flags & IORESOURCE_PCI64)
533                         pci_write_config32(dev, resource->index + 4, base_hi);
534         } else if (resource->index == PCI_IO_BASE) {
535                 /* Set the I/O ranges. */
536                 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
537                 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
538                 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
539                 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
540         } else if (resource->index == PCI_MEMORY_BASE) {
541                 /* Set the memory range. */
542                 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
543                 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
544         } else if (resource->index == PCI_PREF_MEMORY_BASE) {
545                 /* Set the prefetchable memory range. */
546                 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
547                 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
548                 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
549                 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
550         } else {
551                 /* Don't let me think I stored the resource. */
552                 resource->flags &= ~IORESOURCE_STORED;
553                 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
554                        resource->index);
555         }
556
557         report_resource_stored(dev, resource, "");
558 }
559
560 void pci_dev_set_resources(struct device *dev)
561 {
562         struct resource *res;
563         struct bus *bus;
564         u8 line;
565
566         for (res = dev->resource_list; res; res = res->next)
567                 pci_set_resource(dev, res);
568
569         for (bus = dev->link_list; bus; bus = bus->next) {
570                 if (bus->children)
571                         assign_resources(bus);
572         }
573
574         /* Set a default latency timer. */
575         pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
576
577         /* Set a default secondary latency timer. */
578         if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
579                 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
580
581         /* Zero the IRQ settings. */
582         line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
583         if (line)
584                 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
585
586         /* Set the cache line size, so far 64 bytes is good for everyone. */
587         pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
588 }
589
590 void pci_dev_enable_resources(struct device *dev)
591 {
592         const struct pci_operations *ops;
593         u16 command;
594
595         /* Set the subsystem vendor and device ID for mainboard devices. */
596         ops = ops_pci(dev);
597         if (dev->on_mainboard && ops && ops->set_subsystem) {
598                 printk(BIOS_DEBUG, "%s subsystem <- %02x/%02x\n", dev_path(dev),
599                        CONFIG_MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID,
600                        CONFIG_MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID);
601                 ops->set_subsystem(dev,
602                                    CONFIG_MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID,
603                                    CONFIG_MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID);
604         }
605         command = pci_read_config16(dev, PCI_COMMAND);
606         command |= dev->command;
607
608         /* v3 has
609          * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR);  // Error check.
610          */
611
612         printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
613         pci_write_config16(dev, PCI_COMMAND, command);
614 }
615
616 void pci_bus_enable_resources(struct device *dev)
617 {
618         u16 ctrl;
619
620         /*
621          * Enable I/O in command register if there is VGA card
622          * connected with (even it does not claim I/O resource).
623          */
624         if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
625                 dev->command |= PCI_COMMAND_IO;
626         ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
627         ctrl |= dev->link_list->bridge_ctrl;
628         ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
629         printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
630         pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
631
632         pci_dev_enable_resources(dev);
633 }
634
635 void pci_bus_reset(struct bus *bus)
636 {
637         u16 ctl;
638
639         ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
640         ctl |= PCI_BRIDGE_CTL_BUS_RESET;
641         pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
642         mdelay(10);
643
644         ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
645         pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
646         delay(1);
647 }
648
649 void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
650 {
651         pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
652                            ((device & 0xffff) << 16) | (vendor & 0xffff));
653 }
654
655 /** Default handler: only runs the relevant PCI BIOS. */
656 void pci_dev_init(struct device *dev)
657 {
658 #if CONFIG_PCI_ROM_RUN == 1 || CONFIG_VGA_ROM_RUN == 1
659         struct rom_header *rom, *ram;
660
661         if (CONFIG_PCI_ROM_RUN != 1 && /* Only execute VGA ROMs. */
662             ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
663                 return;
664
665         if (CONFIG_VGA_ROM_RUN != 1 && /* Only execute non-VGA ROMs. */
666             ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
667                 return;
668
669         rom = pci_rom_probe(dev);
670         if (rom == NULL)
671                 return;
672
673         ram = pci_rom_load(dev, rom);
674         if (ram == NULL)
675                 return;
676
677         run_bios(dev, (unsigned long)ram);
678 #endif /* CONFIG_PCI_ROM_RUN || CONFIG_VGA_ROM_RUN */
679 }
680
681 /** Default device operation for PCI devices */
682 static struct pci_operations pci_dev_ops_pci = {
683         .set_subsystem = pci_dev_set_subsystem,
684 };
685
686 struct device_operations default_pci_ops_dev = {
687         .read_resources   = pci_dev_read_resources,
688         .set_resources    = pci_dev_set_resources,
689         .enable_resources = pci_dev_enable_resources,
690         .init             = pci_dev_init,
691         .scan_bus         = 0,
692         .enable           = 0,
693         .ops_pci          = &pci_dev_ops_pci,
694 };
695
696 /** Default device operations for PCI bridges */
697 static struct pci_operations pci_bus_ops_pci = {
698         .set_subsystem = 0,
699 };
700
701 struct device_operations default_pci_ops_bus = {
702         .read_resources   = pci_bus_read_resources,
703         .set_resources    = pci_dev_set_resources,
704         .enable_resources = pci_bus_enable_resources,
705         .init             = 0,
706         .scan_bus         = pci_scan_bridge,
707         .enable           = 0,
708         .reset_bus        = pci_bus_reset,
709         .ops_pci          = &pci_bus_ops_pci,
710 };
711
712 /**
713  * Detect the type of downstream bridge.
714  *
715  * This function is a heuristic to detect which type of bus is downstream
716  * of a PCI-to-PCI bridge. This functions by looking for various capability
717  * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
718  * Hypertransport all seem to have appropriate capabilities.
719  *
720  * When only a PCI-Express capability is found the type is examined to see
721  * which type of bridge we have.
722  *
723  * @param dev Pointer to the device structure of the bridge.
724  * @return Appropriate bridge operations.
725  */
726 static struct device_operations *get_pci_bridge_ops(device_t dev)
727 {
728         unsigned int pos;
729
730 #if CONFIG_PCIX_PLUGIN_SUPPORT == 1
731         pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
732         if (pos) {
733                 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
734                 return &default_pcix_ops_bus;
735         }
736 #endif
737 #if CONFIG_AGP_PLUGIN_SUPPORT == 1
738         /* How do I detect a PCI to AGP bridge? */
739 #endif
740 #if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT == 1
741         pos = 0;
742         while ((pos = pci_find_next_capability(dev, PCI_CAP_ID_HT, pos))) {
743                 u16 flags;
744                 flags = pci_read_config16(dev, pos + PCI_CAP_FLAGS);
745                 if ((flags >> 13) == 1) {
746                         /* Host or Secondary Interface */
747                         printk(BIOS_DEBUG, "%s subordinate bus HT\n",
748                                dev_path(dev));
749                         return &default_ht_ops_bus;
750                 }
751         }
752 #endif
753 #if CONFIG_PCIEXP_PLUGIN_SUPPORT == 1
754         pos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
755         if (pos) {
756                 u16 flags;
757                 flags = pci_read_config16(dev, pos + PCI_EXP_FLAGS);
758                 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
759                 case PCI_EXP_TYPE_ROOT_PORT:
760                 case PCI_EXP_TYPE_UPSTREAM:
761                 case PCI_EXP_TYPE_DOWNSTREAM:
762                         printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
763                                dev_path(dev));
764                         return &default_pciexp_ops_bus;
765                 case PCI_EXP_TYPE_PCI_BRIDGE:
766                         printk(BIOS_DEBUG, "%s subordinate PCI\n",
767                                dev_path(dev));
768                         return &default_pci_ops_bus;
769                 default:
770                         break;
771                 }
772         }
773 #endif
774         return &default_pci_ops_bus;
775 }
776
777 /**
778  * Set up PCI device operation.
779  *
780  * Check if it already has a driver. If not, use find_device_operations(),
781  * or set to a default based on type.
782  *
783  * @param dev Pointer to the device whose pci_ops you want to set.
784  * @see pci_drivers
785  */
786 static void set_pci_ops(struct device *dev)
787 {
788         struct pci_driver *driver;
789
790         if (dev->ops)
791                 return;
792
793         /*
794          * Look through the list of setup drivers and find one for
795          * this PCI device.
796          */
797         for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
798                 if ((driver->vendor == dev->vendor) &&
799                     (driver->device == dev->device)) {
800                         dev->ops = (struct device_operations *)driver->ops;
801                         printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
802                                dev_path(dev), driver->vendor, driver->device,
803                                (driver->ops->scan_bus ? "bus " : ""));
804                         return;
805                 }
806         }
807
808         /* If I don't have a specific driver use the default operations. */
809         switch (dev->hdr_type & 0x7f) { /* Header type */
810         case PCI_HEADER_TYPE_NORMAL:
811                 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
812                         goto bad;
813                 dev->ops = &default_pci_ops_dev;
814                 break;
815         case PCI_HEADER_TYPE_BRIDGE:
816                 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
817                         goto bad;
818                 dev->ops = get_pci_bridge_ops(dev);
819                 break;
820 #if CONFIG_CARDBUS_PLUGIN_SUPPORT == 1
821         case PCI_HEADER_TYPE_CARDBUS:
822                 dev->ops = &default_cardbus_ops_bus;
823                 break;
824 #endif
825 default:
826 bad:
827                 if (dev->enabled) {
828                         printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
829                                "header type %02x, ignoring.\n", dev_path(dev),
830                                dev->vendor, dev->device,
831                                dev->class >> 8, dev->hdr_type);
832                 }
833         }
834 }
835
836 /**
837  * See if we have already allocated a device structure for a given devfn.
838  *
839  * Given a linked list of PCI device structures and a devfn number, find the
840  * device structure correspond to the devfn, if present. This function also
841  * removes the device structure from the linked list.
842  *
843  * @param list The device structure list.
844  * @param devfn A device/function number.
845  * @return Pointer to the device structure found or NULL if we have not
846  *         allocated a device for this devfn yet.
847  */
848 static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
849 {
850         struct device *dev;
851
852         dev = 0;
853         for (; *list; list = &(*list)->sibling) {
854                 if ((*list)->path.type != DEVICE_PATH_PCI) {
855                         printk(BIOS_ERR, "child %s not a PCI device\n",
856                                dev_path(*list));
857                         continue;
858                 }
859                 if ((*list)->path.pci.devfn == devfn) {
860                         /* Unlink from the list. */
861                         dev = *list;
862                         *list = (*list)->sibling;
863                         dev->sibling = NULL;
864                         break;
865                 }
866         }
867
868         /*
869          * Just like alloc_dev() add the device to the list of devices on the
870          * bus. When the list of devices was formed we removed all of the
871          * parents children, and now we are interleaving static and dynamic
872          * devices in order on the bus.
873          */
874         if (dev) {
875                 struct device *child;
876
877                 /* Find the last child of our parent. */
878                 for (child = dev->bus->children; child && child->sibling;)
879                         child = child->sibling;
880
881                 /* Place the device on the list of children of its parent. */
882                 if (child)
883                         child->sibling = dev;
884                 else
885                         dev->bus->children = dev;
886         }
887
888         return dev;
889 }
890
891 /**
892  * Scan a PCI bus.
893  *
894  * Determine the existence of a given PCI device. Allocate a new struct device
895  * if dev==NULL was passed in and the device exists in hardware.
896  *
897  * @param dev Pointer to the dev structure.
898  * @param bus Pointer to the bus structure.
899  * @param devfn A device/function number to look at.
900  * @return The device structure for the device (if found), NULL otherwise.
901  */
902 device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
903 {
904         u32 id, class;
905         u8 hdr_type;
906
907         /* Detect if a device is present. */
908         if (!dev) {
909                 struct device dummy;
910
911                 dummy.bus = bus;
912                 dummy.path.type = DEVICE_PATH_PCI;
913                 dummy.path.pci.devfn = devfn;
914
915                 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
916                 /*
917                  * Have we found something? Some broken boards return 0 if a
918                  * slot is empty, but the expected answer is 0xffffffff.
919                  */
920                 if (id == 0xffffffff)
921                         return NULL;
922
923                 if ((id == 0x00000000) || (id == 0x0000ffff) ||
924                     (id == 0xffff0000)) {
925                         printk(BIOS_SPEW, "%s, bad id 0x%x\n",
926                                dev_path(&dummy), id);
927                         return NULL;
928                 }
929                 dev = alloc_dev(bus, &dummy.path);
930         } else {
931                 /*
932                  * Enable/disable the device. Once we have found the device-
933                  * specific operations this operations we will disable the
934                  * device with those as well.
935                  *
936                  * This is geared toward devices that have subfunctions
937                  * that do not show up by default.
938                  *
939                  * If a device is a stuff option on the motherboard
940                  * it may be absent and enable_dev() must cope.
941                  */
942                 /* Run the magic enable sequence for the device. */
943                 if (dev->chip_ops && dev->chip_ops->enable_dev)
944                         dev->chip_ops->enable_dev(dev);
945
946                 /* Now read the vendor and device ID. */
947                 id = pci_read_config32(dev, PCI_VENDOR_ID);
948
949                 /*
950                  * If the device does not have a PCI ID disable it. Possibly
951                  * this is because we have already disabled the device. But
952                  * this also handles optional devices that may not always
953                  * show up.
954                  */
955                 /* If the chain is fully enumerated quit */
956                 if ((id == 0xffffffff) || (id == 0x00000000) ||
957                     (id == 0x0000ffff) || (id == 0xffff0000)) {
958                         if (dev->enabled) {
959                                 printk(BIOS_INFO, "PCI: Static device %s not "
960                                        "found, disabling it.\n", dev_path(dev));
961                                 dev->enabled = 0;
962                         }
963                         return dev;
964                 }
965         }
966
967         /* Read the rest of the PCI configuration information. */
968         hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
969         class = pci_read_config32(dev, PCI_CLASS_REVISION);
970
971         /* Store the interesting information in the device structure. */
972         dev->vendor = id & 0xffff;
973         dev->device = (id >> 16) & 0xffff;
974         dev->hdr_type = hdr_type;
975
976         /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
977         dev->class = class >> 8;
978
979         /* Architectural/System devices always need to be bus masters. */
980         if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
981                 dev->command |= PCI_COMMAND_MASTER;
982
983         /*
984          * Look at the vendor and device ID, or at least the header type and
985          * class and figure out which set of configuration methods to use.
986          * Unless we already have some PCI ops.
987          */
988         set_pci_ops(dev);
989
990         /* Now run the magic enable/disable sequence for the device. */
991         if (dev->ops && dev->ops->enable)
992                 dev->ops->enable(dev);
993
994         /* Display the device. */
995         printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
996                dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
997                dev->ops ? "" : " No operations");
998
999         return dev;
1000 }
1001
1002 /**
1003  * Scan a PCI bus.
1004  *
1005  * Determine the existence of devices and bridges on a PCI bus. If there are
1006  * bridges on the bus, recursively scan the buses behind the bridges.
1007  *
1008  * This function is the default scan_bus() method for the root device
1009  * 'dev_root'.
1010  *
1011  * @param bus Pointer to the bus structure.
1012  * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1013  * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
1014  * @param max Current bus number.
1015  * @return The maximum bus number found, after scanning all subordinate busses.
1016  */
1017 unsigned int pci_scan_bus(struct bus *bus, unsigned min_devfn,
1018                           unsigned max_devfn, unsigned int max)
1019 {
1020         unsigned int devfn;
1021         struct device *old_devices;
1022         struct device *child;
1023
1024 #if CONFIG_PCI_BUS_SEGN_BITS
1025         printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %04x:%02x\n",
1026                bus->secondary >> 8, bus->secondary & 0xff);
1027 #else
1028         printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
1029 #endif
1030
1031         /* Maximum sane devfn is 0xFF. */
1032         if (max_devfn > 0xff) {
1033                 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1034                        "devfn %x\n", min_devfn, max_devfn);
1035                 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1036                        "Using 0xff.\n");
1037                 max_devfn=0xff;
1038         }
1039
1040         old_devices = bus->children;
1041         bus->children = NULL;
1042
1043         post_code(0x24);
1044
1045         /*
1046          * Probe all devices/functions on this bus with some optimization for
1047          * non-existence and single function devices.
1048          */
1049         for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
1050                 struct device *dev;
1051
1052                 /* First thing setup the device structure. */
1053                 dev = pci_scan_get_dev(&old_devices, devfn);
1054
1055                 /* See if a device is present and setup the device structure. */
1056                 dev = pci_probe_dev(dev, bus, devfn);
1057
1058                 /*
1059                  * If this is not a multi function device, or the device is
1060                  * not present don't waste time probing another function.
1061                  * Skip to next device.
1062                  */
1063                 if ((PCI_FUNC(devfn) == 0x00) && (!dev
1064                      || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
1065                         devfn += 0x07;
1066                 }
1067         }
1068
1069         post_code(0x25);
1070
1071         /*
1072          * Warn if any leftover static devices are are found.
1073          * There's probably a problem in devicetree.cb.
1074          */
1075         if (old_devices) {
1076                 device_t left;
1077                 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
1078                 for (left = old_devices; left; left = left->sibling)
1079                         printk(BIOS_WARNING, "%s\n", dev_path(left));
1080
1081                 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
1082         }
1083
1084         /*
1085          * For all children that implement scan_bus() (i.e. bridges)
1086          * scan the bus behind that child.
1087          */
1088         for (child = bus->children; child; child = child->sibling)
1089                 max = scan_bus(child, max);
1090
1091         /*
1092          * We've scanned the bus and so we know all about what's on the other
1093          * side of any bridges that may be on this bus plus any devices.
1094          * Return how far we've got finding sub-buses.
1095          */
1096         printk(BIOS_DEBUG, "PCI: pci_scan_bus returning with max=%03x\n", max);
1097         post_code(0x55);
1098         return max;
1099 }
1100
1101 /**
1102  * Scan a PCI bridge and the buses behind the bridge.
1103  *
1104  * Determine the existence of buses behind the bridge. Set up the bridge
1105  * according to the result of the scan.
1106  *
1107  * This function is the default scan_bus() method for PCI bridge devices.
1108  *
1109  * @param dev Pointer to the bridge device.
1110  * @param max The highest bus number assigned up to now.
1111  * @param do_scan_bus TODO
1112  * @return The maximum bus number found, after scanning all subordinate buses.
1113  */
1114 unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
1115                                 unsigned int (*do_scan_bus) (struct bus * bus,
1116                                                              unsigned min_devfn,
1117                                                              unsigned max_devfn,
1118                                                              unsigned int max))
1119 {
1120         struct bus *bus;
1121         u32 buses;
1122         u16 cr;
1123
1124         printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
1125
1126         if (dev->link_list == NULL) {
1127                 struct bus *link;
1128                 link = malloc(sizeof(*link));
1129                 if (link == NULL)
1130                         die("Couldn't allocate a link!\n");
1131                 memset(link, 0, sizeof(*link));
1132                 link->dev = dev;
1133                 dev->link_list = link;
1134         }
1135
1136         bus = dev->link_list;
1137
1138         /*
1139          * Set up the primary, secondary and subordinate bus numbers. We have
1140          * no idea how many buses are behind this bridge yet, so we set the
1141          * subordinate bus number to 0xff for the moment.
1142          */
1143         bus->secondary = ++max;
1144         bus->subordinate = 0xff;
1145
1146         /* Clear all status bits and turn off memory, I/O and master enables. */
1147         cr = pci_read_config16(dev, PCI_COMMAND);
1148         pci_write_config16(dev, PCI_COMMAND, 0x0000);
1149         pci_write_config16(dev, PCI_STATUS, 0xffff);
1150
1151         /*
1152          * Read the existing primary/secondary/subordinate bus
1153          * number configuration.
1154          */
1155         buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
1156
1157         /*
1158          * Configure the bus numbers for this bridge: the configuration
1159          * transactions will not be propagated by the bridge if it is not
1160          * correctly configured.
1161          */
1162         buses &= 0xff000000;
1163         buses |= (((unsigned int)(dev->bus->secondary) << 0) |
1164                   ((unsigned int)(bus->secondary) << 8) |
1165                   ((unsigned int)(bus->subordinate) << 16));
1166         pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1167
1168         /* Now we can scan all subordinate buses (those behind the bridge). */
1169         max = do_scan_bus(bus, 0x00, 0xff, max);
1170
1171         /*
1172          * We know the number of buses behind this bridge. Set the subordinate
1173          * bus number to its real value.
1174          */
1175         bus->subordinate = max;
1176         buses = (buses & 0xff00ffff) | ((unsigned int)(bus->subordinate) << 16);
1177         pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1178         pci_write_config16(dev, PCI_COMMAND, cr);
1179
1180         printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
1181         return max;
1182 }
1183
1184 /**
1185  * Scan a PCI bridge and the buses behind the bridge.
1186  *
1187  * Determine the existence of buses behind the bridge. Set up the bridge
1188  * according to the result of the scan.
1189  *
1190  * This function is the default scan_bus() method for PCI bridge devices.
1191  *
1192  * @param dev Pointer to the bridge device.
1193  * @param max The highest bus number assigned up to now.
1194  * @return The maximum bus number found, after scanning all subordinate buses.
1195  */
1196 unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1197 {
1198         return do_pci_scan_bridge(dev, max, pci_scan_bus);
1199 }
1200
1201 /**
1202  * Scan a PCI domain.
1203  *
1204  * This function is the default scan_bus() method for PCI domains.
1205  *
1206  * @param dev Pointer to the domain.
1207  * @param max The highest bus number assigned up to now.
1208  * @return The maximum bus number found, after scanning all subordinate busses.
1209  */
1210 unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
1211 {
1212         max = pci_scan_bus(dev->link_list, PCI_DEVFN(0, 0), 0xff, max);
1213         return max;
1214 }
1215
1216 #if CONFIG_PC80_SYSTEM == 1
1217 /**
1218  * Assign IRQ numbers.
1219  *
1220  * This function assigns IRQs for all functions contained within the indicated
1221  * device address. If the device does not exist or does not require interrupts
1222  * then this function has no effect.
1223  *
1224  * This function should be called for each PCI slot in your system.
1225  *
1226  * @param bus Pointer to the bus structure.
1227  * @param slot TODO
1228  * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1229  *        of this slot. The particular IRQ #s that are passed in depend on the
1230  *        routing inside your southbridge and on your board.
1231  */
1232 void pci_assign_irqs(unsigned bus, unsigned slot,
1233                      const unsigned char pIntAtoD[4])
1234 {
1235         unsigned int funct;
1236         device_t pdev;
1237         u8 line, irq;
1238
1239         /* Each slot may contain up to eight functions. */
1240         for (funct = 0; funct < 8; funct++) {
1241                 pdev = dev_find_slot(bus, (slot << 3) + funct);
1242
1243                 if (!pdev)
1244                         continue;
1245
1246                 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
1247
1248                 /* PCI spec says all values except 1..4 are reserved. */
1249                 if ((line < 1) || (line > 4))
1250                         continue;
1251
1252                 irq = pIntAtoD[line - 1];
1253
1254                 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
1255                        irq, bus, slot, funct);
1256
1257                 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
1258                                   pIntAtoD[line - 1]);
1259
1260 #ifdef PARANOID_IRQ_ASSIGNMENTS
1261                 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
1262                 printk(BIOS_DEBUG, "  Readback = %d\n", irq);
1263 #endif
1264
1265                 /* Change to level triggered. */
1266                 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1267                                             IRQ_LEVEL_TRIGGERED);
1268         }
1269 }
1270 #endif