Skip to content

Commit 2df490e

Browse files
lumagvinodkoul
authored andcommitted
dt-bindings: phy: add NXP PTN3222 eUSB2 to USB2 redriver
The NXP PTN3222 is the single-port eUSB2 to USB2 redriver that performs translation between eUSB2 and USB2 signalling schemes. It supports all three data rates: Low Speed, Full Speed and High Speed. Reviewed-by: Conor Dooley <[email protected]> Signed-off-by: Dmitry Baryshkov <[email protected]> Reviewed-by: Stephan Gerhold <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent 76b4f2a commit 2df490e

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/phy/nxp,ptn3222.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: NXP PTN3222 1-port eUSB2 to USB2 redriver
8+
9+
maintainers:
10+
- Dmitry Baryshkov <[email protected]>
11+
12+
properties:
13+
compatible:
14+
enum:
15+
- nxp,ptn3222
16+
17+
reg:
18+
maxItems: 1
19+
20+
"#phy-cells":
21+
const: 0
22+
23+
vdd1v8-supply:
24+
description: power supply (1.8V)
25+
26+
vdd3v3-supply:
27+
description: power supply (3.3V)
28+
29+
reset-gpios: true
30+
31+
required:
32+
- compatible
33+
- reg
34+
- '#phy-cells'
35+
36+
additionalProperties: false
37+
38+
examples:
39+
- |
40+
#include <dt-bindings/gpio/gpio.h>
41+
42+
i2c {
43+
#address-cells = <1>;
44+
#size-cells = <0>;
45+
46+
redriver@4f {
47+
compatible = "nxp,ptn3222";
48+
reg = <0x4f>;
49+
#phy-cells = <0>;
50+
vdd3v3-supply = <&vreg_3p3>;
51+
vdd1v8-supply = <&vreg_1p8>;
52+
reset-gpios = <&gpio_reset GPIO_ACTIVE_LOW>;
53+
};
54+
};
55+
...

0 commit comments

Comments
 (0)