Skip to content

Commit fb3b92d

Browse files
committed
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
# Conflicts: # Documentation/devicetree/bindings/phy/qcom,sc8280xp-qmp-usb3-uni-phy.yaml
2 parents 67470fb + d688c82 commit fb3b92d

39 files changed

+828
-650
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/phy/marvell,pxa1928-usb-phy.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Marvell PXA1928 USB/HSIC PHY
8+
9+
maintainers:
10+
- Duje Mihanović <duje.mihanovic@skole.hr>
11+
12+
properties:
13+
compatible:
14+
enum:
15+
- marvell,pxa1928-usb-phy
16+
- marvell,pxa1928-hsic-phy
17+
18+
reg:
19+
maxItems: 1
20+
21+
clocks:
22+
maxItems: 1
23+
24+
'#phy-cells':
25+
const: 0
26+
27+
resets:
28+
maxItems: 1
29+
30+
required:
31+
- compatible
32+
- reg
33+
- clocks
34+
- '#phy-cells'
35+
36+
additionalProperties: false
37+
38+
examples:
39+
- |
40+
#include <dt-bindings/clock/marvell,pxa1928.h>
41+
42+
usbphy: phy@7000 {
43+
compatible = "marvell,pxa1928-usb-phy";
44+
reg = <0x7000 0xe0>;
45+
clocks = <&apmu PXA1928_CLK_USB>;
46+
#phy-cells = <0>;
47+
};

Documentation/devicetree/bindings/phy/mediatek,dsi-phy.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ properties:
3030
- const: mediatek,mt8173-mipi-tx
3131
- items:
3232
- enum:
33+
- mediatek,mt8188-mipi-tx
3334
- mediatek,mt8365-mipi-tx
3435
- const: mediatek,mt8183-mipi-tx
3536
- const: mediatek,mt2701-mipi-tx
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/phy/mediatek,mt7628-usbphy.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Mediatek/Ralink USB PHY
8+
9+
maintainers:
10+
- Sergio Paracuellos <sergio.paracuellos@gmail.com>
11+
12+
properties:
13+
compatible:
14+
enum:
15+
- mediatek,mt7620-usbphy
16+
- mediatek,mt7628-usbphy
17+
- ralink,rt3352-usbphy
18+
19+
reg:
20+
maxItems: 1
21+
22+
"#phy-cells":
23+
const: 0
24+
25+
ralink,sysctl:
26+
description:
27+
phandle to a ralink syscon register region.
28+
$ref: /schemas/types.yaml#/definitions/phandle
29+
30+
resets:
31+
items:
32+
- description: USB Host reset controller
33+
- description: USB Device reset controller
34+
35+
reset-names:
36+
items:
37+
- const: host
38+
- const: device
39+
40+
required:
41+
- compatible
42+
- "#phy-cells"
43+
- ralink,sysctl
44+
- resets
45+
- reset-names
46+
47+
allOf:
48+
- if:
49+
properties:
50+
compatible:
51+
contains:
52+
const: mediatek,mt7628-usbphy
53+
then:
54+
required:
55+
- reg
56+
else:
57+
properties:
58+
reg: false
59+
60+
additionalProperties: false
61+
62+
examples:
63+
- |
64+
phy@10120000 {
65+
compatible = "mediatek,mt7628-usbphy";
66+
reg = <0x10120000 0x1000>;
67+
#phy-cells = <0>;
68+
ralink,sysctl = <&sysc>;
69+
resets = <&rstctrl 22>,
70+
<&rstctrl 25>;
71+
reset-names = "host", "device";
72+
};
73+
74+
...

Documentation/devicetree/bindings/phy/phy-stih407-usb.txt

Lines changed: 0 additions & 24 deletions
This file was deleted.

Documentation/devicetree/bindings/phy/pxa1928-usb-phy.txt

Lines changed: 0 additions & 18 deletions
This file was deleted.

Documentation/devicetree/bindings/phy/qcom,ipq5332-usb-hsphy.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ description:
1717
properties:
1818
compatible:
1919
items:
20-
- const: qcom,ipq5332-usb-hsphy
20+
- enum:
21+
- qcom,ipq5018-usb-hsphy
22+
- qcom,ipq5332-usb-hsphy
2123

2224
"#phy-cells":
2325
const: 0

0 commit comments

Comments
 (0)