board-msm7x30.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /* Copyright (c) 2009-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. #include <linux/kernel.h>
  18. #include <linux/irq.h>
  19. #include <linux/gpio.h>
  20. #include <linux/platform_device.h>
  21. #include <linux/delay.h>
  22. #include <linux/io.h>
  23. #include <linux/smsc911x.h>
  24. #include <linux/usb/msm_hsusb.h>
  25. #include <asm/mach-types.h>
  26. #include <asm/mach/arch.h>
  27. #include <asm/setup.h>
  28. #include <mach/gpio.h>
  29. #include <mach/board.h>
  30. #include <mach/memory.h>
  31. #include <mach/msm_iomap.h>
  32. #include <mach/dma.h>
  33. #include <mach/vreg.h>
  34. #include "devices.h"
  35. #include "gpiomux.h"
  36. #include "proc_comm.h"
  37. extern struct sys_timer msm_timer;
  38. static int hsusb_phy_init_seq[] = {
  39. 0x30, 0x32, /* Enable and set Pre-Emphasis Depth to 20% */
  40. 0x02, 0x36, /* Disable CDR Auto Reset feature */
  41. -1
  42. };
  43. static struct msm_otg_platform_data msm_otg_pdata = {
  44. .phy_init_seq = hsusb_phy_init_seq,
  45. .mode = USB_PERIPHERAL,
  46. .otg_control = OTG_PHY_CONTROL,
  47. };
  48. struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS] = {
  49. #ifdef CONFIG_SERIAL_MSM_CONSOLE
  50. [49] = { /* UART2 RFR */
  51. .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
  52. GPIOMUX_FUNC_2 | GPIOMUX_VALID,
  53. },
  54. [50] = { /* UART2 CTS */
  55. .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
  56. GPIOMUX_FUNC_2 | GPIOMUX_VALID,
  57. },
  58. [51] = { /* UART2 RX */
  59. .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
  60. GPIOMUX_FUNC_2 | GPIOMUX_VALID,
  61. },
  62. [52] = { /* UART2 TX */
  63. .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
  64. GPIOMUX_FUNC_2 | GPIOMUX_VALID,
  65. },
  66. #endif
  67. };
  68. static struct platform_device *devices[] __initdata = {
  69. #if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER)
  70. &msm_device_uart2,
  71. #endif
  72. &msm_device_smd,
  73. &msm_device_otg,
  74. &msm_device_hsusb,
  75. &msm_device_hsusb_host,
  76. };
  77. static void __init msm7x30_init_irq(void)
  78. {
  79. msm_init_irq();
  80. }
  81. static void __init msm7x30_init(void)
  82. {
  83. msm_device_otg.dev.platform_data = &msm_otg_pdata;
  84. msm_device_hsusb.dev.parent = &msm_device_otg.dev;
  85. msm_device_hsusb_host.dev.parent = &msm_device_otg.dev;
  86. platform_add_devices(devices, ARRAY_SIZE(devices));
  87. }
  88. static void __init msm7x30_map_io(void)
  89. {
  90. msm_map_msm7x30_io();
  91. msm_clock_init(msm_clocks_7x30, msm_num_clocks_7x30);
  92. }
  93. MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF")
  94. #ifdef CONFIG_MSM_DEBUG_UART
  95. #endif
  96. .boot_params = PHYS_OFFSET + 0x100,
  97. .map_io = msm7x30_map_io,
  98. .init_irq = msm7x30_init_irq,
  99. .init_machine = msm7x30_init,
  100. .timer = &msm_timer,
  101. MACHINE_END
  102. MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA")
  103. #ifdef CONFIG_MSM_DEBUG_UART
  104. #endif
  105. .boot_params = PHYS_OFFSET + 0x100,
  106. .map_io = msm7x30_map_io,
  107. .init_irq = msm7x30_init_irq,
  108. .init_machine = msm7x30_init,
  109. .timer = &msm_timer,
  110. MACHINE_END
  111. MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID")
  112. #ifdef CONFIG_MSM_DEBUG_UART
  113. #endif
  114. .boot_params = PHYS_OFFSET + 0x100,
  115. .map_io = msm7x30_map_io,
  116. .init_irq = msm7x30_init_irq,
  117. .init_machine = msm7x30_init,
  118. .timer = &msm_timer,
  119. MACHINE_END