blob: f07ccb25bc244f4f98c33a80d12a9c874e3696c1 [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>
Sriram Dashcae05862015-12-17 17:02:35 +053020#include <linux/dma-mapping.h>
Anatolij Gustschin126512e2010-09-28 20:55:20 +020021
22struct fsl_usb2_dev_data {
23 char *dr_mode; /* controller mode */
24 char *drivers[3]; /* drivers to instantiate for this mode */
25 enum fsl_usb2_operating_modes op_mode; /* operating mode */
26};
27
Sachin Kamat660479a2013-09-16 16:33:52 +053028static struct fsl_usb2_dev_data dr_mode_data[] = {
Anatolij Gustschin126512e2010-09-28 20:55:20 +020029 {
30 .dr_mode = "host",
31 .drivers = { "fsl-ehci", NULL, NULL, },
32 .op_mode = FSL_USB2_DR_HOST,
33 },
34 {
35 .dr_mode = "otg",
36 .drivers = { "fsl-usb2-otg", "fsl-ehci", "fsl-usb2-udc", },
37 .op_mode = FSL_USB2_DR_OTG,
38 },
39 {
40 .dr_mode = "peripheral",
41 .drivers = { "fsl-usb2-udc", NULL, NULL, },
42 .op_mode = FSL_USB2_DR_DEVICE,
43 },
44};
45
Sachin Kamat660479a2013-09-16 16:33:52 +053046static struct fsl_usb2_dev_data *get_dr_mode_data(struct device_node *np)
Anatolij Gustschin126512e2010-09-28 20:55:20 +020047{
48 const unsigned char *prop;
49 int i;
50
51 prop = of_get_property(np, "dr_mode", NULL);
52 if (prop) {
53 for (i = 0; i < ARRAY_SIZE(dr_mode_data); i++) {
54 if (!strcmp(prop, dr_mode_data[i].dr_mode))
55 return &dr_mode_data[i];
56 }
57 }
58 pr_warn("%s: Invalid 'dr_mode' property, fallback to host mode\n",
59 np->full_name);
60 return &dr_mode_data[0]; /* mode not specified, use host */
61}
62
Bill Pemberton41ac7b32012-11-19 13:21:48 -050063static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type)
Anatolij Gustschin126512e2010-09-28 20:55:20 +020064{
65 if (!phy_type)
66 return FSL_USB2_PHY_NONE;
67 if (!strcasecmp(phy_type, "ulpi"))
68 return FSL_USB2_PHY_ULPI;
69 if (!strcasecmp(phy_type, "utmi"))
70 return FSL_USB2_PHY_UTMI;
71 if (!strcasecmp(phy_type, "utmi_wide"))
72 return FSL_USB2_PHY_UTMI_WIDE;
Nikhil Badola6009d952015-06-15 15:48:22 +053073 if (!strcasecmp(phy_type, "utmi_dual"))
74 return FSL_USB2_PHY_UTMI_DUAL;
Anatolij Gustschin126512e2010-09-28 20:55:20 +020075 if (!strcasecmp(phy_type, "serial"))
76 return FSL_USB2_PHY_SERIAL;
77
78 return FSL_USB2_PHY_NONE;
79}
80
Sachin Kamat660479a2013-09-16 16:33:52 +053081static struct platform_device *fsl_usb2_device_register(
Anatolij Gustschin126512e2010-09-28 20:55:20 +020082 struct platform_device *ofdev,
83 struct fsl_usb2_platform_data *pdata,
84 const char *name, int id)
85{
86 struct platform_device *pdev;
87 const struct resource *res = ofdev->resource;
88 unsigned int num = ofdev->num_resources;
89 int retval;
90
91 pdev = platform_device_alloc(name, id);
92 if (!pdev) {
93 retval = -ENOMEM;
94 goto error;
95 }
96
97 pdev->dev.parent = &ofdev->dev;
98
99 pdev->dev.coherent_dma_mask = ofdev->dev.coherent_dma_mask;
Sriram Dashcae05862015-12-17 17:02:35 +0530100
101 if (!pdev->dev.dma_mask)
102 pdev->dev.dma_mask = &ofdev->dev.coherent_dma_mask;
103 else
104 dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200105
106 retval = platform_device_add_data(pdev, pdata, sizeof(*pdata));
107 if (retval)
108 goto error;
109
110 if (num) {
111 retval = platform_device_add_resources(pdev, res, num);
112 if (retval)
113 goto error;
114 }
115
116 retval = platform_device_add(pdev);
117 if (retval)
118 goto error;
119
120 return pdev;
121
122error:
123 platform_device_put(pdev);
124 return ERR_PTR(retval);
125}
126
127static const struct of_device_id fsl_usb2_mph_dr_of_match[];
128
Nikhil Badola38aa4202015-06-15 15:46:37 +0530129static enum fsl_usb2_controller_ver usb_get_ver_info(struct device_node *np)
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530130{
Nikhil Badola38aa4202015-06-15 15:46:37 +0530131 enum fsl_usb2_controller_ver ver = FSL_USB_VER_NONE;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530132
133 /*
134 * returns 1 for usb controller version 1.6
135 * returns 2 for usb controller version 2.2
Nikhil Badolad7c444e2015-05-26 17:14:42 +0530136 * returns 3 for usb controller version 2.4
Nikhil Badola138c3f02015-05-26 17:15:29 +0530137 * returns 4 for usb controller version 2.5
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530138 * returns 0 otherwise
139 */
140 if (of_device_is_compatible(np, "fsl-usb2-dr")) {
141 if (of_device_is_compatible(np, "fsl-usb2-dr-v1.6"))
142 ver = FSL_USB_VER_1_6;
143 else if (of_device_is_compatible(np, "fsl-usb2-dr-v2.2"))
144 ver = FSL_USB_VER_2_2;
Ramneek Mehreshe98b6a42012-09-19 14:18:45 +0530145 else if (of_device_is_compatible(np, "fsl-usb2-dr-v2.4"))
146 ver = FSL_USB_VER_2_4;
Nikhil Badola138c3f02015-05-26 17:15:29 +0530147 else if (of_device_is_compatible(np, "fsl-usb2-dr-v2.5"))
148 ver = FSL_USB_VER_2_5;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530149 else /* for previous controller versions */
150 ver = FSL_USB_VER_OLD;
151
Nikhil Badola38aa4202015-06-15 15:46:37 +0530152 if (ver > FSL_USB_VER_NONE)
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530153 return ver;
154 }
155
Anatolij Gustschin7c1029b2012-12-04 14:23:21 +0100156 if (of_device_is_compatible(np, "fsl,mpc5121-usb2-dr"))
157 return FSL_USB_VER_OLD;
158
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530159 if (of_device_is_compatible(np, "fsl-usb2-mph")) {
160 if (of_device_is_compatible(np, "fsl-usb2-mph-v1.6"))
161 ver = FSL_USB_VER_1_6;
162 else if (of_device_is_compatible(np, "fsl-usb2-mph-v2.2"))
163 ver = FSL_USB_VER_2_2;
Nikhil Badolad7c444e2015-05-26 17:14:42 +0530164 else if (of_device_is_compatible(np, "fsl-usb2-mph-v2.4"))
165 ver = FSL_USB_VER_2_4;
Nikhil Badola138c3f02015-05-26 17:15:29 +0530166 else if (of_device_is_compatible(np, "fsl-usb2-mph-v2.5"))
167 ver = FSL_USB_VER_2_5;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530168 else /* for previous controller versions */
169 ver = FSL_USB_VER_OLD;
170 }
171
172 return ver;
173}
174
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500175static int fsl_usb2_mph_dr_of_probe(struct platform_device *ofdev)
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200176{
177 struct device_node *np = ofdev->dev.of_node;
178 struct platform_device *usb_dev;
179 struct fsl_usb2_platform_data data, *pdata;
180 struct fsl_usb2_dev_data *dev_data;
181 const struct of_device_id *match;
182 const unsigned char *prop;
183 static unsigned int idx;
184 int i;
185
186 if (!of_device_is_available(np))
187 return -ENODEV;
188
189 match = of_match_device(fsl_usb2_mph_dr_of_match, &ofdev->dev);
190 if (!match)
191 return -ENODEV;
192
193 pdata = &data;
194 if (match->data)
195 memcpy(pdata, match->data, sizeof(data));
196 else
197 memset(pdata, 0, sizeof(data));
198
199 dev_data = get_dr_mode_data(np);
200
201 if (of_device_is_compatible(np, "fsl-usb2-mph")) {
202 if (of_get_property(np, "port0", NULL))
203 pdata->port_enables |= FSL_USB2_PORT0_ENABLED;
204
205 if (of_get_property(np, "port1", NULL))
206 pdata->port_enables |= FSL_USB2_PORT1_ENABLED;
207
208 pdata->operating_mode = FSL_USB2_MPH_HOST;
209 } else {
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200210 if (of_get_property(np, "fsl,invert-drvvbus", NULL))
211 pdata->invert_drvvbus = 1;
212
213 if (of_get_property(np, "fsl,invert-pwr-fault", NULL))
214 pdata->invert_pwr_fault = 1;
215
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200216 /* setup mode selected in the device tree */
217 pdata->operating_mode = dev_data->op_mode;
218 }
219
220 prop = of_get_property(np, "phy_type", NULL);
221 pdata->phy_mode = determine_usb_phy(prop);
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530222 pdata->controller_ver = usb_get_ver_info(np);
223
Nikhil Badola523f1de2015-06-15 15:47:29 +0530224 /* Activate Erratum by reading property in device tree */
Julia Lawall72cd1942016-08-05 13:26:53 +0200225 pdata->has_fsl_erratum_a007792 =
226 of_property_read_bool(np, "fsl,usb-erratum-a007792");
227 pdata->has_fsl_erratum_a005275 =
228 of_property_read_bool(np, "fsl,usb-erratum-a005275");
Nikhil Badola523f1de2015-06-15 15:47:29 +0530229
Nikhil Badolaf4fdfaa2015-07-14 17:28:10 +0530230 /*
231 * Determine whether phy_clk_valid needs to be checked
232 * by reading property in device tree
233 */
Julia Lawall72cd1942016-08-05 13:26:53 +0200234 pdata->check_phy_clk_valid =
235 of_property_read_bool(np, "phy-clk-valid");
Nikhil Badolaf4fdfaa2015-07-14 17:28:10 +0530236
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530237 if (pdata->have_sysif_regs) {
Nikhil Badola38aa4202015-06-15 15:46:37 +0530238 if (pdata->controller_ver == FSL_USB_VER_NONE) {
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530239 dev_warn(&ofdev->dev, "Could not get controller version\n");
240 return -ENODEV;
241 }
242 }
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200243
244 for (i = 0; i < ARRAY_SIZE(dev_data->drivers); i++) {
245 if (!dev_data->drivers[i])
246 continue;
247 usb_dev = fsl_usb2_device_register(ofdev, pdata,
248 dev_data->drivers[i], idx);
249 if (IS_ERR(usb_dev)) {
250 dev_err(&ofdev->dev, "Can't register usb device\n");
251 return PTR_ERR(usb_dev);
252 }
253 }
254 idx++;
255 return 0;
256}
257
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500258static int __unregister_subdev(struct device *dev, void *d)
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200259{
260 platform_device_unregister(to_platform_device(dev));
261 return 0;
262}
263
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500264static int fsl_usb2_mph_dr_of_remove(struct platform_device *ofdev)
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200265{
266 device_for_each_child(&ofdev->dev, NULL, __unregister_subdev);
267 return 0;
268}
269
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200270#ifdef CONFIG_PPC_MPC512x
271
272#define USBGENCTRL 0x200 /* NOTE: big endian */
273#define GC_WU_INT_CLR (1 << 5) /* Wakeup int clear */
274#define GC_ULPI_SEL (1 << 4) /* ULPI i/f select (usb0 only)*/
275#define GC_PPP (1 << 3) /* Inv. Port Power Polarity */
276#define GC_PFP (1 << 2) /* Inv. Power Fault Polarity */
277#define GC_WU_ULPI_EN (1 << 1) /* Wakeup on ULPI event */
278#define GC_WU_IE (1 << 1) /* Wakeup interrupt enable */
279
280#define ISIPHYCTRL 0x204 /* NOTE: big endian */
281#define PHYCTRL_PHYE (1 << 4) /* On-chip UTMI PHY enable */
282#define PHYCTRL_BSENH (1 << 3) /* Bit Stuff Enable High */
283#define PHYCTRL_BSEN (1 << 2) /* Bit Stuff Enable */
284#define PHYCTRL_LSFE (1 << 1) /* Line State Filter Enable */
285#define PHYCTRL_PXE (1 << 0) /* PHY oscillator enable */
286
287int fsl_usb2_mpc5121_init(struct platform_device *pdev)
288{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900289 struct fsl_usb2_platform_data *pdata = dev_get_platdata(&pdev->dev);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200290 struct clk *clk;
Gerhard Sittig7282bdb2013-07-19 14:18:31 +0200291 int err;
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200292
Gerhard Sittigd77276c2013-11-30 23:51:31 +0100293 clk = devm_clk_get(pdev->dev.parent, "ipg");
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200294 if (IS_ERR(clk)) {
295 dev_err(&pdev->dev, "failed to get clk\n");
296 return PTR_ERR(clk);
297 }
Gerhard Sittig7282bdb2013-07-19 14:18:31 +0200298 err = clk_prepare_enable(clk);
299 if (err) {
300 dev_err(&pdev->dev, "failed to enable clk\n");
301 return err;
302 }
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200303 pdata->clk = clk;
304
305 if (pdata->phy_mode == FSL_USB2_PHY_UTMI_WIDE) {
306 u32 reg = 0;
307
308 if (pdata->invert_drvvbus)
309 reg |= GC_PPP;
310
311 if (pdata->invert_pwr_fault)
312 reg |= GC_PFP;
313
314 out_be32(pdata->regs + ISIPHYCTRL, PHYCTRL_PHYE | PHYCTRL_PXE);
315 out_be32(pdata->regs + USBGENCTRL, reg);
316 }
317 return 0;
318}
319
320static void fsl_usb2_mpc5121_exit(struct platform_device *pdev)
321{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900322 struct fsl_usb2_platform_data *pdata = dev_get_platdata(&pdev->dev);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200323
324 pdata->regs = NULL;
325
Gerhard Sittig7282bdb2013-07-19 14:18:31 +0200326 if (pdata->clk)
327 clk_disable_unprepare(pdata->clk);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200328}
329
Peter Tysercc604dd2011-01-10 17:34:14 -0600330static struct fsl_usb2_platform_data fsl_usb2_mpc5121_pd = {
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200331 .big_endian_desc = 1,
332 .big_endian_mmio = 1,
333 .es = 1,
Peter Tysercc604dd2011-01-10 17:34:14 -0600334 .have_sysif_regs = 0,
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200335 .le_setup_buf = 1,
336 .init = fsl_usb2_mpc5121_init,
337 .exit = fsl_usb2_mpc5121_exit,
338};
339#endif /* CONFIG_PPC_MPC512x */
340
Peter Tysercc604dd2011-01-10 17:34:14 -0600341static struct fsl_usb2_platform_data fsl_usb2_mpc8xxx_pd = {
342 .have_sysif_regs = 1,
343};
344
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200345static const struct of_device_id fsl_usb2_mph_dr_of_match[] = {
Peter Tysercc604dd2011-01-10 17:34:14 -0600346 { .compatible = "fsl-usb2-mph", .data = &fsl_usb2_mpc8xxx_pd, },
347 { .compatible = "fsl-usb2-dr", .data = &fsl_usb2_mpc8xxx_pd, },
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200348#ifdef CONFIG_PPC_MPC512x
349 { .compatible = "fsl,mpc5121-usb2-dr", .data = &fsl_usb2_mpc5121_pd, },
350#endif
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200351 {},
352};
Luis de Bethencourt8ddb9b82015-09-19 14:10:57 +0100353MODULE_DEVICE_TABLE(of, fsl_usb2_mph_dr_of_match);
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200354
355static struct platform_driver fsl_usb2_mph_dr_driver = {
356 .driver = {
357 .name = "fsl-usb2-mph-dr",
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200358 .of_match_table = fsl_usb2_mph_dr_of_match,
359 },
360 .probe = fsl_usb2_mph_dr_of_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500361 .remove = fsl_usb2_mph_dr_of_remove,
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200362};
363
Axel Lincc27c962011-11-27 20:16:27 +0800364module_platform_driver(fsl_usb2_mph_dr_driver);
Anatolij Gustschin126512e2010-09-28 20:55:20 +0200365
366MODULE_DESCRIPTION("FSL MPH DR OF devices driver");
367MODULE_AUTHOR("Anatolij Gustschin <agust@denx.de>");
368MODULE_LICENSE("GPL");