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>
This commit is contained in:
Ronak Vijay Raheja
2023-06-12 14:59:21 -07:00
parent 5fa932bb7c
commit dfa9a59aad
3 changed files with 218 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
# 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>;
};
...