blob: 1bc09ee7948f00a678d9564331dcdd2ae9cb7c78 [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
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -080035static void pcibios_scanbus(struct pci_channel *hose)
Paul Mundte79066a2009-04-20 18:29:22 +090036{
37 static int next_busno;
Paul Mundt320e68d2010-01-29 22:38:13 +090038 static int need_domain_info;
Bjorn Helgaas6f17dd12011-10-28 16:27:48 -060039 LIST_HEAD(resources);
Bjorn Helgaas7fa6a502012-02-23 20:19:03 -070040 struct resource *res;
41 resource_size_t offset;
Bjorn Helgaas6f17dd12011-10-28 16:27:48 -060042 int i;
Paul Mundte79066a2009-04-20 18:29:22 +090043 struct pci_bus *bus;
44
Bjorn Helgaas7fa6a502012-02-23 20:19:03 -070045 for (i = 0; i < hose->nr_resources; i++) {
46 res = hose->resources + i;
47 offset = 0;
48 if (res->flags & IORESOURCE_IO)
49 offset = hose->io_offset;
50 else if (res->flags & IORESOURCE_MEM)
51 offset = hose->mem_offset;
52 pci_add_resource_offset(&resources, res, offset);
53 }
Bjorn Helgaas6f17dd12011-10-28 16:27:48 -060054
55 bus = pci_scan_root_bus(NULL, next_busno, hose->pci_ops, hose,
56 &resources);
Paul Mundt320e68d2010-01-29 22:38:13 +090057 hose->bus = bus;
58
59 need_domain_info = need_domain_info || hose->index;
60 hose->need_domain_info = need_domain_info;
Paul Mundte79066a2009-04-20 18:29:22 +090061 if (bus) {
Yinghai Lub918c622012-05-17 18:51:11 -070062 next_busno = bus->busn_res.end + 1;
Paul Mundte79066a2009-04-20 18:29:22 +090063 /* Don't allow 8-bit bus number overflow inside the hose -
64 reserve some space for bridges. */
Paul Mundt320e68d2010-01-29 22:38:13 +090065 if (next_busno > 224) {
Paul Mundte79066a2009-04-20 18:29:22 +090066 next_busno = 0;
Paul Mundt320e68d2010-01-29 22:38:13 +090067 need_domain_info = 1;
68 }
Paul Mundte79066a2009-04-20 18:29:22 +090069
70 pci_bus_size_bridges(bus);
71 pci_bus_assign_resources(bus);
Bjorn Helgaas6f17dd12011-10-28 16:27:48 -060072 } else {
73 pci_free_resource_list(&resources);
Paul Mundte79066a2009-04-20 18:29:22 +090074 }
75}
76
Paul Mundt39a90862010-09-20 18:56:13 +090077/*
78 * This interrupt-safe spinlock protects all accesses to PCI
79 * configuration space.
80 */
81DEFINE_RAW_SPINLOCK(pci_config_lock);
Paul Mundte79066a2009-04-20 18:29:22 +090082static DEFINE_MUTEX(pci_scan_mutex);
83
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -080084int register_pci_controller(struct pci_channel *hose)
Paul Mundte79066a2009-04-20 18:29:22 +090085{
Paul Mundtb6c58b12010-02-01 20:01:50 +090086 int i;
87
88 for (i = 0; i < hose->nr_resources; i++) {
89 struct resource *res = hose->resources + i;
90
91 if (res->flags & IORESOURCE_IO) {
92 if (request_resource(&ioport_resource, res) < 0)
93 goto out;
94 } else {
95 if (request_resource(&iomem_resource, res) < 0)
96 goto out;
97 }
Paul Mundtac8ab542010-01-29 22:22:27 +090098 }
Paul Mundte79066a2009-04-20 18:29:22 +090099
100 *hose_tail = hose;
101 hose_tail = &hose->next;
102
103 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300104 * Do not panic here but later - this might happen before console init.
Paul Mundte79066a2009-04-20 18:29:22 +0900105 */
106 if (!hose->io_map_base) {
107 printk(KERN_WARNING
108 "registering PCI controller with io_map_base unset\n");
109 }
110
111 /*
Paul Mundtef407be2010-02-01 16:39:46 +0900112 * Setup the ERR/PERR and SERR timers, if available.
113 */
114 pcibios_enable_timers(hose);
115
116 /*
Paul Mundte79066a2009-04-20 18:29:22 +0900117 * Scan the bus if it is register after the PCI subsystem
118 * initialization.
119 */
120 if (pci_initialized) {
121 mutex_lock(&pci_scan_mutex);
122 pcibios_scanbus(hose);
123 mutex_unlock(&pci_scan_mutex);
124 }
Paul Mundtac8ab542010-01-29 22:22:27 +0900125
Paul Mundtbcf39352010-02-01 13:11:25 +0900126 return 0;
Paul Mundt85b59f52010-02-01 13:01:42 +0900127
Paul Mundtac8ab542010-01-29 22:22:27 +0900128out:
Paul Mundtb6c58b12010-02-01 20:01:50 +0900129 for (--i; i >= 0; i--)
130 release_resource(&hose->resources[i]);
131
Paul Mundtac8ab542010-01-29 22:22:27 +0900132 printk(KERN_WARNING "Skipping PCI bus scan due to resource conflict\n");
Paul Mundtbcf39352010-02-01 13:11:25 +0900133 return -1;
Paul Mundte79066a2009-04-20 18:29:22 +0900134}
Paul Mundt4c5107e2009-04-20 15:43:36 +0900135
136static int __init pcibios_init(void)
137{
Paul Mundte79066a2009-04-20 18:29:22 +0900138 struct pci_channel *hose;
Paul Mundt4c5107e2009-04-20 15:43:36 +0900139
Paul Mundte79066a2009-04-20 18:29:22 +0900140 /* Scan all of the recorded PCI controllers. */
141 for (hose = hose_head; hose; hose = hose->next)
142 pcibios_scanbus(hose);
Paul Mundt4c5107e2009-04-20 15:43:36 +0900143
144 pci_fixup_irqs(pci_common_swizzle, pcibios_map_platform_irq);
145
146 dma_debug_add_bus(&pci_bus_type);
147
Paul Mundte79066a2009-04-20 18:29:22 +0900148 pci_initialized = 1;
149
Paul Mundt4c5107e2009-04-20 15:43:36 +0900150 return 0;
151}
152subsys_initcall(pcibios_init);
153
Paul Mundt4c5107e2009-04-20 15:43:36 +0900154/*
155 * Called after each bus is probed, but before its children
156 * are examined.
157 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800158void pcibios_fixup_bus(struct pci_bus *bus)
Paul Mundt4c5107e2009-04-20 15:43:36 +0900159{
Paul Mundt4c5107e2009-04-20 15:43:36 +0900160}
Paul Mundt35bcfff2009-04-20 21:51:19 +0900161
162/*
163 * We need to avoid collisions with `mirrored' VGA ports
164 * and other strange ISA hardware, so we always want the
165 * addresses to be allocated in the 0x000-0x0ff region
166 * modulo 0x400.
167 */
Dominik Brodowski3b7a17f2010-01-01 17:40:50 +0100168resource_size_t pcibios_align_resource(void *data, const struct resource *res,
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100169 resource_size_t size, resource_size_t align)
Paul Mundt35bcfff2009-04-20 21:51:19 +0900170{
171 struct pci_dev *dev = data;
Paul Mundtb6c58b12010-02-01 20:01:50 +0900172 struct pci_channel *hose = dev->sysdata;
Paul Mundt35bcfff2009-04-20 21:51:19 +0900173 resource_size_t start = res->start;
174
175 if (res->flags & IORESOURCE_IO) {
Paul Mundtb6c58b12010-02-01 20:01:50 +0900176 if (start < PCIBIOS_MIN_IO + hose->resources[0].start)
177 start = PCIBIOS_MIN_IO + hose->resources[0].start;
Paul Mundt35bcfff2009-04-20 21:51:19 +0900178
179 /*
180 * Put everything into 0x00-0xff region modulo 0x400.
181 */
Paul Mundt84959352010-01-28 18:15:05 +0900182 if (start & 0x300)
Paul Mundt35bcfff2009-04-20 21:51:19 +0900183 start = (start + 0x3ff) & ~0x3ff;
Paul Mundt35bcfff2009-04-20 21:51:19 +0900184 }
185
Dominik Brodowskib26b2d42010-01-01 17:40:49 +0100186 return start;
Paul Mundt35bcfff2009-04-20 21:51:19 +0900187}
188
Paul Mundt9ad62ec2010-02-03 16:46:20 +0900189static void __init
190pcibios_bus_report_status_early(struct pci_channel *hose,
191 int top_bus, int current_bus,
192 unsigned int status_mask, int warn)
193{
194 unsigned int pci_devfn;
195 u16 status;
196 int ret;
197
198 for (pci_devfn = 0; pci_devfn < 0xff; pci_devfn++) {
199 if (PCI_FUNC(pci_devfn))
200 continue;
201 ret = early_read_config_word(hose, top_bus, current_bus,
202 pci_devfn, PCI_STATUS, &status);
203 if (ret != PCIBIOS_SUCCESSFUL)
204 continue;
205 if (status == 0xffff)
206 continue;
207
208 early_write_config_word(hose, top_bus, current_bus,
209 pci_devfn, PCI_STATUS,
210 status & status_mask);
211 if (warn)
212 printk("(%02x:%02x: %04X) ", current_bus,
213 pci_devfn, status);
214 }
215}
216
Paul Mundtef407be2010-02-01 16:39:46 +0900217/*
218 * We can't use pci_find_device() here since we are
219 * called from interrupt context.
220 */
Paul Mundt9ad62ec2010-02-03 16:46:20 +0900221static void __init_refok
222pcibios_bus_report_status(struct pci_bus *bus, unsigned int status_mask,
223 int warn)
Paul Mundtef407be2010-02-01 16:39:46 +0900224{
225 struct pci_dev *dev;
226
227 list_for_each_entry(dev, &bus->devices, bus_list) {
228 u16 status;
229
230 /*
231 * ignore host bridge - we handle
232 * that separately
233 */
234 if (dev->bus->number == 0 && dev->devfn == 0)
235 continue;
236
237 pci_read_config_word(dev, PCI_STATUS, &status);
238 if (status == 0xffff)
239 continue;
240
241 if ((status & status_mask) == 0)
242 continue;
243
244 /* clear the status errors */
245 pci_write_config_word(dev, PCI_STATUS, status & status_mask);
246
247 if (warn)
248 printk("(%s: %04X) ", pci_name(dev), status);
249 }
250
251 list_for_each_entry(dev, &bus->devices, bus_list)
252 if (dev->subordinate)
253 pcibios_bus_report_status(dev->subordinate, status_mask, warn);
254}
255
Paul Mundt9ad62ec2010-02-03 16:46:20 +0900256void __init_refok pcibios_report_status(unsigned int status_mask, int warn)
Paul Mundtef407be2010-02-01 16:39:46 +0900257{
258 struct pci_channel *hose;
259
Paul Mundt9ad62ec2010-02-03 16:46:20 +0900260 for (hose = hose_head; hose; hose = hose->next) {
261 if (unlikely(!hose->bus))
262 pcibios_bus_report_status_early(hose, hose_head->index,
263 hose->index, status_mask, warn);
264 else
265 pcibios_bus_report_status(hose->bus, status_mask, warn);
266 }
Paul Mundtef407be2010-02-01 16:39:46 +0900267}
268
Paul Mundt35bcfff2009-04-20 21:51:19 +0900269int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
270 enum pci_mmap_state mmap_state, int write_combine)
271{
272 /*
273 * I/O space can be accessed via normal processor loads and stores on
274 * this platform but for now we elect not to do this and portable
275 * drivers should not do this anyway.
276 */
277 if (mmap_state == pci_mmap_io)
278 return -EINVAL;
279
280 /*
281 * Ignore write-combine; for now only return uncached mappings.
282 */
283 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
284
285 return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
286 vma->vm_end - vma->vm_start,
287 vma->vm_page_prot);
288}
289
David McKay15444a82009-08-24 16:10:40 +0900290#ifndef CONFIG_GENERIC_IOMAP
291
Michael S. Tsirkin1e05b622012-01-30 00:29:10 +0200292void __iomem *__pci_ioport_map(struct pci_dev *dev,
293 unsigned long port, unsigned int nr)
Paul Mundt35bcfff2009-04-20 21:51:19 +0900294{
295 struct pci_channel *chan = dev->sysdata;
296
Paul Mundt320e68d2010-01-29 22:38:13 +0900297 if (unlikely(!chan->io_map_base)) {
Paul Mundt37b7a972010-11-01 09:49:04 -0400298 chan->io_map_base = sh_io_port_base;
Paul Mundt35bcfff2009-04-20 21:51:19 +0900299
Paul Mundt320e68d2010-01-29 22:38:13 +0900300 if (pci_domains_supported)
301 panic("To avoid data corruption io_map_base MUST be "
302 "set with multiple PCI domains.");
303 }
304
Paul Mundt35bcfff2009-04-20 21:51:19 +0900305 return (void __iomem *)(chan->io_map_base + port);
306}
307
Paul Mundt35bcfff2009-04-20 21:51:19 +0900308void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
309{
310 iounmap(addr);
311}
312EXPORT_SYMBOL(pci_iounmap);
313
David McKay15444a82009-08-24 16:10:40 +0900314#endif /* CONFIG_GENERIC_IOMAP */
315
Paul Mundt35bcfff2009-04-20 21:51:19 +0900316EXPORT_SYMBOL(PCIBIOS_MIN_IO);
317EXPORT_SYMBOL(PCIBIOS_MIN_MEM);