diff options
Diffstat (limited to 'target/linux/ar71xx')
7 files changed, 30 insertions, 0 deletions
| diff --git a/target/linux/ar71xx/config-2.6.26 b/target/linux/ar71xx/config-2.6.26 index d6e311463..f15de1dc4 100644 --- a/target/linux/ar71xx/config-2.6.26 +++ b/target/linux/ar71xx/config-2.6.26 @@ -8,6 +8,7 @@ CONFIG_AR71XX_MACH_AP83=y  CONFIG_AR71XX_MACH_AW_NR580=y  CONFIG_AR71XX_MACH_GENERIC=y  CONFIG_AR71XX_MACH_RB_4XX=y +CONFIG_AR71XX_MACH_TEW_632BRP=y  CONFIG_AR71XX_MACH_WP543=y  CONFIG_AR71XX_WDT=y  # CONFIG_ARCH_HAS_ILOG2_U32 is not set diff --git a/target/linux/ar71xx/config-2.6.27 b/target/linux/ar71xx/config-2.6.27 index 676fc24b7..86abe4ae6 100644 --- a/target/linux/ar71xx/config-2.6.27 +++ b/target/linux/ar71xx/config-2.6.27 @@ -8,6 +8,7 @@ CONFIG_AR71XX_MACH_AP83=y  CONFIG_AR71XX_MACH_AW_NR580=y  CONFIG_AR71XX_MACH_GENERIC=y  CONFIG_AR71XX_MACH_RB_4XX=y +CONFIG_AR71XX_MACH_TEW_632BRP=y  CONFIG_AR71XX_MACH_WP543=y  CONFIG_AR71XX_WDT=y  # CONFIG_ARCH_HAS_ILOG2_U32 is not set diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/Kconfig b/target/linux/ar71xx/files/arch/mips/ar71xx/Kconfig index 3b11057a6..7e9b75c5d 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/Kconfig +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/Kconfig @@ -27,6 +27,10 @@ config AR71XX_MACH_RB_4XX  	bool "MikroTik RouterBOARD 4xx series support"  	default y +config AR71XX_MACH_TEW_632BRP +	bool "TRENDnet TEW-632BRP support" +	default y +  endmenu  endif diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/Makefile b/target/linux/ar71xx/files/arch/mips/ar71xx/Makefile index dc682c8e5..37a1ebfb4 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/Makefile +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/Makefile @@ -14,4 +14,5 @@ obj-$(CONFIG_AR71XX_MACH_AP83)		+= mach-ap83.o  obj-$(CONFIG_AR71XX_MACH_AW_NR580)	+= mach-aw-nr580.o  obj-$(CONFIG_AR71XX_MACH_GENERIC)	+= mach-generic.o  obj-$(CONFIG_AR71XX_MACH_RB_4XX)	+= mach-rb-4xx.o +obj-$(CONFIG_AR71XX_MACH_TEW_632BRP)	+= mach-tew-632brp.o  obj-$(CONFIG_AR71XX_MACH_WP543)		+= mach-wp543.o diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c new file mode 100644 index 000000000..96f856b29 --- /dev/null +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c @@ -0,0 +1,19 @@ +/* + *  TrendNET TEW-632BRP board support + * + *  Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org> + *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> + * + *  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 <asm/mips_machine.h> +#include <asm/mach-ar71xx/ar71xx.h> + +static void __init tew_632brp_setup(void) +{ +} + +MIPS_MACHINE(AR71XX_MACH_TEW_632BRP, "TRENDnet TEW-632BRP", tew_632brp_setup); diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c b/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c index c77d4186f..1b7b3a750 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c @@ -49,6 +49,9 @@ static struct board_rec boards[] __initdata = {  	}, {  		.name		= "AP83",  		.mach_type	= AR71XX_MACH_AP83, +	}, { +		.name		= "TEW-632BRP", +		.mach_type	= AR71XX_MACH_TEW_632BRP,  	}  }; diff --git a/target/linux/ar71xx/files/include/asm-mips/mach-ar71xx/ar71xx.h b/target/linux/ar71xx/files/include/asm-mips/mach-ar71xx/ar71xx.h index c2047217e..42db7cc24 100644 --- a/target/linux/ar71xx/files/include/asm-mips/mach-ar71xx/ar71xx.h +++ b/target/linux/ar71xx/files/include/asm-mips/mach-ar71xx/ar71xx.h @@ -113,6 +113,7 @@ extern unsigned long ar71xx_mach_type;  #define AR71XX_MACH_RB_493	5	/* Mikrotik RouterBOARD 493/493AH */  #define AR71XX_MACH_AW_NR580	6	/* AzureWave AW-NR580 */  #define AR71XX_MACH_AP83	7	/* Atheros AP83 */ +#define AR71XX_MACH_TEW_632BRP	8	/* TRENDnet TEW-632BRP */  /*   * PLL block | 
