Message ID | 20250508050856.674782-3-amitsd@google.com |
---|---|
State | New |
Headers | show |
Series | Add graph connections between tcpc & fg for Pixel 6 | expand |
diff --git a/arch/arm64/boot/dts/exynos/google/gs101-pixel-common.dtsi b/arch/arm64/boot/dts/exynos/google/gs101-pixel-common.dtsi index 84fc10c35629..45b079c16146 100644 --- a/arch/arm64/boot/dts/exynos/google/gs101-pixel-common.dtsi +++ b/arch/arm64/boot/dts/exynos/google/gs101-pixel-common.dtsi @@ -186,6 +186,14 @@ usbc0_role_sw: endpoint { remote-endpoint = <&usbdrd31_dwc3_role_switch>; }; }; + + port@3 { + reg = <3>; + + conn_batt_vbus: endpoint { + remote-endpoint = <&batt_conn_vbus>; + }; + }; }; }; }; @@ -197,6 +205,12 @@ fuel-gauge@36 { interrupt-parent = <&gpa9>; interrupts = <3 IRQ_TYPE_LEVEL_LOW>; shunt-resistor-micro-ohms = <5000>; + + port { + batt_conn_vbus: endpoint { + remote-endpoint = <&conn_batt_vbus>; + }; + }; }; };
Add "port" binding to represent vbus/vchgin connection between tcpc connector & battery using OF graphs. Signed-off-by: Amit Sunil Dhamne <amitsd@google.com> --- .../boot/dts/exynos/google/gs101-pixel-common.dtsi | 14 ++++++++++++++ 1 file changed, 14 insertions(+)