ar71xx: routerboot: add support for extended radio data
[openwrt/openwrt.git] / target / linux / ar71xx / files / arch / mips / ath79 / mach-dir-600-a1.c
index 931a7292e212fcf06b621ddac0e5952b796e2715..321fdce708e25cc36a7e5f355f24431426a2f492 100644 (file)
@@ -9,9 +9,6 @@
  *  by the Free Software Foundation.
  */
 
-#include <linux/mtd/mtd.h>
-#include <linux/mtd/partitions.h>
-
 #include <asm/mach-ath79/ath79.h>
 #include <asm/mach-ath79/ar71xx_regs.h>
 
 #define DIR_600_A1_NVRAM_ADDR  0x1f030000
 #define DIR_600_A1_NVRAM_SIZE  0x10000
 
-static struct mtd_partition dir_600_a1_partitions[] = {
-       {
-               .name           = "u-boot",
-               .offset         = 0,
-               .size           = 0x030000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "nvram",
-               .offset         = 0x030000,
-               .size           = 0x010000,
-       }, {
-               .name           = "kernel",
-               .offset         = 0x040000,
-               .size           = 0x0e0000,
-       }, {
-               .name           = "rootfs",
-               .offset         = 0x120000,
-               .size           = 0x2c0000,
-       }, {
-               .name           = "mac",
-               .offset         = 0x3e0000,
-               .size           = 0x010000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "art",
-               .offset         = 0x3f0000,
-               .size           = 0x010000,
-               .mask_flags     = MTD_WRITEABLE,
-       }, {
-               .name           = "firmware",
-               .offset         = 0x040000,
-               .size           = 0x3a0000,
-       }
-};
-
-static struct flash_platform_data dir_600_a1_flash_data = {
-       .parts          = dir_600_a1_partitions,
-       .nr_parts       = ARRAY_SIZE(dir_600_a1_partitions),
-};
-
 static struct gpio_led dir_600_a1_leds_gpio[] __initdata = {
        {
                .name           = "d-link:green:power",
@@ -152,7 +109,7 @@ static void __init dir_600_a1_setup(void)
                mac = mac_buff;
        }
 
-       ath79_register_m25p80(&dir_600_a1_flash_data);
+       ath79_register_m25p80(NULL);
 
        ath79_gpio_function_disable(AR724X_GPIO_FUNC_ETH_SWITCH_LED0_EN |
                                    AR724X_GPIO_FUNC_ETH_SWITCH_LED1_EN |
@@ -184,6 +141,14 @@ static void __init dir_600_a1_setup(void)
 MIPS_MACHINE(ATH79_MACH_DIR_600_A1, "DIR-600-A1", "D-Link DIR-600 rev. A1",
             dir_600_a1_setup);
 
+static void __init dir_615_e1_setup(void)
+{
+       dir_600_a1_setup();
+}
+
+MIPS_MACHINE(ATH79_MACH_DIR_615_E1, "DIR-615-E1", "D-Link DIR-615 rev. E1",
+            dir_615_e1_setup);
+
 static void __init dir_615_e4_setup(void)
 {
        dir_600_a1_setup();