| 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> | 
| Greg Kroah-Hartman | 5454939 | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 14 | #include <linux/acpi.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 | 8c30b1a | 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 | { | 
| Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 30 | struct acpi_mcfg_allocation *cfg; | 
| OGAWA Hirofumi | 429d512 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 31 | int cfg_num; | 
| Greg Kroah-Hartman | d57e26c | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 32 |  | 
| OGAWA Hirofumi | 429d512 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 33 | for (cfg_num = 0; cfg_num < pci_mmcfg_config_num; cfg_num++) { | 
| Greg Kroah-Hartman | d57e26c | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 34 | cfg = &pci_mmcfg_config[cfg_num]; | 
| OGAWA Hirofumi | 429d512 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 35 | if (cfg->pci_segment == seg && | 
|  | 36 | (cfg->start_bus_number <= bus) && | 
| Greg Kroah-Hartman | d57e26c | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 37 | (cfg->end_bus_number >= bus)) | 
| Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 38 | return cfg->address; | 
| Greg Kroah-Hartman | d57e26c | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 39 | } | 
| Andi Kleen | 3103039 | 2006-01-27 02:03:50 +0100 | [diff] [blame] | 40 |  | 
| Andi Kleen | 3103039 | 2006-01-27 02:03:50 +0100 | [diff] [blame] | 41 | /* Fall back to type 0 */ | 
|  | 42 | return 0; | 
| Greg Kroah-Hartman | d57e26c | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 43 | } | 
|  | 44 |  | 
| Andrew Morton | be5b7a8 | 2006-09-30 23:27:10 -0700 | [diff] [blame] | 45 | /* | 
|  | 46 | * This is always called under pci_config_lock | 
|  | 47 | */ | 
|  | 48 | 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] | 49 | { | 
| Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 50 | u32 dev_base = base | (bus << 20) | (devfn << 12); | 
| OGAWA Hirofumi | 8d1c481 | 2006-12-23 10:00:43 +0900 | [diff] [blame] | 51 | int cpu = smp_processor_id(); | 
|  | 52 | if (dev_base != mmcfg_last_accessed_device || | 
|  | 53 | cpu != mmcfg_last_accessed_cpu) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | mmcfg_last_accessed_device = dev_base; | 
| OGAWA Hirofumi | 8d1c481 | 2006-12-23 10:00:43 +0900 | [diff] [blame] | 55 | mmcfg_last_accessed_cpu = cpu; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | set_fixmap_nocache(FIX_PCIE_MCFG, dev_base); | 
|  | 57 | } | 
|  | 58 | } | 
|  | 59 |  | 
|  | 60 | static int pci_mmcfg_read(unsigned int seg, unsigned int bus, | 
|  | 61 | unsigned int devfn, int reg, int len, u32 *value) | 
|  | 62 | { | 
|  | 63 | unsigned long flags; | 
| Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 64 | u32 base; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 |  | 
| Andi Kleen | ecc16ba | 2006-04-11 12:54:48 +0200 | [diff] [blame] | 66 | if ((bus > 255) || (devfn > 255) || (reg > 4095)) { | 
| Ivan Kokshaysky | a0ca990 | 2008-01-14 17:31:09 -0500 | [diff] [blame] | 67 | err:		*value = -1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | return -EINVAL; | 
| Andi Kleen | 49c93e8 | 2006-04-07 19:50:15 +0200 | [diff] [blame] | 69 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
| Andi Kleen | d6ece54 | 2005-12-12 22:17:11 -0800 | [diff] [blame] | 71 | base = get_base_addr(seg, bus, devfn); | 
| Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 72 | if (!base) | 
| Ivan Kokshaysky | a0ca990 | 2008-01-14 17:31:09 -0500 | [diff] [blame] | 73 | goto err; | 
| Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 74 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | spin_lock_irqsave(&pci_config_lock, flags); | 
|  | 76 |  | 
| Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 77 | pci_exp_set_dev_base(base, bus, devfn); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 |  | 
|  | 79 | switch (len) { | 
|  | 80 | case 1: | 
| dean gaudet | 3320ad9 | 2007-08-10 22:30:59 +0200 | [diff] [blame] | 81 | *value = mmio_config_readb(mmcfg_virt_addr + reg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | break; | 
|  | 83 | case 2: | 
| dean gaudet | 3320ad9 | 2007-08-10 22:30:59 +0200 | [diff] [blame] | 84 | *value = mmio_config_readw(mmcfg_virt_addr + reg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | break; | 
|  | 86 | case 4: | 
| dean gaudet | 3320ad9 | 2007-08-10 22:30:59 +0200 | [diff] [blame] | 87 | *value = mmio_config_readl(mmcfg_virt_addr + reg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | break; | 
|  | 89 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | spin_unlock_irqrestore(&pci_config_lock, flags); | 
|  | 91 |  | 
|  | 92 | return 0; | 
|  | 93 | } | 
|  | 94 |  | 
|  | 95 | static int pci_mmcfg_write(unsigned int seg, unsigned int bus, | 
|  | 96 | unsigned int devfn, int reg, int len, u32 value) | 
|  | 97 | { | 
|  | 98 | unsigned long flags; | 
| Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 99 | u32 base; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 |  | 
| Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 101 | if ((bus > 255) || (devfn > 255) || (reg > 4095)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | return -EINVAL; | 
|  | 103 |  | 
| Andi Kleen | d6ece54 | 2005-12-12 22:17:11 -0800 | [diff] [blame] | 104 | base = get_base_addr(seg, bus, devfn); | 
| Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 105 | if (!base) | 
| Ivan Kokshaysky | a0ca990 | 2008-01-14 17:31:09 -0500 | [diff] [blame] | 106 | return -EINVAL; | 
| Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 107 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | spin_lock_irqsave(&pci_config_lock, flags); | 
|  | 109 |  | 
| Andi Kleen | 928cf8c | 2005-12-12 22:17:10 -0800 | [diff] [blame] | 110 | pci_exp_set_dev_base(base, bus, devfn); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 |  | 
|  | 112 | switch (len) { | 
|  | 113 | case 1: | 
| Linus Torvalds | c1502e2 | 2007-08-12 02:23:16 -0700 | [diff] [blame] | 114 | mmio_config_writeb(mmcfg_virt_addr + reg, value); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | break; | 
|  | 116 | case 2: | 
| Linus Torvalds | c1502e2 | 2007-08-12 02:23:16 -0700 | [diff] [blame] | 117 | mmio_config_writew(mmcfg_virt_addr + reg, value); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | break; | 
|  | 119 | case 4: | 
| Linus Torvalds | c1502e2 | 2007-08-12 02:23:16 -0700 | [diff] [blame] | 120 | mmio_config_writel(mmcfg_virt_addr + reg, value); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | break; | 
|  | 122 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | spin_unlock_irqrestore(&pci_config_lock, flags); | 
|  | 124 |  | 
|  | 125 | return 0; | 
|  | 126 | } | 
|  | 127 |  | 
|  | 128 | static struct pci_raw_ops pci_mmcfg = { | 
|  | 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 | } |