1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#include <linux/types.h>
20#include <linux/errno.h>
21#include <linux/delay.h>
22#include <linux/platform_device.h>
23#include <linux/clk.h>
24#include <linux/dma-mapping.h>
25#include <linux/io.h>
26
27#include <linux/usb/musb.h>
28
29#include <mach/hardware.h>
30#include <mach/irqs.h>
31#include <mach/am35xx.h>
32#include <plat/usb.h>
33#include <plat/omap_device.h>
34#include "mux.h"
35
36static struct musb_hdrc_config musb_config = {
37 .multipoint = 1,
38 .dyn_fifo = 1,
39 .num_eps = 16,
40 .ram_bits = 12,
41};
42
43static struct musb_hdrc_platform_data musb_plat = {
44#ifdef CONFIG_USB_MUSB_OTG
45 .mode = MUSB_OTG,
46#elif defined(CONFIG_USB_MUSB_HDRC_HCD)
47 .mode = MUSB_HOST,
48#elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
49 .mode = MUSB_PERIPHERAL,
50#endif
51
52 .config = &musb_config,
53
54
55
56
57
58 .power = 50,
59};
60
61static u64 musb_dmamask = DMA_BIT_MASK(32);
62
63static struct omap_musb_board_data musb_default_board_data = {
64 .interface_type = MUSB_INTERFACE_ULPI,
65 .mode = MUSB_OTG,
66 .power = 100,
67};
68
69void __init usb_musb_init(struct omap_musb_board_data *musb_board_data)
70{
71 struct omap_hwmod *oh;
72 struct platform_device *pdev;
73 struct device *dev;
74 int bus_id = -1;
75 const char *oh_name, *name;
76 struct omap_musb_board_data *board_data;
77
78 if (musb_board_data)
79 board_data = musb_board_data;
80 else
81 board_data = &musb_default_board_data;
82
83
84
85
86
87 musb_plat.clock = "ick";
88 musb_plat.board_data = board_data;
89 musb_plat.power = board_data->power >> 1;
90 musb_plat.mode = board_data->mode;
91 musb_plat.extvbus = board_data->extvbus;
92
93 if (cpu_is_omap3517() || cpu_is_omap3505()) {
94 oh_name = "am35x_otg_hs";
95 name = "musb-am35x";
96 } else if (cpu_is_ti81xx()) {
97 oh_name = "usb_otg_hs";
98 name = "musb-ti81xx";
99 } else {
100 oh_name = "usb_otg_hs";
101 name = "musb-omap2430";
102 }
103
104 oh = omap_hwmod_lookup(oh_name);
105 if (WARN(!oh, "%s: could not find omap_hwmod for %s\n",
106 __func__, oh_name))
107 return;
108
109 pdev = omap_device_build(name, bus_id, oh, &musb_plat,
110 sizeof(musb_plat), NULL, 0, false);
111 if (IS_ERR(pdev)) {
112 pr_err("Could not build omap_device for %s %s\n",
113 name, oh_name);
114 return;
115 }
116
117 dev = &pdev->dev;
118 get_device(dev);
119 dev->dma_mask = &musb_dmamask;
120 dev->coherent_dma_mask = musb_dmamask;
121 put_device(dev);
122
123 if (cpu_is_omap44xx())
124 omap4430_phy_init(dev);
125}
126