Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 1 | /* |
| 2 | * mpc7448_hpc2.c |
| 3 | * |
Zang Roy-r61911 | c4342ff | 2006-08-23 10:19:50 +0800 | [diff] [blame] | 4 | * Board setup routines for the Freescale mpc7448hpc2(taiga) platform |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 5 | * |
| 6 | * Author: Jacob Pan |
| 7 | * jacob.pan@freescale.com |
| 8 | * Author: Xianghua Xiao |
| 9 | * x.xiao@freescale.com |
| 10 | * Maintainer: Roy Zang <tie-fei.zang@freescale.com> |
| 11 | * Add Flat Device Tree support fot mpc7448hpc2 board |
| 12 | * |
| 13 | * Copyright 2004-2006 Freescale Semiconductor, Inc. |
| 14 | * |
Zang Roy-r61911 | c4342ff | 2006-08-23 10:19:50 +0800 | [diff] [blame] | 15 | * This program is free software; you can redistribute it and/or |
| 16 | * modify it under the terms of the GNU General Public License |
| 17 | * as published by the Free Software Foundation; either version |
| 18 | * 2 of the License, or (at your option) any later version. |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 19 | */ |
| 20 | |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 21 | #include <linux/stddef.h> |
| 22 | #include <linux/kernel.h> |
| 23 | #include <linux/pci.h> |
| 24 | #include <linux/kdev_t.h> |
| 25 | #include <linux/console.h> |
Paul Gortmaker | 7dfe293 | 2011-05-27 13:23:32 -0400 | [diff] [blame] | 26 | #include <linux/module.h> |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 27 | #include <linux/delay.h> |
| 28 | #include <linux/irq.h> |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 29 | #include <linux/seq_file.h> |
| 30 | #include <linux/root_dev.h> |
| 31 | #include <linux/serial.h> |
| 32 | #include <linux/tty.h> |
| 33 | #include <linux/serial_core.h> |
| 34 | |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 35 | #include <asm/time.h> |
| 36 | #include <asm/machdep.h> |
| 37 | #include <asm/prom.h> |
| 38 | #include <asm/udbg.h> |
| 39 | #include <asm/tsi108.h> |
| 40 | #include <asm/pci-bridge.h> |
| 41 | #include <asm/reg.h> |
| 42 | #include <mm/mmu_decl.h> |
Josh Boyer | 08390db | 2007-05-08 07:25:22 +1000 | [diff] [blame] | 43 | #include <asm/tsi108_pci.h> |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 44 | #include <asm/tsi108_irq.h> |
| 45 | #include <asm/mpic.h> |
| 46 | |
| 47 | #undef DEBUG |
| 48 | #ifdef DEBUG |
| 49 | #define DBG(fmt...) do { printk(fmt); } while(0) |
| 50 | #else |
| 51 | #define DBG(fmt...) do { } while(0) |
| 52 | #endif |
| 53 | |
Josh Boyer | 05ad6a9 | 2007-05-08 07:27:15 +1000 | [diff] [blame] | 54 | #define MPC7448HPC2_PCI_CFG_PHYS 0xfb000000 |
| 55 | |
Kumar Gala | 7d52c7b | 2007-06-22 00:23:57 -0500 | [diff] [blame] | 56 | int mpc7448_hpc2_exclude_device(struct pci_controller *hose, |
| 57 | u_char bus, u_char devfn) |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 58 | { |
| 59 | if (bus == 0 && PCI_SLOT(devfn) == 0) |
| 60 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 61 | else |
| 62 | return PCIBIOS_SUCCESSFUL; |
| 63 | } |
| 64 | |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 65 | static void __init mpc7448_hpc2_setup_arch(void) |
| 66 | { |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 67 | struct device_node *np; |
| 68 | if (ppc_md.progress) |
| 69 | ppc_md.progress("mpc7448_hpc2_setup_arch():set_bridge", 0); |
| 70 | |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 71 | tsi108_csr_vir_base = get_vir_csrbase(); |
| 72 | |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 73 | /* setup PCI host bridge */ |
| 74 | #ifdef CONFIG_PCI |
Kumar Gala | c9438af | 2007-10-04 00:28:43 -0500 | [diff] [blame] | 75 | for_each_compatible_node(np, "pci", "tsi108-pci") |
Josh Boyer | 05ad6a9 | 2007-05-08 07:27:15 +1000 | [diff] [blame] | 76 | tsi108_setup_pci(np, MPC7448HPC2_PCI_CFG_PHYS, 0); |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 77 | |
| 78 | ppc_md.pci_exclude_device = mpc7448_hpc2_exclude_device; |
| 79 | if (ppc_md.progress) |
| 80 | ppc_md.progress("tsi108: resources set", 0x100); |
| 81 | #endif |
| 82 | |
| 83 | printk(KERN_INFO "MPC7448HPC2 (TAIGA) Platform\n"); |
| 84 | printk(KERN_INFO |
| 85 | "Jointly ported by Freescale and Tundra Semiconductor\n"); |
| 86 | printk(KERN_INFO |
| 87 | "Enabling L2 cache then enabling the HID0 prefetch engine.\n"); |
| 88 | } |
| 89 | |
| 90 | /* |
Gabriel C | 33567a0 | 2007-08-01 19:41:09 +1000 | [diff] [blame] | 91 | * Interrupt setup and service. Interrupts on the mpc7448_hpc2 come |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 92 | * from the four external INT pins, PCI interrupts are routed via |
| 93 | * PCI interrupt control registers, it generates internal IRQ23 |
| 94 | * |
| 95 | * Interrupt routing on the Taiga Board: |
| 96 | * TSI108:PB_INT[0] -> CPU0:INT# |
| 97 | * TSI108:PB_INT[1] -> CPU0:MCP# |
| 98 | * TSI108:PB_INT[2] -> N/C |
| 99 | * TSI108:PB_INT[3] -> N/C |
| 100 | */ |
| 101 | static void __init mpc7448_hpc2_init_IRQ(void) |
| 102 | { |
| 103 | struct mpic *mpic; |
Zang Roy-r61911 | 5873c9b | 2006-11-14 14:31:50 +0800 | [diff] [blame] | 104 | #ifdef CONFIG_PCI |
Zang Roy-r61911 | c4342ff | 2006-08-23 10:19:50 +0800 | [diff] [blame] | 105 | unsigned int cascade_pci_irq; |
| 106 | struct device_node *tsi_pci; |
Zang Roy-r61911 | 5873c9b | 2006-11-14 14:31:50 +0800 | [diff] [blame] | 107 | struct device_node *cascade_node = NULL; |
| 108 | #endif |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 109 | |
Kyle Moffett | e55d7f7 | 2011-12-22 10:19:14 +0000 | [diff] [blame] | 110 | mpic = mpic_alloc(NULL, 0, MPIC_BIG_ENDIAN | |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 111 | MPIC_SPV_EOI | MPIC_NO_PTHROU_DIS | MPIC_REGSET_TSI108, |
Kyle Moffett | 5019609 | 2011-12-22 10:19:12 +0000 | [diff] [blame] | 112 | 24, 0, |
Zang Roy-r61911 | c4342ff | 2006-08-23 10:19:50 +0800 | [diff] [blame] | 113 | "Tsi108_PIC"); |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 114 | |
Zang Roy-r61911 | 5873c9b | 2006-11-14 14:31:50 +0800 | [diff] [blame] | 115 | BUG_ON(mpic == NULL); |
| 116 | |
Kyle Moffett | e7a9867 | 2011-12-02 06:28:01 +0000 | [diff] [blame] | 117 | mpic_assign_isu(mpic, 0, mpic->paddr + 0x100); |
Zang Roy-r61911 | 5873c9b | 2006-11-14 14:31:50 +0800 | [diff] [blame] | 118 | |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 119 | mpic_init(mpic); |
Zang Roy-r61911 | c4342ff | 2006-08-23 10:19:50 +0800 | [diff] [blame] | 120 | |
Zang Roy-r61911 | 5873c9b | 2006-11-14 14:31:50 +0800 | [diff] [blame] | 121 | #ifdef CONFIG_PCI |
Zang Roy-r61911 | c4342ff | 2006-08-23 10:19:50 +0800 | [diff] [blame] | 122 | tsi_pci = of_find_node_by_type(NULL, "pci"); |
Zang Roy-r61911 | 5873c9b | 2006-11-14 14:31:50 +0800 | [diff] [blame] | 123 | if (tsi_pci == NULL) { |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 124 | printk("%s: No tsi108 pci node found !\n", __func__); |
Zang Roy-r61911 | c4342ff | 2006-08-23 10:19:50 +0800 | [diff] [blame] | 125 | return; |
| 126 | } |
Zang Roy-r61911 | 5873c9b | 2006-11-14 14:31:50 +0800 | [diff] [blame] | 127 | cascade_node = of_find_node_by_type(NULL, "pic-router"); |
| 128 | if (cascade_node == NULL) { |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 129 | printk("%s: No tsi108 pci cascade node found !\n", __func__); |
Zang Roy-r61911 | 5873c9b | 2006-11-14 14:31:50 +0800 | [diff] [blame] | 130 | return; |
| 131 | } |
Zang Roy-r61911 | c4342ff | 2006-08-23 10:19:50 +0800 | [diff] [blame] | 132 | |
| 133 | cascade_pci_irq = irq_of_parse_and_map(tsi_pci, 0); |
Harvey Harrison | e48b1b4 | 2008-03-29 08:21:07 +1100 | [diff] [blame] | 134 | DBG("%s: tsi108 cascade_pci_irq = 0x%x\n", __func__, |
Zang Roy-r61911 | 5873c9b | 2006-11-14 14:31:50 +0800 | [diff] [blame] | 135 | (u32) cascade_pci_irq); |
| 136 | tsi108_pci_int_init(cascade_node); |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 137 | irq_set_handler_data(cascade_pci_irq, mpic); |
| 138 | irq_set_chained_handler(cascade_pci_irq, tsi108_irq_cascade); |
Zang Roy-r61911 | 5873c9b | 2006-11-14 14:31:50 +0800 | [diff] [blame] | 139 | #endif |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 140 | /* Configure MPIC outputs to CPU0 */ |
| 141 | tsi108_write_reg(TSI108_MPIC_OFFSET + 0x30c, 0); |
| 142 | } |
| 143 | |
| 144 | void mpc7448_hpc2_show_cpuinfo(struct seq_file *m) |
| 145 | { |
| 146 | seq_printf(m, "vendor\t\t: Freescale Semiconductor\n"); |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | void mpc7448_hpc2_restart(char *cmd) |
| 150 | { |
| 151 | local_irq_disable(); |
| 152 | |
| 153 | /* Set exception prefix high - to the firmware */ |
| 154 | _nmask_and_or_msr(0, MSR_IP); |
| 155 | |
| 156 | for (;;) ; /* Spin until reset happens */ |
| 157 | } |
| 158 | |
| 159 | void mpc7448_hpc2_power_off(void) |
| 160 | { |
| 161 | local_irq_disable(); |
| 162 | for (;;) ; /* No way to shut power off with software */ |
| 163 | } |
| 164 | |
| 165 | void mpc7448_hpc2_halt(void) |
| 166 | { |
| 167 | mpc7448_hpc2_power_off(); |
| 168 | } |
| 169 | |
| 170 | /* |
| 171 | * Called very early, device-tree isn't unflattened |
| 172 | */ |
| 173 | static int __init mpc7448_hpc2_probe(void) |
| 174 | { |
| 175 | unsigned long root = of_get_flat_dt_root(); |
| 176 | |
| 177 | if (!of_flat_dt_is_compatible(root, "mpc74xx")) |
| 178 | return 0; |
| 179 | return 1; |
| 180 | } |
| 181 | |
| 182 | static int mpc7448_machine_check_exception(struct pt_regs *regs) |
| 183 | { |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 184 | const struct exception_table_entry *entry; |
| 185 | |
| 186 | /* Are we prepared to handle this fault */ |
| 187 | if ((entry = search_exception_tables(regs->nip)) != NULL) { |
| 188 | tsi108_clear_pci_cfg_error(); |
| 189 | regs->msr |= MSR_RI; |
| 190 | regs->nip = entry->fixup; |
| 191 | return 1; |
| 192 | } |
| 193 | return 0; |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 194 | } |
Zang Roy-r61911 | c4342ff | 2006-08-23 10:19:50 +0800 | [diff] [blame] | 195 | |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 196 | define_machine(mpc7448_hpc2){ |
| 197 | .name = "MPC7448 HPC2", |
| 198 | .probe = mpc7448_hpc2_probe, |
| 199 | .setup_arch = mpc7448_hpc2_setup_arch, |
| 200 | .init_IRQ = mpc7448_hpc2_init_IRQ, |
| 201 | .show_cpuinfo = mpc7448_hpc2_show_cpuinfo, |
| 202 | .get_irq = mpic_get_irq, |
Zang Roy-r61911 | c5d5633 | 2006-06-13 15:07:15 +0800 | [diff] [blame] | 203 | .restart = mpc7448_hpc2_restart, |
| 204 | .calibrate_decr = generic_calibrate_decr, |
| 205 | .machine_check_exception= mpc7448_machine_check_exception, |
| 206 | .progress = udbg_progress, |
| 207 | }; |