blob: cfdb2f65294943940373aab388405d16ddbf7d6e [file] [log] [blame]
Paul Mundt4c5107e2009-04-20 15:43:36 +09001/*
2 * New-style PCI core.
3 *
Paul Mundt4c5107e2009-04-20 15:43:36 +09004 * Copyright (c) 2004 - 2009 Paul Mundt
Paul Mundt35bcfff2009-04-20 21:51:19 +09005 * Copyright (c) 2002 M. R. Brown
6 *
7 * Modelled after arch/mips/pci/pci.c:
8 * Copyright (C) 2003, 04 Ralf Baechle (ralf@linux-mips.org)
Paul Mundt4c5107e2009-04-20 15:43:36 +09009 *
10 * This file is subject to the terms and conditions of the GNU General Public
11 * License. See the file "COPYING" in the main directory of this archive
12 * for more details.
13 */
14#include <linux/kernel.h>
Paul Mundt35bcfff2009-04-20 21:51:19 +090015#include <linux/mm.h>
Paul Mundt4c5107e2009-04-20 15:43:36 +090016#include <linux/pci.h>
17#include <linux/init.h>
Paul Mundt35bcfff2009-04-20 21:51:19 +090018#include <linux/types.h>
Paul Mundt4c5107e2009-04-20 15:43:36 +090019#include <linux/dma-debug.h>
20#include <linux/io.h>
Paul Mundte79066a2009-04-20 18:29:22 +090021#include <linux/mutex.h>
Paul Mundt39a90862010-09-20 18:56:13 +090022#include <linux/spinlock.h>
Paul Gortmakerf7be3452011-07-31 19:20:02 -040023#include <linux/export.h>
Paul Mundte79066a2009-04-20 18:29:22 +090024
Paul Mundt35bcfff2009-04-20 21:51:19 +090025unsigned long PCIBIOS_MIN_IO = 0x0000;
26unsigned long PCIBIOS_MIN_MEM = 0;
27
Paul Mundte79066a2009-04-20 18:29:22 +090028/*
29 * The PCI controller list.
30 */
31static struct pci_channel *hose_head, **hose_tail = &hose_head;
32
33static int pci_initialized;
34
35static void __devinit pcibios_scanbus(struct pci_channel *hose)
36{
37 static int next_busno;
Paul Mundt320e68d2010-01-29 22:38:13 +090038 static int need_domain_info;
Paul Mundte79066a2009-04-20 18:29:22 +090039 struct pci_bus *bus;
40
Paul Mundte79066a2009-04-20 18:29:22 +090041 bus = pci_scan_bus(next_busno, hose->pci_ops, hose);
Paul Mundt320e68d2010-01-29 22:38:13 +090042 hose->bus = bus;
43
44 need_domain_info = need_domain_info || hose->index;
45 hose->need_domain_info = need_domain_info;
Paul Mundte79066a2009-04-20 18:29:22 +090046 if (bus) {
47 next_busno = bus->subordinate + 1;
48 /* Don't allow 8-bit bus number overflow inside the hose -
49 reserve some space for bridges. */
Paul Mundt320e68d2010-01-29 22:38:13 +090050 if (next_busno > 224) {
Paul Mundte79066a2009-04-20 18:29:22 +090051 next_busno = 0;
Paul Mundt320e68d2010-01-29 22:38:13 +090052 need_domain_info = 1;
53 }
Paul Mundte79066a2009-04-20 18:29:22 +090054
55 pci_bus_size_bridges(bus);
56 pci_bus_assign_resources(bus);
57 pci_enable_bridges(bus);
58 }
59}
60
Paul Mundt39a90862010-09-20 18:56:13 +090061/*
62 * This interrupt-safe spinlock protects all accesses to PCI
63 * configuration space.
64 */
65DEFINE_RAW_SPINLOCK(pci_config_lock);
Paul Mundte79066a2009-04-20 18:29:22 +090066static DEFINE_MUTEX(pci_scan_mutex);
67
Paul Mundtbcf39352010-02-01 13:11:25 +090068int __devinit register_pci_controller(struct pci_channel *hose)
Paul Mundte79066a2009-04-20 18:29:22 +090069{
Paul Mundtb6c58b12010-02-01 20:01:50 +090070 int i;
71
72 for (i = 0; i < hose->nr_resources; i++) {
73 struct resource *res = hose->resources + i;
74
75 if (res->flags & IORESOURCE_IO) {
76 if (request_resource(&ioport_resource, res) < 0)
77 goto out;
78 } else {
79 if (request_resource(&iomem_resource, res) < 0)
80 goto out;
81 }
Paul Mundtac8ab542010-01-29 22:22:27 +090082 }
Paul Mundte79066a2009-04-20 18:29:22 +090083
84 *hose_tail = hose;
85 hose_tail = &hose->next;
86
87 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -030088 * Do not panic here but later - this might happen before console init.
Paul Mundte79066a2009-04-20 18:29:22 +090089 */
90 if (!hose->io_map_base) {
91 printk(KERN_WARNING
92 "registering PCI controller with io_map_base unset\n");
93 }
94
95 /*
Paul Mundtef407be2010-02-01 16:39:46 +090096 * Setup the ERR/PERR and SERR timers, if available.
97 */
98 pcibios_enable_timers(hose);
99
100 /*
Paul Mundte79066a2009-04-20 18:29:22 +0900101 * Scan the bus if it is register after the PCI subsystem
102 * initialization.
103 */
104 if (pci_initialized) {
105 mutex_lock(&pci_scan_mutex);
106 pcibios_scanbus(hose);
107 mutex_unlock(&pci_scan_mutex);
108 }
Paul Mundtac8ab542010-01-29 22:22:27 +0900109
Paul Mundtbcf39352010-02-01 13:11:25 +0900110 return 0;
Paul Mundt85b59f52010-02-01 13:01:42 +0900111
Paul Mundtac8ab542010-01-29 22:22:27 +0900112out:
Paul Mundtb6c58b12010-02-01 20:01:50 +0900113 for (--i; i >= 0; i--)
114 release_resource(&hose->resources[i]);
115
Paul Mundtac8ab542010-01-29 22:22:27 +0900116 printk(KERN_WARNING "Skipping PCI bus scan due to resource conflict\n");
Paul Mundtbcf39352010-02-01 13:11:25 +0900117 return -1;
Paul Mundte79066a2009-04-20 18:29:22 +0900118}
Paul Mundt4c5107e2009-04-20 15:43:36 +0900119
120static int __init pcibios_init(void)
121{
Paul Mundte79066a2009-04-20 18:29:22 +0900122 struct pci_channel *hose;
Paul Mundt4c5107e2009-04-20 15:43:36 +0900123
Paul Mundte79066a2009-04-20 18:29:22 +0900124 /* Scan all of the recorded PCI controllers. */
125 for (hose = hose_head; hose; hose = hose->next)
126 pcibios_scanbus(hose);
Paul Mundt4c5107e2009-04-20 15:43:36 +0900127
128 pci_fixup_irqs(pci_common_swizzle, pcibios_map_platform_irq);
129
130 dma_debug_add_bus(&pci_bus_type);
131
Paul Mundte79066a2009-04-20 18:29:22 +0900132 pci_initialized = 1;
133
Paul Mundt4c5107e2009-04-20 15:43:36 +0900134 return 0;
135}
136subsys_initcall(pcibios_init);
137
138static void pcibios_fixup_device_resources(struct pci_dev *dev,
139 struct pci_bus *bus)
140{
141 /* Update device resources. */
Paul Mundt09cfeb12009-04-20 18:42:00 +0900142 struct pci_channel *hose = bus->sysdata;
Paul Mundt4c5107e2009-04-20 15:43:36 +0900143 unsigned long offset = 0;
144 int i;
145
146 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
147 if (!dev->resource[i].start)
148 continue;
Paul Mundt4c5107e2009-04-20 15:43:36 +0900149 if (dev->resource[i].flags & IORESOURCE_IO)
Paul Mundt09cfeb12009-04-20 18:42:00 +0900150 offset = hose->io_offset;
Paul Mundt4c5107e2009-04-20 15:43:36 +0900151 else if (dev->resource[i].flags & IORESOURCE_MEM)
Paul Mundt09cfeb12009-04-20 18:42:00 +0900152 offset = hose->mem_offset;
Paul Mundt4c5107e2009-04-20 15:43:36 +0900153
154 dev->resource[i].start += offset;
155 dev->resource[i].end += offset;
156 }
157}
158
Paul Mundt4c5107e2009-04-20 15:43:36 +0900159/*
160 * Called after each bus is probed, but before its children
161 * are examined.
162 */
Paul Mundt35bcfff2009-04-20 21:51:19 +0900163void __devinit pcibios_fixup_bus(struct pci_bus *bus)
Paul Mundt4c5107e2009-04-20 15:43:36 +0900164{
165 struct pci_dev *dev = bus->self;
166 struct list_head *ln;
Paul Mundtb6c58b12010-02-01 20:01:50 +0900167 struct pci_channel *hose = bus->sysdata;
Paul Mundt4c5107e2009-04-20 15:43:36 +0900168
169 if (!dev) {
Paul Mundtb6c58b12010-02-01 20:01:50 +0900170 int i;
171
172 for (i = 0; i < hose->nr_resources; i++)
173 bus->resource[i] = hose->resources + i;
Paul Mundt4c5107e2009-04-20 15:43:36 +0900174 }
175
176 for (ln = bus->devices.next; ln != &bus->devices; ln = ln->next) {
177 dev = pci_dev_b(ln);
178
179 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
180 pcibios_fixup_device_resources(dev, bus);
181 }
182}
Paul Mundt35bcfff2009-04-20 21:51:19 +0900183
184/*
185 * We need to avoid collisions with `mirrored' VGA ports
186 * and other strange ISA hardware, so we always want the
187 * addresses to be allocated in the 0x000-0x0ff region
188 * modulo 0x400.
189 */
Dominik Brodowski3b7a17f2010-01-01 17:40:50 +0100190resource_size_t pcibios_align_resource(void *data, const struct resource *res,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100191 resource_size_t size, resource_size_t align)
Paul Mundt35bcfff2009-04-20 21:51:19 +0900192{
193 struct pci_dev *dev = data;
Paul Mundtb6c58b12010-02-01 20:01:50 +0900194 struct pci_channel *hose = dev->sysdata;
Paul Mundt35bcfff2009-04-20 21:51:19 +0900195 resource_size_t start = res->start;
196
197 if (res->flags & IORESOURCE_IO) {
Paul Mundtb6c58b12010-02-01 20:01:50 +0900198 if (start < PCIBIOS_MIN_IO + hose->resources[0].start)
199 start = PCIBIOS_MIN_IO + hose->resources[0].start;
Paul Mundt35bcfff2009-04-20 21:51:19 +0900200
201 /*
202 * Put everything into 0x00-0xff region modulo 0x400.
203 */
Paul Mundt84959352010-01-28 18:15:05 +0900204 if (start & 0x300)
Paul Mundt35bcfff2009-04-20 21:51:19 +0900205 start = (start + 0x3ff) & ~0x3ff;
Paul Mundt35bcfff2009-04-20 21:51:19 +0900206 }
207
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100208 return start;
Paul Mundt35bcfff2009-04-20 21:51:19 +0900209}
210
211void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
Paul Mundt9ad62ec2010-02-03 16:46:20 +0900212 struct resource *res)
Paul Mundt35bcfff2009-04-20 21:51:19 +0900213{
214 struct pci_channel *hose = dev->sysdata;
215 unsigned long offset = 0;
216
217 if (res->flags & IORESOURCE_IO)
218 offset = hose->io_offset;
219 else if (res->flags & IORESOURCE_MEM)
220 offset = hose->mem_offset;
221
222 region->start = res->start - offset;
223 region->end = res->end - offset;
224}
225
Paul Mundt9ad62ec2010-02-03 16:46:20 +0900226void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
227 struct pci_bus_region *region)
Paul Mundt35bcfff2009-04-20 21:51:19 +0900228{
229 struct pci_channel *hose = dev->sysdata;
230 unsigned long offset = 0;
231
232 if (res->flags & IORESOURCE_IO)
233 offset = hose->io_offset;
234 else if (res->flags & IORESOURCE_MEM)
235 offset = hose->mem_offset;
236
237 res->start = region->start + offset;
238 res->end = region->end + offset;
239}
240
241int pcibios_enable_device(struct pci_dev *dev, int mask)
242{
Paul Mundtc62e3fa2010-09-19 13:51:15 +0900243 return pci_enable_resources(dev, mask);
Paul Mundt35bcfff2009-04-20 21:51:19 +0900244}
245
Paul Mundt35bcfff2009-04-20 21:51:19 +0900246void pcibios_set_master(struct pci_dev *dev)
247{
248 u8 lat;
249 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
250 if (lat < 16)
251 lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency;
252 else if (lat > pcibios_max_latency)
253 lat = pcibios_max_latency;
254 else
255 return;
256 printk(KERN_INFO "PCI: Setting latency timer of device %s to %d\n",
257 pci_name(dev), lat);
258 pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
259}
260
261void __init pcibios_update_irq(struct pci_dev *dev, int irq)
262{
263 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
264}
265
Paul Mundt61a46762010-10-14 07:37:01 +0900266char * __devinit __weak pcibios_setup(char *str)
Paul Mundt35bcfff2009-04-20 21:51:19 +0900267{
268 return str;
269}
270
Paul Mundt9ad62ec2010-02-03 16:46:20 +0900271static void __init
272pcibios_bus_report_status_early(struct pci_channel *hose,
273 int top_bus, int current_bus,
274 unsigned int status_mask, int warn)
275{
276 unsigned int pci_devfn;
277 u16 status;
278 int ret;
279
280 for (pci_devfn = 0; pci_devfn < 0xff; pci_devfn++) {
281 if (PCI_FUNC(pci_devfn))
282 continue;
283 ret = early_read_config_word(hose, top_bus, current_bus,
284 pci_devfn, PCI_STATUS, &status);
285 if (ret != PCIBIOS_SUCCESSFUL)
286 continue;
287 if (status == 0xffff)
288 continue;
289
290 early_write_config_word(hose, top_bus, current_bus,
291 pci_devfn, PCI_STATUS,
292 status & status_mask);
293 if (warn)
294 printk("(%02x:%02x: %04X) ", current_bus,
295 pci_devfn, status);
296 }
297}
298
Paul Mundtef407be2010-02-01 16:39:46 +0900299/*
300 * We can't use pci_find_device() here since we are
301 * called from interrupt context.
302 */
Paul Mundt9ad62ec2010-02-03 16:46:20 +0900303static void __init_refok
304pcibios_bus_report_status(struct pci_bus *bus, unsigned int status_mask,
305 int warn)
Paul Mundtef407be2010-02-01 16:39:46 +0900306{
307 struct pci_dev *dev;
308
309 list_for_each_entry(dev, &bus->devices, bus_list) {
310 u16 status;
311
312 /*
313 * ignore host bridge - we handle
314 * that separately
315 */
316 if (dev->bus->number == 0 && dev->devfn == 0)
317 continue;
318
319 pci_read_config_word(dev, PCI_STATUS, &status);
320 if (status == 0xffff)
321 continue;
322
323 if ((status & status_mask) == 0)
324 continue;
325
326 /* clear the status errors */
327 pci_write_config_word(dev, PCI_STATUS, status & status_mask);
328
329 if (warn)
330 printk("(%s: %04X) ", pci_name(dev), status);
331 }
332
333 list_for_each_entry(dev, &bus->devices, bus_list)
334 if (dev->subordinate)
335 pcibios_bus_report_status(dev->subordinate, status_mask, warn);
336}
337
Paul Mundt9ad62ec2010-02-03 16:46:20 +0900338void __init_refok pcibios_report_status(unsigned int status_mask, int warn)
Paul Mundtef407be2010-02-01 16:39:46 +0900339{
340 struct pci_channel *hose;
341
Paul Mundt9ad62ec2010-02-03 16:46:20 +0900342 for (hose = hose_head; hose; hose = hose->next) {
343 if (unlikely(!hose->bus))
344 pcibios_bus_report_status_early(hose, hose_head->index,
345 hose->index, status_mask, warn);
346 else
347 pcibios_bus_report_status(hose->bus, status_mask, warn);
348 }
Paul Mundtef407be2010-02-01 16:39:46 +0900349}
350
Paul Mundt35bcfff2009-04-20 21:51:19 +0900351int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
352 enum pci_mmap_state mmap_state, int write_combine)
353{
354 /*
355 * I/O space can be accessed via normal processor loads and stores on
356 * this platform but for now we elect not to do this and portable
357 * drivers should not do this anyway.
358 */
359 if (mmap_state == pci_mmap_io)
360 return -EINVAL;
361
362 /*
363 * Ignore write-combine; for now only return uncached mappings.
364 */
365 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
366
367 return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
368 vma->vm_end - vma->vm_start,
369 vma->vm_page_prot);
370}
371
David McKay15444a82009-08-24 16:10:40 +0900372#ifndef CONFIG_GENERIC_IOMAP
373
Paul Mundt35bcfff2009-04-20 21:51:19 +0900374static void __iomem *ioport_map_pci(struct pci_dev *dev,
375 unsigned long port, unsigned int nr)
376{
377 struct pci_channel *chan = dev->sysdata;
378
Paul Mundt320e68d2010-01-29 22:38:13 +0900379 if (unlikely(!chan->io_map_base)) {
Paul Mundt37b7a972010-11-01 09:49:04 -0400380 chan->io_map_base = sh_io_port_base;
Paul Mundt35bcfff2009-04-20 21:51:19 +0900381
Paul Mundt320e68d2010-01-29 22:38:13 +0900382 if (pci_domains_supported)
383 panic("To avoid data corruption io_map_base MUST be "
384 "set with multiple PCI domains.");
385 }
386
Paul Mundt35bcfff2009-04-20 21:51:19 +0900387 return (void __iomem *)(chan->io_map_base + port);
388}
389
390void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen)
391{
392 resource_size_t start = pci_resource_start(dev, bar);
393 resource_size_t len = pci_resource_len(dev, bar);
394 unsigned long flags = pci_resource_flags(dev, bar);
395
396 if (unlikely(!len || !start))
397 return NULL;
398 if (maxlen && len > maxlen)
399 len = maxlen;
400
401 if (flags & IORESOURCE_IO)
402 return ioport_map_pci(dev, start, len);
Paul Mundt35bcfff2009-04-20 21:51:19 +0900403 if (flags & IORESOURCE_MEM) {
404 if (flags & IORESOURCE_CACHEABLE)
405 return ioremap(start, len);
Paul Mundt35bcfff2009-04-20 21:51:19 +0900406 return ioremap_nocache(start, len);
407 }
408
409 return NULL;
410}
411EXPORT_SYMBOL(pci_iomap);
412
413void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
414{
415 iounmap(addr);
416}
417EXPORT_SYMBOL(pci_iounmap);
418
David McKay15444a82009-08-24 16:10:40 +0900419#endif /* CONFIG_GENERIC_IOMAP */
420
Paul Mundt35bcfff2009-04-20 21:51:19 +0900421#ifdef CONFIG_HOTPLUG
422EXPORT_SYMBOL(pcibios_resource_to_bus);
423EXPORT_SYMBOL(pcibios_bus_to_resource);
424EXPORT_SYMBOL(PCIBIOS_MIN_IO);
425EXPORT_SYMBOL(PCIBIOS_MIN_MEM);
426#endif