From 776ecbca0fecb3fa121c251a68479c21a62b89cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gero=20Schw=C3=A4ricke?= Date: Fri, 26 Jul 2024 23:44:07 +0200 Subject: [PATCH] soc: espressif: esp32: add WROVER-E-N16R4 SiP variant MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems this SiP variant is not sold by espressif directly, but it is used by the Odroid Go. The Odroid Go documentation calls this a "custom" model [1]. There already exists a SiP specific device tree include file: zephyr/dts/xtensa/espressif/esp32/esp32_wrover_e_n16r4.dtsi [1] https://wiki.odroid.com/odroid_go/odroid_go#specifications Signed-off-by: Gero Schwäricke --- soc/espressif/esp32/Kconfig.soc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/soc/espressif/esp32/Kconfig.soc b/soc/espressif/esp32/Kconfig.soc index 8b68404a34c..65c0282f521 100644 --- a/soc/espressif/esp32/Kconfig.soc +++ b/soc/espressif/esp32/Kconfig.soc @@ -98,6 +98,12 @@ config SOC_ESP32_WROVER_E_N16R2 help ESP32_WROVER_E_N16R2 +config SOC_ESP32_WROVER_E_N16R4 + bool + select SOC_ESP32 + help + ESP32_WROVER_E_N16R4 + config SOC_ESP32_WROVER_E_N4R8 bool select SOC_ESP32 @@ -154,6 +160,7 @@ config SOC_PART_NUMBER default "ESP32_WROVER_E_N4R2" if SOC_ESP32_WROVER_E_N4R2 default "ESP32_WROVER_E_N8R2" if SOC_ESP32_WROVER_E_N8R2 default "ESP32_WROVER_E_N16R2" if SOC_ESP32_WROVER_E_N16R2 + default "ESP32_WROVER_E_N16R4" if SOC_ESP32_WROVER_E_N16R4 default "ESP32_WROVER_E_N4R8" if SOC_ESP32_WROVER_E_N4R8 default "ESP32_WROVER_E_N8R8" if SOC_ESP32_WROVER_E_N8R8 default "ESP32_WROVER_E_N16R8" if SOC_ESP32_WROVER_E_N16R8