board-msm8x60.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 <asm/mach-types.h>
  23. #include <asm/mach/arch.h>
  24. #include <asm/hardware/gic.h>
  25. #include <mach/board.h>
  26. #include <mach/msm_iomap.h>
  27. unsigned long clk_get_max_axi_khz(void)
  28. {
  29. return 0;
  30. }
  31. static void __init msm8x60_map_io(void)
  32. {
  33. msm_map_msm8x60_io();
  34. }
  35. static void __init msm8x60_init_irq(void)
  36. {
  37. unsigned int i;
  38. gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
  39. (void *)MSM_QGIC_CPU_BASE);
  40. /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */
  41. writel(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4);
  42. /* RUMI does not adhere to GIC spec by enabling STIs by default.
  43. * Enable/clear is supposed to be RO for STIs, but is RW on RUMI.
  44. */
  45. if (!machine_is_msm8x60_sim())
  46. writel(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
  47. /* FIXME: Not installing AVS_SVICINT and AVS_SVICINTSWDONE yet
  48. * as they are configured as level, which does not play nice with
  49. * handle_percpu_irq.
  50. */
  51. for (i = GIC_PPI_START; i < GIC_SPI_START; i++) {
  52. if (i != AVS_SVICINT && i != AVS_SVICINTSWDONE)
  53. set_irq_handler(i, handle_percpu_irq);
  54. }
  55. }
  56. static void __init msm8x60_init(void)
  57. {
  58. }
  59. MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3")
  60. .map_io = msm8x60_map_io,
  61. .init_irq = msm8x60_init_irq,
  62. .init_machine = msm8x60_init,
  63. .timer = &msm_timer,
  64. MACHINE_END
  65. MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF")
  66. .map_io = msm8x60_map_io,
  67. .init_irq = msm8x60_init_irq,
  68. .init_machine = msm8x60_init,
  69. .timer = &msm_timer,
  70. MACHINE_END
  71. MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR")
  72. .map_io = msm8x60_map_io,
  73. .init_irq = msm8x60_init_irq,
  74. .init_machine = msm8x60_init,
  75. .timer = &msm_timer,
  76. MACHINE_END
  77. MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA")
  78. .map_io = msm8x60_map_io,
  79. .init_irq = msm8x60_init_irq,
  80. .init_machine = msm8x60_init,
  81. .timer = &msm_timer,
  82. MACHINE_END