blob: e588ccd468fc04a5e88833450d40d64c0a8a7177 [file] [log] [blame]
Anatolij Gustschin126512e2010-09-28 20:55:20 +02001/*
2 * Setup platform devices needed by the Freescale multi-port host
3 * and/or dual-role USB controller modules based on the description
4 * in flat device tree.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/platform_device.h>
14#include <linux/fsl_devices.h>
15#include <linux/err.h>
16#include <linux/io.h>
17#include <linux/of_platform.h>
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +020018#include <linux/clk.h>
Paul Gortmaker6eb0de82011-07-03 16:09:31 -040019#include <linux/module.h>
Anatolij Gustschin126512e2010-09-28 20:55:20 +020020
21struct fsl_usb2_dev_data {
22 char *dr_mode; /* controller mode */
23 char *drivers[3]; /* drivers to instantiate for this mode */
24 enum fsl_usb2_operating_modes op_mode; /* operating mode */
25};
26
Sachin Kamat660479a2013-09-16 16:33:52 +053027static struct fsl_usb2_dev_data dr_mode_data[] = {
Anatolij Gustschin126512e2010-09-28 20:55:20 +020028 {
29 .dr_mode = "host",
30 .drivers = { "fsl-ehci", NULL, NULL, },
31 .op_mode = FSL_USB2_DR_HOST,
32 },
33 {
34 .dr_mode = "otg",
35 .drivers = { "fsl-usb2-otg", "fsl-ehci", "fsl-usb2-udc", },
36 .op_mode = FSL_USB2_DR_OTG,
37 },
38 {
39 .dr_mode = "peripheral",
40 .drivers = { "fsl-usb2-udc", NULL, NULL, },
41 .op_mode = FSL_USB2_DR_DEVICE,
42 },
43};
44
Sachin Kamat660479a2013-09-16 16:33:52 +053045static struct fsl_usb2_dev_data *get_dr_mode_data(struct device_node *np)
Anatolij Gustschin126512e2010-09-28 20:55:20 +020046{
47 const unsigned char *prop;
48 int i;
49
50 prop = of_get_property(np, "dr_mode", NULL);
51 if (prop) {
52 for (i = 0; i < ARRAY_SIZE(dr_mode_data); i++) {
53 if (!strcmp(prop, dr_mode_data[i].dr_mode))
54 return &dr_mode_data[i];
55 }
56 }
57 pr_warn("%s: Invalid 'dr_mode' property, fallback to host mode\n",
58 np->full_name);
59 return &dr_mode_data[0]; /* mode not specified, use host */
60}
61
Bill Pemberton41ac7b32012-11-19 13:21:48 -050062static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type)
Anatolij Gustschin126512e2010-09-28 20:55:20 +020063{
64 if (!phy_type)
65 return FSL_USB2_PHY_NONE;
66 if (!strcasecmp(phy_type, "ulpi"))
67 return FSL_USB2_PHY_ULPI;
68 if (!strcasecmp(phy_type, "utmi"))
69 return FSL_USB2_PHY_UTMI;
70 if (!strcasecmp(phy_type, "utmi_wide"))
71 return FSL_USB2_PHY_UTMI_WIDE;
72 if (!strcasecmp(phy_type, "serial"))
73 return FSL_USB2_PHY_SERIAL;
74
75 return FSL_USB2_PHY_NONE;
76}
77
Sachin Kamat660479a2013-09-16 16:33:52 +053078static struct platform_device *fsl_usb2_device_register(
Anatolij Gustschin126512e2010-09-28 20:55:20 +020079 struct platform_device *ofdev,
80 struct fsl_usb2_platform_data *pdata,
81 const char *name, int id)
82{
83 struct platform_device *pdev;
84 const struct resource *res = ofdev->resource;
85 unsigned int num = ofdev->num_resources;
86 int retval;
87
88 pdev = platform_device_alloc(name, id);
89 if (!pdev) {
90 retval = -ENOMEM;
91 goto error;
92 }
93
94 pdev->dev.parent = &ofdev->dev;
95
96 pdev->dev.coherent_dma_mask = ofdev->dev.coherent_dma_mask;
Anatolij Gustschin126512e2010-09-28 20:55:20 +020097 *pdev->dev.dma_mask = *ofdev->dev.dma_mask;
98
99 retval = platform_device_add_data(pdev, pdata, sizeof(*pdata));
100 if (retval)
101 goto error;
102
103 if (num) {
104 retval = platform_device_add_resources(pdev, res, num);
105 if (retval)
106 goto error;
107 }
108
109 retval = platform_device_add(pdev);
110 if (retval)
111 goto error;
112
113 return pdev;
114
115error:
116 platform_device_put(pdev);
117 return ERR_PTR(retval);
118}
119
120static const struct of_device_id fsl_usb2_mph_dr_of_match[];
121
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530122static int usb_get_ver_info(struct device_node *np)
123{
124 int ver = -1;
125
126 /*
127 * returns 1 for usb controller version 1.6
128 * returns 2 for usb controller version 2.2
Nikhil Badolad7c444e2015-05-26 17:14:42 +0530129 * returns 3 for usb controller version 2.4
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530130 * returns 0 otherwise
131 */
132 if (of_device_is_compatible(np, "fsl-usb2-dr")) {
133 if (of_device_is_compatible(np, "fsl-usb2-dr-v1.6"))
134 ver = FSL_USB_VER_1_6;
135 else if (of_device_is_compatible(np, "fsl-usb2-dr-v2.2"))
136 ver = FSL_USB_VER_2_2;
Ramneek Mehreshe98b6a42012-09-19 14:18:45 +0530137 else if (of_device_is_compatible(np, "fsl-usb2-dr-v2.4"))
138 ver = FSL_USB_VER_2_4;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530139 else /* for previous controller versions */
140 ver = FSL_USB_VER_OLD;
141
142 if (ver > -1)
143 return ver;
144 }
145
Anatolij Gustschin7c1029b2012-12-04 14:23:21 +0100146 if (of_device_is_compatible(np, "fsl,mpc5121-usb2-dr"))
147 return FSL_USB_VER_OLD;
148
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530149 if (of_device_is_compatible(np, "fsl-usb2-mph")) {
150 if (of_device_is_compatible(np, "fsl-usb2-mph-v1.6"))
151 ver = FSL_USB_VER_1_6;
152 else if (of_device_is_compatible(np, "fsl-usb2-mph-v2.2"))
153 ver = FSL_USB_VER_2_2;
Nikhil Badolad7c444e2015-05-26 17:14:42 +0530154 else if (of_device_is_compatible(np, "fsl-usb2-mph-v2.4"))
155 ver = FSL_USB_VER_2_4;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530156 else /* for previous controller versions */
157 ver = FSL_USB_VER_OLD;
158 }
159
160 return ver;
161}
162
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500163static int fsl_usb2_mph_dr_of_probe(struct platform_device *ofdev)
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200164{
165 struct device_node *np = ofdev->dev.of_node;
166 struct platform_device *usb_dev;
167 struct fsl_usb2_platform_data data, *pdata;
168 struct fsl_usb2_dev_data *dev_data;
169 const struct of_device_id *match;
170 const unsigned char *prop;
171 static unsigned int idx;
172 int i;
173
174 if (!of_device_is_available(np))
175 return -ENODEV;
176
177 match = of_match_device(fsl_usb2_mph_dr_of_match, &ofdev->dev);
178 if (!match)
179 return -ENODEV;
180
181 pdata = &data;
182 if (match->data)
183 memcpy(pdata, match->data, sizeof(data));
184 else
185 memset(pdata, 0, sizeof(data));
186
187 dev_data = get_dr_mode_data(np);
188
189 if (of_device_is_compatible(np, "fsl-usb2-mph")) {
190 if (of_get_property(np, "port0", NULL))
191 pdata->port_enables |= FSL_USB2_PORT0_ENABLED;
192
193 if (of_get_property(np, "port1", NULL))
194 pdata->port_enables |= FSL_USB2_PORT1_ENABLED;
195
196 pdata->operating_mode = FSL_USB2_MPH_HOST;
197 } else {
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200198 if (of_get_property(np, "fsl,invert-drvvbus", NULL))
199 pdata->invert_drvvbus = 1;
200
201 if (of_get_property(np, "fsl,invert-pwr-fault", NULL))
202 pdata->invert_pwr_fault = 1;
203
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200204 /* setup mode selected in the device tree */
205 pdata->operating_mode = dev_data->op_mode;
206 }
207
208 prop = of_get_property(np, "phy_type", NULL);
209 pdata->phy_mode = determine_usb_phy(prop);
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530210 pdata->controller_ver = usb_get_ver_info(np);
211
212 if (pdata->have_sysif_regs) {
213 if (pdata->controller_ver < 0) {
214 dev_warn(&ofdev->dev, "Could not get controller version\n");
215 return -ENODEV;
216 }
217 }
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200218
219 for (i = 0; i < ARRAY_SIZE(dev_data->drivers); i++) {
220 if (!dev_data->drivers[i])
221 continue;
222 usb_dev = fsl_usb2_device_register(ofdev, pdata,
223 dev_data->drivers[i], idx);
224 if (IS_ERR(usb_dev)) {
225 dev_err(&ofdev->dev, "Can't register usb device\n");
226 return PTR_ERR(usb_dev);
227 }
228 }
229 idx++;
230 return 0;
231}
232
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500233static int __unregister_subdev(struct device *dev, void *d)
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200234{
235 platform_device_unregister(to_platform_device(dev));
236 return 0;
237}
238
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500239static int fsl_usb2_mph_dr_of_remove(struct platform_device *ofdev)
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200240{
241 device_for_each_child(&ofdev->dev, NULL, __unregister_subdev);
242 return 0;
243}
244
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200245#ifdef CONFIG_PPC_MPC512x
246
247#define USBGENCTRL 0x200 /* NOTE: big endian */
248#define GC_WU_INT_CLR (1 << 5) /* Wakeup int clear */
249#define GC_ULPI_SEL (1 << 4) /* ULPI i/f select (usb0 only)*/
250#define GC_PPP (1 << 3) /* Inv. Port Power Polarity */
251#define GC_PFP (1 << 2) /* Inv. Power Fault Polarity */
252#define GC_WU_ULPI_EN (1 << 1) /* Wakeup on ULPI event */
253#define GC_WU_IE (1 << 1) /* Wakeup interrupt enable */
254
255#define ISIPHYCTRL 0x204 /* NOTE: big endian */
256#define PHYCTRL_PHYE (1 << 4) /* On-chip UTMI PHY enable */
257#define PHYCTRL_BSENH (1 << 3) /* Bit Stuff Enable High */
258#define PHYCTRL_BSEN (1 << 2) /* Bit Stuff Enable */
259#define PHYCTRL_LSFE (1 << 1) /* Line State Filter Enable */
260#define PHYCTRL_PXE (1 << 0) /* PHY oscillator enable */
261
262int fsl_usb2_mpc5121_init(struct platform_device *pdev)
263{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900264 struct fsl_usb2_platform_data *pdata = dev_get_platdata(&pdev->dev);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200265 struct clk *clk;
Gerhard Sittig7282bdb2013-07-19 14:18:31 +0200266 int err;
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200267
Gerhard Sittigd77276c2013-11-30 23:51:31 +0100268 clk = devm_clk_get(pdev->dev.parent, "ipg");
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200269 if (IS_ERR(clk)) {
270 dev_err(&pdev->dev, "failed to get clk\n");
271 return PTR_ERR(clk);
272 }
Gerhard Sittig7282bdb2013-07-19 14:18:31 +0200273 err = clk_prepare_enable(clk);
274 if (err) {
275 dev_err(&pdev->dev, "failed to enable clk\n");
276 return err;
277 }
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200278 pdata->clk = clk;
279
280 if (pdata->phy_mode == FSL_USB2_PHY_UTMI_WIDE) {
281 u32 reg = 0;
282
283 if (pdata->invert_drvvbus)
284 reg |= GC_PPP;
285
286 if (pdata->invert_pwr_fault)
287 reg |= GC_PFP;
288
289 out_be32(pdata->regs + ISIPHYCTRL, PHYCTRL_PHYE | PHYCTRL_PXE);
290 out_be32(pdata->regs + USBGENCTRL, reg);
291 }
292 return 0;
293}
294
295static void fsl_usb2_mpc5121_exit(struct platform_device *pdev)
296{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900297 struct fsl_usb2_platform_data *pdata = dev_get_platdata(&pdev->dev);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200298
299 pdata->regs = NULL;
300
Gerhard Sittig7282bdb2013-07-19 14:18:31 +0200301 if (pdata->clk)
302 clk_disable_unprepare(pdata->clk);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200303}
304
Peter Tysercc604dd2011-01-10 17:34:14 -0600305static struct fsl_usb2_platform_data fsl_usb2_mpc5121_pd = {
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200306 .big_endian_desc = 1,
307 .big_endian_mmio = 1,
308 .es = 1,
Peter Tysercc604dd2011-01-10 17:34:14 -0600309 .have_sysif_regs = 0,
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200310 .le_setup_buf = 1,
311 .init = fsl_usb2_mpc5121_init,
312 .exit = fsl_usb2_mpc5121_exit,
313};
314#endif /* CONFIG_PPC_MPC512x */
315
Peter Tysercc604dd2011-01-10 17:34:14 -0600316static struct fsl_usb2_platform_data fsl_usb2_mpc8xxx_pd = {
317 .have_sysif_regs = 1,
318};
319
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200320static const struct of_device_id fsl_usb2_mph_dr_of_match[] = {
Peter Tysercc604dd2011-01-10 17:34:14 -0600321 { .compatible = "fsl-usb2-mph", .data = &fsl_usb2_mpc8xxx_pd, },
322 { .compatible = "fsl-usb2-dr", .data = &fsl_usb2_mpc8xxx_pd, },
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200323#ifdef CONFIG_PPC_MPC512x
324 { .compatible = "fsl,mpc5121-usb2-dr", .data = &fsl_usb2_mpc5121_pd, },
325#endif
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200326 {},
327};
328
329static struct platform_driver fsl_usb2_mph_dr_driver = {
330 .driver = {
331 .name = "fsl-usb2-mph-dr",
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200332 .of_match_table = fsl_usb2_mph_dr_of_match,
333 },
334 .probe = fsl_usb2_mph_dr_of_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500335 .remove = fsl_usb2_mph_dr_of_remove,
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200336};
337
Axel Lincc27c962011-11-27 20:16:27 +0800338module_platform_driver(fsl_usb2_mph_dr_driver);
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200339
340MODULE_DESCRIPTION("FSL MPH DR OF devices driver");
341MODULE_AUTHOR("Anatolij Gustschin <agust@denx.de>");
342MODULE_LICENSE("GPL");