board-msm8x60.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. #ifdef CONFIG_OF
  61. static struct of_dev_auxdata msm_auxdata_lookup[] __initdata = {
  62. {}
  63. };
  64. static struct of_device_id msm_dt_gic_match[] __initdata = {
  65. { .compatible = "qcom,msm-8660-qgic", },
  66. {}
  67. };
  68. static void __init msm8x60_dt_init(void)
  69. {
  70. irq_domain_generate_simple(msm_dt_gic_match, MSM8X60_QGIC_DIST_PHYS,
  71. GIC_SPI_START);
  72. if (of_machine_is_compatible("qcom,msm8660-surf")) {
  73. printk(KERN_INFO "Init surf UART registers\n");
  74. msm8x60_init_uart12dm();
  75. }
  76. of_platform_populate(NULL, of_default_bus_match_table,
  77. msm_auxdata_lookup, NULL);
  78. }
  79. static const char *msm8x60_fluid_match[] __initdata = {
  80. "qcom,msm8660-fluid",
  81. "qcom,msm8660-surf",
  82. NULL
  83. };
  84. #endif /* CONFIG_OF */
  85. MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3")
  86. .fixup = msm8x60_fixup,
  87. .reserve = msm8x60_reserve,
  88. .map_io = msm8x60_map_io,
  89. .init_irq = msm8x60_init_irq,
  90. .handle_irq = gic_handle_irq,
  91. .init_machine = msm8x60_init,
  92. .timer = &msm_timer,
  93. MACHINE_END
  94. MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF")
  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. .timer = &msm_timer,
  102. MACHINE_END
  103. MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR")
  104. .fixup = msm8x60_fixup,
  105. .reserve = msm8x60_reserve,
  106. .map_io = msm8x60_map_io,
  107. .init_irq = msm8x60_init_irq,
  108. .handle_irq = gic_handle_irq,
  109. .init_machine = msm8x60_init,
  110. .timer = &msm_timer,
  111. MACHINE_END
  112. MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA")
  113. .fixup = msm8x60_fixup,
  114. .reserve = msm8x60_reserve,
  115. .map_io = msm8x60_map_io,
  116. .init_irq = msm8x60_init_irq,
  117. .handle_irq = gic_handle_irq,
  118. .init_machine = msm8x60_init,
  119. .timer = &msm_timer,
  120. MACHINE_END
  121. #ifdef CONFIG_OF
  122. /* TODO: General device tree support for all MSM. */
  123. DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)")
  124. .map_io = msm8x60_map_io,
  125. .init_irq = msm8x60_init_irq,
  126. .init_machine = msm8x60_dt_init,
  127. .timer = &msm_timer,
  128. .dt_compat = msm8x60_fluid_match,
  129. MACHINE_END
  130. #endif /* CONFIG_OF */