|
|
@@ -0,0 +1,131 @@
|
|
|
+/*
|
|
|
+ * Netgear WNDR3700 board support
|
|
|
+ *
|
|
|
+ * Copyright (C) 2009 Marco Porsch
|
|
|
+ * Copyright (C) 2009 Gabor Juhos <[email protected]>
|
|
|
+ *
|
|
|
+ * This program is free software; you can redistribute it and/or modify it
|
|
|
+ * under the terms of the GNU General Public License version 2 as published
|
|
|
+ * by the Free Software Foundation.
|
|
|
+ */
|
|
|
+
|
|
|
+#include <linux/platform_device.h>
|
|
|
+#include <linux/mtd/mtd.h>
|
|
|
+#include <linux/mtd/partitions.h>
|
|
|
+#include <linux/spi/spi.h>
|
|
|
+#include <linux/spi/flash.h>
|
|
|
+
|
|
|
+#include <asm/mips_machine.h>
|
|
|
+#include <asm/mach-ar71xx/ar71xx.h>
|
|
|
+#include <asm/mach-ar71xx/pci.h>
|
|
|
+
|
|
|
+#include "devices.h"
|
|
|
+
|
|
|
+#ifdef CONFIG_MTD_PARTITIONS
|
|
|
+static struct mtd_partition wndr3700_partitions[] = {
|
|
|
+ {
|
|
|
+ .name = "uboot",
|
|
|
+ .offset = 0,
|
|
|
+ .size = 0x050000,
|
|
|
+ .mask_flags = MTD_WRITEABLE,
|
|
|
+ } , {
|
|
|
+ .name = "env",
|
|
|
+ .offset = 0x050000,
|
|
|
+ .size = 0x020000,
|
|
|
+ .mask_flags = MTD_WRITEABLE,
|
|
|
+ } , {
|
|
|
+ .name = "rootfs",
|
|
|
+ .offset = 0x070000,
|
|
|
+ .size = 0x720000,
|
|
|
+ } , {
|
|
|
+ .name = "config",
|
|
|
+ .offset = 0x790000,
|
|
|
+ .size = 0x010000,
|
|
|
+ .mask_flags = MTD_WRITEABLE,
|
|
|
+ } , {
|
|
|
+ .name = "config_bak",
|
|
|
+ .offset = 0x7a0000,
|
|
|
+ .size = 0x010000,
|
|
|
+ .mask_flags = MTD_WRITEABLE,
|
|
|
+ } , {
|
|
|
+ .name = "pot",
|
|
|
+ .offset = 0x7b0000,
|
|
|
+ .size = 0x010000,
|
|
|
+ .mask_flags = MTD_WRITEABLE,
|
|
|
+ } , {
|
|
|
+ .name = "traffic_meter",
|
|
|
+ .offset = 0x7c0000,
|
|
|
+ .size = 0x010000,
|
|
|
+ .mask_flags = MTD_WRITEABLE,
|
|
|
+ } , {
|
|
|
+ .name = "language",
|
|
|
+ .offset = 0x7d0000,
|
|
|
+ .size = 0x020000,
|
|
|
+ .mask_flags = MTD_WRITEABLE,
|
|
|
+ } , {
|
|
|
+ .name = "caldata",
|
|
|
+ .offset = 0x7f0000,
|
|
|
+ .size = 0x010000,
|
|
|
+ .mask_flags = MTD_WRITEABLE,
|
|
|
+ }
|
|
|
+};
|
|
|
+#endif /* CONFIG_MTD_PARTITIONS */
|
|
|
+
|
|
|
+static struct flash_platform_data wndr3700_flash_data = {
|
|
|
+#ifdef CONFIG_MTD_PARTITIONS
|
|
|
+ .parts = wndr3700_partitions,
|
|
|
+ .nr_parts = ARRAY_SIZE(wndr3700_partitions),
|
|
|
+#endif
|
|
|
+};
|
|
|
+
|
|
|
+static struct ar71xx_pci_irq wndr3700_pci_irqs[] __initdata = {
|
|
|
+ {
|
|
|
+ .slot = 0,
|
|
|
+ .pin = 1,
|
|
|
+ .irq = AR71XX_PCI_IRQ_DEV0,
|
|
|
+ }, {
|
|
|
+ .slot = 1,
|
|
|
+ .pin = 1,
|
|
|
+ .irq = AR71XX_PCI_IRQ_DEV1,
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+static struct spi_board_info wndr3700_spi_info[] = {
|
|
|
+ {
|
|
|
+ .bus_num = 0,
|
|
|
+ .chip_select = 0,
|
|
|
+ .max_speed_hz = 25000000,
|
|
|
+ .modalias = "m25p80",
|
|
|
+ .platform_data = &wndr3700_flash_data,
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+static void __init wndr3700_setup(void)
|
|
|
+{
|
|
|
+ u8 *mac = (u8 *) KSEG1ADDR(0x1fff0000);
|
|
|
+
|
|
|
+ ar71xx_set_mac_base(mac);
|
|
|
+ ar71xx_add_device_mdio(0x0);
|
|
|
+
|
|
|
+ ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
|
|
|
+ ar71xx_eth0_data.phy_mask = 0xf;
|
|
|
+ ar71xx_eth0_data.speed = SPEED_1000;
|
|
|
+ ar71xx_eth0_data.duplex = DUPLEX_FULL;
|
|
|
+
|
|
|
+ ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
|
|
|
+ ar71xx_eth1_data.phy_mask = 0x10;
|
|
|
+
|
|
|
+ ar71xx_add_device_eth(0);
|
|
|
+ ar71xx_add_device_eth(1);
|
|
|
+
|
|
|
+ ar71xx_add_device_usb();
|
|
|
+
|
|
|
+ ar71xx_pci_init(ARRAY_SIZE(wndr3700_pci_irqs), wndr3700_pci_irqs);
|
|
|
+
|
|
|
+ ar71xx_add_device_spi(NULL, wndr3700_spi_info,
|
|
|
+ ARRAY_SIZE(wndr3700_spi_info));
|
|
|
+
|
|
|
+ /* TODO: LEDs, buttons support */
|
|
|
+}
|
|
|
+
|
|
|
+MIPS_MACHINE(AR71XX_MACH_WNDR3700, "NETGEAR WNDR3700", wndr3700_setup);
|