Skip to content

Commit f4bc3c7

Browse files
committed
feat(esp_hw_support): support psram during sleep for esp32h4
1 parent b8a0d88 commit f4bc3c7

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
@@ -1415,10 +1415,6 @@ config SOC_PM_RETENTION_HAS_CLOCK_BUG
14151415
bool
14161416
default y
14171417

1418-
config SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN
1419-
bool
1420-
default y
1421-
14221418
config SOC_PM_PAU_LINK_NUM
14231419
int
14241420
default 4

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,6 @@
566566
#define SOC_PM_CPU_RETENTION_BY_SW (1)
567567
#define SOC_PM_MODEM_RETENTION_BY_REGDMA (1)
568568
#define SOC_PM_RETENTION_HAS_CLOCK_BUG (1)
569-
#define SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN (1)
570569

571570
#define SOC_PM_PAU_LINK_NUM (4)
572571
#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
@@ -975,6 +975,10 @@ config SOC_PM_MODEM_CLK_CONF_RETENTION
975975
bool
976976
default y
977977

978+
config SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN
979+
bool
980+
default y
981+
978982
config SOC_PM_PAU_LINK_NUM
979983
int
980984
default 4

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@
530530
#define SOC_PM_CPU_RETENTION_BY_SW (1)
531531
#define SOC_PM_MODEM_RETENTION_BY_REGDMA (1)
532532
#define SOC_PM_MODEM_CLK_CONF_RETENTION (1) /*!< In esp32H4, i2c lpcon is placed in modem domain*/
533+
#define SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN (1)
533534

534535
#define SOC_PM_PAU_LINK_NUM (4)
535536
#define SOC_PM_PAU_REGDMA_LINK_CONFIGURABLE (1)

0 commit comments

Comments
 (0)