common.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * This file contains common code that is intended to be used across
  4. * boards so that it's not replicated.
  5. *
  6. * Copyright (C) 2011 Xilinx
  7. */
  8. #include <linux/init.h>
  9. #include <linux/io.h>
  10. #include <linux/kernel.h>
  11. #include <linux/cpumask.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/clk.h>
  14. #include <linux/clk/zynq.h>
  15. #include <linux/clocksource.h>
  16. #include <linux/of_address.h>
  17. #include <linux/of_clk.h>
  18. #include <linux/of_irq.h>
  19. #include <linux/of_platform.h>
  20. #include <linux/of.h>
  21. #include <linux/memblock.h>
  22. #include <linux/irqchip.h>
  23. #include <linux/irqchip/arm-gic.h>
  24. #include <linux/slab.h>
  25. #include <linux/sys_soc.h>
  26. #include <linux/pgtable.h>
  27. #include <asm/mach/arch.h>
  28. #include <asm/mach/map.h>
  29. #include <asm/mach/time.h>
  30. #include <asm/mach-types.h>
  31. #include <asm/page.h>
  32. #include <asm/smp_scu.h>
  33. #include <asm/system_info.h>
  34. #include <asm/hardware/cache-l2x0.h>
  35. #include "common.h"
  36. #define ZYNQ_DEVCFG_MCTRL 0x80
  37. #define ZYNQ_DEVCFG_PS_VERSION_SHIFT 28
  38. #define ZYNQ_DEVCFG_PS_VERSION_MASK 0xF
  39. void __iomem *zynq_scu_base;
  40. /**
  41. * zynq_memory_init - Initialize special memory
  42. *
  43. * We need to stop things allocating the low memory as DMA can't work in
  44. * the 1st 512K of memory.
  45. */
  46. static void __init zynq_memory_init(void)
  47. {
  48. if (!__pa(PAGE_OFFSET))
  49. memblock_reserve(__pa(PAGE_OFFSET), 0x80000);
  50. }
  51. static struct platform_device zynq_cpuidle_device = {
  52. .name = "cpuidle-zynq",
  53. };
  54. /**
  55. * zynq_get_revision - Get Zynq silicon revision
  56. *
  57. * Return: Silicon version or -1 otherwise
  58. */
  59. static int __init zynq_get_revision(void)
  60. {
  61. struct device_node *np;
  62. void __iomem *zynq_devcfg_base;
  63. u32 revision;
  64. np = of_find_compatible_node(NULL, NULL, "xlnx,zynq-devcfg-1.0");
  65. if (!np) {
  66. pr_err("%s: no devcfg node found\n", __func__);
  67. return -1;
  68. }
  69. zynq_devcfg_base = of_iomap(np, 0);
  70. of_node_put(np);
  71. if (!zynq_devcfg_base) {
  72. pr_err("%s: Unable to map I/O memory\n", __func__);
  73. return -1;
  74. }
  75. revision = readl(zynq_devcfg_base + ZYNQ_DEVCFG_MCTRL);
  76. revision >>= ZYNQ_DEVCFG_PS_VERSION_SHIFT;
  77. revision &= ZYNQ_DEVCFG_PS_VERSION_MASK;
  78. iounmap(zynq_devcfg_base);
  79. return revision;
  80. }
  81. static void __init zynq_init_late(void)
  82. {
  83. zynq_core_pm_init();
  84. zynq_pm_late_init();
  85. }
  86. /**
  87. * zynq_init_machine - System specific initialization, intended to be
  88. * called from board specific initialization.
  89. */
  90. static void __init zynq_init_machine(void)
  91. {
  92. struct soc_device_attribute *soc_dev_attr;
  93. struct soc_device *soc_dev;
  94. struct device *parent = NULL;
  95. soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
  96. if (!soc_dev_attr)
  97. goto out;
  98. system_rev = zynq_get_revision();
  99. soc_dev_attr->family = kasprintf(GFP_KERNEL, "Xilinx Zynq");
  100. soc_dev_attr->revision = kasprintf(GFP_KERNEL, "0x%x", system_rev);
  101. soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%x",
  102. zynq_slcr_get_device_id());
  103. soc_dev = soc_device_register(soc_dev_attr);
  104. if (IS_ERR(soc_dev)) {
  105. kfree(soc_dev_attr->family);
  106. kfree(soc_dev_attr->revision);
  107. kfree(soc_dev_attr->soc_id);
  108. kfree(soc_dev_attr);
  109. goto out;
  110. }
  111. parent = soc_device_to_device(soc_dev);
  112. out:
  113. /*
  114. * Finished with the static registrations now; fill in the missing
  115. * devices
  116. */
  117. of_platform_default_populate(NULL, NULL, parent);
  118. platform_device_register(&zynq_cpuidle_device);
  119. }
  120. static void __init zynq_timer_init(void)
  121. {
  122. zynq_clock_init();
  123. of_clk_init(NULL);
  124. timer_probe();
  125. }
  126. static struct map_desc zynq_cortex_a9_scu_map __initdata = {
  127. .length = SZ_256,
  128. .type = MT_DEVICE,
  129. };
  130. static void __init zynq_scu_map_io(void)
  131. {
  132. unsigned long base;
  133. base = scu_a9_get_base();
  134. zynq_cortex_a9_scu_map.pfn = __phys_to_pfn(base);
  135. /* Expected address is in vmalloc area that's why simple assign here */
  136. zynq_cortex_a9_scu_map.virtual = base;
  137. iotable_init(&zynq_cortex_a9_scu_map, 1);
  138. zynq_scu_base = (void __iomem *)base;
  139. BUG_ON(!zynq_scu_base);
  140. }
  141. /**
  142. * zynq_map_io - Create memory mappings needed for early I/O.
  143. */
  144. static void __init zynq_map_io(void)
  145. {
  146. debug_ll_io_init();
  147. zynq_scu_map_io();
  148. }
  149. static void __init zynq_irq_init(void)
  150. {
  151. zynq_early_slcr_init();
  152. irqchip_init();
  153. }
  154. static const char * const zynq_dt_match[] = {
  155. "xlnx,zynq-7000",
  156. NULL
  157. };
  158. DT_MACHINE_START(XILINX_EP107, "Xilinx Zynq Platform")
  159. /* 64KB way size, 8-way associativity, parity disabled */
  160. .l2c_aux_val = 0x00400000,
  161. .l2c_aux_mask = 0xffbfffff,
  162. .smp = smp_ops(zynq_smp_ops),
  163. .map_io = zynq_map_io,
  164. .init_irq = zynq_irq_init,
  165. .init_machine = zynq_init_machine,
  166. .init_late = zynq_init_late,
  167. .init_time = zynq_timer_init,
  168. .dt_compat = zynq_dt_match,
  169. .reserve = zynq_memory_init,
  170. MACHINE_END