Correct "zephyr,sram" property under /chosen node to make board and samples compatible with new SoC memory description. Signed-off-by: Marcio Ribeiro <marcio.ribeiro@espressif.com>
30 lines
525 B
Text
30 lines
525 B
Text
/*
|
|
* Copyright (c) 2023 Espressif Systems (Shanghai) Co., Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/dts-v1/;
|
|
|
|
#include <espressif/esp32s3/esp32s3_wroom_n8r8.dtsi>
|
|
#include <espressif/partitions_0x0_amp.dtsi>
|
|
|
|
/ {
|
|
model = "Seeed Xiao ESP32S3 APPCPU";
|
|
compatible = "espressif,esp32s3";
|
|
|
|
chosen {
|
|
zephyr,sram = &sram1;
|
|
zephyr,ipc_shm = &shm0;
|
|
zephyr,ipc = &ipm0;
|
|
zephyr,flash = &flash0;
|
|
zephyr,code-partition = &slot0_appcpu_partition;
|
|
};
|
|
};
|
|
|
|
&trng0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&ipm0 {
|
|
status = "okay";
|
|
};
|