mpc85xx_rdb.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. /*
  2. * MPC85xx RDB Board Setup
  3. *
  4. * Copyright 2009,2012 Freescale Semiconductor Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the
  8. * Free Software Foundation; either version 2 of the License, or (at your
  9. * option) any later version.
  10. */
  11. #include <linux/stddef.h>
  12. #include <linux/kernel.h>
  13. #include <linux/pci.h>
  14. #include <linux/kdev_t.h>
  15. #include <linux/delay.h>
  16. #include <linux/seq_file.h>
  17. #include <linux/interrupt.h>
  18. #include <linux/of_platform.h>
  19. #include <asm/time.h>
  20. #include <asm/machdep.h>
  21. #include <asm/pci-bridge.h>
  22. #include <mm/mmu_decl.h>
  23. #include <asm/prom.h>
  24. #include <asm/udbg.h>
  25. #include <asm/mpic.h>
  26. #include <asm/qe.h>
  27. #include <asm/qe_ic.h>
  28. #include <asm/fsl_guts.h>
  29. #include <sysdev/fsl_soc.h>
  30. #include <sysdev/fsl_pci.h>
  31. #include "smp.h"
  32. #include "mpc85xx.h"
  33. #undef DEBUG
  34. #ifdef DEBUG
  35. #define DBG(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ## args)
  36. #else
  37. #define DBG(fmt, args...)
  38. #endif
  39. void __init mpc85xx_rdb_pic_init(void)
  40. {
  41. struct mpic *mpic;
  42. unsigned long root = of_get_flat_dt_root();
  43. #ifdef CONFIG_QUICC_ENGINE
  44. struct device_node *np;
  45. #endif
  46. if (of_flat_dt_is_compatible(root, "fsl,MPC85XXRDB-CAMP")) {
  47. mpic = mpic_alloc(NULL, 0, MPIC_NO_RESET |
  48. MPIC_BIG_ENDIAN |
  49. MPIC_SINGLE_DEST_CPU,
  50. 0, 256, " OpenPIC ");
  51. } else {
  52. mpic = mpic_alloc(NULL, 0,
  53. MPIC_BIG_ENDIAN |
  54. MPIC_SINGLE_DEST_CPU,
  55. 0, 256, " OpenPIC ");
  56. }
  57. BUG_ON(mpic == NULL);
  58. mpic_init(mpic);
  59. #ifdef CONFIG_QUICC_ENGINE
  60. np = of_find_compatible_node(NULL, NULL, "fsl,qe-ic");
  61. if (np) {
  62. qe_ic_init(np, 0, qe_ic_cascade_low_mpic,
  63. qe_ic_cascade_high_mpic);
  64. of_node_put(np);
  65. } else
  66. pr_err("%s: Could not find qe-ic node\n", __func__);
  67. #endif
  68. }
  69. /*
  70. * Setup the architecture
  71. */
  72. static void __init mpc85xx_rdb_setup_arch(void)
  73. {
  74. #if defined(CONFIG_PCI) || defined(CONFIG_QUICC_ENGINE)
  75. struct device_node *np;
  76. #endif
  77. if (ppc_md.progress)
  78. ppc_md.progress("mpc85xx_rdb_setup_arch()", 0);
  79. #ifdef CONFIG_PCI
  80. for_each_node_by_type(np, "pci") {
  81. if (of_device_is_compatible(np, "fsl,mpc8548-pcie"))
  82. fsl_add_bridge(np, 0);
  83. }
  84. #endif
  85. mpc85xx_smp_init();
  86. #ifdef CONFIG_QUICC_ENGINE
  87. np = of_find_compatible_node(NULL, NULL, "fsl,qe");
  88. if (!np) {
  89. pr_err("%s: Could not find Quicc Engine node\n", __func__);
  90. goto qe_fail;
  91. }
  92. qe_reset();
  93. of_node_put(np);
  94. np = of_find_node_by_name(NULL, "par_io");
  95. if (np) {
  96. struct device_node *ucc;
  97. par_io_init(np);
  98. of_node_put(np);
  99. for_each_node_by_name(ucc, "ucc")
  100. par_io_of_config(ucc);
  101. }
  102. #if defined(CONFIG_UCC_GETH) || defined(CONFIG_SERIAL_QE)
  103. if (machine_is(p1025_rdb)) {
  104. struct ccsr_guts_85xx __iomem *guts;
  105. np = of_find_node_by_name(NULL, "global-utilities");
  106. if (np) {
  107. guts = of_iomap(np, 0);
  108. if (!guts) {
  109. pr_err("mpc85xx-rdb: could not map global utilities register\n");
  110. } else {
  111. /* P1025 has pins muxed for QE and other functions. To
  112. * enable QE UEC mode, we need to set bit QE0 for UCC1
  113. * in Eth mode, QE0 and QE3 for UCC5 in Eth mode, QE9
  114. * and QE12 for QE MII management singals in PMUXCR
  115. * register.
  116. */
  117. setbits32(&guts->pmuxcr, MPC85xx_PMUXCR_QE(0) |
  118. MPC85xx_PMUXCR_QE(3) |
  119. MPC85xx_PMUXCR_QE(9) |
  120. MPC85xx_PMUXCR_QE(12));
  121. iounmap(guts);
  122. }
  123. of_node_put(np);
  124. }
  125. }
  126. #endif
  127. qe_fail:
  128. #endif /* CONFIG_QUICC_ENGINE */
  129. printk(KERN_INFO "MPC85xx RDB board from Freescale Semiconductor\n");
  130. }
  131. machine_device_initcall(p2020_rdb, mpc85xx_common_publish_devices);
  132. machine_device_initcall(p2020_rdb_pc, mpc85xx_common_publish_devices);
  133. machine_device_initcall(p1020_mbg_pc, mpc85xx_common_publish_devices);
  134. machine_device_initcall(p1020_rdb, mpc85xx_common_publish_devices);
  135. machine_device_initcall(p1020_rdb_pc, mpc85xx_common_publish_devices);
  136. machine_device_initcall(p1020_utm_pc, mpc85xx_common_publish_devices);
  137. machine_device_initcall(p1021_rdb_pc, mpc85xx_common_publish_devices);
  138. machine_device_initcall(p1025_rdb, mpc85xx_common_publish_devices);
  139. /*
  140. * Called very early, device-tree isn't unflattened
  141. */
  142. static int __init p2020_rdb_probe(void)
  143. {
  144. unsigned long root = of_get_flat_dt_root();
  145. if (of_flat_dt_is_compatible(root, "fsl,P2020RDB"))
  146. return 1;
  147. return 0;
  148. }
  149. static int __init p1020_rdb_probe(void)
  150. {
  151. unsigned long root = of_get_flat_dt_root();
  152. if (of_flat_dt_is_compatible(root, "fsl,P1020RDB"))
  153. return 1;
  154. return 0;
  155. }
  156. static int __init p1020_rdb_pc_probe(void)
  157. {
  158. unsigned long root = of_get_flat_dt_root();
  159. return of_flat_dt_is_compatible(root, "fsl,P1020RDB-PC");
  160. }
  161. static int __init p1021_rdb_pc_probe(void)
  162. {
  163. unsigned long root = of_get_flat_dt_root();
  164. if (of_flat_dt_is_compatible(root, "fsl,P1021RDB-PC"))
  165. return 1;
  166. return 0;
  167. }
  168. static int __init p2020_rdb_pc_probe(void)
  169. {
  170. unsigned long root = of_get_flat_dt_root();
  171. if (of_flat_dt_is_compatible(root, "fsl,P2020RDB-PC"))
  172. return 1;
  173. return 0;
  174. }
  175. static int __init p1025_rdb_probe(void)
  176. {
  177. unsigned long root = of_get_flat_dt_root();
  178. return of_flat_dt_is_compatible(root, "fsl,P1025RDB");
  179. }
  180. static int __init p1020_mbg_pc_probe(void)
  181. {
  182. unsigned long root = of_get_flat_dt_root();
  183. return of_flat_dt_is_compatible(root, "fsl,P1020MBG-PC");
  184. }
  185. static int __init p1020_utm_pc_probe(void)
  186. {
  187. unsigned long root = of_get_flat_dt_root();
  188. return of_flat_dt_is_compatible(root, "fsl,P1020UTM-PC");
  189. }
  190. define_machine(p2020_rdb) {
  191. .name = "P2020 RDB",
  192. .probe = p2020_rdb_probe,
  193. .setup_arch = mpc85xx_rdb_setup_arch,
  194. .init_IRQ = mpc85xx_rdb_pic_init,
  195. #ifdef CONFIG_PCI
  196. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  197. #endif
  198. .get_irq = mpic_get_irq,
  199. .restart = fsl_rstcr_restart,
  200. .calibrate_decr = generic_calibrate_decr,
  201. .progress = udbg_progress,
  202. };
  203. define_machine(p1020_rdb) {
  204. .name = "P1020 RDB",
  205. .probe = p1020_rdb_probe,
  206. .setup_arch = mpc85xx_rdb_setup_arch,
  207. .init_IRQ = mpc85xx_rdb_pic_init,
  208. #ifdef CONFIG_PCI
  209. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  210. #endif
  211. .get_irq = mpic_get_irq,
  212. .restart = fsl_rstcr_restart,
  213. .calibrate_decr = generic_calibrate_decr,
  214. .progress = udbg_progress,
  215. };
  216. define_machine(p1021_rdb_pc) {
  217. .name = "P1021 RDB-PC",
  218. .probe = p1021_rdb_pc_probe,
  219. .setup_arch = mpc85xx_rdb_setup_arch,
  220. .init_IRQ = mpc85xx_rdb_pic_init,
  221. #ifdef CONFIG_PCI
  222. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  223. #endif
  224. .get_irq = mpic_get_irq,
  225. .restart = fsl_rstcr_restart,
  226. .calibrate_decr = generic_calibrate_decr,
  227. .progress = udbg_progress,
  228. };
  229. define_machine(p2020_rdb_pc) {
  230. .name = "P2020RDB-PC",
  231. .probe = p2020_rdb_pc_probe,
  232. .setup_arch = mpc85xx_rdb_setup_arch,
  233. .init_IRQ = mpc85xx_rdb_pic_init,
  234. #ifdef CONFIG_PCI
  235. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  236. #endif
  237. .get_irq = mpic_get_irq,
  238. .restart = fsl_rstcr_restart,
  239. .calibrate_decr = generic_calibrate_decr,
  240. .progress = udbg_progress,
  241. };
  242. define_machine(p1025_rdb) {
  243. .name = "P1025 RDB",
  244. .probe = p1025_rdb_probe,
  245. .setup_arch = mpc85xx_rdb_setup_arch,
  246. .init_IRQ = mpc85xx_rdb_pic_init,
  247. #ifdef CONFIG_PCI
  248. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  249. #endif
  250. .get_irq = mpic_get_irq,
  251. .restart = fsl_rstcr_restart,
  252. .calibrate_decr = generic_calibrate_decr,
  253. .progress = udbg_progress,
  254. };
  255. define_machine(p1020_mbg_pc) {
  256. .name = "P1020 MBG-PC",
  257. .probe = p1020_mbg_pc_probe,
  258. .setup_arch = mpc85xx_rdb_setup_arch,
  259. .init_IRQ = mpc85xx_rdb_pic_init,
  260. #ifdef CONFIG_PCI
  261. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  262. #endif
  263. .get_irq = mpic_get_irq,
  264. .restart = fsl_rstcr_restart,
  265. .calibrate_decr = generic_calibrate_decr,
  266. .progress = udbg_progress,
  267. };
  268. define_machine(p1020_utm_pc) {
  269. .name = "P1020 UTM-PC",
  270. .probe = p1020_utm_pc_probe,
  271. .setup_arch = mpc85xx_rdb_setup_arch,
  272. .init_IRQ = mpc85xx_rdb_pic_init,
  273. #ifdef CONFIG_PCI
  274. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  275. #endif
  276. .get_irq = mpic_get_irq,
  277. .restart = fsl_rstcr_restart,
  278. .calibrate_decr = generic_calibrate_decr,
  279. .progress = udbg_progress,
  280. };
  281. define_machine(p1020_rdb_pc) {
  282. .name = "P1020RDB-PC",
  283. .probe = p1020_rdb_pc_probe,
  284. .setup_arch = mpc85xx_rdb_setup_arch,
  285. .init_IRQ = mpc85xx_rdb_pic_init,
  286. #ifdef CONFIG_PCI
  287. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  288. #endif
  289. .get_irq = mpic_get_irq,
  290. .restart = fsl_rstcr_restart,
  291. .calibrate_decr = generic_calibrate_decr,
  292. .progress = udbg_progress,
  293. };