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> |
Jiang Liu | 376f70a | 2012-06-22 14:55:12 +0800 | [diff] [blame] | 14 | #include <linux/rcupdate.h> |
Arjan van de Ven | 946f2ee | 2006-04-07 19:49:30 +0200 | [diff] [blame] | 15 | #include <asm/e820.h> |
Jaswinder Singh Rajput | 8248771 | 2008-12-27 18:32:28 +0530 | [diff] [blame] | 16 | #include <asm/pci_x86.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 | f6e1d8c | 2009-11-13 17:35:04 -0700 | [diff] [blame] | 30 | struct pci_mmcfg_region *cfg = pci_mmconfig_lookup(seg, bus); |
Greg Kroah-Hartman | d57e26c | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 31 | |
Bjorn Helgaas | f6e1d8c | 2009-11-13 17:35:04 -0700 | [diff] [blame] | 32 | if (cfg) |
| 33 | return cfg->address; |
Andi Kleen | 3103039 | 2006-01-27 02:03:50 +0100 | [diff] [blame] | 34 | return 0; |
Greg Kroah-Hartman | d57e26c | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 35 | } |
| 36 | |
Andrew Morton | be5b7a8 | 2006-09-30 23:27:10 -0700 | [diff] [blame] | 37 | /* |
| 38 | * This is always called under pci_config_lock |
| 39 | */ |
| 40 | 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] | 41 | { |
Bjorn Helgaas | df5eb1d | 2009-11-13 17:34:08 -0700 | [diff] [blame] | 42 | u32 dev_base = base | PCI_MMCFG_BUS_OFFSET(bus) | (devfn << 12); |
OGAWA Hirofumi | 8d1c481 | 2006-12-23 10:00:43 +0900 | [diff] [blame] | 43 | int cpu = smp_processor_id(); |
| 44 | if (dev_base != mmcfg_last_accessed_device || |
| 45 | cpu != mmcfg_last_accessed_cpu) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | mmcfg_last_accessed_device = dev_base; |
OGAWA Hirofumi | 8d1c481 | 2006-12-23 10:00:43 +0900 | [diff] [blame] | 47 | mmcfg_last_accessed_cpu = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | set_fixmap_nocache(FIX_PCIE_MCFG, dev_base); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | static int pci_mmcfg_read(unsigned int seg, unsigned int bus, |
| 53 | unsigned int devfn, int reg, int len, u32 *value) |
| 54 | { |
| 55 | unsigned long flags; |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 56 | u32 base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Andi Kleen | ecc16ba | 2006-04-11 12:54:48 +0200 | [diff] [blame] | 58 | if ((bus > 255) || (devfn > 255) || (reg > 4095)) { |
Ivan Kokshaysky | a0ca990 | 2008-01-14 17:31:09 -0500 | [diff] [blame] | 59 | err: *value = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | return -EINVAL; |
Andi Kleen | 49c93e8 | 2006-04-07 19:50:15 +0200 | [diff] [blame] | 61 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Jiang Liu | 376f70a | 2012-06-22 14:55:12 +0800 | [diff] [blame] | 63 | rcu_read_lock(); |
Andi Kleen | d6ece54 | 2005-12-12 22:17:11 -0800 | [diff] [blame] | 64 | base = get_base_addr(seg, bus, devfn); |
Jiang Liu | 376f70a | 2012-06-22 14:55:12 +0800 | [diff] [blame] | 65 | if (!base) { |
| 66 | rcu_read_unlock(); |
Ivan Kokshaysky | a0ca990 | 2008-01-14 17:31:09 -0500 | [diff] [blame] | 67 | goto err; |
Jiang Liu | 376f70a | 2012-06-22 14:55:12 +0800 | [diff] [blame] | 68 | } |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 69 | |
Thomas Gleixner | d19f61f | 2010-02-17 14:35:25 +0000 | [diff] [blame] | 70 | raw_spin_lock_irqsave(&pci_config_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 72 | pci_exp_set_dev_base(base, bus, devfn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | switch (len) { |
| 75 | case 1: |
dean gaudet | 3320ad9 | 2007-08-10 22:30:59 +0200 | [diff] [blame] | 76 | *value = mmio_config_readb(mmcfg_virt_addr + reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | break; |
| 78 | case 2: |
dean gaudet | 3320ad9 | 2007-08-10 22:30:59 +0200 | [diff] [blame] | 79 | *value = mmio_config_readw(mmcfg_virt_addr + reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | break; |
| 81 | case 4: |
dean gaudet | 3320ad9 | 2007-08-10 22:30:59 +0200 | [diff] [blame] | 82 | *value = mmio_config_readl(mmcfg_virt_addr + reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | break; |
| 84 | } |
Thomas Gleixner | d19f61f | 2010-02-17 14:35:25 +0000 | [diff] [blame] | 85 | raw_spin_unlock_irqrestore(&pci_config_lock, flags); |
Jiang Liu | 376f70a | 2012-06-22 14:55:12 +0800 | [diff] [blame] | 86 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
| 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | static int pci_mmcfg_write(unsigned int seg, unsigned int bus, |
| 92 | unsigned int devfn, int reg, int len, u32 value) |
| 93 | { |
| 94 | unsigned long flags; |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 95 | u32 base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 97 | if ((bus > 255) || (devfn > 255) || (reg > 4095)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | return -EINVAL; |
| 99 | |
Jiang Liu | 376f70a | 2012-06-22 14:55:12 +0800 | [diff] [blame] | 100 | rcu_read_lock(); |
Andi Kleen | d6ece54 | 2005-12-12 22:17:11 -0800 | [diff] [blame] | 101 | base = get_base_addr(seg, bus, devfn); |
Jiang Liu | 376f70a | 2012-06-22 14:55:12 +0800 | [diff] [blame] | 102 | if (!base) { |
| 103 | rcu_read_unlock(); |
Ivan Kokshaysky | a0ca990 | 2008-01-14 17:31:09 -0500 | [diff] [blame] | 104 | return -EINVAL; |
Jiang Liu | 376f70a | 2012-06-22 14:55:12 +0800 | [diff] [blame] | 105 | } |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 106 | |
Thomas Gleixner | d19f61f | 2010-02-17 14:35:25 +0000 | [diff] [blame] | 107 | raw_spin_lock_irqsave(&pci_config_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 109 | pci_exp_set_dev_base(base, bus, devfn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | switch (len) { |
| 112 | case 1: |
Linus Torvalds | c1502e2 | 2007-08-12 02:23:16 -0700 | [diff] [blame] | 113 | mmio_config_writeb(mmcfg_virt_addr + reg, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | break; |
| 115 | case 2: |
Linus Torvalds | c1502e2 | 2007-08-12 02:23:16 -0700 | [diff] [blame] | 116 | mmio_config_writew(mmcfg_virt_addr + reg, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | break; |
| 118 | case 4: |
Linus Torvalds | c1502e2 | 2007-08-12 02:23:16 -0700 | [diff] [blame] | 119 | mmio_config_writel(mmcfg_virt_addr + reg, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | break; |
| 121 | } |
Thomas Gleixner | d19f61f | 2010-02-17 14:35:25 +0000 | [diff] [blame] | 122 | raw_spin_unlock_irqrestore(&pci_config_lock, flags); |
Jiang Liu | 376f70a | 2012-06-22 14:55:12 +0800 | [diff] [blame] | 123 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
| 125 | return 0; |
| 126 | } |
| 127 | |
Jiang Liu | c0fa407 | 2012-06-22 14:55:17 +0800 | [diff] [blame] | 128 | const struct pci_raw_ops pci_mmcfg = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | .read = pci_mmcfg_read, |
| 130 | .write = pci_mmcfg_write, |
| 131 | }; |
| 132 | |
Olivier Galibert | b786739 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 133 | int __init pci_mmcfg_arch_init(void) |
Andi Kleen | d6ece54 | 2005-12-12 22:17:11 -0800 | [diff] [blame] | 134 | { |
Matthew Wilcox | b6ce068 | 2008-02-10 09:45:28 -0500 | [diff] [blame] | 135 | printk(KERN_INFO "PCI: Using MMCONFIG for extended config space\n"); |
| 136 | raw_pci_ext_ops = &pci_mmcfg; |
Olivier Galibert | b786739 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 137 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
Yinghai Lu | 0b64ad7 | 2008-02-15 01:28:41 -0800 | [diff] [blame] | 139 | |
| 140 | void __init pci_mmcfg_arch_free(void) |
| 141 | { |
| 142 | } |
Jiang Liu | 9cf0105 | 2012-06-22 14:55:13 +0800 | [diff] [blame] | 143 | |
Greg Kroah-Hartman | a18e369 | 2012-12-21 14:02:53 -0800 | [diff] [blame] | 144 | int pci_mmcfg_arch_map(struct pci_mmcfg_region *cfg) |
Jiang Liu | 9cf0105 | 2012-06-22 14:55:13 +0800 | [diff] [blame] | 145 | { |
| 146 | return 0; |
| 147 | } |
| 148 | |
| 149 | void pci_mmcfg_arch_unmap(struct pci_mmcfg_region *cfg) |
| 150 | { |
| 151 | unsigned long flags; |
| 152 | |
| 153 | /* Invalidate the cached mmcfg map entry. */ |
| 154 | raw_spin_lock_irqsave(&pci_config_lock, flags); |
| 155 | mmcfg_last_accessed_device = 0; |
| 156 | raw_spin_unlock_irqrestore(&pci_config_lock, flags); |
| 157 | } |