You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#defineCSU_PUF_STATUS_OVERFLOW_MASK0x30000000/* Overflow, if bits are not 0. Reduce SHUT[SOPEN] value. */
492
-
#defineCSU_PUF_STATUS_AUX_MASK0x0FFFFFF0/* During provisioning, auxiliary sundrome bits are stored here and must be written to the eFuse or boot image. */
493
-
#defineCSU_PUF_STATUS_KEY_RDY_MASK0x00000008
494
-
#defineCSU_PUF_STATUS_KEY_ZERO_MASK0x00000002/* Indicates that the PUF key has been zeroized */
495
-
#defineCSU_PUF_STATUS_SYN_WRD_RDY_MASK0x00000001 /* Indicates a syndrome word is ready in the PUF_WORD register. */
#defineCSU_PUF_STATUS_OVERFLOW_MASK(0x3U << 28) /* Overflow, if bits are not 0. Reduce SHUT[SOPEN] value. */
492
+
#defineCSU_PUF_STATUS_AUX_MASK(0xFFFFFFU << 4)/* During provisioning, auxiliary sundrome bits are stored here and must be written to the eFuse or boot image. */
493
+
#defineCSU_PUF_STATUS_KEY_RDY_MASK(0x1U << 3) /* Indicates that the key is ready */
494
+
#defineCSU_PUF_STATUS_KEY_ZERO_MASK(0x1U << 1) /* Indicates that the PUF key has been zeroized */
495
+
#defineCSU_PUF_STATUS_SYN_WRD_RDY_MASK(0x1U << 0) /* Indicates a syndrome word is ready in the PUF_WORD register */
0 commit comments