11fc182315
SOC_ESP32_NET is now SOC_ESP32_APPCPU, following espressif's naming convention in the same manner as ESP32S3 app cpu. SOC_ESP32_APPCU is now a subset of SOC_SERIES_ESP32. This commit also changes the necessary files, samples and tests for bisect purposes. Signed-off-by: Lucas Tamborrino <lucas.tamborrino@espressif.com>
32 lines
469 B
Plaintext
32 lines
469 B
Plaintext
/*
|
|
* Copyright (c) 2023 Espressif Systems (Shanghai) Co., Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/dts-v1/;
|
|
|
|
#include <espressif/esp32/esp32_appcpu.dtsi>
|
|
|
|
/ {
|
|
model = "esp32_wroom_appcpu";
|
|
compatible = "espressif,esp32_appcpu";
|
|
|
|
chosen {
|
|
zephyr,sram = &sram0;
|
|
zephyr,ipc_shm = &shm0;
|
|
zephyr,ipc = &ipm0;
|
|
};
|
|
};
|
|
|
|
&cpu0 {
|
|
clock-frequency = <ESP32_CLK_CPU_240M>;
|
|
};
|
|
|
|
&cpu1 {
|
|
clock-frequency = <ESP32_CLK_CPU_240M>;
|
|
};
|
|
|
|
&trng0 {
|
|
status = "okay";
|
|
};
|