1 // SPDX-License-Identifier: GPL-2.0
2 /* pci_common.c: PCI controller common support.
7 #include <linux/string.h>
8 #include <linux/slab.h>
10 #include <linux/device.h>
12 #include <linux/platform_device.h>
15 #include <asm/oplib.h>
18 #include "pci_sun4v.h"
20 static int config_out_of_range(struct pci_pbm_info *pbm,
25 if (bus < pbm->pci_first_busno ||
26 bus > pbm->pci_last_busno)
31 static void *sun4u_config_mkaddr(struct pci_pbm_info *pbm,
36 unsigned long rbits = pbm->config_space_reg_bits;
38 if (config_out_of_range(pbm, bus, devfn, reg))
41 reg = (reg & ((1 << rbits) - 1));
45 return (void *) (pbm->config_space | bus | devfn | reg);
48 /* At least on Sabre, it is necessary to access all PCI host controller
49 * registers at their natural size, otherwise zeros are returned.
50 * Strange but true, and I see no language in the UltraSPARC-IIi
51 * programmer's manual that mentions this even indirectly.
53 static int sun4u_read_pci_cfg_host(struct pci_pbm_info *pbm,
54 unsigned char bus, unsigned int devfn,
55 int where, int size, u32 *value)
61 addr = sun4u_config_mkaddr(pbm, bus, devfn, where);
63 return PCIBIOS_SUCCESSFUL;
68 unsigned long align = (unsigned long) addr;
71 pci_config_read16((u16 *)align, &tmp16);
75 *value = tmp16 & 0xff;
77 pci_config_read8((u8 *)addr, &tmp8);
84 pci_config_read16((u16 *)addr, &tmp16);
87 pci_config_read8((u8 *)addr, &tmp8);
89 pci_config_read8(((u8 *)addr) + 1, &tmp8);
90 *value |= ((u32) tmp8) << 8;
96 sun4u_read_pci_cfg_host(pbm, bus, devfn,
101 sun4u_read_pci_cfg_host(pbm, bus, devfn,
102 where + 2, 2, &tmp32);
103 *value |= tmp32 << 16;
106 return PCIBIOS_SUCCESSFUL;
109 static int sun4u_read_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn,
110 int where, int size, u32 *value)
112 struct pci_pbm_info *pbm = bus_dev->sysdata;
113 unsigned char bus = bus_dev->number;
130 if (!bus_dev->number && !PCI_SLOT(devfn))
131 return sun4u_read_pci_cfg_host(pbm, bus, devfn, where,
134 addr = sun4u_config_mkaddr(pbm, bus, devfn, where);
136 return PCIBIOS_SUCCESSFUL;
140 pci_config_read8((u8 *)addr, &tmp8);
146 printk("pci_read_config_word: misaligned reg [%x]\n",
148 return PCIBIOS_SUCCESSFUL;
150 pci_config_read16((u16 *)addr, &tmp16);
151 *value = (u32) tmp16;
156 printk("pci_read_config_dword: misaligned reg [%x]\n",
158 return PCIBIOS_SUCCESSFUL;
160 pci_config_read32(addr, value);
163 return PCIBIOS_SUCCESSFUL;
166 static int sun4u_write_pci_cfg_host(struct pci_pbm_info *pbm,
167 unsigned char bus, unsigned int devfn,
168 int where, int size, u32 value)
172 addr = sun4u_config_mkaddr(pbm, bus, devfn, where);
174 return PCIBIOS_SUCCESSFUL;
179 unsigned long align = (unsigned long) addr;
183 pci_config_read16((u16 *)align, &tmp16);
191 pci_config_write16((u16 *)align, tmp16);
193 pci_config_write8((u8 *)addr, value);
197 pci_config_write16((u16 *)addr, value);
199 pci_config_write8((u8 *)addr, value & 0xff);
200 pci_config_write8(((u8 *)addr) + 1, value >> 8);
204 sun4u_write_pci_cfg_host(pbm, bus, devfn,
205 where, 2, value & 0xffff);
206 sun4u_write_pci_cfg_host(pbm, bus, devfn,
207 where + 2, 2, value >> 16);
210 return PCIBIOS_SUCCESSFUL;
213 static int sun4u_write_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn,
214 int where, int size, u32 value)
216 struct pci_pbm_info *pbm = bus_dev->sysdata;
217 unsigned char bus = bus_dev->number;
220 if (!bus_dev->number && !PCI_SLOT(devfn))
221 return sun4u_write_pci_cfg_host(pbm, bus, devfn, where,
224 addr = sun4u_config_mkaddr(pbm, bus, devfn, where);
226 return PCIBIOS_SUCCESSFUL;
230 pci_config_write8((u8 *)addr, value);
235 printk("pci_write_config_word: misaligned reg [%x]\n",
237 return PCIBIOS_SUCCESSFUL;
239 pci_config_write16((u16 *)addr, value);
244 printk("pci_write_config_dword: misaligned reg [%x]\n",
246 return PCIBIOS_SUCCESSFUL;
248 pci_config_write32(addr, value);
250 return PCIBIOS_SUCCESSFUL;
253 struct pci_ops sun4u_pci_ops = {
254 .read = sun4u_read_pci_cfg,
255 .write = sun4u_write_pci_cfg,
258 static int sun4v_read_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn,
259 int where, int size, u32 *value)
261 struct pci_pbm_info *pbm = bus_dev->sysdata;
262 u32 devhandle = pbm->devhandle;
263 unsigned int bus = bus_dev->number;
264 unsigned int device = PCI_SLOT(devfn);
265 unsigned int func = PCI_FUNC(devfn);
268 if (config_out_of_range(pbm, bus, devfn, where)) {
271 ret = pci_sun4v_config_get(devhandle,
272 HV_PCI_DEVICE_BUILD(bus, device, func),
280 *value = ret & 0xffff;
283 *value = ret & 0xffffffff;
288 return PCIBIOS_SUCCESSFUL;
291 static int sun4v_write_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn,
292 int where, int size, u32 value)
294 struct pci_pbm_info *pbm = bus_dev->sysdata;
295 u32 devhandle = pbm->devhandle;
296 unsigned int bus = bus_dev->number;
297 unsigned int device = PCI_SLOT(devfn);
298 unsigned int func = PCI_FUNC(devfn);
300 if (config_out_of_range(pbm, bus, devfn, where)) {
303 /* We don't check for hypervisor errors here, but perhaps
304 * we should and influence our return value depending upon
305 * what kind of error is thrown.
307 pci_sun4v_config_put(devhandle,
308 HV_PCI_DEVICE_BUILD(bus, device, func),
311 return PCIBIOS_SUCCESSFUL;
314 struct pci_ops sun4v_pci_ops = {
315 .read = sun4v_read_pci_cfg,
316 .write = sun4v_write_pci_cfg,
319 void pci_get_pbm_props(struct pci_pbm_info *pbm)
321 const u32 *val = of_get_property(pbm->op->dev.of_node, "bus-range", NULL);
323 pbm->pci_first_busno = val[0];
324 pbm->pci_last_busno = val[1];
326 val = of_get_property(pbm->op->dev.of_node, "ino-bitmap", NULL);
328 pbm->ino_bitmap = (((u64)val[1] << 32UL) |
329 ((u64)val[0] << 0UL));
333 static void pci_register_iommu_region(struct pci_pbm_info *pbm)
335 const u32 *vdma = of_get_property(pbm->op->dev.of_node, "virtual-dma",
339 struct resource *rp = kzalloc(sizeof(*rp), GFP_KERNEL);
342 pr_info("%s: Cannot allocate IOMMU resource.\n",
347 rp->start = pbm->mem_space.start + (unsigned long) vdma[0];
348 rp->end = rp->start + (unsigned long) vdma[1] - 1UL;
349 rp->flags = IORESOURCE_BUSY;
350 if (request_resource(&pbm->mem_space, rp)) {
351 pr_info("%s: Unable to request IOMMU resource.\n",
358 void pci_determine_mem_io_space(struct pci_pbm_info *pbm)
360 const struct linux_prom_pci_ranges *pbm_ranges;
361 int i, saw_mem, saw_io;
364 /* Corresponding generic code in of_pci_get_host_bridge_resources() */
366 saw_mem = saw_io = 0;
367 pbm_ranges = of_get_property(pbm->op->dev.of_node, "ranges", &i);
369 prom_printf("PCI: Fatal error, missing PBM ranges property "
375 num_pbm_ranges = i / sizeof(*pbm_ranges);
376 memset(&pbm->mem64_space, 0, sizeof(struct resource));
378 for (i = 0; i < num_pbm_ranges; i++) {
379 const struct linux_prom_pci_ranges *pr = &pbm_ranges[i];
380 unsigned long a, size, region_a;
381 u32 parent_phys_hi, parent_phys_lo;
382 u32 child_phys_mid, child_phys_lo;
383 u32 size_hi, size_lo;
386 parent_phys_hi = pr->parent_phys_hi;
387 parent_phys_lo = pr->parent_phys_lo;
388 child_phys_mid = pr->child_phys_mid;
389 child_phys_lo = pr->child_phys_lo;
390 if (tlb_type == hypervisor)
391 parent_phys_hi &= 0x0fffffff;
393 size_hi = pr->size_hi;
394 size_lo = pr->size_lo;
396 type = (pr->child_phys_hi >> 24) & 0x3;
397 a = (((unsigned long)parent_phys_hi << 32UL) |
398 ((unsigned long)parent_phys_lo << 0UL));
399 region_a = (((unsigned long)child_phys_mid << 32UL) |
400 ((unsigned long)child_phys_lo << 0UL));
401 size = (((unsigned long)size_hi << 32UL) |
402 ((unsigned long)size_lo << 0UL));
406 /* PCI config space, 16MB */
407 pbm->config_space = a;
411 /* 16-bit IO space, 16MB */
412 pbm->io_space.start = a;
413 pbm->io_space.end = a + size - 1UL;
414 pbm->io_space.flags = IORESOURCE_IO;
415 pbm->io_offset = a - region_a;
420 /* 32-bit MEM space, 2GB */
421 pbm->mem_space.start = a;
422 pbm->mem_space.end = a + size - 1UL;
423 pbm->mem_space.flags = IORESOURCE_MEM;
424 pbm->mem_offset = a - region_a;
429 /* 64-bit MEM handling */
430 pbm->mem64_space.start = a;
431 pbm->mem64_space.end = a + size - 1UL;
432 pbm->mem64_space.flags = IORESOURCE_MEM;
433 pbm->mem64_offset = a - region_a;
442 if (!saw_io || !saw_mem) {
443 prom_printf("%s: Fatal error, missing %s PBM range.\n",
445 (!saw_io ? "IO" : "MEM"));
449 if (pbm->io_space.flags)
450 printk("%s: PCI IO %pR offset %llx\n",
451 pbm->name, &pbm->io_space, pbm->io_offset);
452 if (pbm->mem_space.flags)
453 printk("%s: PCI MEM %pR offset %llx\n",
454 pbm->name, &pbm->mem_space, pbm->mem_offset);
455 if (pbm->mem64_space.flags && pbm->mem_space.flags) {
456 if (pbm->mem64_space.start <= pbm->mem_space.end)
457 pbm->mem64_space.start = pbm->mem_space.end + 1;
458 if (pbm->mem64_space.start > pbm->mem64_space.end)
459 pbm->mem64_space.flags = 0;
462 if (pbm->mem64_space.flags)
463 printk("%s: PCI MEM64 %pR offset %llx\n",
464 pbm->name, &pbm->mem64_space, pbm->mem64_offset);
466 pbm->io_space.name = pbm->mem_space.name = pbm->name;
467 pbm->mem64_space.name = pbm->name;
469 request_resource(&ioport_resource, &pbm->io_space);
470 request_resource(&iomem_resource, &pbm->mem_space);
471 if (pbm->mem64_space.flags)
472 request_resource(&iomem_resource, &pbm->mem64_space);
474 pci_register_iommu_region(pbm);
477 /* Generic helper routines for PCI error reporting. */
478 void pci_scan_for_target_abort(struct pci_pbm_info *pbm,
479 struct pci_bus *pbus)
481 struct pci_dev *pdev;
484 list_for_each_entry(pdev, &pbus->devices, bus_list) {
485 u16 status, error_bits;
487 pci_read_config_word(pdev, PCI_STATUS, &status);
489 (status & (PCI_STATUS_SIG_TARGET_ABORT |
490 PCI_STATUS_REC_TARGET_ABORT));
492 pci_write_config_word(pdev, PCI_STATUS, error_bits);
493 pci_info(pdev, "%s: Device saw Target Abort [%016x]\n",
498 list_for_each_entry(bus, &pbus->children, node)
499 pci_scan_for_target_abort(pbm, bus);
502 void pci_scan_for_master_abort(struct pci_pbm_info *pbm,
503 struct pci_bus *pbus)
505 struct pci_dev *pdev;
508 list_for_each_entry(pdev, &pbus->devices, bus_list) {
509 u16 status, error_bits;
511 pci_read_config_word(pdev, PCI_STATUS, &status);
513 (status & (PCI_STATUS_REC_MASTER_ABORT));
515 pci_write_config_word(pdev, PCI_STATUS, error_bits);
516 pci_info(pdev, "%s: Device received Master Abort "
517 "[%016x]\n", pbm->name, status);
521 list_for_each_entry(bus, &pbus->children, node)
522 pci_scan_for_master_abort(pbm, bus);
525 void pci_scan_for_parity_error(struct pci_pbm_info *pbm,
526 struct pci_bus *pbus)
528 struct pci_dev *pdev;
531 list_for_each_entry(pdev, &pbus->devices, bus_list) {
532 u16 status, error_bits;
534 pci_read_config_word(pdev, PCI_STATUS, &status);
536 (status & (PCI_STATUS_PARITY |
537 PCI_STATUS_DETECTED_PARITY));
539 pci_write_config_word(pdev, PCI_STATUS, error_bits);
540 pci_info(pdev, "%s: Device saw Parity Error [%016x]\n",
545 list_for_each_entry(bus, &pbus->children, node)
546 pci_scan_for_parity_error(pbm, bus);