OpenWrt – Blame information for rev 2
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | /* |
2 | * Cellvision/SparkLAN NFS-101U/WU support |
||
3 | * |
||
4 | * Copyright (C) 2007-2009 Gabor Juhos <juhosg@openwrt.org> |
||
5 | * |
||
6 | * This program is free software; you can redistribute it and/or modify it |
||
7 | * under the terms of the GNU General Public License version 2 as published |
||
8 | * by the Free Software Foundation. |
||
9 | * |
||
10 | */ |
||
11 | |||
12 | #include "cellvision.h" |
||
13 | |||
14 | static struct adm5120_pci_irq nfs101_pci_irqs[] __initdata = { |
||
15 | /* miniPCI slot */ |
||
16 | PCIIRQ(2, 0, 1, ADM5120_IRQ_PCI0), |
||
17 | |||
18 | /* ALi USB controller */ |
||
19 | PCIIRQ(3, 0, 2, ADM5120_IRQ_PCI2), |
||
20 | PCIIRQ(3, 3, 1, ADM5120_IRQ_PCI1), |
||
21 | |||
22 | /* NEC USB controller */ |
||
23 | PCIIRQ(3, 0, 1, ADM5120_IRQ_PCI1), |
||
24 | PCIIRQ(3, 1, 2, ADM5120_IRQ_PCI2), |
||
25 | PCIIRQ(3, 2, 3, ADM5120_IRQ_PCI2), |
||
26 | }; |
||
27 | |||
28 | static u8 nfs101_vlans[6] __initdata = { |
||
29 | /* FIXME: not tested */ |
||
30 | 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00 |
||
31 | }; |
||
32 | |||
33 | static void __init nfs101_setup(void) |
||
34 | { |
||
35 | cas6xx_flash_setup(); |
||
36 | cellvision_mac_setup(); |
||
37 | |||
38 | adm5120_add_device_uart(0); |
||
39 | adm5120_add_device_uart(1); |
||
40 | adm5120_add_device_switch(1, nfs101_vlans); |
||
41 | |||
42 | adm5120_pci_set_irq_map(ARRAY_SIZE(nfs101_pci_irqs), |
||
43 | nfs101_pci_irqs); |
||
44 | } |
||
45 | |||
46 | MIPS_MACHINE(MACH_ADM5120_NFS101U, "NFS-101U", "Cellvision NFS-101U/101WU", |
||
47 | nfs101_setup); |