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