blob: 6c2951bb70b1468e6be642d831551c30c2ad0480 [file] [log] [blame]
Nicolas Royerbd3c7b52012-07-01 19:19:44 +02001#ifndef __ATMEL_AES_REGS_H__
2#define __ATMEL_AES_REGS_H__
3
4#define AES_CR 0x00
5#define AES_CR_START (1 << 0)
6#define AES_CR_SWRST (1 << 8)
7#define AES_CR_LOADSEED (1 << 16)
8
9#define AES_MR 0x04
10#define AES_MR_CYPHER_DEC (0 << 0)
11#define AES_MR_CYPHER_ENC (1 << 0)
Cyrille Pitchend4419542015-12-17 18:13:07 +010012#define AES_MR_GTAGEN (1 << 1)
Nicolas Royerbd3c7b52012-07-01 19:19:44 +020013#define AES_MR_DUALBUFF (1 << 3)
14#define AES_MR_PROCDLY_MASK (0xF << 4)
15#define AES_MR_PROCDLY_OFFSET 4
16#define AES_MR_SMOD_MASK (0x3 << 8)
17#define AES_MR_SMOD_MANUAL (0x0 << 8)
18#define AES_MR_SMOD_AUTO (0x1 << 8)
19#define AES_MR_SMOD_IDATAR0 (0x2 << 8)
20#define AES_MR_KEYSIZE_MASK (0x3 << 10)
21#define AES_MR_KEYSIZE_128 (0x0 << 10)
22#define AES_MR_KEYSIZE_192 (0x1 << 10)
23#define AES_MR_KEYSIZE_256 (0x2 << 10)
24#define AES_MR_OPMOD_MASK (0x7 << 12)
25#define AES_MR_OPMOD_ECB (0x0 << 12)
26#define AES_MR_OPMOD_CBC (0x1 << 12)
27#define AES_MR_OPMOD_OFB (0x2 << 12)
28#define AES_MR_OPMOD_CFB (0x3 << 12)
29#define AES_MR_OPMOD_CTR (0x4 << 12)
Cyrille Pitchend4419542015-12-17 18:13:07 +010030#define AES_MR_OPMOD_GCM (0x5 << 12)
Nicolas Royerbd3c7b52012-07-01 19:19:44 +020031#define AES_MR_LOD (0x1 << 15)
32#define AES_MR_CFBS_MASK (0x7 << 16)
33#define AES_MR_CFBS_128b (0x0 << 16)
34#define AES_MR_CFBS_64b (0x1 << 16)
35#define AES_MR_CFBS_32b (0x2 << 16)
36#define AES_MR_CFBS_16b (0x3 << 16)
37#define AES_MR_CFBS_8b (0x4 << 16)
38#define AES_MR_CKEY_MASK (0xF << 20)
39#define AES_MR_CKEY_OFFSET 20
40#define AES_MR_CMTYP_MASK (0x1F << 24)
41#define AES_MR_CMTYP_OFFSET 24
42
43#define AES_IER 0x10
44#define AES_IDR 0x14
45#define AES_IMR 0x18
46#define AES_ISR 0x1C
47#define AES_INT_DATARDY (1 << 0)
48#define AES_INT_URAD (1 << 8)
Cyrille Pitchend4419542015-12-17 18:13:07 +010049#define AES_INT_TAGRDY (1 << 16)
Nicolas Royerbd3c7b52012-07-01 19:19:44 +020050#define AES_ISR_URAT_MASK (0xF << 12)
51#define AES_ISR_URAT_IDR_WR_PROC (0x0 << 12)
52#define AES_ISR_URAT_ODR_RD_PROC (0x1 << 12)
53#define AES_ISR_URAT_MR_WR_PROC (0x2 << 12)
54#define AES_ISR_URAT_ODR_RD_SUBK (0x3 << 12)
55#define AES_ISR_URAT_MR_WR_SUBK (0x4 << 12)
56#define AES_ISR_URAT_WOR_RD (0x5 << 12)
57
58#define AES_KEYWR(x) (0x20 + ((x) * 0x04))
59#define AES_IDATAR(x) (0x40 + ((x) * 0x04))
60#define AES_ODATAR(x) (0x50 + ((x) * 0x04))
61#define AES_IVR(x) (0x60 + ((x) * 0x04))
62
Cyrille Pitchend4419542015-12-17 18:13:07 +010063#define AES_AADLENR 0x70
64#define AES_CLENR 0x74
65#define AES_GHASHR(x) (0x78 + ((x) * 0x04))
66#define AES_TAGR(x) (0x88 + ((x) * 0x04))
67#define AES_CTRR 0x98
68#define AES_GCMHR(x) (0x9c + ((x) * 0x04))
69
Nicolas Royerbd3c7b52012-07-01 19:19:44 +020070#define AES_HW_VERSION 0xFC
71
72#endif /* __ATMEL_AES_REGS_H__ */