USB: Add platform device support for the ISP1760 USB chip
[deliverable/linux.git] / drivers / usb / host / isp1760-if.c
CommitLineData
db11e47d
SS
1/*
2 * Glue code for the ISP1760 driver and bus
3 * Currently there is support for
4 * - OpenFirmware
5 * - PCI
6 *
7 * (c) 2007 Sebastian Siewior <bigeasy@linutronix.de>
8 *
9 */
10
11#include <linux/usb.h>
12#include <linux/io.h>
f7e7aa58 13#include <linux/platform_device.h>
db11e47d
SS
14
15#include "../core/hcd.h"
16#include "isp1760-hcd.h"
17
ff30bf1c 18#ifdef CONFIG_PPC_OF
db11e47d
SS
19#include <linux/of.h>
20#include <linux/of_platform.h>
21#endif
22
ff30bf1c 23#ifdef CONFIG_PCI
db11e47d
SS
24#include <linux/pci.h>
25#endif
26
ff30bf1c 27#ifdef CONFIG_PPC_OF
db11e47d
SS
28static int of_isp1760_probe(struct of_device *dev,
29 const struct of_device_id *match)
30{
31 struct usb_hcd *hcd;
32 struct device_node *dp = dev->node;
33 struct resource *res;
34 struct resource memory;
35 struct of_irq oirq;
36 int virq;
37 u64 res_len;
38 int ret;
3faefc88
NC
39 const unsigned int *prop;
40 unsigned int devflags = 0;
db11e47d
SS
41
42 ret = of_address_to_resource(dp, 0, &memory);
43 if (ret)
44 return -ENXIO;
45
46 res = request_mem_region(memory.start, memory.end - memory.start + 1,
7071a3ce 47 dev_name(&dev->dev));
db11e47d
SS
48 if (!res)
49 return -EBUSY;
50
51 res_len = memory.end - memory.start + 1;
52
53 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
3faefc88
NC
61 if (of_device_is_compatible(dp, "nxp,usb-isp1761"))
62 devflags |= ISP1760_FLAG_ISP1761;
63
3faefc88
NC
64 /* 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
db11e47d 81 hcd = isp1760_register(memory.start, res_len, virq,
3faefc88
NC
82 IRQF_SHARED | IRQF_DISABLED, &dev->dev, dev_name(&dev->dev),
83 devflags);
db11e47d
SS
84 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:
93 release_mem_region(memory.start, memory.end - memory.start + 1);
94 return ret;
95}
96
97static int of_isp1760_remove(struct of_device *dev)
98{
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
110static struct of_device_id of_isp1760_match[] = {
111 {
112 .compatible = "nxp,usb-isp1760",
113 },
3faefc88
NC
114 {
115 .compatible = "nxp,usb-isp1761",
116 },
db11e47d
SS
117 { },
118};
119MODULE_DEVICE_TABLE(of, of_isp1760_match);
120
121static struct of_platform_driver isp1760_of_driver = {
122 .name = "nxp-isp1760",
123 .match_table = of_isp1760_match,
124 .probe = of_isp1760_probe,
125 .remove = of_isp1760_remove,
126};
127#endif
128
ff30bf1c 129#ifdef CONFIG_PCI
db11e47d
SS
130static int __devinit isp1761_pci_probe(struct pci_dev *dev,
131 const struct pci_device_id *id)
132{
133 u8 latency, limit;
134 __u32 reg_data;
135 int retry_count;
db11e47d 136 struct usb_hcd *hcd;
3faefc88 137 unsigned int devflags = 0;
6013bbba
KB
138 int ret_status = 0;
139
140 resource_size_t pci_mem_phy0;
141 resource_size_t memlength;
142
143 u8 __iomem *chip_addr;
144 u8 __iomem *iobase;
145 resource_size_t nxp_pci_io_base;
146 resource_size_t iolength;
db11e47d
SS
147
148 if (usb_disabled())
149 return -ENODEV;
150
151 if (pci_enable_device(dev) < 0)
152 return -ENODEV;
153
154 if (!dev->irq)
155 return -ENODEV;
156
157 /* Grab the PLX PCI mem maped port start address we need */
158 nxp_pci_io_base = pci_resource_start(dev, 0);
159 iolength = pci_resource_len(dev, 0);
160
161 if (!request_mem_region(nxp_pci_io_base, iolength, "ISP1761 IO MEM")) {
162 printk(KERN_ERR "request region #1\n");
163 return -EBUSY;
164 }
165
166 iobase = ioremap_nocache(nxp_pci_io_base, iolength);
167 if (!iobase) {
168 printk(KERN_ERR "ioremap #1\n");
6013bbba
KB
169 ret_status = -ENOMEM;
170 goto cleanup1;
db11e47d
SS
171 }
172 /* Grab the PLX PCI shared memory of the ISP 1761 we need */
173 pci_mem_phy0 = pci_resource_start(dev, 3);
6013bbba
KB
174 memlength = pci_resource_len(dev, 3);
175 if (memlength < 0xffff) {
176 printk(KERN_ERR "memory length for this resource is wrong\n");
177 ret_status = -ENOMEM;
178 goto cleanup2;
db11e47d
SS
179 }
180
6013bbba 181 if (!request_mem_region(pci_mem_phy0, memlength, "ISP-PCI")) {
db11e47d 182 printk(KERN_ERR "host controller already in use\n");
6013bbba
KB
183 ret_status = -EBUSY;
184 goto cleanup2;
185 }
186
187 /* map available memory */
188 chip_addr = ioremap_nocache(pci_mem_phy0,memlength);
189 if (!chip_addr) {
190 printk(KERN_ERR "Error ioremap failed\n");
191 ret_status = -ENOMEM;
192 goto cleanup3;
db11e47d
SS
193 }
194
195 /* bad pci latencies can contribute to overruns */
196 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &latency);
197 if (latency) {
198 pci_read_config_byte(dev, PCI_MAX_LAT, &limit);
199 if (limit && limit < latency)
200 pci_write_config_byte(dev, PCI_LATENCY_TIMER, limit);
201 }
202
203 /* Try to check whether we can access Scratch Register of
204 * Host Controller or not. The initial PCI access is retried until
205 * local init for the PCI bridge is completed
206 */
207 retry_count = 20;
208 reg_data = 0;
209 while ((reg_data != 0xFACE) && retry_count) {
210 /*by default host is in 16bit mode, so
211 * io operations at this stage must be 16 bit
212 * */
213 writel(0xface, chip_addr + HC_SCRATCH_REG);
214 udelay(100);
6013bbba 215 reg_data = readl(chip_addr + HC_SCRATCH_REG) & 0x0000ffff;
db11e47d
SS
216 retry_count--;
217 }
218
6013bbba
KB
219 iounmap(chip_addr);
220
db11e47d
SS
221 /* Host Controller presence is detected by writing to scratch register
222 * and reading back and checking the contents are same or not
223 */
224 if (reg_data != 0xFACE) {
802f389a 225 dev_err(&dev->dev, "scratch register mismatch %x\n", reg_data);
6013bbba
KB
226 ret_status = -ENOMEM;
227 goto cleanup3;
db11e47d
SS
228 }
229
230 pci_set_master(dev);
231
6013bbba
KB
232 /* configure PLX PCI chip to pass interrupts */
233#define PLX_INT_CSR_REG 0x68
234 reg_data = readl(iobase + PLX_INT_CSR_REG);
235 reg_data |= 0x900;
236 writel(reg_data, iobase + PLX_INT_CSR_REG);
db11e47d
SS
237
238 dev->dev.dma_mask = NULL;
6013bbba 239 hcd = isp1760_register(pci_mem_phy0, memlength, dev->irq,
3faefc88
NC
240 IRQF_SHARED | IRQF_DISABLED, &dev->dev, dev_name(&dev->dev),
241 devflags);
6013bbba
KB
242 if (IS_ERR(hcd)) {
243 ret_status = -ENODEV;
244 goto cleanup3;
ce5dee50 245 }
6013bbba
KB
246
247 /* done with PLX IO access */
db11e47d 248 iounmap(iobase);
db11e47d 249 release_mem_region(nxp_pci_io_base, iolength);
6013bbba
KB
250
251 pci_set_drvdata(dev, hcd);
252 return 0;
253
254cleanup3:
255 release_mem_region(pci_mem_phy0, memlength);
256cleanup2:
257 iounmap(iobase);
258cleanup1:
259 release_mem_region(nxp_pci_io_base, iolength);
260 return ret_status;
db11e47d 261}
6013bbba 262
db11e47d
SS
263static void isp1761_pci_remove(struct pci_dev *dev)
264{
265 struct usb_hcd *hcd;
266
267 hcd = pci_get_drvdata(dev);
268
269 usb_remove_hcd(hcd);
270 iounmap(hcd->regs);
271 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
272 usb_put_hcd(hcd);
273
274 pci_disable_device(dev);
db11e47d
SS
275}
276
277static void isp1761_pci_shutdown(struct pci_dev *dev)
278{
279 printk(KERN_ERR "ips1761_pci_shutdown\n");
280}
281
6c073568
SAS
282static const struct pci_device_id isp1760_plx [] = {
283 {
284 .class = PCI_CLASS_BRIDGE_OTHER << 8,
285 .class_mask = ~0,
286 .vendor = PCI_VENDOR_ID_PLX,
287 .device = 0x5406,
288 .subvendor = PCI_VENDOR_ID_PLX,
289 .subdevice = 0x9054,
290 },
291 { }
db11e47d
SS
292};
293MODULE_DEVICE_TABLE(pci, isp1760_plx);
294
295static struct pci_driver isp1761_pci_driver = {
296 .name = "isp1760",
297 .id_table = isp1760_plx,
298 .probe = isp1761_pci_probe,
299 .remove = isp1761_pci_remove,
300 .shutdown = isp1761_pci_shutdown,
301};
302#endif
303
f7e7aa58
CM
304static int __devinit isp1760_plat_probe(struct platform_device *pdev)
305{
306 int ret = 0;
307 struct usb_hcd *hcd;
308 struct resource *mem_res;
309 struct resource *irq_res;
310 resource_size_t mem_size;
311 unsigned long irqflags = IRQF_SHARED | IRQF_DISABLED;
312
313 mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
314 if (!mem_res) {
315 pr_warning("isp1760: Memory resource not available\n");
316 ret = -ENODEV;
317 goto out;
318 }
319 mem_size = resource_size(mem_res);
320 if (!request_mem_region(mem_res->start, mem_size, "isp1760")) {
321 pr_warning("isp1760: Cannot reserve the memory resource\n");
322 ret = -EBUSY;
323 goto out;
324 }
325
326 irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
327 if (!irq_res) {
328 pr_warning("isp1760: IRQ resource not available\n");
329 return -ENODEV;
330 }
331 irqflags |= irq_res->flags & IRQF_TRIGGER_MASK;
332
333 hcd = isp1760_register(mem_res->start, mem_size, irq_res->start,
334 irqflags, &pdev->dev, dev_name(&pdev->dev), 0);
335 if (IS_ERR(hcd)) {
336 pr_warning("isp1760: Failed to register the HCD device\n");
337 ret = -ENODEV;
338 goto cleanup;
339 }
340
341 pr_info("ISP1760 USB device initialised\n");
342 return ret;
343
344cleanup:
345 release_mem_region(mem_res->start, mem_size);
346out:
347 return ret;
348}
349
350static int __devexit isp1760_plat_remove(struct platform_device *pdev)
351{
352 struct resource *mem_res;
353 resource_size_t mem_size;
354
355 mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
356 mem_size = resource_size(mem_res);
357 release_mem_region(mem_res->start, mem_size);
358
359 return 0;
360}
361
362static struct platform_driver isp1760_plat_driver = {
363 .probe = isp1760_plat_probe,
364 .remove = isp1760_plat_remove,
365 .driver = {
366 .name = "isp1760",
367 },
368};
369
db11e47d
SS
370static int __init isp1760_init(void)
371{
f7e7aa58 372 int ret, any_ret = -ENODEV;
db11e47d
SS
373
374 init_kmem_once();
375
f7e7aa58
CM
376 ret = platform_driver_register(&isp1760_plat_driver);
377 if (!ret)
378 any_ret = 0;
ff30bf1c 379#ifdef CONFIG_PPC_OF
db11e47d 380 ret = of_register_platform_driver(&isp1760_of_driver);
f7e7aa58
CM
381 if (!ret)
382 any_ret = 0;
db11e47d 383#endif
ff30bf1c 384#ifdef CONFIG_PCI
db11e47d 385 ret = pci_register_driver(&isp1761_pci_driver);
f7e7aa58
CM
386 if (!ret)
387 any_ret = 0;
db11e47d 388#endif
db11e47d 389
f7e7aa58
CM
390 if (any_ret)
391 deinit_kmem_cache();
392 return any_ret;
db11e47d
SS
393}
394module_init(isp1760_init);
395
396static void __exit isp1760_exit(void)
397{
f7e7aa58 398 platform_driver_unregister(&isp1760_plat_driver);
ff30bf1c 399#ifdef CONFIG_PPC_OF
db11e47d
SS
400 of_unregister_platform_driver(&isp1760_of_driver);
401#endif
ff30bf1c 402#ifdef CONFIG_PCI
db11e47d
SS
403 pci_unregister_driver(&isp1761_pci_driver);
404#endif
405 deinit_kmem_cache();
406}
407module_exit(isp1760_exit);
This page took 0.153246 seconds and 5 git commands to generate.