4 * Mikrotik RouterBOARDs 111/112/133/133C/150/153
6 * Copyright (C) 2007 OpenWrt.org
7 * Copyright (C) 2007 Gabor Juhos <juhosg@freemail.hu>
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.
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.
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.
26 #include <linux/kernel.h>
27 #include <linux/init.h>
29 #include <asm/bootinfo.h>
32 #include <asm/mach-adm5120/adm5120_board.h>
33 #include <asm/mach-adm5120/adm5120_platform.h>
35 static struct mtd_partition rb1xx_partitions
[] = {
40 .mask_flags
= MTD_WRITEABLE
,
43 .offset
= MTDPART_OFS_APPEND
,
44 .size
= MTDPART_SIZ_FULL
,
48 static struct platform_device
*rb1xx_devices
[] __initdata
= {
49 &adm5120_flash0_device
,
53 static struct platform_device
*rb150_devices
[] __initdata
= {
54 &adm5120_flash0_device
,
55 /* TODO: nand device is not yet supported */
58 static void __init
rb1xx_setup(void)
60 /* setup data for flash0 device */
61 adm5120_flash0_data
.nr_parts
= ARRAY_SIZE(rb1xx_partitions
);
62 adm5120_flash0_data
.parts
= rb1xx_partitions
;
64 /* TODO: setup mac address */
67 static unsigned char rb11x_vlans
[6] __initdata
= {
69 0x41, 0x00, 0x00, 0x00, 0x00, 0x00
72 static unsigned char rb133_vlans
[6] __initdata
= {
74 0x41, 0x42, 0x44, 0x00, 0x00, 0x00
77 static unsigned char rb133c_vlans
[6] __initdata
= {
79 0x44, 0x00, 0x00, 0x00, 0x00, 0x00
82 static unsigned char rb15x_vlans
[6] __initdata
= {
84 0x41, 0x42, 0x44, 0x48, 0x50, 0x00
87 static struct adm5120_board rb111_board __initdata
= {
88 .mach_type
= MACH_ADM5120_RB_111
,
89 .name
= "Mikrotik RouterBOARD 111",
90 .board_setup
= rb1xx_setup
,
92 .eth_vlans
= rb11x_vlans
,
93 .num_devices
= ARRAY_SIZE(rb1xx_devices
),
94 .devices
= rb1xx_devices
,
97 static struct adm5120_board rb112_board __initdata
= {
98 .mach_type
= MACH_ADM5120_RB_112
,
99 .name
= "Mikrotik RouterBOARD 112",
100 .board_setup
= rb1xx_setup
,
102 .eth_vlans
= rb11x_vlans
,
103 .num_devices
= ARRAY_SIZE(rb1xx_devices
),
104 .devices
= rb1xx_devices
,
107 static struct adm5120_board rb133_board __initdata
= {
108 .mach_type
= MACH_ADM5120_RB_133
,
109 .name
= "Mikrotik RouterBOARD 133",
110 .board_setup
= rb1xx_setup
,
112 .eth_vlans
= rb133_vlans
,
113 .num_devices
= ARRAY_SIZE(rb1xx_devices
),
114 .devices
= rb1xx_devices
,
117 static struct adm5120_board rb133c_board __initdata
= {
118 .mach_type
= MACH_ADM5120_RB_133C
,
119 .name
= "Mikrotik RouterBOARD 133C",
120 .board_setup
= rb1xx_setup
,
122 .eth_vlans
= rb133c_vlans
,
123 .num_devices
= ARRAY_SIZE(rb1xx_devices
),
124 .devices
= rb1xx_devices
,
127 static struct adm5120_board rb150_board __initdata
= {
128 .mach_type
= MACH_ADM5120_RB_150
,
129 .name
= "Mikrotik RouterBOARD 150",
130 .board_setup
= rb1xx_setup
,
132 .eth_vlans
= rb15x_vlans
,
133 .num_devices
= ARRAY_SIZE(rb150_devices
),
134 .devices
= rb150_devices
,
137 static struct adm5120_board rb153_board __initdata
= {
138 .mach_type
= MACH_ADM5120_RB_153
,
139 .name
= "Mikrotik RouterBOARD 153",
140 .board_setup
= rb1xx_setup
,
142 .eth_vlans
= rb15x_vlans
,
143 .num_devices
= ARRAY_SIZE(rb1xx_devices
),
144 .devices
= rb1xx_devices
,
147 static int __init
register_boards(void)
149 adm5120_board_register(&rb111_board
);
150 adm5120_board_register(&rb112_board
);
151 adm5120_board_register(&rb133_board
);
152 adm5120_board_register(&rb133c_board
);
153 adm5120_board_register(&rb150_board
);
154 adm5120_board_register(&rb153_board
);
158 pure_initcall(register_boards
);