[ar71xx] preliminary support for the Ubiquiti RouterStation Pro
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14666 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
328ed6a45e
commit
caeb4fe155
|
@ -106,6 +106,19 @@ static void __init ubnt_rs_setup(void)
|
||||||
|
|
||||||
MIPS_MACHINE(AR71XX_MACH_UBNT_RS, "Ubiquiti RouterStation", ubnt_rs_setup);
|
MIPS_MACHINE(AR71XX_MACH_UBNT_RS, "Ubiquiti RouterStation", ubnt_rs_setup);
|
||||||
|
|
||||||
|
static void __init ubnt_rspro_setup(void)
|
||||||
|
{
|
||||||
|
ar71xx_add_device_spi(NULL, ubnt_spi_info,
|
||||||
|
ARRAY_SIZE(ubnt_spi_info));
|
||||||
|
|
||||||
|
ar71xx_add_device_usb();
|
||||||
|
|
||||||
|
ar71xx_pci_init(ARRAY_SIZE(ubnt_pci_irqs), ubnt_pci_irqs);
|
||||||
|
}
|
||||||
|
|
||||||
|
MIPS_MACHINE(AR71XX_MACH_UBNT_RSPRO, "Ubiquiti RouterStation Pro",
|
||||||
|
ubnt_rspro_setup);
|
||||||
|
|
||||||
static void __init ubnt_lsx_setup(void)
|
static void __init ubnt_lsx_setup(void)
|
||||||
{
|
{
|
||||||
ar71xx_add_device_spi(NULL, ubnt_spi_info,
|
ar71xx_add_device_spi(NULL, ubnt_spi_info,
|
||||||
|
|
|
@ -59,6 +59,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-RSPRO",
|
||||||
|
.mach_type = AR71XX_MACH_UBNT_RSPRO,
|
||||||
}, {
|
}, {
|
||||||
.name = "Ubiquiti AR71xx-based board",
|
.name = "Ubiquiti AR71xx-based board",
|
||||||
.mach_type = AR71XX_MACH_UBNT_RS,
|
.mach_type = AR71XX_MACH_UBNT_RS,
|
||||||
|
|
|
@ -128,6 +128,7 @@ extern unsigned long ar71xx_mach_type;
|
||||||
#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 */
|
#define AR71XX_MACH_UBNT_LSSR71 15 /* Ubiquiti LS-SR71 */
|
||||||
#define AR71XX_MACH_TL_WR941ND 16 /* TP-LINK TL-WR941ND */
|
#define AR71XX_MACH_TL_WR941ND 16 /* TP-LINK TL-WR941ND */
|
||||||
|
#define AR71XX_MACH_UBNT_RSPRO 17 /* Ubiquiti RouterStation Pro */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PLL block
|
* PLL block
|
||||||
|
|
Loading…
Reference in New Issue