mirror of
https://github.com/espressif/esp-idf.git
synced 2025-12-01 14:49:29 +01:00
27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
|
|
menu "ESP-Driver:I3C Master Configurations"
|
||
|
|
depends on SOC_I3C_MASTER_SUPPORTED
|
||
|
|
config I3C_MASTER_ISR_CACHE_SAFE
|
||
|
|
bool "I3C ISR Cache-Safe"
|
||
|
|
select I3C_MASTER_ISR_HANDLER_IN_IRAM
|
||
|
|
select GDMA_ISR_HANDLER_IN_IRAM if SOC_GDMA_SUPPORTED
|
||
|
|
default n
|
||
|
|
help
|
||
|
|
Ensure the I3C interrupt is Cache-Safe by allowing the interrupt handler to be
|
||
|
|
executable when the cache is disabled (e.g. SPI Flash write).
|
||
|
|
|
||
|
|
config I3C_MASTER_ENABLE_DEBUG_LOG
|
||
|
|
bool "Enable I3C debug log"
|
||
|
|
default n
|
||
|
|
help
|
||
|
|
whether to enable the debug log message for I3C driver.
|
||
|
|
Note that this option only controls the I3C driver log, will not affect other drivers.
|
||
|
|
|
||
|
|
config I3C_MASTER_ISR_HANDLER_IN_IRAM
|
||
|
|
bool "Place I3C master ISR handler into IRAM"
|
||
|
|
select GDMA_CTRL_FUNC_IN_IRAM if SOC_GDMA_SUPPORTED
|
||
|
|
default n
|
||
|
|
help
|
||
|
|
Place I3C master ISR handler into IRAM for better performance and fewer cache misses.
|
||
|
|
|
||
|
|
endmenu # I3C Master Configurations
|