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

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/net/loongson,ls1c-emac.yaml

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 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/net/loongson,ls1c-emac.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: Loongson-1C Ethernet MAC Controller
  8 
  9 maintainers:
 10   - Keguang Zhang <keguang.zhang@gmail.com>
 11 
 12 description: |
 13   Loongson-1C Ethernet MAC Controller is based on
 14   Synopsys DesignWare MAC (version 3.50a).
 15 
 16   Main features
 17   - 10/100Mbps
 18   - Full-duplex operation (IEEE 802.3x flow control automatic transmission)
 19   - Half-duplex operation (CSMA/CD Protocol and back-pressure support)
 20   - IEEE 802.1Q VLAN tag detection for reception frames
 21   - MII interface
 22   - RMII interface
 23 
 24 select:
 25   properties:
 26     compatible:
 27       contains:
 28         enum:
 29           - loongson,ls1c-emac
 30   required:
 31     - compatible
 32 
 33 properties:
 34   compatible:
 35     items:
 36       - enum:
 37           - loongson,ls1c-emac
 38       - const: snps,dwmac-3.50a
 39 
 40   reg:
 41     maxItems: 1
 42 
 43   clocks:
 44     maxItems: 1
 45 
 46   clock-names:
 47     items:
 48       - const: stmmaceth
 49 
 50   interrupts:
 51     maxItems: 1
 52 
 53   interrupt-names:
 54     items:
 55       - const: macirq
 56 
 57   loongson,ls1-syscon:
 58     $ref: /schemas/types.yaml#/definitions/phandle
 59     description:
 60       Phandle to the syscon containing some extra configurations
 61       including PHY interface mode.
 62 
 63   phy-mode:
 64     enum:
 65       - mii
 66       - rmii
 67 
 68 required:
 69   - compatible
 70   - reg
 71   - clocks
 72   - clock-names
 73   - interrupts
 74   - interrupt-names
 75   - loongson,ls1-syscon
 76 
 77 allOf:
 78   - $ref: snps,dwmac.yaml#
 79 
 80 unevaluatedProperties: false
 81 
 82 examples:
 83   - |
 84     #include <dt-bindings/clock/loongson,ls1x-clk.h>
 85     #include <dt-bindings/interrupt-controller/irq.h>
 86 
 87     emac: ethernet@1fe10000 {
 88         compatible = "loongson,ls1c-emac", "snps,dwmac-3.50a";
 89         reg = <0x1fe10000 0x10000>;
 90 
 91         clocks = <&clkc LS1X_CLKID_AHB>;
 92         clock-names = "stmmaceth";
 93 
 94         interrupt-parent = <&intc1>;
 95         interrupts = <2 IRQ_TYPE_LEVEL_HIGH>;
 96         interrupt-names = "macirq";
 97 
 98         loongson,ls1-syscon = <&syscon>;
 99 
100         phy-handle = <&phy0>;
101         phy-mode = "mii";
102         snps,pbl = <1>;
103 
104         mdio {
105             #address-cells = <1>;
106             #size-cells = <0>;
107             compatible = "snps,dwmac-mdio";
108 
109             phy0: ethernet-phy@13 {
110                 reg = <0x13>;
111             };
112         };
113     };

~ [ 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