xref: /linux/drivers/usb/host/ohci-nxp.c (revision 30330b8fedba32e6bfeda8040311a11b84053c97)
1 /*
2  * driver for NXP USB Host devices
3  *
4  * Currently supported OHCI host devices:
5  * - NXP LPC32xx
6  *
7  * Authors: Dmitry Chigirev <source@mvista.com>
8  *	    Vitaly Wool <vitalywool@gmail.com>
9  *
10  * register initialization is based on code examples provided by Philips
11  * Copyright (c) 2005 Koninklijke Philips Electronics N.V.
12  *
13  * NOTE: This driver does not have suspend/resume functionality
14  * This driver is intended for engineering development purposes only
15  *
16  * 2005-2006 (c) MontaVista Software, Inc. This file is licensed under
17  * the terms of the GNU General Public License version 2. This program
18  * is licensed "as is" without any warranty of any kind, whether express
19  * or implied.
20  */
21 #include <linux/clk.h>
22 #include <linux/dma-mapping.h>
23 #include <linux/io.h>
24 #include <linux/i2c.h>
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/of.h>
28 #include <linux/platform_device.h>
29 #include <linux/usb/isp1301.h>
30 #include <linux/usb.h>
31 #include <linux/usb/hcd.h>
32 
33 #include "ohci.h"
34 
35 
36 #include <mach/hardware.h>
37 #include <asm/mach-types.h>
38 #include <asm/io.h>
39 
40 #include <mach/platform.h>
41 #include <mach/irqs.h>
42 
43 #define USB_CONFIG_BASE		0x31020000
44 #define PWRMAN_BASE		0x40004000
45 
46 #define USB_CTRL		IO_ADDRESS(PWRMAN_BASE + 0x64)
47 
48 /* USB_CTRL bit defines */
49 #define USB_SLAVE_HCLK_EN	(1 << 24)
50 #define USB_DEV_NEED_CLK_EN	(1 << 22)
51 #define USB_HOST_NEED_CLK_EN	(1 << 21)
52 #define PAD_CONTROL_LAST_DRIVEN	(1 << 19)
53 
54 #define USB_OTG_STAT_CONTROL	IO_ADDRESS(USB_CONFIG_BASE + 0x110)
55 
56 /* USB_OTG_STAT_CONTROL bit defines */
57 #define TRANSPARENT_I2C_EN	(1 << 7)
58 #define HOST_EN			(1 << 0)
59 
60 /* On LPC32xx, those are undefined */
61 #ifndef start_int_set_falling_edge
62 #define start_int_set_falling_edge(irq)
63 #define start_int_set_rising_edge(irq)
64 #define start_int_ack(irq)
65 #define start_int_mask(irq)
66 #define start_int_umask(irq)
67 #endif
68 
69 #define DRIVER_DESC "OHCI NXP driver"
70 
71 static const char hcd_name[] = "ohci-nxp";
72 static struct hc_driver __read_mostly ohci_nxp_hc_driver;
73 
74 static struct i2c_client *isp1301_i2c_client;
75 
76 extern int usb_disabled(void);
77 
78 static struct clk *usb_pll_clk;
79 static struct clk *usb_dev_clk;
80 static struct clk *usb_otg_clk;
81 
82 static void isp1301_configure_lpc32xx(void)
83 {
84 	/* LPC32XX only supports DAT_SE0 USB mode */
85 	/* This sequence is important */
86 
87 	/* Disable transparent UART mode first */
88 	i2c_smbus_write_byte_data(isp1301_i2c_client,
89 		(ISP1301_I2C_MODE_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR),
90 		MC1_UART_EN);
91 	i2c_smbus_write_byte_data(isp1301_i2c_client,
92 		(ISP1301_I2C_MODE_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR),
93 		~MC1_SPEED_REG);
94 	i2c_smbus_write_byte_data(isp1301_i2c_client,
95 				  ISP1301_I2C_MODE_CONTROL_1, MC1_SPEED_REG);
96 	i2c_smbus_write_byte_data(isp1301_i2c_client,
97 		  (ISP1301_I2C_MODE_CONTROL_2 | ISP1301_I2C_REG_CLEAR_ADDR),
98 		  ~0);
99 	i2c_smbus_write_byte_data(isp1301_i2c_client,
100 		ISP1301_I2C_MODE_CONTROL_2,
101 		(MC2_BI_DI | MC2_PSW_EN | MC2_SPD_SUSP_CTRL));
102 	i2c_smbus_write_byte_data(isp1301_i2c_client,
103 		(ISP1301_I2C_OTG_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR), ~0);
104 	i2c_smbus_write_byte_data(isp1301_i2c_client,
105 		ISP1301_I2C_MODE_CONTROL_1, MC1_DAT_SE0);
106 	i2c_smbus_write_byte_data(isp1301_i2c_client,
107 		ISP1301_I2C_OTG_CONTROL_1,
108 		(OTG1_DM_PULLDOWN | OTG1_DP_PULLDOWN));
109 	i2c_smbus_write_byte_data(isp1301_i2c_client,
110 		(ISP1301_I2C_OTG_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR),
111 		(OTG1_DM_PULLUP | OTG1_DP_PULLUP));
112 	i2c_smbus_write_byte_data(isp1301_i2c_client,
113 		ISP1301_I2C_INTERRUPT_LATCH | ISP1301_I2C_REG_CLEAR_ADDR, ~0);
114 	i2c_smbus_write_byte_data(isp1301_i2c_client,
115 		ISP1301_I2C_INTERRUPT_FALLING | ISP1301_I2C_REG_CLEAR_ADDR,
116 		~0);
117 	i2c_smbus_write_byte_data(isp1301_i2c_client,
118 		ISP1301_I2C_INTERRUPT_RISING | ISP1301_I2C_REG_CLEAR_ADDR, ~0);
119 
120 	/* Enable usb_need_clk clock after transceiver is initialized */
121 	__raw_writel(__raw_readl(USB_CTRL) | USB_HOST_NEED_CLK_EN, USB_CTRL);
122 
123 	printk(KERN_INFO "ISP1301 Vendor ID  : 0x%04x\n",
124 	      i2c_smbus_read_word_data(isp1301_i2c_client, 0x00));
125 	printk(KERN_INFO "ISP1301 Product ID : 0x%04x\n",
126 	      i2c_smbus_read_word_data(isp1301_i2c_client, 0x02));
127 	printk(KERN_INFO "ISP1301 Version ID : 0x%04x\n",
128 	      i2c_smbus_read_word_data(isp1301_i2c_client, 0x14));
129 }
130 
131 static void isp1301_configure(void)
132 {
133 	isp1301_configure_lpc32xx();
134 }
135 
136 static inline void isp1301_vbus_on(void)
137 {
138 	i2c_smbus_write_byte_data(isp1301_i2c_client, ISP1301_I2C_OTG_CONTROL_1,
139 				  OTG1_VBUS_DRV);
140 }
141 
142 static inline void isp1301_vbus_off(void)
143 {
144 	i2c_smbus_write_byte_data(isp1301_i2c_client,
145 		ISP1301_I2C_OTG_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR,
146 		OTG1_VBUS_DRV);
147 }
148 
149 static void ohci_nxp_start_hc(void)
150 {
151 	unsigned long tmp = __raw_readl(USB_OTG_STAT_CONTROL) | HOST_EN;
152 	__raw_writel(tmp, USB_OTG_STAT_CONTROL);
153 	isp1301_vbus_on();
154 }
155 
156 static void ohci_nxp_stop_hc(void)
157 {
158 	unsigned long tmp;
159 	isp1301_vbus_off();
160 	tmp = __raw_readl(USB_OTG_STAT_CONTROL) & ~HOST_EN;
161 	__raw_writel(tmp, USB_OTG_STAT_CONTROL);
162 }
163 
164 static int ohci_hcd_nxp_probe(struct platform_device *pdev)
165 {
166 	struct usb_hcd *hcd = 0;
167 	const struct hc_driver *driver = &ohci_nxp_hc_driver;
168 	struct resource *res;
169 	int ret = 0, irq;
170 	struct device_node *isp1301_node;
171 
172 	if (pdev->dev.of_node) {
173 		isp1301_node = of_parse_phandle(pdev->dev.of_node,
174 						"transceiver", 0);
175 	} else {
176 		isp1301_node = NULL;
177 	}
178 
179 	isp1301_i2c_client = isp1301_get_client(isp1301_node);
180 	if (!isp1301_i2c_client) {
181 		return -EPROBE_DEFER;
182 	}
183 
184 	pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
185 	pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
186 
187 	dev_dbg(&pdev->dev, "%s: " DRIVER_DESC " (nxp)\n", hcd_name);
188 	if (usb_disabled()) {
189 		dev_err(&pdev->dev, "USB is disabled\n");
190 		ret = -ENODEV;
191 		goto fail_disable;
192 	}
193 
194 	/* Enable AHB slave USB clock, needed for further USB clock control */
195 	__raw_writel(USB_SLAVE_HCLK_EN | PAD_CONTROL_LAST_DRIVEN, USB_CTRL);
196 
197 	/* Enable USB PLL */
198 	usb_pll_clk = clk_get(&pdev->dev, "ck_pll5");
199 	if (IS_ERR(usb_pll_clk)) {
200 		dev_err(&pdev->dev, "failed to acquire USB PLL\n");
201 		ret = PTR_ERR(usb_pll_clk);
202 		goto fail_pll;
203 	}
204 
205 	ret = clk_enable(usb_pll_clk);
206 	if (ret < 0) {
207 		dev_err(&pdev->dev, "failed to start USB PLL\n");
208 		goto fail_pllen;
209 	}
210 
211 	ret = clk_set_rate(usb_pll_clk, 48000);
212 	if (ret < 0) {
213 		dev_err(&pdev->dev, "failed to set USB clock rate\n");
214 		goto fail_rate;
215 	}
216 
217 	/* Enable USB device clock */
218 	usb_dev_clk = clk_get(&pdev->dev, "ck_usbd");
219 	if (IS_ERR(usb_dev_clk)) {
220 		dev_err(&pdev->dev, "failed to acquire USB DEV Clock\n");
221 		ret = PTR_ERR(usb_dev_clk);
222 		goto fail_dev;
223 	}
224 
225 	ret = clk_enable(usb_dev_clk);
226 	if (ret < 0) {
227 		dev_err(&pdev->dev, "failed to start USB DEV Clock\n");
228 		goto fail_deven;
229 	}
230 
231 	/* Enable USB otg clocks */
232 	usb_otg_clk = clk_get(&pdev->dev, "ck_usb_otg");
233 	if (IS_ERR(usb_otg_clk)) {
234 		dev_err(&pdev->dev, "failed to acquire USB DEV Clock\n");
235 		ret = PTR_ERR(usb_otg_clk);
236 		goto fail_otg;
237 	}
238 
239 	__raw_writel(__raw_readl(USB_CTRL) | USB_HOST_NEED_CLK_EN, USB_CTRL);
240 
241 	ret = clk_enable(usb_otg_clk);
242 	if (ret < 0) {
243 		dev_err(&pdev->dev, "failed to start USB DEV Clock\n");
244 		goto fail_otgen;
245 	}
246 
247 	isp1301_configure();
248 
249 	hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
250 	if (!hcd) {
251 		dev_err(&pdev->dev, "Failed to allocate HC buffer\n");
252 		ret = -ENOMEM;
253 		goto fail_hcd;
254 	}
255 
256 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
257 	hcd->regs = devm_ioremap_resource(&pdev->dev, res);
258 	if (IS_ERR(hcd->regs)) {
259 		ret = PTR_ERR(hcd->regs);
260 		goto fail_resource;
261 	}
262 	hcd->rsrc_start = res->start;
263 	hcd->rsrc_len = resource_size(res);
264 
265 	irq = platform_get_irq(pdev, 0);
266 	if (irq < 0) {
267 		ret = -ENXIO;
268 		goto fail_resource;
269 	}
270 
271 	ohci_nxp_start_hc();
272 	platform_set_drvdata(pdev, hcd);
273 
274 	dev_info(&pdev->dev, "at 0x%p, irq %d\n", hcd->regs, hcd->irq);
275 	ret = usb_add_hcd(hcd, irq, 0);
276 	if (ret == 0)
277 		return ret;
278 
279 	ohci_nxp_stop_hc();
280 fail_resource:
281 	usb_put_hcd(hcd);
282 fail_hcd:
283 	clk_disable(usb_otg_clk);
284 fail_otgen:
285 	clk_put(usb_otg_clk);
286 fail_otg:
287 	clk_disable(usb_dev_clk);
288 fail_deven:
289 	clk_put(usb_dev_clk);
290 fail_dev:
291 fail_rate:
292 	clk_disable(usb_pll_clk);
293 fail_pllen:
294 	clk_put(usb_pll_clk);
295 fail_pll:
296 fail_disable:
297 	isp1301_i2c_client = NULL;
298 	return ret;
299 }
300 
301 static int ohci_hcd_nxp_remove(struct platform_device *pdev)
302 {
303 	struct usb_hcd *hcd = platform_get_drvdata(pdev);
304 
305 	usb_remove_hcd(hcd);
306 	ohci_nxp_stop_hc();
307 	usb_put_hcd(hcd);
308 	clk_disable(usb_pll_clk);
309 	clk_put(usb_pll_clk);
310 	clk_disable(usb_dev_clk);
311 	clk_put(usb_dev_clk);
312 	i2c_unregister_device(isp1301_i2c_client);
313 	isp1301_i2c_client = NULL;
314 
315 	return 0;
316 }
317 
318 /* work with hotplug and coldplug */
319 MODULE_ALIAS("platform:usb-ohci");
320 
321 #ifdef CONFIG_OF
322 static const struct of_device_id ohci_hcd_nxp_match[] = {
323 	{ .compatible = "nxp,ohci-nxp" },
324 	{},
325 };
326 MODULE_DEVICE_TABLE(of, ohci_hcd_nxp_match);
327 #endif
328 
329 static struct platform_driver ohci_hcd_nxp_driver = {
330 	.driver = {
331 		.name = "usb-ohci",
332 		.owner	= THIS_MODULE,
333 		.of_match_table = of_match_ptr(ohci_hcd_nxp_match),
334 	},
335 	.probe = ohci_hcd_nxp_probe,
336 	.remove = ohci_hcd_nxp_remove,
337 };
338 
339 static int __init ohci_nxp_init(void)
340 {
341 	if (usb_disabled())
342 		return -ENODEV;
343 
344 	pr_info("%s: " DRIVER_DESC "\n", hcd_name);
345 
346 	ohci_init_driver(&ohci_nxp_hc_driver, NULL);
347 	return platform_driver_register(&ohci_hcd_nxp_driver);
348 }
349 module_init(ohci_nxp_init);
350 
351 static void __exit ohci_nxp_cleanup(void)
352 {
353 	platform_driver_unregister(&ohci_hcd_nxp_driver);
354 }
355 module_exit(ohci_nxp_cleanup);
356 
357 MODULE_DESCRIPTION(DRIVER_DESC);
358 MODULE_LICENSE("GPL v2");
359