2be009166f207b6f3a4ce779dbd2fac37f96af3b
[openwrt.git] / target / linux / brcm63xx / patches-3.18 / 561-board_WAP-5813n.patch
1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
3 @@ -14,7 +14,9 @@
4  #include <linux/input.h>
5  #include <linux/pci_ids.h>
6  #include <linux/platform_device.h>
7 +#include <linux/platform_data/b53.h>
8  #include <linux/rtl8367.h>
9 +#include <linux/spi/spi.h>
10  #include <asm/addrspace.h>
11  #include <bcm63xx_board.h>
12  #include <bcm63xx_cpu.h>
13 @@ -1715,6 +1717,65 @@ static struct board_info __initdata boar
14         .has_ohci0 = 1,
15         .has_ehci0 = 1,
16  };
17 +
18 +static struct b53_platform_data WAP5813n_b53_pdata = {
19 +       .alias = "eth0",
20 +};
21 +
22 +static struct spi_board_info WAP5813n_spi_devices[] = {
23 +       {
24 +               .modalias = "b53-switch",
25 +               .max_speed_hz = 781000,
26 +               .bus_num = 0,
27 +               .chip_select = 0,
28 +               .platform_data = &WAP5813n_b53_pdata,
29 +       }
30 +};
31 +
32 +static struct sprom_fixup __initdata wap5813n_fixups[] = {
33 +       { .offset = 97, .value = 0xfeed },
34 +       { .offset = 98, .value = 0x15d1 },
35 +       { .offset = 99, .value = 0xfb0d },
36 +       { .offset = 113, .value = 0xfef7 },
37 +       { .offset = 114, .value = 0x15f7 },
38 +       { .offset = 115, .value = 0xfb1a },
39 +};
40 +
41 +static struct board_info __initdata board_WAP5813n = {
42 +       .name                           = "96369R-1231N",
43 +       .expected_cpu_id                = 0x6368,
44 +
45 +       .has_uart0                      = 1,
46 +       .has_pci                        = 1,
47 +       .use_fallback_sprom             = 1,
48 +       .has_ohci0                      = 1,
49 +       .has_ehci0                      = 1,
50 +
51 +       .has_enetsw                     = 1,
52 +       .enetsw = {
53 +               .used_ports = {
54 +                       [4] = {
55 +                               .used = 1,
56 +                               .phy_id = 0xff,
57 +                               .bypass_link = 1,
58 +                               .force_speed = 1000,
59 +                               .force_duplex_full = 1,
60 +                               .name = "RGMII",
61 +                       },
62 +               },
63 +       },
64 +
65 +       .fallback_sprom = {
66 +               .type                           = SPROM_BCM43222,
67 +               .pci_bus                        = 0,
68 +               .pci_dev                        = 1,
69 +               .board_fixups                   = wap5813n_fixups,
70 +               .num_board_fixups               = ARRAY_SIZE(wap5813n_fixups),
71 +       },
72 +
73 +       .spis = WAP5813n_spi_devices,
74 +       .num_spis = ARRAY_SIZE(WAP5813n_spi_devices),
75 +};
76  #endif /* CONFIG_BCM63XX_CPU_6368 */
77  
78  /*
79 @@ -1974,6 +2035,7 @@ static const struct board_info __initcon
80  #ifdef CONFIG_BCM63XX_CPU_6368
81         &board_96368mvwg,
82         &board_96368mvngr,
83 +       &board_WAP5813n,
84  #endif
85  #ifdef CONFIG_BCM63XX_CPU_63268
86         &board_963268bu_p300,
87 @@ -2066,6 +2128,7 @@ static struct of_device_id const bcm963x
88  #ifdef CONFIG_BCM63XX_CPU_6368
89         { .compatible = "brcm,bcm96368mvngr", .data = &board_96368mvngr, },
90         { .compatible = "brcm,bcm96368mvwg", .data = &board_96368mvwg, },
91 +       { .compatible = "comtrend,wap-5813n", .data = &board_WAP5813n, },
92  #endif
93  #ifdef CONFIG_BCM63XX_CPU_63268
94         { .compatible = "brcm,bcm963268bu_p300", .data = &board_963268bu_p300, },