~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/net/marvell-orion-net.txt

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 Marvell Orion/Discovery ethernet controller
  2 =============================================
  3 
  4 The Marvell Discovery ethernet controller can be found on Marvell Orion SoCs
  5 (Kirkwood, Dove, Orion5x, and Discovery Innovation) and as part of Marvell
  6 Discovery system controller chips (mv64[345]60).
  7 
  8 The Discovery ethernet controller is described with two levels of nodes. The
  9 first level describes the ethernet controller itself and the second level
 10 describes up to 3 ethernet port nodes within that controller. The reason for
 11 the multiple levels is that the port registers are interleaved within a single
 12 set of controller registers. Each port node describes port-specific properties.
 13 
 14 Note: The above separation is only true for Discovery system controllers.
 15 For Orion SoCs we stick to the separation, although there each controller has
 16 only one port associated. Multiple ports are implemented as multiple single-port
 17 controllers. As Kirkwood has some issues with proper initialization after reset,
 18 an extra compatible string is added for it.
 19 
 20 * Ethernet controller node
 21 
 22 Required controller properties:
 23  - #address-cells: shall be 1.
 24  - #size-cells: shall be 0.
 25  - compatible: shall be one of "marvell,orion-eth", "marvell,kirkwood-eth".
 26  - reg: address and length of the controller registers.
 27 
 28 Optional controller properties:
 29  - clocks: phandle reference to the controller clock.
 30  - marvell,tx-checksum-limit: max tx packet size for hardware checksum.
 31 
 32 * Ethernet port node
 33 
 34 Required port properties:
 35  - compatible: shall be one of "marvell,orion-eth-port",
 36       "marvell,kirkwood-eth-port".
 37  - reg: port number relative to ethernet controller, shall be 0, 1, or 2.
 38  - interrupts: port interrupt.
 39  - local-mac-address: See ethernet.txt file in the same directory.
 40 
 41 Optional port properties:
 42  - marvell,tx-queue-size: size of the transmit ring buffer.
 43  - marvell,tx-sram-addr: address of transmit descriptor buffer located in SRAM.
 44  - marvell,tx-sram-size: size of transmit descriptor buffer located in SRAM.
 45  - marvell,rx-queue-size: size of the receive ring buffer.
 46  - marvell,rx-sram-addr: address of receive descriptor buffer located in SRAM.
 47  - marvell,rx-sram-size: size of receive descriptor buffer located in SRAM.
 48 
 49 and
 50 
 51  - phy-handle: See ethernet.txt file in the same directory.
 52  - phy-mode: See ethernet.txt file in the same directory.
 53 
 54 or
 55 
 56  - speed: port speed if no PHY connected.
 57  - duplex: port mode if no PHY connected.
 58 
 59 * Node example:
 60 
 61 mdio-bus {
 62         ...
 63         ethphy: ethernet-phy@8 {
 64                 ...
 65         };
 66 };
 67 
 68 eth: ethernet-controller@72000 {
 69         compatible = "marvell,orion-eth";
 70         #address-cells = <1>;
 71         #size-cells = <0>;
 72         reg = <0x72000 0x2000>;
 73         clocks = <&gate_clk 2>;
 74         marvell,tx-checksum-limit = <1600>;
 75 
 76         ethernet@0 {
 77                 compatible = "marvell,orion-eth-port";
 78                 reg = <0>;
 79                 interrupts = <29>;
 80                 phy-handle = <&ethphy>;
 81                 local-mac-address = [00 00 00 00 00 00];
 82         };
 83 };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php