c04523e096499abbdf7550fee444e4c00f236a8f
[firefly-linux-kernel-4.4.55.git] / arch / x86 / pci / mmconfig_32.c
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>
14 #include <asm/e820.h>
15 #include <asm/pci_x86.h>
16 #include <acpi/acpi.h>
17
18 /* Assume systems with more busses have correct MCFG */
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;
23 static int mmcfg_last_accessed_cpu;
24
25 /*
26  * Functions for accessing PCI configuration space with MMCONFIG accesses
27  */
28 static u32 get_base_addr(unsigned int seg, int bus, unsigned devfn)
29 {
30         struct pci_mmcfg_region *cfg;
31
32         list_for_each_entry(cfg, &pci_mmcfg_list, list)
33                 if (cfg->segment == seg &&
34                     (cfg->start_bus <= bus) &&
35                     (cfg->end_bus >= bus))
36                         return cfg->address;
37
38         /* Fall back to type 0 */
39         return 0;
40 }
41
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)
46 {
47         u32 dev_base = base | PCI_MMCFG_BUS_OFFSET(bus) | (devfn << 12);
48         int cpu = smp_processor_id();
49         if (dev_base != mmcfg_last_accessed_device ||
50             cpu != mmcfg_last_accessed_cpu) {
51                 mmcfg_last_accessed_device = dev_base;
52                 mmcfg_last_accessed_cpu = cpu;
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;
61         u32 base;
62
63         if ((bus > 255) || (devfn > 255) || (reg > 4095)) {
64 err:            *value = -1;
65                 return -EINVAL;
66         }
67
68         base = get_base_addr(seg, bus, devfn);
69         if (!base)
70                 goto err;
71
72         spin_lock_irqsave(&pci_config_lock, flags);
73
74         pci_exp_set_dev_base(base, bus, devfn);
75
76         switch (len) {
77         case 1:
78                 *value = mmio_config_readb(mmcfg_virt_addr + reg);
79                 break;
80         case 2:
81                 *value = mmio_config_readw(mmcfg_virt_addr + reg);
82                 break;
83         case 4:
84                 *value = mmio_config_readl(mmcfg_virt_addr + reg);
85                 break;
86         }
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;
96         u32 base;
97
98         if ((bus > 255) || (devfn > 255) || (reg > 4095))
99                 return -EINVAL;
100
101         base = get_base_addr(seg, bus, devfn);
102         if (!base)
103                 return -EINVAL;
104
105         spin_lock_irqsave(&pci_config_lock, flags);
106
107         pci_exp_set_dev_base(base, bus, devfn);
108
109         switch (len) {
110         case 1:
111                 mmio_config_writeb(mmcfg_virt_addr + reg, value);
112                 break;
113         case 2:
114                 mmio_config_writew(mmcfg_virt_addr + reg, value);
115                 break;
116         case 4:
117                 mmio_config_writel(mmcfg_virt_addr + reg, value);
118                 break;
119         }
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
130 int __init pci_mmcfg_arch_init(void)
131 {
132         printk(KERN_INFO "PCI: Using MMCONFIG for extended config space\n");
133         raw_pci_ext_ops = &pci_mmcfg;
134         return 1;
135 }
136
137 void __init pci_mmcfg_arch_free(void)
138 {
139 }