1/* 2 * Copyright (c) 2017 I-SENSE group of ICCS 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <st/f1/stm32f105.dtsi> 8 9/ { 10 soc { 11 compatible = "st,stm32f107", "st,stm32f1", "simple-bus"; 12 13 dma2: dma@40020400 { 14 compatible = "st,stm32-dma-v2bis"; 15 #dma-cells = <2>; 16 reg = <0x40020400 0x400>; 17 clocks = <&rcc STM32_CLOCK(AHB1, 1U)>; 18 interrupts = <56 0 57 0 58 0 59 0 60 0>; 19 status = "disabled"; 20 }; 21 22 mac: ethernet@40028000 { 23 compatible = "st,stm32-ethernet"; 24 reg = <0x40028000 0x2000>; 25 interrupts = <61 0>; 26 clock-names = "stmmaceth", "mac-clk-tx", 27 "mac-clk-rx"; 28 clocks = <&rcc STM32_CLOCK(AHB1, 14U)>, 29 <&rcc STM32_CLOCK(AHB1, 15U)>, 30 <&rcc STM32_CLOCK(AHB1, 16U)>; 31 status = "disabled"; 32 }; 33 }; 34}; 35