devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
  • * [PATCH v3 3/3] ARM: dts: exynos: Add nodes for True Random Number Generator
           [not found] <20171204120429.22892-1-l.stelmach@samsung.com>
           [not found] ` <CGME20171204125413eucas1p17e7b90e3eab244e716ea3b0023ff9a41@eucas1p1.samsung.com>
    @ 2017-12-04 12:53 ` Łukasz Stelmach
      2017-12-11 18:49   ` Krzysztof Kozlowski
           [not found]   ` <CGME20171212120906eucas1p23883590efde24a67800473b0d34871e5@eucas1p2.samsung.com>
      1 sibling, 2 replies; 27+ messages in thread
    From: Łukasz Stelmach @ 2017-12-04 12:53 UTC (permalink / raw)
      To: Andrew F . Davis, PrasannaKumar Muralidharan, Rob Herring,
    	Matt Mackall, Herbert Xu, Krzysztof Kozlowski, Kukjin Kim,
    	devicetree, linux-crypto, linux-samsung-soc, linux-kernel
      Cc: Łukasz Stelmach, Marek Szyprowski, Bartlomiej Zolnierkiewicz
    
    Add nodes for the True Random Number Generator found in Samsung Exynos
    5250+ SoCs.
    
    Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
    ---
     arch/arm/boot/dts/exynos5.dtsi    | 5 +++++
     arch/arm/boot/dts/exynos5250.dtsi | 5 +++++
     arch/arm/boot/dts/exynos5410.dtsi | 5 +++++
     arch/arm/boot/dts/exynos5420.dtsi | 5 +++++
     4 files changed, 20 insertions(+)
    
    diff --git a/arch/arm/boot/dts/exynos5.dtsi b/arch/arm/boot/dts/exynos5.dtsi
    index 33f929c1dda9..e0c91ff4442c 100644
    --- a/arch/arm/boot/dts/exynos5.dtsi
    +++ b/arch/arm/boot/dts/exynos5.dtsi
    @@ -215,5 +215,10 @@
     		      compatible = "samsung,exynos5250-prng";
     		      reg = <0x10830400 0x200>;
     		};
    +
    +		trng: rng@10830600 {
    +		      compatible = "samsung,exynos5250-trng";
    +		      reg = <0x10830600 0x100>;
    +		};
     	};
     };
    diff --git a/arch/arm/boot/dts/exynos5250.dtsi b/arch/arm/boot/dts/exynos5250.dtsi
    index 51aa83ba8c87..38627e8164a0 100644
    --- a/arch/arm/boot/dts/exynos5250.dtsi
    +++ b/arch/arm/boot/dts/exynos5250.dtsi
    @@ -1086,4 +1086,9 @@
     	clock-names = "secss";
     };
     
    +&trng {
    +	clocks = <&clock CLK_SSS>;
    +	clock-names = "secss";
    +};
    +
     #include "exynos5250-pinctrl.dtsi"
    diff --git a/arch/arm/boot/dts/exynos5410.dtsi b/arch/arm/boot/dts/exynos5410.dtsi
    index 1604cb1b837d..aa8b14eda662 100644
    --- a/arch/arm/boot/dts/exynos5410.dtsi
    +++ b/arch/arm/boot/dts/exynos5410.dtsi
    @@ -384,6 +384,11 @@
     		  3 0 0x07000000 0x20000>;
     };
     
    +&trng {
    +	clocks = <&clock CLK_SSS>;
    +	clock-names = "secss";
    +};
    +
     &usbdrd3_0 {
     	clocks = <&clock CLK_USBD300>;
     	clock-names = "usbdrd30";
    diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi
    index 31c77ea9123d..6c8cec9d564a 100644
    --- a/arch/arm/boot/dts/exynos5420.dtsi
    +++ b/arch/arm/boot/dts/exynos5420.dtsi
    @@ -1459,6 +1459,11 @@
     	clock-names = "secss";
     };
     
    +&trng {
    +	clocks = <&clock CLK_SSS>;
    +	clock-names = "secss";
    +};
    +
     &usbdrd3_0 {
     	clocks = <&clock CLK_USBD300>;
     	clock-names = "usbdrd30";
    -- 
    2.11.0
    
    ^ permalink raw reply related	[flat|nested] 27+ messages in thread

  • end of thread, other threads:[~2018-01-05 11:14 UTC | newest]
    
    Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <20171204120429.22892-1-l.stelmach@samsung.com>
         [not found] ` <CGME20171204125413eucas1p17e7b90e3eab244e716ea3b0023ff9a41@eucas1p1.samsung.com>
         [not found]   ` <20171204120429.22892-1-l.stelmach-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
    2017-12-04 12:53     ` [PATCH v3 0/3] True RNG driver for Samsung Exynos 5250+ SoCs Łukasz Stelmach
         [not found]       ` <CGME20171204125414eucas1p1233c2c8ef5b637c3a4565af875515524@eucas1p1.samsung.com>
    2017-12-04 12:53     ` [PATCH v3 1/3] dt-bindings: hwrng: Add Samsung Exynos 5250+ True RNG bindings Łukasz Stelmach
    2017-12-04 13:13       ` Krzysztof Kozlowski
         [not found]         ` <CGME20171205093028eucas1p1fb6d7b8bde6cd5e3a0bfca8ddafe8a31@eucas1p1.samsung.com>
    2017-12-05  9:30           ` Łukasz Stelmach
    2017-12-05 10:04             ` Krzysztof Kozlowski
    2017-12-04 20:27       ` Rob Herring
    2017-12-04 12:53     ` [PATCH v3 2/3] hwrng: exynos - add Samsung Exynos True RNG driver Łukasz Stelmach
    2017-12-04 13:19       ` Krzysztof Kozlowski
         [not found]       ` <20171204125351.26805-3-l.stelmach-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
    2017-12-22  8:24         ` Herbert Xu
    2017-12-22  8:29           ` Marek Szyprowski
    2017-12-22  8:35             ` Herbert Xu
         [not found]               ` <CGME20171222124132eucas1p281d0ae6925ec5358baa3bbbc4e35b628@eucas1p2.samsung.com>
         [not found]                 ` <20171222083551.GF29663-lOAM2aK0SrRLBo1qDEOMRrpzq4S04n8Q@public.gmane.org>
    2017-12-22 12:41                   ` Łukasz Stelmach
    2017-12-22 13:23         ` [PATCH v4] " Łukasz Stelmach
    2017-12-22 13:34           ` Philippe Ombredanne
         [not found]             ` <CGME20171222163901eucas1p253c4258fb141ea955c40185cd2f38197@eucas1p2.samsung.com>
    2017-12-22 16:38               ` Łukasz Stelmach
         [not found]                 ` <87y3luhg4f.fsf%l.stelmach-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
    2017-12-22 18:30                   ` Philippe Ombredanne
         [not found]                     ` <CGME20171227101226eucas1p2baa0309227b8e6a1e77dd7ca88f6412b@eucas1p2.samsung.com>
    2017-12-27 10:12                       ` Łukasz Stelmach
         [not found]                         ` <87shbwh43f.fsf%l.stelmach-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
    2017-12-27 21:51                           ` Philippe Ombredanne
         [not found]           ` <CGME20171222164840eucas1p17e3d17666ba3d0c5fced2d1c9259bf0b@eucas1p1.samsung.com>
    2017-12-22 16:48             ` [PATCH v5] " Łukasz Stelmach
    2017-12-22 18:31               ` Philippe Ombredanne
    2018-01-05 11:14               ` Herbert Xu
    2017-12-04 12:53 ` [PATCH v3 3/3] ARM: dts: exynos: Add nodes for True Random Number Generator Łukasz Stelmach
    2017-12-11 18:49   ` Krzysztof Kozlowski
         [not found]     ` <CGME20171212103557eucas1p202966a9335d52149ce69ef122f1758d8@eucas1p2.samsung.com>
    2017-12-12 10:35       ` Łukasz Stelmach
    2017-12-12 10:49         ` Krzysztof Kozlowski
         [not found]   ` <CGME20171212120906eucas1p23883590efde24a67800473b0d34871e5@eucas1p2.samsung.com>
         [not found]     ` <20171204125351.26805-4-l.stelmach-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
    2017-12-12 12:09       ` [PATCH v4] " Łukasz Stelmach
    2017-12-12 17:44         ` Krzysztof Kozlowski
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).