mpc7448_hpc2.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*
  2. * mpc7448_hpc2.c
  3. *
  4. * Board setup routines for the Freescale mpc7448hpc2(taiga) platform
  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. *
  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.
  19. */
  20. #include <linux/stddef.h>
  21. #include <linux/kernel.h>
  22. #include <linux/pci.h>
  23. #include <linux/kdev_t.h>
  24. #include <linux/console.h>
  25. #include <linux/delay.h>
  26. #include <linux/irq.h>
  27. #include <linux/seq_file.h>
  28. #include <linux/root_dev.h>
  29. #include <linux/serial.h>
  30. #include <linux/tty.h>
  31. #include <linux/serial_core.h>
  32. #include <asm/system.h>
  33. #include <asm/time.h>
  34. #include <asm/machdep.h>
  35. #include <asm/prom.h>
  36. #include <asm/udbg.h>
  37. #include <asm/tsi108.h>
  38. #include <asm/pci-bridge.h>
  39. #include <asm/reg.h>
  40. #include <mm/mmu_decl.h>
  41. #include "mpc7448_hpc2.h"
  42. #include <asm/tsi108_pci.h>
  43. #include <asm/tsi108_irq.h>
  44. #include <asm/mpic.h>
  45. #undef DEBUG
  46. #ifdef DEBUG
  47. #define DBG(fmt...) do { printk(fmt); } while(0)
  48. #else
  49. #define DBG(fmt...) do { } while(0)
  50. #endif
  51. #define MPC7448HPC2_PCI_CFG_PHYS 0xfb000000
  52. #ifndef CONFIG_PCI
  53. isa_io_base = MPC7448_HPC2_ISA_IO_BASE;
  54. isa_mem_base = MPC7448_HPC2_ISA_MEM_BASE;
  55. pci_dram_offset = MPC7448_HPC2_PCI_MEM_OFFSET;
  56. #endif
  57. extern void _nmask_and_or_msr(unsigned long nmask, unsigned long or_val);
  58. int mpc7448_hpc2_exclude_device(u_char bus, u_char devfn)
  59. {
  60. if (bus == 0 && PCI_SLOT(devfn) == 0)
  61. return PCIBIOS_DEVICE_NOT_FOUND;
  62. else
  63. return PCIBIOS_SUCCESSFUL;
  64. }
  65. static void __init mpc7448_hpc2_setup_arch(void)
  66. {
  67. struct device_node *np;
  68. if (ppc_md.progress)
  69. ppc_md.progress("mpc7448_hpc2_setup_arch():set_bridge", 0);
  70. tsi108_csr_vir_base = get_vir_csrbase();
  71. /* setup PCI host bridge */
  72. #ifdef CONFIG_PCI
  73. for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;)
  74. tsi108_setup_pci(np, MPC7448HPC2_PCI_CFG_PHYS, 0);
  75. ppc_md.pci_exclude_device = mpc7448_hpc2_exclude_device;
  76. if (ppc_md.progress)
  77. ppc_md.progress("tsi108: resources set", 0x100);
  78. #endif
  79. printk(KERN_INFO "MPC7448HPC2 (TAIGA) Platform\n");
  80. printk(KERN_INFO
  81. "Jointly ported by Freescale and Tundra Semiconductor\n");
  82. printk(KERN_INFO
  83. "Enabling L2 cache then enabling the HID0 prefetch engine.\n");
  84. }
  85. /*
  86. * Interrupt setup and service. Interrrupts on the mpc7448_hpc2 come
  87. * from the four external INT pins, PCI interrupts are routed via
  88. * PCI interrupt control registers, it generates internal IRQ23
  89. *
  90. * Interrupt routing on the Taiga Board:
  91. * TSI108:PB_INT[0] -> CPU0:INT#
  92. * TSI108:PB_INT[1] -> CPU0:MCP#
  93. * TSI108:PB_INT[2] -> N/C
  94. * TSI108:PB_INT[3] -> N/C
  95. */
  96. static void __init mpc7448_hpc2_init_IRQ(void)
  97. {
  98. struct mpic *mpic;
  99. phys_addr_t mpic_paddr = 0;
  100. struct device_node *tsi_pic;
  101. #ifdef CONFIG_PCI
  102. unsigned int cascade_pci_irq;
  103. struct device_node *tsi_pci;
  104. struct device_node *cascade_node = NULL;
  105. #endif
  106. tsi_pic = of_find_node_by_type(NULL, "open-pic");
  107. if (tsi_pic) {
  108. unsigned int size;
  109. const void *prop = of_get_property(tsi_pic, "reg", &size);
  110. mpic_paddr = of_translate_address(tsi_pic, prop);
  111. }
  112. if (mpic_paddr == 0) {
  113. printk("%s: No tsi108 PIC found !\n", __FUNCTION__);
  114. return;
  115. }
  116. DBG("%s: tsi108 pic phys_addr = 0x%x\n", __FUNCTION__,
  117. (u32) mpic_paddr);
  118. mpic = mpic_alloc(tsi_pic, mpic_paddr,
  119. MPIC_PRIMARY | MPIC_BIG_ENDIAN | MPIC_WANTS_RESET |
  120. MPIC_SPV_EOI | MPIC_NO_PTHROU_DIS | MPIC_REGSET_TSI108,
  121. 24,
  122. NR_IRQS-4, /* num_sources used */
  123. "Tsi108_PIC");
  124. BUG_ON(mpic == NULL);
  125. mpic_assign_isu(mpic, 0, mpic_paddr + 0x100);
  126. mpic_init(mpic);
  127. #ifdef CONFIG_PCI
  128. tsi_pci = of_find_node_by_type(NULL, "pci");
  129. if (tsi_pci == NULL) {
  130. printk("%s: No tsi108 pci node found !\n", __FUNCTION__);
  131. return;
  132. }
  133. cascade_node = of_find_node_by_type(NULL, "pic-router");
  134. if (cascade_node == NULL) {
  135. printk("%s: No tsi108 pci cascade node found !\n", __FUNCTION__);
  136. return;
  137. }
  138. cascade_pci_irq = irq_of_parse_and_map(tsi_pci, 0);
  139. DBG("%s: tsi108 cascade_pci_irq = 0x%x\n", __FUNCTION__,
  140. (u32) cascade_pci_irq);
  141. tsi108_pci_int_init(cascade_node);
  142. set_irq_data(cascade_pci_irq, mpic);
  143. set_irq_chained_handler(cascade_pci_irq, tsi108_irq_cascade);
  144. #endif
  145. /* Configure MPIC outputs to CPU0 */
  146. tsi108_write_reg(TSI108_MPIC_OFFSET + 0x30c, 0);
  147. of_node_put(tsi_pic);
  148. }
  149. void mpc7448_hpc2_show_cpuinfo(struct seq_file *m)
  150. {
  151. seq_printf(m, "vendor\t\t: Freescale Semiconductor\n");
  152. seq_printf(m, "machine\t\t: MPC7448hpc2\n");
  153. }
  154. void mpc7448_hpc2_restart(char *cmd)
  155. {
  156. local_irq_disable();
  157. /* Set exception prefix high - to the firmware */
  158. _nmask_and_or_msr(0, MSR_IP);
  159. for (;;) ; /* Spin until reset happens */
  160. }
  161. void mpc7448_hpc2_power_off(void)
  162. {
  163. local_irq_disable();
  164. for (;;) ; /* No way to shut power off with software */
  165. }
  166. void mpc7448_hpc2_halt(void)
  167. {
  168. mpc7448_hpc2_power_off();
  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. if (!of_flat_dt_is_compatible(root, "mpc74xx"))
  177. return 0;
  178. return 1;
  179. }
  180. static int mpc7448_machine_check_exception(struct pt_regs *regs)
  181. {
  182. const struct exception_table_entry *entry;
  183. /* Are we prepared to handle this fault */
  184. if ((entry = search_exception_tables(regs->nip)) != NULL) {
  185. tsi108_clear_pci_cfg_error();
  186. regs->msr |= MSR_RI;
  187. regs->nip = entry->fixup;
  188. return 1;
  189. }
  190. return 0;
  191. }
  192. define_machine(mpc7448_hpc2){
  193. .name = "MPC7448 HPC2",
  194. .probe = mpc7448_hpc2_probe,
  195. .setup_arch = mpc7448_hpc2_setup_arch,
  196. .init_IRQ = mpc7448_hpc2_init_IRQ,
  197. .show_cpuinfo = mpc7448_hpc2_show_cpuinfo,
  198. .get_irq = mpic_get_irq,
  199. .restart = mpc7448_hpc2_restart,
  200. .calibrate_decr = generic_calibrate_decr,
  201. .machine_check_exception= mpc7448_machine_check_exception,
  202. .progress = udbg_progress,
  203. };