| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999 |
- /**
- *********************************************************************************
- *
- * @file ald_crypt.c
- * @brief CRYPT module driver.
- * This is the common part of the CRYPT initialization
- *
- * @version V1.0
- * @date 7 Dec 2017
- * @author AE Team
- * @note
- *
- * Copyright (C) Shanghai Eastsoft Microelectronics Co. Ltd. All rights reserved.
- *
- *********************************************************************************
- */
- #include "ald_crypt.h"
- /** @addtogroup ES32FXXX_ALD
- * @{
- */
- /** @defgroup CRYPT CRYPT
- * @brief CRYPT module driver
- * @{
- */
- #ifdef ALD_CRYPT
- /** @addtogroup CRYPT_Private_Functions CRYPT Private Functions
- * @{
- */
- void crypt_reset(crypt_handle_t *hperh);
- #ifdef ALD_DMA
- static void crypt_dma_crypt_cplt(void *arg);
- static void crypt_dma_error(void *arg);
- #endif
- /**
- * @}
- */
- /** @defgroup CRYPT_Public_Functions CRYPT Public Functions
- * @{
- */
- /** @defgroup CRYPT_Public_Functions_Group1 Initialization functions
- * @brief Initialization and Configuration functions
- * @{
- */
- /**
- * @brief Initializes the CRYPT mode according to the specified parameters in
- * the crypt_init_t and create the associated handle.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @retval Status, see @ref ald_status_t.
- */
- ald_status_t crypt_init(crypt_handle_t *hperh)
- {
- uint32_t tmp = 0;
- if (hperh == NULL)
- return ERROR;
- assert_param(IS_CRYPT(hperh->perh));
- assert_param(IS_CRYPT_MODE(hperh->init.mode));
- __LOCK(hperh);
- crypt_reset(hperh);
- if (hperh->state == CRYPT_STATE_RESET)
- __UNLOCK(hperh);
- tmp = hperh->perh->CON;
- hperh->step = 4;
- tmp |= ((1 << CRYPT_CON_FIFOODR_POS) | (hperh->init.mode << CRYPT_CON_MODE_POSS) | \
- (hperh->init.type << CRYPT_CON_TYPE_POSS) | (1 << CRYPT_CON_FIFOEN_POS));
- WRITE_REG(hperh->perh->CON, tmp);
- hperh->state = CRYPT_STATE_READY;
- __UNLOCK(hperh);
- return OK;
- }
- /**
- * @brief Write the Content of KEY.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param key: Pointer to key data buffer
- * @retval Status, see @ref ald_status_t.
- */
- ald_status_t crypt_write_key(crypt_handle_t *hperh, uint32_t *key)
- {
- uint32_t *temp = key;
- uint32_t i;
- if (hperh->state == CRYPT_STATE_BUSY)
- return BUSY;
- if ((hperh == NULL) || (key == NULL))
- return ERROR;
- assert_param(IS_CRYPT(hperh->perh));
- hperh->perh->KEY[3] = *temp++;
- hperh->perh->KEY[2] = *temp++;
- hperh->perh->KEY[1] = *temp++;
- hperh->perh->KEY[0] = *temp;
- for (i = 0; i < 4; i++)
- hperh->key[i] = *key++;
- return OK;
- }
- /**
- * @brief Read the Content of KEY.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param key: The pointer to the key
- * @retval Status, see @ref ald_status_t.
- */
- ald_status_t crypt_read_key(crypt_handle_t *hperh, uint32_t *key)
- {
- uint32_t *temp = key;
- if (hperh->state == CRYPT_STATE_BUSY)
- return BUSY;
- if ((hperh == NULL) || (key == NULL))
- return ERROR;
- assert_param(IS_CRYPT(hperh->perh));
- *temp++ = hperh->perh->KEY[3];
- *temp++ = hperh->perh->KEY[2];
- *temp++ = hperh->perh->KEY[1];
- *temp = hperh->perh->KEY[0];
- return OK;
- }
- /**
- * @brief Write the Content of IV if you use CBC mode
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param iv: Pointer to iv data buffer
- * @retval Status, see @ref ald_status_t.
- */
- ald_status_t crypt_write_ivr(crypt_handle_t *hperh, uint32_t *iv)
- {
- uint32_t *temp = iv;
- uint32_t i;
- if (hperh->state == CRYPT_STATE_BUSY)
- return BUSY;
- if ((hperh == NULL) || (iv == NULL))
- return ERROR;
- assert_param(IS_CRYPT(hperh->perh));
- hperh->perh->IV[3] = *temp++;
- hperh->perh->IV[2] = *temp++;
- hperh->perh->IV[1] = *temp++;
- hperh->perh->IV[0] = *temp;
- for (i = 0; i < 4; i++)
- hperh->iv[i] = *iv++;
- CRYPT_IVEN_ENABLE(hperh);
- return OK;
- }
- /**
- * @brief Read the Content of IV.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param iv: Pointer to iv data buffer
- * @retval Status, see @ref ald_status_t.
- */
- ald_status_t crypt_read_ivr(crypt_handle_t *hperh, uint32_t *iv)
- {
- uint32_t *temp = iv;
- if (hperh->state == CRYPT_STATE_BUSY)
- return BUSY;
- if ((hperh == NULL) || (iv == NULL))
- return ERROR;
- assert_param(IS_CRYPT(hperh->perh));
- *temp++ = hperh->perh->IV[3];
- *temp++ = hperh->perh->IV[2];
- *temp++ = hperh->perh->IV[1];
- *temp = hperh->perh->IV[0];
- return OK;
- }
- /**
- * @}
- */
- /** @defgroup CRYPT_Public_Functions_Group2 Encrypt or Decrypt functions
- * @brief Encrypt or Decrypt functions
- * @{
- */
- /**
- * @brief Encrypt an amount of data in blocking mode.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param plain_text: Pointer to plain data buffer
- * @param cipher_text: Pointer to cipher data buffer
- * @param size: Amount of plain data
- * @retval Status, see @ref ald_status_t.
- * @note the size is multiple of 16(ase)
- */
- ald_status_t crypt_encrypt(crypt_handle_t *hperh, uint8_t *plain_text, uint8_t *cipher_text, uint32_t size)
- {
- uint32_t count = 0;
- uint32_t i;
- uint32_t *plain_buf = (uint32_t *)plain_text;
- uint32_t *cipher_buf = (uint32_t *)cipher_text;
- if (hperh->state != CRYPT_STATE_READY)
- return ERROR;
- if ((plain_buf == NULL) || (cipher_buf == NULL) || (size == 0))
- return ERROR;
- assert_param(IS_CRYPT(hperh->perh));
- __LOCK(hperh);
- hperh->state = CRYPT_STATE_BUSY;
- CRYPT_SETDIR(hperh, CRYPT_ENCRYPT);
- count = size / (4 * hperh->step);
- while (count--) {
- for (i = 0; i < hperh->step; i++) {
- CRYPT_WRITE_FIFO(hperh, *plain_buf);
- plain_buf++;
- }
- while (crypt_get_flag_status(hperh, CRYPT_FLAG_DONE) == SET);
- for (i = 0; i < hperh->step; i++) {
- *cipher_buf = CRYPT_READ_FIFO(hperh);
- cipher_buf++;
- }
- }
- hperh->state = CRYPT_STATE_READY;
- __UNLOCK(hperh);
- return OK;
- }
- /**
- * @brief Decrypt an amount of data in blocking mode.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param cipher_text: Pointer to cipher data buffer
- * @param plain_text: Pointer to plain data buffer
- * @param size: Amount of cipher data
- * @retval Status, see @ref ald_status_t.
- * @note the size is multiple of 16(ase)
- */
- ald_status_t crypt_decrypt(crypt_handle_t *hperh, uint8_t *cipher_text, uint8_t *plain_text, uint32_t size)
- {
- uint32_t count = 0;
- uint32_t i;
- uint32_t *plain_buf = (uint32_t*)plain_text;
- uint32_t *cipher_buf = (uint32_t*)cipher_text;
- if (hperh->init.mode == CRYPT_MODE_CTR) {
- return crypt_encrypt(hperh, cipher_text, plain_text, size);
- }
- if (hperh->state != CRYPT_STATE_READY)
- return ERROR;
- if ((plain_buf == NULL) || (cipher_buf == NULL) || (size == 0))
- return ERROR;
- assert_param(IS_CRYPT(hperh->perh));
- __LOCK(hperh);
- hperh->state = CRYPT_STATE_BUSY;
- CRYPT_SETDIR(hperh, CRYPT_DECRYPT);
- count = size / (4 * hperh->step);
- while (count--) {
- for (i = 0; i < hperh->step; i++) {
- CRYPT_WRITE_FIFO(hperh, *cipher_buf);
- cipher_buf++;
- }
- while (crypt_get_flag_status(hperh, CRYPT_FLAG_DONE) == SET);
- for (i = 0; i < hperh->step; i++) {
- *plain_buf = CRYPT_READ_FIFO(hperh);
- plain_buf++;
- }
- }
- hperh->state = CRYPT_STATE_READY;
- __UNLOCK(hperh);
- return OK;
- }
- void gcm_mul(uint32_t *res, uint32_t *data, uint32_t *iv)
- {
- CRYPT->CON = 0;
- CRYPT->DATA[0] = data[3];
- CRYPT->DATA[1] = data[2];
- CRYPT->DATA[2] = data[1];
- CRYPT->DATA[3] = data[0];
- CRYPT->IV[0] = iv[3];
- CRYPT->IV[1] = iv[2];
- CRYPT->IV[2] = iv[1];
- CRYPT->IV[3] = iv[0];
- CRYPT->CON |= ((1 << CRYPT_CON_RESCLR_POS) | (3 << CRYPT_CON_MODE_POSS) | \
- (1 << CRYPT_CON_GO_POS));
- while (READ_BIT(CRYPT->IF, CRYPT_IF_MULTHIF_MSK) == 0);
- res[3] = CRYPT->RES[0];
- res[2] = CRYPT->RES[1];
- res[1] = CRYPT->RES[2];
- res[0] = CRYPT->RES[3];
- WRITE_REG(CRYPT->IFC, CRYPT_IFC_MULTHIFC_MSK);
- return;
- }
- /**
- * @brief verify an amount of data in gcm mode.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param cipher_text: Pointer to cipher data buffer
- * @param size: Amount of cipher data
- * @param aadata: Pointer to additional authenticated data buffer
- * @param alen: Amount of additional authenticated data
- * @param tag: Pointer to authentication tag buffer
- * @retval Status, see @ref ald_status_t.
- */
- ald_status_t crypt_gcm_verify(crypt_handle_t *hperh, uint8_t *cipher_text, uint32_t size, uint8_t *aadata, uint32_t alen, uint8_t *tag)
- {
- uint8_t GCM_HASH_in[0x60] = {0};
- uint8_t ecb[16] = {0};
- uint32_t x_temp[4];
- uint64_t u, v;
- uint32_t len = 0;
- uint32_t j, i, k;
- uint32_t *tag_temp, *cipher_text_temp;
- /* calculate u and v */
- u = 128 * ((size % 16) ? (size / 16 + 1) : size / 16) - size * 8;
- v = 128 * ((alen % 16) ? (alen / 16 + 1): alen / 16) - alen * 8;
- /* get the input of GHASH algorithm,the input:A||0^v||C||0^u||[len(A)]_64||[len(C)]_64 */
- for (i = 0; i < alen; i++) {
- GCM_HASH_in [i] = * (aadata + i);
- }
- len += alen;
- for (i = 0; i < v / 8; i++) {
- GCM_HASH_in[i + len] = 0;
- }
- len += v / 8;
- for (i = 0; i < size; i++) {
- GCM_HASH_in[i + len] = * (cipher_text + i);
- }
- len += size;
- for (i = 0; i < u / 8; i++) {
- GCM_HASH_in[i + len] = 0;
- }
- len += u / 8;
- for (i = 0; i < 4; i++) {
- GCM_HASH_in[i + len] = 0;
- }
- len += 4;
- for (i = 0; i < 4; i++) {
- GCM_HASH_in[i + len] = ((alen * 8) >> (8 * i)) & 0xFF;
- }
- len += 4;
- for (i = 0; i < 4; i++) {
- GCM_HASH_in[i + len] = 0;
- }
- len += 4;
- for (i = 0; i < 4; i++) {
- GCM_HASH_in[i + len] = ((size * 8) >> (8 * i)) & 0xFF;
- }
- len += 4;
- CRYPT->CON &= ~(3 << CRYPT_CON_MODE_POSS);
- CRYPT->CON |= (CRYPT_MODE_ECB << CRYPT_CON_MODE_POSS);
- crypt_encrypt(hperh, ecb, ecb, 16);
- k = len / 16;
- for (i = 0; i < 16; i++) {
- tag[i] = 0;
- }
- cipher_text_temp = (uint32_t *)GCM_HASH_in;
- tag_temp = (uint32_t *)tag;
- for (i = 0; i < k; i++) {
- for (j = 0; j < 4; j++) {
- x_temp[j] = (*cipher_text_temp) ^ tag_temp[j];
- ++cipher_text_temp;
- }
- gcm_mul((uint32_t *)tag_temp, x_temp, (uint32_t *)ecb);
- }
- /* calculate the authentication tag T,
- * T = CIPH_K(J0)^S,J0=IV||0^31||1,CIPH_K is the algorithm of AES in ECB mode
- */
- tag_temp = (uint32_t *)tag;
- crypt_init(hperh);
- CRYPT->CON &= ~(3 << CRYPT_CON_MODE_POSS);
- CRYPT->CON |= (CRYPT_MODE_CTR << CRYPT_CON_MODE_POSS);
- crypt_write_key(hperh, hperh->key);
- hperh->iv[3] = 1;
- crypt_write_ivr(hperh, hperh->iv);
- crypt_encrypt(hperh, tag, tag, 16);
- return OK;
- }
- /**
- * @brief Encrypt an amount of data in non-blocking mode.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param plain_text: Pointer to plain data buffer
- * @param cipher_text: Pointer to cipher data buffer
- * @param size: Amount of plain data
- * @retval Status, see @ref ald_status_t.
- * @note the size is multiple of 16(ase)
- */
- ald_status_t crypt_encrypt_by_it(crypt_handle_t *hperh, uint8_t * plain_text, uint8_t *cipher_text, uint32_t size)
- {
- uint32_t i;
- uint32_t *plain_buf = (uint32_t *)plain_text;
- if (hperh->state != CRYPT_STATE_READY)
- return ERROR;
- if ((plain_text == NULL) || (cipher_text == NULL) || (size == 0))
- return ERROR;
- assert_param(IS_CRYPT(hperh->perh));
- __LOCK(hperh);
- hperh->state = CRYPT_STATE_BUSY;
- CRYPT_SETDIR(hperh, CRYPT_ENCRYPT);
- hperh->count = hperh->step;
- hperh->plain_text = plain_text;
- hperh->cipher_text = cipher_text;
- hperh->size = size;
- crypt_interrupt_config(hperh, CRYPT_IT_IT, ENABLE);
- for (i = 0; i < hperh->step; i++) {
- CRYPT_WRITE_FIFO(hperh, *plain_buf);
- ++plain_buf;
- }
- __UNLOCK(hperh);
- return OK;
- }
- /**
- * @brief Decrypt an amount of data in non-blocking mode.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param plain_text: Pointer to plain data buffer
- * @param cipher_text: Pointer to cipher data buffer
- * @param size: Amount of cipher data
- * @retval Status, see @ref ald_status_t.
- * @note the size is multiple of 16(ase)
- */
- ald_status_t crypt_decrypt_by_it(crypt_handle_t *hperh, uint8_t *cipher_text, uint8_t *plain_text, uint32_t size)
- {
- uint32_t i;
- uint32_t *cipher_buf = (uint32_t*)cipher_text;
- if (hperh->init.mode == CRYPT_MODE_CTR) {
- return crypt_decrypt_by_it(hperh, cipher_text, plain_text, size);
- }
- if (hperh->state != CRYPT_STATE_READY)
- return ERROR;
- if ((plain_text == NULL) || (cipher_text == NULL) || (size == 0))
- return ERROR;
- assert_param(IS_CRYPT(hperh->perh));
- __LOCK(hperh);
- hperh->state = CRYPT_STATE_BUSY;
- CRYPT_SETDIR(hperh, CRYPT_DECRYPT);
- hperh->count = hperh->step;
- hperh->plain_text = plain_text;
- hperh->cipher_text = cipher_text;
- hperh->size = size;
- crypt_interrupt_config(hperh, CRYPT_IT_IT, ENABLE);
- for (i = 0; i < hperh->step; i++) {
- CRYPT_WRITE_FIFO(hperh, *cipher_buf);
- cipher_buf++;
- }
- __UNLOCK(hperh);
- return OK;
- }
- #ifdef ALD_DMA
- /**
- * @brief Encrypt an amount of data in non-blocking mode.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param plain_text: Pointer to plain data buffer
- * @param cipher_text: Pointer to cipher data buffer
- * @param size: Amount of plain data
- * @param channel_m2p: Memory to Crypt module DMA channel
- * @param channel_p2m: Crypt module to Memory DMA channel
- * @retval Status, see @ref ald_status_t.
- * @note the size is multiple of 16(ase)
- */
- ald_status_t crypt_encrypt_by_dma(crypt_handle_t *hperh, uint8_t * plain_text,
- uint8_t *cipher_text, uint32_t size, uint8_t channel_m2p, uint8_t channel_p2m)
- {
- if (hperh->state != CRYPT_STATE_READY)
- return ERROR;
- if (plain_text == NULL || cipher_text == NULL || size == 0)
- return ERROR;
- assert_param(IS_CRYPT(hperh->perh));
- __LOCK(hperh);
- hperh->state = CRYPT_STATE_BUSY;
- hperh->plain_text = plain_text;
- hperh->cipher_text = cipher_text;
- hperh->size = size;
- hperh->count = size;
- if (hperh->hdma_m2p.perh == NULL)
- hperh->hdma_m2p.perh = DMA0;
- if (hperh->hdma_p2m.perh == NULL)
- hperh->hdma_p2m.perh = DMA0;
- hperh->hdma_m2p.cplt_arg = NULL;
- hperh->hdma_m2p.cplt_cbk = NULL;
- hperh->hdma_m2p.err_arg = NULL;
- hperh->hdma_m2p.err_cbk = NULL;
- hperh->hdma_p2m.cplt_arg = (void *)hperh;
- hperh->hdma_p2m.cplt_cbk = &crypt_dma_crypt_cplt;
- hperh->hdma_p2m.err_arg = (void *)hperh;
- hperh->hdma_p2m.err_cbk = &crypt_dma_error;
- CRYPT_SETDIR(hperh, CRYPT_ENCRYPT);
- dma_config_struct(&hperh->hdma_m2p.config);
- hperh->hdma_m2p.config.data_width = DMA_DATA_SIZE_WORD;
- hperh->hdma_m2p.config.src = (void *)hperh->plain_text;
- hperh->hdma_m2p.config.dst = (void *)&hperh->perh->FIFO;
- hperh->hdma_m2p.config.size = size / 4;
- hperh->hdma_m2p.config.src_inc = DMA_DATA_INC_WORD;
- hperh->hdma_m2p.config.dst_inc = DMA_DATA_INC_NONE;
- hperh->hdma_m2p.config.msel = DMA_MSEL_CRYPT;
- hperh->hdma_m2p.config.msigsel = DMA_MSIGSEL_CRYPT_WRITE;
- hperh->hdma_m2p.config.channel = channel_m2p;
- dma_config_basic(&(hperh->hdma_m2p));
- dma_config_struct(&hperh->hdma_p2m.config);
- hperh->hdma_p2m.config.data_width = DMA_DATA_SIZE_WORD;
- hperh->hdma_p2m.config.src = (void *)&hperh->perh->FIFO;
- hperh->hdma_p2m.config.dst = (void *)hperh->cipher_text;
- hperh->hdma_p2m.config.size = size / 4;
- hperh->hdma_p2m.config.src_inc = DMA_DATA_INC_NONE;
- hperh->hdma_p2m.config.dst_inc = DMA_DATA_INC_WORD;
- hperh->hdma_p2m.config.msel = DMA_MSEL_CRYPT;
- hperh->hdma_p2m.config.msigsel = DMA_MSIGSEL_CRYPT_READ;
- hperh->hdma_p2m.config.channel = channel_p2m;
- dma_config_basic(&(hperh->hdma_p2m));
- CRYPT_DMA_ENABLE(hperh);
- __UNLOCK(hperh);
- return OK;
- }
- /**
- * @brief Decrypt an amount of data in non-blocking mode.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param plain_text: Pointer to plain data buffer
- * @param cipher_text: Pointer to cipher data buffer
- * @param size: Amount of cipher data
- * @param channel_m2p: Memory to Crypt module DMA channel
- * @param channel_p2m: Crypt module to Memory DMA channel
- * @retval Status, see @ref ald_status_t.
- * @note the size is multiple of 16(ase)
- */
- ald_status_t crypt_decrypt_by_dma(crypt_handle_t *hperh, uint8_t * cipher_text,
- uint8_t *plain_text, uint32_t size, uint8_t channel_m2p, uint8_t channel_p2m)
- {
- if (hperh->init.mode == CRYPT_MODE_CTR)
- return crypt_decrypt_by_dma(hperh, cipher_text, plain_text, size, channel_m2p, channel_p2m);
- if (hperh->state != CRYPT_STATE_READY)
- return ERROR;
- if (plain_text == NULL || cipher_text == NULL || size == 0)
- return ERROR;
- __LOCK(hperh);
- hperh->state = CRYPT_STATE_BUSY;
- hperh->plain_text = plain_text;
- hperh->cipher_text = cipher_text;
- hperh->size = size;
- hperh->count = size;
- if (hperh->hdma_m2p.perh == NULL)
- hperh->hdma_m2p.perh = DMA0;
- if (hperh->hdma_p2m.perh == NULL)
- hperh->hdma_p2m.perh = DMA0;
- hperh->hdma_m2p.cplt_arg = NULL;
- hperh->hdma_m2p.cplt_cbk = NULL;
- hperh->hdma_m2p.err_arg = NULL;
- hperh->hdma_m2p.err_cbk = NULL;
- hperh->hdma_p2m.cplt_arg = (void *)hperh;
- hperh->hdma_p2m.cplt_cbk = &crypt_dma_crypt_cplt;
- hperh->hdma_p2m.err_arg = (void *)hperh;
- hperh->hdma_p2m.err_cbk = &crypt_dma_error;
- CRYPT_SETDIR(hperh, CRYPT_DECRYPT);
- dma_config_struct(&hperh->hdma_m2p.config);
- hperh->hdma_m2p.config.data_width = DMA_DATA_SIZE_WORD;
- hperh->hdma_m2p.config.src = (void *)hperh->cipher_text;
- hperh->hdma_m2p.config.dst = (void *)&hperh->perh->FIFO;
- hperh->hdma_m2p.config.size = size / 4;
- hperh->hdma_m2p.config.src_inc = DMA_DATA_INC_WORD;
- hperh->hdma_m2p.config.dst_inc = DMA_DATA_INC_NONE;
- hperh->hdma_m2p.config.msel = DMA_MSEL_CRYPT;
- hperh->hdma_m2p.config.msigsel = DMA_MSIGSEL_CRYPT_WRITE;
- hperh->hdma_m2p.config.channel = channel_m2p;
- dma_config_basic(&(hperh->hdma_m2p));
- dma_config_struct(&hperh->hdma_p2m.config);
- hperh->hdma_p2m.config.data_width = DMA_DATA_SIZE_WORD;
- hperh->hdma_p2m.config.src = (void *)&hperh->perh->FIFO;
- hperh->hdma_p2m.config.dst = (void *)hperh->plain_text;
- hperh->hdma_p2m.config.size = size / 4;
- hperh->hdma_p2m.config.src_inc = DMA_DATA_INC_NONE;
- hperh->hdma_p2m.config.dst_inc = DMA_DATA_INC_WORD;
- hperh->hdma_p2m.config.msel = DMA_MSEL_CRYPT;
- hperh->hdma_p2m.config.msigsel = DMA_MSIGSEL_CRYPT_READ;
- hperh->hdma_p2m.config.channel = channel_p2m;
- dma_config_basic(&(hperh->hdma_p2m));
- CRYPT_DMA_ENABLE(hperh);
- __UNLOCK(hperh);
- return OK;
- }
- /**
- * @}
- */
- /** @defgroup CRYPT_Public_Functions_Group3 DMA operation functions
- * @brief DMA operation functions
- * @{
- */
- /**
- * @brief Pauses the DMA Transfer.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @retval Status, see @ref ald_status_t.
- */
- ald_status_t crypt_dma_pause(crypt_handle_t *hperh)
- {
- __LOCK(hperh);
- CRYPT_DMA_DISABLE(hperh);
- __UNLOCK(hperh);
- return OK;
- }
- /**
- * @brief Resumes the DMA Transfer.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @retval Status, see @ref ald_status_t.
- */
- ald_status_t crypt_dma_resume(crypt_handle_t *hperh)
- {
- __LOCK(hperh);
- CRYPT_DMA_ENABLE(hperh);
- __UNLOCK(hperh);
- return OK;
- }
- /**
- * @brief Stops the DMA Transfer.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @retval Status, see @ref ald_status_t.
- */
- ald_status_t crypt_dma_stop(crypt_handle_t *hperh)
- {
- __LOCK(hperh);
- CRYPT_DMA_DISABLE(hperh);
- __UNLOCK(hperh);
- hperh->state = CRYPT_STATE_READY;
- return OK;
- }
- #endif
- /**
- * @brief This function handles CRYPT interrupt request.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @retval None
- */
- void crypt_irq_handle(crypt_handle_t *hperh)
- {
- uint32_t i;
- uint32_t *in_buf;
- uint32_t *out_buf;
- if (READ_BIT(hperh->perh->CON, CRYPT_CON_ENCS_MSK)) {
- in_buf = (uint32_t *)hperh->plain_text + hperh->count;
- out_buf = (uint32_t *)hperh->cipher_text + hperh->count - hperh->step;
- }
- else {
- in_buf = (uint32_t *)hperh->cipher_text + hperh->count;
- out_buf = (uint32_t *)hperh->plain_text + hperh->count - hperh->step;
- }
- if (crypt_get_flag_status(hperh, CRYPT_FLAG_AESIF) == SET) {
- crypt_clear_flag_status(hperh, CRYPT_FLAG_AESIF);
- }
- for (i = 0; i < hperh->step; i++)
- *out_buf++ = CRYPT_READ_FIFO(hperh);
- hperh->count += hperh->step;
- if (hperh->count > (hperh->size / 4)) {
- hperh->count = 0;
- hperh->state = CRYPT_STATE_READY;
- if (hperh->crypt_cplt_cbk)
- hperh->crypt_cplt_cbk(hperh);
- }
- else {
- for (i = 0; i < hperh->step; i++) {
- CRYPT_WRITE_FIFO(hperh, *in_buf++);
- }
- }
- }
- /**
- * @}
- */
- /** @defgroup CRYPT_Public_Functions_Group4 Peripheral Control functions
- * @brief CRYPT control functions
- * @{
- */
- /**
- * @brief Enables or disables the specified CRYPT interrupts.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param it: Specifies the CRYPT interrupt sources to be enabled or disabled.
- * This parameter can be one of the following values:
- * @arg crypt_it_t: CRYPT interrupt
- * @param state: New status
- * - ENABLE
- * - DISABLE
- * @retval None
- */
- void crypt_interrupt_config(crypt_handle_t *hperh, crypt_it_t it, type_func_t state)
- {
- assert_param(IS_CRYPT(hperh->perh));
- if (it == CRYPT_IT_IT) {
- CLEAR_BIT(CRYPT->CON, CRYPT_CON_IE_MSK);
- CRYPT->CON |= (state << CRYPT_CON_IE_POS);
- }
- return;
- }
- /** @brief Check whether the specified CRYPT flag is set or not.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param flag: specifies the flag to check.
- * This parameter can be one of the @ref crypt_flag_t.
- * @retval Status
- * - SET
- * - RESET
- */
- flag_status_t crypt_get_flag_status(crypt_handle_t *hperh, crypt_flag_t flag)
- {
- assert_param(IS_CRYPT(hperh->perh));
- assert_param(IS_CRYPT_FLAG(flag));
- if (CRYPT->IF & flag)
- return SET;
- return RESET;
- }
- /** @brief Clear the specified CRYPT pending flags.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param flag: specifies the flag to check.
- * This parameter can be any combination of the following values:
- * @arg CRYPT_FLAG_AESIF: AES encrypt or decrypt Complete flag.
- * @arg CRYPT_FLAG_DONE: encrypt or decrypt Complete flag.
- * @retval None
- */
- void crypt_clear_flag_status(crypt_handle_t *hperh, crypt_flag_t flag)
- {
- assert_param(IS_CRYPT(hperh->perh));
- assert_param(IS_CRYPT_FLAG(flag));
- WRITE_REG(CRYPT->IFC, flag);
- return;
- }
- /**
- * @brief Checks whether the specified CRYPT interrupt has occurred or not.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @param it: Specifies the CRYPT interrupt source to check.
- * This parameter can be one of the following values:
- * @arg crypt_it_t: CRYPT interrupt
- * @retval Status
- * - SET
- * - RESET
- */
- it_status_t crypt_get_it_status(crypt_handle_t *hperh, crypt_it_t it)
- {
- assert_param(IS_CRYPT_IT(it));
- if (READ_BIT(CRYPT->CON, CRYPT_CON_IE_MSK))
- return SET;
- return RESET;
- }
- /**
- * @}
- */
- /** @defgroup CRYPT_Public_Functions_Group5 Peripheral State and Errors functions
- * @brief State and Errors functions
- * @{
- */
- /**
- * @brief Returns the CRYPT state.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @retval CRYPT state
- */
- crypt_state_t crypt_get_state(crypt_handle_t *hperh)
- {
- assert_param(IS_CRYPT(hperh->perh));
- return hperh->state;
- }
- /**
- * @}
- */
- /**
- * @}
- */
- /** @defgroup CRYPT_Private_Functions CRYPT Private Functions
- * @brief CRYPT Private functions
- * @{
- */
- /**
- * @brief Reset the CRYPT peripheral.
- * @param hperh: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @retval None
- */
- void crypt_reset(crypt_handle_t *hperh)
- {
- hperh->perh->DATA[0] = 0x0;
- hperh->perh->DATA[1] = 0x0;
- hperh->perh->DATA[2] = 0x0;
- hperh->perh->DATA[3] = 0x0;
- hperh->perh->KEY[0] = 0x0;
- hperh->perh->KEY[1] = 0x0;
- hperh->perh->KEY[2] = 0x0;
- hperh->perh->KEY[3] = 0x0;
- hperh->perh->KEY[4] = 0x0;
- hperh->perh->KEY[5] = 0x0;
- hperh->perh->KEY[6] = 0x0;
- hperh->perh->KEY[7] = 0x0;
- hperh->perh->IV[0] = 0x0;
- hperh->perh->IV[1] = 0x0;
- hperh->perh->IV[2] = 0x0;
- hperh->perh->IV[3] = 0x0;
- hperh->perh->CON = 0x0;
- hperh->state = CRYPT_STATE_READY;
- __UNLOCK(hperh);
- }
- #ifdef ALD_DMA
- /**
- * @brief DMA CRYPT encrypt or decrypt process complete callback.
- * @param arg: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @retval None
- */
- static void crypt_dma_crypt_cplt(void *arg)
- {
- crypt_handle_t *hperh = (crypt_handle_t *)arg;
- CRYPT_DMA_DISABLE(hperh);
- hperh->count = 0;
- hperh->plain_text = NULL;
- hperh->cipher_text = NULL;
- hperh->size = 0;
- hperh->state = CRYPT_STATE_READY;
- if (hperh->crypt_cplt_cbk)
- hperh->crypt_cplt_cbk(hperh);
- }
- /**
- * @brief DMA CRYPT communication error callback.
- * @param arg: Pointer to a crypt_handle_t structure that contains
- * the configuration information for the specified CRYPT module.
- * @retval None
- */
- static void crypt_dma_error(void *arg)
- {
- crypt_handle_t *hperh = (crypt_handle_t *)arg;
- CRYPT_DMA_DISABLE(hperh);
- hperh->count = 0;
- hperh->plain_text = NULL;
- hperh->cipher_text = NULL;
- hperh->size = 0;
- hperh->state = CRYPT_STATE_READY;
- if (hperh->err_cplt_cbk)
- hperh->err_cplt_cbk(hperh);
- }
- #endif
- /**
- * @}
- */
- /**
- * @}
- */
- #endif /* ALD_CRYPT */
- /**
- * @}
- */
|