board-msm7x30.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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/gpio.h>
  18. #include <linux/kernel.h>
  19. #include <linux/irq.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 <linux/clkdev.h>
  26. #include <linux/memblock.h>
  27. #include <asm/mach-types.h>
  28. #include <asm/mach/arch.h>
  29. #include <asm/memory.h>
  30. #include <asm/setup.h>
  31. #include <mach/clk.h>
  32. #include <mach/msm_iomap.h>
  33. #include <mach/dma.h>
  34. #include <mach/vreg.h>
  35. #include "devices.h"
  36. #include "gpiomux.h"
  37. #include "proc_comm.h"
  38. #include "common.h"
  39. static void __init msm7x30_fixup(struct tag *tag, char **cmdline,
  40. struct meminfo *mi)
  41. {
  42. for (; tag->hdr.size; tag = tag_next(tag))
  43. if (tag->hdr.tag == ATAG_MEM && tag->u.mem.start == 0x200000) {
  44. tag->u.mem.start = 0;
  45. tag->u.mem.size += SZ_2M;
  46. }
  47. }
  48. static void __init msm7x30_reserve(void)
  49. {
  50. memblock_remove(0x0, SZ_2M);
  51. }
  52. static int hsusb_phy_init_seq[] = {
  53. 0x30, 0x32, /* Enable and set Pre-Emphasis Depth to 20% */
  54. 0x02, 0x36, /* Disable CDR Auto Reset feature */
  55. -1
  56. };
  57. static int hsusb_link_clk_reset(struct clk *link_clk, bool assert)
  58. {
  59. int ret;
  60. if (assert) {
  61. ret = clk_reset(link_clk, CLK_RESET_ASSERT);
  62. if (ret)
  63. pr_err("usb hs_clk assert failed\n");
  64. } else {
  65. ret = clk_reset(link_clk, CLK_RESET_DEASSERT);
  66. if (ret)
  67. pr_err("usb hs_clk deassert failed\n");
  68. }
  69. return ret;
  70. }
  71. static int hsusb_phy_clk_reset(struct clk *phy_clk)
  72. {
  73. int ret;
  74. ret = clk_reset(phy_clk, CLK_RESET_ASSERT);
  75. if (ret) {
  76. pr_err("usb phy clk assert failed\n");
  77. return ret;
  78. }
  79. usleep_range(10000, 12000);
  80. ret = clk_reset(phy_clk, CLK_RESET_DEASSERT);
  81. if (ret)
  82. pr_err("usb phy clk deassert failed\n");
  83. return ret;
  84. }
  85. static struct msm_otg_platform_data msm_otg_pdata = {
  86. .phy_init_seq = hsusb_phy_init_seq,
  87. .mode = USB_PERIPHERAL,
  88. .otg_control = OTG_PHY_CONTROL,
  89. .link_clk_reset = hsusb_link_clk_reset,
  90. .phy_clk_reset = hsusb_phy_clk_reset,
  91. };
  92. struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS] = {
  93. #ifdef CONFIG_SERIAL_MSM_CONSOLE
  94. [49] = { /* UART2 RFR */
  95. .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
  96. GPIOMUX_FUNC_2 | GPIOMUX_VALID,
  97. },
  98. [50] = { /* UART2 CTS */
  99. .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
  100. GPIOMUX_FUNC_2 | GPIOMUX_VALID,
  101. },
  102. [51] = { /* UART2 RX */
  103. .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
  104. GPIOMUX_FUNC_2 | GPIOMUX_VALID,
  105. },
  106. [52] = { /* UART2 TX */
  107. .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
  108. GPIOMUX_FUNC_2 | GPIOMUX_VALID,
  109. },
  110. #endif
  111. };
  112. static struct platform_device *devices[] __initdata = {
  113. &msm_clock_7x30,
  114. &msm_device_gpio_7x30,
  115. #if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER)
  116. &msm_device_uart2,
  117. #endif
  118. &msm_device_smd,
  119. &msm_device_otg,
  120. &msm_device_hsusb,
  121. &msm_device_hsusb_host,
  122. };
  123. static void __init msm7x30_init_irq(void)
  124. {
  125. msm_init_irq();
  126. }
  127. static void __init msm7x30_init(void)
  128. {
  129. msm_device_otg.dev.platform_data = &msm_otg_pdata;
  130. msm_device_hsusb.dev.parent = &msm_device_otg.dev;
  131. msm_device_hsusb_host.dev.parent = &msm_device_otg.dev;
  132. platform_add_devices(devices, ARRAY_SIZE(devices));
  133. }
  134. static void __init msm7x30_map_io(void)
  135. {
  136. msm_map_msm7x30_io();
  137. }
  138. static void __init msm7x30_init_late(void)
  139. {
  140. smd_debugfs_init();
  141. }
  142. MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF")
  143. .atag_offset = 0x100,
  144. .fixup = msm7x30_fixup,
  145. .reserve = msm7x30_reserve,
  146. .map_io = msm7x30_map_io,
  147. .init_irq = msm7x30_init_irq,
  148. .init_machine = msm7x30_init,
  149. .init_late = msm7x30_init_late,
  150. .init_time = msm7x30_timer_init,
  151. MACHINE_END
  152. MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA")
  153. .atag_offset = 0x100,
  154. .fixup = msm7x30_fixup,
  155. .reserve = msm7x30_reserve,
  156. .map_io = msm7x30_map_io,
  157. .init_irq = msm7x30_init_irq,
  158. .init_machine = msm7x30_init,
  159. .init_late = msm7x30_init_late,
  160. .init_time = msm7x30_timer_init,
  161. MACHINE_END
  162. MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID")
  163. .atag_offset = 0x100,
  164. .fixup = msm7x30_fixup,
  165. .reserve = msm7x30_reserve,
  166. .map_io = msm7x30_map_io,
  167. .init_irq = msm7x30_init_irq,
  168. .init_machine = msm7x30_init,
  169. .init_late = msm7x30_init_late,
  170. .init_time = msm7x30_timer_init,
  171. MACHINE_END