mpc85xx_rdb.c 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  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. #ifdef 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. mpc85xx_smp_init();
  80. fsl_pci_assign_primary();
  81. #ifdef CONFIG_QUICC_ENGINE
  82. np = of_find_compatible_node(NULL, NULL, "fsl,qe");
  83. if (!np) {
  84. pr_err("%s: Could not find Quicc Engine node\n", __func__);
  85. goto qe_fail;
  86. }
  87. qe_reset();
  88. of_node_put(np);
  89. np = of_find_node_by_name(NULL, "par_io");
  90. if (np) {
  91. struct device_node *ucc;
  92. par_io_init(np);
  93. of_node_put(np);
  94. for_each_node_by_name(ucc, "ucc")
  95. par_io_of_config(ucc);
  96. }
  97. #if defined(CONFIG_UCC_GETH) || defined(CONFIG_SERIAL_QE)
  98. if (machine_is(p1025_rdb)) {
  99. struct ccsr_guts __iomem *guts;
  100. np = of_find_node_by_name(NULL, "global-utilities");
  101. if (np) {
  102. guts = of_iomap(np, 0);
  103. if (!guts) {
  104. pr_err("mpc85xx-rdb: could not map global utilities register\n");
  105. } else {
  106. /* P1025 has pins muxed for QE and other functions. To
  107. * enable QE UEC mode, we need to set bit QE0 for UCC1
  108. * in Eth mode, QE0 and QE3 for UCC5 in Eth mode, QE9
  109. * and QE12 for QE MII management singals in PMUXCR
  110. * register.
  111. */
  112. setbits32(&guts->pmuxcr, MPC85xx_PMUXCR_QE(0) |
  113. MPC85xx_PMUXCR_QE(3) |
  114. MPC85xx_PMUXCR_QE(9) |
  115. MPC85xx_PMUXCR_QE(12));
  116. iounmap(guts);
  117. }
  118. of_node_put(np);
  119. }
  120. }
  121. #endif
  122. qe_fail:
  123. #endif /* CONFIG_QUICC_ENGINE */
  124. printk(KERN_INFO "MPC85xx RDB board from Freescale Semiconductor\n");
  125. }
  126. machine_arch_initcall(p2020_rdb, mpc85xx_common_publish_devices);
  127. machine_arch_initcall(p2020_rdb_pc, mpc85xx_common_publish_devices);
  128. machine_arch_initcall(p1020_mbg_pc, mpc85xx_common_publish_devices);
  129. machine_arch_initcall(p1020_rdb, mpc85xx_common_publish_devices);
  130. machine_arch_initcall(p1020_rdb_pc, mpc85xx_common_publish_devices);
  131. machine_arch_initcall(p1020_utm_pc, mpc85xx_common_publish_devices);
  132. machine_arch_initcall(p1021_rdb_pc, mpc85xx_common_publish_devices);
  133. machine_arch_initcall(p1025_rdb, mpc85xx_common_publish_devices);
  134. machine_arch_initcall(p1024_rdb, mpc85xx_common_publish_devices);
  135. /*
  136. * Called very early, device-tree isn't unflattened
  137. */
  138. static int __init p2020_rdb_probe(void)
  139. {
  140. unsigned long root = of_get_flat_dt_root();
  141. if (of_flat_dt_is_compatible(root, "fsl,P2020RDB"))
  142. return 1;
  143. return 0;
  144. }
  145. static int __init p1020_rdb_probe(void)
  146. {
  147. unsigned long root = of_get_flat_dt_root();
  148. if (of_flat_dt_is_compatible(root, "fsl,P1020RDB"))
  149. return 1;
  150. return 0;
  151. }
  152. static int __init p1020_rdb_pc_probe(void)
  153. {
  154. unsigned long root = of_get_flat_dt_root();
  155. return of_flat_dt_is_compatible(root, "fsl,P1020RDB-PC");
  156. }
  157. static int __init p1021_rdb_pc_probe(void)
  158. {
  159. unsigned long root = of_get_flat_dt_root();
  160. if (of_flat_dt_is_compatible(root, "fsl,P1021RDB-PC"))
  161. return 1;
  162. return 0;
  163. }
  164. static int __init p2020_rdb_pc_probe(void)
  165. {
  166. unsigned long root = of_get_flat_dt_root();
  167. if (of_flat_dt_is_compatible(root, "fsl,P2020RDB-PC"))
  168. return 1;
  169. return 0;
  170. }
  171. static int __init p1025_rdb_probe(void)
  172. {
  173. unsigned long root = of_get_flat_dt_root();
  174. return of_flat_dt_is_compatible(root, "fsl,P1025RDB");
  175. }
  176. static int __init p1020_mbg_pc_probe(void)
  177. {
  178. unsigned long root = of_get_flat_dt_root();
  179. return of_flat_dt_is_compatible(root, "fsl,P1020MBG-PC");
  180. }
  181. static int __init p1020_utm_pc_probe(void)
  182. {
  183. unsigned long root = of_get_flat_dt_root();
  184. return of_flat_dt_is_compatible(root, "fsl,P1020UTM-PC");
  185. }
  186. static int __init p1024_rdb_probe(void)
  187. {
  188. unsigned long root = of_get_flat_dt_root();
  189. return of_flat_dt_is_compatible(root, "fsl,P1024RDB");
  190. }
  191. define_machine(p2020_rdb) {
  192. .name = "P2020 RDB",
  193. .probe = p2020_rdb_probe,
  194. .setup_arch = mpc85xx_rdb_setup_arch,
  195. .init_IRQ = mpc85xx_rdb_pic_init,
  196. #ifdef CONFIG_PCI
  197. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  198. #endif
  199. .get_irq = mpic_get_irq,
  200. .restart = fsl_rstcr_restart,
  201. .calibrate_decr = generic_calibrate_decr,
  202. .progress = udbg_progress,
  203. };
  204. define_machine(p1020_rdb) {
  205. .name = "P1020 RDB",
  206. .probe = p1020_rdb_probe,
  207. .setup_arch = mpc85xx_rdb_setup_arch,
  208. .init_IRQ = mpc85xx_rdb_pic_init,
  209. #ifdef CONFIG_PCI
  210. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  211. #endif
  212. .get_irq = mpic_get_irq,
  213. .restart = fsl_rstcr_restart,
  214. .calibrate_decr = generic_calibrate_decr,
  215. .progress = udbg_progress,
  216. };
  217. define_machine(p1021_rdb_pc) {
  218. .name = "P1021 RDB-PC",
  219. .probe = p1021_rdb_pc_probe,
  220. .setup_arch = mpc85xx_rdb_setup_arch,
  221. .init_IRQ = mpc85xx_rdb_pic_init,
  222. #ifdef CONFIG_PCI
  223. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  224. #endif
  225. .get_irq = mpic_get_irq,
  226. .restart = fsl_rstcr_restart,
  227. .calibrate_decr = generic_calibrate_decr,
  228. .progress = udbg_progress,
  229. };
  230. define_machine(p2020_rdb_pc) {
  231. .name = "P2020RDB-PC",
  232. .probe = p2020_rdb_pc_probe,
  233. .setup_arch = mpc85xx_rdb_setup_arch,
  234. .init_IRQ = mpc85xx_rdb_pic_init,
  235. #ifdef CONFIG_PCI
  236. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  237. #endif
  238. .get_irq = mpic_get_irq,
  239. .restart = fsl_rstcr_restart,
  240. .calibrate_decr = generic_calibrate_decr,
  241. .progress = udbg_progress,
  242. };
  243. define_machine(p1025_rdb) {
  244. .name = "P1025 RDB",
  245. .probe = p1025_rdb_probe,
  246. .setup_arch = mpc85xx_rdb_setup_arch,
  247. .init_IRQ = mpc85xx_rdb_pic_init,
  248. #ifdef CONFIG_PCI
  249. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  250. #endif
  251. .get_irq = mpic_get_irq,
  252. .restart = fsl_rstcr_restart,
  253. .calibrate_decr = generic_calibrate_decr,
  254. .progress = udbg_progress,
  255. };
  256. define_machine(p1020_mbg_pc) {
  257. .name = "P1020 MBG-PC",
  258. .probe = p1020_mbg_pc_probe,
  259. .setup_arch = mpc85xx_rdb_setup_arch,
  260. .init_IRQ = mpc85xx_rdb_pic_init,
  261. #ifdef CONFIG_PCI
  262. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  263. #endif
  264. .get_irq = mpic_get_irq,
  265. .restart = fsl_rstcr_restart,
  266. .calibrate_decr = generic_calibrate_decr,
  267. .progress = udbg_progress,
  268. };
  269. define_machine(p1020_utm_pc) {
  270. .name = "P1020 UTM-PC",
  271. .probe = p1020_utm_pc_probe,
  272. .setup_arch = mpc85xx_rdb_setup_arch,
  273. .init_IRQ = mpc85xx_rdb_pic_init,
  274. #ifdef CONFIG_PCI
  275. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  276. #endif
  277. .get_irq = mpic_get_irq,
  278. .restart = fsl_rstcr_restart,
  279. .calibrate_decr = generic_calibrate_decr,
  280. .progress = udbg_progress,
  281. };
  282. define_machine(p1020_rdb_pc) {
  283. .name = "P1020RDB-PC",
  284. .probe = p1020_rdb_pc_probe,
  285. .setup_arch = mpc85xx_rdb_setup_arch,
  286. .init_IRQ = mpc85xx_rdb_pic_init,
  287. #ifdef CONFIG_PCI
  288. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  289. #endif
  290. .get_irq = mpic_get_irq,
  291. .restart = fsl_rstcr_restart,
  292. .calibrate_decr = generic_calibrate_decr,
  293. .progress = udbg_progress,
  294. };
  295. define_machine(p1024_rdb) {
  296. .name = "P1024 RDB",
  297. .probe = p1024_rdb_probe,
  298. .setup_arch = mpc85xx_rdb_setup_arch,
  299. .init_IRQ = mpc85xx_rdb_pic_init,
  300. #ifdef CONFIG_PCI
  301. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  302. #endif
  303. .get_irq = mpic_get_irq,
  304. .restart = fsl_rstcr_restart,
  305. .calibrate_decr = generic_calibrate_decr,
  306. .progress = udbg_progress,
  307. };