| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- /*
- * The register macro of SUNXI SecuritySystem controller.
- *
- * Copyright (C) 2014 Allwinner.
- *
- * Mintow <duanmintao@allwinnertech.com>
- *
- * This file is licensed under the terms of the GNU General Public
- * License version 2. This program is licensed "as is" without any
- * warranty of any kind, whether express or implied.
- */
- #ifndef _SUNXI_CRYPTO_ENGINE_REG_H_
- #define _SUNXI_CRYPTO_ENGINE_REG_H_
- #include "platform_ce.h"
- #ifndef BIT
- #define BIT(nr) (1UL << (nr))
- #endif
- #define AES_MIN_KEY_SIZE 16
- /* CE: Crypto Engine*/
- #define CE_REG_TSK 0x00
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_REG_CTL 0x04
- #endif
- #define CE_REG_ICR 0x08
- #define CE_REG_ISR 0x0C
- #define CE_REG_TLR 0x10
- #define CE_REG_TSR 0x14
- #define CE_REG_ERR 0x18
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_REG_CSS 0x1C
- #define CE_REG_CDS 0x20
- #endif
- #define CE_REG_CSA 0x24
- #define CE_REG_CDA 0x28
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_REG_TPR 0x2C
- #endif
- #ifdef CE_SUPPORT_CE_V3_2
- #define CE_REG_HCSA 0x34
- #define CE_REG_HCDA 0x38
- #define CE_REG_ACSA 0x44
- #define CE_REG_ACDA 0x48
- #define CE_REG_XCSA 0x54
- #define CE_REG_XCDA 0x58
- #endif
- #define CE_REG_VER 0x90
- #define CE_CHAN_INT_ENABLE 1
- #define CE_CHAN_PENDING 1
- #ifndef CE_SUPPORT_CE_V3_1
- #define CE_REG_TLR_METHOD_TYPE_SHIFT 8
- #endif
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_REG_TSR_BUSY 1
- #define CE_REG_TSR_IDLE 0
- #define CE_REG_TSR_BUSY_SHIFT 0
- #define CE_REG_TSR_BUSY_MASK (0x1 << CE_REG_TSR_BUSY_SHIFT)
- #endif
- #define CE_REG_ESR_ERR_UNSUPPORT 0
- #define CE_REG_ESR_ERR_LEN 1
- #define CE_REG_ESR_ERR_KEYSRAM 2
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_REG_ESR_ERR_ADDR 3
- #else
- #define CE_REG_ESR_ERR_ADDR 5
- #endif
- #ifdef CE_SUPPORT_CE_V3_2
- #define CE_REG_ESR_ERR_KEYLADDER 6
- #endif
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_REG_ESR_CHAN_SHIFT 4
- #define CE_REG_ESR_CHAN_MASK(flow) (0xF << (CE_REG_ESR_CHAN_SHIFT*flow))
- #else
- #define CE_REG_ESR_CHAN_SHIFT 8
- #define CE_REG_ESR_CHAN_MASK(flow) (0xFF << (CE_REG_ESR_CHAN_SHIFT*flow))
- #endif
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_REG_CSS_OFFSET_SHIFT 16
- #define CE_REG_CDS_OFFSET_SHIFT 16
- #endif
- /* About the common control word */
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_TASK_INT_ENABLE 1
- #endif
- #define CE_COMM_CTL_TASK_INT_SHIFT 31
- #define CE_COMM_CTL_TASK_INT_MASK (0x1 << CE_COMM_CTL_TASK_INT_SHIFT)
- #define CE_CBC_MAC_LEN_SHIFT 17
- #define CE_HASH_IV_DEFAULT 0
- #define CE_HASH_IV_INPUT 1
- #define CE_COMM_CTL_IV_MODE_SHIFT 16
- #define CE_HMAC_SHA1_LAST BIT(15)
- #define CE_DIR_ENCRYPT 0
- #define CE_DIR_DECRYPT 1
- #define CE_COMM_CTL_OP_DIR_SHIFT 8
- #define CE_METHOD_AES 0
- #define CE_METHOD_DES 1
- #define CE_METHOD_3DES 2
- #define CE_METHOD_MD5 16
- #define CE_METHOD_SHA1 17
- #define CE_METHOD_SHA224 18
- #define CE_METHOD_SHA256 19
- #define CE_METHOD_SHA384 20
- #define CE_METHOD_SHA512 21
- #define CE_METHOD_HMAC_SHA1 22
- #define CE_METHOD_HMAC_SHA256 23
- #define CE_METHOD_RSA 32
- #define CE_METHOD_DH CE_METHOD_RSA
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_METHOD_TRNG 48
- #define CE_METHOD_PRNG 49
- #define CE_METHOD_ECC 64
- #else
- #define CE_METHOD_TRNG 28
- #define CE_METHOD_PRNG 29
- #define CE_METHOD_ECC 33
- #define CE_METHOD_RAES 48
- #endif
- #define SS_RNG_MAX_LEN (0x2000)
- #define CE_COMM_CTL_METHOD_SHIFT 0
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_COMM_CTL_METHOD_MASK 0x3F
- #else
- #define CE_COMM_CTL_METHOD_MASK 0x7F
- #endif
- #define CE_METHOD_IS_HASH(type) ((type == CE_METHOD_MD5) \
- || (type == CE_METHOD_SHA1) \
- || (type == CE_METHOD_SHA224) \
- || (type == CE_METHOD_SHA256) \
- || (type == CE_METHOD_SHA384) \
- || (type == CE_METHOD_SHA512))
- #define CE_METHOD_IS_AES(type) ((type == CE_METHOD_AES) \
- || (type == CE_METHOD_DES) \
- || (type == CE_METHOD_3DES))
- #define CE_METHOD_IS_HMAC(type) ((type == CE_METHOD_HMAC_SHA1) \
- || (type == CE_METHOD_HMAC_SHA256))
- /* About the symmetric control word */
- #define CE_KEY_SELECT_INPUT 0
- #define CE_KEY_SELECT_SSK 1
- #define CE_KEY_SELECT_HUK 2
- #define CE_KEY_SELECT_RSSK 3
- #ifdef CE_SUPPORT_CE_V3_2
- #define CE_KEY_SELECT_SCK0 4
- #define CE_KEY_SELECT_SCK1 5
- #endif
- #define CE_KEY_SELECT_INTERNAL_0 8
- #define CE_KEY_SELECT_INTERNAL_1 9
- #define CE_KEY_SELECT_INTERNAL_2 10
- #define CE_KEY_SELECT_INTERNAL_3 11
- #define CE_KEY_SELECT_INTERNAL_4 12
- #define CE_KEY_SELECT_INTERNAL_5 13
- #define CE_KEY_SELECT_INTERNAL_6 14
- #define CE_KEY_SELECT_INTERNAL_7 15
- #define CE_SYM_CTL_KEY_SELECT_SHIFT 20
- /* The identification string to indicate the key source. */
- #define CE_KS_SSK "KEY_SEL_SSK"
- #define CE_KS_HUK "KEY_SEL_HUK"
- #define CE_KS_RSSK "KEY_SEL_RSSK"
- #ifdef CE_SUPPORT_CE_V3_2
- #define CE_KS_SCK0 "KEY_SEL_SCK0"
- #define CE_KS_SCK1 "KEY_SEL_SCK1"
- #endif
- #define CE_KS_INTERNAL_0 "KEY_SEL_INTRA_0"
- #define CE_KS_INTERNAL_1 "KEY_SEL_INTRA_1"
- #define CE_KS_INTERNAL_2 "KEY_SEL_INTRA_2"
- #define CE_KS_INTERNAL_3 "KEY_SEL_INTRA_3"
- #define CE_KS_INTERNAL_4 "KEY_SEL_INTRA_4"
- #define CE_KS_INTERNAL_5 "KEY_SEL_INTRA_5"
- #define CE_KS_INTERNAL_6 "KEY_SEL_INTRA_6"
- #define CE_KS_INTERNAL_7 "KEY_SEL_INTRA_7"
- #define CE_CFB_WIDTH_1 0
- #define CE_CFB_WIDTH_8 1
- #define CE_CFB_WIDTH_64 2
- #define CE_CFB_WIDTH_128 3
- #define CE_SYM_CTL_CFB_WIDTH_SHIFT 18
- #define CE_SYM_CTL_AES_CTS_LAST BIT(16)
- #ifndef CE_SUPPORT_CE_V3_1
- #define CE_SYM_CTL_AES_XTS_LAST BIT(13)
- #define CE_SYM_CTL_AES_XTS_FIRST BIT(12)
- #endif
- #define CE_AES_MODE_ECB 0
- #define CE_AES_MODE_CBC 1
- #define CE_AES_MODE_CTR 2
- #define CE_AES_MODE_CTS 3
- #define CE_AES_MODE_OFB 4
- #define CE_AES_MODE_CFB 5
- #define CE_AES_MODE_CBC_MAC 6
- #define CE_AES_MODE_XTS 9
- #define CE_SYM_CTL_OP_MODE_SHIFT 8
- #define CE_CTR_SIZE_16 0
- #define CE_CTR_SIZE_32 1
- #define CE_CTR_SIZE_64 2
- #define CE_CTR_SIZE_128 3
- #define CE_SYM_CTL_CTR_SIZE_SHIFT 2
- #define CE_AES_KEY_SIZE_128 0
- #define CE_AES_KEY_SIZE_192 1
- #define CE_AES_KEY_SIZE_256 2
- #define CE_SYM_CTL_KEY_SIZE_SHIFT 0
- #define CE_IS_AES_MODE(type, mode, M) (CE_METHOD_IS_AES(type) \
- && (mode == CE_AES_MODE_##M))
- /* About the asymmetric control word */
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_RSA_PUB_MODULUS_WIDTH_512 0
- #define CE_RSA_PUB_MODULUS_WIDTH_1024 1
- #define CE_RSA_PUB_MODULUS_WIDTH_2048 2
- #define CE_RSA_PUB_MODULUS_WIDTH_3072 3
- #define CE_RSA_PUB_MODULUS_WIDTH_4096 4
- #define CE_ASYM_CTL_RSA_PM_WIDTH_SHIFT 28
- #endif
- #define CE_RSA_OP_M_EXP 0 /* modular exponentiation */
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_RSA_OP_M_MUL 2 /* modular multiplication */
- #else
- #define CE_RSA_OP_M_ADD 1 /* modular add */
- #define CE_RSA_OP_M_MINUS 2 /* modular minus */
- #define CE_RSA_OP_M_MUL 3 /* modular multiplication */
- #endif
- #define CE_ASYM_CTL_RSA_OP_SHIFT 16
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_ECC_PARA_WIDTH_160 0
- #define CE_ECC_PARA_WIDTH_224 2
- #define CE_ECC_PARA_WIDTH_256 3
- #define CE_ECC_PARA_WIDTH_521 5
- #define CE_ASYM_CTL_ECC_PARA_WIDTH_SHIFT 12
- #endif
- #ifdef CE_SUPPORT_CE_V3_1
- #define CE_ECC_OP_POINT_MUL 0
- #define CE_ECC_OP_POINT_ADD 1
- #define CE_ECC_OP_POINT_DBL 2
- #define CE_ECC_OP_POINT_VER 3
- #define CE_ECC_OP_ENC 4
- #define CE_ECC_OP_DEC 5
- #define CE_ECC_OP_SIGN 6
- #define CE_ASYM_CTL_ECC_OP_SHIFT 4
- #else
- #define CE_ECC_OP_POINT_ADD 0 /* point add */
- #define CE_ECC_OP_POINT_DBL 1 /* point double */
- #define CE_ECC_OP_POINT_MUL 2 /* point multiplication */
- #define CE_ECC_OP_POINT_VER 3 /* point verification */
- #define CE_ECC_OP_ENC 4 /* encryption */
- #define CE_ECC_OP_DEC 5 /* decryption */
- #define CE_ECC_OP_SIGN 6 /* sign */
- #define CE_ECC_OP_VERIFY 7 /* verification */
- #endif
- #define CE_SEED_SIZE 24
- /* The descriptor of a CE task. */
- #define CE_SCATTERS_PER_TASK 8
- #endif /* end of _SUNXI_CRYPTO_ENGINE_REG_H_ */
|