06097556d2662c9b428b0cb3bf803cf0a2da949c
[openwrt/svn-archive/archive.git] / target / linux / ar7-2.6 / files / arch / mips / ar7 / vlynq.c
1 /*
2 * $Id$
3 *
4 * Copyright (C) 2006, 2007 OpenWrt.org
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include <linux/init.h>
22 #include <linux/types.h>
23 #include <linux/kernel.h>
24 #include <linux/string.h>
25 #include <linux/delay.h>
26 #include <linux/device.h>
27 #include <linux/ioport.h>
28 #include <linux/errno.h>
29 #include <linux/platform_device.h>
30 #include <linux/irq.h>
31 #include <linux/interrupt.h>
32 #include <linux/device.h>
33 #include <asm/addrspace.h>
34 #include <asm/io.h>
35 #include <asm/ar7/vlynq.h>
36
37 #define PER_DEVICE_IRQS 32
38
39 #define VLYNQ_CTRL_PM_ENABLE 0x80000000
40 #define VLYNQ_CTRL_CLOCK_INT 0x00008000
41 #define VLYNQ_CTRL_CLOCK_DIV(x) ((x & 7) << 16)
42 #define VLYNQ_CTRL_INT_LOCAL 0x00004000
43 #define VLYNQ_CTRL_INT_ENABLE 0x00002000
44 #define VLYNQ_CTRL_INT_VECTOR(x) ((x & 0x1f) << 8)
45 #define VLYNQ_CTRL_INT2CFG 0x00000080
46 #define VLYNQ_CTRL_RESET 0x00000001
47
48 #define VLYNQ_STATUS_RERROR 0x00000100
49 #define VLYNQ_STATUS_LERROR 0x00000080
50 #define VLYNQ_STATUS_LINK 0x00000001
51
52 #define VINT_ENABLE 0x00000100
53 #define VINT_TYPE_EDGE 0x00000080
54 #define VINT_LEVEL_LOW 0x00000040
55 #define VINT_VECTOR(x) (x & 0x1f)
56 #define VINT_OFFSET(irq) (8 * ((irq) % 4))
57
58 #define VLYNQ_AUTONEGO_V2 0x00010000
59
60 struct vlynq_regs {
61 volatile u32 revision;
62 volatile u32 control;
63 volatile u32 status;
64 volatile u32 int_prio;
65 volatile u32 int_status;
66 volatile u32 int_pending;
67 volatile u32 int_ptr;
68 volatile u32 tx_offset;
69 volatile struct vlynq_mapping rx_mapping[4];
70 volatile u32 chip;
71 volatile u32 autonego;
72 volatile u32 unused[6];
73 volatile u32 int_device[8];
74 } __attribute__ ((packed));
75
76 #ifdef VLYNQ_DEBUG
77 static void vlynq_dump_regs(struct vlynq_device *dev)
78 {
79 int i;
80 printk("VLYNQ local=%p remote=%p\n", dev->local, dev->remote);
81 for (i = 0; i < 32; i++) {
82 printk("VLYNQ: local %d: %08x\n", i + 1, ((u32 *)dev->local)[i]);
83 printk("VLYNQ: remote %d: %08x\n", i + 1, ((u32 *)dev->remote)[i]);
84 }
85 }
86
87 static void vlynq_dump_mem(u32 *base, int count)
88 {
89 int i;
90 for (i = 0; i < (count + 3) / 4; i++) {
91 if (i % 4 == 0) printk("\nMEM[0x%04x]:", i * 4);
92 printk(" 0x%08x", *(base + i));
93 }
94 printk("\n");
95 }
96 #endif
97
98 int vlynq_linked(struct vlynq_device *dev)
99 {
100 int i;
101 for (i = 0; i < 10; i++)
102 if (dev->local->status & VLYNQ_STATUS_LINK) {
103 printk("%s: linked\n", dev->dev.bus_id);
104 return 1;
105 } else {
106 mdelay(1);
107 }
108 return 0;
109 }
110
111 static void vlynq_irq_unmask(unsigned int irq)
112 {
113 volatile u32 val;
114 struct vlynq_device *dev = irq_desc[irq].chip_data;
115 int virq;
116
117 BUG_ON(!dev);
118 virq = irq - dev->irq_start;
119 val = dev->remote->int_device[virq >> 2];
120 val |= (VINT_ENABLE | virq) << VINT_OFFSET(virq);
121 dev->remote->int_device[virq >> 2] = val;
122 }
123
124 static void vlynq_irq_mask(unsigned int irq)
125 {
126 volatile u32 val;
127 struct vlynq_device *dev = irq_desc[irq].chip_data;
128 int virq;
129
130 BUG_ON(!dev);
131 virq = irq - dev->irq_start;
132 val = dev->remote->int_device[virq >> 2];
133 val &= ~(VINT_ENABLE << VINT_OFFSET(virq));
134 dev->remote->int_device[virq >> 2] = val;
135 }
136
137 static int vlynq_irq_type(unsigned int irq, unsigned int flow_type)
138 {
139 volatile u32 val;
140 struct vlynq_device *dev = irq_desc[irq].chip_data;
141 int virq;
142
143 BUG_ON(!dev);
144 virq = irq - dev->irq_start;
145 val = dev->remote->int_device[virq >> 2];
146 switch (flow_type & IRQ_TYPE_SENSE_MASK) {
147 case IRQ_TYPE_EDGE_RISING:
148 case IRQ_TYPE_EDGE_FALLING:
149 case IRQ_TYPE_EDGE_BOTH:
150 val |= VINT_TYPE_EDGE << VINT_OFFSET(virq);
151 val &= ~(VINT_LEVEL_LOW << VINT_OFFSET(virq));
152 break;
153 case IRQ_TYPE_LEVEL_HIGH:
154 val &= ~(VINT_TYPE_EDGE << VINT_OFFSET(virq));
155 val &= ~(VINT_LEVEL_LOW << VINT_OFFSET(virq));
156 break;
157 case IRQ_TYPE_LEVEL_LOW:
158 val &= ~(VINT_TYPE_EDGE << VINT_OFFSET(virq));
159 val |= VINT_LEVEL_LOW << VINT_OFFSET(virq);
160 break;
161 default:
162 return -EINVAL;
163 }
164 dev->remote->int_device[virq >> 2] = val;
165 return 0;
166 }
167
168 static irqreturn_t vlynq_irq(int irq, void *dev_id)
169 {
170 struct vlynq_device *dev = dev_id;
171 u32 status, ack;
172 int virq = 0;
173
174 status = dev->local->int_status;
175 dev->local->int_status = status;
176
177 if (status & (1 << dev->local_irq)) { /* Local vlynq IRQ. Ack */
178 ack = dev->local->status;
179 dev->local->status = ack;
180 }
181
182 if (status & (1 << dev->remote_irq)) { /* Remote vlynq IRQ. Ack */
183 ack = dev->remote->status;
184 dev->remote->status = ack;
185 }
186
187 status &= ~((1 << dev->local_irq) | (1 << dev->remote_irq));
188 while (status) {
189 if (status & 1) /* Remote device IRQ. Pass. */
190 do_IRQ(dev->irq_start + virq);
191 status >>= 1;
192 virq++;
193 }
194
195 return IRQ_HANDLED;
196 }
197
198 static struct irq_chip vlynq_irq_chip = {
199 .typename = "VLYNQ",
200 .name = "vlynq",
201 .unmask = vlynq_irq_unmask,
202 .mask = vlynq_irq_mask,
203 .set_type = vlynq_irq_type,
204 };
205
206 static int vlynq_setup_irq(struct vlynq_device *dev)
207 {
208 u32 val;
209 int i;
210
211 if (dev->local_irq == dev->remote_irq) {
212 printk("%s: local vlynq irq should be different from remote\n",
213 dev->dev.bus_id);
214 return -EINVAL;
215 }
216
217 val = VLYNQ_CTRL_INT_VECTOR(dev->local_irq);
218 val |= VLYNQ_CTRL_INT_ENABLE | VLYNQ_CTRL_INT_LOCAL |
219 VLYNQ_CTRL_INT2CFG;
220 dev->local->int_ptr = 0x14;
221 dev->local->control |= val;
222
223 val = VLYNQ_CTRL_INT_VECTOR(dev->remote_irq);
224 val |= VLYNQ_CTRL_INT_ENABLE;
225 dev->remote->int_ptr = 0x14;
226 dev->remote->control |= val;
227
228 for (i = 0; i < PER_DEVICE_IRQS; i++) {
229 if ((i == dev->local_irq) || (i == dev->remote_irq))
230 continue;
231 irq_desc[dev->irq_start + i].status = IRQ_DISABLED;
232 irq_desc[dev->irq_start + i].action = 0;
233 irq_desc[dev->irq_start + i].depth = 1;
234 irq_desc[dev->irq_start + i].chip = &vlynq_irq_chip;
235 irq_desc[dev->irq_start + i].chip_data = dev;
236 dev->remote->int_device[i >> 2] = 0;
237 }
238
239 if (request_irq(dev->irq, vlynq_irq, SA_SHIRQ, "vlynq", dev)) {
240 printk("%s: request_irq failed\n", dev->dev.bus_id);
241 return -EAGAIN;
242 }
243
244 return 0;
245 }
246
247 static void vlynq_free_irq(struct vlynq_device *dev)
248 {
249 free_irq(dev->irq, dev);
250 }
251
252 static void vlynq_device_release(struct device *dev)
253 {
254 struct vlynq_device *vdev = to_vlynq_device(dev);
255 kfree(vdev);
256 }
257
258 static int vlynq_device_probe(struct device *dev)
259 {
260 struct vlynq_driver *drv = to_vlynq_driver(dev->driver);
261 if (drv->probe)
262 return drv->probe(to_vlynq_device(dev));
263 return 0;
264 }
265
266 static int vlynq_device_remove(struct device *dev)
267 {
268 struct vlynq_driver *drv = to_vlynq_driver(dev->driver);
269 if (drv->remove)
270 return drv->remove(to_vlynq_device(dev));
271 return 0;
272 }
273
274 int __vlynq_register_driver(struct vlynq_driver *driver, struct module *owner)
275 {
276 driver->driver.name = driver->name;
277 driver->driver.bus = &vlynq_bus_type;
278 /* driver->driver.owner = owner;*/
279 return driver_register(&driver->driver);
280 }
281 EXPORT_SYMBOL(__vlynq_register_driver);
282
283 void vlynq_unregister_driver(struct vlynq_driver *driver)
284 {
285 driver_unregister(&driver->driver);
286 }
287 EXPORT_SYMBOL(vlynq_unregister_driver);
288
289 int vlynq_device_enable(struct vlynq_device *dev)
290 {
291 u32 val;
292 int result;
293 struct plat_vlynq_ops *ops = dev->dev.platform_data;
294
295 result = ops->on(dev);
296 if (result)
297 return result;
298
299 dev->local->control = 0;
300 dev->remote->control = 0;
301
302 if (vlynq_linked(dev))
303 return vlynq_setup_irq(dev);
304
305 for (val = 0; val < 8; val++) {
306 dev->local->control = VLYNQ_CTRL_CLOCK_DIV(val) |
307 VLYNQ_CTRL_CLOCK_INT;
308 if (vlynq_linked(dev))
309 return vlynq_setup_irq(dev);
310 }
311
312 return -ENODEV;
313 }
314
315 void vlynq_device_disable(struct vlynq_device *dev)
316 {
317 struct plat_vlynq_ops *ops = dev->dev.platform_data;
318
319 vlynq_free_irq(dev);
320 ops->off(dev);
321 }
322
323 u32 vlynq_local_id(struct vlynq_device *dev)
324 {
325 return dev->local->chip;
326 }
327
328 u32 vlynq_remote_id(struct vlynq_device *dev)
329 {
330 return dev->remote->chip;
331 }
332
333 void vlynq_set_local_mapping(struct vlynq_device *dev, u32 tx_offset,
334 struct vlynq_mapping *mapping)
335 {
336 int i;
337
338 dev->local->tx_offset = tx_offset;
339 for (i = 0; i < 4; i++) {
340 dev->local->rx_mapping[i].offset = mapping[i].offset;
341 dev->local->rx_mapping[i].size = mapping[i].size;
342 }
343 }
344
345 void vlynq_set_remote_mapping(struct vlynq_device *dev, u32 tx_offset,
346 struct vlynq_mapping *mapping)
347 {
348 int i;
349
350 dev->remote->tx_offset = tx_offset;
351 for (i = 0; i < 4; i++) {
352 dev->remote->rx_mapping[i].offset = mapping[i].offset;
353 dev->remote->rx_mapping[i].size = mapping[i].size;
354 }
355 }
356
357 int vlynq_virq_to_irq(struct vlynq_device *dev, int virq)
358 {
359 if ((virq < 0) || (virq >= PER_DEVICE_IRQS))
360 return -EINVAL;
361
362 if ((virq == dev->local_irq) || (virq == dev->remote_irq))
363 return -EINVAL;
364
365 return dev->irq_start + virq;
366 }
367
368 int vlynq_irq_to_virq(struct vlynq_device *dev, int irq)
369 {
370 if ((irq < dev->irq_start) || (irq >= dev->irq_start + PER_DEVICE_IRQS))
371 return -EINVAL;
372
373 return irq - dev->irq_start;
374 }
375
376 int vlynq_set_local_irq(struct vlynq_device *dev, int virq)
377 {
378 if ((virq < 0) || (virq >= PER_DEVICE_IRQS))
379 return -EINVAL;
380
381 if (virq == dev->remote_irq)
382 return -EINVAL;
383
384 dev->local_irq = virq;
385
386 return 0;
387 }
388
389 int vlynq_set_remote_irq(struct vlynq_device *dev, int virq)
390 {
391 if ((virq < 0) || (virq >= PER_DEVICE_IRQS))
392 return -EINVAL;
393
394 if (virq == dev->local_irq)
395 return -EINVAL;
396
397 dev->remote_irq = virq;
398
399 return 0;
400 }
401
402 static int vlynq_probe(struct platform_device *pdev)
403 {
404 struct vlynq_device *dev;
405 struct resource *regs_res, *mem_res, *irq_res;
406 int len, result;
407
408 if (strcmp(pdev->name, "vlynq"))
409 return -ENODEV;
410
411 regs_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs");
412 if (!regs_res)
413 return -ENODEV;
414
415 mem_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mem");
416 if (!mem_res)
417 return -ENODEV;
418
419 irq_res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "devirq");
420 if (!irq_res)
421 return -ENODEV;
422
423 dev = kmalloc(sizeof(struct vlynq_device), GFP_KERNEL);
424 if (!dev) {
425 printk(KERN_ERR "vlynq: failed to allocate device structure\n");
426 return -ENOMEM;
427 }
428
429 memset(dev, 0, sizeof(struct vlynq_device));
430
431 dev->id = pdev->id;
432 dev->dev.bus = &vlynq_bus_type;
433 dev->dev.parent = &pdev->dev;
434 snprintf(dev->dev.bus_id, BUS_ID_SIZE, "vlynq%d", dev->id);
435 dev->dev.bus_id[BUS_ID_SIZE - 1] = 0;
436 dev->dev.platform_data = pdev->dev.platform_data;
437 dev->dev.release = vlynq_device_release;
438
439 dev->regs_start = regs_res->start;
440 dev->regs_end = regs_res->end;
441 dev->mem_start = mem_res->start;
442 dev->mem_end = mem_res->end;
443
444 len = regs_res->end - regs_res->start;
445 if (!request_mem_region(regs_res->start, len, dev->dev.bus_id)) {
446 printk("%s: Can't request vlynq registers\n", dev->dev.bus_id);
447 result = -ENXIO;
448 goto fail_request;
449 }
450
451 dev->local = ioremap_nocache(regs_res->start, len);
452 if (!dev->local) {
453 printk("%s: Can't remap vlynq registers\n", dev->dev.bus_id);
454 result = -ENXIO;
455 goto fail_remap;
456 }
457
458 dev->remote = (struct vlynq_regs *)((u32)dev->local + 128);
459
460 dev->irq = platform_get_irq_byname(pdev, "irq");
461 dev->irq_start = irq_res->start;
462 dev->irq_end = irq_res->end;
463 dev->local_irq = 31;
464 dev->remote_irq = 30;
465
466 if (device_register(&dev->dev))
467 goto fail_register;
468 platform_set_drvdata(pdev, dev);
469
470 printk("%s: regs 0x%p, irq %d, mem 0x%p\n",
471 dev->dev.bus_id, (void *)dev->regs_start, dev->irq,
472 (void *)dev->mem_start);
473
474 return 0;
475
476 fail_register:
477 fail_remap:
478 iounmap(dev->local);
479 fail_request:
480 release_mem_region(regs_res->start, len);
481 kfree(dev);
482 return result;
483 }
484
485 static int vlynq_remove(struct platform_device *pdev)
486 {
487 struct vlynq_device *dev = platform_get_drvdata(pdev);
488
489 device_unregister(&dev->dev);
490 release_mem_region(dev->regs_start, dev->regs_end - dev->regs_start);
491
492 kfree(dev);
493
494 return 0;
495 }
496
497 static struct platform_driver vlynq_driver = {
498 .driver.name = "vlynq",
499 .probe = vlynq_probe,
500 .remove = vlynq_remove,
501 };
502
503 struct bus_type vlynq_bus_type = {
504 .name = "vlynq",
505 .probe = vlynq_device_probe,
506 .remove = vlynq_device_remove,
507 };
508 EXPORT_SYMBOL(vlynq_bus_type);
509
510 #ifdef CONFIG_PCI
511 extern void vlynq_pci_init(void);
512 #endif
513 int __init vlynq_init(void)
514 {
515 int res = 0;
516
517 res = bus_register(&vlynq_bus_type);
518 if (res)
519 goto fail_bus;
520
521 res = platform_driver_register(&vlynq_driver);
522 if (res)
523 goto fail_platform;
524
525 #ifdef CONFIG_PCI
526 vlynq_pci_init();
527 #endif
528
529 return 0;
530
531 fail_platform:
532 bus_unregister(&vlynq_bus_type);
533 fail_bus:
534 return res;
535 }
536
537 /*
538 void __devexit vlynq_exit(void)
539 {
540 platform_driver_unregister(&vlynq_driver);
541 bus_unregister(&vlynq_bus_type);
542 }
543 */
544
545
546 subsys_initcall(vlynq_init);