Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2004 Matthew Wilcox <matthew@wil.cx> |
| 3 | * Copyright (C) 2004 Intel Corp. |
| 4 | * |
| 5 | * This code is released under the GNU General Public License version 2. |
| 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * mmconfig.c - Low-level direct PCI config space access via MMCONFIG |
| 10 | */ |
| 11 | |
| 12 | #include <linux/pci.h> |
| 13 | #include <linux/init.h> |
Arjan van de Ven | 946f2ee | 2006-04-07 19:49:30 +0200 | [diff] [blame] | 14 | #include <asm/e820.h> |
Jaswinder Singh Rajput | 8248771 | 2008-12-27 18:32:28 +0530 | [diff] [blame] | 15 | #include <asm/pci_x86.h> |
Feng Tang | 5f0db7a | 2009-08-14 15:37:50 -0400 | [diff] [blame] | 16 | #include <acpi/acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Andi Kleen | 8c30b1a74 | 2006-04-07 19:50:12 +0200 | [diff] [blame] | 18 | /* Assume systems with more busses have correct MCFG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #define mmcfg_virt_addr ((void __iomem *) fix_to_virt(FIX_PCIE_MCFG)) |
| 20 | |
| 21 | /* The base address of the last MMCONFIG device accessed */ |
| 22 | static u32 mmcfg_last_accessed_device; |
OGAWA Hirofumi | 8d1c481 | 2006-12-23 10:00:43 +0900 | [diff] [blame] | 23 | static int mmcfg_last_accessed_cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | /* |
| 26 | * Functions for accessing PCI configuration space with MMCONFIG accesses |
| 27 | */ |
Andi Kleen | d6ece54 | 2005-12-12 22:17:11 -0800 | [diff] [blame] | 28 | static u32 get_base_addr(unsigned int seg, int bus, unsigned devfn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | { |
Bjorn Helgaas | d215a9c | 2009-11-13 17:34:13 -0700 | [diff] [blame] | 30 | struct pci_mmcfg_region *cfg; |
Greg Kroah-Hartman | d57e26c | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 31 | |
Bjorn Helgaas | ff097dd | 2009-11-13 17:34:49 -0700 | [diff] [blame] | 32 | list_for_each_entry(cfg, &pci_mmcfg_list, list) |
Bjorn Helgaas | d7e6b66 | 2009-11-13 17:34:18 -0700 | [diff] [blame] | 33 | if (cfg->segment == seg && |
| 34 | (cfg->start_bus <= bus) && |
| 35 | (cfg->end_bus >= bus)) |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 36 | return cfg->address; |
Andi Kleen | 3103039 | 2006-01-27 02:03:50 +0100 | [diff] [blame] | 37 | |
Andi Kleen | 3103039 | 2006-01-27 02:03:50 +0100 | [diff] [blame] | 38 | /* Fall back to type 0 */ |
| 39 | return 0; |
Greg Kroah-Hartman | d57e26c | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Andrew Morton | be5b7a8 | 2006-09-30 23:27:10 -0700 | [diff] [blame] | 42 | /* |
| 43 | * This is always called under pci_config_lock |
| 44 | */ |
| 45 | static void pci_exp_set_dev_base(unsigned int base, int bus, int devfn) |
Greg Kroah-Hartman | d57e26c | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 46 | { |
Bjorn Helgaas | df5eb1d | 2009-11-13 17:34:08 -0700 | [diff] [blame] | 47 | u32 dev_base = base | PCI_MMCFG_BUS_OFFSET(bus) | (devfn << 12); |
OGAWA Hirofumi | 8d1c481 | 2006-12-23 10:00:43 +0900 | [diff] [blame] | 48 | int cpu = smp_processor_id(); |
| 49 | if (dev_base != mmcfg_last_accessed_device || |
| 50 | cpu != mmcfg_last_accessed_cpu) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | mmcfg_last_accessed_device = dev_base; |
OGAWA Hirofumi | 8d1c481 | 2006-12-23 10:00:43 +0900 | [diff] [blame] | 52 | mmcfg_last_accessed_cpu = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | set_fixmap_nocache(FIX_PCIE_MCFG, dev_base); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | static int pci_mmcfg_read(unsigned int seg, unsigned int bus, |
| 58 | unsigned int devfn, int reg, int len, u32 *value) |
| 59 | { |
| 60 | unsigned long flags; |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 61 | u32 base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Andi Kleen | ecc16ba | 2006-04-11 12:54:48 +0200 | [diff] [blame] | 63 | if ((bus > 255) || (devfn > 255) || (reg > 4095)) { |
Ivan Kokshaysky | a0ca990 | 2008-01-14 17:31:09 -0500 | [diff] [blame] | 64 | err: *value = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | return -EINVAL; |
Andi Kleen | 49c93e8 | 2006-04-07 19:50:15 +0200 | [diff] [blame] | 66 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Andi Kleen | d6ece54 | 2005-12-12 22:17:11 -0800 | [diff] [blame] | 68 | base = get_base_addr(seg, bus, devfn); |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 69 | if (!base) |
Ivan Kokshaysky | a0ca990 | 2008-01-14 17:31:09 -0500 | [diff] [blame] | 70 | goto err; |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | spin_lock_irqsave(&pci_config_lock, flags); |
| 73 | |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 74 | pci_exp_set_dev_base(base, bus, devfn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | switch (len) { |
| 77 | case 1: |
dean gaudet | 3320ad9 | 2007-08-10 22:30:59 +0200 | [diff] [blame] | 78 | *value = mmio_config_readb(mmcfg_virt_addr + reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | break; |
| 80 | case 2: |
dean gaudet | 3320ad9 | 2007-08-10 22:30:59 +0200 | [diff] [blame] | 81 | *value = mmio_config_readw(mmcfg_virt_addr + reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | break; |
| 83 | case 4: |
dean gaudet | 3320ad9 | 2007-08-10 22:30:59 +0200 | [diff] [blame] | 84 | *value = mmio_config_readl(mmcfg_virt_addr + reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | break; |
| 86 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | spin_unlock_irqrestore(&pci_config_lock, flags); |
| 88 | |
| 89 | return 0; |
| 90 | } |
| 91 | |
| 92 | static int pci_mmcfg_write(unsigned int seg, unsigned int bus, |
| 93 | unsigned int devfn, int reg, int len, u32 value) |
| 94 | { |
| 95 | unsigned long flags; |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 96 | u32 base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 98 | if ((bus > 255) || (devfn > 255) || (reg > 4095)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | return -EINVAL; |
| 100 | |
Andi Kleen | d6ece54 | 2005-12-12 22:17:11 -0800 | [diff] [blame] | 101 | base = get_base_addr(seg, bus, devfn); |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 102 | if (!base) |
Ivan Kokshaysky | a0ca990 | 2008-01-14 17:31:09 -0500 | [diff] [blame] | 103 | return -EINVAL; |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | spin_lock_irqsave(&pci_config_lock, flags); |
| 106 | |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 107 | pci_exp_set_dev_base(base, bus, devfn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | switch (len) { |
| 110 | case 1: |
Linus Torvalds | c1502e2 | 2007-08-12 02:23:16 -0700 | [diff] [blame] | 111 | mmio_config_writeb(mmcfg_virt_addr + reg, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | break; |
| 113 | case 2: |
Linus Torvalds | c1502e2 | 2007-08-12 02:23:16 -0700 | [diff] [blame] | 114 | mmio_config_writew(mmcfg_virt_addr + reg, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | break; |
| 116 | case 4: |
Linus Torvalds | c1502e2 | 2007-08-12 02:23:16 -0700 | [diff] [blame] | 117 | mmio_config_writel(mmcfg_virt_addr + reg, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | break; |
| 119 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | spin_unlock_irqrestore(&pci_config_lock, flags); |
| 121 | |
| 122 | return 0; |
| 123 | } |
| 124 | |
| 125 | static struct pci_raw_ops pci_mmcfg = { |
| 126 | .read = pci_mmcfg_read, |
| 127 | .write = pci_mmcfg_write, |
| 128 | }; |
| 129 | |
Olivier Galibert | b786739 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 130 | int __init pci_mmcfg_arch_init(void) |
Andi Kleen | d6ece54 | 2005-12-12 22:17:11 -0800 | [diff] [blame] | 131 | { |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 132 | printk(KERN_INFO "PCI: Using MMCONFIG for extended config space\n"); |
| 133 | raw_pci_ext_ops = &pci_mmcfg; |
Olivier Galibert | b786739 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 134 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } |
Yinghai Lu | 0b64ad7 | 2008-02-15 01:28:41 -0800 | [diff] [blame] | 136 | |
| 137 | void __init pci_mmcfg_arch_free(void) |
| 138 | { |
| 139 | } |