diff options
author | Olof Johansson <olof@lixom.net> | 2016-11-18 09:53:55 -0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2016-11-18 09:53:55 -0800 |
commit | 555b2b5d254d60c8b7b8ec566d2f8226f2441a5e (patch) | |
tree | d5fa887cda974512f5e557fd21140ad0ac105b1e /Documentation/devicetree/bindings | |
parent | e87c077ff6d519676cf40f7090d74828be878a2a (diff) | |
parent | 2ae2e28852f21ec9efc527c1f3ecc5f7c7e27e42 (diff) | |
download | linux-555b2b5d254d60c8b7b8ec566d2f8226f2441a5e.tar.gz linux-555b2b5d254d60c8b7b8ec566d2f8226f2441a5e.tar.bz2 linux-555b2b5d254d60c8b7b8ec566d2f8226f2441a5e.zip |
Merge tag 'at91-ab-4.10-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux into next/drivers
Drivers for 4.10:
- few fixes for the memory drivers
- minimal security module driver
- support for the Secure SRAM
* tag 'at91-ab-4.10-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux:
misc: sram: add Atmel securam support
misc: sram: document new compatible
ARM: at91: add secumod register definitions
Documentation: dt: atmel-at91: Document secumod bindings
memory: atmel-sdramc: use builtin_platform_driver to simplify the code
memory: atmel-ebi: fix return value check in at91_ebi_dev_disable()
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'Documentation/devicetree/bindings')
-rw-r--r-- | Documentation/devicetree/bindings/arm/atmel-at91.txt | 16 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/sram/sram.txt | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/arm/atmel-at91.txt b/Documentation/devicetree/bindings/arm/atmel-at91.txt index e1f5ad855f14..29737b9b616e 100644 --- a/Documentation/devicetree/bindings/arm/atmel-at91.txt +++ b/Documentation/devicetree/bindings/arm/atmel-at91.txt @@ -225,3 +225,19 @@ required properties: compatible = "atmel,sama5d3-sfr", "syscon"; reg = <0xf0038000 0x60>; }; + +Security Module (SECUMOD) + +The Security Module macrocell provides all necessary secure functions to avoid +voltage, temperature, frequency and mechanical attacks on the chip. It also +embeds secure memories that can be scrambled + +required properties: +- compatible: Should be "atmel,<chip>-secumod", "syscon". + <chip> can be "sama5d2". +- reg: Should contain registers location and length + + secumod@fc040000 { + compatible = "atmel,sama5d2-secumod", "syscon"; + reg = <0xfc040000 0x100>; + }; diff --git a/Documentation/devicetree/bindings/sram/sram.txt b/Documentation/devicetree/bindings/sram/sram.txt index add48f09015e..068c2c03c38f 100644 --- a/Documentation/devicetree/bindings/sram/sram.txt +++ b/Documentation/devicetree/bindings/sram/sram.txt @@ -4,7 +4,7 @@ Simple IO memory regions to be managed by the genalloc API. Required properties: -- compatible : mmio-sram +- compatible : mmio-sram or atmel,sama5d2-securam - reg : SRAM iomem address range |