setup.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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 <[email protected]>
  7. * Copyright (C) 2014 Kevin Cernekee <[email protected]>
  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/of_platform.h>
  19. #include <linux/libfdt.h>
  20. #include <linux/smp.h>
  21. #include <asm/addrspace.h>
  22. #include <asm/bmips.h>
  23. #include <asm/bootinfo.h>
  24. #include <asm/cpu-type.h>
  25. #include <asm/mipsregs.h>
  26. #include <asm/prom.h>
  27. #include <asm/smp-ops.h>
  28. #include <asm/time.h>
  29. #include <asm/traps.h>
  30. #include <asm/fw/cfe/cfe_api.h>
  31. #define RELO_NORMAL_VEC BIT(18)
  32. #define REG_BCM6328_OTP ((void __iomem *)CKSEG1ADDR(0x1000062c))
  33. #define BCM6328_TP1_DISABLED BIT(9)
  34. extern bool bmips_rac_flush_disable;
  35. static const unsigned long kbase = VMLINUX_LOAD_ADDRESS & 0xfff00000;
  36. struct bmips_quirk {
  37. const char *compatible;
  38. void (*quirk_fn)(void);
  39. };
  40. static void kbase_setup(void)
  41. {
  42. __raw_writel(kbase | RELO_NORMAL_VEC,
  43. BMIPS_GET_CBR() + BMIPS_RELO_VECTOR_CONTROL_1);
  44. ebase = kbase;
  45. }
  46. static void bcm3384_viper_quirks(void)
  47. {
  48. /*
  49. * Some experimental CM boxes are set up to let CM own the Viper TP0
  50. * and let Linux own TP1. This requires moving the kernel
  51. * load address to a non-conflicting region (e.g. via
  52. * CONFIG_PHYSICAL_START) and supplying an alternate DTB.
  53. * If we detect this condition, we need to move the MIPS exception
  54. * vectors up to an area that we own.
  55. *
  56. * This is distinct from the OTHER special case mentioned in
  57. * smp-bmips.c (boot on TP1, but enable SMP, then TP0 becomes our
  58. * logical CPU#1). For the Viper TP1 case, SMP is off limits.
  59. *
  60. * Also note that many BMIPS435x CPUs do not have a
  61. * BMIPS_RELO_VECTOR_CONTROL_1 register, so it isn't safe to just
  62. * write VMLINUX_LOAD_ADDRESS into that register on every SoC.
  63. */
  64. board_ebase_setup = &kbase_setup;
  65. bmips_smp_enabled = 0;
  66. }
  67. static void bcm63xx_fixup_cpu1(void)
  68. {
  69. /*
  70. * The bootloader has set up the CPU1 reset vector at
  71. * 0xa000_0200.
  72. * This conflicts with the special interrupt vector (IV).
  73. * The bootloader has also set up CPU1 to respond to the wrong
  74. * IPI interrupt.
  75. * Here we will start up CPU1 in the background and ask it to
  76. * reconfigure itself then go back to sleep.
  77. */
  78. memcpy((void *)0xa0000200, &bmips_smp_movevec, 0x20);
  79. __sync();
  80. set_c0_cause(C_SW0);
  81. cpumask_set_cpu(1, &bmips_booted_mask);
  82. }
  83. static void bcm6328_quirks(void)
  84. {
  85. /* Check CPU1 status in OTP (it is usually disabled) */
  86. if (__raw_readl(REG_BCM6328_OTP) & BCM6328_TP1_DISABLED)
  87. bmips_smp_enabled = 0;
  88. else
  89. bcm63xx_fixup_cpu1();
  90. }
  91. static void bcm6358_quirks(void)
  92. {
  93. /*
  94. * BCM3368/BCM6358 need special handling for their shared TLB, so
  95. * disable SMP for now
  96. */
  97. bmips_smp_enabled = 0;
  98. /*
  99. * RAC flush causes kernel panics on BCM6358 when booting from TP1
  100. * because the bootloader is not initializing it properly.
  101. */
  102. bmips_rac_flush_disable = !!(read_c0_brcm_cmt_local() & (1 << 31));
  103. }
  104. static void bcm6368_quirks(void)
  105. {
  106. bcm63xx_fixup_cpu1();
  107. }
  108. static const struct bmips_quirk bmips_quirk_list[] = {
  109. { "brcm,bcm3368", &bcm6358_quirks },
  110. { "brcm,bcm3384-viper", &bcm3384_viper_quirks },
  111. { "brcm,bcm33843-viper", &bcm3384_viper_quirks },
  112. { "brcm,bcm6328", &bcm6328_quirks },
  113. { "brcm,bcm6358", &bcm6358_quirks },
  114. { "brcm,bcm6362", &bcm6368_quirks },
  115. { "brcm,bcm6368", &bcm6368_quirks },
  116. { "brcm,bcm63168", &bcm6368_quirks },
  117. { "brcm,bcm63268", &bcm6368_quirks },
  118. { },
  119. };
  120. static void __init bmips_init_cfe(void)
  121. {
  122. cfe_seal = fw_arg3;
  123. if (cfe_seal != CFE_EPTSEAL)
  124. return;
  125. cfe_init(fw_arg0, fw_arg2);
  126. }
  127. void __init prom_init(void)
  128. {
  129. bmips_init_cfe();
  130. bmips_cpu_setup();
  131. register_bmips_smp_ops();
  132. }
  133. const char *get_system_type(void)
  134. {
  135. return "Generic BMIPS kernel";
  136. }
  137. void __init plat_time_init(void)
  138. {
  139. struct device_node *np;
  140. u32 freq;
  141. np = of_find_node_by_name(NULL, "cpus");
  142. if (!np)
  143. panic("missing 'cpus' DT node");
  144. if (of_property_read_u32(np, "mips-hpt-frequency", &freq) < 0)
  145. panic("missing 'mips-hpt-frequency' property");
  146. of_node_put(np);
  147. mips_hpt_frequency = freq;
  148. }
  149. void __init plat_mem_setup(void)
  150. {
  151. void *dtb;
  152. const struct bmips_quirk *q;
  153. set_io_port_base(0);
  154. ioport_resource.start = 0;
  155. ioport_resource.end = ~0;
  156. /* intended to somewhat resemble ARM; see Documentation/arm/booting.rst */
  157. if (fw_arg0 == 0 && fw_arg1 == 0xffffffff)
  158. dtb = phys_to_virt(fw_arg2);
  159. else
  160. dtb = get_fdt();
  161. if (!dtb)
  162. cfe_die("no dtb found");
  163. __dt_setup_arch(dtb);
  164. for (q = bmips_quirk_list; q->quirk_fn; q++) {
  165. if (of_flat_dt_is_compatible(of_get_flat_dt_root(),
  166. q->compatible)) {
  167. q->quirk_fn();
  168. }
  169. }
  170. }
  171. void __init device_tree_init(void)
  172. {
  173. struct device_node *np;
  174. unflatten_and_copy_device_tree();
  175. /* Disable SMP boot unless both CPUs are listed in DT and !disabled */
  176. np = of_find_node_by_name(NULL, "cpus");
  177. if (np && of_get_available_child_count(np) <= 1)
  178. bmips_smp_enabled = 0;
  179. of_node_put(np);
  180. }
  181. static int __init plat_dev_init(void)
  182. {
  183. of_clk_init(NULL);
  184. return 0;
  185. }
  186. arch_initcall(plat_dev_init);