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 br6104k_partitions
[] = {
40 .mask_flags
= MTD_WRITEABLE
,
43 .offset
= MTDPART_OFS_APPEND
,
47 .offset
= MTDPART_OFS_APPEND
,
48 .size
= MTDPART_SIZ_FULL
,
52 static struct platform_device
*br6104k_devices
[] __initdata
= {
53 &adm5120_flash0_device
,
56 static void __init
br6104k_setup(void) {
57 /* setup data for flash0 device */
58 adm5120_flash0_data
.nr_parts
= ARRAY_SIZE(br6104k_partitions
);
59 adm5120_flash0_data
.parts
= br6104k_partitions
;
61 /* TODO: setup mac addresses, if possible */
64 static struct adm5120_board br6104k_board __initdata
= {
65 .mach_type
= MACH_ADM5120_BR6104K
,
66 .name
= "Edimax BR-6104K",
67 .board_setup
= br6104k_setup
,
69 .num_devices
= ARRAY_SIZE(br6104k_devices
),
70 .devices
= br6104k_devices
,
73 static int __init
register_boards(void)
75 adm5120_board_register(&br6104k_board
);
79 pure_initcall(register_boards
);