2 * Planex MZK-W300NH 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 mzk_w300nh_partitions
[] = {
30 .mask_flags
= MTD_WRITEABLE
,
51 .mask_flags
= MTD_WRITEABLE
,
54 #endif /* CONFIG_MTD_PARTITIONS */
56 static struct flash_platform_data mzk_w300nh_flash_data
= {
57 #ifdef CONFIG_MTD_PARTITIONS
58 .parts
= mzk_w300nh_partitions
,
59 .nr_parts
= ARRAY_SIZE(mzk_w300nh_partitions
),
63 static struct spi_board_info mzk_w300nh_spi_info
[] = {
67 .max_speed_hz
= 25000000,
69 .platform_data
= &mzk_w300nh_flash_data
,
73 static void __init
mzk_w300nh_setup(void)
75 ar71xx_add_device_spi(NULL
, mzk_w300nh_spi_info
,
76 ARRAY_SIZE(mzk_w300nh_spi_info
));
78 ar91xx_add_device_wmac();
81 MIPS_MACHINE(AR71XX_MACH_MZK_W300NH
, "Planex MZK-W300NH", mzk_w300nh_setup
);