2 * Setup platform devices needed by the Freescale multi-port host
3 * and/or dual-role USB controller modules based on the description
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.
12 #include <linux/kernel.h>
13 #include <linux/platform_device.h>
14 #include <linux/fsl_devices.h>
15 #include <linux/err.h>
17 #include <linux/of_platform.h>
18 #include <linux/clk.h>
19 #include <linux/module.h>
20 #include <linux/dma-mapping.h>
22 struct 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 */
28 static struct fsl_usb2_dev_data dr_mode_data
[] = {
31 .drivers
= { "fsl-ehci", NULL
, NULL
, },
32 .op_mode
= FSL_USB2_DR_HOST
,
36 .drivers
= { "fsl-usb2-otg", "fsl-ehci", "fsl-usb2-udc", },
37 .op_mode
= FSL_USB2_DR_OTG
,
40 .dr_mode
= "peripheral",
41 .drivers
= { "fsl-usb2-udc", NULL
, NULL
, },
42 .op_mode
= FSL_USB2_DR_DEVICE
,
46 static struct fsl_usb2_dev_data
*get_dr_mode_data(struct device_node
*np
)
48 const unsigned char *prop
;
51 prop
= of_get_property(np
, "dr_mode", NULL
);
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
];
58 pr_warn("%s: Invalid 'dr_mode' property, fallback to host mode\n",
60 return &dr_mode_data
[0]; /* mode not specified, use host */
63 static enum fsl_usb2_phy_modes
determine_usb_phy(const char *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
;
73 if (!strcasecmp(phy_type
, "utmi_dual"))
74 return FSL_USB2_PHY_UTMI_DUAL
;
75 if (!strcasecmp(phy_type
, "serial"))
76 return FSL_USB2_PHY_SERIAL
;
78 return FSL_USB2_PHY_NONE
;
81 static struct platform_device
*fsl_usb2_device_register(
82 struct platform_device
*ofdev
,
83 struct fsl_usb2_platform_data
*pdata
,
84 const char *name
, int id
)
86 struct platform_device
*pdev
;
87 const struct resource
*res
= ofdev
->resource
;
88 unsigned int num
= ofdev
->num_resources
;
91 pdev
= platform_device_alloc(name
, id
);
97 pdev
->dev
.parent
= &ofdev
->dev
;
99 pdev
->dev
.coherent_dma_mask
= ofdev
->dev
.coherent_dma_mask
;
101 if (!pdev
->dev
.dma_mask
)
102 pdev
->dev
.dma_mask
= &ofdev
->dev
.coherent_dma_mask
;
104 dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(32));
106 retval
= platform_device_add_data(pdev
, pdata
, sizeof(*pdata
));
111 retval
= platform_device_add_resources(pdev
, res
, num
);
116 retval
= platform_device_add(pdev
);
123 platform_device_put(pdev
);
124 return ERR_PTR(retval
);
127 static const struct of_device_id fsl_usb2_mph_dr_of_match
[];
129 static enum fsl_usb2_controller_ver
usb_get_ver_info(struct device_node
*np
)
131 enum fsl_usb2_controller_ver ver
= FSL_USB_VER_NONE
;
134 * returns 1 for usb controller version 1.6
135 * returns 2 for usb controller version 2.2
136 * returns 3 for usb controller version 2.4
137 * returns 4 for usb controller version 2.5
138 * returns 0 otherwise
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
;
145 else if (of_device_is_compatible(np
, "fsl-usb2-dr-v2.4"))
146 ver
= FSL_USB_VER_2_4
;
147 else if (of_device_is_compatible(np
, "fsl-usb2-dr-v2.5"))
148 ver
= FSL_USB_VER_2_5
;
149 else /* for previous controller versions */
150 ver
= FSL_USB_VER_OLD
;
152 if (ver
> FSL_USB_VER_NONE
)
156 if (of_device_is_compatible(np
, "fsl,mpc5121-usb2-dr"))
157 return FSL_USB_VER_OLD
;
159 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
;
164 else if (of_device_is_compatible(np
, "fsl-usb2-mph-v2.4"))
165 ver
= FSL_USB_VER_2_4
;
166 else if (of_device_is_compatible(np
, "fsl-usb2-mph-v2.5"))
167 ver
= FSL_USB_VER_2_5
;
168 else /* for previous controller versions */
169 ver
= FSL_USB_VER_OLD
;
175 static int fsl_usb2_mph_dr_of_probe(struct platform_device
*ofdev
)
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
;
186 if (!of_device_is_available(np
))
189 match
= of_match_device(fsl_usb2_mph_dr_of_match
, &ofdev
->dev
);
195 memcpy(pdata
, match
->data
, sizeof(data
));
197 memset(pdata
, 0, sizeof(data
));
199 dev_data
= get_dr_mode_data(np
);
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
;
205 if (of_get_property(np
, "port1", NULL
))
206 pdata
->port_enables
|= FSL_USB2_PORT1_ENABLED
;
208 pdata
->operating_mode
= FSL_USB2_MPH_HOST
;
210 if (of_get_property(np
, "fsl,invert-drvvbus", NULL
))
211 pdata
->invert_drvvbus
= 1;
213 if (of_get_property(np
, "fsl,invert-pwr-fault", NULL
))
214 pdata
->invert_pwr_fault
= 1;
216 /* setup mode selected in the device tree */
217 pdata
->operating_mode
= dev_data
->op_mode
;
220 prop
= of_get_property(np
, "phy_type", NULL
);
221 pdata
->phy_mode
= determine_usb_phy(prop
);
222 pdata
->controller_ver
= usb_get_ver_info(np
);
224 /* Activate Erratum by reading property in device tree */
225 if (of_get_property(np
, "fsl,usb-erratum-a007792", NULL
))
226 pdata
->has_fsl_erratum_a007792
= 1;
228 pdata
->has_fsl_erratum_a007792
= 0;
229 if (of_get_property(np
, "fsl,usb-erratum-a005275", NULL
))
230 pdata
->has_fsl_erratum_a005275
= 1;
232 pdata
->has_fsl_erratum_a005275
= 0;
235 * Determine whether phy_clk_valid needs to be checked
236 * by reading property in device tree
238 if (of_get_property(np
, "phy-clk-valid", NULL
))
239 pdata
->check_phy_clk_valid
= 1;
241 pdata
->check_phy_clk_valid
= 0;
243 if (pdata
->have_sysif_regs
) {
244 if (pdata
->controller_ver
== FSL_USB_VER_NONE
) {
245 dev_warn(&ofdev
->dev
, "Could not get controller version\n");
250 for (i
= 0; i
< ARRAY_SIZE(dev_data
->drivers
); i
++) {
251 if (!dev_data
->drivers
[i
])
253 usb_dev
= fsl_usb2_device_register(ofdev
, pdata
,
254 dev_data
->drivers
[i
], idx
);
255 if (IS_ERR(usb_dev
)) {
256 dev_err(&ofdev
->dev
, "Can't register usb device\n");
257 return PTR_ERR(usb_dev
);
264 static int __unregister_subdev(struct device
*dev
, void *d
)
266 platform_device_unregister(to_platform_device(dev
));
270 static int fsl_usb2_mph_dr_of_remove(struct platform_device
*ofdev
)
272 device_for_each_child(&ofdev
->dev
, NULL
, __unregister_subdev
);
276 #ifdef CONFIG_PPC_MPC512x
278 #define USBGENCTRL 0x200 /* NOTE: big endian */
279 #define GC_WU_INT_CLR (1 << 5) /* Wakeup int clear */
280 #define GC_ULPI_SEL (1 << 4) /* ULPI i/f select (usb0 only)*/
281 #define GC_PPP (1 << 3) /* Inv. Port Power Polarity */
282 #define GC_PFP (1 << 2) /* Inv. Power Fault Polarity */
283 #define GC_WU_ULPI_EN (1 << 1) /* Wakeup on ULPI event */
284 #define GC_WU_IE (1 << 1) /* Wakeup interrupt enable */
286 #define ISIPHYCTRL 0x204 /* NOTE: big endian */
287 #define PHYCTRL_PHYE (1 << 4) /* On-chip UTMI PHY enable */
288 #define PHYCTRL_BSENH (1 << 3) /* Bit Stuff Enable High */
289 #define PHYCTRL_BSEN (1 << 2) /* Bit Stuff Enable */
290 #define PHYCTRL_LSFE (1 << 1) /* Line State Filter Enable */
291 #define PHYCTRL_PXE (1 << 0) /* PHY oscillator enable */
293 int fsl_usb2_mpc5121_init(struct platform_device
*pdev
)
295 struct fsl_usb2_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
299 clk
= devm_clk_get(pdev
->dev
.parent
, "ipg");
301 dev_err(&pdev
->dev
, "failed to get clk\n");
304 err
= clk_prepare_enable(clk
);
306 dev_err(&pdev
->dev
, "failed to enable clk\n");
311 if (pdata
->phy_mode
== FSL_USB2_PHY_UTMI_WIDE
) {
314 if (pdata
->invert_drvvbus
)
317 if (pdata
->invert_pwr_fault
)
320 out_be32(pdata
->regs
+ ISIPHYCTRL
, PHYCTRL_PHYE
| PHYCTRL_PXE
);
321 out_be32(pdata
->regs
+ USBGENCTRL
, reg
);
326 static void fsl_usb2_mpc5121_exit(struct platform_device
*pdev
)
328 struct fsl_usb2_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
333 clk_disable_unprepare(pdata
->clk
);
336 static struct fsl_usb2_platform_data fsl_usb2_mpc5121_pd
= {
337 .big_endian_desc
= 1,
338 .big_endian_mmio
= 1,
340 .have_sysif_regs
= 0,
342 .init
= fsl_usb2_mpc5121_init
,
343 .exit
= fsl_usb2_mpc5121_exit
,
345 #endif /* CONFIG_PPC_MPC512x */
347 static struct fsl_usb2_platform_data fsl_usb2_mpc8xxx_pd
= {
348 .have_sysif_regs
= 1,
351 static const struct of_device_id fsl_usb2_mph_dr_of_match
[] = {
352 { .compatible
= "fsl-usb2-mph", .data
= &fsl_usb2_mpc8xxx_pd
, },
353 { .compatible
= "fsl-usb2-dr", .data
= &fsl_usb2_mpc8xxx_pd
, },
354 #ifdef CONFIG_PPC_MPC512x
355 { .compatible
= "fsl,mpc5121-usb2-dr", .data
= &fsl_usb2_mpc5121_pd
, },
359 MODULE_DEVICE_TABLE(of
, fsl_usb2_mph_dr_of_match
);
361 static struct platform_driver fsl_usb2_mph_dr_driver
= {
363 .name
= "fsl-usb2-mph-dr",
364 .of_match_table
= fsl_usb2_mph_dr_of_match
,
366 .probe
= fsl_usb2_mph_dr_of_probe
,
367 .remove
= fsl_usb2_mph_dr_of_remove
,
370 module_platform_driver(fsl_usb2_mph_dr_driver
);
372 MODULE_DESCRIPTION("FSL MPH DR OF devices driver");
373 MODULE_AUTHOR("Anatolij Gustschin <agust@denx.de>");
374 MODULE_LICENSE("GPL");