diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2006-03-22 15:39:03 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-22 22:41:09 -0500 |
commit | b88a0b1d5560cf1959c1565617e460a45c688a08 (patch) | |
tree | 1c0c9badda28c559039b4c4411fb224b899a5b0d /Documentation/powerpc/booting-without-of.txt | |
parent | d56a3e380085bf45cc2adba80c4e6490ba644231 (diff) |
[PATCH] powerpc: Add FSL SEC node to documentation
Documentation: Added FSL SOC SEC node definition
Updated the documentation to include the definition of the SEC device
node format for Freescale SOC devices.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'Documentation/powerpc/booting-without-of.txt')
-rw-r--r-- | Documentation/powerpc/booting-without-of.txt | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/Documentation/powerpc/booting-without-of.txt b/Documentation/powerpc/booting-without-of.txt index d02c64953dcd..ee551c6ea235 100644 --- a/Documentation/powerpc/booting-without-of.txt +++ b/Documentation/powerpc/booting-without-of.txt | |||
@@ -1365,6 +1365,78 @@ platforms are moved over to use the flattened-device-tree model. | |||
1365 | }; | 1365 | }; |
1366 | 1366 | ||
1367 | 1367 | ||
1368 | g) Freescale SOC SEC Security Engines | ||
1369 | |||
1370 | Required properties: | ||
1371 | |||
1372 | - device_type : Should be "crypto" | ||
1373 | - model : Model of the device. Should be "SEC1" or "SEC2" | ||
1374 | - compatible : Should be "talitos" | ||
1375 | - reg : Offset and length of the register set for the device | ||
1376 | - interrupts : <a b> where a is the interrupt number and b is a | ||
1377 | field that represents an encoding of the sense and level | ||
1378 | information for the interrupt. This should be encoded based on | ||
1379 | the information in section 2) depending on the type of interrupt | ||
1380 | controller you have. | ||
1381 | - interrupt-parent : the phandle for the interrupt controller that | ||
1382 | services interrupts for this device. | ||
1383 | - num-channels : An integer representing the number of channels | ||
1384 | available. | ||
1385 | - channel-fifo-len : An integer representing the number of | ||
1386 | descriptor pointers each channel fetch fifo can hold. | ||
1387 | - exec-units-mask : The bitmask representing what execution units | ||
1388 | (EUs) are available. It's a single 32 bit cell. EU information | ||
1389 | should be encoded following the SEC's Descriptor Header Dword | ||
1390 | EU_SEL0 field documentation, i.e. as follows: | ||
1391 | |||
1392 | bit 0 = reserved - should be 0 | ||
1393 | bit 1 = set if SEC has the ARC4 EU (AFEU) | ||
1394 | bit 2 = set if SEC has the DES/3DES EU (DEU) | ||
1395 | bit 3 = set if SEC has the message digest EU (MDEU) | ||
1396 | bit 4 = set if SEC has the random number generator EU (RNG) | ||
1397 | bit 5 = set if SEC has the public key EU (PKEU) | ||
1398 | bit 6 = set if SEC has the AES EU (AESU) | ||
1399 | bit 7 = set if SEC has the Kasumi EU (KEU) | ||
1400 | |||
1401 | bits 8 through 31 are reserved for future SEC EUs. | ||
1402 | |||
1403 | - descriptor-types-mask : The bitmask representing what descriptors | ||
1404 | are available. It's a single 32 bit cell. Descriptor type | ||
1405 | information should be encoded following the SEC's Descriptor | ||
1406 | Header Dword DESC_TYPE field documentation, i.e. as follows: | ||
1407 | |||
1408 | bit 0 = set if SEC supports the aesu_ctr_nonsnoop desc. type | ||
1409 | bit 1 = set if SEC supports the ipsec_esp descriptor type | ||
1410 | bit 2 = set if SEC supports the common_nonsnoop desc. type | ||
1411 | bit 3 = set if SEC supports the 802.11i AES ccmp desc. type | ||
1412 | bit 4 = set if SEC supports the hmac_snoop_no_afeu desc. type | ||
1413 | bit 5 = set if SEC supports the srtp descriptor type | ||
1414 | bit 6 = set if SEC supports the non_hmac_snoop_no_afeu desc.type | ||
1415 | bit 7 = set if SEC supports the pkeu_assemble descriptor type | ||
1416 | bit 8 = set if SEC supports the aesu_key_expand_output desc.type | ||
1417 | bit 9 = set if SEC supports the pkeu_ptmul descriptor type | ||
1418 | bit 10 = set if SEC supports the common_nonsnoop_afeu desc. type | ||
1419 | bit 11 = set if SEC supports the pkeu_ptadd_dbl descriptor type | ||
1420 | |||
1421 | ..and so on and so forth. | ||
1422 | |||
1423 | Example: | ||
1424 | |||
1425 | /* MPC8548E */ | ||
1426 | crypto@30000 { | ||
1427 | device_type = "crypto"; | ||
1428 | model = "SEC2"; | ||
1429 | compatible = "talitos"; | ||
1430 | reg = <30000 10000>; | ||
1431 | interrupts = <1d 3>; | ||
1432 | interrupt-parent = <40000>; | ||
1433 | num-channels = <4>; | ||
1434 | channel-fifo-len = <24>; | ||
1435 | exec-units-mask = <000000fe>; | ||
1436 | descriptor-types-mask = <073f1127>; | ||
1437 | }; | ||
1438 | |||
1439 | |||
1368 | More devices will be defined as this spec matures. | 1440 | More devices will be defined as this spec matures. |
1369 | 1441 | ||
1370 | 1442 | ||