mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 11:12:47 +02:00
[ar71xx] add preliminary support for the Ubiquiti LS-SR71 board (thanks to Xianghua Xiao for the initial patch, and for testing)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14488 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d5dae7618f
commit
ca18bd2e66
@ -126,6 +126,7 @@ extern unsigned long ar71xx_mach_type;
|
|||||||
#define AR71XX_MACH_PB42 12 /* Atheros PB42 */
|
#define AR71XX_MACH_PB42 12 /* Atheros PB42 */
|
||||||
#define AR71XX_MACH_MZK_W300NH 13 /* Planex MZK-W300NH */
|
#define AR71XX_MACH_MZK_W300NH 13 /* Planex MZK-W300NH */
|
||||||
#define AR71XX_MACH_MZK_W04NU 14 /* Planex MZK-W04NU */
|
#define AR71XX_MACH_MZK_W04NU 14 /* Planex MZK-W04NU */
|
||||||
|
#define AR71XX_MACH_UBNT_LSSR71 15 /* Ubiquiti LS-SR71 */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PLL block
|
* PLL block
|
||||||
|
@ -34,7 +34,7 @@ static struct spi_board_info ubnt_spi_info[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct ar71xx_pci_irq ubnt_rs_pci_irqs[] __initdata = {
|
static struct ar71xx_pci_irq ubnt_pci_irqs[] __initdata = {
|
||||||
{
|
{
|
||||||
.slot = 0,
|
.slot = 0,
|
||||||
.pin = 1,
|
.pin = 1,
|
||||||
@ -93,7 +93,7 @@ static void __init ubnt_rs_setup(void)
|
|||||||
|
|
||||||
ar71xx_add_device_usb();
|
ar71xx_add_device_usb();
|
||||||
|
|
||||||
ar71xx_pci_init(ARRAY_SIZE(ubnt_rs_pci_irqs), ubnt_rs_pci_irqs);
|
ar71xx_pci_init(ARRAY_SIZE(ubnt_pci_irqs), ubnt_pci_irqs);
|
||||||
|
|
||||||
ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(ubnt_rs_leds_gpio),
|
ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(ubnt_rs_leds_gpio),
|
||||||
ubnt_rs_leds_gpio);
|
ubnt_rs_leds_gpio);
|
||||||
@ -109,6 +109,26 @@ static void __init ubnt_lsx_setup(void)
|
|||||||
{
|
{
|
||||||
ar71xx_add_device_spi(NULL, ubnt_spi_info,
|
ar71xx_add_device_spi(NULL, ubnt_spi_info,
|
||||||
ARRAY_SIZE(ubnt_spi_info));
|
ARRAY_SIZE(ubnt_spi_info));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
MIPS_MACHINE(AR71XX_MACH_UBNT_LSX, "Ubiquiti LSX", ubnt_lsx_setup);
|
MIPS_MACHINE(AR71XX_MACH_UBNT_LSX, "Ubiquiti LSX", ubnt_lsx_setup);
|
||||||
|
|
||||||
|
#define UBNT_LSSR71_PHY_MASK (1 << 1)
|
||||||
|
|
||||||
|
static void __init ubnt_lssr71_setup(void)
|
||||||
|
{
|
||||||
|
ar71xx_add_device_spi(NULL, ubnt_spi_info,
|
||||||
|
ARRAY_SIZE(ubnt_spi_info));
|
||||||
|
|
||||||
|
ar71xx_add_device_mdio(~UBNT_LSSR71_PHY_MASK);
|
||||||
|
|
||||||
|
ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
|
||||||
|
ar71xx_eth0_data.phy_mask = UBNT_LSSR71_PHY_MASK;
|
||||||
|
|
||||||
|
ar71xx_add_device_eth(0);
|
||||||
|
|
||||||
|
ar71xx_pci_init(ARRAY_SIZE(ubnt_pci_irqs), ubnt_pci_irqs);
|
||||||
|
}
|
||||||
|
|
||||||
|
MIPS_MACHINE(AR71XX_MACH_UBNT_LSSR71, "Ubiquiti LS-SR71", ubnt_lssr71_setup);
|
||||||
|
@ -55,6 +55,9 @@ static struct board_rec boards[] __initdata = {
|
|||||||
}, {
|
}, {
|
||||||
.name = "UBNT-RS",
|
.name = "UBNT-RS",
|
||||||
.mach_type = AR71XX_MACH_UBNT_RS,
|
.mach_type = AR71XX_MACH_UBNT_RS,
|
||||||
|
}, {
|
||||||
|
.name = "UBNT-LS-SR71",
|
||||||
|
.mach_type = AR71XX_MACH_UBNT_LSSR71,
|
||||||
}, {
|
}, {
|
||||||
.name = "UBNT-LSX",
|
.name = "UBNT-LSX",
|
||||||
.mach_type = AR71XX_MACH_UBNT_LSX,
|
.mach_type = AR71XX_MACH_UBNT_LSX,
|
||||||
|
@ -126,6 +126,7 @@ extern unsigned long ar71xx_mach_type;
|
|||||||
#define AR71XX_MACH_PB42 12 /* Atheros PB42 */
|
#define AR71XX_MACH_PB42 12 /* Atheros PB42 */
|
||||||
#define AR71XX_MACH_MZK_W300NH 13 /* Planex MZK-W300NH */
|
#define AR71XX_MACH_MZK_W300NH 13 /* Planex MZK-W300NH */
|
||||||
#define AR71XX_MACH_MZK_W04NU 14 /* Planex MZK-W04NU */
|
#define AR71XX_MACH_MZK_W04NU 14 /* Planex MZK-W04NU */
|
||||||
|
#define AR71XX_MACH_UBNT_LSSR71 15 /* Ubiquiti LS-SR71 */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PLL block
|
* PLL block
|
||||||
|
Loading…
Reference in New Issue
Block a user