1 // SPDX-License-Identifier: GPL-2.0
3 * Primary to Sideband (P2SB) bridge access support
5 * Copyright (c) 2017, 2021-2022 Intel Corporation.
11 #include <linux/bits.h>
12 #include <linux/export.h>
13 #include <linux/pci.h>
14 #include <linux/platform_data/x86/p2sb.h>
16 #include <asm/cpu_device_id.h>
17 #include <asm/intel-family.h>
20 #define P2SBC_HIDE BIT(8)
22 #define P2SB_DEVFN_DEFAULT PCI_DEVFN(31, 1)
23 #define P2SB_DEVFN_GOLDMONT PCI_DEVFN(13, 0)
24 #define SPI_DEVFN_GOLDMONT PCI_DEVFN(13, 2)
26 static const struct x86_cpu_id p2sb_cpu_ids[] = {
27 X86_MATCH_INTEL_FAM6_MODEL(ATOM_GOLDMONT, P2SB_DEVFN_GOLDMONT),
32 * Cache BAR0 of P2SB device functions 0 to 7.
33 * TODO: The constant 8 is the number of functions that PCI specification
34 * defines. Same definitions exist tree-wide. Unify this definition and
35 * the other definitions then move to include/uapi/linux/pci.h.
37 #define NR_P2SB_RES_CACHE 8
39 struct p2sb_res_cache {
44 static struct p2sb_res_cache p2sb_resources[NR_P2SB_RES_CACHE];
46 static void p2sb_get_devfn(unsigned int *devfn)
48 unsigned int fn = P2SB_DEVFN_DEFAULT;
49 const struct x86_cpu_id *id;
51 id = x86_match_cpu(p2sb_cpu_ids);
53 fn = (unsigned int)id->driver_data;
58 static bool p2sb_valid_resource(const struct resource *res)
60 return res->flags & ~IORESOURCE_UNSET;
63 /* Copy resource from the first BAR of the device in question */
64 static void p2sb_read_bar0(struct pci_dev *pdev, struct resource *mem)
66 struct resource *bar0 = pci_resource_n(pdev, 0);
68 /* Make sure we have no dangling pointers in the output */
69 memset(mem, 0, sizeof(*mem));
72 * We copy only selected fields from the original resource.
73 * Because a PCI device will be removed soon, we may not use
74 * any allocated data, hence we may not copy any pointers.
76 mem->start = bar0->start;
78 mem->flags = bar0->flags;
79 mem->desc = bar0->desc;
82 static void p2sb_scan_and_cache_devfn(struct pci_bus *bus, unsigned int devfn)
84 struct p2sb_res_cache *cache = &p2sb_resources[PCI_FUNC(devfn)];
87 pdev = pci_scan_single_device(bus, devfn);
91 p2sb_read_bar0(pdev, &cache->res);
92 cache->bus_dev_id = bus->dev.id;
94 pci_stop_and_remove_bus_device(pdev);
97 static int p2sb_scan_and_cache(struct pci_bus *bus, unsigned int devfn)
99 /* Scan the P2SB device and cache its BAR0 */
100 p2sb_scan_and_cache_devfn(bus, devfn);
102 /* On Goldmont p2sb_bar() also gets called for the SPI controller */
103 if (devfn == P2SB_DEVFN_GOLDMONT)
104 p2sb_scan_and_cache_devfn(bus, SPI_DEVFN_GOLDMONT);
106 if (!p2sb_valid_resource(&p2sb_resources[PCI_FUNC(devfn)].res))
112 static struct pci_bus *p2sb_get_bus(struct pci_bus *bus)
114 static struct pci_bus *p2sb_bus;
116 bus = bus ?: p2sb_bus;
120 /* Assume P2SB is on the bus 0 in domain 0 */
121 p2sb_bus = pci_find_bus(0, 0);
125 static int p2sb_cache_resources(void)
127 unsigned int devfn_p2sb;
128 u32 value = P2SBC_HIDE;
133 /* Get devfn for P2SB device itself */
134 p2sb_get_devfn(&devfn_p2sb);
136 bus = p2sb_get_bus(NULL);
141 * When a device with same devfn exists and its device class is not
142 * PCI_CLASS_MEMORY_OTHER for P2SB, do not touch it.
144 pci_bus_read_config_word(bus, devfn_p2sb, PCI_CLASS_DEVICE, &class);
145 if (!PCI_POSSIBLE_ERROR(class) && class != PCI_CLASS_MEMORY_OTHER)
149 * Prevent concurrent PCI bus scan from seeing the P2SB device and
150 * removing via sysfs while it is temporarily exposed.
152 pci_lock_rescan_remove();
155 * The BIOS prevents the P2SB device from being enumerated by the PCI
156 * subsystem, so we need to unhide and hide it back to lookup the BAR.
157 * Unhide the P2SB device here, if needed.
159 pci_bus_read_config_dword(bus, devfn_p2sb, P2SBC, &value);
160 if (value & P2SBC_HIDE)
161 pci_bus_write_config_dword(bus, devfn_p2sb, P2SBC, 0);
163 ret = p2sb_scan_and_cache(bus, devfn_p2sb);
165 /* Hide the P2SB device, if it was hidden */
166 if (value & P2SBC_HIDE)
167 pci_bus_write_config_dword(bus, devfn_p2sb, P2SBC, P2SBC_HIDE);
169 pci_unlock_rescan_remove();
175 * p2sb_bar - Get Primary to Sideband (P2SB) bridge device BAR
176 * @bus: PCI bus to communicate with
177 * @devfn: PCI slot and function to communicate with
178 * @mem: memory resource to be filled in
180 * If @bus is NULL, the bus 0 in domain 0 will be used.
181 * If @devfn is 0, it will be replaced by devfn of the P2SB device.
183 * Caller must provide a valid pointer to @mem.
186 * 0 on success or appropriate errno value on error.
188 int p2sb_bar(struct pci_bus *bus, unsigned int devfn, struct resource *mem)
190 struct p2sb_res_cache *cache;
192 bus = p2sb_get_bus(bus);
197 p2sb_get_devfn(&devfn);
199 cache = &p2sb_resources[PCI_FUNC(devfn)];
200 if (cache->bus_dev_id != bus->dev.id)
203 if (!p2sb_valid_resource(&cache->res))
206 memcpy(mem, &cache->res, sizeof(*mem));
209 EXPORT_SYMBOL_GPL(p2sb_bar);
211 static int __init p2sb_fs_init(void)
213 return p2sb_cache_resources();
217 * pci_rescan_remove_lock() can not be locked in sysfs PCI bus rescan path
218 * because of deadlock. To avoid the deadlock, access P2SB devices with the lock
219 * at an early step in kernel initialization and cache required resources.
221 * We want to run as early as possible. If the P2SB was assigned a bad BAR,
222 * we'll need to wait on pcibios_assign_resources() to fix it. So, our list of
223 * initcall dependencies looks something like this:
226 * subsys_initcall (pci_subsys_init)
227 * fs_initcall (pcibios_assign_resources)
229 fs_initcall_sync(p2sb_fs_init);