19 lines
281 B
Plaintext
19 lines
281 B
Plaintext
|
/*
|
||
|
* Copyright (c) 2023 Espressif Systems (Shanghai) Co., Ltd.
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include "esp32s3_common.dtsi"
|
||
|
|
||
|
/* 4MB flash */
|
||
|
&flash0 {
|
||
|
reg = <0x0 DT_SIZE_M(4)>;
|
||
|
};
|
||
|
|
||
|
/* 2MB psram */
|
||
|
&psram0 {
|
||
|
reg = <0x3c000000 DT_SIZE_M(2)>;
|
||
|
status = "okay";
|
||
|
};
|