2 * Linksys WRT160NL board support
4 * Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
11 #include <linux/platform_device.h>
12 #include <linux/mtd/mtd.h>
13 #include <linux/mtd/partitions.h>
14 #include <linux/spi/spi.h>
15 #include <linux/spi/flash.h>
17 #include <asm/mips_machine.h>
18 #include <asm/mach-ar71xx/ar71xx.h>
22 #ifdef CONFIG_MTD_PARTITIONS
23 static struct mtd_partition wrt160nl_partitions
[] = {
28 .mask_flags
= MTD_WRITEABLE
,
41 .mask_flags
= MTD_WRITEABLE
,
46 .mask_flags
= MTD_WRITEABLE
,
53 #endif /* CONFIG_MTD_PARTITIONS */
55 static struct flash_platform_data wrt160nl_flash_data
= {
56 #ifdef CONFIG_MTD_PARTITIONS
57 .parts
= wrt160nl_partitions
,
58 .nr_parts
= ARRAY_SIZE(wrt160nl_partitions
),
62 static struct spi_board_info wrt160nl_spi_info
[] = {
66 .max_speed_hz
= 25000000,
68 .platform_data
= &wrt160nl_flash_data
,
72 static void __init
wrt160nl_setup(void)
74 ar71xx_add_device_mdio(0x0);
76 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
77 ar71xx_eth0_data
.phy_mask
= 0xf;
78 ar71xx_eth0_data
.speed
= SPEED_100
;
79 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
81 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
82 ar71xx_eth1_data
.phy_mask
= 0x10;
84 ar71xx_add_device_eth(0);
85 ar71xx_add_device_eth(1);
87 ar71xx_add_device_spi(NULL
, wrt160nl_spi_info
,
88 ARRAY_SIZE(wrt160nl_spi_info
));
90 ar71xx_add_device_usb();
91 ar91xx_add_device_wmac();
93 /* TODO: LEDs, buttons */
96 MIPS_MACHINE(AR71XX_MACH_WRT160NL
, "Linksys WRT160NL", wrt160nl_setup
);