2017-03-06 18:11:19 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 I-SENSE group of ICCS
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2019-10-24 06:27:16 +08:00
|
|
|
#include <st/f1/stm32f105.dtsi>
|
2018-03-15 22:52:57 +08:00
|
|
|
|
|
|
|
/ {
|
|
|
|
soc {
|
2023-05-11 19:37:02 +08:00
|
|
|
compatible = "st,stm32f107", "st,stm32f1", "simple-bus";
|
|
|
|
|
2019-10-24 12:34:28 +08:00
|
|
|
dma2: dma@40020400 {
|
2021-04-28 20:44:24 +08:00
|
|
|
compatible = "st,stm32-dma-v2bis";
|
|
|
|
#dma-cells = <2>;
|
2019-10-24 12:34:28 +08:00
|
|
|
reg = <0x40020400 0x400>;
|
|
|
|
clocks = <&rcc STM32_CLOCK_BUS_AHB1 0x2>;
|
|
|
|
interrupts = <56 0 57 0 58 0 59 0 60 0>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
2022-09-04 19:36:35 +08:00
|
|
|
|
|
|
|
mac: ethernet@40028000 {
|
|
|
|
compatible = "st,stm32-ethernet";
|
|
|
|
reg = <0x40028000 0x2000>;
|
|
|
|
interrupts = <61 0>;
|
|
|
|
clock-names = "stmmaceth", "mac-clk-tx",
|
|
|
|
"mac-clk-rx";
|
|
|
|
clocks = <&rcc STM32_CLOCK_BUS_AHB1 0x00004000>,
|
|
|
|
<&rcc STM32_CLOCK_BUS_AHB1 0x00008000>,
|
|
|
|
<&rcc STM32_CLOCK_BUS_AHB1 0x00010000>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
2018-03-15 22:52:57 +08:00
|
|
|
};
|
|
|
|
};
|