board-msm8960.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* Copyright (c) 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. * 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/clkdev.h>
  23. #include <linux/memblock.h>
  24. #include <asm/mach-types.h>
  25. #include <asm/mach/arch.h>
  26. #include <asm/hardware/gic.h>
  27. #include <asm/setup.h>
  28. #include <mach/board.h>
  29. #include <mach/msm_iomap.h>
  30. #include "devices.h"
  31. static void __init msm8960_fixup(struct tag *tag, char **cmdline,
  32. struct meminfo *mi)
  33. {
  34. for (; tag->hdr.size; tag = tag_next(tag))
  35. if (tag->hdr.tag == ATAG_MEM &&
  36. tag->u.mem.start == 0x40200000) {
  37. tag->u.mem.start = 0x40000000;
  38. tag->u.mem.size += SZ_2M;
  39. }
  40. }
  41. static void __init msm8960_reserve(void)
  42. {
  43. memblock_remove(0x40000000, SZ_2M);
  44. }
  45. static void __init msm8960_map_io(void)
  46. {
  47. msm_map_msm8960_io();
  48. }
  49. static void __init msm8960_init_irq(void)
  50. {
  51. unsigned int i;
  52. gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
  53. (void *)MSM_QGIC_CPU_BASE);
  54. /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */
  55. writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4);
  56. if (machine_is_msm8960_rumi3())
  57. writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
  58. /* FIXME: Not installing AVS_SVICINT and AVS_SVICINTSWDONE yet
  59. * as they are configured as level, which does not play nice with
  60. * handle_percpu_irq.
  61. */
  62. for (i = GIC_PPI_START; i < GIC_SPI_START; i++) {
  63. if (i != AVS_SVICINT && i != AVS_SVICINTSWDONE)
  64. irq_set_handler(i, handle_percpu_irq);
  65. }
  66. }
  67. static struct platform_device *sim_devices[] __initdata = {
  68. &msm8960_device_uart_gsbi2,
  69. };
  70. static struct platform_device *rumi3_devices[] __initdata = {
  71. &msm8960_device_uart_gsbi5,
  72. };
  73. static void __init msm8960_sim_init(void)
  74. {
  75. platform_add_devices(sim_devices, ARRAY_SIZE(sim_devices));
  76. }
  77. static void __init msm8960_rumi3_init(void)
  78. {
  79. platform_add_devices(rumi3_devices, ARRAY_SIZE(rumi3_devices));
  80. }
  81. MACHINE_START(MSM8960_SIM, "QCT MSM8960 SIMULATOR")
  82. .fixup = msm8960_fixup,
  83. .reserve = msm8960_reserve,
  84. .map_io = msm8960_map_io,
  85. .init_irq = msm8960_init_irq,
  86. .timer = &msm_timer,
  87. .handle_irq = gic_handle_irq,
  88. .init_machine = msm8960_sim_init,
  89. MACHINE_END
  90. MACHINE_START(MSM8960_RUMI3, "QCT MSM8960 RUMI3")
  91. .fixup = msm8960_fixup,
  92. .reserve = msm8960_reserve,
  93. .map_io = msm8960_map_io,
  94. .init_irq = msm8960_init_irq,
  95. .timer = &msm_timer,
  96. .handle_irq = gic_handle_irq,
  97. .init_machine = msm8960_rumi3_init,
  98. MACHINE_END