You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
821 B
38 lines
821 B
/* |
|
* Copyright (c) 2017 Erwin Rol <erwin@erwinrol.com> |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <st/f4/stm32f405.dtsi> |
|
|
|
/ { |
|
soc { |
|
compatible = "st,stm32f407", "st,stm32f4", "simple-bus"; |
|
|
|
ethernet@40028000 { |
|
reg = <0x40028000 0x8000>; |
|
compatible = "st,stm32-ethernet-controller"; |
|
clock-names = "stm-eth"; |
|
clocks = <&rcc STM32_CLOCK(AHB1, 25)>; |
|
|
|
mac: ethernet { |
|
compatible = "st,stm32-ethernet"; |
|
interrupts = <61 0>; |
|
clock-names = "mac-clk-tx", "mac-clk-rx", |
|
"mac-clk-ptp"; |
|
clocks = <&rcc STM32_CLOCK(AHB1, 26)>, |
|
<&rcc STM32_CLOCK(AHB1, 27)>, |
|
<&rcc STM32_CLOCK(AHB1, 28)>; |
|
status = "disabled"; |
|
}; |
|
|
|
mdio: mdio { |
|
compatible = "st,stm32-mdio"; |
|
#address-cells = <1>; |
|
#size-cells = <0>; |
|
status = "disabled"; |
|
}; |
|
}; |
|
}; |
|
};
|
|
|