mpc85xx_rdb.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. /*
  2. * MPC85xx RDB Board Setup
  3. *
  4. * Copyright 2009,2012-2013 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 <linux/fsl/guts.h>
  20. #include <asm/time.h>
  21. #include <asm/machdep.h>
  22. #include <asm/pci-bridge.h>
  23. #include <mm/mmu_decl.h>
  24. #include <asm/prom.h>
  25. #include <asm/udbg.h>
  26. #include <asm/mpic.h>
  27. #include <soc/fsl/qe/qe.h>
  28. #include <soc/fsl/qe/qe_ic.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. #ifdef CONFIG_QUICC_ENGINE
  43. struct device_node *np;
  44. #endif
  45. if (of_machine_is_compatible("fsl,MPC85XXRDB-CAMP")) {
  46. mpic = mpic_alloc(NULL, 0, MPIC_NO_RESET |
  47. MPIC_BIG_ENDIAN |
  48. MPIC_SINGLE_DEST_CPU,
  49. 0, 256, " OpenPIC ");
  50. } else {
  51. mpic = mpic_alloc(NULL, 0,
  52. MPIC_BIG_ENDIAN |
  53. MPIC_SINGLE_DEST_CPU,
  54. 0, 256, " OpenPIC ");
  55. }
  56. BUG_ON(mpic == NULL);
  57. mpic_init(mpic);
  58. #ifdef CONFIG_QUICC_ENGINE
  59. np = of_find_compatible_node(NULL, NULL, "fsl,qe-ic");
  60. if (np) {
  61. qe_ic_init(np, 0, qe_ic_cascade_low_mpic,
  62. qe_ic_cascade_high_mpic);
  63. of_node_put(np);
  64. } else
  65. pr_err("%s: Could not find qe-ic node\n", __func__);
  66. #endif
  67. }
  68. /*
  69. * Setup the architecture
  70. */
  71. static void __init mpc85xx_rdb_setup_arch(void)
  72. {
  73. if (ppc_md.progress)
  74. ppc_md.progress("mpc85xx_rdb_setup_arch()", 0);
  75. mpc85xx_smp_init();
  76. fsl_pci_assign_primary();
  77. #ifdef CONFIG_QUICC_ENGINE
  78. mpc85xx_qe_init();
  79. mpc85xx_qe_par_io_init();
  80. #if defined(CONFIG_UCC_GETH) || defined(CONFIG_SERIAL_QE)
  81. if (machine_is(p1025_rdb)) {
  82. struct device_node *np;
  83. struct ccsr_guts __iomem *guts;
  84. np = of_find_node_by_name(NULL, "global-utilities");
  85. if (np) {
  86. guts = of_iomap(np, 0);
  87. if (!guts) {
  88. pr_err("mpc85xx-rdb: could not map global utilities register\n");
  89. } else {
  90. /* P1025 has pins muxed for QE and other functions. To
  91. * enable QE UEC mode, we need to set bit QE0 for UCC1
  92. * in Eth mode, QE0 and QE3 for UCC5 in Eth mode, QE9
  93. * and QE12 for QE MII management singals in PMUXCR
  94. * register.
  95. */
  96. setbits32(&guts->pmuxcr, MPC85xx_PMUXCR_QE(0) |
  97. MPC85xx_PMUXCR_QE(3) |
  98. MPC85xx_PMUXCR_QE(9) |
  99. MPC85xx_PMUXCR_QE(12));
  100. iounmap(guts);
  101. }
  102. of_node_put(np);
  103. }
  104. }
  105. #endif
  106. #endif /* CONFIG_QUICC_ENGINE */
  107. printk(KERN_INFO "MPC85xx RDB board from Freescale Semiconductor\n");
  108. }
  109. machine_arch_initcall(p2020_rdb, mpc85xx_common_publish_devices);
  110. machine_arch_initcall(p2020_rdb_pc, mpc85xx_common_publish_devices);
  111. machine_arch_initcall(p1020_mbg_pc, mpc85xx_common_publish_devices);
  112. machine_arch_initcall(p1020_rdb, mpc85xx_common_publish_devices);
  113. machine_arch_initcall(p1020_rdb_pc, mpc85xx_common_publish_devices);
  114. machine_arch_initcall(p1020_rdb_pd, mpc85xx_common_publish_devices);
  115. machine_arch_initcall(p1020_utm_pc, mpc85xx_common_publish_devices);
  116. machine_arch_initcall(p1021_rdb_pc, mpc85xx_common_publish_devices);
  117. machine_arch_initcall(p1025_rdb, mpc85xx_common_publish_devices);
  118. machine_arch_initcall(p1024_rdb, mpc85xx_common_publish_devices);
  119. /*
  120. * Called very early, device-tree isn't unflattened
  121. */
  122. static int __init p2020_rdb_probe(void)
  123. {
  124. if (of_machine_is_compatible("fsl,P2020RDB"))
  125. return 1;
  126. return 0;
  127. }
  128. static int __init p1020_rdb_probe(void)
  129. {
  130. if (of_machine_is_compatible("fsl,P1020RDB"))
  131. return 1;
  132. return 0;
  133. }
  134. static int __init p1020_rdb_pc_probe(void)
  135. {
  136. return of_machine_is_compatible("fsl,P1020RDB-PC");
  137. }
  138. static int __init p1020_rdb_pd_probe(void)
  139. {
  140. return of_machine_is_compatible("fsl,P1020RDB-PD");
  141. }
  142. static int __init p1021_rdb_pc_probe(void)
  143. {
  144. if (of_machine_is_compatible("fsl,P1021RDB-PC"))
  145. return 1;
  146. return 0;
  147. }
  148. static int __init p2020_rdb_pc_probe(void)
  149. {
  150. if (of_machine_is_compatible("fsl,P2020RDB-PC"))
  151. return 1;
  152. return 0;
  153. }
  154. static int __init p1025_rdb_probe(void)
  155. {
  156. return of_machine_is_compatible("fsl,P1025RDB");
  157. }
  158. static int __init p1020_mbg_pc_probe(void)
  159. {
  160. return of_machine_is_compatible("fsl,P1020MBG-PC");
  161. }
  162. static int __init p1020_utm_pc_probe(void)
  163. {
  164. return of_machine_is_compatible("fsl,P1020UTM-PC");
  165. }
  166. static int __init p1024_rdb_probe(void)
  167. {
  168. return of_machine_is_compatible("fsl,P1024RDB");
  169. }
  170. define_machine(p2020_rdb) {
  171. .name = "P2020 RDB",
  172. .probe = p2020_rdb_probe,
  173. .setup_arch = mpc85xx_rdb_setup_arch,
  174. .init_IRQ = mpc85xx_rdb_pic_init,
  175. #ifdef CONFIG_PCI
  176. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  177. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  178. #endif
  179. .get_irq = mpic_get_irq,
  180. .calibrate_decr = generic_calibrate_decr,
  181. .progress = udbg_progress,
  182. };
  183. define_machine(p1020_rdb) {
  184. .name = "P1020 RDB",
  185. .probe = p1020_rdb_probe,
  186. .setup_arch = mpc85xx_rdb_setup_arch,
  187. .init_IRQ = mpc85xx_rdb_pic_init,
  188. #ifdef CONFIG_PCI
  189. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  190. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  191. #endif
  192. .get_irq = mpic_get_irq,
  193. .calibrate_decr = generic_calibrate_decr,
  194. .progress = udbg_progress,
  195. };
  196. define_machine(p1021_rdb_pc) {
  197. .name = "P1021 RDB-PC",
  198. .probe = p1021_rdb_pc_probe,
  199. .setup_arch = mpc85xx_rdb_setup_arch,
  200. .init_IRQ = mpc85xx_rdb_pic_init,
  201. #ifdef CONFIG_PCI
  202. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  203. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  204. #endif
  205. .get_irq = mpic_get_irq,
  206. .calibrate_decr = generic_calibrate_decr,
  207. .progress = udbg_progress,
  208. };
  209. define_machine(p2020_rdb_pc) {
  210. .name = "P2020RDB-PC",
  211. .probe = p2020_rdb_pc_probe,
  212. .setup_arch = mpc85xx_rdb_setup_arch,
  213. .init_IRQ = mpc85xx_rdb_pic_init,
  214. #ifdef CONFIG_PCI
  215. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  216. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  217. #endif
  218. .get_irq = mpic_get_irq,
  219. .calibrate_decr = generic_calibrate_decr,
  220. .progress = udbg_progress,
  221. };
  222. define_machine(p1025_rdb) {
  223. .name = "P1025 RDB",
  224. .probe = p1025_rdb_probe,
  225. .setup_arch = mpc85xx_rdb_setup_arch,
  226. .init_IRQ = mpc85xx_rdb_pic_init,
  227. #ifdef CONFIG_PCI
  228. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  229. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  230. #endif
  231. .get_irq = mpic_get_irq,
  232. .calibrate_decr = generic_calibrate_decr,
  233. .progress = udbg_progress,
  234. };
  235. define_machine(p1020_mbg_pc) {
  236. .name = "P1020 MBG-PC",
  237. .probe = p1020_mbg_pc_probe,
  238. .setup_arch = mpc85xx_rdb_setup_arch,
  239. .init_IRQ = mpc85xx_rdb_pic_init,
  240. #ifdef CONFIG_PCI
  241. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  242. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  243. #endif
  244. .get_irq = mpic_get_irq,
  245. .calibrate_decr = generic_calibrate_decr,
  246. .progress = udbg_progress,
  247. };
  248. define_machine(p1020_utm_pc) {
  249. .name = "P1020 UTM-PC",
  250. .probe = p1020_utm_pc_probe,
  251. .setup_arch = mpc85xx_rdb_setup_arch,
  252. .init_IRQ = mpc85xx_rdb_pic_init,
  253. #ifdef CONFIG_PCI
  254. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  255. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  256. #endif
  257. .get_irq = mpic_get_irq,
  258. .calibrate_decr = generic_calibrate_decr,
  259. .progress = udbg_progress,
  260. };
  261. define_machine(p1020_rdb_pc) {
  262. .name = "P1020RDB-PC",
  263. .probe = p1020_rdb_pc_probe,
  264. .setup_arch = mpc85xx_rdb_setup_arch,
  265. .init_IRQ = mpc85xx_rdb_pic_init,
  266. #ifdef CONFIG_PCI
  267. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  268. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  269. #endif
  270. .get_irq = mpic_get_irq,
  271. .calibrate_decr = generic_calibrate_decr,
  272. .progress = udbg_progress,
  273. };
  274. define_machine(p1020_rdb_pd) {
  275. .name = "P1020RDB-PD",
  276. .probe = p1020_rdb_pd_probe,
  277. .setup_arch = mpc85xx_rdb_setup_arch,
  278. .init_IRQ = mpc85xx_rdb_pic_init,
  279. #ifdef CONFIG_PCI
  280. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  281. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  282. #endif
  283. .get_irq = mpic_get_irq,
  284. .calibrate_decr = generic_calibrate_decr,
  285. .progress = udbg_progress,
  286. };
  287. define_machine(p1024_rdb) {
  288. .name = "P1024 RDB",
  289. .probe = p1024_rdb_probe,
  290. .setup_arch = mpc85xx_rdb_setup_arch,
  291. .init_IRQ = mpc85xx_rdb_pic_init,
  292. #ifdef CONFIG_PCI
  293. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  294. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  295. #endif
  296. .get_irq = mpic_get_irq,
  297. .calibrate_decr = generic_calibrate_decr,
  298. .progress = udbg_progress,
  299. };