Paul Gortmaker | 0e0fffe | 2008-01-24 18:41:27 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Wind River SBC8548 setup and early boot code. |
| 3 | * |
| 4 | * Copyright 2007 Wind River Systems Inc. |
| 5 | * |
| 6 | * By Paul Gortmaker (see MAINTAINERS for contact information) |
| 7 | * |
| 8 | * Based largely on the MPC8548CDS support - Copyright 2005 Freescale Inc. |
| 9 | * |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify it |
| 12 | * under the terms of the GNU General Public License as published by the |
| 13 | * Free Software Foundation; either version 2 of the License, or (at your |
| 14 | * option) any later version. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/stddef.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/errno.h> |
| 21 | #include <linux/reboot.h> |
| 22 | #include <linux/pci.h> |
| 23 | #include <linux/kdev_t.h> |
| 24 | #include <linux/major.h> |
| 25 | #include <linux/console.h> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/seq_file.h> |
| 28 | #include <linux/initrd.h> |
Paul Gortmaker | 0e0fffe | 2008-01-24 18:41:27 -0500 | [diff] [blame] | 29 | #include <linux/interrupt.h> |
| 30 | #include <linux/fsl_devices.h> |
| 31 | #include <linux/of_platform.h> |
| 32 | |
| 33 | #include <asm/system.h> |
| 34 | #include <asm/pgtable.h> |
| 35 | #include <asm/page.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 36 | #include <linux/atomic.h> |
Paul Gortmaker | 0e0fffe | 2008-01-24 18:41:27 -0500 | [diff] [blame] | 37 | #include <asm/time.h> |
| 38 | #include <asm/io.h> |
| 39 | #include <asm/machdep.h> |
| 40 | #include <asm/ipic.h> |
| 41 | #include <asm/pci-bridge.h> |
| 42 | #include <asm/irq.h> |
| 43 | #include <mm/mmu_decl.h> |
| 44 | #include <asm/prom.h> |
| 45 | #include <asm/udbg.h> |
| 46 | #include <asm/mpic.h> |
| 47 | |
| 48 | #include <sysdev/fsl_soc.h> |
| 49 | #include <sysdev/fsl_pci.h> |
| 50 | |
Dmitry Eremin-Solenikov | 46d026a | 2011-11-17 21:56:17 +0400 | [diff] [blame^] | 51 | #include "mpc85xx.h" |
| 52 | |
Jeremy McNicoll | bfd123b | 2008-05-05 18:17:24 -0400 | [diff] [blame] | 53 | static int sbc_rev; |
| 54 | |
Paul Gortmaker | 0e0fffe | 2008-01-24 18:41:27 -0500 | [diff] [blame] | 55 | static void __init sbc8548_pic_init(void) |
| 56 | { |
| 57 | struct mpic *mpic; |
| 58 | struct resource r; |
| 59 | struct device_node *np = NULL; |
| 60 | |
| 61 | np = of_find_node_by_type(np, "open-pic"); |
| 62 | |
| 63 | if (np == NULL) { |
| 64 | printk(KERN_ERR "Could not find open-pic node\n"); |
| 65 | return; |
| 66 | } |
| 67 | |
| 68 | if (of_address_to_resource(np, 0, &r)) { |
| 69 | printk(KERN_ERR "Failed to map mpic register space\n"); |
| 70 | of_node_put(np); |
| 71 | return; |
| 72 | } |
| 73 | |
| 74 | mpic = mpic_alloc(np, r.start, |
| 75 | MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN, |
| 76 | 0, 256, " OpenPIC "); |
| 77 | BUG_ON(mpic == NULL); |
| 78 | |
| 79 | /* Return the mpic node */ |
| 80 | of_node_put(np); |
| 81 | |
| 82 | mpic_init(mpic); |
| 83 | } |
| 84 | |
Jeremy McNicoll | bfd123b | 2008-05-05 18:17:24 -0400 | [diff] [blame] | 85 | /* Extract the HW Rev from the EPLD on the board */ |
| 86 | static int __init sbc8548_hw_rev(void) |
| 87 | { |
| 88 | struct device_node *np; |
| 89 | struct resource res; |
| 90 | unsigned int *rev; |
| 91 | int board_rev = 0; |
| 92 | |
| 93 | np = of_find_compatible_node(NULL, NULL, "hw-rev"); |
| 94 | if (np == NULL) { |
| 95 | printk("No HW-REV found in DTB.\n"); |
| 96 | return -ENODEV; |
| 97 | } |
| 98 | |
| 99 | of_address_to_resource(np, 0, &res); |
| 100 | of_node_put(np); |
| 101 | |
| 102 | rev = ioremap(res.start,sizeof(unsigned int)); |
| 103 | board_rev = (*rev) >> 28; |
| 104 | iounmap(rev); |
| 105 | |
| 106 | return board_rev; |
| 107 | } |
| 108 | |
Paul Gortmaker | 0e0fffe | 2008-01-24 18:41:27 -0500 | [diff] [blame] | 109 | /* |
| 110 | * Setup the architecture |
| 111 | */ |
| 112 | static void __init sbc8548_setup_arch(void) |
| 113 | { |
| 114 | #ifdef CONFIG_PCI |
| 115 | struct device_node *np; |
| 116 | #endif |
| 117 | |
| 118 | if (ppc_md.progress) |
| 119 | ppc_md.progress("sbc8548_setup_arch()", 0); |
| 120 | |
| 121 | #ifdef CONFIG_PCI |
| 122 | for_each_node_by_type(np, "pci") { |
| 123 | if (of_device_is_compatible(np, "fsl,mpc8540-pci") || |
| 124 | of_device_is_compatible(np, "fsl,mpc8548-pcie")) { |
| 125 | struct resource rsrc; |
| 126 | of_address_to_resource(np, 0, &rsrc); |
| 127 | if ((rsrc.start & 0xfffff) == 0x8000) |
| 128 | fsl_add_bridge(np, 1); |
| 129 | else |
| 130 | fsl_add_bridge(np, 0); |
| 131 | } |
| 132 | } |
| 133 | #endif |
Jeremy McNicoll | bfd123b | 2008-05-05 18:17:24 -0400 | [diff] [blame] | 134 | sbc_rev = sbc8548_hw_rev(); |
Paul Gortmaker | 0e0fffe | 2008-01-24 18:41:27 -0500 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | static void sbc8548_show_cpuinfo(struct seq_file *m) |
| 138 | { |
| 139 | uint pvid, svid, phid1; |
Paul Gortmaker | 0e0fffe | 2008-01-24 18:41:27 -0500 | [diff] [blame] | 140 | |
| 141 | pvid = mfspr(SPRN_PVR); |
| 142 | svid = mfspr(SPRN_SVR); |
| 143 | |
| 144 | seq_printf(m, "Vendor\t\t: Wind River\n"); |
Jeremy McNicoll | bfd123b | 2008-05-05 18:17:24 -0400 | [diff] [blame] | 145 | seq_printf(m, "Machine\t\t: SBC8548 v%d\n", sbc_rev); |
Paul Gortmaker | 0e0fffe | 2008-01-24 18:41:27 -0500 | [diff] [blame] | 146 | seq_printf(m, "PVR\t\t: 0x%x\n", pvid); |
| 147 | seq_printf(m, "SVR\t\t: 0x%x\n", svid); |
| 148 | |
| 149 | /* Display cpu Pll setting */ |
| 150 | phid1 = mfspr(SPRN_HID1); |
| 151 | seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f)); |
Paul Gortmaker | 0e0fffe | 2008-01-24 18:41:27 -0500 | [diff] [blame] | 152 | } |
| 153 | |
Dmitry Eremin-Solenikov | 46d026a | 2011-11-17 21:56:17 +0400 | [diff] [blame^] | 154 | machine_device_initcall(sbc8548, mpc85xx_common_publish_devices); |
Paul Gortmaker | 0e0fffe | 2008-01-24 18:41:27 -0500 | [diff] [blame] | 155 | |
| 156 | /* |
| 157 | * Called very early, device-tree isn't unflattened |
| 158 | */ |
| 159 | static int __init sbc8548_probe(void) |
| 160 | { |
| 161 | unsigned long root = of_get_flat_dt_root(); |
| 162 | |
| 163 | return of_flat_dt_is_compatible(root, "SBC8548"); |
| 164 | } |
| 165 | |
| 166 | define_machine(sbc8548) { |
| 167 | .name = "SBC8548", |
| 168 | .probe = sbc8548_probe, |
| 169 | .setup_arch = sbc8548_setup_arch, |
| 170 | .init_IRQ = sbc8548_pic_init, |
| 171 | .show_cpuinfo = sbc8548_show_cpuinfo, |
| 172 | .get_irq = mpic_get_irq, |
| 173 | .restart = fsl_rstcr_restart, |
| 174 | #ifdef CONFIG_PCI |
| 175 | .pcibios_fixup_bus = fsl_pcibios_fixup_bus, |
| 176 | #endif |
| 177 | .calibrate_decr = generic_calibrate_decr, |
| 178 | .progress = udbg_progress, |
| 179 | }; |