35 lines
762 B
Plaintext
35 lines
762 B
Plaintext
/*
|
|
* Copyright (c) 2017 I-SENSE group of ICCS
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <st/f1/stm32f105.dtsi>
|
|
|
|
/ {
|
|
soc {
|
|
compatible = "st,stm32f107", "st,stm32f1", "simple-bus";
|
|
|
|
dma2: dma@40020400 {
|
|
compatible = "st,stm32-dma-v2bis";
|
|
#dma-cells = <2>;
|
|
reg = <0x40020400 0x400>;
|
|
clocks = <&rcc STM32_CLOCK(AHB1, 1U)>;
|
|
interrupts = <56 0 57 0 58 0 59 0 60 0>;
|
|
status = "disabled";
|
|
};
|
|
|
|
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(AHB1, 14U)>,
|
|
<&rcc STM32_CLOCK(AHB1, 15U)>,
|
|
<&rcc STM32_CLOCK(AHB1, 16U)>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|