1/* 2 * Copyright (c) 2017 Erwin Rol <erwin@erwinrol.com> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <st/f4/stm32f405.dtsi> 8 9/ { 10 soc { 11 compatible = "st,stm32f407", "st,stm32f4", "simple-bus"; 12 13 mac: ethernet@40028000 { 14 compatible = "st,stm32-ethernet"; 15 reg = <0x40028000 0x8000>; 16 interrupts = <61 0>; 17 clock-names = "stmmaceth", "mac-clk-tx", 18 "mac-clk-rx", "mac-clk-ptp"; 19 clocks = <&rcc STM32_CLOCK_BUS_AHB1 0x02000000>, 20 <&rcc STM32_CLOCK_BUS_AHB1 0x04000000>, 21 <&rcc STM32_CLOCK_BUS_AHB1 0x08000000>, 22 <&rcc STM32_CLOCK_BUS_AHB1 0x10000000>; 23 status = "disabled"; 24 }; 25 }; 26}; 27