2 * NETGEAR WNR2000 board support
4 * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published
9 * by the Free Software Foundation.
12 #include <linux/platform_device.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/spi/spi.h>
16 #include <linux/spi/flash.h>
18 #include <asm/mips_machine.h>
20 #include <asm/mach-ar71xx/ar71xx.h>
24 #ifdef CONFIG_MTD_PARTITIONS
25 static struct mtd_partition wnr2000_partitions
[] = {
30 .mask_flags
= MTD_WRITEABLE
,
40 .name
= "user-config",
48 .name
= "language_table",
52 .name
= "rootfs_checksum",
59 .mask_flags
= MTD_WRITEABLE
,
62 #endif /* CONFIG_MTD_PARTITIONS */
64 static struct flash_platform_data wnr2000_flash_data
= {
65 #ifdef CONFIG_MTD_PARTITIONS
66 .parts
= wnr2000_partitions
,
67 .nr_parts
= ARRAY_SIZE(wnr2000_partitions
),
71 static struct spi_board_info wnr2000_spi_info
[] = {
75 .max_speed_hz
= 25000000,
77 .platform_data
= &wnr2000_flash_data
,
81 static void __init
wnr2000_setup(void)
83 ar71xx_add_device_spi(NULL
, wnr2000_spi_info
,
84 ARRAY_SIZE(wnr2000_spi_info
));
86 ar91xx_add_device_wmac();
89 MIPS_MACHINE(AR71XX_MACH_WNR2000
, "NETGEAR WNR2000", wnr2000_setup
);