ARM: dts: Allow simultaneous usage exynos-rng and s5p-sss drivers on exynos5
authorKrzysztof Kozlowski <k.kozlowski.k@gmail.com>
Mon, 11 Jan 2016 11:40:28 +0000 (20:40 +0900)
committerKrzysztof Kozlowski <k.kozlowski@samsung.com>
Mon, 25 Jan 2016 06:25:45 +0000 (15:25 +0900)
The s5p-sss crypto HW acceleration driver supports only AES algorithms
thus it accesses only registers from feeder (offset 0x0, length 0x100)
and AES (offset 0x200, length 0x100) blocks of Security SubSystem (SSS).

The exynos-rng Pseudo Random Number Generator driver accesses only PRNG
block at offset 0x400 (length 0x100).

Narrow the size of memory mapped by s5p-sss driver so both drivers can
be loaded at the same time.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com>
arch/arm/boot/dts/exynos5250.dtsi
arch/arm/boot/dts/exynos5420.dtsi

index 33e2d5f7315b5265fdfc5b74b4a3e38788737f00..234403422c6f4fceb1a8492a470a2ea28fe10a73 100644 (file)
 
        sss@10830000 {
                compatible = "samsung,exynos4210-secss";
-               reg = <0x10830000 0x10000>;
+               reg = <0x10830000 0x300>;
                interrupts = <0 112 0>;
                clocks = <&clock CLK_SSS>;
                clock-names = "secss";
index 48a0a55314f5d184b03d36f1fb52374ef8cf794a..7c8a606d65aab884ab2cb86c56170ade11156dbf 100644 (file)
 
        sss: sss@10830000 {
                compatible = "samsung,exynos4210-secss";
-               reg = <0x10830000 0x10000>;
+               reg = <0x10830000 0x300>;
                interrupts = <0 112 0>;
                clocks = <&clock CLK_SSS>;
                clock-names = "secss";
This page took 0.027222 seconds and 5 git commands to generate.