mpc85xx_cds.c (9992B)
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * MPC85xx setup and early boot code plus other random bits. 4 * 5 * Maintained by Kumar Gala (see MAINTAINERS for contact information) 6 * 7 * Copyright 2005, 2011-2012 Freescale Semiconductor Inc. 8 */ 9 10#include <linux/stddef.h> 11#include <linux/kernel.h> 12#include <linux/init.h> 13#include <linux/errno.h> 14#include <linux/reboot.h> 15#include <linux/pci.h> 16#include <linux/kdev_t.h> 17#include <linux/major.h> 18#include <linux/console.h> 19#include <linux/delay.h> 20#include <linux/seq_file.h> 21#include <linux/initrd.h> 22#include <linux/interrupt.h> 23#include <linux/fsl_devices.h> 24#include <linux/of_address.h> 25#include <linux/of_irq.h> 26#include <linux/of_platform.h> 27#include <linux/pgtable.h> 28 29#include <asm/page.h> 30#include <linux/atomic.h> 31#include <asm/time.h> 32#include <asm/io.h> 33#include <asm/machdep.h> 34#include <asm/ipic.h> 35#include <asm/pci-bridge.h> 36#include <asm/irq.h> 37#include <mm/mmu_decl.h> 38#include <asm/udbg.h> 39#include <asm/mpic.h> 40#include <asm/i8259.h> 41 42#include <sysdev/fsl_soc.h> 43#include <sysdev/fsl_pci.h> 44 45#include "mpc85xx.h" 46 47/* 48 * The CDS board contains an FPGA/CPLD called "Cadmus", which collects 49 * various logic and performs system control functions. 50 * Here is the FPGA/CPLD register map. 51 */ 52struct cadmus_reg { 53 u8 cm_ver; /* Board version */ 54 u8 cm_csr; /* General control/status */ 55 u8 cm_rst; /* Reset control */ 56 u8 cm_hsclk; /* High speed clock */ 57 u8 cm_hsxclk; /* High speed clock extended */ 58 u8 cm_led; /* LED data */ 59 u8 cm_pci; /* PCI control/status */ 60 u8 cm_dma; /* DMA control */ 61 u8 res[248]; /* Total 256 bytes */ 62}; 63 64static struct cadmus_reg *cadmus; 65 66#ifdef CONFIG_PCI 67 68#define ARCADIA_HOST_BRIDGE_IDSEL 17 69#define ARCADIA_2ND_BRIDGE_IDSEL 3 70 71static int mpc85xx_exclude_device(struct pci_controller *hose, 72 u_char bus, u_char devfn) 73{ 74 /* We explicitly do not go past the Tundra 320 Bridge */ 75 if ((bus == 1) && (PCI_SLOT(devfn) == ARCADIA_2ND_BRIDGE_IDSEL)) 76 return PCIBIOS_DEVICE_NOT_FOUND; 77 if ((bus == 0) && (PCI_SLOT(devfn) == ARCADIA_2ND_BRIDGE_IDSEL)) 78 return PCIBIOS_DEVICE_NOT_FOUND; 79 else 80 return PCIBIOS_SUCCESSFUL; 81} 82 83static int mpc85xx_cds_restart(struct notifier_block *this, 84 unsigned long mode, void *cmd) 85{ 86 struct pci_dev *dev; 87 u_char tmp; 88 89 if ((dev = pci_get_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686, 90 NULL))) { 91 92 /* Use the VIA Super Southbridge to force a PCI reset */ 93 pci_read_config_byte(dev, 0x47, &tmp); 94 pci_write_config_byte(dev, 0x47, tmp | 1); 95 96 /* Flush the outbound PCI write queues */ 97 pci_read_config_byte(dev, 0x47, &tmp); 98 99 /* 100 * At this point, the hardware reset should have triggered. 101 * However, if it doesn't work for some mysterious reason, 102 * just fall through to the default reset below. 103 */ 104 105 pci_dev_put(dev); 106 } 107 108 /* 109 * If we can't find the VIA chip (maybe the P2P bridge is 110 * disabled) or the VIA chip reset didn't work, just return 111 * and let default reset sequence happen. 112 */ 113 return NOTIFY_DONE; 114} 115 116static int mpc85xx_cds_restart_register(void) 117{ 118 static struct notifier_block restart_handler; 119 120 restart_handler.notifier_call = mpc85xx_cds_restart; 121 restart_handler.priority = 192; 122 123 return register_restart_handler(&restart_handler); 124} 125machine_arch_initcall(mpc85xx_cds, mpc85xx_cds_restart_register); 126 127 128static void __init mpc85xx_cds_pci_irq_fixup(struct pci_dev *dev) 129{ 130 u_char c; 131 if (dev->vendor == PCI_VENDOR_ID_VIA) { 132 switch (dev->device) { 133 case PCI_DEVICE_ID_VIA_82C586_1: 134 /* 135 * U-Boot does not set the enable bits 136 * for the IDE device. Force them on here. 137 */ 138 pci_read_config_byte(dev, 0x40, &c); 139 c |= 0x03; /* IDE: Chip Enable Bits */ 140 pci_write_config_byte(dev, 0x40, c); 141 142 /* 143 * Since only primary interface works, force the 144 * IDE function to standard primary IDE interrupt 145 * w/ 8259 offset 146 */ 147 dev->irq = 14; 148 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq); 149 break; 150 /* 151 * Force legacy USB interrupt routing 152 */ 153 case PCI_DEVICE_ID_VIA_82C586_2: 154 /* There are two USB controllers. 155 * Identify them by function number 156 */ 157 if (PCI_FUNC(dev->devfn) == 3) 158 dev->irq = 11; 159 else 160 dev->irq = 10; 161 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq); 162 default: 163 break; 164 } 165 } 166} 167 168static void skip_fake_bridge(struct pci_dev *dev) 169{ 170 /* Make it an error to skip the fake bridge 171 * in pci_setup_device() in probe.c */ 172 dev->hdr_type = 0x7f; 173} 174DECLARE_PCI_FIXUP_EARLY(0x1957, 0x3fff, skip_fake_bridge); 175DECLARE_PCI_FIXUP_EARLY(0x3fff, 0x1957, skip_fake_bridge); 176DECLARE_PCI_FIXUP_EARLY(0xff3f, 0x5719, skip_fake_bridge); 177 178#define PCI_DEVICE_ID_IDT_TSI310 0x01a7 179 180/* 181 * Fix Tsi310 PCI-X bridge resource. 182 * Force the bridge to open a window from 0x0000-0x1fff in PCI I/O space. 183 * This allows legacy I/O(i8259, etc) on the VIA southbridge to be accessed. 184 */ 185void mpc85xx_cds_fixup_bus(struct pci_bus *bus) 186{ 187 struct pci_dev *dev = bus->self; 188 struct resource *res = bus->resource[0]; 189 190 if (dev != NULL && 191 dev->vendor == PCI_VENDOR_ID_IBM && 192 dev->device == PCI_DEVICE_ID_IDT_TSI310) { 193 if (res) { 194 res->start = 0; 195 res->end = 0x1fff; 196 res->flags = IORESOURCE_IO; 197 pr_info("mpc85xx_cds: PCI bridge resource fixup applied\n"); 198 pr_info("mpc85xx_cds: %pR\n", res); 199 } 200 } 201 202 fsl_pcibios_fixup_bus(bus); 203} 204 205#ifdef CONFIG_PPC_I8259 206static void mpc85xx_8259_cascade_handler(struct irq_desc *desc) 207{ 208 unsigned int cascade_irq = i8259_irq(); 209 210 if (cascade_irq) 211 /* handle an interrupt from the 8259 */ 212 generic_handle_irq(cascade_irq); 213 214 /* check for any interrupts from the shared IRQ line */ 215 handle_fasteoi_irq(desc); 216} 217 218static irqreturn_t mpc85xx_8259_cascade_action(int irq, void *dev_id) 219{ 220 return IRQ_HANDLED; 221} 222#endif /* PPC_I8259 */ 223#endif /* CONFIG_PCI */ 224 225static void __init mpc85xx_cds_pic_init(void) 226{ 227 struct mpic *mpic; 228 mpic = mpic_alloc(NULL, 0, MPIC_BIG_ENDIAN, 229 0, 256, " OpenPIC "); 230 BUG_ON(mpic == NULL); 231 mpic_init(mpic); 232} 233 234#if defined(CONFIG_PPC_I8259) && defined(CONFIG_PCI) 235static int mpc85xx_cds_8259_attach(void) 236{ 237 int ret; 238 struct device_node *np = NULL; 239 struct device_node *cascade_node = NULL; 240 int cascade_irq; 241 242 /* Initialize the i8259 controller */ 243 for_each_node_by_type(np, "interrupt-controller") 244 if (of_device_is_compatible(np, "chrp,iic")) { 245 cascade_node = np; 246 break; 247 } 248 249 if (cascade_node == NULL) { 250 printk(KERN_DEBUG "Could not find i8259 PIC\n"); 251 return -ENODEV; 252 } 253 254 cascade_irq = irq_of_parse_and_map(cascade_node, 0); 255 if (!cascade_irq) { 256 printk(KERN_ERR "Failed to map cascade interrupt\n"); 257 return -ENXIO; 258 } 259 260 i8259_init(cascade_node, 0); 261 of_node_put(cascade_node); 262 263 /* 264 * Hook the interrupt to make sure desc->action is never NULL. 265 * This is required to ensure that the interrupt does not get 266 * disabled when the last user of the shared IRQ line frees their 267 * interrupt. 268 */ 269 ret = request_irq(cascade_irq, mpc85xx_8259_cascade_action, 270 IRQF_SHARED | IRQF_NO_THREAD, "8259 cascade", 271 cascade_node); 272 if (ret) { 273 printk(KERN_ERR "Failed to setup cascade interrupt\n"); 274 return ret; 275 } 276 277 /* Success. Connect our low-level cascade handler. */ 278 irq_set_handler(cascade_irq, mpc85xx_8259_cascade_handler); 279 280 return 0; 281} 282machine_device_initcall(mpc85xx_cds, mpc85xx_cds_8259_attach); 283 284#endif /* CONFIG_PPC_I8259 */ 285 286static void __init mpc85xx_cds_pci_assign_primary(void) 287{ 288#ifdef CONFIG_PCI 289 struct device_node *np; 290 291 if (fsl_pci_primary) 292 return; 293 294 /* 295 * MPC85xx_CDS has ISA bridge but unfortunately there is no 296 * isa node in device tree. We now looking for i8259 node as 297 * a workaround for such a broken device tree. This routine 298 * is for complying to all device trees. 299 */ 300 np = of_find_node_by_name(NULL, "i8259"); 301 while ((fsl_pci_primary = of_get_parent(np))) { 302 of_node_put(np); 303 np = fsl_pci_primary; 304 305 if ((of_device_is_compatible(np, "fsl,mpc8540-pci") || 306 of_device_is_compatible(np, "fsl,mpc8548-pcie")) && 307 of_device_is_available(np)) 308 return; 309 } 310#endif 311} 312 313/* 314 * Setup the architecture 315 */ 316static void __init mpc85xx_cds_setup_arch(void) 317{ 318 struct device_node *np; 319 int cds_pci_slot; 320 321 if (ppc_md.progress) 322 ppc_md.progress("mpc85xx_cds_setup_arch()", 0); 323 324 np = of_find_compatible_node(NULL, NULL, "fsl,mpc8548cds-fpga"); 325 if (!np) { 326 pr_err("Could not find FPGA node.\n"); 327 return; 328 } 329 330 cadmus = of_iomap(np, 0); 331 of_node_put(np); 332 if (!cadmus) { 333 pr_err("Fail to map FPGA area.\n"); 334 return; 335 } 336 337 if (ppc_md.progress) { 338 char buf[40]; 339 cds_pci_slot = ((in_8(&cadmus->cm_csr) >> 6) & 0x3) + 1; 340 snprintf(buf, 40, "CDS Version = 0x%x in slot %d\n", 341 in_8(&cadmus->cm_ver), cds_pci_slot); 342 ppc_md.progress(buf, 0); 343 } 344 345#ifdef CONFIG_PCI 346 ppc_md.pci_irq_fixup = mpc85xx_cds_pci_irq_fixup; 347 ppc_md.pci_exclude_device = mpc85xx_exclude_device; 348#endif 349 350 mpc85xx_cds_pci_assign_primary(); 351 fsl_pci_assign_primary(); 352} 353 354static void mpc85xx_cds_show_cpuinfo(struct seq_file *m) 355{ 356 uint pvid, svid, phid1; 357 358 pvid = mfspr(SPRN_PVR); 359 svid = mfspr(SPRN_SVR); 360 361 seq_printf(m, "Vendor\t\t: Freescale Semiconductor\n"); 362 seq_printf(m, "Machine\t\t: MPC85xx CDS (0x%x)\n", 363 in_8(&cadmus->cm_ver)); 364 seq_printf(m, "PVR\t\t: 0x%x\n", pvid); 365 seq_printf(m, "SVR\t\t: 0x%x\n", svid); 366 367 /* Display cpu Pll setting */ 368 phid1 = mfspr(SPRN_HID1); 369 seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f)); 370} 371 372 373/* 374 * Called very early, device-tree isn't unflattened 375 */ 376static int __init mpc85xx_cds_probe(void) 377{ 378 return of_machine_is_compatible("MPC85xxCDS"); 379} 380 381machine_arch_initcall(mpc85xx_cds, mpc85xx_common_publish_devices); 382 383define_machine(mpc85xx_cds) { 384 .name = "MPC85xx CDS", 385 .probe = mpc85xx_cds_probe, 386 .setup_arch = mpc85xx_cds_setup_arch, 387 .init_IRQ = mpc85xx_cds_pic_init, 388 .show_cpuinfo = mpc85xx_cds_show_cpuinfo, 389 .get_irq = mpic_get_irq, 390#ifdef CONFIG_PCI 391 .pcibios_fixup_bus = mpc85xx_cds_fixup_bus, 392 .pcibios_fixup_phb = fsl_pcibios_fixup_phb, 393#endif 394 .calibrate_decr = generic_calibrate_decr, 395 .progress = udbg_progress, 396};