blob: 7ee30056f3736dc5006a4cca7a903d1bef8f1ea1 [file] [log] [blame]
Sebastian Siewiordb11e472008-04-24 00:37:04 +02001/*
2 * Glue code for the ISP1760 driver and bus
3 * Currently there is support for
4 * - OpenFirmware
5 * - PCI
Michael Hennerich9da69c62009-07-15 23:22:54 -04006 * - PDEV (generic platform device centralized driver model)
Sebastian Siewiordb11e472008-04-24 00:37:04 +02007 *
8 * (c) 2007 Sebastian Siewior <bigeasy@linutronix.de>
9 *
10 */
11
12#include <linux/usb.h>
13#include <linux/io.h>
Catalin Marinasf7e7aa52009-02-10 16:55:51 +000014#include <linux/platform_device.h>
Michael Hennerich9da69c62009-07-15 23:22:54 -040015#include <linux/usb/isp1760.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020016#include <linux/usb/hcd.h>
Sebastian Siewiordb11e472008-04-24 00:37:04 +020017
Sebastian Siewiordb11e472008-04-24 00:37:04 +020018#include "isp1760-hcd.h"
19
Sebastian Andrzej Siewiorff30bf12008-11-02 15:25:42 +010020#ifdef CONFIG_PPC_OF
Sebastian Siewiordb11e472008-04-24 00:37:04 +020021#include <linux/of.h>
22#include <linux/of_platform.h>
23#endif
24
Sebastian Andrzej Siewiorff30bf12008-11-02 15:25:42 +010025#ifdef CONFIG_PCI
Sebastian Siewiordb11e472008-04-24 00:37:04 +020026#include <linux/pci.h>
27#endif
28
Sebastian Andrzej Siewiorff30bf12008-11-02 15:25:42 +010029#ifdef CONFIG_PPC_OF
Grant Likelyd35fb642011-02-22 21:08:34 -070030static int of_isp1760_probe(struct platform_device *dev)
Sebastian Siewiordb11e472008-04-24 00:37:04 +020031{
32 struct usb_hcd *hcd;
Grant Likely61c7a082010-04-13 16:12:29 -070033 struct device_node *dp = dev->dev.of_node;
Sebastian Siewiordb11e472008-04-24 00:37:04 +020034 struct resource *res;
35 struct resource memory;
36 struct of_irq oirq;
37 int virq;
Tobias Klausere07afd32010-05-05 11:18:41 +020038 resource_size_t res_len;
Sebastian Siewiordb11e472008-04-24 00:37:04 +020039 int ret;
Nate Case3faefc82008-06-17 11:11:38 -050040 const unsigned int *prop;
41 unsigned int devflags = 0;
Sebastian Siewiordb11e472008-04-24 00:37:04 +020042
43 ret = of_address_to_resource(dp, 0, &memory);
44 if (ret)
45 return -ENXIO;
46
Tobias Klausere07afd32010-05-05 11:18:41 +020047 res_len = resource_size(&memory);
48
49 res = request_mem_region(memory.start, res_len, dev_name(&dev->dev));
Sebastian Siewiordb11e472008-04-24 00:37:04 +020050 if (!res)
51 return -EBUSY;
52
Sebastian Siewiordb11e472008-04-24 00:37:04 +020053 if (of_irq_map_one(dp, 0, &oirq)) {
54 ret = -ENODEV;
55 goto release_reg;
56 }
57
58 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
59 oirq.size);
60
Nate Case3faefc82008-06-17 11:11:38 -050061 if (of_device_is_compatible(dp, "nxp,usb-isp1761"))
62 devflags |= ISP1760_FLAG_ISP1761;
63
Nate Case3faefc82008-06-17 11:11:38 -050064 /* Some systems wire up only 16 of the 32 data lines */
65 prop = of_get_property(dp, "bus-width", NULL);
66 if (prop && *prop == 16)
67 devflags |= ISP1760_FLAG_BUS_WIDTH_16;
68
69 if (of_get_property(dp, "port1-otg", NULL) != NULL)
70 devflags |= ISP1760_FLAG_OTG_EN;
71
72 if (of_get_property(dp, "analog-oc", NULL) != NULL)
73 devflags |= ISP1760_FLAG_ANALOG_OC;
74
75 if (of_get_property(dp, "dack-polarity", NULL) != NULL)
76 devflags |= ISP1760_FLAG_DACK_POL_HIGH;
77
78 if (of_get_property(dp, "dreq-polarity", NULL) != NULL)
79 devflags |= ISP1760_FLAG_DREQ_POL_HIGH;
80
Sebastian Siewiordb11e472008-04-24 00:37:04 +020081 hcd = isp1760_register(memory.start, res_len, virq,
Nate Case3faefc82008-06-17 11:11:38 -050082 IRQF_SHARED | IRQF_DISABLED, &dev->dev, dev_name(&dev->dev),
83 devflags);
Sebastian Siewiordb11e472008-04-24 00:37:04 +020084 if (IS_ERR(hcd)) {
85 ret = PTR_ERR(hcd);
86 goto release_reg;
87 }
88
89 dev_set_drvdata(&dev->dev, hcd);
90 return ret;
91
92release_reg:
Tobias Klausere07afd32010-05-05 11:18:41 +020093 release_mem_region(memory.start, res_len);
Sebastian Siewiordb11e472008-04-24 00:37:04 +020094 return ret;
95}
96
Grant Likely2dc11582010-08-06 09:25:50 -060097static int of_isp1760_remove(struct platform_device *dev)
Sebastian Siewiordb11e472008-04-24 00:37:04 +020098{
99 struct usb_hcd *hcd = dev_get_drvdata(&dev->dev);
100
101 dev_set_drvdata(&dev->dev, NULL);
102
103 usb_remove_hcd(hcd);
104 iounmap(hcd->regs);
105 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
106 usb_put_hcd(hcd);
107 return 0;
108}
109
Németh Mártonc4386ad2010-01-10 15:35:03 +0100110static const struct of_device_id of_isp1760_match[] = {
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200111 {
112 .compatible = "nxp,usb-isp1760",
113 },
Nate Case3faefc82008-06-17 11:11:38 -0500114 {
115 .compatible = "nxp,usb-isp1761",
116 },
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200117 { },
118};
119MODULE_DEVICE_TABLE(of, of_isp1760_match);
120
Grant Likelyd35fb642011-02-22 21:08:34 -0700121static struct platform_driver isp1760_of_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700122 .driver = {
123 .name = "nxp-isp1760",
124 .owner = THIS_MODULE,
125 .of_match_table = of_isp1760_match,
126 },
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200127 .probe = of_isp1760_probe,
128 .remove = of_isp1760_remove,
129};
130#endif
131
Sebastian Andrzej Siewiorff30bf12008-11-02 15:25:42 +0100132#ifdef CONFIG_PCI
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200133static int __devinit isp1761_pci_probe(struct pci_dev *dev,
134 const struct pci_device_id *id)
135{
136 u8 latency, limit;
137 __u32 reg_data;
138 int retry_count;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200139 struct usb_hcd *hcd;
Nate Case3faefc82008-06-17 11:11:38 -0500140 unsigned int devflags = 0;
Karl Bongers6013bbb2008-12-01 11:47:40 +0100141 int ret_status = 0;
142
143 resource_size_t pci_mem_phy0;
144 resource_size_t memlength;
145
146 u8 __iomem *chip_addr;
147 u8 __iomem *iobase;
148 resource_size_t nxp_pci_io_base;
149 resource_size_t iolength;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200150
151 if (usb_disabled())
152 return -ENODEV;
153
154 if (pci_enable_device(dev) < 0)
155 return -ENODEV;
156
157 if (!dev->irq)
158 return -ENODEV;
159
160 /* Grab the PLX PCI mem maped port start address we need */
161 nxp_pci_io_base = pci_resource_start(dev, 0);
162 iolength = pci_resource_len(dev, 0);
163
164 if (!request_mem_region(nxp_pci_io_base, iolength, "ISP1761 IO MEM")) {
165 printk(KERN_ERR "request region #1\n");
166 return -EBUSY;
167 }
168
169 iobase = ioremap_nocache(nxp_pci_io_base, iolength);
170 if (!iobase) {
171 printk(KERN_ERR "ioremap #1\n");
Karl Bongers6013bbb2008-12-01 11:47:40 +0100172 ret_status = -ENOMEM;
173 goto cleanup1;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200174 }
175 /* Grab the PLX PCI shared memory of the ISP 1761 we need */
176 pci_mem_phy0 = pci_resource_start(dev, 3);
Karl Bongers6013bbb2008-12-01 11:47:40 +0100177 memlength = pci_resource_len(dev, 3);
178 if (memlength < 0xffff) {
179 printk(KERN_ERR "memory length for this resource is wrong\n");
180 ret_status = -ENOMEM;
181 goto cleanup2;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200182 }
183
Karl Bongers6013bbb2008-12-01 11:47:40 +0100184 if (!request_mem_region(pci_mem_phy0, memlength, "ISP-PCI")) {
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200185 printk(KERN_ERR "host controller already in use\n");
Karl Bongers6013bbb2008-12-01 11:47:40 +0100186 ret_status = -EBUSY;
187 goto cleanup2;
188 }
189
190 /* map available memory */
191 chip_addr = ioremap_nocache(pci_mem_phy0,memlength);
192 if (!chip_addr) {
193 printk(KERN_ERR "Error ioremap failed\n");
194 ret_status = -ENOMEM;
195 goto cleanup3;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200196 }
197
198 /* bad pci latencies can contribute to overruns */
199 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &latency);
200 if (latency) {
201 pci_read_config_byte(dev, PCI_MAX_LAT, &limit);
202 if (limit && limit < latency)
203 pci_write_config_byte(dev, PCI_LATENCY_TIMER, limit);
204 }
205
206 /* Try to check whether we can access Scratch Register of
207 * Host Controller or not. The initial PCI access is retried until
208 * local init for the PCI bridge is completed
209 */
210 retry_count = 20;
211 reg_data = 0;
212 while ((reg_data != 0xFACE) && retry_count) {
213 /*by default host is in 16bit mode, so
214 * io operations at this stage must be 16 bit
215 * */
216 writel(0xface, chip_addr + HC_SCRATCH_REG);
217 udelay(100);
Karl Bongers6013bbb2008-12-01 11:47:40 +0100218 reg_data = readl(chip_addr + HC_SCRATCH_REG) & 0x0000ffff;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200219 retry_count--;
220 }
221
Karl Bongers6013bbb2008-12-01 11:47:40 +0100222 iounmap(chip_addr);
223
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200224 /* Host Controller presence is detected by writing to scratch register
225 * and reading back and checking the contents are same or not
226 */
227 if (reg_data != 0xFACE) {
Greg Kroah-Hartman802f3892008-08-14 09:37:34 -0700228 dev_err(&dev->dev, "scratch register mismatch %x\n", reg_data);
Karl Bongers6013bbb2008-12-01 11:47:40 +0100229 ret_status = -ENOMEM;
230 goto cleanup3;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200231 }
232
233 pci_set_master(dev);
234
Karl Bongers6013bbb2008-12-01 11:47:40 +0100235 /* configure PLX PCI chip to pass interrupts */
236#define PLX_INT_CSR_REG 0x68
237 reg_data = readl(iobase + PLX_INT_CSR_REG);
238 reg_data |= 0x900;
239 writel(reg_data, iobase + PLX_INT_CSR_REG);
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200240
241 dev->dev.dma_mask = NULL;
Karl Bongers6013bbb2008-12-01 11:47:40 +0100242 hcd = isp1760_register(pci_mem_phy0, memlength, dev->irq,
Nate Case3faefc82008-06-17 11:11:38 -0500243 IRQF_SHARED | IRQF_DISABLED, &dev->dev, dev_name(&dev->dev),
244 devflags);
Karl Bongers6013bbb2008-12-01 11:47:40 +0100245 if (IS_ERR(hcd)) {
246 ret_status = -ENODEV;
247 goto cleanup3;
Julien Brunelce5dee52008-09-24 18:00:36 +0200248 }
Karl Bongers6013bbb2008-12-01 11:47:40 +0100249
250 /* done with PLX IO access */
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200251 iounmap(iobase);
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200252 release_mem_region(nxp_pci_io_base, iolength);
Karl Bongers6013bbb2008-12-01 11:47:40 +0100253
254 pci_set_drvdata(dev, hcd);
255 return 0;
256
257cleanup3:
258 release_mem_region(pci_mem_phy0, memlength);
259cleanup2:
260 iounmap(iobase);
261cleanup1:
262 release_mem_region(nxp_pci_io_base, iolength);
263 return ret_status;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200264}
Karl Bongers6013bbb2008-12-01 11:47:40 +0100265
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200266static void isp1761_pci_remove(struct pci_dev *dev)
267{
268 struct usb_hcd *hcd;
269
270 hcd = pci_get_drvdata(dev);
271
272 usb_remove_hcd(hcd);
273 iounmap(hcd->regs);
274 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
275 usb_put_hcd(hcd);
276
277 pci_disable_device(dev);
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200278}
279
280static void isp1761_pci_shutdown(struct pci_dev *dev)
281{
282 printk(KERN_ERR "ips1761_pci_shutdown\n");
283}
284
Sebastian Andrzej Siewior6c073562008-11-30 16:50:04 +0100285static const struct pci_device_id isp1760_plx [] = {
286 {
287 .class = PCI_CLASS_BRIDGE_OTHER << 8,
288 .class_mask = ~0,
289 .vendor = PCI_VENDOR_ID_PLX,
290 .device = 0x5406,
291 .subvendor = PCI_VENDOR_ID_PLX,
292 .subdevice = 0x9054,
293 },
294 { }
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200295};
296MODULE_DEVICE_TABLE(pci, isp1760_plx);
297
298static struct pci_driver isp1761_pci_driver = {
299 .name = "isp1760",
300 .id_table = isp1760_plx,
301 .probe = isp1761_pci_probe,
302 .remove = isp1761_pci_remove,
303 .shutdown = isp1761_pci_shutdown,
304};
305#endif
306
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000307static int __devinit isp1760_plat_probe(struct platform_device *pdev)
308{
309 int ret = 0;
310 struct usb_hcd *hcd;
311 struct resource *mem_res;
312 struct resource *irq_res;
313 resource_size_t mem_size;
Michael Hennerich9da69c62009-07-15 23:22:54 -0400314 struct isp1760_platform_data *priv = pdev->dev.platform_data;
315 unsigned int devflags = 0;
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000316 unsigned long irqflags = IRQF_SHARED | IRQF_DISABLED;
317
318 mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
319 if (!mem_res) {
320 pr_warning("isp1760: Memory resource not available\n");
321 ret = -ENODEV;
322 goto out;
323 }
324 mem_size = resource_size(mem_res);
325 if (!request_mem_region(mem_res->start, mem_size, "isp1760")) {
326 pr_warning("isp1760: Cannot reserve the memory resource\n");
327 ret = -EBUSY;
328 goto out;
329 }
330
331 irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
332 if (!irq_res) {
333 pr_warning("isp1760: IRQ resource not available\n");
334 return -ENODEV;
335 }
336 irqflags |= irq_res->flags & IRQF_TRIGGER_MASK;
337
Michael Hennerich9da69c62009-07-15 23:22:54 -0400338 if (priv) {
339 if (priv->is_isp1761)
340 devflags |= ISP1760_FLAG_ISP1761;
341 if (priv->bus_width_16)
342 devflags |= ISP1760_FLAG_BUS_WIDTH_16;
343 if (priv->port1_otg)
344 devflags |= ISP1760_FLAG_OTG_EN;
345 if (priv->analog_oc)
346 devflags |= ISP1760_FLAG_ANALOG_OC;
347 if (priv->dack_polarity_high)
348 devflags |= ISP1760_FLAG_DACK_POL_HIGH;
349 if (priv->dreq_polarity_high)
350 devflags |= ISP1760_FLAG_DREQ_POL_HIGH;
351 }
352
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000353 hcd = isp1760_register(mem_res->start, mem_size, irq_res->start,
Michael Hennerich9da69c62009-07-15 23:22:54 -0400354 irqflags, &pdev->dev, dev_name(&pdev->dev), devflags);
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000355 if (IS_ERR(hcd)) {
356 pr_warning("isp1760: Failed to register the HCD device\n");
357 ret = -ENODEV;
358 goto cleanup;
359 }
360
361 pr_info("ISP1760 USB device initialised\n");
362 return ret;
363
364cleanup:
365 release_mem_region(mem_res->start, mem_size);
366out:
367 return ret;
368}
369
370static int __devexit isp1760_plat_remove(struct platform_device *pdev)
371{
372 struct resource *mem_res;
373 resource_size_t mem_size;
374
375 mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
376 mem_size = resource_size(mem_res);
377 release_mem_region(mem_res->start, mem_size);
378
379 return 0;
380}
381
382static struct platform_driver isp1760_plat_driver = {
383 .probe = isp1760_plat_probe,
Mike Frysinger4198e4f2009-06-11 21:59:00 -0400384 .remove = __devexit_p(isp1760_plat_remove),
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000385 .driver = {
386 .name = "isp1760",
387 },
388};
389
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200390static int __init isp1760_init(void)
391{
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000392 int ret, any_ret = -ENODEV;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200393
394 init_kmem_once();
395
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000396 ret = platform_driver_register(&isp1760_plat_driver);
397 if (!ret)
398 any_ret = 0;
Sebastian Andrzej Siewiorff30bf12008-11-02 15:25:42 +0100399#ifdef CONFIG_PPC_OF
Grant Likelyd35fb642011-02-22 21:08:34 -0700400 ret = platform_driver_register(&isp1760_of_driver);
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000401 if (!ret)
402 any_ret = 0;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200403#endif
Sebastian Andrzej Siewiorff30bf12008-11-02 15:25:42 +0100404#ifdef CONFIG_PCI
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200405 ret = pci_register_driver(&isp1761_pci_driver);
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000406 if (!ret)
407 any_ret = 0;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200408#endif
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200409
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000410 if (any_ret)
411 deinit_kmem_cache();
412 return any_ret;
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200413}
414module_init(isp1760_init);
415
416static void __exit isp1760_exit(void)
417{
Catalin Marinasf7e7aa52009-02-10 16:55:51 +0000418 platform_driver_unregister(&isp1760_plat_driver);
Sebastian Andrzej Siewiorff30bf12008-11-02 15:25:42 +0100419#ifdef CONFIG_PPC_OF
Grant Likelyd35fb642011-02-22 21:08:34 -0700420 platform_driver_unregister(&isp1760_of_driver);
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200421#endif
Sebastian Andrzej Siewiorff30bf12008-11-02 15:25:42 +0100422#ifdef CONFIG_PCI
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200423 pci_unregister_driver(&isp1761_pci_driver);
424#endif
425 deinit_kmem_cache();
426}
427module_exit(isp1760_exit);