xes_mpc85xx.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*
  2. * Copyright (C) 2009 Extreme Engineering Solutions, Inc.
  3. *
  4. * X-ES board-specific functionality
  5. *
  6. * Based on mpc85xx_ds code from Freescale Semiconductor, Inc.
  7. *
  8. * Author: Nate Case <ncase@xes-inc.com>
  9. *
  10. * This is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/stddef.h>
  15. #include <linux/kernel.h>
  16. #include <linux/pci.h>
  17. #include <linux/kdev_t.h>
  18. #include <linux/delay.h>
  19. #include <linux/seq_file.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/of_platform.h>
  22. #include <asm/time.h>
  23. #include <asm/machdep.h>
  24. #include <asm/pci-bridge.h>
  25. #include <mm/mmu_decl.h>
  26. #include <asm/prom.h>
  27. #include <asm/udbg.h>
  28. #include <asm/mpic.h>
  29. #include <sysdev/fsl_soc.h>
  30. #include <sysdev/fsl_pci.h>
  31. #include "smp.h"
  32. #include "mpc85xx.h"
  33. /* A few bit definitions needed for fixups on some boards */
  34. #define MPC85xx_L2CTL_L2E 0x80000000 /* L2 enable */
  35. #define MPC85xx_L2CTL_L2I 0x40000000 /* L2 flash invalidate */
  36. #define MPC85xx_L2CTL_L2SIZ_MASK 0x30000000 /* L2 SRAM size (R/O) */
  37. void __init xes_mpc85xx_pic_init(void)
  38. {
  39. struct mpic *mpic = mpic_alloc(NULL, 0, MPIC_BIG_ENDIAN,
  40. 0, 256, " OpenPIC ");
  41. BUG_ON(mpic == NULL);
  42. mpic_init(mpic);
  43. }
  44. static void xes_mpc85xx_configure_l2(void __iomem *l2_base)
  45. {
  46. volatile uint32_t ctl, tmp;
  47. asm volatile("msync; isync");
  48. tmp = in_be32(l2_base);
  49. /*
  50. * xMon may have enabled part of L2 as SRAM, so we need to set it
  51. * up for all cache mode just to be safe.
  52. */
  53. printk(KERN_INFO "xes_mpc85xx: Enabling L2 as cache\n");
  54. ctl = MPC85xx_L2CTL_L2E | MPC85xx_L2CTL_L2I;
  55. if (of_machine_is_compatible("MPC8540") ||
  56. of_machine_is_compatible("MPC8560"))
  57. /*
  58. * Assume L2 SRAM is used fully for cache, so set
  59. * L2BLKSZ (bits 4:5) to match L2SIZ (bits 2:3).
  60. */
  61. ctl |= (tmp & MPC85xx_L2CTL_L2SIZ_MASK) >> 2;
  62. asm volatile("msync; isync");
  63. out_be32(l2_base, ctl);
  64. asm volatile("msync; isync");
  65. }
  66. static void xes_mpc85xx_fixups(void)
  67. {
  68. struct device_node *np;
  69. int err;
  70. /*
  71. * Legacy xMon firmware on some X-ES boards does not enable L2
  72. * as cache. We must ensure that they get enabled here.
  73. */
  74. for_each_node_by_name(np, "l2-cache-controller") {
  75. struct resource r[2];
  76. void __iomem *l2_base;
  77. /* Only MPC8548, MPC8540, and MPC8560 boards are affected */
  78. if (!of_device_is_compatible(np,
  79. "fsl,mpc8548-l2-cache-controller") &&
  80. !of_device_is_compatible(np,
  81. "fsl,mpc8540-l2-cache-controller") &&
  82. !of_device_is_compatible(np,
  83. "fsl,mpc8560-l2-cache-controller"))
  84. continue;
  85. err = of_address_to_resource(np, 0, &r[0]);
  86. if (err) {
  87. printk(KERN_WARNING "xes_mpc85xx: Could not get "
  88. "resource for device tree node '%s'",
  89. np->full_name);
  90. continue;
  91. }
  92. l2_base = ioremap(r[0].start, resource_size(&r[0]));
  93. xes_mpc85xx_configure_l2(l2_base);
  94. }
  95. }
  96. /*
  97. * Setup the architecture
  98. */
  99. static void __init xes_mpc85xx_setup_arch(void)
  100. {
  101. struct device_node *root;
  102. const char *model = "Unknown";
  103. root = of_find_node_by_path("/");
  104. if (root == NULL)
  105. return;
  106. model = of_get_property(root, "model", NULL);
  107. printk(KERN_INFO "X-ES MPC85xx-based single-board computer: %s\n",
  108. model + strlen("xes,"));
  109. xes_mpc85xx_fixups();
  110. mpc85xx_smp_init();
  111. fsl_pci_assign_primary();
  112. }
  113. machine_arch_initcall(xes_mpc8572, mpc85xx_common_publish_devices);
  114. machine_arch_initcall(xes_mpc8548, mpc85xx_common_publish_devices);
  115. machine_arch_initcall(xes_mpc8540, mpc85xx_common_publish_devices);
  116. /*
  117. * Called very early, device-tree isn't unflattened
  118. */
  119. static int __init xes_mpc8572_probe(void)
  120. {
  121. unsigned long root = of_get_flat_dt_root();
  122. return of_flat_dt_is_compatible(root, "xes,MPC8572");
  123. }
  124. static int __init xes_mpc8548_probe(void)
  125. {
  126. unsigned long root = of_get_flat_dt_root();
  127. return of_flat_dt_is_compatible(root, "xes,MPC8548");
  128. }
  129. static int __init xes_mpc8540_probe(void)
  130. {
  131. unsigned long root = of_get_flat_dt_root();
  132. return of_flat_dt_is_compatible(root, "xes,MPC8540");
  133. }
  134. define_machine(xes_mpc8572) {
  135. .name = "X-ES MPC8572",
  136. .probe = xes_mpc8572_probe,
  137. .setup_arch = xes_mpc85xx_setup_arch,
  138. .init_IRQ = xes_mpc85xx_pic_init,
  139. #ifdef CONFIG_PCI
  140. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  141. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  142. #endif
  143. .get_irq = mpic_get_irq,
  144. .restart = fsl_rstcr_restart,
  145. .calibrate_decr = generic_calibrate_decr,
  146. .progress = udbg_progress,
  147. };
  148. define_machine(xes_mpc8548) {
  149. .name = "X-ES MPC8548",
  150. .probe = xes_mpc8548_probe,
  151. .setup_arch = xes_mpc85xx_setup_arch,
  152. .init_IRQ = xes_mpc85xx_pic_init,
  153. #ifdef CONFIG_PCI
  154. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  155. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  156. #endif
  157. .get_irq = mpic_get_irq,
  158. .restart = fsl_rstcr_restart,
  159. .calibrate_decr = generic_calibrate_decr,
  160. .progress = udbg_progress,
  161. };
  162. define_machine(xes_mpc8540) {
  163. .name = "X-ES MPC8540",
  164. .probe = xes_mpc8540_probe,
  165. .setup_arch = xes_mpc85xx_setup_arch,
  166. .init_IRQ = xes_mpc85xx_pic_init,
  167. #ifdef CONFIG_PCI
  168. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  169. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  170. #endif
  171. .get_irq = mpic_get_irq,
  172. .restart = fsl_rstcr_restart,
  173. .calibrate_decr = generic_calibrate_decr,
  174. .progress = udbg_progress,
  175. };