Path: blob/main/sys/contrib/device-tree/Bindings/crypto/atmel-crypto.txt
48378 views
* Atmel HW cryptographic accelerators12These are the HW cryptographic accelerators found on some Atmel products.34* Advanced Encryption Standard (AES)56Required properties:7- compatible : Should be "atmel,at91sam9g46-aes".8- reg: Should contain AES registers location and length.9- interrupts: Should contain the IRQ line for the AES.10- dmas: List of two DMA specifiers as described in11atmel-dma.txt and dma.txt files.12- dma-names: Contains one identifier string for each DMA specifier13in the dmas property.1415Example:16aes@f8038000 {17compatible = "atmel,at91sam9g46-aes";18reg = <0xf8038000 0x100>;19interrupts = <43 4 0>;20dmas = <&dma1 2 18>,21<&dma1 2 19>;22dma-names = "tx", "rx";2324* Triple Data Encryption Standard (Triple DES)2526Required properties:27- compatible : Should be "atmel,at91sam9g46-tdes".28- reg: Should contain TDES registers location and length.29- interrupts: Should contain the IRQ line for the TDES.3031Optional properties:32- dmas: List of two DMA specifiers as described in33atmel-dma.txt and dma.txt files.34- dma-names: Contains one identifier string for each DMA specifier35in the dmas property.3637Example:38tdes@f803c000 {39compatible = "atmel,at91sam9g46-tdes";40reg = <0xf803c000 0x100>;41interrupts = <44 4 0>;42dmas = <&dma1 2 20>,43<&dma1 2 21>;44dma-names = "tx", "rx";45};4647* Secure Hash Algorithm (SHA)4849Required properties:50- compatible : Should be "atmel,at91sam9g46-sha".51- reg: Should contain SHA registers location and length.52- interrupts: Should contain the IRQ line for the SHA.5354Optional properties:55- dmas: One DMA specifiers as described in56atmel-dma.txt and dma.txt files.57- dma-names: Contains one identifier string for each DMA specifier58in the dmas property. Only one "tx" string needed.5960Example:61sha@f8034000 {62compatible = "atmel,at91sam9g46-sha";63reg = <0xf8034000 0x100>;64interrupts = <42 4 0>;65dmas = <&dma1 2 17>;66dma-names = "tx";67};686970