28 lines
564 B
Plaintext
28 lines
564 B
Plaintext
/*
|
|
* Copyright (c) 2024 STMicroelectronics
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include <st/h5/stm32h5.dtsi>
|
|
|
|
/ {
|
|
soc {
|
|
compatible = "st,stm32h533", "st,stm32h5", "simple-bus";
|
|
|
|
gpiof: gpio@42021400 {
|
|
compatible = "st,stm32-gpio";
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
reg = <0x42021400 0x400>;
|
|
clocks = <&rcc STM32_CLOCK_BUS_AHB2 0x00000080>;
|
|
};
|
|
|
|
fmc: memory-controller@47000400 {
|
|
compatible = "st,stm32-fmc";
|
|
reg = <0x47000400 0x400>;
|
|
clocks = <&rcc STM32_CLOCK_BUS_AHB4 0x00010000>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|