summaryrefslogtreecommitdiffstats
path: root/dts/src/arm/bcm283x-rpi-wifi-bt.dtsi
blob: 0b64cc19941f35fcc305d1c8ffa3365567a8f9ee (plain)
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
// SPDX-License-Identifier: GPL-2.0

/ {
	wifi_pwrseq: wifi-pwrseq {
		compatible = "mmc-pwrseq-simple";
	};
};

/* SDHCI is used to control the SDIO for wireless */
&sdhci {
	#address-cells = <1>;
	#size-cells = <0>;
	pinctrl-names = "default";
	pinctrl-0 = <&emmc_gpio34>;
	bus-width = <4>;
	non-removable;
	mmc-pwrseq = <&wifi_pwrseq>;
	status = "okay";

	brcmf: wifi@1 {
		reg = <1>;
		compatible = "brcm,bcm4329-fmac";
	};
};

/* uart0 communicates with the BT module */
&uart0 {
	status = "okay";

	bt: bluetooth {
		compatible = "brcm,bcm43438-bt";
		max-speed = <2000000>;
	};
};