| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * mpc7448_hpc2.c | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-08-23 10:19:50 +08:00
										 |  |  |  * Board setup routines for the Freescale mpc7448hpc2(taiga) platform | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Author: Jacob Pan | 
					
						
							|  |  |  |  *	 jacob.pan@freescale.com | 
					
						
							|  |  |  |  * Author: Xianghua Xiao | 
					
						
							|  |  |  |  *       x.xiao@freescale.com | 
					
						
							|  |  |  |  * Maintainer: Roy Zang <tie-fei.zang@freescale.com> | 
					
						
							|  |  |  |  * 	Add Flat Device Tree support fot mpc7448hpc2 board | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright 2004-2006 Freescale Semiconductor, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-08-23 10:19:50 +08:00
										 |  |  |  * This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  |  * as published by the Free Software Foundation; either version | 
					
						
							|  |  |  |  * 2 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/stddef.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/pci.h>
 | 
					
						
							|  |  |  | #include <linux/kdev_t.h>
 | 
					
						
							|  |  |  | #include <linux/console.h>
 | 
					
						
							| 
									
										
										
										
											2011-05-27 13:23:32 -04:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  | #include <linux/delay.h>
 | 
					
						
							|  |  |  | #include <linux/irq.h>
 | 
					
						
							|  |  |  | #include <linux/seq_file.h>
 | 
					
						
							|  |  |  | #include <linux/root_dev.h>
 | 
					
						
							|  |  |  | #include <linux/serial.h>
 | 
					
						
							|  |  |  | #include <linux/tty.h>
 | 
					
						
							|  |  |  | #include <linux/serial_core.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/time.h>
 | 
					
						
							|  |  |  | #include <asm/machdep.h>
 | 
					
						
							|  |  |  | #include <asm/prom.h>
 | 
					
						
							|  |  |  | #include <asm/udbg.h>
 | 
					
						
							|  |  |  | #include <asm/tsi108.h>
 | 
					
						
							|  |  |  | #include <asm/pci-bridge.h>
 | 
					
						
							|  |  |  | #include <asm/reg.h>
 | 
					
						
							|  |  |  | #include <mm/mmu_decl.h>
 | 
					
						
							| 
									
										
										
										
											2007-05-08 07:25:22 +10:00
										 |  |  | #include <asm/tsi108_pci.h>
 | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  | #include <asm/tsi108_irq.h>
 | 
					
						
							|  |  |  | #include <asm/mpic.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #undef DEBUG
 | 
					
						
							|  |  |  | #ifdef DEBUG
 | 
					
						
							|  |  |  | #define DBG(fmt...) do { printk(fmt); } while(0)
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define DBG(fmt...) do { } while(0)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-08 07:27:15 +10:00
										 |  |  | #define MPC7448HPC2_PCI_CFG_PHYS 0xfb000000
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-22 00:23:57 -05:00
										 |  |  | int mpc7448_hpc2_exclude_device(struct pci_controller *hose, | 
					
						
							|  |  |  | 				u_char bus, u_char devfn) | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (bus == 0 && PCI_SLOT(devfn) == 0) | 
					
						
							|  |  |  | 		return PCIBIOS_DEVICE_NOT_FOUND; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return PCIBIOS_SUCCESSFUL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init mpc7448_hpc2_setup_arch(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct device_node *np; | 
					
						
							|  |  |  | 	if (ppc_md.progress) | 
					
						
							|  |  |  | 		ppc_md.progress("mpc7448_hpc2_setup_arch():set_bridge", 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tsi108_csr_vir_base = get_vir_csrbase(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* setup PCI host bridge */ | 
					
						
							|  |  |  | #ifdef CONFIG_PCI
 | 
					
						
							| 
									
										
										
										
											2007-10-04 00:28:43 -05:00
										 |  |  | 	for_each_compatible_node(np, "pci", "tsi108-pci") | 
					
						
							| 
									
										
										
										
											2007-05-08 07:27:15 +10:00
										 |  |  | 		tsi108_setup_pci(np, MPC7448HPC2_PCI_CFG_PHYS, 0); | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ppc_md.pci_exclude_device = mpc7448_hpc2_exclude_device; | 
					
						
							|  |  |  | 	if (ppc_md.progress) | 
					
						
							|  |  |  | 		ppc_md.progress("tsi108: resources set", 0x100); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	printk(KERN_INFO "MPC7448HPC2 (TAIGA) Platform\n"); | 
					
						
							|  |  |  | 	printk(KERN_INFO | 
					
						
							|  |  |  | 	       "Jointly ported by Freescale and Tundra Semiconductor\n"); | 
					
						
							|  |  |  | 	printk(KERN_INFO | 
					
						
							|  |  |  | 	       "Enabling L2 cache then enabling the HID0 prefetch engine.\n"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2007-08-01 19:41:09 +10:00
										 |  |  |  * Interrupt setup and service.  Interrupts on the mpc7448_hpc2 come | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  |  * from the four external INT pins, PCI interrupts are routed via | 
					
						
							|  |  |  |  * PCI interrupt control registers, it generates internal IRQ23 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Interrupt routing on the Taiga Board: | 
					
						
							|  |  |  |  * TSI108:PB_INT[0] -> CPU0:INT# | 
					
						
							|  |  |  |  * TSI108:PB_INT[1] -> CPU0:MCP# | 
					
						
							|  |  |  |  * TSI108:PB_INT[2] -> N/C | 
					
						
							|  |  |  |  * TSI108:PB_INT[3] -> N/C | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void __init mpc7448_hpc2_init_IRQ(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mpic *mpic; | 
					
						
							| 
									
										
										
										
											2006-11-14 14:31:50 +08:00
										 |  |  | #ifdef CONFIG_PCI
 | 
					
						
							| 
									
										
										
										
											2006-08-23 10:19:50 +08:00
										 |  |  | 	unsigned int cascade_pci_irq; | 
					
						
							|  |  |  | 	struct device_node *tsi_pci; | 
					
						
							| 
									
										
										
										
											2006-11-14 14:31:50 +08:00
										 |  |  | 	struct device_node *cascade_node = NULL; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-22 10:19:14 +00:00
										 |  |  | 	mpic = mpic_alloc(NULL, 0, MPIC_BIG_ENDIAN | | 
					
						
							| 
									
										
										
										
											2006-08-25 14:16:30 +10:00
										 |  |  | 			MPIC_SPV_EOI | MPIC_NO_PTHROU_DIS | MPIC_REGSET_TSI108, | 
					
						
							| 
									
										
										
										
											2011-12-22 10:19:12 +00:00
										 |  |  | 			24, 0, | 
					
						
							| 
									
										
										
										
											2006-08-23 10:19:50 +08:00
										 |  |  | 			"Tsi108_PIC"); | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-14 14:31:50 +08:00
										 |  |  | 	BUG_ON(mpic == NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-02 06:28:01 +00:00
										 |  |  | 	mpic_assign_isu(mpic, 0, mpic->paddr + 0x100); | 
					
						
							| 
									
										
										
										
											2006-11-14 14:31:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  | 	mpic_init(mpic); | 
					
						
							| 
									
										
										
										
											2006-08-23 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-14 14:31:50 +08:00
										 |  |  | #ifdef CONFIG_PCI
 | 
					
						
							| 
									
										
										
										
											2006-08-23 10:19:50 +08:00
										 |  |  | 	tsi_pci = of_find_node_by_type(NULL, "pci"); | 
					
						
							| 
									
										
										
										
											2006-11-14 14:31:50 +08:00
										 |  |  | 	if (tsi_pci == NULL) { | 
					
						
							| 
									
										
										
										
											2008-03-29 08:21:07 +11:00
										 |  |  | 		printk("%s: No tsi108 pci node found !\n", __func__); | 
					
						
							| 
									
										
										
										
											2006-08-23 10:19:50 +08:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-11-14 14:31:50 +08:00
										 |  |  | 	cascade_node = of_find_node_by_type(NULL, "pic-router"); | 
					
						
							|  |  |  | 	if (cascade_node == NULL) { | 
					
						
							| 
									
										
										
										
											2008-03-29 08:21:07 +11:00
										 |  |  | 		printk("%s: No tsi108 pci cascade node found !\n", __func__); | 
					
						
							| 
									
										
										
										
											2006-11-14 14:31:50 +08:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-23 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	cascade_pci_irq = irq_of_parse_and_map(tsi_pci, 0); | 
					
						
							| 
									
										
										
										
											2008-03-29 08:21:07 +11:00
										 |  |  | 	DBG("%s: tsi108 cascade_pci_irq = 0x%x\n", __func__, | 
					
						
							| 
									
										
										
										
											2006-11-14 14:31:50 +08:00
										 |  |  | 	    (u32) cascade_pci_irq); | 
					
						
							|  |  |  | 	tsi108_pci_int_init(cascade_node); | 
					
						
							| 
									
										
										
										
											2011-03-25 16:45:20 +01:00
										 |  |  | 	irq_set_handler_data(cascade_pci_irq, mpic); | 
					
						
							|  |  |  | 	irq_set_chained_handler(cascade_pci_irq, tsi108_irq_cascade); | 
					
						
							| 
									
										
										
										
											2006-11-14 14:31:50 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  | 	/* Configure MPIC outputs to CPU0 */ | 
					
						
							|  |  |  | 	tsi108_write_reg(TSI108_MPIC_OFFSET + 0x30c, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void mpc7448_hpc2_show_cpuinfo(struct seq_file *m) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	seq_printf(m, "vendor\t\t: Freescale Semiconductor\n"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void mpc7448_hpc2_restart(char *cmd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	local_irq_disable(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Set exception prefix high - to the firmware */ | 
					
						
							|  |  |  | 	_nmask_and_or_msr(0, MSR_IP); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (;;) ;		/* Spin until reset happens */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void mpc7448_hpc2_power_off(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	local_irq_disable(); | 
					
						
							|  |  |  | 	for (;;) ;		/* No way to shut power off with software */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void mpc7448_hpc2_halt(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	mpc7448_hpc2_power_off(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Called very early, device-tree isn't unflattened | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int __init mpc7448_hpc2_probe(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long root = of_get_flat_dt_root(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!of_flat_dt_is_compatible(root, "mpc74xx")) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mpc7448_machine_check_exception(struct pt_regs *regs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	const struct exception_table_entry *entry; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Are we prepared to handle this fault */ | 
					
						
							|  |  |  | 	if ((entry = search_exception_tables(regs->nip)) != NULL) { | 
					
						
							|  |  |  | 		tsi108_clear_pci_cfg_error(); | 
					
						
							|  |  |  | 		regs->msr |= MSR_RI; | 
					
						
							|  |  |  | 		regs->nip = entry->fixup; | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2006-08-23 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-13 15:07:15 +08:00
										 |  |  | define_machine(mpc7448_hpc2){ | 
					
						
							|  |  |  | 	.name 			= "MPC7448 HPC2", | 
					
						
							|  |  |  | 	.probe 			= mpc7448_hpc2_probe, | 
					
						
							|  |  |  | 	.setup_arch 		= mpc7448_hpc2_setup_arch, | 
					
						
							|  |  |  | 	.init_IRQ 		= mpc7448_hpc2_init_IRQ, | 
					
						
							|  |  |  | 	.show_cpuinfo 		= mpc7448_hpc2_show_cpuinfo, | 
					
						
							|  |  |  | 	.get_irq 		= mpic_get_irq, | 
					
						
							|  |  |  | 	.restart 		= mpc7448_hpc2_restart, | 
					
						
							|  |  |  | 	.calibrate_decr 	= generic_calibrate_decr, | 
					
						
							|  |  |  | 	.machine_check_exception= mpc7448_machine_check_exception, | 
					
						
							|  |  |  | 	.progress 		= udbg_progress, | 
					
						
							|  |  |  | }; |