[adm5120] add support for board specific vlan matrix, should fix #2132
[openwrt/svn-archive/archive.git] / target / linux / adm5120-2.6 / files / arch / mips / adm5120 / boards / mikrotik.c
1 /*
2 * $Id$
3 *
4 * Mikrotik RouterBOARDs 111/112/133/133C/153
5 *
6 * Copyright (C) 2007 OpenWrt.org
7 * Copyright (C) 2007 Gabor Juhos <juhosg@freemail.hu>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the
21 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 * Boston, MA 02110-1301, USA.
23 *
24 */
25
26 #include <linux/kernel.h>
27 #include <linux/init.h>
28
29 #include <asm/bootinfo.h>
30 #include <asm/gpio.h>
31
32 #include <asm/mach-adm5120/adm5120_board.h>
33 #include <asm/mach-adm5120/adm5120_platform.h>
34
35 static struct mtd_partition rb1xx_partitions[] = {
36 {
37 .name = "booter",
38 .offset = 0,
39 .size = 64*1024,
40 .mask_flags = MTD_WRITEABLE,
41 } , {
42 .name = "firmware",
43 .offset = MTDPART_OFS_APPEND,
44 .size = MTDPART_SIZ_FULL,
45 }
46 };
47
48 static struct platform_device *rb1xx_devices[] __initdata = {
49 &adm5120_flash0_device,
50 &adm5120_nand_device,
51 };
52
53 static void __init rb1xx_setup(void)
54 {
55 /* setup data for flash0 device */
56 adm5120_flash0_data.nr_parts = ARRAY_SIZE(rb1xx_partitions);
57 adm5120_flash0_data.parts = rb1xx_partitions;
58
59 /* TODO: setup mac address */
60 }
61
62 static unsigned char rb11x_vlans[6] __initdata = {
63 /* FIXME: untested */
64 0x41, 0x00, 0x00, 0x00, 0x00, 0x00
65 };
66
67 static unsigned char rb133_vlans[6] __initdata = {
68 /* FIXME: untested */
69 0x41, 0x42, 0x44, 0x00, 0x00, 0x00
70 };
71
72 static unsigned char rb133c_vlans[6] __initdata = {
73 /* FIXME: untested */
74 0x44, 0x00, 0x00, 0x00, 0x00, 0x00
75 };
76
77 static unsigned char rb153_vlans[6] __initdata = {
78 /* FIXME: untested */
79 0x41, 0x42, 0x44, 0x48, 0x50, 0x00
80 };
81
82 static struct adm5120_board rb111_board __initdata = {
83 .mach_type = MACH_ADM5120_RB_111,
84 .name = "Mikrotik RouterBOARD 111",
85 .board_setup = rb1xx_setup,
86 .eth_num_ports = 1,
87 .eth_vlans = rb11x_vlans,
88 .num_devices = ARRAY_SIZE(rb1xx_devices),
89 .devices = rb1xx_devices,
90 };
91
92 static struct adm5120_board rb112_board __initdata = {
93 .mach_type = MACH_ADM5120_RB_112,
94 .name = "Mikrotik RouterBOARD 112",
95 .board_setup = rb1xx_setup,
96 .eth_num_ports = 1,
97 .eth_vlans = rb11x_vlans,
98 .num_devices = ARRAY_SIZE(rb1xx_devices),
99 .devices = rb1xx_devices,
100 };
101
102 static struct adm5120_board rb133_board __initdata = {
103 .mach_type = MACH_ADM5120_RB_133,
104 .name = "Mikrotik RouterBOARD 133",
105 .board_setup = rb1xx_setup,
106 .eth_num_ports = 3,
107 .eth_vlans = rb133_vlans,
108 .num_devices = ARRAY_SIZE(rb1xx_devices),
109 .devices = rb1xx_devices,
110 };
111
112 static struct adm5120_board rb133c_board __initdata = {
113 .mach_type = MACH_ADM5120_RB_133C,
114 .name = "Mikrotik RouterBOARD 133C",
115 .board_setup = rb1xx_setup,
116 .eth_num_ports = 1,
117 .eth_vlans = rb133c_vlans,
118 .num_devices = ARRAY_SIZE(rb1xx_devices),
119 .devices = rb1xx_devices,
120 };
121
122 static struct adm5120_board rb153_board __initdata = {
123 .mach_type = MACH_ADM5120_RB_153,
124 .name = "Mikrotik RouterBOARD 153",
125 .board_setup = rb1xx_setup,
126 .eth_num_ports = 5,
127 .eth_vlans = rb153_vlans,
128 .num_devices = ARRAY_SIZE(rb1xx_devices),
129 .devices = rb1xx_devices,
130 };
131
132 static int __init register_boards(void)
133 {
134 adm5120_board_register(&rb111_board);
135 adm5120_board_register(&rb112_board);
136 adm5120_board_register(&rb133_board);
137 adm5120_board_register(&rb133c_board);
138 adm5120_board_register(&rb153_board);
139 return 0;
140 }
141
142 pure_initcall(register_boards);