usb-musb.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * linux/arch/arm/mach-omap2/usb-musb.c
  3. *
  4. * This file will contain the board specific details for the
  5. * MENTOR USB OTG controller on OMAP3430
  6. *
  7. * Copyright (C) 2007-2008 Texas Instruments
  8. * Copyright (C) 2008 Nokia Corporation
  9. * Author: Vikram Pandita
  10. *
  11. * Generalization by:
  12. * Felipe Balbi <felipe.balbi@nokia.com>
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License version 2 as
  16. * published by the Free Software Foundation.
  17. */
  18. #include <linux/types.h>
  19. #include <linux/errno.h>
  20. #include <linux/delay.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/clk.h>
  23. #include <linux/dma-mapping.h>
  24. #include <linux/io.h>
  25. #include <linux/usb/musb.h>
  26. #include <mach/hardware.h>
  27. #include <mach/irqs.h>
  28. #include <mach/am35xx.h>
  29. #include <plat/usb.h>
  30. #include <plat/omap_device.h>
  31. #include "mux.h"
  32. #if defined(CONFIG_USB_MUSB_OMAP2PLUS) || defined (CONFIG_USB_MUSB_AM35X)
  33. static struct musb_hdrc_config musb_config = {
  34. .multipoint = 1,
  35. .dyn_fifo = 1,
  36. .num_eps = 16,
  37. .ram_bits = 12,
  38. };
  39. static struct musb_hdrc_platform_data musb_plat = {
  40. #ifdef CONFIG_USB_MUSB_OTG
  41. .mode = MUSB_OTG,
  42. #elif defined(CONFIG_USB_MUSB_HDRC_HCD)
  43. .mode = MUSB_HOST,
  44. #elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
  45. .mode = MUSB_PERIPHERAL,
  46. #endif
  47. /* .clock is set dynamically */
  48. .config = &musb_config,
  49. /* REVISIT charge pump on TWL4030 can supply up to
  50. * 100 mA ... but this value is board-specific, like
  51. * "mode", and should be passed to usb_musb_init().
  52. */
  53. .power = 50, /* up to 100 mA */
  54. };
  55. static u64 musb_dmamask = DMA_BIT_MASK(32);
  56. static struct omap_device_pm_latency omap_musb_latency[] = {
  57. {
  58. .deactivate_func = omap_device_idle_hwmods,
  59. .activate_func = omap_device_enable_hwmods,
  60. .flags = OMAP_DEVICE_LATENCY_AUTO_ADJUST,
  61. },
  62. };
  63. static void usb_musb_mux_init(struct omap_musb_board_data *board_data)
  64. {
  65. switch (board_data->interface_type) {
  66. case MUSB_INTERFACE_UTMI:
  67. omap_mux_init_signal("usba0_otg_dp", OMAP_PIN_INPUT);
  68. omap_mux_init_signal("usba0_otg_dm", OMAP_PIN_INPUT);
  69. break;
  70. case MUSB_INTERFACE_ULPI:
  71. omap_mux_init_signal("usba0_ulpiphy_clk",
  72. OMAP_PIN_INPUT_PULLDOWN);
  73. omap_mux_init_signal("usba0_ulpiphy_stp",
  74. OMAP_PIN_INPUT_PULLDOWN);
  75. omap_mux_init_signal("usba0_ulpiphy_dir",
  76. OMAP_PIN_INPUT_PULLDOWN);
  77. omap_mux_init_signal("usba0_ulpiphy_nxt",
  78. OMAP_PIN_INPUT_PULLDOWN);
  79. omap_mux_init_signal("usba0_ulpiphy_dat0",
  80. OMAP_PIN_INPUT_PULLDOWN);
  81. omap_mux_init_signal("usba0_ulpiphy_dat1",
  82. OMAP_PIN_INPUT_PULLDOWN);
  83. omap_mux_init_signal("usba0_ulpiphy_dat2",
  84. OMAP_PIN_INPUT_PULLDOWN);
  85. omap_mux_init_signal("usba0_ulpiphy_dat3",
  86. OMAP_PIN_INPUT_PULLDOWN);
  87. omap_mux_init_signal("usba0_ulpiphy_dat4",
  88. OMAP_PIN_INPUT_PULLDOWN);
  89. omap_mux_init_signal("usba0_ulpiphy_dat5",
  90. OMAP_PIN_INPUT_PULLDOWN);
  91. omap_mux_init_signal("usba0_ulpiphy_dat6",
  92. OMAP_PIN_INPUT_PULLDOWN);
  93. omap_mux_init_signal("usba0_ulpiphy_dat7",
  94. OMAP_PIN_INPUT_PULLDOWN);
  95. break;
  96. default:
  97. break;
  98. }
  99. }
  100. void __init usb_musb_init(struct omap_musb_board_data *board_data)
  101. {
  102. struct omap_hwmod *oh;
  103. struct omap_device *od;
  104. struct platform_device *pdev;
  105. struct device *dev;
  106. int bus_id = -1;
  107. const char *oh_name, *name;
  108. if (cpu_is_omap3517() || cpu_is_omap3505()) {
  109. } else if (cpu_is_omap44xx()) {
  110. usb_musb_mux_init(board_data);
  111. }
  112. /*
  113. * REVISIT: This line can be removed once all the platforms using
  114. * musb_core.c have been converted to use use clkdev.
  115. */
  116. musb_plat.clock = "ick";
  117. musb_plat.board_data = board_data;
  118. musb_plat.power = board_data->power >> 1;
  119. musb_plat.mode = board_data->mode;
  120. musb_plat.extvbus = board_data->extvbus;
  121. if (cpu_is_omap44xx())
  122. omap4430_phy_init(dev);
  123. if (cpu_is_omap3517() || cpu_is_omap3505()) {
  124. oh_name = "am35x_otg_hs";
  125. name = "musb-am35x";
  126. } else {
  127. oh_name = "usb_otg_hs";
  128. name = "musb-omap2430";
  129. }
  130. oh = omap_hwmod_lookup(oh_name);
  131. if (!oh) {
  132. pr_err("Could not look up %s\n", oh_name);
  133. return;
  134. }
  135. od = omap_device_build(name, bus_id, oh, &musb_plat,
  136. sizeof(musb_plat), omap_musb_latency,
  137. ARRAY_SIZE(omap_musb_latency), false);
  138. if (IS_ERR(od)) {
  139. pr_err("Could not build omap_device for %s %s\n",
  140. name, oh_name);
  141. return;
  142. }
  143. pdev = &od->pdev;
  144. dev = &pdev->dev;
  145. get_device(dev);
  146. dev->dma_mask = &musb_dmamask;
  147. dev->coherent_dma_mask = musb_dmamask;
  148. put_device(dev);
  149. }
  150. #else
  151. void __init usb_musb_init(struct omap_musb_board_data *board_data)
  152. {
  153. }
  154. #endif /* CONFIG_USB_MUSB_SOC */