fix(soc/esp32h2): Update the description of the ECDSA_WORK_MODE

This commit is contained in:
Jiang Guang Ming 2023-09-04 16:07:39 +08:00
parent 4a221b0346
commit 9ed6944c0d
2 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@ extern "C" {
*/
#define ECDSA_CONF_REG (DR_REG_ECDSA_BASE + 0x4)
/** ECDSA_WORK_MODE : R/W; bitpos: [0]; default: 0;
* The work mode bits of ECDSA Accelerator. 0: Signature Generate Mode. 1: Signature
* Verify Mode.
* The work mode bits of ECDSA Accelerator. 0: Signature Verify mode. 1: Signature
* Generate Mode.
*/
#define ECDSA_WORK_MODE (BIT(0))
#define ECDSA_WORK_MODE_M (ECDSA_WORK_MODE_V << ECDSA_WORK_MODE_S)

View File

@ -19,8 +19,8 @@ extern "C" {
typedef union {
struct {
/** work_mode : R/W; bitpos: [0]; default: 0;
* The work mode bits of ECDSA Accelerator. 0: Signature Generate Mode. 1: Signature
* Verify Mode.
* The work mode bits of ECDSA Accelerator. 0: Signature Verify Mode. 1: Signature
* Generate Mode.
*/
uint32_t work_mode:1;
/** ecc_curve : R/W; bitpos: [1]; default: 0;