board-msm8x60.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* Copyright (c) 2010, 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. * You should have received a copy of the GNU General Public License
  13. * along with this program; if not, write to the Free Software
  14. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  15. * 02110-1301, USA.
  16. *
  17. */
  18. #include <linux/kernel.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/io.h>
  21. #include <linux/irq.h>
  22. #include <linux/memblock.h>
  23. #include <asm/mach-types.h>
  24. #include <asm/mach/arch.h>
  25. #include <asm/hardware/gic.h>
  26. #include <asm/setup.h>
  27. #include <mach/board.h>
  28. #include <mach/msm_iomap.h>
  29. static void __init msm8x60_fixup(struct machine_desc *desc, struct tag *tag,
  30. char **cmdline, 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. static void __init msm8x60_init_irq(void)
  48. {
  49. unsigned int i;
  50. gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
  51. (void *)MSM_QGIC_CPU_BASE);
  52. /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */
  53. writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4);
  54. /* RUMI does not adhere to GIC spec by enabling STIs by default.
  55. * Enable/clear is supposed to be RO for STIs, but is RW on RUMI.
  56. */
  57. if (!machine_is_msm8x60_sim())
  58. writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
  59. /* FIXME: Not installing AVS_SVICINT and AVS_SVICINTSWDONE yet
  60. * as they are configured as level, which does not play nice with
  61. * handle_percpu_irq.
  62. */
  63. for (i = GIC_PPI_START; i < GIC_SPI_START; i++) {
  64. if (i != AVS_SVICINT && i != AVS_SVICINTSWDONE)
  65. irq_set_handler(i, handle_percpu_irq);
  66. }
  67. }
  68. static void __init msm8x60_init(void)
  69. {
  70. }
  71. MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3")
  72. .fixup = msm8x60_fixup,
  73. .reserve = msm8x60_reserve,
  74. .map_io = msm8x60_map_io,
  75. .init_irq = msm8x60_init_irq,
  76. .init_machine = msm8x60_init,
  77. .timer = &msm_timer,
  78. MACHINE_END
  79. MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF")
  80. .fixup = msm8x60_fixup,
  81. .reserve = msm8x60_reserve,
  82. .map_io = msm8x60_map_io,
  83. .init_irq = msm8x60_init_irq,
  84. .init_machine = msm8x60_init,
  85. .timer = &msm_timer,
  86. MACHINE_END
  87. MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR")
  88. .fixup = msm8x60_fixup,
  89. .reserve = msm8x60_reserve,
  90. .map_io = msm8x60_map_io,
  91. .init_irq = msm8x60_init_irq,
  92. .init_machine = msm8x60_init,
  93. .timer = &msm_timer,
  94. MACHINE_END
  95. MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA")
  96. .fixup = msm8x60_fixup,
  97. .reserve = msm8x60_reserve,
  98. .map_io = msm8x60_map_io,
  99. .init_irq = msm8x60_init_irq,
  100. .init_machine = msm8x60_init,
  101. .timer = &msm_timer,
  102. MACHINE_END