cpu-db8500.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (C) 2008-2009 ST-Ericsson SA
  4. *
  5. * Author: Srinidhi KASAGAR <[email protected]>
  6. */
  7. #include <linux/types.h>
  8. #include <linux/init.h>
  9. #include <linux/device.h>
  10. #include <linux/amba/bus.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/irq.h>
  13. #include <linux/irqchip.h>
  14. #include <linux/irqchip/arm-gic.h>
  15. #include <linux/mfd/dbx500-prcmu.h>
  16. #include <linux/platform_data/arm-ux500-pm.h>
  17. #include <linux/platform_device.h>
  18. #include <linux/io.h>
  19. #include <linux/of.h>
  20. #include <linux/of_address.h>
  21. #include <linux/of_platform.h>
  22. #include <linux/regulator/machine.h>
  23. #include <asm/outercache.h>
  24. #include <asm/hardware/cache-l2x0.h>
  25. #include <asm/mach/map.h>
  26. #include <asm/mach/arch.h>
  27. #include "db8500-regs.h"
  28. #include "pm_domains.h"
  29. static int __init ux500_l2x0_unlock(void)
  30. {
  31. int i;
  32. struct device_node *np;
  33. void __iomem *l2x0_base;
  34. np = of_find_compatible_node(NULL, NULL, "arm,pl310-cache");
  35. l2x0_base = of_iomap(np, 0);
  36. of_node_put(np);
  37. if (!l2x0_base)
  38. return -ENODEV;
  39. /*
  40. * Unlock Data and Instruction Lock if locked. Ux500 U-Boot versions
  41. * apparently locks both caches before jumping to the kernel. The
  42. * l2x0 core will not touch the unlock registers if the l2x0 is
  43. * already enabled, so we do it right here instead. The PL310 has
  44. * 8 sets of registers, one per possible CPU.
  45. */
  46. for (i = 0; i < 8; i++) {
  47. writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_D_BASE +
  48. i * L2X0_LOCKDOWN_STRIDE);
  49. writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_I_BASE +
  50. i * L2X0_LOCKDOWN_STRIDE);
  51. }
  52. iounmap(l2x0_base);
  53. return 0;
  54. }
  55. static void ux500_l2c310_write_sec(unsigned long val, unsigned reg)
  56. {
  57. /*
  58. * We can't write to secure registers as we are in non-secure
  59. * mode, until we have some SMI service available.
  60. */
  61. }
  62. /*
  63. * FIXME: Should we set up the GPIO domain here?
  64. *
  65. * The problem is that we cannot put the interrupt resources into the platform
  66. * device until the irqdomain has been added. Right now, we set the GIC interrupt
  67. * domain from init_irq(), then load the gpio driver from
  68. * core_initcall(nmk_gpio_init) and add the platform devices from
  69. * arch_initcall(customize_machine).
  70. *
  71. * This feels fragile because it depends on the gpio device getting probed
  72. * _before_ any device uses the gpio interrupts.
  73. */
  74. static void __init ux500_init_irq(void)
  75. {
  76. struct device_node *np;
  77. struct resource r;
  78. irqchip_init();
  79. prcmu_early_init();
  80. np = of_find_compatible_node(NULL, NULL, "stericsson,db8500-prcmu");
  81. of_address_to_resource(np, 0, &r);
  82. of_node_put(np);
  83. if (!r.start) {
  84. pr_err("could not find PRCMU base resource\n");
  85. return;
  86. }
  87. ux500_pm_init(r.start, r.end-r.start);
  88. /* Unlock before init */
  89. ux500_l2x0_unlock();
  90. outer_cache.write_sec = ux500_l2c310_write_sec;
  91. }
  92. static void ux500_restart(enum reboot_mode mode, const char *cmd)
  93. {
  94. local_irq_disable();
  95. local_fiq_disable();
  96. prcmu_system_reset(0);
  97. }
  98. static const struct of_device_id u8500_local_bus_nodes[] = {
  99. /* only create devices below soc node */
  100. { .compatible = "stericsson,db8500", },
  101. { .compatible = "simple-bus"},
  102. { },
  103. };
  104. static void __init u8500_init_machine(void)
  105. {
  106. /* Initialize ux500 power domains */
  107. ux500_pm_domains_init();
  108. of_platform_populate(NULL, u8500_local_bus_nodes,
  109. NULL, NULL);
  110. }
  111. static const char * stericsson_dt_platform_compat[] = {
  112. "st-ericsson,u8500",
  113. "st-ericsson,u9500",
  114. NULL,
  115. };
  116. DT_MACHINE_START(U8500_DT, "ST-Ericsson Ux5x0 platform (Device Tree Support)")
  117. .l2c_aux_val = 0,
  118. .l2c_aux_mask = ~0,
  119. .init_irq = ux500_init_irq,
  120. .init_machine = u8500_init_machine,
  121. .dt_compat = stericsson_dt_platform_compat,
  122. .restart = ux500_restart,
  123. MACHINE_END