Documentation / devicetree / bindings / net / sophgo,cv1800b-dwmac.yaml


Based on kernel version 6.17. Page generated on 2025-10-03 10:04 EST.

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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/net/sophgo,cv1800b-dwmac.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Sophgo CV1800B DWMAC glue layer

maintainers:
  - Inochi Amaoto <inochiama@gmail.com>

select:
  properties:
    compatible:
      contains:
        enum:
          - sophgo,cv1800b-dwmac
  required:
    - compatible

properties:
  compatible:
    items:
      - const: sophgo,cv1800b-dwmac
      - const: snps,dwmac-3.70a

  reg:
    maxItems: 1

  clocks:
    items:
      - description: GMAC main clock
      - description: PTP clock

  clock-names:
    items:
      - const: stmmaceth
      - const: ptp_ref

  interrupts:
    maxItems: 1

  interrupt-names:
    maxItems: 1

  resets:
    maxItems: 1

  reset-names:
    const: stmmaceth

required:
  - compatible
  - reg
  - clocks
  - clock-names
  - interrupts
  - interrupt-names
  - resets
  - reset-names

allOf:
  - $ref: snps,dwmac.yaml#

unevaluatedProperties: false

examples:
  - |
    #include <dt-bindings/interrupt-controller/irq.h>
 
    ethernet@4070000 {
      compatible = "sophgo,cv1800b-dwmac", "snps,dwmac-3.70a";
      reg = <0x04070000 0x10000>;
      clocks = <&clk 35>, <&clk 36>;
      clock-names = "stmmaceth", "ptp_ref";
      interrupts = <31 IRQ_TYPE_LEVEL_HIGH>;
      interrupt-names = "macirq";
      phy-handle = <&internal_ephy>;
      phy-mode = "internal";
      resets = <&rst 12>;
      reset-names = "stmmaceth";
      rx-fifo-depth = <8192>;
      tx-fifo-depth = <8192>;
      snps,multicast-filter-bins = <0>;
      snps,perfect-filter-entries = <1>;
      snps,aal;
      snps,txpbl = <8>;
      snps,rxpbl = <8>;
      snps,mtl-rx-config = <&gmac0_mtl_rx_setup>;
      snps,mtl-tx-config = <&gmac0_mtl_tx_setup>;
      snps,axi-config = <&gmac0_stmmac_axi_setup>;
 
      mdio {
        compatible = "snps,dwmac-mdio";
        #address-cells = <1>;
        #size-cells = <0>;
      };
 
      gmac0_mtl_rx_setup: rx-queues-config {
        snps,rx-queues-to-use = <1>;
        queue0 {};
      };
 
      gmac0_mtl_tx_setup: tx-queues-config {
        snps,tx-queues-to-use = <1>;
        queue0 {};
      };
 
      gmac0_stmmac_axi_setup: stmmac-axi-config {
        snps,blen = <16 8 4 0 0 0 0>;
        snps,rd_osr_lmt = <2>;
        snps,wr_osr_lmt = <1>;
      };
    };