stm32f4: pwr: add missing bits

Extra bits have these names per RM0430 at least.
Reviewed-by: Karl Palsson <karlp@tweak.net.au>
This commit is contained in:
Dima Barsky
2021-11-10 16:08:20 +00:00
committed by Karl Palsson
parent aab1a67344
commit 3e480eecae

View File

@@ -49,7 +49,16 @@ LGPL License Terms @ref lgpl_license
#define PWR_CR_VOS_SHIFT 14
#define PWR_CR_VOS_MASK 0x3
/* Bits [13:10]: Reserved */
/* ADCDC1: Masks extra flash accesses by prefetch (see AN4073) */
#define PWR_CR_ADCDC1 (1 << 13)
/* Bit 12: Reserved */
/* Bit 11: Main regulator Low Voltage in Deep Sleep */
#define PWR_CR_MRLVDS (1 << 11)
/* Bit 10: Low-power regulator Low Voltage in Deep Sleep */
#define PWR_CR_LPLVDS (1 << 10)
/* FPDS: Flash power down in stop mode */
#define PWR_CR_FPDS (1 << 9)