setup.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2008 Maxime Bizon <mbizon@freebox.fr>
  7. * Copyright (C) 2014 Kevin Cernekee <cernekee@gmail.com>
  8. */
  9. #include <linux/init.h>
  10. #include <linux/bitops.h>
  11. #include <linux/memblock.h>
  12. #include <linux/ioport.h>
  13. #include <linux/kernel.h>
  14. #include <linux/io.h>
  15. #include <linux/of.h>
  16. #include <linux/of_clk.h>
  17. #include <linux/of_fdt.h>
  18. #include <linux/libfdt.h>
  19. #include <linux/smp.h>
  20. #include <asm/addrspace.h>
  21. #include <asm/bmips.h>
  22. #include <asm/bootinfo.h>
  23. #include <asm/cpu-type.h>
  24. #include <asm/mipsregs.h>
  25. #include <asm/prom.h>
  26. #include <asm/smp-ops.h>
  27. #include <asm/time.h>
  28. #include <asm/traps.h>
  29. #include <asm/fw/cfe/cfe_api.h>
  30. #define RELO_NORMAL_VEC BIT(18)
  31. #define REG_BCM6328_OTP ((void __iomem *)CKSEG1ADDR(0x1000062c))
  32. #define BCM6328_TP1_DISABLED BIT(9)
  33. /*
  34. * CBR addr doesn't change and we can cache it.
  35. * For broken SoC/Bootloader CBR addr might also be provided via DT
  36. * with "brcm,bmips-cbr-reg" in the "cpus" node.
  37. */
  38. void __iomem *bmips_cbr_addr __read_mostly;
  39. extern bool bmips_rac_flush_disable;
  40. static const unsigned long kbase = VMLINUX_LOAD_ADDRESS & 0xfff00000;
  41. struct bmips_quirk {
  42. const char *compatible;
  43. void (*quirk_fn)(void);
  44. };
  45. static void kbase_setup(void)
  46. {
  47. __raw_writel(kbase | RELO_NORMAL_VEC,
  48. BMIPS_GET_CBR() + BMIPS_RELO_VECTOR_CONTROL_1);
  49. ebase = kbase;
  50. }
  51. static void bcm3384_viper_quirks(void)
  52. {
  53. /*
  54. * Some experimental CM boxes are set up to let CM own the Viper TP0
  55. * and let Linux own TP1. This requires moving the kernel
  56. * load address to a non-conflicting region (e.g. via
  57. * CONFIG_PHYSICAL_START) and supplying an alternate DTB.
  58. * If we detect this condition, we need to move the MIPS exception
  59. * vectors up to an area that we own.
  60. *
  61. * This is distinct from the OTHER special case mentioned in
  62. * smp-bmips.c (boot on TP1, but enable SMP, then TP0 becomes our
  63. * logical CPU#1). For the Viper TP1 case, SMP is off limits.
  64. *
  65. * Also note that many BMIPS435x CPUs do not have a
  66. * BMIPS_RELO_VECTOR_CONTROL_1 register, so it isn't safe to just
  67. * write VMLINUX_LOAD_ADDRESS into that register on every SoC.
  68. */
  69. board_ebase_setup = &kbase_setup;
  70. bmips_smp_enabled = 0;
  71. }
  72. static void bcm63xx_fixup_cpu1(void)
  73. {
  74. /*
  75. * The bootloader has set up the CPU1 reset vector at
  76. * 0xa000_0200.
  77. * This conflicts with the special interrupt vector (IV).
  78. * The bootloader has also set up CPU1 to respond to the wrong
  79. * IPI interrupt.
  80. * Here we will start up CPU1 in the background and ask it to
  81. * reconfigure itself then go back to sleep.
  82. */
  83. memcpy((void *)0xa0000200, &bmips_smp_movevec, 0x20);
  84. __sync();
  85. set_c0_cause(C_SW0);
  86. cpumask_set_cpu(1, &bmips_booted_mask);
  87. }
  88. static void bcm6328_quirks(void)
  89. {
  90. /* Check CPU1 status in OTP (it is usually disabled) */
  91. if (__raw_readl(REG_BCM6328_OTP) & BCM6328_TP1_DISABLED)
  92. bmips_smp_enabled = 0;
  93. else
  94. bcm63xx_fixup_cpu1();
  95. }
  96. static void bcm6358_quirks(void)
  97. {
  98. /*
  99. * BCM3368/BCM6358 need special handling for their shared TLB, so
  100. * disable SMP for now
  101. */
  102. bmips_smp_enabled = 0;
  103. /*
  104. * RAC flush causes kernel panics on BCM6358 when booting from TP1
  105. * because the bootloader is not initializing it properly.
  106. */
  107. bmips_rac_flush_disable = !!(read_c0_brcm_cmt_local() & (1 << 31)) ||
  108. !!bmips_cbr_addr;
  109. }
  110. static void bcm6368_quirks(void)
  111. {
  112. bcm63xx_fixup_cpu1();
  113. }
  114. static const struct bmips_quirk bmips_quirk_list[] = {
  115. { "brcm,bcm3368", &bcm6358_quirks },
  116. { "brcm,bcm3384-viper", &bcm3384_viper_quirks },
  117. { "brcm,bcm33843-viper", &bcm3384_viper_quirks },
  118. { "brcm,bcm6328", &bcm6328_quirks },
  119. { "brcm,bcm6358", &bcm6358_quirks },
  120. { "brcm,bcm6362", &bcm6368_quirks },
  121. { "brcm,bcm6368", &bcm6368_quirks },
  122. { "brcm,bcm63168", &bcm6368_quirks },
  123. { "brcm,bcm63268", &bcm6368_quirks },
  124. { },
  125. };
  126. static void __init bmips_init_cfe(void)
  127. {
  128. cfe_seal = fw_arg3;
  129. if (cfe_seal != CFE_EPTSEAL)
  130. return;
  131. cfe_init(fw_arg0, fw_arg2);
  132. }
  133. void __init prom_init(void)
  134. {
  135. /* Cache CBR addr before CPU/DMA setup */
  136. bmips_cbr_addr = BMIPS_GET_CBR();
  137. bmips_init_cfe();
  138. bmips_cpu_setup();
  139. register_bmips_smp_ops();
  140. }
  141. const char *get_system_type(void)
  142. {
  143. return "Generic BMIPS kernel";
  144. }
  145. void __init plat_time_init(void)
  146. {
  147. struct device_node *np;
  148. u32 freq;
  149. np = of_find_node_by_name(NULL, "cpus");
  150. if (!np)
  151. panic("missing 'cpus' DT node");
  152. if (of_property_read_u32(np, "mips-hpt-frequency", &freq) < 0)
  153. panic("missing 'mips-hpt-frequency' property");
  154. of_node_put(np);
  155. mips_hpt_frequency = freq;
  156. }
  157. void __init plat_mem_setup(void)
  158. {
  159. void *dtb;
  160. const struct bmips_quirk *q;
  161. set_io_port_base(0);
  162. ioport_resource.start = 0;
  163. ioport_resource.end = ~0;
  164. /*
  165. * intended to somewhat resemble ARM; see
  166. * Documentation/arch/arm/booting.rst
  167. */
  168. if (fw_arg0 == 0 && fw_arg1 == 0xffffffff)
  169. dtb = phys_to_virt(fw_arg2);
  170. else
  171. dtb = get_fdt();
  172. if (!dtb)
  173. cfe_die("no dtb found");
  174. __dt_setup_arch(dtb);
  175. for (q = bmips_quirk_list; q->quirk_fn; q++) {
  176. if (of_flat_dt_is_compatible(of_get_flat_dt_root(),
  177. q->compatible)) {
  178. q->quirk_fn();
  179. }
  180. }
  181. }
  182. void __init device_tree_init(void)
  183. {
  184. struct device_node *np;
  185. u32 addr;
  186. unflatten_and_copy_device_tree();
  187. /* Disable SMP boot unless both CPUs are listed in DT and !disabled */
  188. np = of_find_node_by_name(NULL, "cpus");
  189. if (!np)
  190. return;
  191. if (of_get_available_child_count(np) <= 1)
  192. bmips_smp_enabled = 0;
  193. /* Check if DT provide a CBR address */
  194. if (of_property_read_u32(np, "brcm,bmips-cbr-reg", &addr))
  195. goto exit;
  196. /* Make sure CBR address is outside DRAM window */
  197. if (addr >= (u32)memblock_start_of_DRAM() &&
  198. addr < (u32)memblock_end_of_DRAM()) {
  199. WARN(1, "DT CBR %x inside DRAM window. Ignoring DT CBR.\n",
  200. addr);
  201. goto exit;
  202. }
  203. bmips_cbr_addr = (void __iomem *)addr;
  204. /* Since CBR is provided by DT, enable RAC flush */
  205. bmips_rac_flush_disable = false;
  206. exit:
  207. of_node_put(np);
  208. }
  209. static int __init plat_dev_init(void)
  210. {
  211. of_clk_init(NULL);
  212. return 0;
  213. }
  214. arch_initcall(plat_dev_init);