2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License as published by the
4 * Free Software Foundation; either version 2 of the License, or (at your
5 * option) any later version.
7 * Copyright (C) 2003, 04, 11 Ralf Baechle (ralf@linux-mips.org)
8 * Copyright (C) 2011 Wind River Systems,
9 * written by Ralf Baechle (ralf@linux-mips.org)
11 #include <linux/bug.h>
12 #include <linux/kernel.h>
14 #include <linux/bootmem.h>
15 #include <linux/export.h>
16 #include <linux/init.h>
17 #include <linux/types.h>
18 #include <linux/pci.h>
20 #include <asm/cpu-info.h>
23 * Indicate whether we respect the PCI setup left by the firmware.
25 * Make this long-lived so that we know when shutting down
26 * whether we probed only or not.
30 #define PCI_ASSIGN_ALL_BUSSES 1
32 unsigned int pci_probe
= PCI_ASSIGN_ALL_BUSSES
;
35 * The PCI controller list.
38 static struct pci_controller
*hose_head
, **hose_tail
= &hose_head
;
40 unsigned long PCIBIOS_MIN_IO
;
41 unsigned long PCIBIOS_MIN_MEM
;
43 static int pci_initialized
;
46 * We need to avoid collisions with `mirrored' VGA ports
47 * and other strange ISA hardware, so we always want the
48 * addresses to be allocated in the 0x000-0x0ff region
51 * Why? Because some silly external IO cards only decode
52 * the low 10 bits of the IO address. The 0x00-0xff region
53 * is reserved for motherboard devices that decode all 16
54 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
55 * but we want to try to avoid allocating at 0x2900-0x2bff
56 * which might have be mirrored at 0x0100-0x03ff..
59 pcibios_align_resource(void *data
, const struct resource
*res
,
60 resource_size_t size
, resource_size_t align
)
62 struct pci_dev
*dev
= data
;
63 struct pci_controller
*hose
= dev
->sysdata
;
64 resource_size_t start
= res
->start
;
66 if (res
->flags
& IORESOURCE_IO
) {
67 /* Make sure we start at our min on all hoses */
68 if (start
< PCIBIOS_MIN_IO
+ hose
->io_resource
->start
)
69 start
= PCIBIOS_MIN_IO
+ hose
->io_resource
->start
;
72 * Put everything into 0x00-0xff region modulo 0x400
75 start
= (start
+ 0x3ff) & ~0x3ff;
76 } else if (res
->flags
& IORESOURCE_MEM
) {
77 /* Make sure we start at our min on all hoses */
78 if (start
< PCIBIOS_MIN_MEM
+ hose
->mem_resource
->start
)
79 start
= PCIBIOS_MIN_MEM
+ hose
->mem_resource
->start
;
85 static void __devinit
pcibios_scanbus(struct pci_controller
*hose
)
87 static int next_busno
;
88 static int need_domain_info
;
93 PCI_DMA_BUS_IS_PHYS
= 1;
95 if (hose
->get_busno
&& pci_probe_only
)
96 next_busno
= (*hose
->get_busno
)();
98 pci_add_resource(&resources
, hose
->mem_resource
);
99 pci_add_resource(&resources
, hose
->io_resource
);
100 bus
= pci_scan_root_bus(NULL
, next_busno
, hose
->pci_ops
, hose
,
103 pci_free_resource_list(&resources
);
107 need_domain_info
= need_domain_info
|| hose
->index
;
108 hose
->need_domain_info
= need_domain_info
;
110 next_busno
= bus
->subordinate
+ 1;
111 /* Don't allow 8-bit bus number overflow inside the hose -
112 reserve some space for bridges. */
113 if (next_busno
> 224) {
115 need_domain_info
= 1;
118 if (!pci_probe_only
) {
119 pci_bus_size_bridges(bus
);
120 pci_bus_assign_resources(bus
);
121 pci_enable_bridges(bus
);
126 static DEFINE_MUTEX(pci_scan_mutex
);
128 void __devinit
register_pci_controller(struct pci_controller
*hose
)
130 if (request_resource(&iomem_resource
, hose
->mem_resource
) < 0)
132 if (request_resource(&ioport_resource
, hose
->io_resource
) < 0) {
133 release_resource(hose
->mem_resource
);
138 hose_tail
= &hose
->next
;
141 * Do not panic here but later - this might happen before console init.
143 if (!hose
->io_map_base
) {
145 "registering PCI controller with io_map_base unset\n");
149 * Scan the bus if it is register after the PCI subsystem
152 if (pci_initialized
) {
153 mutex_lock(&pci_scan_mutex
);
154 pcibios_scanbus(hose
);
155 mutex_unlock(&pci_scan_mutex
);
162 "Skipping PCI bus scan due to resource conflict\n");
165 static void __init
pcibios_set_cache_line_size(void)
167 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
171 * Set PCI cacheline size to that of the highest level in the
174 lsize
= c
->dcache
.linesz
;
175 lsize
= c
->scache
.linesz
? : lsize
;
176 lsize
= c
->tcache
.linesz
? : lsize
;
180 pci_dfl_cache_line_size
= lsize
>> 2;
182 pr_debug("PCI: pci_cache_line_size set to %d bytes\n", lsize
);
185 static int __init
pcibios_init(void)
187 struct pci_controller
*hose
;
189 pcibios_set_cache_line_size();
191 /* Scan all of the recorded PCI controllers. */
192 for (hose
= hose_head
; hose
; hose
= hose
->next
)
193 pcibios_scanbus(hose
);
195 pci_fixup_irqs(pci_common_swizzle
, pcibios_map_irq
);
202 subsys_initcall(pcibios_init
);
204 static int pcibios_enable_resources(struct pci_dev
*dev
, int mask
)
210 pci_read_config_word(dev
, PCI_COMMAND
, &cmd
);
212 for (idx
=0; idx
< PCI_NUM_RESOURCES
; idx
++) {
213 /* Only set up the requested stuff */
214 if (!(mask
& (1<<idx
)))
217 r
= &dev
->resource
[idx
];
218 if (!(r
->flags
& (IORESOURCE_IO
| IORESOURCE_MEM
)))
220 if ((idx
== PCI_ROM_RESOURCE
) &&
221 (!(r
->flags
& IORESOURCE_ROM_ENABLE
)))
223 if (!r
->start
&& r
->end
) {
224 printk(KERN_ERR
"PCI: Device %s not available "
225 "because of resource collisions\n",
229 if (r
->flags
& IORESOURCE_IO
)
230 cmd
|= PCI_COMMAND_IO
;
231 if (r
->flags
& IORESOURCE_MEM
)
232 cmd
|= PCI_COMMAND_MEMORY
;
234 if (cmd
!= old_cmd
) {
235 printk("PCI: Enabling device %s (%04x -> %04x)\n",
236 pci_name(dev
), old_cmd
, cmd
);
237 pci_write_config_word(dev
, PCI_COMMAND
, cmd
);
242 unsigned int pcibios_assign_all_busses(void)
244 return (pci_probe
& PCI_ASSIGN_ALL_BUSSES
) ? 1 : 0;
247 int pcibios_enable_device(struct pci_dev
*dev
, int mask
)
251 if ((err
= pcibios_enable_resources(dev
, mask
)) < 0)
254 return pcibios_plat_dev_init(dev
);
257 static void pcibios_fixup_device_resources(struct pci_dev
*dev
,
260 /* Update device resources. */
261 struct pci_controller
*hose
= (struct pci_controller
*)bus
->sysdata
;
262 unsigned long offset
= 0;
265 for (i
= 0; i
< PCI_NUM_RESOURCES
; i
++) {
266 if (!dev
->resource
[i
].start
)
268 if (dev
->resource
[i
].flags
& IORESOURCE_IO
)
269 offset
= hose
->io_offset
;
270 else if (dev
->resource
[i
].flags
& IORESOURCE_MEM
)
271 offset
= hose
->mem_offset
;
273 dev
->resource
[i
].start
+= offset
;
274 dev
->resource
[i
].end
+= offset
;
278 void __devinit
pcibios_fixup_bus(struct pci_bus
*bus
)
280 /* Propagate hose info into the subordinate devices. */
282 struct pci_dev
*dev
= bus
->self
;
284 if (pci_probe_only
&& dev
&&
285 (dev
->class >> 8) == PCI_CLASS_BRIDGE_PCI
) {
286 pci_read_bridge_bases(bus
);
287 pcibios_fixup_device_resources(dev
, bus
);
290 list_for_each_entry(dev
, &bus
->devices
, bus_list
) {
291 if ((dev
->class >> 8) != PCI_CLASS_BRIDGE_PCI
)
292 pcibios_fixup_device_resources(dev
, bus
);
297 pcibios_update_irq(struct pci_dev
*dev
, int irq
)
299 pci_write_config_byte(dev
, PCI_INTERRUPT_LINE
, irq
);
302 void pcibios_resource_to_bus(struct pci_dev
*dev
, struct pci_bus_region
*region
,
303 struct resource
*res
)
305 struct pci_controller
*hose
= (struct pci_controller
*)dev
->sysdata
;
306 unsigned long offset
= 0;
308 if (res
->flags
& IORESOURCE_IO
)
309 offset
= hose
->io_offset
;
310 else if (res
->flags
& IORESOURCE_MEM
)
311 offset
= hose
->mem_offset
;
313 region
->start
= res
->start
- offset
;
314 region
->end
= res
->end
- offset
;
318 pcibios_bus_to_resource(struct pci_dev
*dev
, struct resource
*res
,
319 struct pci_bus_region
*region
)
321 struct pci_controller
*hose
= (struct pci_controller
*)dev
->sysdata
;
322 unsigned long offset
= 0;
324 if (res
->flags
& IORESOURCE_IO
)
325 offset
= hose
->io_offset
;
326 else if (res
->flags
& IORESOURCE_MEM
)
327 offset
= hose
->mem_offset
;
329 res
->start
= region
->start
+ offset
;
330 res
->end
= region
->end
+ offset
;
333 #ifdef CONFIG_HOTPLUG
334 EXPORT_SYMBOL(pcibios_resource_to_bus
);
335 EXPORT_SYMBOL(pcibios_bus_to_resource
);
336 EXPORT_SYMBOL(PCIBIOS_MIN_IO
);
337 EXPORT_SYMBOL(PCIBIOS_MIN_MEM
);
340 int pci_mmap_page_range(struct pci_dev
*dev
, struct vm_area_struct
*vma
,
341 enum pci_mmap_state mmap_state
, int write_combine
)
346 * I/O space can be accessed via normal processor loads and stores on
347 * this platform but for now we elect not to do this and portable
348 * drivers should not do this anyway.
350 if (mmap_state
== pci_mmap_io
)
354 * Ignore write-combine; for now only return uncached mappings.
356 prot
= pgprot_val(vma
->vm_page_prot
);
357 prot
= (prot
& ~_CACHE_MASK
) | _CACHE_UNCACHED
;
358 vma
->vm_page_prot
= __pgprot(prot
);
360 return remap_pfn_range(vma
, vma
->vm_start
, vma
->vm_pgoff
,
361 vma
->vm_end
- vma
->vm_start
, vma
->vm_page_prot
);
364 char * (*pcibios_plat_setup
)(char *str
) __devinitdata
;
366 char *__devinit
pcibios_setup(char *str
)
368 if (pcibios_plat_setup
)
369 return pcibios_plat_setup(str
);