usb-musb.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. static struct musb_hdrc_config musb_config = {
  33. .multipoint = 1,
  34. .dyn_fifo = 1,
  35. .num_eps = 16,
  36. .ram_bits = 12,
  37. };
  38. static struct musb_hdrc_platform_data musb_plat = {
  39. #ifdef CONFIG_USB_GADGET_MUSB_HDRC
  40. .mode = MUSB_OTG,
  41. #else
  42. .mode = MUSB_HOST,
  43. #endif
  44. /* .clock is set dynamically */
  45. .config = &musb_config,
  46. /* REVISIT charge pump on TWL4030 can supply up to
  47. * 100 mA ... but this value is board-specific, like
  48. * "mode", and should be passed to usb_musb_init().
  49. */
  50. .power = 50, /* up to 100 mA */
  51. };
  52. static u64 musb_dmamask = DMA_BIT_MASK(32);
  53. static struct omap_musb_board_data musb_default_board_data = {
  54. .interface_type = MUSB_INTERFACE_ULPI,
  55. .mode = MUSB_OTG,
  56. .power = 100,
  57. };
  58. void __init usb_musb_init(struct omap_musb_board_data *musb_board_data)
  59. {
  60. struct omap_hwmod *oh;
  61. struct platform_device *pdev;
  62. struct device *dev;
  63. int bus_id = -1;
  64. const char *oh_name, *name;
  65. struct omap_musb_board_data *board_data;
  66. if (musb_board_data)
  67. board_data = musb_board_data;
  68. else
  69. board_data = &musb_default_board_data;
  70. /*
  71. * REVISIT: This line can be removed once all the platforms using
  72. * musb_core.c have been converted to use use clkdev.
  73. */
  74. musb_plat.clock = "ick";
  75. musb_plat.board_data = board_data;
  76. musb_plat.power = board_data->power >> 1;
  77. musb_plat.mode = board_data->mode;
  78. musb_plat.extvbus = board_data->extvbus;
  79. if (soc_is_am35xx()) {
  80. oh_name = "am35x_otg_hs";
  81. name = "musb-am35x";
  82. } else if (cpu_is_ti81xx()) {
  83. oh_name = "usb_otg_hs";
  84. name = "musb-ti81xx";
  85. } else {
  86. oh_name = "usb_otg_hs";
  87. name = "musb-omap2430";
  88. }
  89. oh = omap_hwmod_lookup(oh_name);
  90. if (WARN(!oh, "%s: could not find omap_hwmod for %s\n",
  91. __func__, oh_name))
  92. return;
  93. pdev = omap_device_build(name, bus_id, oh, &musb_plat,
  94. sizeof(musb_plat), NULL, 0, false);
  95. if (IS_ERR(pdev)) {
  96. pr_err("Could not build omap_device for %s %s\n",
  97. name, oh_name);
  98. return;
  99. }
  100. dev = &pdev->dev;
  101. get_device(dev);
  102. dev->dma_mask = &musb_dmamask;
  103. dev->coherent_dma_mask = musb_dmamask;
  104. put_device(dev);
  105. if (cpu_is_omap44xx())
  106. omap4430_phy_init(dev);
  107. }