board-msm8x60.c 4.1 KB

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