summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/net/dsa/marvell.txt
blob: 64dbdd825981dcc5807f42832c435b13df8d1766 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
Marvell DSA Switch Device Tree Bindings
---------------------------------------

WARNING: This binding is currently unstable. Do not program it into a
FLASH never to be changed again. Once this binding is stable, this
warning will be removed.

If you need a stable binding, use the old dsa.txt binding.

Marvell Switches are MDIO devices. The following properties should be
placed as a child node of an mdio device.

The properties described here are those specific to Marvell devices.
Additional required and optional properties can be found in dsa.txt.

Required properties:
- compatible	       : Should be one of "marvell,mv88e6085" or
			 "marvell,mv88e6190"
- reg                  : Address on the MII bus for the switch.

Optional properties:

- reset-gpios		: Should be a gpio specifier for a reset line
- interrupt-parent	: Parent interrupt controller
- interrupts		: Interrupt from the switch
- interrupt-controller	: Indicates the switch is itself an interrupt
			  controller. This is used for the PHY interrupts.
#interrupt-cells = <2>	: Controller uses two cells, number and flag
- mdio			: Container of PHY and devices on the switches MDIO
			  bus.
- mdio?			: Container of PHYs and devices on the external MDIO
			  bus. The node must contains a compatible string of
			  "marvell,mv88e6xxx-mdio-external"

Example:

       mdio {
               #address-cells = <1>;
               #size-cells = <0>;
               interrupt-parent = <&gpio0>;
               interrupts = <27 IRQ_TYPE_LEVEL_LOW>;
               interrupt-controller;
               #interrupt-cells = <2>;

               switch0: switch@0 {
                       compatible = "marvell,mv88e6085";
                       reg = <0>;
		       reset-gpios = <&gpio5 1 GPIO_ACTIVE_LOW>;
               };
               mdio {
                       #address-cells = <1>;
                       #size-cells = <0>;
                       switch1phy0: switch1phy0@0 {
                               reg = <0>;
                               interrupt-parent = <&switch0>;
                               interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
                       };
               };
       };

       mdio {
               #address-cells = <1>;
               #size-cells = <0>;
               interrupt-parent = <&gpio0>;
               interrupts = <27 IRQ_TYPE_LEVEL_LOW>;
               interrupt-controller;
               #interrupt-cells = <2>;

               switch0: switch@0 {
                       compatible = "marvell,mv88e6390";
                       reg = <0>;
		       reset-gpios = <&gpio5 1 GPIO_ACTIVE_LOW>;
               };
               mdio {
                       #address-cells = <1>;
                       #size-cells = <0>;
                       switch1phy0: switch1phy0@0 {
                               reg = <0>;
                               interrupt-parent = <&switch0>;
                               interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
                       };
               };

               mdio1 {
                       compatible = "marvell,mv88e6xxx-mdio-external";
                       #address-cells = <1>;
                       #size-cells = <0>;
                       switch1phy9: switch1phy0@9 {
                               reg = <9>;
                       };
               };
       };