Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Alexandre TORGUE <alexandre.torgue@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
···11+STMicroelectronics STM32 / MCU DWMAC glue layer controller22+33+This file documents platform glue layer for stmmac.44+Please see stmmac.txt for the other unchanged properties.55+66+The device node has following properties.77+88+Required properties:99+- compatible: Should be "st,stm32-dwmac" to select glue, and1010+ "snps,dwmac-3.50a" to select IP version.1111+- clocks: Must contain a phandle for each entry in clock-names.1212+- clock-names: Should be "stmmaceth" for the host clock.1313+ Should be "mac-clk-tx" for the MAC TX clock.1414+ Should be "mac-clk-rx" for the MAC RX clock.1515+- st,syscon : Should be phandle/offset pair. The phandle to the syscon node which1616+ encompases the glue register, and the offset of the control register.1717+Example:1818+1919+ ethernet@40028000 {2020+ compatible = "st,stm32-dwmac", "snps,dwmac-3.50a";2121+ status = "disabled";2222+ reg = <0x40028000 0x8000>;2323+ reg-names = "stmmaceth";2424+ interrupts = <0 61 0>, <0 62 0>;2525+ interrupt-names = "macirq", "eth_wake_irq";2626+ clock-names = "stmmaceth", "mac-clk-tx", "mac-clk-rx";2727+ clocks = <&rcc 0 25>, <&rcc 0 26>, <&rcc 0 27>;2828+ st,syscon = <&syscfg 0x4>;2929+ snps,pbl = <8>;3030+ snps,mixed-burst;3131+ dma-ranges;3232+ };