Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * driver for NXP USB Host devices
4 *
5 * Currently supported OHCI host devices:
6 * - NXP LPC32xx
7 *
8 * Authors: Dmitry Chigirev <source@mvista.com>
9 * Vitaly Wool <vitalywool@gmail.com>
10 *
11 * register initialization is based on code examples provided by Philips
12 * Copyright (c) 2005 Koninklijke Philips Electronics N.V.
13 *
14 * NOTE: This driver does not have suspend/resume functionality
15 * This driver is intended for engineering development purposes only
16 *
17 * 2005-2006 (c) MontaVista Software, Inc.
18 */
19#include <linux/clk.h>
20#include <linux/dma-mapping.h>
21#include <linux/io.h>
22#include <linux/i2c.h>
23#include <linux/module.h>
24#include <linux/of.h>
25#include <linux/platform_device.h>
26#include <linux/usb/isp1301.h>
27#include <linux/usb.h>
28#include <linux/usb/hcd.h>
29
30#include "ohci.h"
31
32#define USB_CONFIG_BASE 0x31020000
33
34/* USB_OTG_STAT_CONTROL bit defines */
35#define TRANSPARENT_I2C_EN (1 << 7)
36#define HOST_EN (1 << 0)
37
38/* On LPC32xx, those are undefined */
39#ifndef start_int_set_falling_edge
40#define start_int_set_falling_edge(irq)
41#define start_int_set_rising_edge(irq)
42#define start_int_ack(irq)
43#define start_int_mask(irq)
44#define start_int_umask(irq)
45#endif
46
47#define DRIVER_DESC "OHCI NXP driver"
48
49static const char hcd_name[] = "ohci-nxp";
50static struct hc_driver __read_mostly ohci_nxp_hc_driver;
51
52static struct i2c_client *isp1301_i2c_client;
53
54static struct clk *usb_host_clk;
55
56static void isp1301_configure_lpc32xx(void)
57{
58 /* LPC32XX only supports DAT_SE0 USB mode */
59 /* This sequence is important */
60
61 /* Disable transparent UART mode first */
62 i2c_smbus_write_byte_data(isp1301_i2c_client,
63 (ISP1301_I2C_MODE_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR),
64 MC1_UART_EN);
65 i2c_smbus_write_byte_data(isp1301_i2c_client,
66 (ISP1301_I2C_MODE_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR),
67 ~MC1_SPEED_REG);
68 i2c_smbus_write_byte_data(isp1301_i2c_client,
69 ISP1301_I2C_MODE_CONTROL_1, MC1_SPEED_REG);
70 i2c_smbus_write_byte_data(isp1301_i2c_client,
71 (ISP1301_I2C_MODE_CONTROL_2 | ISP1301_I2C_REG_CLEAR_ADDR),
72 ~0);
73 i2c_smbus_write_byte_data(isp1301_i2c_client,
74 ISP1301_I2C_MODE_CONTROL_2,
75 (MC2_BI_DI | MC2_PSW_EN | MC2_SPD_SUSP_CTRL));
76 i2c_smbus_write_byte_data(isp1301_i2c_client,
77 (ISP1301_I2C_OTG_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR), ~0);
78 i2c_smbus_write_byte_data(isp1301_i2c_client,
79 ISP1301_I2C_MODE_CONTROL_1, MC1_DAT_SE0);
80 i2c_smbus_write_byte_data(isp1301_i2c_client,
81 ISP1301_I2C_OTG_CONTROL_1,
82 (OTG1_DM_PULLDOWN | OTG1_DP_PULLDOWN));
83 i2c_smbus_write_byte_data(isp1301_i2c_client,
84 (ISP1301_I2C_OTG_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR),
85 (OTG1_DM_PULLUP | OTG1_DP_PULLUP));
86 i2c_smbus_write_byte_data(isp1301_i2c_client,
87 ISP1301_I2C_INTERRUPT_LATCH | ISP1301_I2C_REG_CLEAR_ADDR, ~0);
88 i2c_smbus_write_byte_data(isp1301_i2c_client,
89 ISP1301_I2C_INTERRUPT_FALLING | ISP1301_I2C_REG_CLEAR_ADDR,
90 ~0);
91 i2c_smbus_write_byte_data(isp1301_i2c_client,
92 ISP1301_I2C_INTERRUPT_RISING | ISP1301_I2C_REG_CLEAR_ADDR, ~0);
93
94 printk(KERN_INFO "ISP1301 Vendor ID : 0x%04x\n",
95 i2c_smbus_read_word_data(isp1301_i2c_client, 0x00));
96 printk(KERN_INFO "ISP1301 Product ID : 0x%04x\n",
97 i2c_smbus_read_word_data(isp1301_i2c_client, 0x02));
98 printk(KERN_INFO "ISP1301 Version ID : 0x%04x\n",
99 i2c_smbus_read_word_data(isp1301_i2c_client, 0x14));
100}
101
102static void isp1301_configure(void)
103{
104 isp1301_configure_lpc32xx();
105}
106
107static inline void isp1301_vbus_on(void)
108{
109 i2c_smbus_write_byte_data(isp1301_i2c_client, ISP1301_I2C_OTG_CONTROL_1,
110 OTG1_VBUS_DRV);
111}
112
113static inline void isp1301_vbus_off(void)
114{
115 i2c_smbus_write_byte_data(isp1301_i2c_client,
116 ISP1301_I2C_OTG_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR,
117 OTG1_VBUS_DRV);
118}
119
120static void ohci_nxp_start_hc(void)
121{
122 void __iomem *usb_otg_stat_control = ioremap(USB_CONFIG_BASE + 0x110, 4);
123 unsigned long tmp;
124
125 if (WARN_ON(!usb_otg_stat_control))
126 return;
127
128 tmp = __raw_readl(usb_otg_stat_control) | HOST_EN;
129
130 __raw_writel(tmp, usb_otg_stat_control);
131 isp1301_vbus_on();
132
133 iounmap(usb_otg_stat_control);
134}
135
136static void ohci_nxp_stop_hc(void)
137{
138 void __iomem *usb_otg_stat_control = ioremap(USB_CONFIG_BASE + 0x110, 4);
139 unsigned long tmp;
140
141 if (WARN_ON(!usb_otg_stat_control))
142 return;
143
144 isp1301_vbus_off();
145 tmp = __raw_readl(usb_otg_stat_control) & ~HOST_EN;
146 __raw_writel(tmp, usb_otg_stat_control);
147
148 iounmap(usb_otg_stat_control);
149}
150
151static int ohci_hcd_nxp_probe(struct platform_device *pdev)
152{
153 struct usb_hcd *hcd = NULL;
154 const struct hc_driver *driver = &ohci_nxp_hc_driver;
155 struct resource *res;
156 int ret = 0, irq;
157 struct device_node *isp1301_node;
158
159 if (pdev->dev.of_node) {
160 isp1301_node = of_parse_phandle(pdev->dev.of_node,
161 "transceiver", 0);
162 } else {
163 isp1301_node = NULL;
164 }
165
166 isp1301_i2c_client = isp1301_get_client(isp1301_node);
167 of_node_put(isp1301_node);
168 if (!isp1301_i2c_client)
169 return -EPROBE_DEFER;
170
171 ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
172 if (ret)
173 goto fail_disable;
174
175 dev_dbg(&pdev->dev, "%s: " DRIVER_DESC " (nxp)\n", hcd_name);
176 if (usb_disabled()) {
177 dev_err(&pdev->dev, "USB is disabled\n");
178 ret = -ENODEV;
179 goto fail_disable;
180 }
181
182 /* Enable USB host clock */
183 usb_host_clk = devm_clk_get(&pdev->dev, NULL);
184 if (IS_ERR(usb_host_clk)) {
185 dev_err(&pdev->dev, "failed to acquire USB OHCI clock\n");
186 ret = PTR_ERR(usb_host_clk);
187 goto fail_disable;
188 }
189
190 ret = clk_prepare_enable(usb_host_clk);
191 if (ret < 0) {
192 dev_err(&pdev->dev, "failed to start USB OHCI clock\n");
193 goto fail_disable;
194 }
195
196 isp1301_configure();
197
198 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
199 if (!hcd) {
200 dev_err(&pdev->dev, "Failed to allocate HC buffer\n");
201 ret = -ENOMEM;
202 goto fail_hcd;
203 }
204
205 hcd->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
206 if (IS_ERR(hcd->regs)) {
207 ret = PTR_ERR(hcd->regs);
208 goto fail_resource;
209 }
210 hcd->rsrc_start = res->start;
211 hcd->rsrc_len = resource_size(res);
212
213 irq = platform_get_irq(pdev, 0);
214 if (irq < 0) {
215 ret = -ENXIO;
216 goto fail_resource;
217 }
218
219 ohci_nxp_start_hc();
220 platform_set_drvdata(pdev, hcd);
221
222 dev_info(&pdev->dev, "at 0x%p, irq %d\n", hcd->regs, hcd->irq);
223 ret = usb_add_hcd(hcd, irq, 0);
224 if (ret == 0) {
225 device_wakeup_enable(hcd->self.controller);
226 return ret;
227 }
228
229 ohci_nxp_stop_hc();
230fail_resource:
231 usb_put_hcd(hcd);
232fail_hcd:
233 clk_disable_unprepare(usb_host_clk);
234fail_disable:
235 isp1301_i2c_client = NULL;
236 return ret;
237}
238
239static void ohci_hcd_nxp_remove(struct platform_device *pdev)
240{
241 struct usb_hcd *hcd = platform_get_drvdata(pdev);
242
243 usb_remove_hcd(hcd);
244 ohci_nxp_stop_hc();
245 usb_put_hcd(hcd);
246 clk_disable_unprepare(usb_host_clk);
247 isp1301_i2c_client = NULL;
248}
249
250/* work with hotplug and coldplug */
251MODULE_ALIAS("platform:usb-ohci");
252
253#ifdef CONFIG_OF
254static const struct of_device_id ohci_hcd_nxp_match[] = {
255 { .compatible = "nxp,ohci-nxp" },
256 {},
257};
258MODULE_DEVICE_TABLE(of, ohci_hcd_nxp_match);
259#endif
260
261static struct platform_driver ohci_hcd_nxp_driver = {
262 .driver = {
263 .name = "usb-ohci",
264 .of_match_table = of_match_ptr(ohci_hcd_nxp_match),
265 },
266 .probe = ohci_hcd_nxp_probe,
267 .remove_new = ohci_hcd_nxp_remove,
268};
269
270static int __init ohci_nxp_init(void)
271{
272 if (usb_disabled())
273 return -ENODEV;
274
275 ohci_init_driver(&ohci_nxp_hc_driver, NULL);
276 return platform_driver_register(&ohci_hcd_nxp_driver);
277}
278module_init(ohci_nxp_init);
279
280static void __exit ohci_nxp_cleanup(void)
281{
282 platform_driver_unregister(&ohci_hcd_nxp_driver);
283}
284module_exit(ohci_nxp_cleanup);
285
286MODULE_DESCRIPTION(DRIVER_DESC);
287MODULE_LICENSE("GPL v2");
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/module.h>
26#include <linux/of.h>
27#include <linux/platform_device.h>
28#include <linux/usb/isp1301.h>
29#include <linux/usb.h>
30#include <linux/usb/hcd.h>
31
32#include "ohci.h"
33
34#include <mach/hardware.h>
35
36#define USB_CONFIG_BASE 0x31020000
37#define USB_OTG_STAT_CONTROL IO_ADDRESS(USB_CONFIG_BASE + 0x110)
38
39/* USB_OTG_STAT_CONTROL bit defines */
40#define TRANSPARENT_I2C_EN (1 << 7)
41#define HOST_EN (1 << 0)
42
43/* On LPC32xx, those are undefined */
44#ifndef start_int_set_falling_edge
45#define start_int_set_falling_edge(irq)
46#define start_int_set_rising_edge(irq)
47#define start_int_ack(irq)
48#define start_int_mask(irq)
49#define start_int_umask(irq)
50#endif
51
52#define DRIVER_DESC "OHCI NXP driver"
53
54static const char hcd_name[] = "ohci-nxp";
55static struct hc_driver __read_mostly ohci_nxp_hc_driver;
56
57static struct i2c_client *isp1301_i2c_client;
58
59extern int usb_disabled(void);
60
61static struct clk *usb_host_clk;
62
63static void isp1301_configure_lpc32xx(void)
64{
65 /* LPC32XX only supports DAT_SE0 USB mode */
66 /* This sequence is important */
67
68 /* Disable transparent UART mode first */
69 i2c_smbus_write_byte_data(isp1301_i2c_client,
70 (ISP1301_I2C_MODE_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR),
71 MC1_UART_EN);
72 i2c_smbus_write_byte_data(isp1301_i2c_client,
73 (ISP1301_I2C_MODE_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR),
74 ~MC1_SPEED_REG);
75 i2c_smbus_write_byte_data(isp1301_i2c_client,
76 ISP1301_I2C_MODE_CONTROL_1, MC1_SPEED_REG);
77 i2c_smbus_write_byte_data(isp1301_i2c_client,
78 (ISP1301_I2C_MODE_CONTROL_2 | ISP1301_I2C_REG_CLEAR_ADDR),
79 ~0);
80 i2c_smbus_write_byte_data(isp1301_i2c_client,
81 ISP1301_I2C_MODE_CONTROL_2,
82 (MC2_BI_DI | MC2_PSW_EN | MC2_SPD_SUSP_CTRL));
83 i2c_smbus_write_byte_data(isp1301_i2c_client,
84 (ISP1301_I2C_OTG_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR), ~0);
85 i2c_smbus_write_byte_data(isp1301_i2c_client,
86 ISP1301_I2C_MODE_CONTROL_1, MC1_DAT_SE0);
87 i2c_smbus_write_byte_data(isp1301_i2c_client,
88 ISP1301_I2C_OTG_CONTROL_1,
89 (OTG1_DM_PULLDOWN | OTG1_DP_PULLDOWN));
90 i2c_smbus_write_byte_data(isp1301_i2c_client,
91 (ISP1301_I2C_OTG_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR),
92 (OTG1_DM_PULLUP | OTG1_DP_PULLUP));
93 i2c_smbus_write_byte_data(isp1301_i2c_client,
94 ISP1301_I2C_INTERRUPT_LATCH | ISP1301_I2C_REG_CLEAR_ADDR, ~0);
95 i2c_smbus_write_byte_data(isp1301_i2c_client,
96 ISP1301_I2C_INTERRUPT_FALLING | ISP1301_I2C_REG_CLEAR_ADDR,
97 ~0);
98 i2c_smbus_write_byte_data(isp1301_i2c_client,
99 ISP1301_I2C_INTERRUPT_RISING | ISP1301_I2C_REG_CLEAR_ADDR, ~0);
100
101 printk(KERN_INFO "ISP1301 Vendor ID : 0x%04x\n",
102 i2c_smbus_read_word_data(isp1301_i2c_client, 0x00));
103 printk(KERN_INFO "ISP1301 Product ID : 0x%04x\n",
104 i2c_smbus_read_word_data(isp1301_i2c_client, 0x02));
105 printk(KERN_INFO "ISP1301 Version ID : 0x%04x\n",
106 i2c_smbus_read_word_data(isp1301_i2c_client, 0x14));
107}
108
109static void isp1301_configure(void)
110{
111 isp1301_configure_lpc32xx();
112}
113
114static inline void isp1301_vbus_on(void)
115{
116 i2c_smbus_write_byte_data(isp1301_i2c_client, ISP1301_I2C_OTG_CONTROL_1,
117 OTG1_VBUS_DRV);
118}
119
120static inline void isp1301_vbus_off(void)
121{
122 i2c_smbus_write_byte_data(isp1301_i2c_client,
123 ISP1301_I2C_OTG_CONTROL_1 | ISP1301_I2C_REG_CLEAR_ADDR,
124 OTG1_VBUS_DRV);
125}
126
127static void ohci_nxp_start_hc(void)
128{
129 unsigned long tmp = __raw_readl(USB_OTG_STAT_CONTROL) | HOST_EN;
130 __raw_writel(tmp, USB_OTG_STAT_CONTROL);
131 isp1301_vbus_on();
132}
133
134static void ohci_nxp_stop_hc(void)
135{
136 unsigned long tmp;
137 isp1301_vbus_off();
138 tmp = __raw_readl(USB_OTG_STAT_CONTROL) & ~HOST_EN;
139 __raw_writel(tmp, USB_OTG_STAT_CONTROL);
140}
141
142static int ohci_hcd_nxp_probe(struct platform_device *pdev)
143{
144 struct usb_hcd *hcd = 0;
145 const struct hc_driver *driver = &ohci_nxp_hc_driver;
146 struct resource *res;
147 int ret = 0, irq;
148 struct device_node *isp1301_node;
149
150 if (pdev->dev.of_node) {
151 isp1301_node = of_parse_phandle(pdev->dev.of_node,
152 "transceiver", 0);
153 } else {
154 isp1301_node = NULL;
155 }
156
157 isp1301_i2c_client = isp1301_get_client(isp1301_node);
158 if (!isp1301_i2c_client) {
159 return -EPROBE_DEFER;
160 }
161
162 ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
163 if (ret)
164 goto fail_disable;
165
166 dev_dbg(&pdev->dev, "%s: " DRIVER_DESC " (nxp)\n", hcd_name);
167 if (usb_disabled()) {
168 dev_err(&pdev->dev, "USB is disabled\n");
169 ret = -ENODEV;
170 goto fail_disable;
171 }
172
173 /* Enable USB host clock */
174 usb_host_clk = devm_clk_get(&pdev->dev, NULL);
175 if (IS_ERR(usb_host_clk)) {
176 dev_err(&pdev->dev, "failed to acquire USB OHCI clock\n");
177 ret = PTR_ERR(usb_host_clk);
178 goto fail_disable;
179 }
180
181 ret = clk_prepare_enable(usb_host_clk);
182 if (ret < 0) {
183 dev_err(&pdev->dev, "failed to start USB OHCI clock\n");
184 goto fail_disable;
185 }
186
187 isp1301_configure();
188
189 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
190 if (!hcd) {
191 dev_err(&pdev->dev, "Failed to allocate HC buffer\n");
192 ret = -ENOMEM;
193 goto fail_hcd;
194 }
195
196 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
197 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
198 if (IS_ERR(hcd->regs)) {
199 ret = PTR_ERR(hcd->regs);
200 goto fail_resource;
201 }
202 hcd->rsrc_start = res->start;
203 hcd->rsrc_len = resource_size(res);
204
205 irq = platform_get_irq(pdev, 0);
206 if (irq < 0) {
207 ret = -ENXIO;
208 goto fail_resource;
209 }
210
211 ohci_nxp_start_hc();
212 platform_set_drvdata(pdev, hcd);
213
214 dev_info(&pdev->dev, "at 0x%p, irq %d\n", hcd->regs, hcd->irq);
215 ret = usb_add_hcd(hcd, irq, 0);
216 if (ret == 0) {
217 device_wakeup_enable(hcd->self.controller);
218 return ret;
219 }
220
221 ohci_nxp_stop_hc();
222fail_resource:
223 usb_put_hcd(hcd);
224fail_hcd:
225 clk_disable_unprepare(usb_host_clk);
226fail_disable:
227 isp1301_i2c_client = NULL;
228 return ret;
229}
230
231static int ohci_hcd_nxp_remove(struct platform_device *pdev)
232{
233 struct usb_hcd *hcd = platform_get_drvdata(pdev);
234
235 usb_remove_hcd(hcd);
236 ohci_nxp_stop_hc();
237 usb_put_hcd(hcd);
238 clk_disable_unprepare(usb_host_clk);
239 isp1301_i2c_client = NULL;
240
241 return 0;
242}
243
244/* work with hotplug and coldplug */
245MODULE_ALIAS("platform:usb-ohci");
246
247#ifdef CONFIG_OF
248static const struct of_device_id ohci_hcd_nxp_match[] = {
249 { .compatible = "nxp,ohci-nxp" },
250 {},
251};
252MODULE_DEVICE_TABLE(of, ohci_hcd_nxp_match);
253#endif
254
255static struct platform_driver ohci_hcd_nxp_driver = {
256 .driver = {
257 .name = "usb-ohci",
258 .of_match_table = of_match_ptr(ohci_hcd_nxp_match),
259 },
260 .probe = ohci_hcd_nxp_probe,
261 .remove = ohci_hcd_nxp_remove,
262};
263
264static int __init ohci_nxp_init(void)
265{
266 if (usb_disabled())
267 return -ENODEV;
268
269 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
270
271 ohci_init_driver(&ohci_nxp_hc_driver, NULL);
272 return platform_driver_register(&ohci_hcd_nxp_driver);
273}
274module_init(ohci_nxp_init);
275
276static void __exit ohci_nxp_cleanup(void)
277{
278 platform_driver_unregister(&ohci_hcd_nxp_driver);
279}
280module_exit(ohci_nxp_cleanup);
281
282MODULE_DESCRIPTION(DRIVER_DESC);
283MODULE_LICENSE("GPL v2");