Changes

1,019 bytes added ,  22:14, 10 March 2009
no edit summary
Line 1: Line 1:  
{{Infobox MMIO
 
{{Infobox MMIO
 
| arm = Full
 
| arm = Full
| base = 0x0d030000
+
| base = 0x0d020000
| len = 0x1c
+
| len = 0x14
 
| bits = 32
 
| bits = 32
| hwdirq = 3
+
| hwdirq = 2
 
}}
 
}}
 +
The Hollywood's SHA-1 Engine calculates the SHA-1 compression function over a series of 64-byte data blocks and an initial 160-bit hash value, producing an output 160-bit SHA-1 hash. It does not perform SHA-1 input padding; this operation must be performed in software, and then an integer number of data blocks must be sent to the engine.
   −
{| border="1"
+
== Register List ==
! base      !! function !! offset !! description !! contents/example
+
{{reglist|SHA-1 Engine}}
|-
+
{{rla|0x0d030000|32|SHA_CTRL|SHA-1 Control and Status}}
||0x0D030000||SHA-1     ||
+
{{rla|0x0d030004|32|SHA_SRC|Source memory address}}
|-
+
{{rla|0x0d030008|32|SHA_H0|H0 hash value}}
||          ||          || 0000 R  || status || MSB means busy
+
{{rla|0x0d03000c|32|SHA_H1|H1 hash value}}
|-
+
{{rla|0x0d030010|32|SHA_H2|H2 hash value}}
||          ||          || 0000 W  || command || 0x00000000 Reset?
+
{{rla|0x0d030014|32|SHA_H3|H3 hash value}}
|-
+
{{rla|0x0d030018|32|SHA_H4|H4 hash value}}
||          ||          ||        ||        || 0x8000001F Calculate hash, then increase address by size 0x800
  −
|-
  −
||          ||          || 0004 W  || address || Physical address of data
  −
|-
  −
||          ||          || 0008 R  || hash || 1. part of hash value
  −
|-
  −
||          ||          || 0008 W  || init || 1. part of hash init value: 0x67452301
  −
|-
  −
||           ||          || 000c R  || hash || 2. part of hash value
  −
|-
  −
||          ||          || 000c W  || init || 2. part of hash init value: 0xEFCDAB89
  −
|-
  −
||          ||          || 0010 R  || hash || 3. part of hash value
  −
|-
  −
||          ||          || 0010 W  || init || 3. part of hash init value: 0x98BADCFE
  −
|-
  −
||          ||          || 0014 R  || hash || 4. part of hash value
  −
|-
  −
||          ||          || 0014 W  || init || 4. part of hash init value: 0x10325476
  −
|-
  −
||          ||          || 0018 R  || hash || 5. part of hash value
  −
|-
  −
||          ||          || 0018 W  || init || 5. part of hash init value: 0xC3D2E1F0
   
|}
 
|}
 +
== Register Details ==
 +
{{reg32 | SHA_CTRL | addr = 0x0d030000 | hifields = 4 | lofields = 2 |
 +
|1|1|1|13|
 +
|R/W|R/W|R/W|U|
 +
|EXEC|IRQ|ERR|||
 +
|6|10|
 +
|U|W|
 +
||BLOCKS|
 +
}}
 +
This register controls the state of the SHA-1 engine.
 +
{{regdesc
 +
|EXEC|Write 1: initiate SHA-1 hashing<br/>Write 0: reset SHA-1 engine<br/>Read: SHA-1 engine busy
 +
|IRQ|Set to enable IRQ generation when hashing is complete
 +
|ERR|If set, SHA-1 error occured (?){{check}}
 +
|DATALEN|Number of 64-byte blocks to process, minus one. 0 means one block.
 +
}}
 +
----
 +
{{regsimple2 | SHA_SRC | addr = 0x0d030004 | bits = 32 | split=6 | access = U | accesshi = R/W }}
 +
This register contains the DMA address of the data to be hashed. The address must be 64-byte aligned.
 +
The engine updates this register as it processes the blocks.
 +
----
 +
{{regsimple | SHA_H0 | addr = 0x0d030008 | bits = 32 | access = R/W }}
 +
{{regsimple | SHA_H1 | addr = 0x0d03000c | bits = 32 | access = R/W }}
 +
{{regsimple | SHA_H2 | addr = 0x0d030010 | bits = 32 | access = R/W }}
 +
{{regsimple | SHA_H3 | addr = 0x0d030014 | bits = 32 | access = R/W }}
 +
{{regsimple | SHA_H4 | addr = 0x0d030018 | bits = 32 | access = R/W }}
 +
These registers contain the SHA-1 hash value. When starting to hash a new data string, they should be initialized to the following constants: ''0x67452301 0xEFCDAB89 0x98BADCFE 0x10325476 0xC3D2E1F0''. They can be preserved across operations to append more data to the hash. When the entire input string plus padding has been sent to the engine for processing, the value contained in these registers is the final SHA-1 Hash.