Files
android_kernel_samsung_sm87…/bindings/usb/qcom,pmic-eusb2-repeater.yaml
Ronak Vijay Raheja dfa9a59aad dt-bindings: Add USB PHY bindings
Add USB PHY bindings used on MSM platforms.

Change-Id: Ifaf30337abc9b48ccad01f9b4d9aedfb877820f4
Signed-off-by: Ronak Vijay Raheja <quic_rraheja@quicinc.com>
2023-06-22 16:59:52 -07:00

48 lines
1.1 KiB
YAML

# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/usb/qcom,pmic-eusb2-repeater.yaml##
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Qualcomm Technologies, Inc. eUSB2 Repeater
maintainers:
- Ronak Vijay Raheja <quic_rraheja@quicinc.com>
properties:
compatible:
const: qcom,pmic-eusb2-repeater
reg:
description: address and length of the register set for the device
minItems: 1
vdd3-supply:
description: phandle to the 3V supply for eUSB2 repeater
vdd18-supply:
description: phandle to the 1.8V supply for eUSB2 repeater
qcom,param-override-seq:
description: parameter override sequence with value, reg offset pair
$ref: /schemas/types.yaml#/definitions/uint32-array
required:
- compatible
- reg
- vdd3-supply
- vdd18-supply
additionalProperties: false
examples:
- |
eusb2_repeater@fd00 {
compatible = "qcom,pmic-eusb2-repeater";
reg = <0xfd00 0xff>;
vdd18-supply = <&pm8841_s2_corner>;
vdd3-supply = <&pm8941_l6>;
qcom,param-override-seq = <0x4 0x57>;
};
...