mpc86xx_hpcn.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. /*
  2. * MPC86xx HPCN board specific routines
  3. *
  4. * Recode: ZHANG WEI <wei.zhang@freescale.com>
  5. * Initial author: Xianghua Xiao <x.xiao@freescale.com>
  6. *
  7. * Copyright 2006 Freescale Semiconductor Inc.
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by the
  11. * Free Software Foundation; either version 2 of the License, or (at your
  12. * option) any later version.
  13. */
  14. #include <linux/config.h>
  15. #include <linux/stddef.h>
  16. #include <linux/kernel.h>
  17. #include <linux/pci.h>
  18. #include <linux/kdev_t.h>
  19. #include <linux/delay.h>
  20. #include <linux/seq_file.h>
  21. #include <linux/root_dev.h>
  22. #include <asm/system.h>
  23. #include <asm/time.h>
  24. #include <asm/machdep.h>
  25. #include <asm/pci-bridge.h>
  26. #include <asm/mpc86xx.h>
  27. #include <asm/prom.h>
  28. #include <mm/mmu_decl.h>
  29. #include <asm/udbg.h>
  30. #include <asm/i8259.h>
  31. #include <asm/mpic.h>
  32. #include <sysdev/fsl_soc.h>
  33. #include "mpc86xx.h"
  34. #ifndef CONFIG_PCI
  35. unsigned long isa_io_base = 0;
  36. unsigned long isa_mem_base = 0;
  37. unsigned long pci_dram_offset = 0;
  38. #endif
  39. /*
  40. * Internal interrupts are all Level Sensitive, and Positive Polarity
  41. */
  42. static u_char mpc86xx_hpcn_openpic_initsenses[] __initdata = {
  43. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 0: Reserved */
  44. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 1: MCM */
  45. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 2: DDR DRAM */
  46. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 3: LBIU */
  47. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 4: DMA 0 */
  48. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 5: DMA 1 */
  49. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 6: DMA 2 */
  50. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 7: DMA 3 */
  51. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 8: PCIE1 */
  52. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 9: PCIE2 */
  53. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 10: Reserved */
  54. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 11: Reserved */
  55. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 12: DUART2 */
  56. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 13: TSEC 1 Transmit */
  57. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 14: TSEC 1 Receive */
  58. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 15: TSEC 3 transmit */
  59. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 16: TSEC 3 receive */
  60. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 17: TSEC 3 error */
  61. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 18: TSEC 1 Receive/Transmit Error */
  62. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 19: TSEC 2 Transmit */
  63. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 20: TSEC 2 Receive */
  64. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 21: TSEC 4 transmit */
  65. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 22: TSEC 4 receive */
  66. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 23: TSEC 4 error */
  67. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 24: TSEC 2 Receive/Transmit Error */
  68. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 25: Unused */
  69. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 26: DUART1 */
  70. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 27: I2C */
  71. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 28: Performance Monitor */
  72. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 29: Unused */
  73. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 30: Unused */
  74. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 31: Unused */
  75. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 32: SRIO error/write-port unit */
  76. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 33: SRIO outbound doorbell */
  77. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 34: SRIO inbound doorbell */
  78. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 35: Unused */
  79. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 36: Unused */
  80. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 37: SRIO outbound message unit 1 */
  81. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 38: SRIO inbound message unit 1 */
  82. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 39: SRIO outbound message unit 2 */
  83. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 40: SRIO inbound message unit 2 */
  84. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 41: Unused */
  85. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 42: Unused */
  86. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 43: Unused */
  87. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 44: Unused */
  88. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 45: Unused */
  89. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 46: Unused */
  90. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* Internal 47: Unused */
  91. 0x0, /* External 0: */
  92. 0x0, /* External 1: */
  93. 0x0, /* External 2: */
  94. 0x0, /* External 3: */
  95. 0x0, /* External 4: */
  96. 0x0, /* External 5: */
  97. 0x0, /* External 6: */
  98. 0x0, /* External 7: */
  99. (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 8: Pixis FPGA */
  100. (IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE), /* External 9: ULI 8259 INTR Cascade */
  101. (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 10: Quad ETH PHY */
  102. 0x0, /* External 11: */
  103. 0x0,
  104. 0x0,
  105. 0x0,
  106. 0x0,
  107. };
  108. void __init
  109. mpc86xx_hpcn_init_irq(void)
  110. {
  111. struct mpic *mpic1;
  112. phys_addr_t openpic_paddr;
  113. /* Determine the Physical Address of the OpenPIC regs */
  114. openpic_paddr = get_immrbase() + MPC86xx_OPENPIC_OFFSET;
  115. /* Alloc mpic structure and per isu has 16 INT entries. */
  116. mpic1 = mpic_alloc(openpic_paddr,
  117. MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN,
  118. 16, MPC86xx_OPENPIC_IRQ_OFFSET, 0, 250,
  119. mpc86xx_hpcn_openpic_initsenses,
  120. sizeof(mpc86xx_hpcn_openpic_initsenses),
  121. " MPIC ");
  122. BUG_ON(mpic1 == NULL);
  123. /* 48 Internal Interrupts */
  124. mpic_assign_isu(mpic1, 0, openpic_paddr + 0x10200);
  125. mpic_assign_isu(mpic1, 1, openpic_paddr + 0x10400);
  126. mpic_assign_isu(mpic1, 2, openpic_paddr + 0x10600);
  127. /* 16 External interrupts */
  128. mpic_assign_isu(mpic1, 3, openpic_paddr + 0x10000);
  129. mpic_init(mpic1);
  130. #ifdef CONFIG_PCI
  131. mpic_setup_cascade(MPC86xx_IRQ_EXT9, i8259_irq_cascade, NULL);
  132. i8259_init(0, I8259_OFFSET);
  133. #endif
  134. }
  135. #ifdef CONFIG_PCI
  136. /*
  137. * interrupt routing
  138. */
  139. int
  140. mpc86xx_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin)
  141. {
  142. static char pci_irq_table[][4] = {
  143. /*
  144. * PCI IDSEL/INTPIN->INTLINE
  145. * A B C D
  146. */
  147. {PIRQA, PIRQB, PIRQC, PIRQD}, /* IDSEL 17 -- PCI Slot 1 */
  148. {PIRQB, PIRQC, PIRQD, PIRQA}, /* IDSEL 18 -- PCI Slot 2 */
  149. {0, 0, 0, 0}, /* IDSEL 19 */
  150. {0, 0, 0, 0}, /* IDSEL 20 */
  151. {0, 0, 0, 0}, /* IDSEL 21 */
  152. {0, 0, 0, 0}, /* IDSEL 22 */
  153. {0, 0, 0, 0}, /* IDSEL 23 */
  154. {0, 0, 0, 0}, /* IDSEL 24 */
  155. {0, 0, 0, 0}, /* IDSEL 25 */
  156. {PIRQD, PIRQA, PIRQB, PIRQC}, /* IDSEL 26 -- PCI Bridge*/
  157. {PIRQC, 0, 0, 0}, /* IDSEL 27 -- LAN */
  158. {PIRQE, PIRQF, PIRQH, PIRQ7}, /* IDSEL 28 -- USB 1.1 */
  159. {PIRQE, PIRQF, PIRQG, 0}, /* IDSEL 29 -- Audio & Modem */
  160. {PIRQH, 0, 0, 0}, /* IDSEL 30 -- LPC & PMU*/
  161. {PIRQD, 0, 0, 0}, /* IDSEL 31 -- ATA */
  162. };
  163. const long min_idsel = 17, max_idsel = 31, irqs_per_slot = 4;
  164. return PCI_IRQ_TABLE_LOOKUP + I8259_OFFSET;
  165. }
  166. int
  167. mpc86xx_exclude_device(u_char bus, u_char devfn)
  168. {
  169. #if !defined(CONFIG_PCI)
  170. if (bus == 0 && PCI_SLOT(devfn) == 0)
  171. return PCIBIOS_DEVICE_NOT_FOUND;
  172. #endif
  173. return PCIBIOS_SUCCESSFUL;
  174. }
  175. #endif /* CONFIG_PCI */
  176. static void __init
  177. mpc86xx_hpcn_setup_arch(void)
  178. {
  179. struct device_node *np;
  180. if (ppc_md.progress)
  181. ppc_md.progress("mpc86xx_hpcn_setup_arch()", 0);
  182. np = of_find_node_by_type(NULL, "cpu");
  183. if (np != 0) {
  184. unsigned int *fp;
  185. fp = (int *)get_property(np, "clock-frequency", NULL);
  186. if (fp != 0)
  187. loops_per_jiffy = *fp / HZ;
  188. else
  189. loops_per_jiffy = 50000000 / HZ;
  190. of_node_put(np);
  191. }
  192. #ifdef CONFIG_PCI
  193. for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;)
  194. add_bridge(np);
  195. ppc_md.pci_swizzle = common_swizzle;
  196. ppc_md.pci_map_irq = mpc86xx_map_irq;
  197. ppc_md.pci_exclude_device = mpc86xx_exclude_device;
  198. #endif
  199. printk("MPC86xx HPCN board from Freescale Semiconductor\n");
  200. #ifdef CONFIG_ROOT_NFS
  201. ROOT_DEV = Root_NFS;
  202. #else
  203. ROOT_DEV = Root_HDA1;
  204. #endif
  205. #ifdef CONFIG_SMP
  206. mpc86xx_smp_init();
  207. #endif
  208. }
  209. void
  210. mpc86xx_hpcn_show_cpuinfo(struct seq_file *m)
  211. {
  212. struct device_node *root;
  213. uint memsize = total_memory;
  214. const char *model = "";
  215. uint svid = mfspr(SPRN_SVR);
  216. seq_printf(m, "Vendor\t\t: Freescale Semiconductor\n");
  217. root = of_find_node_by_path("/");
  218. if (root)
  219. model = get_property(root, "model", NULL);
  220. seq_printf(m, "Machine\t\t: %s\n", model);
  221. of_node_put(root);
  222. seq_printf(m, "SVR\t\t: 0x%x\n", svid);
  223. seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024));
  224. }
  225. /*
  226. * Called very early, device-tree isn't unflattened
  227. */
  228. static int __init mpc86xx_hpcn_probe(void)
  229. {
  230. unsigned long root = of_get_flat_dt_root();
  231. if (of_flat_dt_is_compatible(root, "mpc86xx"))
  232. return 1; /* Looks good */
  233. return 0;
  234. }
  235. void
  236. mpc86xx_restart(char *cmd)
  237. {
  238. void __iomem *rstcr;
  239. rstcr = ioremap(get_immrbase() + MPC86XX_RSTCR_OFFSET, 0x100);
  240. local_irq_disable();
  241. /* Assert reset request to Reset Control Register */
  242. out_be32(rstcr, 0x2);
  243. /* not reached */
  244. }
  245. long __init
  246. mpc86xx_time_init(void)
  247. {
  248. unsigned int temp;
  249. /* Set the time base to zero */
  250. mtspr(SPRN_TBWL, 0);
  251. mtspr(SPRN_TBWU, 0);
  252. temp = mfspr(SPRN_HID0);
  253. temp |= HID0_TBEN;
  254. mtspr(SPRN_HID0, temp);
  255. asm volatile("isync");
  256. return 0;
  257. }
  258. define_machine(mpc86xx_hpcn) {
  259. .name = "MPC86xx HPCN",
  260. .probe = mpc86xx_hpcn_probe,
  261. .setup_arch = mpc86xx_hpcn_setup_arch,
  262. .init_IRQ = mpc86xx_hpcn_init_irq,
  263. .show_cpuinfo = mpc86xx_hpcn_show_cpuinfo,
  264. .get_irq = mpic_get_irq,
  265. .restart = mpc86xx_restart,
  266. .time_init = mpc86xx_time_init,
  267. .calibrate_decr = generic_calibrate_decr,
  268. .progress = udbg_progress,
  269. };