2018-09-27 21:23:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Linaro Limited
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <mem.h>
|
|
|
|
#include <st/f3/stm32f334.dtsi>
|
|
|
|
|
|
|
|
/ {
|
|
|
|
ccm0: memory@10000000 {
|
2022-01-21 00:51:06 +08:00
|
|
|
compatible = "zephyr,memory-region", "st,stm32-ccm";
|
2018-09-27 21:23:09 +08:00
|
|
|
reg = <0x10000000 DT_SIZE_K(4)>;
|
2021-12-10 07:35:54 +08:00
|
|
|
zephyr,memory-region = "CCM";
|
2018-09-27 21:23:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
sram0: memory@20000000 {
|
|
|
|
reg = <0x20000000 DT_SIZE_K(12)>;
|
|
|
|
};
|
|
|
|
|
|
|
|
soc {
|
|
|
|
flash-controller@40022000 {
|
|
|
|
flash0: flash@8000000 {
|
|
|
|
reg = <0x08000000 DT_SIZE_K(64)>;
|
|
|
|
};
|
|
|
|
};
|
2021-06-04 20:48:56 +08:00
|
|
|
|
|
|
|
dac2: dac@40009800 {
|
|
|
|
compatible = "st,stm32-dac";
|
|
|
|
reg = <0x40009800 0x400>;
|
|
|
|
clocks = <&rcc STM32_CLOCK_BUS_APB1 0x04000000>;
|
|
|
|
status = "disabled";
|
|
|
|
#io-channel-cells = <1>;
|
|
|
|
};
|
2018-09-27 21:23:09 +08:00
|
|
|
};
|
|
|
|
};
|