hc
2024-10-12 a5969cabbb4660eab42b6ef0412cbbd1200cf14d
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
# SPDX-License-Identifier: GPL-2.0
%YAML 1.2
---
$id: http://devicetree.org/schemas/net/marvell,mvusb.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
 
title: Marvell USB to MDIO Controller
 
maintainers:
  - Tobias Waldekranz <tobias@waldekranz.com>
 
description: |+
  This controller is mounted on development boards for Marvell's Link Street
  family of Ethernet switches. It allows you to configure the switch's registers
  using the standard MDIO interface.
 
  Since the device is connected over USB, there is no strict requirement of
  having a device tree representation of the device. But in order to use it with
  the mv88e6xxx driver, you need a device tree node in which to place the switch
  definition.
 
allOf:
  - $ref: "mdio.yaml#"
 
properties:
  compatible:
    const: usb1286,1fa4
  reg:
    maxItems: 1
    description: The USB port number on the host controller
 
required:
  - compatible
  - reg
  - "#address-cells"
  - "#size-cells"
 
unevaluatedProperties: false
 
examples:
  - |
    /* USB host controller */
    usb {
            #address-cells = <1>;
            #size-cells = <0>;
 
            mdio@1 {
                    compatible = "usb1286,1fa4";
                    reg = <1>;
                    #address-cells = <1>;
                    #size-cells = <0>;
 
                    switch@0 {
                            compatible = "marvell,mv88e6190";
                            reg = <0x0>;
 
                            ports {
                                    /* Port definitions */
                            };
 
                            mdio {
                                    /* PHY definitions */
                            };
                    };
            };
    };