2 * TrendNET TEW-632BRP board support
4 * Copyright (C) 2008 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>
21 #include <asm/mach-ar71xx/platform.h>
23 #ifdef CONFIG_MTD_PARTITIONS
24 static struct mtd_partition tew_632brp_partitions
[] = {
29 .mask_flags
= MTD_WRITEABLE
,
50 .mask_flags
= MTD_WRITEABLE
,
53 #endif /* CONFIG_MTD_PARTITIONS */
55 static struct flash_platform_data tew_632brp_flash_data
= {
56 #ifdef CONFIG_MTD_PARTITIONS
57 .parts
= tew_632brp_partitions
,
58 .nr_parts
= ARRAY_SIZE(tew_632brp_partitions
),
62 static struct spi_board_info tew_632brp_spi_info
[] = {
66 .max_speed_hz
= 25000000,
68 .platform_data
= &tew_632brp_flash_data
,
72 static void __init
tew_632brp_setup(void)
74 ar71xx_add_device_mdio(0xfffffffe);
76 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
77 ar71xx_eth0_data
.phy_mask
= 0x0;
78 ar71xx_eth0_data
.speed
= SPEED_100
;
79 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
81 ar71xx_add_device_eth(0);
83 ar71xx_add_device_spi(NULL
, tew_632brp_spi_info
,
84 ARRAY_SIZE(tew_632brp_spi_info
));
87 MIPS_MACHINE(AR71XX_MACH_TEW_632BRP
, "TRENDnet TEW-632BRP", tew_632brp_setup
);