Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 1 | /* |
| 2 | * New-style PCI core. |
| 3 | * |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 4 | * Copyright (c) 2004 - 2009 Paul Mundt |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 5 | * 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 Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 9 | * |
| 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 Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 15 | #include <linux/mm.h> |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 16 | #include <linux/pci.h> |
| 17 | #include <linux/init.h> |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 18 | #include <linux/types.h> |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 19 | #include <linux/dma-debug.h> |
| 20 | #include <linux/io.h> |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 21 | #include <linux/mutex.h> |
Paul Mundt | 39a9086 | 2010-09-20 18:56:13 +0900 | [diff] [blame] | 22 | #include <linux/spinlock.h> |
Paul Gortmaker | f7be345 | 2011-07-31 19:20:02 -0400 | [diff] [blame] | 23 | #include <linux/export.h> |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 24 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 25 | unsigned long PCIBIOS_MIN_IO = 0x0000; |
| 26 | unsigned long PCIBIOS_MIN_MEM = 0; |
| 27 | |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 28 | /* |
| 29 | * The PCI controller list. |
| 30 | */ |
| 31 | static struct pci_channel *hose_head, **hose_tail = &hose_head; |
| 32 | |
| 33 | static int pci_initialized; |
| 34 | |
| 35 | static void __devinit pcibios_scanbus(struct pci_channel *hose) |
| 36 | { |
| 37 | static int next_busno; |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 38 | static int need_domain_info; |
Bjorn Helgaas | 6f17dd1 | 2011-10-28 16:27:48 -0600 | [diff] [blame] | 39 | LIST_HEAD(resources); |
Bjorn Helgaas | 7fa6a50 | 2012-02-23 20:19:03 -0700 | [diff] [blame] | 40 | struct resource *res; |
| 41 | resource_size_t offset; |
Bjorn Helgaas | 6f17dd1 | 2011-10-28 16:27:48 -0600 | [diff] [blame] | 42 | int i; |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 43 | struct pci_bus *bus; |
| 44 | |
Bjorn Helgaas | 7fa6a50 | 2012-02-23 20:19:03 -0700 | [diff] [blame] | 45 | 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 Helgaas | 6f17dd1 | 2011-10-28 16:27:48 -0600 | [diff] [blame] | 54 | |
| 55 | bus = pci_scan_root_bus(NULL, next_busno, hose->pci_ops, hose, |
| 56 | &resources); |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 57 | hose->bus = bus; |
| 58 | |
| 59 | need_domain_info = need_domain_info || hose->index; |
| 60 | hose->need_domain_info = need_domain_info; |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 61 | if (bus) { |
| 62 | next_busno = bus->subordinate + 1; |
| 63 | /* Don't allow 8-bit bus number overflow inside the hose - |
| 64 | reserve some space for bridges. */ |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 65 | if (next_busno > 224) { |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 66 | next_busno = 0; |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 67 | need_domain_info = 1; |
| 68 | } |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 69 | |
| 70 | pci_bus_size_bridges(bus); |
| 71 | pci_bus_assign_resources(bus); |
| 72 | pci_enable_bridges(bus); |
Bjorn Helgaas | 6f17dd1 | 2011-10-28 16:27:48 -0600 | [diff] [blame] | 73 | } else { |
| 74 | pci_free_resource_list(&resources); |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 75 | } |
| 76 | } |
| 77 | |
Paul Mundt | 39a9086 | 2010-09-20 18:56:13 +0900 | [diff] [blame] | 78 | /* |
| 79 | * This interrupt-safe spinlock protects all accesses to PCI |
| 80 | * configuration space. |
| 81 | */ |
| 82 | DEFINE_RAW_SPINLOCK(pci_config_lock); |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 83 | static DEFINE_MUTEX(pci_scan_mutex); |
| 84 | |
Paul Mundt | bcf3935 | 2010-02-01 13:11:25 +0900 | [diff] [blame] | 85 | int __devinit register_pci_controller(struct pci_channel *hose) |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 86 | { |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 87 | int i; |
| 88 | |
| 89 | for (i = 0; i < hose->nr_resources; i++) { |
| 90 | struct resource *res = hose->resources + i; |
| 91 | |
| 92 | if (res->flags & IORESOURCE_IO) { |
| 93 | if (request_resource(&ioport_resource, res) < 0) |
| 94 | goto out; |
| 95 | } else { |
| 96 | if (request_resource(&iomem_resource, res) < 0) |
| 97 | goto out; |
| 98 | } |
Paul Mundt | ac8ab54 | 2010-01-29 22:22:27 +0900 | [diff] [blame] | 99 | } |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 100 | |
| 101 | *hose_tail = hose; |
| 102 | hose_tail = &hose->next; |
| 103 | |
| 104 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 105 | * Do not panic here but later - this might happen before console init. |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 106 | */ |
| 107 | if (!hose->io_map_base) { |
| 108 | printk(KERN_WARNING |
| 109 | "registering PCI controller with io_map_base unset\n"); |
| 110 | } |
| 111 | |
| 112 | /* |
Paul Mundt | ef407be | 2010-02-01 16:39:46 +0900 | [diff] [blame] | 113 | * Setup the ERR/PERR and SERR timers, if available. |
| 114 | */ |
| 115 | pcibios_enable_timers(hose); |
| 116 | |
| 117 | /* |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 118 | * Scan the bus if it is register after the PCI subsystem |
| 119 | * initialization. |
| 120 | */ |
| 121 | if (pci_initialized) { |
| 122 | mutex_lock(&pci_scan_mutex); |
| 123 | pcibios_scanbus(hose); |
| 124 | mutex_unlock(&pci_scan_mutex); |
| 125 | } |
Paul Mundt | ac8ab54 | 2010-01-29 22:22:27 +0900 | [diff] [blame] | 126 | |
Paul Mundt | bcf3935 | 2010-02-01 13:11:25 +0900 | [diff] [blame] | 127 | return 0; |
Paul Mundt | 85b59f5 | 2010-02-01 13:01:42 +0900 | [diff] [blame] | 128 | |
Paul Mundt | ac8ab54 | 2010-01-29 22:22:27 +0900 | [diff] [blame] | 129 | out: |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 130 | for (--i; i >= 0; i--) |
| 131 | release_resource(&hose->resources[i]); |
| 132 | |
Paul Mundt | ac8ab54 | 2010-01-29 22:22:27 +0900 | [diff] [blame] | 133 | printk(KERN_WARNING "Skipping PCI bus scan due to resource conflict\n"); |
Paul Mundt | bcf3935 | 2010-02-01 13:11:25 +0900 | [diff] [blame] | 134 | return -1; |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 135 | } |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 136 | |
| 137 | static int __init pcibios_init(void) |
| 138 | { |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 139 | struct pci_channel *hose; |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 140 | |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 141 | /* Scan all of the recorded PCI controllers. */ |
| 142 | for (hose = hose_head; hose; hose = hose->next) |
| 143 | pcibios_scanbus(hose); |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 144 | |
| 145 | pci_fixup_irqs(pci_common_swizzle, pcibios_map_platform_irq); |
| 146 | |
| 147 | dma_debug_add_bus(&pci_bus_type); |
| 148 | |
Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 149 | pci_initialized = 1; |
| 150 | |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 151 | return 0; |
| 152 | } |
| 153 | subsys_initcall(pcibios_init); |
| 154 | |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 155 | /* |
| 156 | * Called after each bus is probed, but before its children |
| 157 | * are examined. |
| 158 | */ |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 159 | void __devinit pcibios_fixup_bus(struct pci_bus *bus) |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 160 | { |
Paul Mundt | 4c5107e | 2009-04-20 15:43:36 +0900 | [diff] [blame] | 161 | } |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 162 | |
| 163 | /* |
| 164 | * We need to avoid collisions with `mirrored' VGA ports |
| 165 | * and other strange ISA hardware, so we always want the |
| 166 | * addresses to be allocated in the 0x000-0x0ff region |
| 167 | * modulo 0x400. |
| 168 | */ |
Dominik Brodowski | 3b7a17f | 2010-01-01 17:40:50 +0100 | [diff] [blame] | 169 | resource_size_t pcibios_align_resource(void *data, const struct resource *res, |
Dominik Brodowski | b26b2d4 | 2010-01-01 17:40:49 +0100 | [diff] [blame] | 170 | resource_size_t size, resource_size_t align) |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 171 | { |
| 172 | struct pci_dev *dev = data; |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 173 | struct pci_channel *hose = dev->sysdata; |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 174 | resource_size_t start = res->start; |
| 175 | |
| 176 | if (res->flags & IORESOURCE_IO) { |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 177 | if (start < PCIBIOS_MIN_IO + hose->resources[0].start) |
| 178 | start = PCIBIOS_MIN_IO + hose->resources[0].start; |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 179 | |
| 180 | /* |
| 181 | * Put everything into 0x00-0xff region modulo 0x400. |
| 182 | */ |
Paul Mundt | 8495935 | 2010-01-28 18:15:05 +0900 | [diff] [blame] | 183 | if (start & 0x300) |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 184 | start = (start + 0x3ff) & ~0x3ff; |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 185 | } |
| 186 | |
Dominik Brodowski | b26b2d4 | 2010-01-01 17:40:49 +0100 | [diff] [blame] | 187 | return start; |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 188 | } |
| 189 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 190 | int pcibios_enable_device(struct pci_dev *dev, int mask) |
| 191 | { |
Paul Mundt | c62e3fa | 2010-09-19 13:51:15 +0900 | [diff] [blame] | 192 | return pci_enable_resources(dev, mask); |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 193 | } |
| 194 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 195 | void __init pcibios_update_irq(struct pci_dev *dev, int irq) |
| 196 | { |
| 197 | pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq); |
| 198 | } |
| 199 | |
Paul Mundt | 61a46766 | 2010-10-14 07:37:01 +0900 | [diff] [blame] | 200 | char * __devinit __weak pcibios_setup(char *str) |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 201 | { |
| 202 | return str; |
| 203 | } |
| 204 | |
Paul Mundt | 9ad62ec | 2010-02-03 16:46:20 +0900 | [diff] [blame] | 205 | static void __init |
| 206 | pcibios_bus_report_status_early(struct pci_channel *hose, |
| 207 | int top_bus, int current_bus, |
| 208 | unsigned int status_mask, int warn) |
| 209 | { |
| 210 | unsigned int pci_devfn; |
| 211 | u16 status; |
| 212 | int ret; |
| 213 | |
| 214 | for (pci_devfn = 0; pci_devfn < 0xff; pci_devfn++) { |
| 215 | if (PCI_FUNC(pci_devfn)) |
| 216 | continue; |
| 217 | ret = early_read_config_word(hose, top_bus, current_bus, |
| 218 | pci_devfn, PCI_STATUS, &status); |
| 219 | if (ret != PCIBIOS_SUCCESSFUL) |
| 220 | continue; |
| 221 | if (status == 0xffff) |
| 222 | continue; |
| 223 | |
| 224 | early_write_config_word(hose, top_bus, current_bus, |
| 225 | pci_devfn, PCI_STATUS, |
| 226 | status & status_mask); |
| 227 | if (warn) |
| 228 | printk("(%02x:%02x: %04X) ", current_bus, |
| 229 | pci_devfn, status); |
| 230 | } |
| 231 | } |
| 232 | |
Paul Mundt | ef407be | 2010-02-01 16:39:46 +0900 | [diff] [blame] | 233 | /* |
| 234 | * We can't use pci_find_device() here since we are |
| 235 | * called from interrupt context. |
| 236 | */ |
Paul Mundt | 9ad62ec | 2010-02-03 16:46:20 +0900 | [diff] [blame] | 237 | static void __init_refok |
| 238 | pcibios_bus_report_status(struct pci_bus *bus, unsigned int status_mask, |
| 239 | int warn) |
Paul Mundt | ef407be | 2010-02-01 16:39:46 +0900 | [diff] [blame] | 240 | { |
| 241 | struct pci_dev *dev; |
| 242 | |
| 243 | list_for_each_entry(dev, &bus->devices, bus_list) { |
| 244 | u16 status; |
| 245 | |
| 246 | /* |
| 247 | * ignore host bridge - we handle |
| 248 | * that separately |
| 249 | */ |
| 250 | if (dev->bus->number == 0 && dev->devfn == 0) |
| 251 | continue; |
| 252 | |
| 253 | pci_read_config_word(dev, PCI_STATUS, &status); |
| 254 | if (status == 0xffff) |
| 255 | continue; |
| 256 | |
| 257 | if ((status & status_mask) == 0) |
| 258 | continue; |
| 259 | |
| 260 | /* clear the status errors */ |
| 261 | pci_write_config_word(dev, PCI_STATUS, status & status_mask); |
| 262 | |
| 263 | if (warn) |
| 264 | printk("(%s: %04X) ", pci_name(dev), status); |
| 265 | } |
| 266 | |
| 267 | list_for_each_entry(dev, &bus->devices, bus_list) |
| 268 | if (dev->subordinate) |
| 269 | pcibios_bus_report_status(dev->subordinate, status_mask, warn); |
| 270 | } |
| 271 | |
Paul Mundt | 9ad62ec | 2010-02-03 16:46:20 +0900 | [diff] [blame] | 272 | void __init_refok pcibios_report_status(unsigned int status_mask, int warn) |
Paul Mundt | ef407be | 2010-02-01 16:39:46 +0900 | [diff] [blame] | 273 | { |
| 274 | struct pci_channel *hose; |
| 275 | |
Paul Mundt | 9ad62ec | 2010-02-03 16:46:20 +0900 | [diff] [blame] | 276 | for (hose = hose_head; hose; hose = hose->next) { |
| 277 | if (unlikely(!hose->bus)) |
| 278 | pcibios_bus_report_status_early(hose, hose_head->index, |
| 279 | hose->index, status_mask, warn); |
| 280 | else |
| 281 | pcibios_bus_report_status(hose->bus, status_mask, warn); |
| 282 | } |
Paul Mundt | ef407be | 2010-02-01 16:39:46 +0900 | [diff] [blame] | 283 | } |
| 284 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 285 | int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma, |
| 286 | enum pci_mmap_state mmap_state, int write_combine) |
| 287 | { |
| 288 | /* |
| 289 | * I/O space can be accessed via normal processor loads and stores on |
| 290 | * this platform but for now we elect not to do this and portable |
| 291 | * drivers should not do this anyway. |
| 292 | */ |
| 293 | if (mmap_state == pci_mmap_io) |
| 294 | return -EINVAL; |
| 295 | |
| 296 | /* |
| 297 | * Ignore write-combine; for now only return uncached mappings. |
| 298 | */ |
| 299 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); |
| 300 | |
| 301 | return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff, |
| 302 | vma->vm_end - vma->vm_start, |
| 303 | vma->vm_page_prot); |
| 304 | } |
| 305 | |
David McKay | 15444a8 | 2009-08-24 16:10:40 +0900 | [diff] [blame] | 306 | #ifndef CONFIG_GENERIC_IOMAP |
| 307 | |
Michael S. Tsirkin | 1e05b62 | 2012-01-30 00:29:10 +0200 | [diff] [blame] | 308 | void __iomem *__pci_ioport_map(struct pci_dev *dev, |
| 309 | unsigned long port, unsigned int nr) |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 310 | { |
| 311 | struct pci_channel *chan = dev->sysdata; |
| 312 | |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 313 | if (unlikely(!chan->io_map_base)) { |
Paul Mundt | 37b7a97 | 2010-11-01 09:49:04 -0400 | [diff] [blame] | 314 | chan->io_map_base = sh_io_port_base; |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 315 | |
Paul Mundt | 320e68d | 2010-01-29 22:38:13 +0900 | [diff] [blame] | 316 | if (pci_domains_supported) |
| 317 | panic("To avoid data corruption io_map_base MUST be " |
| 318 | "set with multiple PCI domains."); |
| 319 | } |
| 320 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 321 | return (void __iomem *)(chan->io_map_base + port); |
| 322 | } |
| 323 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 324 | void pci_iounmap(struct pci_dev *dev, void __iomem *addr) |
| 325 | { |
| 326 | iounmap(addr); |
| 327 | } |
| 328 | EXPORT_SYMBOL(pci_iounmap); |
| 329 | |
David McKay | 15444a8 | 2009-08-24 16:10:40 +0900 | [diff] [blame] | 330 | #endif /* CONFIG_GENERIC_IOMAP */ |
| 331 | |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 332 | #ifdef CONFIG_HOTPLUG |
Paul Mundt | 35bcfff | 2009-04-20 21:51:19 +0900 | [diff] [blame] | 333 | EXPORT_SYMBOL(PCIBIOS_MIN_IO); |
| 334 | EXPORT_SYMBOL(PCIBIOS_MIN_MEM); |
| 335 | #endif |