board-msm8x60.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. static void __init msm8x60_fixup(struct tag *tag, char **cmdline,
  29. struct meminfo *mi)
  30. {
  31. for (; tag->hdr.size; tag = tag_next(tag))
  32. if (tag->hdr.tag == ATAG_MEM &&
  33. tag->u.mem.start == 0x40200000) {
  34. tag->u.mem.start = 0x40000000;
  35. tag->u.mem.size += SZ_2M;
  36. }
  37. }
  38. static void __init msm8x60_reserve(void)
  39. {
  40. memblock_remove(0x40000000, SZ_2M);
  41. }
  42. static void __init msm8x60_map_io(void)
  43. {
  44. msm_map_msm8x60_io();
  45. }
  46. #ifdef CONFIG_OF
  47. static struct of_device_id msm_dt_gic_match[] __initdata = {
  48. { .compatible = "qcom,msm-8660-qgic", .data = gic_of_init },
  49. {}
  50. };
  51. #endif
  52. static void __init msm8x60_init_irq(void)
  53. {
  54. if (!of_have_populated_dt())
  55. gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
  56. (void *)MSM_QGIC_CPU_BASE);
  57. #ifdef CONFIG_OF
  58. else
  59. of_irq_init(msm_dt_gic_match);
  60. #endif
  61. /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */
  62. writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4);
  63. /* RUMI does not adhere to GIC spec by enabling STIs by default.
  64. * Enable/clear is supposed to be RO for STIs, but is RW on RUMI.
  65. */
  66. if (!machine_is_msm8x60_sim())
  67. writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
  68. }
  69. static void __init msm8x60_init(void)
  70. {
  71. }
  72. #ifdef CONFIG_OF
  73. static struct of_dev_auxdata msm_auxdata_lookup[] __initdata = {
  74. {}
  75. };
  76. static void __init msm8x60_dt_init(void)
  77. {
  78. if (of_machine_is_compatible("qcom,msm8660-surf")) {
  79. printk(KERN_INFO "Init surf UART registers\n");
  80. msm8x60_init_uart12dm();
  81. }
  82. of_platform_populate(NULL, of_default_bus_match_table,
  83. msm_auxdata_lookup, NULL);
  84. }
  85. static const char *msm8x60_fluid_match[] __initdata = {
  86. "qcom,msm8660-fluid",
  87. "qcom,msm8660-surf",
  88. NULL
  89. };
  90. #endif /* CONFIG_OF */
  91. MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3")
  92. .fixup = msm8x60_fixup,
  93. .reserve = msm8x60_reserve,
  94. .map_io = msm8x60_map_io,
  95. .init_irq = msm8x60_init_irq,
  96. .handle_irq = gic_handle_irq,
  97. .init_machine = msm8x60_init,
  98. .timer = &msm_timer,
  99. MACHINE_END
  100. MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF")
  101. .fixup = msm8x60_fixup,
  102. .reserve = msm8x60_reserve,
  103. .map_io = msm8x60_map_io,
  104. .init_irq = msm8x60_init_irq,
  105. .handle_irq = gic_handle_irq,
  106. .init_machine = msm8x60_init,
  107. .timer = &msm_timer,
  108. MACHINE_END
  109. MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR")
  110. .fixup = msm8x60_fixup,
  111. .reserve = msm8x60_reserve,
  112. .map_io = msm8x60_map_io,
  113. .init_irq = msm8x60_init_irq,
  114. .handle_irq = gic_handle_irq,
  115. .init_machine = msm8x60_init,
  116. .timer = &msm_timer,
  117. MACHINE_END
  118. MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA")
  119. .fixup = msm8x60_fixup,
  120. .reserve = msm8x60_reserve,
  121. .map_io = msm8x60_map_io,
  122. .init_irq = msm8x60_init_irq,
  123. .handle_irq = gic_handle_irq,
  124. .init_machine = msm8x60_init,
  125. .timer = &msm_timer,
  126. MACHINE_END
  127. #ifdef CONFIG_OF
  128. /* TODO: General device tree support for all MSM. */
  129. DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)")
  130. .map_io = msm8x60_map_io,
  131. .init_irq = msm8x60_init_irq,
  132. .init_machine = msm8x60_dt_init,
  133. .timer = &msm_timer,
  134. .dt_compat = msm8x60_fluid_match,
  135. MACHINE_END
  136. #endif /* CONFIG_OF */