1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
3 @@ -319,6 +319,63 @@ static struct board_info __initdata boar
7 + static struct board_info __initdata board_V2500V_BB = {
9 + .expected_cpu_id = 0x6348,
18 + .use_internal_phy = 1,
21 + .force_speed_100 = 1,
22 + .force_duplex_full = 1,
27 + .name = "power:green",
30 + .default_trigger = "default-on",
33 + .name = "power:red",
58 + .code = KEY_RESTART,
59 + .debounce_interval = BCM963XX_KEYS_DEBOUNCE_INTERVAL,
67 @@ -1785,6 +1842,7 @@ static const struct board_info __initdat
74 #ifdef CONFIG_BCM63XX_CPU_6358
75 @@ -1943,6 +2001,22 @@ void __init board_prom_init(void)
76 val &= MPI_CSBASE_BASE_MASK;
78 boot_addr = (u8 *)KSEG1ADDR(val);
79 + printk(KERN_INFO PFX "Boot address 0x%08x\n",(unsigned int)boot_addr);
81 + /* BT Voyager 2500V (RTA1046VW PCB) has 8 Meg flash used as two */
82 + /* banks of 4 Meg. The byte at 0xBF800000 identifies the back to use.*/
83 + /* Loading firmware from the CFE Prompt always loads to Bank 0 */
84 + /* Do an early check of CFE and then select bank 0 */
86 + if (boot_addr == (u8 *)0xbf800000) {
88 + tmp_boot_addr = (u8 *)0xbfc00000; // Address of Bank 0
89 + memcpy(&nvram, tmp_boot_addr + BCM963XX_NVRAM_OFFSET, sizeof(nvram));
90 + if (!strcmp(nvram.name, "V2500V_BB")) {
91 + printk(KERN_INFO PFX "V2500V: nvram bank 0\n");
92 + boot_addr = (u8 *)0xbfc00000; // Bank 0
96 /* dump cfe version */
97 cfe = boot_addr + BCM963XX_CFE_VERSION_OFFSET;
98 --- a/arch/mips/bcm63xx/dev-flash.c
99 +++ b/arch/mips/bcm63xx/dev-flash.c
101 #include <linux/mtd/partitions.h>
102 #include <linux/mtd/physmap.h>
104 +#include <bcm63xx_board.h>
105 #include <bcm63xx_cpu.h>
106 #include <bcm63xx_dev_flash.h>
107 #include <bcm63xx_regs.h>
108 @@ -104,6 +105,13 @@ int __init bcm63xx_flash_register(void)
109 val = bcm_mpi_readl(MPI_CSBASE_REG(0));
110 val &= MPI_CSBASE_BASE_MASK;
112 + /* BT Voyager 2500V has 8 Meg flash in two 4 Meg banks */
113 + /* Loading from CFE always uses Bank 0 */
114 + if (!strcmp(board_get_name(), "V2500V_BB")) {
115 + pr_info("V2500V: Start in Bank 0\n");
116 + val = val + 0x400000; // Select Bank 0 start address
119 mtd_resources[0].start = val;
120 mtd_resources[0].end = 0x1FFFFFFF;