blob: 1e3cc69487b58719665cc459ed582d6b60d39275 [file] [log] [blame]
Zang Roy-r61911c5d56332006-06-13 15:07:15 +08001/*
2 * mpc7448_hpc2.c
3 *
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +08004 * Board setup routines for the Freescale mpc7448hpc2(taiga) platform
Zang Roy-r61911c5d56332006-06-13 15:07:15 +08005 *
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-r61911c4342ff2006-08-23 10:19:50 +080015 * 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-r61911c5d56332006-06-13 15:07:15 +080019 */
20
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080021#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>
26#include <linux/delay.h>
27#include <linux/irq.h>
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080028#include <linux/seq_file.h>
29#include <linux/root_dev.h>
30#include <linux/serial.h>
31#include <linux/tty.h>
32#include <linux/serial_core.h>
33
34#include <asm/system.h>
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>
43#include "mpc7448_hpc2.h"
Josh Boyer08390db2007-05-08 07:25:22 +100044#include <asm/tsi108_pci.h>
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080045#include <asm/tsi108_irq.h>
46#include <asm/mpic.h>
47
48#undef DEBUG
49#ifdef DEBUG
50#define DBG(fmt...) do { printk(fmt); } while(0)
51#else
52#define DBG(fmt...) do { } while(0)
53#endif
54
Josh Boyer05ad6a92007-05-08 07:27:15 +100055#define MPC7448HPC2_PCI_CFG_PHYS 0xfb000000
56
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080057extern void _nmask_and_or_msr(unsigned long nmask, unsigned long or_val);
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080058
Kumar Gala7d52c7b2007-06-22 00:23:57 -050059int mpc7448_hpc2_exclude_device(struct pci_controller *hose,
60 u_char bus, u_char devfn)
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080061{
62 if (bus == 0 && PCI_SLOT(devfn) == 0)
63 return PCIBIOS_DEVICE_NOT_FOUND;
64 else
65 return PCIBIOS_SUCCESSFUL;
66}
67
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080068static void __init mpc7448_hpc2_setup_arch(void)
69{
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080070 struct device_node *np;
71 if (ppc_md.progress)
72 ppc_md.progress("mpc7448_hpc2_setup_arch():set_bridge", 0);
73
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080074 tsi108_csr_vir_base = get_vir_csrbase();
75
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080076 /* setup PCI host bridge */
77#ifdef CONFIG_PCI
78 for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;)
Josh Boyer05ad6a92007-05-08 07:27:15 +100079 tsi108_setup_pci(np, MPC7448HPC2_PCI_CFG_PHYS, 0);
Zang Roy-r61911c5d56332006-06-13 15:07:15 +080080
81 ppc_md.pci_exclude_device = mpc7448_hpc2_exclude_device;
82 if (ppc_md.progress)
83 ppc_md.progress("tsi108: resources set", 0x100);
84#endif
85
86 printk(KERN_INFO "MPC7448HPC2 (TAIGA) Platform\n");
87 printk(KERN_INFO
88 "Jointly ported by Freescale and Tundra Semiconductor\n");
89 printk(KERN_INFO
90 "Enabling L2 cache then enabling the HID0 prefetch engine.\n");
91}
92
93/*
94 * Interrupt setup and service. Interrrupts on the mpc7448_hpc2 come
95 * from the four external INT pins, PCI interrupts are routed via
96 * PCI interrupt control registers, it generates internal IRQ23
97 *
98 * Interrupt routing on the Taiga Board:
99 * TSI108:PB_INT[0] -> CPU0:INT#
100 * TSI108:PB_INT[1] -> CPU0:MCP#
101 * TSI108:PB_INT[2] -> N/C
102 * TSI108:PB_INT[3] -> N/C
103 */
104static void __init mpc7448_hpc2_init_IRQ(void)
105{
106 struct mpic *mpic;
107 phys_addr_t mpic_paddr = 0;
Zang Roy-r619115873c9b2006-11-14 14:31:50 +0800108 struct device_node *tsi_pic;
109#ifdef CONFIG_PCI
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +0800110 unsigned int cascade_pci_irq;
111 struct device_node *tsi_pci;
Zang Roy-r619115873c9b2006-11-14 14:31:50 +0800112 struct device_node *cascade_node = NULL;
113#endif
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800114
115 tsi_pic = of_find_node_by_type(NULL, "open-pic");
116 if (tsi_pic) {
117 unsigned int size;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000118 const void *prop = of_get_property(tsi_pic, "reg", &size);
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800119 mpic_paddr = of_translate_address(tsi_pic, prop);
120 }
121
122 if (mpic_paddr == 0) {
123 printk("%s: No tsi108 PIC found !\n", __FUNCTION__);
124 return;
125 }
126
Zang Roy-r619115873c9b2006-11-14 14:31:50 +0800127 DBG("%s: tsi108 pic phys_addr = 0x%x\n", __FUNCTION__,
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800128 (u32) mpic_paddr);
129
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +0800130 mpic = mpic_alloc(tsi_pic, mpic_paddr,
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800131 MPIC_PRIMARY | MPIC_BIG_ENDIAN | MPIC_WANTS_RESET |
Zang Roy-r6191172335932006-08-25 14:16:30 +1000132 MPIC_SPV_EOI | MPIC_NO_PTHROU_DIS | MPIC_REGSET_TSI108,
Zang Roy-r619115873c9b2006-11-14 14:31:50 +0800133 24,
134 NR_IRQS-4, /* num_sources used */
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +0800135 "Tsi108_PIC");
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800136
Zang Roy-r619115873c9b2006-11-14 14:31:50 +0800137 BUG_ON(mpic == NULL);
138
139 mpic_assign_isu(mpic, 0, mpic_paddr + 0x100);
140
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800141 mpic_init(mpic);
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +0800142
Zang Roy-r619115873c9b2006-11-14 14:31:50 +0800143#ifdef CONFIG_PCI
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +0800144 tsi_pci = of_find_node_by_type(NULL, "pci");
Zang Roy-r619115873c9b2006-11-14 14:31:50 +0800145 if (tsi_pci == NULL) {
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +0800146 printk("%s: No tsi108 pci node found !\n", __FUNCTION__);
147 return;
148 }
Zang Roy-r619115873c9b2006-11-14 14:31:50 +0800149 cascade_node = of_find_node_by_type(NULL, "pic-router");
150 if (cascade_node == NULL) {
151 printk("%s: No tsi108 pci cascade node found !\n", __FUNCTION__);
152 return;
153 }
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +0800154
155 cascade_pci_irq = irq_of_parse_and_map(tsi_pci, 0);
Zang Roy-r619115873c9b2006-11-14 14:31:50 +0800156 DBG("%s: tsi108 cascade_pci_irq = 0x%x\n", __FUNCTION__,
157 (u32) cascade_pci_irq);
158 tsi108_pci_int_init(cascade_node);
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +0800159 set_irq_data(cascade_pci_irq, mpic);
160 set_irq_chained_handler(cascade_pci_irq, tsi108_irq_cascade);
Zang Roy-r619115873c9b2006-11-14 14:31:50 +0800161#endif
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800162 /* Configure MPIC outputs to CPU0 */
163 tsi108_write_reg(TSI108_MPIC_OFFSET + 0x30c, 0);
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +0800164 of_node_put(tsi_pic);
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800165}
166
167void mpc7448_hpc2_show_cpuinfo(struct seq_file *m)
168{
169 seq_printf(m, "vendor\t\t: Freescale Semiconductor\n");
170 seq_printf(m, "machine\t\t: MPC7448hpc2\n");
171}
172
173void mpc7448_hpc2_restart(char *cmd)
174{
175 local_irq_disable();
176
177 /* Set exception prefix high - to the firmware */
178 _nmask_and_or_msr(0, MSR_IP);
179
180 for (;;) ; /* Spin until reset happens */
181}
182
183void mpc7448_hpc2_power_off(void)
184{
185 local_irq_disable();
186 for (;;) ; /* No way to shut power off with software */
187}
188
189void mpc7448_hpc2_halt(void)
190{
191 mpc7448_hpc2_power_off();
192}
193
194/*
195 * Called very early, device-tree isn't unflattened
196 */
197static int __init mpc7448_hpc2_probe(void)
198{
199 unsigned long root = of_get_flat_dt_root();
200
201 if (!of_flat_dt_is_compatible(root, "mpc74xx"))
202 return 0;
203 return 1;
204}
205
206static int mpc7448_machine_check_exception(struct pt_regs *regs)
207{
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800208 const struct exception_table_entry *entry;
209
210 /* Are we prepared to handle this fault */
211 if ((entry = search_exception_tables(regs->nip)) != NULL) {
212 tsi108_clear_pci_cfg_error();
213 regs->msr |= MSR_RI;
214 regs->nip = entry->fixup;
215 return 1;
216 }
217 return 0;
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800218}
Zang Roy-r61911c4342ff2006-08-23 10:19:50 +0800219
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800220define_machine(mpc7448_hpc2){
221 .name = "MPC7448 HPC2",
222 .probe = mpc7448_hpc2_probe,
223 .setup_arch = mpc7448_hpc2_setup_arch,
224 .init_IRQ = mpc7448_hpc2_init_IRQ,
225 .show_cpuinfo = mpc7448_hpc2_show_cpuinfo,
226 .get_irq = mpic_get_irq,
Zang Roy-r61911c5d56332006-06-13 15:07:15 +0800227 .restart = mpc7448_hpc2_restart,
228 .calibrate_decr = generic_calibrate_decr,
229 .machine_check_exception= mpc7448_machine_check_exception,
230 .progress = udbg_progress,
231};