brintos

brintos / linux-shallow public Read only

0
0
Text · 3.7 KiB · ea285ef Raw
153 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/net/dsa/renesas,rzn1-a5psw.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Renesas RZ/N1 Advanced 5 ports ethernet switch8 9maintainers:10  - Clément Léger <clement.leger@bootlin.com>11 12description: |13  The advanced 5 ports switch is present on the Renesas RZ/N1 SoC family and14  handles 4 ports + 1 CPU management port.15 16allOf:17  - $ref: dsa.yaml#/$defs/ethernet-ports18 19properties:20  compatible:21    items:22      - enum:23          - renesas,r9a06g032-a5psw24      - const: renesas,rzn1-a5psw25 26  reg:27    maxItems: 128 29  interrupts:30    items:31      - description: Device Level Ring (DLR) interrupt32      - description: Switch interrupt33      - description: Parallel Redundancy Protocol (PRP) interrupt34      - description: Integrated HUB module interrupt35      - description: Receive Pattern Match interrupt36 37  interrupt-names:38    items:39      - const: dlr40      - const: switch41      - const: prp42      - const: hub43      - const: ptrn44 45  power-domains:46    maxItems: 147 48  mdio:49    $ref: /schemas/net/mdio.yaml#50    unevaluatedProperties: false51 52  clocks:53    items:54      - description: AHB clock used for the switch register interface55      - description: Switch system clock56 57  clock-names:58    items:59      - const: hclk60      - const: clk61 62  ethernet-ports:63    type: object64    additionalProperties: true65    patternProperties:66      "^(ethernet-)?port@[0-4]$":67        type: object68        additionalProperties: true69        properties:70          pcs-handle:71            maxItems: 172            description:73              phandle pointing to a PCS sub-node compatible with74              renesas,rzn1-miic.yaml#75 76unevaluatedProperties: false77 78required:79  - compatible80  - reg81  - clocks82  - clock-names83  - power-domains84 85examples:86  - |87    #include <dt-bindings/gpio/gpio.h>88    #include <dt-bindings/clock/r9a06g032-sysctrl.h>89    #include <dt-bindings/interrupt-controller/arm-gic.h>90 91    switch@44050000 {92        compatible = "renesas,r9a06g032-a5psw", "renesas,rzn1-a5psw";93        reg = <0x44050000 0x10000>;94        clocks = <&sysctrl R9A06G032_HCLK_SWITCH>, <&sysctrl R9A06G032_CLK_SWITCH>;95        clock-names = "hclk", "clk";96        power-domains = <&sysctrl>;97        interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>,98                     <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>,99                     <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>,100                     <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>,101                     <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;102        interrupt-names = "dlr", "switch", "prp", "hub", "ptrn";103 104        dsa,member = <0 0>;105 106        ethernet-ports {107            #address-cells = <1>;108            #size-cells = <0>;109 110            port@0 {111                reg = <0>;112                label = "lan0";113                phy-handle = <&switch0phy3>;114                pcs-handle = <&mii_conv4>;115            };116 117            port@1 {118                reg = <1>;119                label = "lan1";120                phy-handle = <&switch0phy1>;121                pcs-handle = <&mii_conv3>;122            };123 124            port@4 {125                reg = <4>;126                ethernet = <&gmac2>;127                phy-mode = "internal";128 129                fixed-link {130                  speed = <1000>;131                  full-duplex;132                };133            };134        };135 136        mdio {137            #address-cells = <1>;138            #size-cells = <0>;139 140            reset-gpios = <&gpio0a 2 GPIO_ACTIVE_HIGH>;141            reset-delay-us = <15>;142            clock-frequency = <2500000>;143 144            switch0phy1: ethernet-phy@1{145                reg = <1>;146            };147 148            switch0phy3: ethernet-phy@3{149                reg = <3>;150            };151        };152    };153