zephyr/dts/xtensa/espressif/esp32/esp32_wrover_e_n4r2.dtsi
Taeyoun Park 9769a39766 dts: xtensa: Fix gpio-reserved-ranges of gpio1
The range of GPIO37-38 is <5 2>

Signed-off-by: Taeyoun Park <typark0422@pethcare.com>
2024-12-26 15:31:43 +01:00

28 lines
465 B
Text

/*
* Copyright (c) 2023 Espressif Systems (Shanghai) Co., Ltd.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "esp32_common.dtsi"
/* Reserved GPIO pins */
&gpio0 {
gpio-reserved-ranges = <6 6>, <16 2>, // flash&psram
<20 1>, <24 1>, <28 4>; // NC
};
&gpio1 {
gpio-reserved-ranges = <5 2>; // GPIO37-38 NC
};
/* 4MB flash */
&flash0 {
reg = <0x0 DT_SIZE_M(4)>;
};
/* 2MB psram */
&psram0 {
reg = <0x3f800000 DT_SIZE_M(2)>;
status = "okay";
};