cpu-db8500.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. * Copyright (C) 2008-2009 ST-Ericsson SA
  3. *
  4. * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2, as
  8. * published by the Free Software Foundation.
  9. *
  10. */
  11. #include <linux/types.h>
  12. #include <linux/init.h>
  13. #include <linux/device.h>
  14. #include <linux/amba/bus.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/irq.h>
  17. #include <linux/irqchip.h>
  18. #include <linux/irqchip/arm-gic.h>
  19. #include <linux/mfd/dbx500-prcmu.h>
  20. #include <linux/platform_data/arm-ux500-pm.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/io.h>
  23. #include <linux/of.h>
  24. #include <linux/of_address.h>
  25. #include <linux/of_platform.h>
  26. #include <linux/perf/arm_pmu.h>
  27. #include <linux/regulator/machine.h>
  28. #include <asm/outercache.h>
  29. #include <asm/hardware/cache-l2x0.h>
  30. #include <asm/mach/map.h>
  31. #include <asm/mach/arch.h>
  32. #include "db8500-regs.h"
  33. static int __init ux500_l2x0_unlock(void)
  34. {
  35. int i;
  36. struct device_node *np;
  37. void __iomem *l2x0_base;
  38. np = of_find_compatible_node(NULL, NULL, "arm,pl310-cache");
  39. l2x0_base = of_iomap(np, 0);
  40. of_node_put(np);
  41. if (!l2x0_base)
  42. return -ENODEV;
  43. /*
  44. * Unlock Data and Instruction Lock if locked. Ux500 U-Boot versions
  45. * apparently locks both caches before jumping to the kernel. The
  46. * l2x0 core will not touch the unlock registers if the l2x0 is
  47. * already enabled, so we do it right here instead. The PL310 has
  48. * 8 sets of registers, one per possible CPU.
  49. */
  50. for (i = 0; i < 8; i++) {
  51. writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_D_BASE +
  52. i * L2X0_LOCKDOWN_STRIDE);
  53. writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_I_BASE +
  54. i * L2X0_LOCKDOWN_STRIDE);
  55. }
  56. iounmap(l2x0_base);
  57. return 0;
  58. }
  59. static void ux500_l2c310_write_sec(unsigned long val, unsigned reg)
  60. {
  61. /*
  62. * We can't write to secure registers as we are in non-secure
  63. * mode, until we have some SMI service available.
  64. */
  65. }
  66. /*
  67. * FIXME: Should we set up the GPIO domain here?
  68. *
  69. * The problem is that we cannot put the interrupt resources into the platform
  70. * device until the irqdomain has been added. Right now, we set the GIC interrupt
  71. * domain from init_irq(), then load the gpio driver from
  72. * core_initcall(nmk_gpio_init) and add the platform devices from
  73. * arch_initcall(customize_machine).
  74. *
  75. * This feels fragile because it depends on the gpio device getting probed
  76. * _before_ any device uses the gpio interrupts.
  77. */
  78. static void __init ux500_init_irq(void)
  79. {
  80. struct device_node *np;
  81. struct resource r;
  82. irqchip_init();
  83. np = of_find_compatible_node(NULL, NULL, "stericsson,db8500-prcmu");
  84. of_address_to_resource(np, 0, &r);
  85. of_node_put(np);
  86. if (!r.start) {
  87. pr_err("could not find PRCMU base resource\n");
  88. return;
  89. }
  90. prcmu_early_init(r.start, r.end-r.start);
  91. ux500_pm_init(r.start, r.end-r.start);
  92. /* Unlock before init */
  93. ux500_l2x0_unlock();
  94. outer_cache.write_sec = ux500_l2c310_write_sec;
  95. }
  96. static void ux500_restart(enum reboot_mode mode, const char *cmd)
  97. {
  98. local_irq_disable();
  99. local_fiq_disable();
  100. prcmu_system_reset(0);
  101. }
  102. /*
  103. * The PMU IRQ lines of two cores are wired together into a single interrupt.
  104. * Bounce the interrupt to the other core if it's not ours.
  105. */
  106. static irqreturn_t db8500_pmu_handler(int irq, void *dev, irq_handler_t handler)
  107. {
  108. irqreturn_t ret = handler(irq, dev);
  109. int other = !smp_processor_id();
  110. if (ret == IRQ_NONE && cpu_online(other))
  111. irq_set_affinity(irq, cpumask_of(other));
  112. /*
  113. * We should be able to get away with the amount of IRQ_NONEs we give,
  114. * while still having the spurious IRQ detection code kick in if the
  115. * interrupt really starts hitting spuriously.
  116. */
  117. return ret;
  118. }
  119. static struct arm_pmu_platdata db8500_pmu_platdata = {
  120. .handle_irq = db8500_pmu_handler,
  121. };
  122. static struct of_dev_auxdata u8500_auxdata_lookup[] __initdata = {
  123. /* Requires call-back bindings. */
  124. OF_DEV_AUXDATA("arm,cortex-a9-pmu", 0, "arm-pmu", &db8500_pmu_platdata),
  125. {},
  126. };
  127. static struct of_dev_auxdata u8540_auxdata_lookup[] __initdata = {
  128. OF_DEV_AUXDATA("stericsson,db8500-prcmu", 0x80157000, "db8500-prcmu", NULL),
  129. {},
  130. };
  131. static const struct of_device_id u8500_local_bus_nodes[] = {
  132. /* only create devices below soc node */
  133. { .compatible = "stericsson,db8500", },
  134. { .compatible = "stericsson,db8500-prcmu", },
  135. { .compatible = "simple-bus"},
  136. { },
  137. };
  138. static void __init u8500_init_machine(void)
  139. {
  140. /* automatically probe child nodes of dbx5x0 devices */
  141. if (of_machine_is_compatible("st-ericsson,u8540"))
  142. of_platform_populate(NULL, u8500_local_bus_nodes,
  143. u8540_auxdata_lookup, NULL);
  144. else
  145. of_platform_populate(NULL, u8500_local_bus_nodes,
  146. u8500_auxdata_lookup, NULL);
  147. }
  148. static const char * stericsson_dt_platform_compat[] = {
  149. "st-ericsson,u8500",
  150. "st-ericsson,u8540",
  151. "st-ericsson,u9500",
  152. "st-ericsson,u9540",
  153. NULL,
  154. };
  155. DT_MACHINE_START(U8500_DT, "ST-Ericsson Ux5x0 platform (Device Tree Support)")
  156. .l2c_aux_val = 0,
  157. .l2c_aux_mask = ~0,
  158. .init_irq = ux500_init_irq,
  159. .init_machine = u8500_init_machine,
  160. .dt_compat = stericsson_dt_platform_compat,
  161. .restart = ux500_restart,
  162. MACHINE_END