Home
last modified time | relevance | path

Searched refs:aes_control (Results 1 – 3 of 3) sorted by relevance

/trusted-firmware-m-latest/platform/ext/target/arm/rse/common/cc312/
Dcc3xx_aes_external_key_loader.c36 P_CC3XX->aes.aes_control &= ~(0b11U << 12); in set_key()
37 P_CC3XX->aes.aes_control |= (key_size & 0b11U) << 12; in set_key()
42 P_CC3XX->aes.aes_control &= ~(0b11U << 14); in set_key()
43 P_CC3XX->aes.aes_control |= (key_size & 0b11U) << 14; in set_key()
/trusted-firmware-m-latest/platform/ext/accelerator/cc312/cc312-rom/
Dcc3xx_aes.c115 P_CC3XX->aes.aes_control &= ~(0b11U << 12); in set_key()
116 P_CC3XX->aes.aes_control |= (key_size & 0b11U) << 12; in set_key()
119 P_CC3XX->aes.aes_control &= ~(0b11U << 14); in set_key()
120 P_CC3XX->aes.aes_control |= (key_size & 0b11U) << 14; in set_key()
209 P_CC3XX->aes.aes_control &= ~(0b111U << 2); in set_mode()
210 P_CC3XX->aes.aes_control |= (mode & 0b111U) << 2; in set_mode()
216 P_CC3XX->aes.aes_control &= ~(0b111U << 5); in set_tun1_mode()
217 P_CC3XX->aes.aes_control |= (mode & 0b111U) << 5; in set_tun1_mode()
368 P_CC3XX->aes.aes_control &= ~0b1U; in init_from_state()
369 P_CC3XX->aes.aes_control |= (aes_state.direction & 0b1U); in init_from_state()
[all …]
Dcc3xx_reg_defs.h206 __IOM uint32_t aes_control; variable