2 * Common prep/chrp pci routines. -- Cort
5 #include <linux/kernel.h>
7 #include <linux/delay.h>
8 #include <linux/string.h>
9 #include <linux/init.h>
10 #include <linux/capability.h>
11 #include <linux/sched.h>
12 #include <linux/errno.h>
13 #include <linux/bootmem.h>
15 #include <asm/processor.h>
18 #include <asm/sections.h>
19 #include <asm/pci-bridge.h>
20 #include <asm/byteorder.h>
22 #include <asm/uaccess.h>
23 #include <asm/machdep.h>
28 #define DBG(x...) printk(x)
33 unsigned long isa_io_base
= 0;
34 unsigned long isa_mem_base
= 0;
35 unsigned long pci_dram_offset
= 0;
36 int pcibios_assign_bus_offset
= 1;
38 void pcibios_make_OF_bus_map(void);
40 static int pci_relocate_bridge_resource(struct pci_bus
*bus
, int i
);
41 static int probe_resource(struct pci_bus
*parent
, struct resource
*pr
,
42 struct resource
*res
, struct resource
**conflict
);
43 static void update_bridge_base(struct pci_bus
*bus
, int i
);
44 static void pcibios_fixup_resources(struct pci_dev
* dev
);
45 static void fixup_broken_pcnet32(struct pci_dev
* dev
);
46 static int reparent_resources(struct resource
*parent
, struct resource
*res
);
47 static void fixup_cpc710_pci64(struct pci_dev
* dev
);
49 /* By default, we don't re-assign bus numbers.
51 int pci_assign_all_buses
;
53 struct pci_controller
* hose_head
;
54 struct pci_controller
** hose_tail
= &hose_head
;
56 static int pci_bus_count
;
59 fixup_broken_pcnet32(struct pci_dev
* dev
)
61 if ((dev
->class>>8 == PCI_CLASS_NETWORK_ETHERNET
)) {
62 dev
->vendor
= PCI_VENDOR_ID_AMD
;
63 pci_write_config_word(dev
, PCI_VENDOR_ID
, PCI_VENDOR_ID_AMD
);
66 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT
, PCI_ANY_ID
, fixup_broken_pcnet32
);
69 fixup_cpc710_pci64(struct pci_dev
* dev
)
71 /* Hide the PCI64 BARs from the kernel as their content doesn't
72 * fit well in the resource management
74 dev
->resource
[0].start
= dev
->resource
[0].end
= 0;
75 dev
->resource
[0].flags
= 0;
76 dev
->resource
[1].start
= dev
->resource
[1].end
= 0;
77 dev
->resource
[1].flags
= 0;
79 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_IBM
, PCI_DEVICE_ID_IBM_CPC710_PCI64
, fixup_cpc710_pci64
);
82 pcibios_fixup_resources(struct pci_dev
*dev
)
84 struct pci_controller
* hose
= (struct pci_controller
*)dev
->sysdata
;
89 printk(KERN_ERR
"No hose for PCI dev %s!\n", pci_name(dev
));
92 for (i
= 0; i
< DEVICE_COUNT_RESOURCE
; i
++) {
93 struct resource
*res
= dev
->resource
+ i
;
96 if (res
->end
== 0xffffffff) {
97 DBG("PCI:%s Resource %d [%016llx-%016llx] is unassigned\n",
99 (unsigned long long)res
->start
,
100 (unsigned long long)res
->end
);
101 res
->end
-= res
->start
;
103 res
->flags
|= IORESOURCE_UNSET
;
107 if (res
->flags
& IORESOURCE_MEM
) {
108 offset
= hose
->pci_mem_offset
;
109 } else if (res
->flags
& IORESOURCE_IO
) {
110 offset
= (unsigned long) hose
->io_base_virt
114 res
->start
+= offset
;
117 printk("Fixup res %d (%lx) of dev %s: %lx -> %lx\n",
118 i
, res
->flags
, pci_name(dev
),
119 res
->start
- offset
, res
->start
);
124 /* Call machine specific resource fixup */
125 if (ppc_md
.pcibios_fixup_resources
)
126 ppc_md
.pcibios_fixup_resources(dev
);
128 DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID
, PCI_ANY_ID
, pcibios_fixup_resources
);
130 void pcibios_resource_to_bus(struct pci_dev
*dev
, struct pci_bus_region
*region
,
131 struct resource
*res
)
133 unsigned long offset
= 0;
134 struct pci_controller
*hose
= dev
->sysdata
;
136 if (hose
&& res
->flags
& IORESOURCE_IO
)
137 offset
= (unsigned long)hose
->io_base_virt
- isa_io_base
;
138 else if (hose
&& res
->flags
& IORESOURCE_MEM
)
139 offset
= hose
->pci_mem_offset
;
140 region
->start
= res
->start
- offset
;
141 region
->end
= res
->end
- offset
;
143 EXPORT_SYMBOL(pcibios_resource_to_bus
);
145 void pcibios_bus_to_resource(struct pci_dev
*dev
, struct resource
*res
,
146 struct pci_bus_region
*region
)
148 unsigned long offset
= 0;
149 struct pci_controller
*hose
= dev
->sysdata
;
151 if (hose
&& res
->flags
& IORESOURCE_IO
)
152 offset
= (unsigned long)hose
->io_base_virt
- isa_io_base
;
153 else if (hose
&& res
->flags
& IORESOURCE_MEM
)
154 offset
= hose
->pci_mem_offset
;
155 res
->start
= region
->start
+ offset
;
156 res
->end
= region
->end
+ offset
;
158 EXPORT_SYMBOL(pcibios_bus_to_resource
);
161 * We need to avoid collisions with `mirrored' VGA ports
162 * and other strange ISA hardware, so we always want the
163 * addresses to be allocated in the 0x000-0x0ff region
166 * Why? Because some silly external IO cards only decode
167 * the low 10 bits of the IO address. The 0x00-0xff region
168 * is reserved for motherboard devices that decode all 16
169 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
170 * but we want to try to avoid allocating at 0x2900-0x2bff
171 * which might have be mirrored at 0x0100-0x03ff..
173 void pcibios_align_resource(void *data
, struct resource
*res
,
174 resource_size_t size
, resource_size_t align
)
176 struct pci_dev
*dev
= data
;
178 if (res
->flags
& IORESOURCE_IO
) {
179 resource_size_t start
= res
->start
;
182 printk(KERN_ERR
"PCI: I/O Region %s/%d too large"
183 " (%lld bytes)\n", pci_name(dev
),
184 dev
->resource
- res
, (unsigned long long)size
);
188 start
= (start
+ 0x3ff) & ~0x3ff;
193 EXPORT_SYMBOL(pcibios_align_resource
);
196 * Handle resources of PCI devices. If the world were perfect, we could
197 * just allocate all the resource regions and do nothing more. It isn't.
198 * On the other hand, we cannot just re-allocate all devices, as it would
199 * require us to know lots of host bridge internals. So we attempt to
200 * keep as much of the original configuration as possible, but tweak it
201 * when it's found to be wrong.
203 * Known BIOS problems we have to work around:
204 * - I/O or memory regions not configured
205 * - regions configured, but not enabled in the command register
206 * - bogus I/O addresses above 64K used
207 * - expansion ROMs left enabled (this may sound harmless, but given
208 * the fact the PCI specs explicitly allow address decoders to be
209 * shared between expansion ROMs and other resource regions, it's
210 * at least dangerous)
213 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
214 * This gives us fixed barriers on where we can allocate.
215 * (2) Allocate resources for all enabled devices. If there is
216 * a collision, just mark the resource as unallocated. Also
217 * disable expansion ROMs during this step.
218 * (3) Try to allocate resources for disabled devices. If the
219 * resources were assigned correctly, everything goes well,
220 * if they weren't, they won't disturb allocation of other
222 * (4) Assign new addresses to resources which were either
223 * not configured at all or misconfigured. If explicitly
224 * requested by the user, configure expansion ROM address
229 pcibios_allocate_bus_resources(struct list_head
*bus_list
)
233 struct resource
*res
, *pr
;
235 /* Depth-First Search on bus tree */
236 list_for_each_entry(bus
, bus_list
, node
) {
237 for (i
= 0; i
< 4; ++i
) {
238 if ((res
= bus
->resource
[i
]) == NULL
|| !res
->flags
239 || res
->start
> res
->end
)
241 if (bus
->parent
== NULL
)
242 pr
= (res
->flags
& IORESOURCE_IO
)?
243 &ioport_resource
: &iomem_resource
;
245 pr
= pci_find_parent_resource(bus
->self
, res
);
247 /* this happens when the generic PCI
248 * code (wrongly) decides that this
249 * bridge is transparent -- paulus
255 DBG("PCI: bridge rsrc %llx..%llx (%lx), parent %p\n",
256 (unsigned long long)res
->start
,
257 (unsigned long long)res
->end
, res
->flags
, pr
);
259 if (request_resource(pr
, res
) == 0)
262 * Must be a conflict with an existing entry.
263 * Move that entry (or entries) under the
264 * bridge resource and try again.
266 if (reparent_resources(pr
, res
) == 0)
269 printk(KERN_ERR
"PCI: Cannot allocate resource region "
270 "%d of PCI bridge %d\n", i
, bus
->number
);
271 if (pci_relocate_bridge_resource(bus
, i
))
272 bus
->resource
[i
] = NULL
;
274 pcibios_allocate_bus_resources(&bus
->children
);
279 * Reparent resource children of pr that conflict with res
280 * under res, and make res replace those children.
283 reparent_resources(struct resource
*parent
, struct resource
*res
)
285 struct resource
*p
, **pp
;
286 struct resource
**firstpp
= NULL
;
288 for (pp
= &parent
->child
; (p
= *pp
) != NULL
; pp
= &p
->sibling
) {
289 if (p
->end
< res
->start
)
291 if (res
->end
< p
->start
)
293 if (p
->start
< res
->start
|| p
->end
> res
->end
)
294 return -1; /* not completely contained */
299 return -1; /* didn't find any conflicting entries? */
300 res
->parent
= parent
;
301 res
->child
= *firstpp
;
305 for (p
= res
->child
; p
!= NULL
; p
= p
->sibling
) {
307 DBG(KERN_INFO
"PCI: reparented %s [%llx..%llx] under %s\n",
308 p
->name
, (unsigned long long)p
->start
,
309 (unsigned long long)p
->end
, res
->name
);
315 * A bridge has been allocated a range which is outside the range
316 * of its parent bridge, so it needs to be moved.
319 pci_relocate_bridge_resource(struct pci_bus
*bus
, int i
)
321 struct resource
*res
, *pr
, *conflict
;
322 unsigned long try, size
;
324 struct pci_bus
*parent
= bus
->parent
;
326 if (parent
== NULL
) {
327 /* shouldn't ever happen */
328 printk(KERN_ERR
"PCI: can't move host bridge resource\n");
331 res
= bus
->resource
[i
];
335 for (j
= 0; j
< 4; j
++) {
336 struct resource
*r
= parent
->resource
[j
];
339 if ((res
->flags
^ r
->flags
) & (IORESOURCE_IO
| IORESOURCE_MEM
))
341 if (!((res
->flags
^ r
->flags
) & IORESOURCE_PREFETCH
)) {
345 if (res
->flags
& IORESOURCE_PREFETCH
)
350 size
= res
->end
- res
->start
;
351 if (pr
->start
> pr
->end
|| size
> pr
->end
- pr
->start
)
355 res
->start
= try - size
;
357 if (probe_resource(bus
->parent
, pr
, res
, &conflict
) == 0)
359 if (conflict
->start
<= pr
->start
+ size
)
361 try = conflict
->start
- 1;
363 if (request_resource(pr
, res
)) {
364 DBG(KERN_ERR
"PCI: huh? couldn't move to %llx..%llx\n",
365 (unsigned long long)res
->start
,
366 (unsigned long long)res
->end
);
367 return -1; /* "can't happen" */
369 update_bridge_base(bus
, i
);
370 printk(KERN_INFO
"PCI: bridge %d resource %d moved to %llx..%llx\n",
371 bus
->number
, i
, (unsigned long long)res
->start
,
372 (unsigned long long)res
->end
);
377 probe_resource(struct pci_bus
*parent
, struct resource
*pr
,
378 struct resource
*res
, struct resource
**conflict
)
385 for (r
= pr
->child
; r
!= NULL
; r
= r
->sibling
) {
386 if (r
->end
>= res
->start
&& res
->end
>= r
->start
) {
391 list_for_each_entry(bus
, &parent
->children
, node
) {
392 for (i
= 0; i
< 4; ++i
) {
393 if ((r
= bus
->resource
[i
]) == NULL
)
395 if (!r
->flags
|| r
->start
> r
->end
|| r
== res
)
397 if (pci_find_parent_resource(bus
->self
, r
) != pr
)
399 if (r
->end
>= res
->start
&& res
->end
>= r
->start
) {
405 list_for_each_entry(dev
, &parent
->devices
, bus_list
) {
406 for (i
= 0; i
< 6; ++i
) {
407 r
= &dev
->resource
[i
];
408 if (!r
->flags
|| (r
->flags
& IORESOURCE_UNSET
))
410 if (pci_find_parent_resource(dev
, r
) != pr
)
412 if (r
->end
>= res
->start
&& res
->end
>= r
->start
) {
422 update_bridge_base(struct pci_bus
*bus
, int i
)
424 struct resource
*res
= bus
->resource
[i
];
425 u8 io_base_lo
, io_limit_lo
;
426 u16 mem_base
, mem_limit
;
428 unsigned long start
, end
, off
;
429 struct pci_dev
*dev
= bus
->self
;
430 struct pci_controller
*hose
= dev
->sysdata
;
433 printk("update_bridge_base: no hose?\n");
436 pci_read_config_word(dev
, PCI_COMMAND
, &cmd
);
437 pci_write_config_word(dev
, PCI_COMMAND
,
438 cmd
& ~(PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
));
439 if (res
->flags
& IORESOURCE_IO
) {
440 off
= (unsigned long) hose
->io_base_virt
- isa_io_base
;
441 start
= res
->start
- off
;
442 end
= res
->end
- off
;
443 io_base_lo
= (start
>> 8) & PCI_IO_RANGE_MASK
;
444 io_limit_lo
= (end
>> 8) & PCI_IO_RANGE_MASK
;
446 pci_write_config_word(dev
, PCI_IO_BASE_UPPER16
,
448 pci_write_config_word(dev
, PCI_IO_LIMIT_UPPER16
,
450 io_base_lo
|= PCI_IO_RANGE_TYPE_32
;
452 io_base_lo
|= PCI_IO_RANGE_TYPE_16
;
453 pci_write_config_byte(dev
, PCI_IO_BASE
, io_base_lo
);
454 pci_write_config_byte(dev
, PCI_IO_LIMIT
, io_limit_lo
);
456 } else if ((res
->flags
& (IORESOURCE_MEM
| IORESOURCE_PREFETCH
))
458 off
= hose
->pci_mem_offset
;
459 mem_base
= ((res
->start
- off
) >> 16) & PCI_MEMORY_RANGE_MASK
;
460 mem_limit
= ((res
->end
- off
) >> 16) & PCI_MEMORY_RANGE_MASK
;
461 pci_write_config_word(dev
, PCI_MEMORY_BASE
, mem_base
);
462 pci_write_config_word(dev
, PCI_MEMORY_LIMIT
, mem_limit
);
464 } else if ((res
->flags
& (IORESOURCE_MEM
| IORESOURCE_PREFETCH
))
465 == (IORESOURCE_MEM
| IORESOURCE_PREFETCH
)) {
466 off
= hose
->pci_mem_offset
;
467 mem_base
= ((res
->start
- off
) >> 16) & PCI_PREF_RANGE_MASK
;
468 mem_limit
= ((res
->end
- off
) >> 16) & PCI_PREF_RANGE_MASK
;
469 pci_write_config_word(dev
, PCI_PREF_MEMORY_BASE
, mem_base
);
470 pci_write_config_word(dev
, PCI_PREF_MEMORY_LIMIT
, mem_limit
);
473 DBG(KERN_ERR
"PCI: ugh, bridge %s res %d has flags=%lx\n",
474 pci_name(dev
), i
, res
->flags
);
476 pci_write_config_word(dev
, PCI_COMMAND
, cmd
);
479 static inline void alloc_resource(struct pci_dev
*dev
, int idx
)
481 struct resource
*pr
, *r
= &dev
->resource
[idx
];
483 DBG("PCI:%s: Resource %d: %016llx-%016llx (f=%lx)\n",
484 pci_name(dev
), idx
, (unsigned long long)r
->start
,
485 (unsigned long long)r
->end
, r
->flags
);
486 pr
= pci_find_parent_resource(dev
, r
);
487 if (!pr
|| request_resource(pr
, r
) < 0) {
488 printk(KERN_ERR
"PCI: Cannot allocate resource region %d"
489 " of device %s\n", idx
, pci_name(dev
));
491 DBG("PCI: parent is %p: %016llx-%016llx (f=%lx)\n",
492 pr
, (unsigned long long)pr
->start
,
493 (unsigned long long)pr
->end
, pr
->flags
);
494 /* We'll assign a new address later */
495 r
->flags
|= IORESOURCE_UNSET
;
502 pcibios_allocate_resources(int pass
)
504 struct pci_dev
*dev
= NULL
;
509 for_each_pci_dev(dev
) {
510 pci_read_config_word(dev
, PCI_COMMAND
, &command
);
511 for (idx
= 0; idx
< 6; idx
++) {
512 r
= &dev
->resource
[idx
];
513 if (r
->parent
) /* Already allocated */
515 if (!r
->flags
|| (r
->flags
& IORESOURCE_UNSET
))
516 continue; /* Not assigned at all */
517 if (r
->flags
& IORESOURCE_IO
)
518 disabled
= !(command
& PCI_COMMAND_IO
);
520 disabled
= !(command
& PCI_COMMAND_MEMORY
);
521 if (pass
== disabled
)
522 alloc_resource(dev
, idx
);
526 r
= &dev
->resource
[PCI_ROM_RESOURCE
];
527 if (r
->flags
& IORESOURCE_ROM_ENABLE
) {
528 /* Turn the ROM off, leave the resource region, but keep it unregistered. */
530 DBG("PCI: Switching off ROM of %s\n", pci_name(dev
));
531 r
->flags
&= ~IORESOURCE_ROM_ENABLE
;
532 pci_read_config_dword(dev
, dev
->rom_base_reg
, ®
);
533 pci_write_config_dword(dev
, dev
->rom_base_reg
,
534 reg
& ~PCI_ROM_ADDRESS_ENABLE
);
540 pcibios_assign_resources(void)
542 struct pci_dev
*dev
= NULL
;
546 for_each_pci_dev(dev
) {
547 int class = dev
->class >> 8;
549 /* Don't touch classless devices and host bridges */
550 if (!class || class == PCI_CLASS_BRIDGE_HOST
)
553 for (idx
= 0; idx
< 6; idx
++) {
554 r
= &dev
->resource
[idx
];
557 * We shall assign a new address to this resource,
558 * either because the BIOS (sic) forgot to do so
559 * or because we have decided the old address was
560 * unusable for some reason.
562 if ((r
->flags
& IORESOURCE_UNSET
) && r
->end
&&
563 (!ppc_md
.pcibios_enable_device_hook
||
564 !ppc_md
.pcibios_enable_device_hook(dev
, 1))) {
565 r
->flags
&= ~IORESOURCE_UNSET
;
566 pci_assign_resource(dev
, idx
);
570 #if 0 /* don't assign ROMs */
571 r
= &dev
->resource
[PCI_ROM_RESOURCE
];
575 pci_assign_resource(dev
, PCI_ROM_RESOURCE
);
581 static int next_controller_index
;
583 struct pci_controller
* __init
584 pcibios_alloc_controller(void)
586 struct pci_controller
*hose
;
588 hose
= (struct pci_controller
*)alloc_bootmem(sizeof(*hose
));
589 memset(hose
, 0, sizeof(struct pci_controller
));
592 hose_tail
= &hose
->next
;
594 hose
->index
= next_controller_index
++;
599 void pcibios_make_OF_bus_map(void)
606 struct pci_controller
*hose
;
610 printk(KERN_INFO
"PCI: Probing PCI hardware\n");
612 /* Scan all of the recorded PCI controllers. */
613 for (next_busno
= 0, hose
= hose_head
; hose
; hose
= hose
->next
) {
614 if (pci_assign_all_buses
)
615 hose
->first_busno
= next_busno
;
616 hose
->last_busno
= 0xff;
617 bus
= pci_scan_bus(hose
->first_busno
, hose
->ops
, hose
);
618 hose
->last_busno
= bus
->subordinate
;
619 if (pci_assign_all_buses
|| next_busno
<= hose
->last_busno
)
620 next_busno
= hose
->last_busno
+ pcibios_assign_bus_offset
;
622 pci_bus_count
= next_busno
;
624 /* OpenFirmware based machines need a map of OF bus
625 * numbers vs. kernel bus numbers since we may have to
628 if (pci_assign_all_buses
&& have_of
)
629 pcibios_make_OF_bus_map();
631 /* Do machine dependent PCI interrupt routing */
632 if (ppc_md
.pci_swizzle
&& ppc_md
.pci_map_irq
)
633 pci_fixup_irqs(ppc_md
.pci_swizzle
, ppc_md
.pci_map_irq
);
635 /* Call machine dependent fixup */
636 if (ppc_md
.pcibios_fixup
)
637 ppc_md
.pcibios_fixup();
639 /* Allocate and assign resources */
640 pcibios_allocate_bus_resources(&pci_root_buses
);
641 pcibios_allocate_resources(0);
642 pcibios_allocate_resources(1);
643 pcibios_assign_resources();
645 /* Call machine dependent post-init code */
646 if (ppc_md
.pcibios_after_init
)
647 ppc_md
.pcibios_after_init();
652 subsys_initcall(pcibios_init
);
655 common_swizzle(struct pci_dev
*dev
, unsigned char *pinp
)
657 struct pci_controller
*hose
= dev
->sysdata
;
659 if (dev
->bus
->number
!= hose
->first_busno
) {
662 pin
= bridge_swizzle(pin
, PCI_SLOT(dev
->devfn
));
663 /* Move up the chain of bridges. */
664 dev
= dev
->bus
->self
;
665 } while (dev
->bus
->self
);
668 /* The slot is the idsel of the last bridge. */
670 return PCI_SLOT(dev
->devfn
);
673 unsigned long resource_fixup(struct pci_dev
* dev
, struct resource
* res
,
674 unsigned long start
, unsigned long size
)
679 void __init
pcibios_fixup_bus(struct pci_bus
*bus
)
681 struct pci_controller
*hose
= (struct pci_controller
*) bus
->sysdata
;
682 unsigned long io_offset
;
683 struct resource
*res
;
686 io_offset
= (unsigned long)hose
->io_base_virt
- isa_io_base
;
687 if (bus
->parent
== NULL
) {
688 /* This is a host bridge - fill in its resources */
691 bus
->resource
[0] = res
= &hose
->io_resource
;
694 printk(KERN_ERR
"I/O resource not set for host"
695 " bridge %d\n", hose
->index
);
697 res
->end
= IO_SPACE_LIMIT
;
698 res
->flags
= IORESOURCE_IO
;
700 res
->start
+= io_offset
;
701 res
->end
+= io_offset
;
703 for (i
= 0; i
< 3; ++i
) {
704 res
= &hose
->mem_resources
[i
];
708 printk(KERN_ERR
"Memory resource not set for "
709 "host bridge %d\n", hose
->index
);
710 res
->start
= hose
->pci_mem_offset
;
712 res
->flags
= IORESOURCE_MEM
;
714 bus
->resource
[i
+1] = res
;
717 /* This is a subordinate bridge */
718 pci_read_bridge_bases(bus
);
720 for (i
= 0; i
< 4; ++i
) {
721 if ((res
= bus
->resource
[i
]) == NULL
)
725 if (io_offset
&& (res
->flags
& IORESOURCE_IO
)) {
726 res
->start
+= io_offset
;
727 res
->end
+= io_offset
;
728 } else if (hose
->pci_mem_offset
729 && (res
->flags
& IORESOURCE_MEM
)) {
730 res
->start
+= hose
->pci_mem_offset
;
731 res
->end
+= hose
->pci_mem_offset
;
736 if (ppc_md
.pcibios_fixup_bus
)
737 ppc_md
.pcibios_fixup_bus(bus
);
740 char __init
*pcibios_setup(char *str
)
745 /* the next one is stolen from the alpha port... */
747 pcibios_update_irq(struct pci_dev
*dev
, int irq
)
749 pci_write_config_byte(dev
, PCI_INTERRUPT_LINE
, irq
);
750 /* XXX FIXME - update OF device tree node interrupt property */
753 int pcibios_enable_device(struct pci_dev
*dev
, int mask
)
755 if (ppc_md
.pcibios_enable_device_hook
)
756 if (ppc_md
.pcibios_enable_device_hook(dev
, 0))
759 return pci_enable_resources(dev
, mask
);
762 struct pci_controller
*
763 pci_bus_to_hose(int bus
)
765 struct pci_controller
* hose
= hose_head
;
767 for (; hose
; hose
= hose
->next
)
768 if (bus
>= hose
->first_busno
&& bus
<= hose
->last_busno
)
774 pci_bus_io_base(unsigned int bus
)
776 struct pci_controller
*hose
;
778 hose
= pci_bus_to_hose(bus
);
781 return hose
->io_base_virt
;
785 pci_bus_io_base_phys(unsigned int bus
)
787 struct pci_controller
*hose
;
789 hose
= pci_bus_to_hose(bus
);
792 return hose
->io_base_phys
;
796 pci_bus_mem_base_phys(unsigned int bus
)
798 struct pci_controller
*hose
;
800 hose
= pci_bus_to_hose(bus
);
803 return hose
->pci_mem_offset
;
807 pci_resource_to_bus(struct pci_dev
*pdev
, struct resource
*res
)
809 /* Hack alert again ! See comments in chrp_pci.c
811 struct pci_controller
* hose
=
812 (struct pci_controller
*)pdev
->sysdata
;
813 if (hose
&& res
->flags
& IORESOURCE_MEM
)
814 return res
->start
- hose
->pci_mem_offset
;
815 /* We may want to do something with IOs here... */
820 static struct resource
*__pci_mmap_make_offset(struct pci_dev
*dev
,
821 resource_size_t
*offset
,
822 enum pci_mmap_state mmap_state
)
824 struct pci_controller
*hose
= pci_bus_to_hose(dev
->bus
->number
);
825 unsigned long io_offset
= 0;
829 return NULL
; /* should never happen */
831 /* If memory, add on the PCI bridge address offset */
832 if (mmap_state
== pci_mmap_mem
) {
833 #if 0 /* See comment in pci_resource_to_user() for why this is disabled */
834 *offset
+= hose
->pci_mem_offset
;
836 res_bit
= IORESOURCE_MEM
;
838 io_offset
= hose
->io_base_virt
- ___IO_BASE
;
839 *offset
+= io_offset
;
840 res_bit
= IORESOURCE_IO
;
844 * Check that the offset requested corresponds to one of the
845 * resources of the device.
847 for (i
= 0; i
<= PCI_ROM_RESOURCE
; i
++) {
848 struct resource
*rp
= &dev
->resource
[i
];
849 int flags
= rp
->flags
;
851 /* treat ROM as memory (should be already) */
852 if (i
== PCI_ROM_RESOURCE
)
853 flags
|= IORESOURCE_MEM
;
855 /* Active and same type? */
856 if ((flags
& res_bit
) == 0)
859 /* In the range of this resource? */
860 if (*offset
< (rp
->start
& PAGE_MASK
) || *offset
> rp
->end
)
863 /* found it! construct the final physical address */
864 if (mmap_state
== pci_mmap_io
)
865 *offset
+= hose
->io_base_phys
- io_offset
;
873 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
876 static pgprot_t
__pci_mmap_set_pgprot(struct pci_dev
*dev
, struct resource
*rp
,
878 enum pci_mmap_state mmap_state
,
881 unsigned long prot
= pgprot_val(protection
);
883 /* Write combine is always 0 on non-memory space mappings. On
884 * memory space, if the user didn't pass 1, we check for a
885 * "prefetchable" resource. This is a bit hackish, but we use
886 * this to workaround the inability of /sysfs to provide a write
889 if (mmap_state
!= pci_mmap_mem
)
891 else if (write_combine
== 0) {
892 if (rp
->flags
& IORESOURCE_PREFETCH
)
896 /* XXX would be nice to have a way to ask for write-through */
897 prot
|= _PAGE_NO_CACHE
;
899 prot
&= ~_PAGE_GUARDED
;
901 prot
|= _PAGE_GUARDED
;
903 printk("PCI map for %s:%llx, prot: %lx\n", pci_name(dev
),
904 (unsigned long long)rp
->start
, prot
);
906 return __pgprot(prot
);
910 * This one is used by /dev/mem and fbdev who have no clue about the
911 * PCI device, it tries to find the PCI device first and calls the
914 pgprot_t
pci_phys_mem_access_prot(struct file
*file
,
919 struct pci_dev
*pdev
= NULL
;
920 struct resource
*found
= NULL
;
921 unsigned long prot
= pgprot_val(protection
);
922 unsigned long offset
= pfn
<< PAGE_SHIFT
;
925 if (page_is_ram(pfn
))
928 prot
|= _PAGE_NO_CACHE
| _PAGE_GUARDED
;
930 for_each_pci_dev(pdev
) {
931 for (i
= 0; i
<= PCI_ROM_RESOURCE
; i
++) {
932 struct resource
*rp
= &pdev
->resource
[i
];
933 int flags
= rp
->flags
;
935 /* Active and same type? */
936 if ((flags
& IORESOURCE_MEM
) == 0)
938 /* In the range of this resource? */
939 if (offset
< (rp
->start
& PAGE_MASK
) ||
949 if (found
->flags
& IORESOURCE_PREFETCH
)
950 prot
&= ~_PAGE_GUARDED
;
954 DBG("non-PCI map for %lx, prot: %lx\n", offset
, prot
);
956 return __pgprot(prot
);
961 * Perform the actual remap of the pages for a PCI device mapping, as
962 * appropriate for this architecture. The region in the process to map
963 * is described by vm_start and vm_end members of VMA, the base physical
964 * address is found in vm_pgoff.
965 * The pci device structure is provided so that architectures may make mapping
966 * decisions on a per-device or per-bus basis.
968 * Returns a negative error code on failure, zero on success.
970 int pci_mmap_page_range(struct pci_dev
*dev
, struct vm_area_struct
*vma
,
971 enum pci_mmap_state mmap_state
,
974 resource_size_t offset
= vma
->vm_pgoff
<< PAGE_SHIFT
;
978 rp
= __pci_mmap_make_offset(dev
, &offset
, mmap_state
);
982 vma
->vm_pgoff
= offset
>> PAGE_SHIFT
;
983 vma
->vm_page_prot
= __pci_mmap_set_pgprot(dev
, rp
,
985 mmap_state
, write_combine
);
987 ret
= remap_pfn_range(vma
, vma
->vm_start
, vma
->vm_pgoff
,
988 vma
->vm_end
- vma
->vm_start
, vma
->vm_page_prot
);
993 /* Obsolete functions. Should be removed once the symbios driver
997 phys_to_bus(unsigned long pa
)
999 struct pci_controller
*hose
;
1002 for (hose
= hose_head
; hose
; hose
= hose
->next
) {
1003 for (i
= 0; i
< 3; ++i
) {
1004 if (pa
>= hose
->mem_resources
[i
].start
1005 && pa
<= hose
->mem_resources
[i
].end
) {
1007 * XXX the hose->pci_mem_offset really
1008 * only applies to mem_resources[0].
1009 * We need a way to store an offset for
1010 * the others. -- paulus
1013 pa
-= hose
->pci_mem_offset
;
1018 /* hmmm, didn't find it */
1023 pci_phys_to_bus(unsigned long pa
, int busnr
)
1025 struct pci_controller
* hose
= pci_bus_to_hose(busnr
);
1028 return pa
- hose
->pci_mem_offset
;
1032 pci_bus_to_phys(unsigned int ba
, int busnr
)
1034 struct pci_controller
* hose
= pci_bus_to_hose(busnr
);
1037 return ba
+ hose
->pci_mem_offset
;
1040 /* Provide information on locations of various I/O regions in physical
1041 * memory. Do this on a per-card basis so that we choose the right
1043 * Note that the returned IO or memory base is a physical address
1046 long sys_pciconfig_iobase(long which
, unsigned long bus
, unsigned long devfn
)
1048 struct pci_controller
* hose
;
1049 long result
= -EOPNOTSUPP
;
1051 hose
= pci_bus_to_hose(bus
);
1056 case IOBASE_BRIDGE_NUMBER
:
1057 return (long)hose
->first_busno
;
1059 return (long)hose
->pci_mem_offset
;
1061 return (long)hose
->io_base_phys
;
1063 return (long)isa_io_base
;
1064 case IOBASE_ISA_MEM
:
1065 return (long)isa_mem_base
;
1071 void pci_resource_to_user(const struct pci_dev
*dev
, int bar
,
1072 const struct resource
*rsrc
,
1073 resource_size_t
*start
, resource_size_t
*end
)
1075 struct pci_controller
*hose
= pci_bus_to_hose(dev
->bus
->number
);
1076 resource_size_t offset
= 0;
1081 if (rsrc
->flags
& IORESOURCE_IO
)
1082 offset
= (unsigned long)hose
->io_base_virt
- _IO_BASE
;
1084 /* We pass a fully fixed up address to userland for MMIO instead of
1085 * a BAR value because X is lame and expects to be able to use that
1086 * to pass to /dev/mem !
1088 * That means that we'll have potentially 64 bits values where some
1089 * userland apps only expect 32 (like X itself since it thinks only
1090 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
1093 * Hopefully, the sysfs insterface is immune to that gunk. Once X
1094 * has been fixed (and the fix spread enough), we can re-enable the
1095 * 2 lines below and pass down a BAR value to userland. In that case
1096 * we'll also have to re-enable the matching code in
1097 * __pci_mmap_make_offset().
1102 else if (rsrc
->flags
& IORESOURCE_MEM
)
1103 offset
= hose
->pci_mem_offset
;
1106 *start
= rsrc
->start
- offset
;
1107 *end
= rsrc
->end
- offset
;
1110 void __init
pci_init_resource(struct resource
*res
, resource_size_t start
,
1111 resource_size_t end
, int flags
, char *name
)
1118 res
->sibling
= NULL
;
1122 void __iomem
*pci_iomap(struct pci_dev
*dev
, int bar
, unsigned long max
)
1124 resource_size_t start
= pci_resource_start(dev
, bar
);
1125 resource_size_t len
= pci_resource_len(dev
, bar
);
1126 unsigned long flags
= pci_resource_flags(dev
, bar
);
1130 if (max
&& len
> max
)
1132 if (flags
& IORESOURCE_IO
)
1133 return ioport_map(start
, len
);
1134 if (flags
& IORESOURCE_MEM
)
1135 /* Not checking IORESOURCE_CACHEABLE because PPC does
1136 * not currently distinguish between ioremap and
1139 return ioremap(start
, len
);
1144 void pci_iounmap(struct pci_dev
*dev
, void __iomem
*addr
)
1148 EXPORT_SYMBOL(pci_iomap
);
1149 EXPORT_SYMBOL(pci_iounmap
);
1151 unsigned long pci_address_to_pio(phys_addr_t address
)
1153 struct pci_controller
* hose
= hose_head
;
1155 for (; hose
; hose
= hose
->next
) {
1156 unsigned int size
= hose
->io_resource
.end
-
1157 hose
->io_resource
.start
+ 1;
1158 if (address
>= hose
->io_base_phys
&&
1159 address
< (hose
->io_base_phys
+ size
)) {
1160 unsigned long base
=
1161 (unsigned long)hose
->io_base_virt
- _IO_BASE
;
1162 return base
+ (address
- hose
->io_base_phys
);
1165 return (unsigned int)-1;
1167 EXPORT_SYMBOL(pci_address_to_pio
);
1170 * Null PCI config access functions, for the case when we can't
1173 #define NULL_PCI_OP(rw, size, type) \
1175 null_##rw##_config_##size(struct pci_dev *dev, int offset, type val) \
1177 return PCIBIOS_DEVICE_NOT_FOUND; \
1181 null_read_config(struct pci_bus
*bus
, unsigned int devfn
, int offset
,
1184 return PCIBIOS_DEVICE_NOT_FOUND
;
1188 null_write_config(struct pci_bus
*bus
, unsigned int devfn
, int offset
,
1191 return PCIBIOS_DEVICE_NOT_FOUND
;
1194 static struct pci_ops null_pci_ops
=
1201 * These functions are used early on before PCI scanning is done
1202 * and all of the pci_dev and pci_bus structures have been created.
1204 static struct pci_bus
*
1205 fake_pci_bus(struct pci_controller
*hose
, int busnr
)
1207 static struct pci_bus bus
;
1210 hose
= pci_bus_to_hose(busnr
);
1212 printk(KERN_ERR
"Can't find hose for PCI bus %d!\n", busnr
);
1216 bus
.ops
= hose
? hose
->ops
: &null_pci_ops
;
1220 #define EARLY_PCI_OP(rw, size, type) \
1221 int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
1222 int devfn, int offset, type value) \
1224 return pci_bus_##rw##_config_##size(fake_pci_bus(hose, bus), \
1225 devfn, offset, value); \
1228 EARLY_PCI_OP(read
, byte
, u8
*)
1229 EARLY_PCI_OP(read
, word
, u16
*)
1230 EARLY_PCI_OP(read
, dword
, u32
*)
1231 EARLY_PCI_OP(write
, byte
, u8
)
1232 EARLY_PCI_OP(write
, word
, u16
)
1233 EARLY_PCI_OP(write
, dword
, u32
)