* [PATCH 0/3] Dts nodes for Keystone2 hw_rng driver
@ 2018-05-24 13:12 Vitaly Andrianov
2018-05-24 13:12 ` [PATCH 1/3] ARM: dts: k2hk: add dts node for k2hk " Vitaly Andrianov
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Vitaly Andrianov @ 2018-05-24 13:12 UTC (permalink / raw)
To: linux-arm-kernel
This series adds dts nodes for Keystone2 hw_rng driver
Vitaly Andrianov (3):
ARM: dts: k2hk: add dts node for k2hk hw_rng driver
ARM: dts: k2l: add dts node for k2l hw_rng driver
ARM: dts: k2e: add dts node for k2e hw_rng driver
arch/arm/boot/dts/keystone-k2e-netcp.dtsi | 20 ++++++++++++++++++++
arch/arm/boot/dts/keystone-k2hk-netcp.dtsi | 20 ++++++++++++++++++++
arch/arm/boot/dts/keystone-k2l-netcp.dtsi | 20 ++++++++++++++++++++
3 files changed, 60 insertions(+)
--
2.7.4
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/3] ARM: dts: k2hk: add dts node for k2hk hw_rng driver
2018-05-24 13:12 [PATCH 0/3] Dts nodes for Keystone2 hw_rng driver Vitaly Andrianov
@ 2018-05-24 13:12 ` Vitaly Andrianov
2018-05-24 13:12 ` [PATCH 2/3] ARM: dts: k2l: add dts node for k2l " Vitaly Andrianov
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Vitaly Andrianov @ 2018-05-24 13:12 UTC (permalink / raw)
To: linux-arm-kernel
This patch adds dts node for k2hk hw_random generator driver
Signed-off-by: Vitaly Andrianov <vitalya@ti.com>
[t-kristo at ti.com: added missing addresses from node identifiers]
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
---
arch/arm/boot/dts/keystone-k2hk-netcp.dtsi | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/arch/arm/boot/dts/keystone-k2hk-netcp.dtsi b/arch/arm/boot/dts/keystone-k2hk-netcp.dtsi
index b88c068..e203145 100644
--- a/arch/arm/boot/dts/keystone-k2hk-netcp.dtsi
+++ b/arch/arm/boot/dts/keystone-k2hk-netcp.dtsi
@@ -228,3 +228,23 @@ netcp: netcp at 2000000 {
};
};
};
+
+sa_subsys: subsys at 20c0000 {
+ compatible = "simple-bus";
+ #address-cells = <1>;
+ #size-cells = <1>;
+ ranges = <0 0x20c0000 0x40000>;
+
+ sa_config: subsys at 0 {
+ compatible = "syscon";
+ reg = <0x0 0x100>;
+ };
+
+ rng at 24000 {
+ compatible = "ti,keystone-rng";
+ reg = <0x24000 0x1000>;
+ ti,syscon-sa-cfg = <&sa_config>;
+ clocks = <&clksa>;
+ clock-names = "fck";
+ };
+};
--
2.7.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/3] ARM: dts: k2l: add dts node for k2l hw_rng driver
2018-05-24 13:12 [PATCH 0/3] Dts nodes for Keystone2 hw_rng driver Vitaly Andrianov
2018-05-24 13:12 ` [PATCH 1/3] ARM: dts: k2hk: add dts node for k2hk " Vitaly Andrianov
@ 2018-05-24 13:12 ` Vitaly Andrianov
2018-05-24 13:12 ` [PATCH 3/3] ARM: dts: k2e: add dts node for k2e " Vitaly Andrianov
2018-05-26 4:43 ` [PATCH 0/3] Dts nodes for Keystone2 " santosh.shilimkar at oracle.com
3 siblings, 0 replies; 6+ messages in thread
From: Vitaly Andrianov @ 2018-05-24 13:12 UTC (permalink / raw)
To: linux-arm-kernel
This patch adds dts node for k2l hw_random generator driver
Signed-off-by: Vitaly Andrianov <vitalya@ti.com>
[t-kristo at ti.com: added missing addresses from node identifiers]
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
---
arch/arm/boot/dts/keystone-k2l-netcp.dtsi | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/arch/arm/boot/dts/keystone-k2l-netcp.dtsi b/arch/arm/boot/dts/keystone-k2l-netcp.dtsi
index 9ec8422..a2e47ba 100644
--- a/arch/arm/boot/dts/keystone-k2l-netcp.dtsi
+++ b/arch/arm/boot/dts/keystone-k2l-netcp.dtsi
@@ -208,3 +208,23 @@ netcp: netcp at 26000000 {
};
};
};
+
+sa_subsys: subsys at 26080000 {
+ #address-cells = <1>;
+ #size-cells = <1>;
+ compatible = "simple-bus";
+ ranges = <0 0x26080000 0x40000>;
+
+ sa_config: subsys at 0 {
+ compatible = "syscon";
+ reg = <0x0 0x100>;
+ };
+
+ rng at 24000 {
+ compatible = "ti,keystone-rng";
+ reg = <0x24000 0x1000>;
+ ti,syscon-sa-cfg = <&sa_config>;
+ clocks = <&clksa>;
+ clock-names = "fck";
+ };
+};
--
2.7.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/3] ARM: dts: k2e: add dts node for k2e hw_rng driver
2018-05-24 13:12 [PATCH 0/3] Dts nodes for Keystone2 hw_rng driver Vitaly Andrianov
2018-05-24 13:12 ` [PATCH 1/3] ARM: dts: k2hk: add dts node for k2hk " Vitaly Andrianov
2018-05-24 13:12 ` [PATCH 2/3] ARM: dts: k2l: add dts node for k2l " Vitaly Andrianov
@ 2018-05-24 13:12 ` Vitaly Andrianov
2018-05-26 4:43 ` [PATCH 0/3] Dts nodes for Keystone2 " santosh.shilimkar at oracle.com
3 siblings, 0 replies; 6+ messages in thread
From: Vitaly Andrianov @ 2018-05-24 13:12 UTC (permalink / raw)
To: linux-arm-kernel
This patch adds dts node for k2e hw_random generator driver
Signed-off-by: Vitaly Andrianov <vitalya@ti.com>
Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
---
arch/arm/boot/dts/keystone-k2e-netcp.dtsi | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/arch/arm/boot/dts/keystone-k2e-netcp.dtsi b/arch/arm/boot/dts/keystone-k2e-netcp.dtsi
index a17311c..1db17ec 100644
--- a/arch/arm/boot/dts/keystone-k2e-netcp.dtsi
+++ b/arch/arm/boot/dts/keystone-k2e-netcp.dtsi
@@ -225,3 +225,23 @@ netcp: netcp at 24000000 {
};
};
};
+
+sa_subsys: subsys at 24080000 {
+ #address-cells = <1>;
+ #size-cells = <1>;
+ compatible = "simple-bus";
+ ranges = <0 0x24080000 0x40000>;
+
+ sa_config: subsys at 0 {
+ compatible = "syscon";
+ reg = <0x0 0x100>;
+ };
+
+ rng at 24000 {
+ compatible = "ti,keystone-rng";
+ reg = <0x24000 0x1000>;
+ ti,syscon-sa-cfg = <&sa_config>;
+ clocks = <&clksa>;
+ clock-names = "fck";
+ };
+};
--
2.7.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 0/3] Dts nodes for Keystone2 hw_rng driver
2018-05-24 13:12 [PATCH 0/3] Dts nodes for Keystone2 hw_rng driver Vitaly Andrianov
` (2 preceding siblings ...)
2018-05-24 13:12 ` [PATCH 3/3] ARM: dts: k2e: add dts node for k2e " Vitaly Andrianov
@ 2018-05-26 4:43 ` santosh.shilimkar at oracle.com
2018-06-26 21:17 ` Santosh Shilimkar
3 siblings, 1 reply; 6+ messages in thread
From: santosh.shilimkar at oracle.com @ 2018-05-26 4:43 UTC (permalink / raw)
To: linux-arm-kernel
On 5/24/18 6:12 AM, Vitaly Andrianov wrote:
> This series adds dts nodes for Keystone2 hw_rng driver
>
> Vitaly Andrianov (3):
> ARM: dts: k2hk: add dts node for k2hk hw_rng driver
> ARM: dts: k2l: add dts node for k2l hw_rng driver
> ARM: dts: k2e: add dts node for k2e hw_rng driver
>
Looks good. Will queue this up for 4.19. Thanks !!
Regards,
Santosh
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 0/3] Dts nodes for Keystone2 hw_rng driver
2018-05-26 4:43 ` [PATCH 0/3] Dts nodes for Keystone2 " santosh.shilimkar at oracle.com
@ 2018-06-26 21:17 ` Santosh Shilimkar
0 siblings, 0 replies; 6+ messages in thread
From: Santosh Shilimkar @ 2018-06-26 21:17 UTC (permalink / raw)
To: linux-arm-kernel
On 5/25/2018 9:43 PM, santosh.shilimkar at oracle.com wrote:
> On 5/24/18 6:12 AM, Vitaly Andrianov wrote:
>> This series adds dts nodes for Keystone2 hw_rng driver
>>
>> Vitaly Andrianov (3):
>> ?? ARM: dts: k2hk: add dts node for k2hk hw_rng driver
>> ?? ARM: dts: k2l: add dts node for k2l hw_rng driver
>> ?? ARM: dts: k2e: add dts node for k2e hw_rng driver
>>
> Looks good. Will queue this up for 4.19. Thanks !!
>
Applied. You should see it in linux-next as well.
Regards,
Santosh
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-06-26 21:17 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-24 13:12 [PATCH 0/3] Dts nodes for Keystone2 hw_rng driver Vitaly Andrianov
2018-05-24 13:12 ` [PATCH 1/3] ARM: dts: k2hk: add dts node for k2hk " Vitaly Andrianov
2018-05-24 13:12 ` [PATCH 2/3] ARM: dts: k2l: add dts node for k2l " Vitaly Andrianov
2018-05-24 13:12 ` [PATCH 3/3] ARM: dts: k2e: add dts node for k2e " Vitaly Andrianov
2018-05-26 4:43 ` [PATCH 0/3] Dts nodes for Keystone2 " santosh.shilimkar at oracle.com
2018-06-26 21:17 ` Santosh Shilimkar
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).