Changeset 27013
- Timestamp:
- 2011-05-26T15:52:56+02:00 (7 years ago)
- Location:
- trunk/target/linux/brcm63xx/patches-2.6.37
- Files:
-
- 6 edited
- 19 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/target/linux/brcm63xx/patches-2.6.37/180-udc_preliminary_support.patch
r26801 r27013 18 18 19 19 static struct board_info __initdata board_rta1025w_16 = { 20 @@ - 1002,6 +1005,9 @@ int __init board_register_devices(void)20 @@ -909,6 +912,9 @@ int __init board_register_devices(void) 21 21 if (board.has_dsp) 22 22 bcm63xx_dsp_register(&board.dsp); -
trunk/target/linux/brcm63xx/patches-2.6.37/200-extended-platform-devices.patch
r26801 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ - 1008,6 +1008,9 @@ int __init board_register_devices(void)3 @@ -915,6 +915,9 @@ int __init board_register_devices(void) 4 4 if (board.has_udc0) 5 5 bcm63xx_udc_register(); -
trunk/target/linux/brcm63xx/patches-2.6.37/200-spi-board-info.patch
r26801 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ - 1011,6 +1011,9 @@ int __init board_register_devices(void)3 @@ -918,6 +918,9 @@ int __init board_register_devices(void) 4 4 if (board.num_devs) 5 5 platform_add_devices(board.devs, board.num_devs); -
trunk/target/linux/brcm63xx/patches-2.6.37/220-wl_exports.patch
r27012 r27013 15 15 */ 16 16 #ifdef CONFIG_BCM63XX_CPU_6338 17 @@ - 840,6 +847,7 @@ void __init board_prom_init(void)17 @@ -747,6 +754,7 @@ void __init board_prom_init(void) 18 18 19 19 /* extract nvram data */ -
trunk/target/linux/brcm63xx/patches-2.6.37/230-6358-enet1-external-mii-clk.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ - 911,6 +911,8 @@ void __init board_prom_init(void)3 @@ -818,6 +818,8 @@ void __init board_prom_init(void) 4 4 if (BCMCPU_IS_6348()) 5 5 val |= GPIO_MODE_6348_G3_EXT_MII | -
trunk/target/linux/brcm63xx/patches-2.6.37/240-spi.patch
r27012 r27013 991 991 992 992 #define PFX "board_bcm963xx: " 993 @@ - 1024,6 +1025,9 @@ int __init board_register_devices(void)993 @@ -931,6 +932,9 @@ int __init board_register_devices(void) 994 994 if (board.num_spis) 995 995 spi_register_board_info(board.spis, board.num_spis); -
trunk/target/linux/brcm63xx/patches-2.6.37/250-boardid_fixup.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -3 5,6 +35,7@@3 @@ -32,9 +32,13 @@ 4 4 #include <bcm63xx_dev_usb_udc.h> 5 5 #include <bcm63xx_dev_spi.h> … … 9 9 #define PFX "board_bcm963xx: " 10 10 11 @@ -44,6 +45,9 @@12 #define NB4_SPI_GPIO_CLK 613 #define NB4_74HC64_GPIO(X) (NB4_74X164_GPIO_BASE + (X))14 15 11 +#define CFE_OFFSET_64K 0x10000 16 12 +#define CFE_OFFSET_128K 0x20000 … … 19 15 static unsigned int mac_addr_used; 20 16 static struct board_info board; 21 @@ - 1566,6 +1570,29 @@ static int board_get_mac_address(u8 *mac17 @@ -723,6 +727,29 @@ static int board_get_mac_address(u8 *mac 22 18 return 0; 23 19 } … … 49 45 * early init callback, read nvram data from flash and checksum it 50 46 */ 51 @@ - 1617,6 +1644,11 @@ void __init board_prom_init(void)52 /* Fixup broken nb4 board name */53 nb4_nvram_fixup();47 @@ -771,6 +798,11 @@ void __init board_prom_init(void) 48 return; 49 } 54 50 55 51 + if (strcmp(cfe_version, "unknown") != 0) { -
trunk/target/linux/brcm63xx/patches-2.6.37/300-alice_gate2_leds.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ - 588,6 +588,99 @@ static struct board_info __initdata boar3 @@ -603,6 +603,99 @@ static struct board_info __initdata boar 4 4 5 5 .has_ohci0 = 1, … … 103 103 --- a/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h 104 104 +++ b/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h 105 @@ -5 6,7 +56,7 @@ struct board_info {105 @@ -57,7 +57,7 @@ struct board_info { 106 106 struct bcm63xx_dsp_platform_data dsp; 107 107 -
trunk/target/linux/brcm63xx/patches-2.6.37/310-96348gw_a_leds.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ - 670,6 +670,19 @@ static struct board_info __initdata boar3 @@ -475,6 +475,19 @@ static struct board_info __initdata boar 4 4 }, 5 5 … … 19 19 + }, 20 20 }; 21 #endif 21 22 22 static struct board_info __initdata board_96348_D4PW = { -
trunk/target/linux/brcm63xx/patches-2.6.37/440-board-D4PW.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -4 72,6 +472,49 @@ static struct board_info __initdata boar4 5 .has_ohci0 = 1,3 @@ -489,6 +489,49 @@ static struct board_info __initdata boar 4 } 5 }, 6 6 }; 7 7 + … … 51 51 52 52 /* 53 @@ -7 36,6 +779,7 @@ static const struct board_info __initdat53 @@ -753,6 +796,7 @@ static const struct board_info __initdat 54 54 &board_DV201AMR, 55 55 &board_96348gw_a, -
trunk/target/linux/brcm63xx/patches-2.6.37/441-board-NB4.patch
r27012 r27013 11 11 #include <bcm63xx_board.h> 12 12 #include <bcm63xx_cpu.h> 13 @@ -3 5,6 +38,12 @@14 15 #define PFX "board_bcm963xx: "13 @@ -39,6 +42,12 @@ 14 #define CFE_OFFSET_64K 0x10000 15 #define CFE_OFFSET_128K 0x20000 16 16 17 17 +#define NB4_PID_OFFSET 0xff80 … … 24 24 static unsigned int mac_addr_used; 25 25 static struct board_info board; 26 @@ -7 57,6 +766,502 @@ static struct board_info __initdata boar26 @@ -774,6 +783,502 @@ static struct board_info __initdata boar 27 27 28 28 .has_ohci0 = 1, … … 527 527 528 528 /* 529 @@ - 787,9 +1292,30 @@ static const struct board_info __initdat529 @@ -804,9 +1309,30 @@ static const struct board_info __initdat 530 530 &board_96358vw2, 531 531 &board_AGPFS0, … … 558 558 * Register a sane SPROMv2 to make the on-board 559 559 * bcm4318 WLAN work 560 @@ -9 08,6 +1434,9 @@ void __init board_prom_init(void)561 return;560 @@ -953,6 +1479,9 @@ void __init board_prom_init(void) 561 boardid_fixup(boot_addr); 562 562 } 563 563 -
trunk/target/linux/brcm63xx/patches-2.6.37/442-board-96338W2_E7T.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -14 2,6 +142,38 @@ static struct board_info __initdata boar3 @@ -146,6 +146,38 @@ static struct board_info __initdata boar 4 4 }, 5 5 }, … … 40 40 41 41 /* 42 @@ -12 71,6 +1303,7 @@ static const struct board_info __initdat42 @@ -1288,6 +1320,7 @@ static const struct board_info __initdat 43 43 #ifdef CONFIG_BCM63XX_CPU_6338 44 44 &board_96338gw, -
trunk/target/linux/brcm63xx/patches-2.6.37/443-board-CPVA642.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -6 62,6 +662,98 @@ static struct board_info __initdata boar3 @@ -679,6 +679,98 @@ static struct board_info __initdata boar 4 4 }, 5 5 }; … … 100 100 .name = "AGPF-S0", 101 101 .expected_cpu_id = 0x6358, 102 @@ -13 24,6 +1416,7 @@ static const struct board_info __initdat102 @@ -1341,6 +1433,7 @@ static const struct board_info __initdat 103 103 &board_96358vw, 104 104 &board_96358vw2, -
trunk/target/linux/brcm63xx/patches-2.6.37/444-board_dsl_274xb_rev_c.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ - 891,6 +891,59 @@ static struct board_info __initdata boar3 @@ -908,6 +908,59 @@ static struct board_info __initdata boar 4 4 .has_ohci0 = 1, 5 5 }; … … 61 61 .sck = NB4_SPI_GPIO_CLK, 62 62 .mosi = NB4_SPI_GPIO_MOSI, 63 @@ -14 18,6 +1471,7 @@ static const struct board_info __initdat63 @@ -1435,6 +1488,7 @@ static const struct board_info __initdat 64 64 &board_AGPFS0, 65 65 &board_CPVA642, -
trunk/target/linux/brcm63xx/patches-2.6.37/445-board_spw500v.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -5 60,6 +560,67 @@ static struct board_info __initdata boar3 @@ -573,6 +573,67 @@ static struct board_info __initdata boar 4 4 5 5 }; … … 69 69 70 70 /* 71 @@ -14 67,6 +1528,7 @@ static const struct board_info __initdat71 @@ -1480,6 +1541,7 @@ static const struct board_info __initdat 72 72 &board_96348gw_a, 73 73 &board_rta1025w_16, -
trunk/target/linux/brcm63xx/patches-2.6.37/446-board-D4PW_correction.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -5 22,42 +522,48 @@ static struct board_info __initdata boar3 @@ -535,42 +535,48 @@ static struct board_info __initdata boar 4 4 .name = "D-4P-W", 5 5 .expected_cpu_id = 0x6348, -
trunk/target/linux/brcm63xx/patches-2.6.37/447-board_gw6200_gw6000.patch
r27012 r27013 119 119 .name = "F@ST2404", 120 120 .expected_cpu_id = 0x6348, 121 @@ -15 27,6 +1638,8 @@ static const struct board_info __initdat121 @@ -1540,6 +1651,8 @@ static const struct board_info __initdat 122 122 #ifdef CONFIG_BCM63XX_CPU_6348 123 123 &board_96348r, -
trunk/target/linux/brcm63xx/patches-2.6.37/448-board-MAGIC.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -7 94,6 +794,76 @@ static struct board_info __initdata boar3 @@ -751,6 +751,76 @@ static struct board_info __initdata boar 4 4 }, 5 5 }; … … 78 78 79 79 /* 80 @@ -1705,6 +1775,7 @@ static const struct board_info __initdat 80 @@ -1661,6 +1731,7 @@ static const struct board_info __initdat 81 &board_rta1025w_16, 81 82 &board_96348_D4PW, 82 83 &board_spw500v, 83 &board_ct536_ct5621,84 84 + &board_96348sv, 85 85 #endif -
trunk/target/linux/brcm63xx/patches-2.6.37/449-board_hw553.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -17 49,6 +1749,79 @@ static struct board_info __initdata boar3 @@ -1706,6 +1706,79 @@ static struct board_info __initdata boar 4 4 }; 5 5 #endif … … 81 81 * all boards 82 82 */ 83 @@ -17 90,6 +1863,7 @@ static const struct board_info __initdat83 @@ -1746,6 +1819,7 @@ static const struct board_info __initdat 84 84 &board_nb4_ser_r2, 85 85 &board_nb4_fxc_r1, -
trunk/target/linux/brcm63xx/patches-2.6.37/450-board_rta1320_16m.patch
r27012 r27013 45 45 46 46 /* 47 @@ -1 830,6 +1867,7 @@ static const struct board_info __initdat47 @@ -1787,6 +1824,7 @@ static const struct board_info __initdat 48 48 &board_96338gw, 49 49 &board_96338w, -
trunk/target/linux/brcm63xx/patches-2.6.37/451-board_spw303v.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -17 84,6 +1784,72 @@ static struct board_info __initdata boar3 @@ -1741,6 +1741,72 @@ static struct board_info __initdata boar 4 4 .spis = nb4_spi_devices, 5 5 .num_spis = ARRAY_SIZE(nb4_spi_devices), … … 74 74 75 75 static struct board_info __initdata board_HW553 = { 76 @@ -1 902,6 +1968,7 @@ static const struct board_info __initdat76 @@ -1858,6 +1924,7 @@ static const struct board_info __initdat 77 77 &board_nb4_fxc_r1, 78 78 &board_nb4_fxc_r2, -
trunk/target/linux/brcm63xx/patches-2.6.37/452-board_V2500V.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ - 901,6 +901,63 @@ static struct board_info __initdata boar3 @@ -858,6 +858,63 @@ static struct board_info __initdata boar 4 4 }, 5 5 }; … … 65 65 66 66 /* 67 @@ -1953,6 +2010,7 @@ static const struct board_info __initdat 67 @@ -1909,6 +1966,7 @@ static const struct board_info __initdat 68 &board_96348_D4PW, 68 69 &board_spw500v, 69 &board_ct536_ct5621,70 70 &board_96348sv, 71 71 + &board_V2500V_BB, … … 73 73 74 74 #ifdef CONFIG_BCM63XX_CPU_6358 75 @@ -2 101,6 +2159,22 @@ void __init board_prom_init(void)75 @@ -2057,6 +2115,22 @@ void __init board_prom_init(void) 76 76 val &= MPI_CSBASE_BASE_MASK; 77 77 } … … 96 96 /* dump cfe version */ 97 97 cfe = boot_addr + BCM963XX_CFE_VERSION_OFFSET; 98 @@ -2 308,6 +2382,14 @@ int __init board_register_devices(void)98 @@ -2264,6 +2338,14 @@ int __init board_register_devices(void) 99 99 val = bcm_mpi_readl(MPI_CSBASE_REG(0)); 100 100 val &= MPI_CSBASE_BASE_MASK; -
trunk/target/linux/brcm63xx/patches-2.6.37/453-board_BTV2110.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -4 44,6 +444,62 @@ static struct board_info __initdata boar3 @@ -401,6 +401,62 @@ static struct board_info __initdata boar 4 4 }, 5 5 }; … … 64 64 .name = "96348GW", 65 65 .expected_cpu_id = 0x6348, 66 @@ -2009,6 +2065,7 @@ static const struct board_info __initdat 67 &board_96348_D4PW, 66 @@ -1967,6 +2023,7 @@ static const struct board_info __initdat 68 67 &board_spw500v, 69 &board_ct536_ct5621,70 + &board_V2110,71 68 &board_96348sv, 72 69 &board_V2500V_BB, 70 + &board_V2110, 73 71 #endif 72 73 #ifdef CONFIG_BCM63XX_CPU_6358 -
trunk/target/linux/brcm63xx/patches-2.6.37/455-board_ct536_ct5621.patch
r27012 r27013 1 1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c 2 2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c 3 @@ -364,6 +364,49 @@ static struct board_info __initdata boar 4 }, 3 @@ -457,6 +457,49 @@ static struct board_info __initdata boar 5 4 }; 5 6 6 7 7 +static struct board_info __initdata board_ct536_ct5621 = { … … 51 51 .name = "96348GW", 52 52 .expected_cpu_id = 0x6348, 53 @@ - 1648,6 +1691,7 @@ static const struct board_info __initdat54 &board_ rta1025w_16,55 &board_ 96348_D4PW,56 &board_ spw500v,53 @@ -2024,6 +2067,7 @@ static const struct board_info __initdat 54 &board_96348sv, 55 &board_V2500V_BB, 56 &board_V2110, 57 57 + &board_ct536_ct5621, 58 58 #endif
Note: See TracChangeset
for help on using the changeset viewer.