1/*
2 * Copyright (c) 2018 qianfan Zhao
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <st/f2/stm32f2.dtsi>
8
9/ {
10	soc {
11		compatible = "st,stm32f207", "st,stm32f2", "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(AHB1, 25U)>,
20				 <&rcc STM32_CLOCK(AHB1, 26U)>,
21				 <&rcc STM32_CLOCK(AHB1, 27U)>,
22				 <&rcc STM32_CLOCK(AHB1, 28U)>;
23			status = "disabled";
24		};
25	};
26};
27