1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
7 #include <linux/kernel.h>
8 #include <linux/export.h>
10 #include <linux/smp.h>
11 #include <linux/dma-direct.h>
12 #include <linux/platform_device.h>
13 #include <linux/platform_data/xtalk-bridge.h>
14 #include <linux/nvmem-consumer.h>
15 #include <linux/crc16.h>
17 #include <asm/pci/bridge.h>
18 #include <asm/paccess.h>
19 #include <asm/sn/irq_alloc.h>
20 #include <asm/sn/ioc3.h>
23 #define CRC16_VALID 0xb001
26 * Common phys<->dma mapping for platforms using pci xtalk bridge
28 dma_addr_t __phys_to_dma(struct device *dev, phys_addr_t paddr)
30 struct pci_dev *pdev = to_pci_dev(dev);
31 struct bridge_controller *bc = BRIDGE_CONTROLLER(pdev->bus);
33 return bc->baddr + paddr;
36 phys_addr_t __dma_to_phys(struct device *dev, dma_addr_t dma_addr)
38 return dma_addr & ~(0xffUL << 56);
42 * Most of the IOC3 PCI config register aren't present
43 * we emulate what is needed for a normal PCI enumeration
45 static int ioc3_cfg_rd(void *addr, int where, int size, u32 *value, u32 sid)
52 if (get_dbe(cf, (u32 *)addr))
53 return PCIBIOS_DEVICE_NOT_FOUND;
59 /* emulate sane interrupt pin value */
66 shift = (where & 3) << 3;
67 mask = 0xffffffffU >> ((4 - size) << 3);
68 *value = (cf >> shift) & mask;
70 return PCIBIOS_SUCCESSFUL;
73 static int ioc3_cfg_wr(void *addr, int where, int size, u32 value)
75 u32 cf, shift, mask, smask;
77 if ((where >= 0x14 && where < 0x40) || (where >= 0x48))
78 return PCIBIOS_SUCCESSFUL;
80 if (get_dbe(cf, (u32 *)addr))
81 return PCIBIOS_DEVICE_NOT_FOUND;
83 shift = ((where & 3) << 3);
84 mask = (0xffffffffU >> ((4 - size) << 3));
85 smask = mask << shift;
87 cf = (cf & ~smask) | ((value & mask) << shift);
88 if (put_dbe(cf, (u32 *)addr))
89 return PCIBIOS_DEVICE_NOT_FOUND;
91 return PCIBIOS_SUCCESSFUL;
94 static void bridge_disable_swapping(struct pci_dev *dev)
96 struct bridge_controller *bc = BRIDGE_CONTROLLER(dev->bus);
97 int slot = PCI_SLOT(dev->devfn);
99 /* Turn off byte swapping */
100 bridge_clr(bc, b_device[slot].reg, BRIDGE_DEV_SWAP_DIR);
101 bridge_read(bc, b_widget.w_tflush); /* Flush */
104 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SGI, PCI_DEVICE_ID_SGI_IOC3,
105 bridge_disable_swapping);
109 * The Bridge ASIC supports both type 0 and type 1 access. Type 1 is
110 * not really documented, so right now I can't write code which uses it.
111 * Therefore we use type 0 accesses for now even though they won't work
112 * correctly for PCI-to-PCI bridges.
114 * The function is complicated by the ultimate brokenness of the IOC3 chip
115 * which is used in SGI systems. The IOC3 can only handle 32-bit PCI
116 * accesses and does only decode parts of it's address space.
118 static int pci_conf0_read_config(struct pci_bus *bus, unsigned int devfn,
119 int where, int size, u32 *value)
121 struct bridge_controller *bc = BRIDGE_CONTROLLER(bus);
122 struct bridge_regs *bridge = bc->base;
123 int slot = PCI_SLOT(devfn);
124 int fn = PCI_FUNC(devfn);
129 addr = &bridge->b_type0_cfg_dev[slot].f[fn].c[PCI_VENDOR_ID];
130 if (get_dbe(cf, (u32 *)addr))
131 return PCIBIOS_DEVICE_NOT_FOUND;
134 * IOC3 is broken beyond belief ... Don't even give the
135 * generic PCI code a chance to look at it for real ...
137 if (cf == (PCI_VENDOR_ID_SGI | (PCI_DEVICE_ID_SGI_IOC3 << 16))) {
138 addr = &bridge->b_type0_cfg_dev[slot].f[fn].l[where >> 2];
139 return ioc3_cfg_rd(addr, where, size, value,
143 addr = &bridge->b_type0_cfg_dev[slot].f[fn].c[where ^ (4 - size)];
146 res = get_dbe(*value, (u8 *)addr);
148 res = get_dbe(*value, (u16 *)addr);
150 res = get_dbe(*value, (u32 *)addr);
152 return res ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
155 static int pci_conf1_read_config(struct pci_bus *bus, unsigned int devfn,
156 int where, int size, u32 *value)
158 struct bridge_controller *bc = BRIDGE_CONTROLLER(bus);
159 struct bridge_regs *bridge = bc->base;
160 int busno = bus->number;
161 int slot = PCI_SLOT(devfn);
162 int fn = PCI_FUNC(devfn);
167 bridge_write(bc, b_pci_cfg, (busno << 16) | (slot << 11));
168 addr = &bridge->b_type1_cfg.c[(fn << 8) | PCI_VENDOR_ID];
169 if (get_dbe(cf, (u32 *)addr))
170 return PCIBIOS_DEVICE_NOT_FOUND;
173 * IOC3 is broken beyond belief ... Don't even give the
174 * generic PCI code a chance to look at it for real ...
176 if (cf == (PCI_VENDOR_ID_SGI | (PCI_DEVICE_ID_SGI_IOC3 << 16))) {
177 addr = &bridge->b_type1_cfg.c[(fn << 8) | (where & ~3)];
178 return ioc3_cfg_rd(addr, where, size, value,
182 addr = &bridge->b_type1_cfg.c[(fn << 8) | (where ^ (4 - size))];
185 res = get_dbe(*value, (u8 *)addr);
187 res = get_dbe(*value, (u16 *)addr);
189 res = get_dbe(*value, (u32 *)addr);
191 return res ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
194 static int pci_read_config(struct pci_bus *bus, unsigned int devfn,
195 int where, int size, u32 *value)
197 if (!pci_is_root_bus(bus))
198 return pci_conf1_read_config(bus, devfn, where, size, value);
200 return pci_conf0_read_config(bus, devfn, where, size, value);
203 static int pci_conf0_write_config(struct pci_bus *bus, unsigned int devfn,
204 int where, int size, u32 value)
206 struct bridge_controller *bc = BRIDGE_CONTROLLER(bus);
207 struct bridge_regs *bridge = bc->base;
208 int slot = PCI_SLOT(devfn);
209 int fn = PCI_FUNC(devfn);
214 addr = &bridge->b_type0_cfg_dev[slot].f[fn].c[PCI_VENDOR_ID];
215 if (get_dbe(cf, (u32 *)addr))
216 return PCIBIOS_DEVICE_NOT_FOUND;
219 * IOC3 is broken beyond belief ... Don't even give the
220 * generic PCI code a chance to look at it for real ...
222 if (cf == (PCI_VENDOR_ID_SGI | (PCI_DEVICE_ID_SGI_IOC3 << 16))) {
223 addr = &bridge->b_type0_cfg_dev[slot].f[fn].l[where >> 2];
224 return ioc3_cfg_wr(addr, where, size, value);
227 addr = &bridge->b_type0_cfg_dev[slot].f[fn].c[where ^ (4 - size)];
230 res = put_dbe(value, (u8 *)addr);
232 res = put_dbe(value, (u16 *)addr);
234 res = put_dbe(value, (u32 *)addr);
237 return PCIBIOS_DEVICE_NOT_FOUND;
239 return PCIBIOS_SUCCESSFUL;
242 static int pci_conf1_write_config(struct pci_bus *bus, unsigned int devfn,
243 int where, int size, u32 value)
245 struct bridge_controller *bc = BRIDGE_CONTROLLER(bus);
246 struct bridge_regs *bridge = bc->base;
247 int slot = PCI_SLOT(devfn);
248 int fn = PCI_FUNC(devfn);
249 int busno = bus->number;
254 bridge_write(bc, b_pci_cfg, (busno << 16) | (slot << 11));
255 addr = &bridge->b_type1_cfg.c[(fn << 8) | PCI_VENDOR_ID];
256 if (get_dbe(cf, (u32 *)addr))
257 return PCIBIOS_DEVICE_NOT_FOUND;
260 * IOC3 is broken beyond belief ... Don't even give the
261 * generic PCI code a chance to look at it for real ...
263 if (cf == (PCI_VENDOR_ID_SGI | (PCI_DEVICE_ID_SGI_IOC3 << 16))) {
264 addr = &bridge->b_type0_cfg_dev[slot].f[fn].l[where >> 2];
265 return ioc3_cfg_wr(addr, where, size, value);
268 addr = &bridge->b_type1_cfg.c[(fn << 8) | (where ^ (4 - size))];
271 res = put_dbe(value, (u8 *)addr);
273 res = put_dbe(value, (u16 *)addr);
275 res = put_dbe(value, (u32 *)addr);
278 return PCIBIOS_DEVICE_NOT_FOUND;
280 return PCIBIOS_SUCCESSFUL;
283 static int pci_write_config(struct pci_bus *bus, unsigned int devfn,
284 int where, int size, u32 value)
286 if (!pci_is_root_bus(bus))
287 return pci_conf1_write_config(bus, devfn, where, size, value);
289 return pci_conf0_write_config(bus, devfn, where, size, value);
292 static struct pci_ops bridge_pci_ops = {
293 .read = pci_read_config,
294 .write = pci_write_config,
297 struct bridge_irq_chip_data {
298 struct bridge_controller *bc;
302 static int bridge_set_affinity(struct irq_data *d, const struct cpumask *mask,
306 struct bridge_irq_chip_data *data = d->chip_data;
307 int bit = d->parent_data->hwirq;
311 ret = irq_chip_set_affinity_parent(d, mask, force);
313 cpu = cpumask_first_and(mask, cpu_online_mask);
314 data->nasid = cpu_to_node(cpu);
315 bridge_write(data->bc, b_int_addr[pin].addr,
316 (((data->bc->intr_addr >> 30) & 0x30000) |
317 bit | (data->nasid << 8)));
318 bridge_read(data->bc, b_wid_tflush);
322 return irq_chip_set_affinity_parent(d, mask, force);
326 struct irq_chip bridge_irq_chip = {
328 .irq_mask = irq_chip_mask_parent,
329 .irq_unmask = irq_chip_unmask_parent,
330 .irq_set_affinity = bridge_set_affinity
333 static int bridge_domain_alloc(struct irq_domain *domain, unsigned int virq,
334 unsigned int nr_irqs, void *arg)
336 struct bridge_irq_chip_data *data;
337 struct irq_alloc_info *info = arg;
340 if (nr_irqs > 1 || !info)
343 data = kzalloc(sizeof(*data), GFP_KERNEL);
347 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
349 data->bc = info->ctrl;
350 data->nasid = info->nasid;
351 irq_domain_set_info(domain, virq, info->pin, &bridge_irq_chip,
352 data, handle_level_irq, NULL, NULL);
360 static void bridge_domain_free(struct irq_domain *domain, unsigned int virq,
361 unsigned int nr_irqs)
363 struct irq_data *irqd = irq_domain_get_irq_data(domain, virq);
368 kfree(irqd->chip_data);
369 irq_domain_free_irqs_top(domain, virq, nr_irqs);
372 static int bridge_domain_activate(struct irq_domain *domain,
373 struct irq_data *irqd, bool reserve)
375 struct bridge_irq_chip_data *data = irqd->chip_data;
376 struct bridge_controller *bc = data->bc;
377 int bit = irqd->parent_data->hwirq;
378 int pin = irqd->hwirq;
381 bridge_write(bc, b_int_addr[pin].addr,
382 (((bc->intr_addr >> 30) & 0x30000) |
383 bit | (data->nasid << 8)));
384 bridge_set(bc, b_int_enable, (1 << pin));
385 bridge_set(bc, b_int_enable, 0x7ffffe00); /* more stuff in int_enable */
388 * Enable sending of an interrupt clear packt to the hub on a high to
389 * low transition of the interrupt pin.
391 * IRIX sets additional bits in the address which are documented as
392 * reserved in the bridge docs.
394 bridge_set(bc, b_int_mode, (1UL << pin));
397 * We assume the bridge to have a 1:1 mapping between devices
398 * (slots) and intr pins.
400 device = bridge_read(bc, b_int_device);
401 device &= ~(7 << (pin*3));
402 device |= (pin << (pin*3));
403 bridge_write(bc, b_int_device, device);
405 bridge_read(bc, b_wid_tflush);
409 static void bridge_domain_deactivate(struct irq_domain *domain,
410 struct irq_data *irqd)
412 struct bridge_irq_chip_data *data = irqd->chip_data;
414 bridge_clr(data->bc, b_int_enable, (1 << irqd->hwirq));
415 bridge_read(data->bc, b_wid_tflush);
418 static const struct irq_domain_ops bridge_domain_ops = {
419 .alloc = bridge_domain_alloc,
420 .free = bridge_domain_free,
421 .activate = bridge_domain_activate,
422 .deactivate = bridge_domain_deactivate
426 * All observed requests have pin == 1. We could have a global here, that
427 * gets incremented and returned every time - unfortunately, pci_map_irq
428 * may be called on the same device over and over, and need to return the
429 * same value. On O2000, pin can be 0 or 1, and PCI slots can be [0..7].
431 * A given PCI device, in general, should be able to intr any of the cpus
432 * on any one of the hubs connected to its xbow.
434 static int bridge_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
436 struct bridge_controller *bc = BRIDGE_CONTROLLER(dev->bus);
437 struct irq_alloc_info info;
440 irq = bc->pci_int[slot];
443 info.nasid = bc->nasid;
446 irq = irq_domain_alloc_irqs(bc->domain, 1, bc->nasid, &info);
450 bc->pci_int[slot] = irq;
455 #define IOC3_SID(sid) (PCI_VENDOR_ID_SGI | ((sid) << 16))
457 static void bridge_setup_ip27_baseio6g(struct bridge_controller *bc)
459 bc->ioc3_sid[2] = IOC3_SID(IOC3_SUBSYS_IP27_BASEIO6G);
460 bc->ioc3_sid[6] = IOC3_SID(IOC3_SUBSYS_IP27_MIO);
463 static void bridge_setup_ip27_baseio(struct bridge_controller *bc)
465 bc->ioc3_sid[2] = IOC3_SID(IOC3_SUBSYS_IP27_BASEIO);
468 static void bridge_setup_ip29_baseio(struct bridge_controller *bc)
470 bc->ioc3_sid[2] = IOC3_SID(IOC3_SUBSYS_IP29_SYSBOARD);
473 static void bridge_setup_ip30_sysboard(struct bridge_controller *bc)
475 bc->ioc3_sid[2] = IOC3_SID(IOC3_SUBSYS_IP30_SYSBOARD);
478 static void bridge_setup_menet(struct bridge_controller *bc)
480 bc->ioc3_sid[0] = IOC3_SID(IOC3_SUBSYS_MENET);
481 bc->ioc3_sid[1] = IOC3_SID(IOC3_SUBSYS_MENET);
482 bc->ioc3_sid[2] = IOC3_SID(IOC3_SUBSYS_MENET);
483 bc->ioc3_sid[3] = IOC3_SID(IOC3_SUBSYS_MENET4);
486 #define BRIDGE_BOARD_SETUP(_partno, _setup) \
487 { .match = _partno, .setup = _setup }
489 static const struct {
491 void (*setup)(struct bridge_controller *bc);
492 } bridge_ioc3_devid[] = {
493 BRIDGE_BOARD_SETUP("030-0734-", bridge_setup_ip27_baseio6g),
494 BRIDGE_BOARD_SETUP("030-0880-", bridge_setup_ip27_baseio6g),
495 BRIDGE_BOARD_SETUP("030-1023-", bridge_setup_ip27_baseio),
496 BRIDGE_BOARD_SETUP("030-1124-", bridge_setup_ip27_baseio),
497 BRIDGE_BOARD_SETUP("030-1025-", bridge_setup_ip29_baseio),
498 BRIDGE_BOARD_SETUP("030-1244-", bridge_setup_ip29_baseio),
499 BRIDGE_BOARD_SETUP("030-1389-", bridge_setup_ip29_baseio),
500 BRIDGE_BOARD_SETUP("030-0887-", bridge_setup_ip30_sysboard),
501 BRIDGE_BOARD_SETUP("030-1467-", bridge_setup_ip30_sysboard),
502 BRIDGE_BOARD_SETUP("030-0873-", bridge_setup_menet),
505 static void bridge_setup_board(struct bridge_controller *bc, char *partnum)
509 for (i = 0; i < ARRAY_SIZE(bridge_ioc3_devid); i++)
510 if (!strncmp(partnum, bridge_ioc3_devid[i].match,
511 strlen(bridge_ioc3_devid[i].match))) {
512 bridge_ioc3_devid[i].setup(bc);
516 static int bridge_nvmem_match(struct device *dev, const void *data)
518 const char *name = dev_name(dev);
519 const char *prefix = data;
521 if (strlen(name) < strlen(prefix))
524 return memcmp(prefix, dev_name(dev), strlen(prefix)) == 0;
527 static int bridge_get_partnum(u64 baddr, char *partnum)
529 struct nvmem_device *nvmem;
535 snprintf(prefix, sizeof(prefix), "bridge-%012llx-0b-", baddr);
537 nvmem = nvmem_device_find(prefix, bridge_nvmem_match);
539 return PTR_ERR(nvmem);
541 ret = nvmem_device_read(nvmem, 0, 64, prom);
542 nvmem_device_put(nvmem);
547 if (crc16(CRC16_INIT, prom, 32) != CRC16_VALID ||
548 crc16(CRC16_INIT, prom + 32, 32) != CRC16_VALID)
551 /* Assemble part number */
553 for (i = 0; i < 19; i++)
554 if (prom[i + 11] != ' ')
555 partnum[j++] = prom[i + 11];
557 for (i = 0; i < 6; i++)
558 if (prom[i + 32] != ' ')
559 partnum[j++] = prom[i + 32];
566 static int bridge_probe(struct platform_device *pdev)
568 struct xtalk_bridge_platform_data *bd = dev_get_platdata(&pdev->dev);
569 struct device *dev = &pdev->dev;
570 struct bridge_controller *bc;
571 struct pci_host_bridge *host;
572 struct irq_domain *domain, *parent;
573 struct fwnode_handle *fn;
578 /* get part number from one wire prom */
579 if (bridge_get_partnum(virt_to_phys((void *)bd->bridge_addr), partnum))
580 return -EPROBE_DEFER; /* not available yet */
582 parent = irq_get_default_host();
585 fn = irq_domain_alloc_named_fwnode("BRIDGE");
588 domain = irq_domain_create_hierarchy(parent, 0, 8, fn,
589 &bridge_domain_ops, NULL);
590 irq_domain_free_fwnode(fn);
594 pci_set_flags(PCI_PROBE_ONLY);
596 host = devm_pci_alloc_host_bridge(dev, sizeof(*bc));
599 goto err_remove_domain;
602 bc = pci_host_bridge_priv(host);
604 bc->busn.name = "Bridge PCI busn";
607 bc->busn.flags = IORESOURCE_BUS;
611 pci_add_resource_offset(&host->windows, &bd->mem, bd->mem_offset);
612 pci_add_resource_offset(&host->windows, &bd->io, bd->io_offset);
613 pci_add_resource(&host->windows, &bc->busn);
615 err = devm_request_pci_bus_resources(dev, &host->windows);
617 goto err_free_resource;
619 bc->nasid = bd->nasid;
621 bc->baddr = (u64)bd->masterwid << 60 | PCI64_ATTR_BAR;
622 bc->base = (struct bridge_regs *)bd->bridge_addr;
623 bc->intr_addr = bd->intr_addr;
626 * Clear all pending interrupts.
628 bridge_write(bc, b_int_rst_stat, BRIDGE_IRR_ALL_CLR);
631 * Until otherwise set up, assume all interrupts are from slot 0
633 bridge_write(bc, b_int_device, 0x0);
636 * disable swapping for big windows
638 bridge_clr(bc, b_wid_control,
639 BRIDGE_CTRL_IO_SWAP | BRIDGE_CTRL_MEM_SWAP);
640 #ifdef CONFIG_PAGE_SIZE_4KB
641 bridge_clr(bc, b_wid_control, BRIDGE_CTRL_PAGE_SIZE);
642 #else /* 16kB or larger */
643 bridge_set(bc, b_wid_control, BRIDGE_CTRL_PAGE_SIZE);
647 * Hmm... IRIX sets additional bits in the address which
648 * are documented as reserved in the bridge docs.
650 bridge_write(bc, b_wid_int_upper,
651 ((bc->intr_addr >> 32) & 0xffff) | (bd->masterwid << 16));
652 bridge_write(bc, b_wid_int_lower, bc->intr_addr & 0xffffffff);
653 bridge_write(bc, b_dir_map, (bd->masterwid << 20)); /* DMA */
654 bridge_write(bc, b_int_enable, 0);
656 for (slot = 0; slot < 8; slot++) {
657 bridge_set(bc, b_device[slot].reg, BRIDGE_DEV_SWAP_DIR);
658 bc->pci_int[slot] = -1;
660 bridge_read(bc, b_wid_tflush); /* wait until Bridge PIO complete */
662 bridge_setup_board(bc, partnum);
664 host->dev.parent = dev;
667 host->ops = &bridge_pci_ops;
668 host->map_irq = bridge_map_irq;
669 host->swizzle_irq = pci_common_swizzle;
671 err = pci_scan_root_bus_bridge(host);
673 goto err_free_resource;
675 pci_bus_claim_resources(host->bus);
676 pci_bus_add_devices(host->bus);
678 platform_set_drvdata(pdev, host->bus);
683 pci_free_resource_list(&host->windows);
685 irq_domain_remove(domain);
689 static int bridge_remove(struct platform_device *pdev)
691 struct pci_bus *bus = platform_get_drvdata(pdev);
692 struct bridge_controller *bc = BRIDGE_CONTROLLER(bus);
694 irq_domain_remove(bc->domain);
695 pci_lock_rescan_remove();
696 pci_stop_root_bus(bus);
697 pci_remove_root_bus(bus);
698 pci_unlock_rescan_remove();
703 static struct platform_driver bridge_driver = {
704 .probe = bridge_probe,
705 .remove = bridge_remove,
707 .name = "xtalk-bridge",
711 builtin_platform_driver(bridge_driver);