add proper email addresses to the comment headers
[openwrt/svn-archive/archive.git] / target / linux / ar7 / files / drivers / vlynq / vlynq.c
1 /*
2 * Copyright (C) 2006, 2007 Eugene Konev <ejka@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19 #include <linux/init.h>
20 #include <linux/types.h>
21 #include <linux/kernel.h>
22 #include <linux/string.h>
23 #include <linux/device.h>
24 #include <linux/module.h>
25 #include <linux/errno.h>
26 #include <linux/platform_device.h>
27 #include <linux/interrupt.h>
28 #include <linux/device.h>
29 #include <linux/io.h>
30
31 #include <linux/vlynq.h>
32
33 #define VLYNQ_CTRL_PM_ENABLE 0x80000000
34 #define VLYNQ_CTRL_CLOCK_INT 0x00008000
35 #define VLYNQ_CTRL_CLOCK_DIV(x) (((x) & 7) << 16)
36 #define VLYNQ_CTRL_INT_LOCAL 0x00004000
37 #define VLYNQ_CTRL_INT_ENABLE 0x00002000
38 #define VLYNQ_CTRL_INT_VECTOR(x) (((x) & 0x1f) << 8)
39 #define VLYNQ_CTRL_INT2CFG 0x00000080
40 #define VLYNQ_CTRL_RESET 0x00000001
41
42 #define VLYNQ_INT_OFFSET 0x00000014
43 #define VLYNQ_REMOTE_OFFSET 0x00000080
44
45 #define VLYNQ_STATUS_LINK 0x00000001
46 #define VLYNQ_STATUS_LERROR 0x00000080
47 #define VLYNQ_STATUS_RERROR 0x00000100
48
49 #define VINT_ENABLE 0x00000100
50 #define VINT_TYPE_EDGE 0x00000080
51 #define VINT_LEVEL_LOW 0x00000040
52 #define VINT_VECTOR(x) ((x) & 0x1f)
53 #define VINT_OFFSET(irq) (8 * ((irq) % 4))
54
55 #define VLYNQ_AUTONEGO_V2 0x00010000
56
57 struct vlynq_regs {
58 u32 revision;
59 u32 control;
60 u32 status;
61 u32 int_prio;
62 u32 int_status;
63 u32 int_pending;
64 u32 int_ptr;
65 u32 tx_offset;
66 struct vlynq_mapping rx_mapping[4];
67 u32 chip;
68 u32 autonego;
69 u32 unused[6];
70 u32 int_device[8];
71 } __attribute__ ((packed));
72
73 #define vlynq_reg_read(reg) readl(&(reg))
74 #define vlynq_reg_write(reg, val) writel(val, &(reg))
75
76 static int __vlynq_enable_device(struct vlynq_device *dev);
77
78 #ifdef VLYNQ_DEBUG
79 static void vlynq_dump_regs(struct vlynq_device *dev)
80 {
81 int i;
82 printk(KERN_DEBUG "VLYNQ local=%p remote=%p\n",
83 dev->local, dev->remote);
84 for (i = 0; i < 32; i++) {
85 printk(KERN_DEBUG "VLYNQ: local %d: %08x\n",
86 i + 1, ((u32 *)dev->local)[i]);
87 printk(KERN_DEBUG "VLYNQ: remote %d: %08x\n",
88 i + 1, ((u32 *)dev->remote)[i]);
89 }
90 }
91
92 static void vlynq_dump_mem(u32 *base, int count)
93 {
94 int i;
95 for (i = 0; i < (count + 3) / 4; i++) {
96 if (i % 4 == 0) printk(KERN_DEBUG "\nMEM[0x%04x]:", i * 4);
97 printk(KERN_DEBUG " 0x%08x", *(base + i));
98 }
99 printk(KERN_DEBUG "\n");
100 }
101 #endif
102
103 int vlynq_linked(struct vlynq_device *dev)
104 {
105 int i;
106
107 for (i = 0; i < 100; i++)
108 if (vlynq_reg_read(dev->local->status) & VLYNQ_STATUS_LINK)
109 return 1;
110 else
111 cpu_relax();
112
113 return 0;
114 }
115
116 static void vlynq_irq_unmask(unsigned int irq)
117 {
118 u32 val;
119 struct vlynq_device *dev = get_irq_chip_data(irq);
120 int virq;
121
122 BUG_ON(!dev);
123 virq = irq - dev->irq_start;
124 val = vlynq_reg_read(dev->remote->int_device[virq >> 2]);
125 val |= (VINT_ENABLE | virq) << VINT_OFFSET(virq);
126 vlynq_reg_write(dev->remote->int_device[virq >> 2], val);
127 }
128
129 static void vlynq_irq_mask(unsigned int irq)
130 {
131 u32 val;
132 struct vlynq_device *dev = get_irq_chip_data(irq);
133 int virq;
134
135 BUG_ON(!dev);
136 virq = irq - dev->irq_start;
137 val = vlynq_reg_read(dev->remote->int_device[virq >> 2]);
138 val &= ~(VINT_ENABLE << VINT_OFFSET(virq));
139 vlynq_reg_write(dev->remote->int_device[virq >> 2], val);
140 }
141
142 static int vlynq_irq_type(unsigned int irq, unsigned int flow_type)
143 {
144 u32 val;
145 struct vlynq_device *dev = get_irq_chip_data(irq);
146 int virq;
147
148 BUG_ON(!dev);
149 virq = irq - dev->irq_start;
150 val = vlynq_reg_read(dev->remote->int_device[virq >> 2]);
151 switch (flow_type & IRQ_TYPE_SENSE_MASK) {
152 case IRQ_TYPE_EDGE_RISING:
153 case IRQ_TYPE_EDGE_FALLING:
154 case IRQ_TYPE_EDGE_BOTH:
155 val |= VINT_TYPE_EDGE << VINT_OFFSET(virq);
156 val &= ~(VINT_LEVEL_LOW << VINT_OFFSET(virq));
157 break;
158 case IRQ_TYPE_LEVEL_HIGH:
159 val &= ~(VINT_TYPE_EDGE << VINT_OFFSET(virq));
160 val &= ~(VINT_LEVEL_LOW << VINT_OFFSET(virq));
161 break;
162 case IRQ_TYPE_LEVEL_LOW:
163 val &= ~(VINT_TYPE_EDGE << VINT_OFFSET(virq));
164 val |= VINT_LEVEL_LOW << VINT_OFFSET(virq);
165 break;
166 default:
167 return -EINVAL;
168 }
169 vlynq_reg_write(dev->remote->int_device[virq >> 2], val);
170 return 0;
171 }
172
173 static void vlynq_local_ack(unsigned int irq)
174 {
175 struct vlynq_device *dev = get_irq_chip_data(irq);
176 u32 status = vlynq_reg_read(dev->local->status);
177 if (printk_ratelimit())
178 printk(KERN_DEBUG "%s: local status: 0x%08x\n",
179 dev->dev.bus_id, status);
180 vlynq_reg_write(dev->local->status, status);
181 }
182
183 static void vlynq_remote_ack(unsigned int irq)
184 {
185 struct vlynq_device *dev = get_irq_chip_data(irq);
186 u32 status = vlynq_reg_read(dev->remote->status);
187 if (printk_ratelimit())
188 printk(KERN_DEBUG "%s: remote status: 0x%08x\n",
189 dev->dev.bus_id, status);
190 vlynq_reg_write(dev->remote->status, status);
191 }
192
193 static irqreturn_t vlynq_irq(int irq, void *dev_id)
194 {
195 struct vlynq_device *dev = dev_id;
196 u32 status;
197 int virq = 0;
198
199 status = vlynq_reg_read(dev->local->int_status);
200 vlynq_reg_write(dev->local->int_status, status);
201
202 if (unlikely(!status))
203 spurious_interrupt();
204
205 while (status) {
206 if (status & 1)
207 do_IRQ(dev->irq_start + virq);
208 status >>= 1;
209 virq++;
210 }
211
212 return IRQ_HANDLED;
213 }
214
215 static struct irq_chip vlynq_irq_chip = {
216 .name = "vlynq",
217 .unmask = vlynq_irq_unmask,
218 .mask = vlynq_irq_mask,
219 .set_type = vlynq_irq_type,
220 };
221
222 static struct irq_chip vlynq_local_chip = {
223 .name = "vlynq local error",
224 .unmask = vlynq_irq_unmask,
225 .mask = vlynq_irq_mask,
226 .ack = vlynq_local_ack,
227 };
228
229 static struct irq_chip vlynq_remote_chip = {
230 .name = "vlynq local error",
231 .unmask = vlynq_irq_unmask,
232 .mask = vlynq_irq_mask,
233 .ack = vlynq_remote_ack,
234 };
235
236 static int vlynq_setup_irq(struct vlynq_device *dev)
237 {
238 u32 val;
239 int i, virq;
240
241 if (dev->local_irq == dev->remote_irq) {
242 printk(KERN_ERR
243 "%s: local vlynq irq should be different from remote\n",
244 dev->dev.bus_id);
245 return -EINVAL;
246 }
247
248 /* Clear local and remote error bits */
249 vlynq_reg_write(dev->local->status, vlynq_reg_read(dev->local->status));
250 vlynq_reg_write(dev->remote->status,
251 vlynq_reg_read(dev->remote->status));
252
253 /* Now setup interrupts */
254 val = VLYNQ_CTRL_INT_VECTOR(dev->local_irq);
255 val |= VLYNQ_CTRL_INT_ENABLE | VLYNQ_CTRL_INT_LOCAL |
256 VLYNQ_CTRL_INT2CFG;
257 val |= vlynq_reg_read(dev->local->control);
258 vlynq_reg_write(dev->local->int_ptr, VLYNQ_INT_OFFSET);
259 vlynq_reg_write(dev->local->control, val);
260
261 val = VLYNQ_CTRL_INT_VECTOR(dev->remote_irq);
262 val |= VLYNQ_CTRL_INT_ENABLE;
263 val |= vlynq_reg_read(dev->remote->control);
264 vlynq_reg_write(dev->remote->int_ptr, VLYNQ_INT_OFFSET);
265 vlynq_reg_write(dev->remote->control, val);
266
267 for (i = dev->irq_start; i <= dev->irq_end; i++) {
268 virq = i - dev->irq_start;
269 if (virq == dev->local_irq) {
270 set_irq_chip_and_handler(i, &vlynq_local_chip,
271 handle_level_irq);
272 set_irq_chip_data(i, dev);
273 } else if (virq == dev->remote_irq) {
274 set_irq_chip_and_handler(i, &vlynq_remote_chip,
275 handle_level_irq);
276 set_irq_chip_data(i, dev);
277 } else {
278 set_irq_chip_and_handler(i, &vlynq_irq_chip,
279 handle_simple_irq);
280 set_irq_chip_data(i, dev);
281 vlynq_reg_write(dev->remote->int_device[virq >> 2], 0);
282 }
283 }
284
285 if (request_irq(dev->irq, vlynq_irq, IRQF_SHARED, "vlynq", dev)) {
286 printk(KERN_ERR "%s: request_irq failed\n", dev->dev.bus_id);
287 return -EAGAIN;
288 }
289
290 return 0;
291 }
292
293 static void vlynq_device_release(struct device *dev)
294 {
295 struct vlynq_device *vdev = to_vlynq_device(dev);
296 kfree(vdev);
297 }
298
299 static int vlynq_device_match(struct device *dev,
300 struct device_driver *drv)
301 {
302 struct vlynq_device *vdev = to_vlynq_device(dev);
303 struct vlynq_driver *vdrv = to_vlynq_driver(drv);
304 struct plat_vlynq_ops *ops = dev->platform_data;
305 struct vlynq_device_id *ids = vdrv->id_table;
306 u32 id = 0;
307 int result;
308
309 while (ids->id) {
310 vdev->divisor = ids->divisor;
311 result = __vlynq_enable_device(vdev);
312 if (result == 0) {
313 id = vlynq_reg_read(vdev->remote->chip);
314 ops->off(vdev);
315 if (ids->id == id) {
316 vlynq_set_drvdata(vdev, ids);
317 return 1;
318 }
319 }
320 ids++;
321 }
322 return 0;
323 }
324
325 static int vlynq_device_probe(struct device *dev)
326 {
327 struct vlynq_device *vdev = to_vlynq_device(dev);
328 struct vlynq_driver *drv = to_vlynq_driver(dev->driver);
329 struct vlynq_device_id *id = vlynq_get_drvdata(vdev);
330 int result = -ENODEV;
331
332 get_device(dev);
333 if (drv && drv->probe)
334 result = drv->probe(vdev, id);
335 if (result)
336 put_device(dev);
337 return result;
338 }
339
340 static int vlynq_device_remove(struct device *dev)
341 {
342 struct vlynq_driver *drv = to_vlynq_driver(dev->driver);
343 if (drv && drv->remove)
344 drv->remove(to_vlynq_device(dev));
345 put_device(dev);
346 return 0;
347 }
348
349 int __vlynq_register_driver(struct vlynq_driver *driver, struct module *owner)
350 {
351 driver->driver.name = driver->name;
352 driver->driver.bus = &vlynq_bus_type;
353 return driver_register(&driver->driver);
354 }
355 EXPORT_SYMBOL(__vlynq_register_driver);
356
357 void vlynq_unregister_driver(struct vlynq_driver *driver)
358 {
359 driver_unregister(&driver->driver);
360 }
361 EXPORT_SYMBOL(vlynq_unregister_driver);
362
363 static int __vlynq_enable_device(struct vlynq_device *dev)
364 {
365 int i, result;
366 struct plat_vlynq_ops *ops = dev->dev.platform_data;
367
368 result = ops->on(dev);
369 if (result)
370 return result;
371
372 vlynq_reg_write(dev->local->control, 0);
373 vlynq_reg_write(dev->remote->control, 0);
374 if (vlynq_linked(dev)) {
375 printk(KERN_DEBUG "%s: using external clock\n",
376 dev->dev.bus_id);
377 return 0;
378 }
379
380 switch (dev->divisor) {
381 case vlynq_div_auto:
382 /* Only try locally supplied clock, others cause problems */
383 vlynq_reg_write(dev->remote->control, 0);
384 for (i = vlynq_ldiv2; i <= vlynq_ldiv8; i++) {
385 vlynq_reg_write(dev->local->control,
386 VLYNQ_CTRL_CLOCK_INT |
387 VLYNQ_CTRL_CLOCK_DIV(i - vlynq_ldiv1));
388 if (vlynq_linked(dev)) {
389 printk(KERN_DEBUG
390 "%s: using local clock divisor %d\n",
391 dev->dev.bus_id, i - vlynq_ldiv1 + 1);
392 dev->divisor = i;
393 return 0;
394 }
395 }
396 case vlynq_ldiv1: case vlynq_ldiv2: case vlynq_ldiv3: case vlynq_ldiv4:
397 case vlynq_ldiv5: case vlynq_ldiv6: case vlynq_ldiv7: case vlynq_ldiv8:
398 vlynq_reg_write(dev->remote->control, 0);
399 vlynq_reg_write(dev->local->control,
400 VLYNQ_CTRL_CLOCK_INT |
401 VLYNQ_CTRL_CLOCK_DIV(dev->divisor -
402 vlynq_ldiv1));
403 if (vlynq_linked(dev)) {
404 printk(KERN_DEBUG
405 "%s: using local clock divisor %d\n",
406 dev->dev.bus_id, dev->divisor - vlynq_ldiv1 + 1);
407 return 0;
408 }
409 break;
410 case vlynq_rdiv1: case vlynq_rdiv2: case vlynq_rdiv3: case vlynq_rdiv4:
411 case vlynq_rdiv5: case vlynq_rdiv6: case vlynq_rdiv7: case vlynq_rdiv8:
412 vlynq_reg_write(dev->local->control, 0);
413 vlynq_reg_write(dev->remote->control,
414 VLYNQ_CTRL_CLOCK_INT |
415 VLYNQ_CTRL_CLOCK_DIV(dev->divisor -
416 vlynq_rdiv1));
417 if (vlynq_linked(dev)) {
418 printk(KERN_DEBUG
419 "%s: using remote clock divisor %d\n",
420 dev->dev.bus_id, dev->divisor - vlynq_rdiv1 + 1);
421 return 0;
422 }
423 break;
424 }
425
426 ops->off(dev);
427 return -ENODEV;
428 }
429
430 int vlynq_enable_device(struct vlynq_device *dev)
431 {
432 struct plat_vlynq_ops *ops = dev->dev.platform_data;
433 int result = -ENODEV;
434
435 result = __vlynq_enable_device(dev);
436 if (result)
437 return result;
438
439 result = vlynq_setup_irq(dev);
440 if (result)
441 ops->off(dev);
442
443 dev->enabled = !result;
444 return result;
445 }
446 EXPORT_SYMBOL(vlynq_enable_device);
447
448
449 void vlynq_disable_device(struct vlynq_device *dev)
450 {
451 struct plat_vlynq_ops *ops = dev->dev.platform_data;
452
453 dev->enabled = 0;
454 free_irq(dev->irq, dev);
455 ops->off(dev);
456 }
457 EXPORT_SYMBOL(vlynq_disable_device);
458
459 int vlynq_set_local_mapping(struct vlynq_device *dev, u32 tx_offset,
460 struct vlynq_mapping *mapping)
461 {
462 int i;
463
464 if (!dev->enabled)
465 return -ENXIO;
466
467 vlynq_reg_write(dev->local->tx_offset, tx_offset);
468 for (i = 0; i < 4; i++) {
469 vlynq_reg_write(dev->local->rx_mapping[i].offset,
470 mapping[i].offset);
471 vlynq_reg_write(dev->local->rx_mapping[i].size,
472 mapping[i].size);
473 }
474 return 0;
475 }
476 EXPORT_SYMBOL(vlynq_set_local_mapping);
477
478 int vlynq_set_remote_mapping(struct vlynq_device *dev, u32 tx_offset,
479 struct vlynq_mapping *mapping)
480 {
481 int i;
482
483 if (!dev->enabled)
484 return -ENXIO;
485
486 vlynq_reg_write(dev->remote->tx_offset, tx_offset);
487 for (i = 0; i < 4; i++) {
488 vlynq_reg_write(dev->remote->rx_mapping[i].offset,
489 mapping[i].offset);
490 vlynq_reg_write(dev->remote->rx_mapping[i].size,
491 mapping[i].size);
492 }
493 return 0;
494 }
495 EXPORT_SYMBOL(vlynq_set_remote_mapping);
496
497 int vlynq_set_local_irq(struct vlynq_device *dev, int virq)
498 {
499 int irq = dev->irq_start + virq;
500 if (dev->enabled)
501 return -EBUSY;
502
503 if ((irq < dev->irq_start) || (irq > dev->irq_end))
504 return -EINVAL;
505
506 if (virq == dev->remote_irq)
507 return -EINVAL;
508
509 dev->local_irq = virq;
510
511 return 0;
512 }
513 EXPORT_SYMBOL(vlynq_set_local_irq);
514
515 int vlynq_set_remote_irq(struct vlynq_device *dev, int virq)
516 {
517 int irq = dev->irq_start + virq;
518 if (dev->enabled)
519 return -EBUSY;
520
521 if ((irq < dev->irq_start) || (irq > dev->irq_end))
522 return -EINVAL;
523
524 if (virq == dev->local_irq)
525 return -EINVAL;
526
527 dev->remote_irq = virq;
528
529 return 0;
530 }
531 EXPORT_SYMBOL(vlynq_set_remote_irq);
532
533 static int vlynq_probe(struct platform_device *pdev)
534 {
535 struct vlynq_device *dev;
536 struct resource *regs_res, *mem_res, *irq_res;
537 int len, result;
538
539 regs_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs");
540 if (!regs_res)
541 return -ENODEV;
542
543 mem_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mem");
544 if (!mem_res)
545 return -ENODEV;
546
547 irq_res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "devirq");
548 if (!irq_res)
549 return -ENODEV;
550
551 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
552 if (!dev) {
553 printk(KERN_ERR
554 "vlynq: failed to allocate device structure\n");
555 return -ENOMEM;
556 }
557
558 dev->id = pdev->id;
559 dev->dev.bus = &vlynq_bus_type;
560 dev->dev.parent = &pdev->dev;
561 snprintf(dev->dev.bus_id, BUS_ID_SIZE, "vlynq%d", dev->id);
562 dev->dev.bus_id[BUS_ID_SIZE - 1] = 0;
563 dev->dev.platform_data = pdev->dev.platform_data;
564 dev->dev.release = vlynq_device_release;
565
566 dev->regs_start = regs_res->start;
567 dev->regs_end = regs_res->end;
568 dev->mem_start = mem_res->start;
569 dev->mem_end = mem_res->end;
570
571 len = regs_res->end - regs_res->start;
572 if (!request_mem_region(regs_res->start, len, dev->dev.bus_id)) {
573 printk(KERN_ERR "%s: Can't request vlynq registers\n",
574 dev->dev.bus_id);
575 result = -ENXIO;
576 goto fail_request;
577 }
578
579 dev->local = ioremap(regs_res->start, len);
580 if (!dev->local) {
581 printk(KERN_ERR "%s: Can't remap vlynq registers\n",
582 dev->dev.bus_id);
583 result = -ENXIO;
584 goto fail_remap;
585 }
586
587 dev->remote = (struct vlynq_regs *)((void *)dev->local +
588 VLYNQ_REMOTE_OFFSET);
589
590 dev->irq = platform_get_irq_byname(pdev, "irq");
591 dev->irq_start = irq_res->start;
592 dev->irq_end = irq_res->end;
593 dev->local_irq = dev->irq_end - dev->irq_start;
594 dev->remote_irq = dev->local_irq - 1;
595
596 if (device_register(&dev->dev))
597 goto fail_register;
598 platform_set_drvdata(pdev, dev);
599
600 printk(KERN_INFO "%s: regs 0x%p, irq %d, mem 0x%p\n",
601 dev->dev.bus_id, (void *)dev->regs_start, dev->irq,
602 (void *)dev->mem_start);
603
604 return 0;
605
606 fail_register:
607 iounmap(dev->local);
608 fail_remap:
609 fail_request:
610 release_mem_region(regs_res->start, len);
611 kfree(dev);
612 return result;
613 }
614
615 static int vlynq_remove(struct platform_device *pdev)
616 {
617 struct vlynq_device *dev = platform_get_drvdata(pdev);
618
619 device_unregister(&dev->dev);
620 iounmap(dev->local);
621 release_mem_region(dev->regs_start, dev->regs_end - dev->regs_start);
622
623 kfree(dev);
624
625 return 0;
626 }
627
628 static struct platform_driver vlynq_driver = {
629 .driver.name = "vlynq",
630 .probe = vlynq_probe,
631 .remove = __devexit_p(vlynq_remove),
632 };
633
634 struct bus_type vlynq_bus_type = {
635 .name = "vlynq",
636 .match = vlynq_device_match,
637 .probe = vlynq_device_probe,
638 .remove = vlynq_device_remove,
639 };
640 EXPORT_SYMBOL(vlynq_bus_type);
641
642 static int __devinit vlynq_init(void)
643 {
644 int res = 0;
645
646 res = bus_register(&vlynq_bus_type);
647 if (res)
648 goto fail_bus;
649
650 res = platform_driver_register(&vlynq_driver);
651 if (res)
652 goto fail_platform;
653
654 return 0;
655
656 fail_platform:
657 bus_unregister(&vlynq_bus_type);
658 fail_bus:
659 return res;
660 }
661
662 static void __devexit vlynq_exit(void)
663 {
664 platform_driver_unregister(&vlynq_driver);
665 bus_unregister(&vlynq_bus_type);
666 }
667
668 module_init(vlynq_init);
669 module_exit(vlynq_exit);