dnsmasq: abort when dnssec requested but not available
[openwrt/staging/chunkeey.git] / target / linux / bcm63xx / patches-5.4 / 526-board_nb6.patch
1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
3 @@ -964,6 +964,32 @@ static struct board_info __initdata boar
4 };
5 #endif /* CONFIG_BCM63XX_CPU_6358 */
6
7 +#ifdef CONFIG_BCM63XX_CPU_6362
8 +static struct board_info __initdata board_nb6 = {
9 + .name = "NB6",
10 + .expected_cpu_id = 0x6362,
11 +
12 + .has_ohci0 = 1,
13 + .has_ehci0 = 1,
14 + .num_usbh_ports = 2,
15 +
16 + .has_enetsw = 1,
17 +
18 + .enetsw = {
19 + .used_ports = {
20 + [4] = {
21 + .used = 1,
22 + .phy_id = 0xff,
23 + .bypass_link = 1,
24 + .force_speed = 1000,
25 + .force_duplex_full = 1,
26 + .name = "RGMII",
27 + },
28 + },
29 + },
30 +};
31 +#endif /* CONFIG_BCM63XX_CPU_6362 */
32 +
33 /*
34 * known 6368 boards
35 */
36 @@ -1111,6 +1137,9 @@ static const struct board_info __initcon
37 &board_spw303v,
38 &board_DVAG3810BN,
39 #endif /* CONFIG_BCM63XX_CPU_6358 */
40 +#ifdef CONFIG_BCM63XX_CPU_6362
41 + &board_nb6,
42 +#endif /* CONFIG_BCM63XX_CPU_6362 */
43 #ifdef CONFIG_BCM63XX_CPU_6368
44 &board_96368mvwg,
45 &board_96368mvngr,
46 @@ -1179,6 +1208,9 @@ static struct of_device_id const bcm963x
47 { .compatible = "t-com,speedport-w-303v", .data = &board_spw303v, },
48 { .compatible = "telsey,cpva642", .data = &board_CPVA642, },
49 #endif
50 +#ifdef CONFIG_BCM63XX_CPU_6362
51 + { .compatible = "sfr,neufbox-6-sercomm-r0", .data = &board_nb6, },
52 +#endif
53 #ifdef CONFIG_BCM63XX_CPU_6368
54 { .compatible = "brcm,bcm96368mvngr", .data = &board_96368mvngr, },
55 { .compatible = "brcm,bcm96368mvwg", .data = &board_96368mvwg, },