1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
#include "qcom-ipq4019-whw03.dtsi"
/ {
model = "Linksys WHW03 (Velop)";
compatible = "linksys,whw03", "qcom,ipq4019";
// Default bootargs include rootfstype=ext4 and need to be overriden.
chosen {
bootargs-append = " rootfstype=squashfs";
};
};
&tlmm {
sd_pins: sd-pinmux {
pins = "gpio23", "gpio24", "gpio25", "gpio26",
"gpio27", "gpio28", "gpio29", "gpio30",
"gpio31", "gpio32";
function = "sdio";
};
i2c_0_pins: i2c-0-pinmux {
pins = "gpio58", "gpio59";
function = "blsp_i2c0";
bias-disable;
};
spi_0_pins: spi-0-pinmux {
pins = "gpio12", "gpio13", "gpio14", "gpio15";
function = "blsp_spi0";
bias-disable;
};
};
&mdio {
status = "okay";
pinctrl-0 = <&mdio_pins>;
pinctrl-names = "default";
reset-gpios = <&tlmm 41 GPIO_ACTIVE_LOW>;
};
&vqmmc {
status = "okay";
};
&sdhci {
status = "okay";
pinctrl-0 = <&sd_pins>;
pinctrl-names = "default";
cd-gpios = <&tlmm 22 GPIO_ACTIVE_LOW>;
sd-ldo-gpios = <&tlmm 33 GPIO_ACTIVE_LOW>;
vqmmc-supply = <&vqmmc>;
};
&wifi0 {
qcom,ath10k-calibration-variant = "linksys-whw03";
};
&wifi1 {
qcom,ath10k-calibration-variant = "linksys-whw03";
};
&wifi2 {
reg = <0x00000000 0 0 0 0>;
qcom,ath10k-calibration-variant = "linksys-whw03";
};
|