diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-06-30 13:45:49 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-06-30 13:45:49 +0000 |
commit | 5a7c5b2d363ab8bef8b95d380dec7659c32f2523 (patch) | |
tree | cfd29298c16a34a2d7edb9a7d9f096c3ae40e374 /target/linux/brcm63xx/files/arch/mips/bcm63xx/boards | |
parent | a9ffe24e58f7b65a2b98eca16fb22bc068c87bd9 (diff) | |
download | upstream-5a7c5b2d363ab8bef8b95d380dec7659c32f2523.tar.gz upstream-5a7c5b2d363ab8bef8b95d380dec7659c32f2523.tar.bz2 upstream-5a7c5b2d363ab8bef8b95d380dec7659c32f2523.zip |
a couple of more fixes to get 6345 booting up to the console handover
SVN-Revision: 16636
Diffstat (limited to 'target/linux/brcm63xx/files/arch/mips/bcm63xx/boards')
-rw-r--r-- | target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c b/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c index e27264dfdf..18389983a7 100644 --- a/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c +++ b/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c @@ -68,6 +68,16 @@ static struct board_info __initdata board_96338w = { #endif /* + * known 6345 boards + */ +#ifdef CONFIG_BCM63XX_CPU_6345 +static struct board_info __initdata board_96345gw2 = { + .name = "96345GW2", + .expected_cpu_id = 0x6345, +}; +#endif + +/* * known 6348 boards */ #ifdef CONFIG_BCM63XX_CPU_6348 @@ -300,6 +310,9 @@ static const struct board_info __initdata *bcm963xx_boards[] = { &board_96338gw, &board_96338w, #endif +#ifdef CONFIG_BCM63XX_CPU_6345 + &board_96345gw2, +#endif #ifdef CONFIG_BCM63XX_CPU_6348 &board_96348r, &board_96348gw, |