Skip to content

Commit f2b6070

Browse files
committed
Merge branch 'feat/support_esp32h4_psram' into 'master'
feat(esp_hw_support): support psram during sleep for esp32h4 See merge request espressif/esp-idf!41780
2 parents 5b59fdc + f4bc3c7 commit f2b6070

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

components/soc/esp32c6/include/soc/Kconfig.soc_caps.in

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1399,10 +1399,6 @@ config SOC_PM_RETENTION_HAS_CLOCK_BUG
13991399
bool
14001400
default y
14011401

1402-
config SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN
1403-
bool
1404-
default y
1405-
14061402
config SOC_PM_PAU_LINK_NUM
14071403
int
14081404
default 4

components/soc/esp32c6/include/soc/soc_caps.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,6 @@
562562
#define SOC_PM_CPU_RETENTION_BY_SW (1)
563563
#define SOC_PM_MODEM_RETENTION_BY_REGDMA (1)
564564
#define SOC_PM_RETENTION_HAS_CLOCK_BUG (1)
565-
#define SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN (1)
566565

567566
#define SOC_PM_PAU_LINK_NUM (4)
568567
#define SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR (1)

components/soc/esp32h4/include/soc/Kconfig.soc_caps.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -955,6 +955,10 @@ config SOC_PM_MODEM_CLK_CONF_RETENTION
955955
bool
956956
default y
957957

958+
config SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN
959+
bool
960+
default y
961+
958962
config SOC_PM_PAU_LINK_NUM
959963
int
960964
default 4

components/soc/esp32h4/include/soc/soc_caps.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@
524524
#define SOC_PM_CPU_RETENTION_BY_SW (1)
525525
#define SOC_PM_MODEM_RETENTION_BY_REGDMA (1)
526526
#define SOC_PM_MODEM_CLK_CONF_RETENTION (1) /*!< In esp32H4, i2c lpcon is placed in modem domain*/
527+
#define SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN (1)
527528

528529
#define SOC_PM_PAU_LINK_NUM (4)
529530
#define SOC_PM_PAU_REGDMA_LINK_CONFIGURABLE (1)

0 commit comments

Comments
 (0)