drivers: watchdog: stm32: add IWDG standby mode configuration#4
Open
ringlej wants to merge 1 commit intogridpoint-4.3.0from
Open
drivers: watchdog: stm32: add IWDG standby mode configuration#4ringlej wants to merge 1 commit intogridpoint-4.3.0from
ringlej wants to merge 1 commit intogridpoint-4.3.0from
Conversation
Add Kconfig choice to control the IWDG_STDBY option byte, allowing users to configure whether the independent watchdog runs or is frozen during standby mode. Uses the public flash_ex_op API to read/write option bytes at APPLICATION init level (flash device must be ready). Three options: - No change (default): leave option byte as-is, no extra code - Freeze: clear IWDG_STDBY so IWDG is frozen in standby - Active: set IWDG_STDBY so IWDG continues running in standby The write triggers OBL_LAUNCH (system reset) only when the option byte differs from the desired value. On subsequent boots, no write occurs. Signed-off-by: Jon Ringle <jringle@gridpoint.com>
0f0ca2d to
6df4340
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
IWDG_STM32_STANDBY) to control the IWDG_STDBY option byteflash_ex_opAPI (FLASH_STM32_EX_OP_OPTB_READ/WRITE) to manage option bytesSYS_INIT(APPLICATION, 0)to avoid flash semaphore ordering issues at POST_KERNEL