ar71xx: preliminary Ubiquiti Bullet M support
authormatteo <matteo@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 15 Sep 2009 09:16:21 +0000 (09:16 +0000)
committermatteo <matteo@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 15 Sep 2009 09:16:21 +0000 (09:16 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17586 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c
target/linux/ar71xx/files/arch/mips/ar71xx/prom.c
target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/ar71xx.h

index 70d4cba..e5242eb 100644 (file)
 #define UBNT_LS_SR71_GPIO_LED_D27      6
 #define UBNT_LS_SR71_GPIO_LED_D28      7
 
+#define UBNT_BULLET_M_GPIO_LED_L1      0
+#define UBNT_BULLET_M_GPIO_LED_L2      1
+#define UBNT_BULLET_M_GPIO_LED_L3      11
+#define UBNT_BULLET_M_GPIO_LED_L4      7
+
 #define UBNT_BUTTONS_POLL_INTERVAL     20
 
 static struct spi_board_info ubnt_spi_info[] = {
@@ -99,6 +104,26 @@ static struct gpio_led ubnt_ls_sr71_leds_gpio[] __initdata = {
        }
 };
 
+static struct gpio_led ubnt_bullet_m_leds_gpio[] __initdata = {
+       {
+               .name           = "ubnt:red:link1",
+               .gpio           = UBNT_BULLET_M_GPIO_LED_L1,
+               .active_low     = 0,
+       }, {
+               .name           = "ubnt:orange:link2",
+               .gpio           = UBNT_BULLET_M_GPIO_LED_L2,
+               .active_low     = 0,
+       }, {
+               .name           = "ubnt:green:link3",
+               .gpio           = UBNT_BULLET_M_GPIO_LED_L3,
+               .active_low     = 0,
+       }, {
+               .name           = "ubnt:green:link4",
+               .gpio           = UBNT_BULLET_M_GPIO_LED_L4,
+               .active_low     = 0,
+       }
+};
+
 static struct gpio_button ubnt_gpio_buttons[] __initdata = {
        {
                .desc           = "sw4",
@@ -206,3 +231,24 @@ static void __init ubnt_lssr71_setup(void)
 }
 
 MIPS_MACHINE(AR71XX_MACH_UBNT_LSSR71, "Ubiquiti LS-SR71", ubnt_lssr71_setup);
+
+static void __init ubnt_bullet_m_setup(void)
+{
+       ar71xx_add_device_spi(NULL, ubnt_spi_info,
+                                   ARRAY_SIZE(ubnt_spi_info));
+
+       ar71xx_add_device_mdio(~0);
+
+       ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
+       ar71xx_eth0_data.phy_mask = 0;
+
+       ar71xx_eth0_data.speed = SPEED_100;
+       ar71xx_eth0_data.duplex = DUPLEX_FULL;
+
+       ar71xx_add_device_eth(0);
+
+       ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(ubnt_bullet_m_leds_gpio),
+                                       ubnt_bullet_m_leds_gpio);
+}
+
+MIPS_MACHINE(AR71XX_MACH_UBNT_BULLET_M, "Ubiquiti Bullet M", ubnt_bullet_m_setup);
index 23493cd..ed6f4e9 100644 (file)
@@ -83,6 +83,9 @@ static struct board_rec boards[] __initdata = {
                .name           = "UBNT-LSX",
                .mach_type      = AR71XX_MACH_UBNT_LSX,
        }, {
+               .name           = "UBNT-BM",
+               .mach_type      = AR71XX_MACH_UBNT_BULLET_M,
+       }, {
                .name           = "WNR2000",
                .mach_type      = AR71XX_MACH_WNR2000,
        }, {
index 216b2ce..4d2f7f2 100644 (file)
@@ -140,6 +140,7 @@ enum ar71xx_mach_type {
        AR71XX_MACH_UBNT_LSX,   /* Ubiquiti LSX */
        AR71XX_MACH_UBNT_RS,    /* Ubiquiti RouterStation */
        AR71XX_MACH_UBNT_RSPRO, /* Ubiquiti RouterStation Pro */
+       AR71XX_MACH_UBNT_BULLET_M, /* Ubiquiti Bullet M */
        AR71XX_MACH_WNR2000,    /* NETGEAR WNR2000 */
        AR71XX_MACH_WP543,      /* Compex WP543 */
        AR71XX_MACH_WRT160NL,   /* Linksys WRT160NL */