summaryrefslogtreecommitdiff
path: root/zephyr/projects/herobrine/usbc_herobrine.dts
blob: dac7df7c075cc20165c7a328ccba5d214472e890 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* Copyright 2021 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/ {
	usbc {
		#address-cells = <1>;
		#size-cells = <0>;

		port0@0 {
			compatible = "named-usbc-port";
			reg = <0>;
			bc12 = <&bc12_port0>;
			ppc = <&ppc_port0>;
			ppc_alt = <&ppc_port0_alt>;
			tcpc = <&tcpc_port0>;
			chg = <&charger>;
			usb-muxes = <&usb_mux_0>;
		};
		usb_mux_0: usb-mux-0 {
			compatible = "parade,usbc-mux-ps8xxx";
		};

		port1@1 {
			compatible = "named-usbc-port";
			reg = <1>;
			bc12 = <&bc12_port1>;
			ppc = <&ppc_port1>;
			tcpc = <&tcpc_port1>;
			usb-muxes = <&usb_mux_1>;
		};
		usb_mux_1: usb-mux-1 {
			compatible = "parade,usbc-mux-ps8xxx";
		};
	};
};

&i2c1_0 {
	tcpc_port0: ps8xxx@b {
		compatible = "parade,ps8xxx";
		reg = <0xb>;
	};
};

&i2c2_0 {
	tcpc_port1: ps8xxx@b {
		compatible = "parade,ps8xxx";
		reg = <0xb>;
	};
};