board-msm8x60.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /* Copyright (c) 2010, 2011, Code Aurora Forum. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/platform_device.h>
  14. #include <linux/io.h>
  15. #include <linux/irq.h>
  16. #include <linux/irqdomain.h>
  17. #include <linux/of.h>
  18. #include <linux/of_address.h>
  19. #include <linux/of_irq.h>
  20. #include <linux/of_platform.h>
  21. #include <linux/memblock.h>
  22. #include <asm/mach-types.h>
  23. #include <asm/mach/arch.h>
  24. #include <asm/hardware/gic.h>
  25. #include <asm/setup.h>
  26. #include <mach/board.h>
  27. #include <mach/msm_iomap.h>
  28. #include "common.h"
  29. static void __init msm8x60_fixup(struct tag *tag, char **cmdline,
  30. struct meminfo *mi)
  31. {
  32. for (; tag->hdr.size; tag = tag_next(tag))
  33. if (tag->hdr.tag == ATAG_MEM &&
  34. tag->u.mem.start == 0x40200000) {
  35. tag->u.mem.start = 0x40000000;
  36. tag->u.mem.size += SZ_2M;
  37. }
  38. }
  39. static void __init msm8x60_reserve(void)
  40. {
  41. memblock_remove(0x40000000, SZ_2M);
  42. }
  43. static void __init msm8x60_map_io(void)
  44. {
  45. msm_map_msm8x60_io();
  46. }
  47. #ifdef CONFIG_OF
  48. static struct of_device_id msm_dt_gic_match[] __initdata = {
  49. { .compatible = "qcom,msm-8660-qgic", .data = gic_of_init },
  50. {}
  51. };
  52. #endif
  53. static void __init msm8x60_init_irq(void)
  54. {
  55. if (!of_have_populated_dt())
  56. gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
  57. (void *)MSM_QGIC_CPU_BASE);
  58. #ifdef CONFIG_OF
  59. else
  60. of_irq_init(msm_dt_gic_match);
  61. #endif
  62. /* RUMI does not adhere to GIC spec by enabling STIs by default.
  63. * Enable/clear is supposed to be RO for STIs, but is RW on RUMI.
  64. */
  65. if (!machine_is_msm8x60_sim())
  66. writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
  67. }
  68. static void __init msm8x60_init(void)
  69. {
  70. }
  71. static void __init msm8x60_init_late(void)
  72. {
  73. smd_debugfs_init();
  74. }
  75. #ifdef CONFIG_OF
  76. static struct of_dev_auxdata msm_auxdata_lookup[] __initdata = {
  77. {}
  78. };
  79. static void __init msm8x60_dt_init(void)
  80. {
  81. if (of_machine_is_compatible("qcom,msm8660-surf")) {
  82. printk(KERN_INFO "Init surf UART registers\n");
  83. msm8x60_init_uart12dm();
  84. }
  85. of_platform_populate(NULL, of_default_bus_match_table,
  86. msm_auxdata_lookup, NULL);
  87. }
  88. static const char *msm8x60_fluid_match[] __initdata = {
  89. "qcom,msm8660-fluid",
  90. "qcom,msm8660-surf",
  91. NULL
  92. };
  93. #endif /* CONFIG_OF */
  94. MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3")
  95. .fixup = msm8x60_fixup,
  96. .reserve = msm8x60_reserve,
  97. .map_io = msm8x60_map_io,
  98. .init_irq = msm8x60_init_irq,
  99. .handle_irq = gic_handle_irq,
  100. .init_machine = msm8x60_init,
  101. .init_late = msm8x60_init_late,
  102. .timer = &msm8x60_timer,
  103. MACHINE_END
  104. MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF")
  105. .fixup = msm8x60_fixup,
  106. .reserve = msm8x60_reserve,
  107. .map_io = msm8x60_map_io,
  108. .init_irq = msm8x60_init_irq,
  109. .handle_irq = gic_handle_irq,
  110. .init_machine = msm8x60_init,
  111. .init_late = msm8x60_init_late,
  112. .timer = &msm8x60_timer,
  113. MACHINE_END
  114. MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR")
  115. .fixup = msm8x60_fixup,
  116. .reserve = msm8x60_reserve,
  117. .map_io = msm8x60_map_io,
  118. .init_irq = msm8x60_init_irq,
  119. .handle_irq = gic_handle_irq,
  120. .init_machine = msm8x60_init,
  121. .init_late = msm8x60_init_late,
  122. .timer = &msm8x60_timer,
  123. MACHINE_END
  124. MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA")
  125. .fixup = msm8x60_fixup,
  126. .reserve = msm8x60_reserve,
  127. .map_io = msm8x60_map_io,
  128. .init_irq = msm8x60_init_irq,
  129. .handle_irq = gic_handle_irq,
  130. .init_machine = msm8x60_init,
  131. .init_late = msm8x60_init_late,
  132. .timer = &msm8x60_timer,
  133. MACHINE_END
  134. #ifdef CONFIG_OF
  135. /* TODO: General device tree support for all MSM. */
  136. DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)")
  137. .map_io = msm8x60_map_io,
  138. .init_irq = msm8x60_init_irq,
  139. .handle_irq = gic_handle_irq,
  140. .init_machine = msm8x60_dt_init,
  141. .init_late = msm8x60_init_late,
  142. .timer = &msm8x60_timer,
  143. .dt_compat = msm8x60_fluid_match,
  144. MACHINE_END
  145. #endif /* CONFIG_OF */