* [PATCH 3/9] ARM: dts: Add SHAM data and documentation for AM33XX
[not found] ` <1380146469-29496-1-git-send-email-joelf-l0cyMroinI0@public.gmane.org>
@ 2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 4/9] ARM: dts: Add AES " Joel Fernandes
` (4 subsequent siblings)
5 siblings, 0 replies; 12+ messages in thread
From: Joel Fernandes @ 2013-09-25 22:01 UTC (permalink / raw)
To: Benoit Cousson, Tony Lindgren, Arnd Bergmann, Olof Johansson,
Grant Likely, Jason Kridner, Koen Kooi
Cc: Devicetree Discuss, Linux OMAP List, Linux ARM Kernel List,
Paul Walmsley
From: "Mark A. Greer" <mgreer-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
Add the generic AM33XX SHAM module's device tree data and
enable it for the am335x-evm, am335x-evmsk, and am335x-bone
platforms. Also add Documentation file describing the data
for the SHAM module.
CC: Paul Walmsley <paul-DWxLp4Yu+b8AvxtiuMwx3w@public.gmane.org>
Signed-off-by: Mark A. Greer <mgreer-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
---
.../devicetree/bindings/crypto/omap-sham.txt | 31 ++++++++++++++++++++++
arch/arm/boot/dts/am335x-bone.dts | 4 +++
arch/arm/boot/dts/am335x-evm.dts | 4 +++
arch/arm/boot/dts/am335x-evmsk.dts | 4 +++
arch/arm/boot/dts/am33xx.dtsi | 10 +++++++
5 files changed, 53 insertions(+)
create mode 100644 Documentation/devicetree/bindings/crypto/omap-sham.txt
diff --git a/Documentation/devicetree/bindings/crypto/omap-sham.txt b/Documentation/devicetree/bindings/crypto/omap-sham.txt
new file mode 100644
index 0000000..b97710f
--- /dev/null
+++ b/Documentation/devicetree/bindings/crypto/omap-sham.txt
@@ -0,0 +1,31 @@
+OMAP SoC SHA crypto Module
+
+Required properties:
+
+- compatible : Should contain entries for this and backward compatible
+ SHAM versions:
+ - "ti,omap2-sham" for OMAP2 & OMAP3.
+ - "ti,omap4-sham" for OMAP4 and AM33XX.
+ Note that these two versions are incompatible.
+- ti,hwmods: Name of the hwmod associated with the SHAM module
+- reg : Offset and length of the register set for the module
+- interrupt-parent : the phandle for the interrupt controller that
+ services interrupts for this module.
+- interrupts : the interrupt number for the SHAM module.
+
+Optional properties:
+- dmas: DMA specifier for the rx dma. See the DMA client binding,
+ Documentation/devicetree/bindings/dma/dma.txt
+- dma-names: DMA request name. Should be "rx" if a dma is present.
+
+Example:
+ /* AM335x */
+ sham: sham@53100000 {
+ compatible = "ti,omap4-sham";
+ ti,hwmods = "sham";
+ reg = <0x53100000 0x200>;
+ interrupt-parent = <&intc>;
+ interrupts = <109>;
+ dmas = <&edma 36>;
+ dma-names = "rx";
+ };
diff --git a/arch/arm/boot/dts/am335x-bone.dts b/arch/arm/boot/dts/am335x-bone.dts
index 0d63348..8a9802e 100644
--- a/arch/arm/boot/dts/am335x-bone.dts
+++ b/arch/arm/boot/dts/am335x-bone.dts
@@ -19,3 +19,7 @@
&mmc1 {
vmmc-supply = <&ldo3_reg>;
};
+
+&sham {
+ status = "okay";
+};
diff --git a/arch/arm/boot/dts/am335x-evm.dts b/arch/arm/boot/dts/am335x-evm.dts
index 23b0a3e..d59e51c 100644
--- a/arch/arm/boot/dts/am335x-evm.dts
+++ b/arch/arm/boot/dts/am335x-evm.dts
@@ -522,3 +522,7 @@
status = "okay";
vmmc-supply = <&vmmc_reg>;
};
+
+&sham {
+ status = "okay";
+};
diff --git a/arch/arm/boot/dts/am335x-evmsk.dts b/arch/arm/boot/dts/am335x-evmsk.dts
index bc93895..d45a330 100644
--- a/arch/arm/boot/dts/am335x-evmsk.dts
+++ b/arch/arm/boot/dts/am335x-evmsk.dts
@@ -424,3 +424,7 @@
status = "okay";
vmmc-supply = <&vmmc_reg>;
};
+
+&sham {
+ status = "okay";
+};
diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
index 553adc6..e77aa6e 100644
--- a/arch/arm/boot/dts/am33xx.dtsi
+++ b/arch/arm/boot/dts/am33xx.dtsi
@@ -710,5 +710,15 @@
#size-cells = <1>;
status = "disabled";
};
+
+ sham: sham@53100000 {
+ compatible = "ti,omap4-sham";
+ ti,hwmods = "sham";
+ reg = <0x53100000 0x200>;
+ interrupt-parent = <&intc>;
+ interrupts = <109>;
+ dmas = <&edma 36>;
+ dma-names = "rx";
+ };
};
};
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 4/9] ARM: dts: Add AES data and documentation for AM33XX
[not found] ` <1380146469-29496-1-git-send-email-joelf-l0cyMroinI0@public.gmane.org>
2013-09-25 22:01 ` [PATCH 3/9] ARM: dts: Add SHAM data and documentation for AM33XX Joel Fernandes
@ 2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 5/9] am33xx: dts: Fix AES interrupt number Joel Fernandes
` (3 subsequent siblings)
5 siblings, 0 replies; 12+ messages in thread
From: Joel Fernandes @ 2013-09-25 22:01 UTC (permalink / raw)
To: Benoit Cousson, Tony Lindgren, Arnd Bergmann, Olof Johansson,
Grant Likely, Jason Kridner, Koen Kooi
Cc: Devicetree Discuss, Linux OMAP List, Linux ARM Kernel List,
Paul Walmsley
From: "Mark A. Greer" <mgreer-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
Add the generic AM33XX AES module's device tree data and
enable it for the am335x-evm, am335x-evmsk, and am335x-bone
platforms. Also add Documentation file describing the data
for the AES module.
CC: Paul Walmsley <paul-DWxLp4Yu+b8AvxtiuMwx3w@public.gmane.org>
Signed-off-by: Mark A. Greer <mgreer-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
---
.../devicetree/bindings/crypto/omap-aes.txt | 34 ++++++++++++++++++++++
arch/arm/boot/dts/am335x-bone.dts | 4 +++
arch/arm/boot/dts/am335x-evm.dts | 4 +++
arch/arm/boot/dts/am335x-evmsk.dts | 4 +++
arch/arm/boot/dts/am33xx.dtsi | 11 +++++++
5 files changed, 57 insertions(+)
create mode 100644 Documentation/devicetree/bindings/crypto/omap-aes.txt
diff --git a/Documentation/devicetree/bindings/crypto/omap-aes.txt b/Documentation/devicetree/bindings/crypto/omap-aes.txt
new file mode 100644
index 0000000..4bb1e27
--- /dev/null
+++ b/Documentation/devicetree/bindings/crypto/omap-aes.txt
@@ -0,0 +1,34 @@
+OMAP SoC AES crypto Module
+
+Required properties:
+
+- compatible : Should contain entries for this and backward compatible
+ AES versions:
+ - "ti,omap2-aes" for OMAP2.
+ - "ti,omap3-aes" for OMAP3.
+ - "ti,omap4-aes" for OMAP4 and AM33XX.
+ Note that the OMAP2 and 3 versions are compatible (OMAP3 supports
+ more algorithms) but they are incompatible with OMAP4.
+- ti,hwmods: Name of the hwmod associated with the AES odule
+- reg : Offset and length of the register set for the module
+- interrupt-parent : the phandle for the interrupt controller that
+ services interrupts for this module.
+- interrupts : the interrupt number for the AES odule.
+
+Optional properties:
+- dmas: DMA specifier for tx and rx dma. See the DMA client binding,
+ Documentation/devicetree/bindings/dma/dma.txt
+- dma-names: DMA request names. Should be '"tx", "rx"' if dma is present.
+
+Example:
+ /* AM335x */
+ aes: aes@53500000 {
+ compatible = "ti,omap4-aes";
+ ti,hwmods = "aes";
+ reg = <0x53500000 0xa0>;
+ interrupt-parent = <&intc>;
+ interrupts = <102>;
+ dmas = <&edma 6
+ &edma 5>;
+ dma-names = "tx", "rx";
+ };
diff --git a/arch/arm/boot/dts/am335x-bone.dts b/arch/arm/boot/dts/am335x-bone.dts
index 8a9802e..94ee427 100644
--- a/arch/arm/boot/dts/am335x-bone.dts
+++ b/arch/arm/boot/dts/am335x-bone.dts
@@ -23,3 +23,7 @@
&sham {
status = "okay";
};
+
+&aes {
+ status = "okay";
+};
diff --git a/arch/arm/boot/dts/am335x-evm.dts b/arch/arm/boot/dts/am335x-evm.dts
index d59e51c..86463fa 100644
--- a/arch/arm/boot/dts/am335x-evm.dts
+++ b/arch/arm/boot/dts/am335x-evm.dts
@@ -526,3 +526,7 @@
&sham {
status = "okay";
};
+
+&aes {
+ status = "okay";
+};
diff --git a/arch/arm/boot/dts/am335x-evmsk.dts b/arch/arm/boot/dts/am335x-evmsk.dts
index d45a330..f577e65 100644
--- a/arch/arm/boot/dts/am335x-evmsk.dts
+++ b/arch/arm/boot/dts/am335x-evmsk.dts
@@ -428,3 +428,7 @@
&sham {
status = "okay";
};
+
+&aes {
+ status = "okay";
+};
diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
index e77aa6e..96c4b44 100644
--- a/arch/arm/boot/dts/am33xx.dtsi
+++ b/arch/arm/boot/dts/am33xx.dtsi
@@ -720,5 +720,16 @@
dmas = <&edma 36>;
dma-names = "rx";
};
+
+ aes: aes@53500000 {
+ compatible = "ti,omap4-aes";
+ ti,hwmods = "aes";
+ reg = <0x53500000 0xa0>;
+ interrupt-parent = <&intc>;
+ interrupts = <102>;
+ dmas = <&edma 6
+ &edma 5>;
+ dma-names = "tx", "rx";
+ };
};
};
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 5/9] am33xx: dts: Fix AES interrupt number
[not found] ` <1380146469-29496-1-git-send-email-joelf-l0cyMroinI0@public.gmane.org>
2013-09-25 22:01 ` [PATCH 3/9] ARM: dts: Add SHAM data and documentation for AM33XX Joel Fernandes
2013-09-25 22:01 ` [PATCH 4/9] ARM: dts: Add AES " Joel Fernandes
@ 2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 7/9] ARM: am437x: dts: Add DES node for am437x Joel Fernandes
` (2 subsequent siblings)
5 siblings, 0 replies; 12+ messages in thread
From: Joel Fernandes @ 2013-09-25 22:01 UTC (permalink / raw)
To: Benoit Cousson, Tony Lindgren, Arnd Bergmann, Olof Johansson,
Grant Likely, Jason Kridner, Koen Kooi
Cc: Devicetree Discuss, Linux OMAP List, Linux ARM Kernel List,
Joel Fernandes
Signed-off-by: Joel Fernandes <joelf-l0cyMroinI0@public.gmane.org>
---
arch/arm/boot/dts/am33xx.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
index 96c4b44..1a5575d 100644
--- a/arch/arm/boot/dts/am33xx.dtsi
+++ b/arch/arm/boot/dts/am33xx.dtsi
@@ -726,7 +726,7 @@
ti,hwmods = "aes";
reg = <0x53500000 0xa0>;
interrupt-parent = <&intc>;
- interrupts = <102>;
+ interrupts = <103>;
dmas = <&edma 6
&edma 5>;
dma-names = "tx", "rx";
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 7/9] ARM: am437x: dts: Add DES node for am437x
[not found] ` <1380146469-29496-1-git-send-email-joelf-l0cyMroinI0@public.gmane.org>
` (2 preceding siblings ...)
2013-09-25 22:01 ` [PATCH 5/9] am33xx: dts: Fix AES interrupt number Joel Fernandes
@ 2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 9/9] dts: boneblack: add pinmux and hdmi node to enable display Joel Fernandes
2013-09-26 9:36 ` [PATCH 0/9] ARM: dts: DT data for OMAP platforms for v3.13 Benoit Cousson
5 siblings, 0 replies; 12+ messages in thread
From: Joel Fernandes @ 2013-09-25 22:01 UTC (permalink / raw)
To: Benoit Cousson, Tony Lindgren, Arnd Bergmann, Olof Johansson,
Grant Likely, Jason Kridner, Koen Kooi
Cc: Devicetree Discuss, Linux OMAP List, Linux ARM Kernel List,
Joel Fernandes
AM437x SoC has a DES3DES module similar to the one on OMAP4.
Add DT node for the same.
Signed-off-by: Joel Fernandes <joelf-l0cyMroinI0@public.gmane.org>
---
arch/arm/boot/dts/am4372.dtsi | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
index 3e631ab..6653e3d 100644
--- a/arch/arm/boot/dts/am4372.dtsi
+++ b/arch/arm/boot/dts/am4372.dtsi
@@ -419,5 +419,13 @@
interrupt-parent = <&gic>;
interrupts = <0 103 0x4>;
};
+
+ des: des@53701000 {
+ compatible = "ti,omap4-des";
+ ti,hwmods = "des";
+ reg = <0x53701000 0xa0>;
+ interrupt-parent = <&gic>;
+ interrupts = <0 130 0x4>;
+ };
};
};
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 9/9] dts: boneblack: add pinmux and hdmi node to enable display
[not found] ` <1380146469-29496-1-git-send-email-joelf-l0cyMroinI0@public.gmane.org>
` (3 preceding siblings ...)
2013-09-25 22:01 ` [PATCH 7/9] ARM: am437x: dts: Add DES node for am437x Joel Fernandes
@ 2013-09-25 22:01 ` Joel Fernandes
2013-09-26 9:36 ` [PATCH 0/9] ARM: dts: DT data for OMAP platforms for v3.13 Benoit Cousson
5 siblings, 0 replies; 12+ messages in thread
From: Joel Fernandes @ 2013-09-25 22:01 UTC (permalink / raw)
To: Benoit Cousson, Tony Lindgren, Arnd Bergmann, Olof Johansson,
Grant Likely, Jason Kridner, Koen Kooi
Cc: Devicetree Discuss, Linux OMAP List, Linux ARM Kernel List,
Joel Fernandes
From: Darren Etheridge <detheridge-l0cyMroinI0@public.gmane.org>
Enable the hdmi output and the LCD Controller on BeagleBone
Black. Also configure the correct pinmux for output of
video data from the SoC to the HDMI encoder.
Signed-off-by: Darren Etheridge <detheridge-l0cyMroinI0@public.gmane.org>
Signed-off-by: Joel Fernandes <joelf-l0cyMroinI0@public.gmane.org>
---
arch/arm/boot/dts/am335x-boneblack.dts | 48 ++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/arch/arm/boot/dts/am335x-boneblack.dts b/arch/arm/boot/dts/am335x-boneblack.dts
index 16b3bea..6b71ad9 100644
--- a/arch/arm/boot/dts/am335x-boneblack.dts
+++ b/arch/arm/boot/dts/am335x-boneblack.dts
@@ -28,3 +28,51 @@
status = "okay";
ti,vcc-aux-disable-is-sleep;
};
+
+&am33xx_pinmux {
+ nxp_hdmi_bonelt_pins: nxp_hdmi_bonelt_pins {
+ pinctrl-single,pins = <
+ 0x1b0 0x03 /* xdma_event_intr0, OMAP_MUX_MODE3 | AM33XX_PIN_OUTPUT */
+ 0xa0 0x08 /* lcd_data0.lcd_data0, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xa4 0x08 /* lcd_data1.lcd_data1, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xa8 0x08 /* lcd_data2.lcd_data2, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xac 0x08 /* lcd_data3.lcd_data3, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xb0 0x08 /* lcd_data4.lcd_data4, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xb4 0x08 /* lcd_data5.lcd_data5, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xb8 0x08 /* lcd_data6.lcd_data6, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xbc 0x08 /* lcd_data7.lcd_data7, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xc0 0x08 /* lcd_data8.lcd_data8, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xc4 0x08 /* lcd_data9.lcd_data9, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xc8 0x08 /* lcd_data10.lcd_data10, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xcc 0x08 /* lcd_data11.lcd_data11, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xd0 0x08 /* lcd_data12.lcd_data12, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xd4 0x08 /* lcd_data13.lcd_data13, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xd8 0x08 /* lcd_data14.lcd_data14, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xdc 0x08 /* lcd_data15.lcd_data15, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT | AM33XX_PULL_DISA */
+ 0xe0 0x00 /* lcd_vsync.lcd_vsync, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT */
+ 0xe4 0x00 /* lcd_hsync.lcd_hsync, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT */
+ 0xe8 0x00 /* lcd_pclk.lcd_pclk, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT */
+ 0xec 0x00 /* lcd_ac_bias_en.lcd_ac_bias_en, OMAP_MUX_MODE0 | AM33XX_PIN_OUTPUT */
+ >;
+ };
+ nxp_hdmi_bonelt_off_pins: nxp_hdmi_bonelt_off_pins {
+ pinctrl-single,pins = <
+ 0x1b0 0x03 /* xdma_event_intr0, OMAP_MUX_MODE3 | AM33XX_PIN_OUTPUT */
+ >;
+ };
+};
+
+&lcdc {
+ status = "okay";
+};
+
+/ {
+ hdmi {
+ compatible = "ti,tilcdc,slave";
+ i2c = <&i2c0>;
+ pinctrl-names = "default", "off";
+ pinctrl-0 = <&nxp_hdmi_bonelt_pins>;
+ pinctrl-1 = <&nxp_hdmi_bonelt_off_pins>;
+ status = "okay";
+ };
+};
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH 0/9] ARM: dts: DT data for OMAP platforms for v3.13
[not found] ` <1380146469-29496-1-git-send-email-joelf-l0cyMroinI0@public.gmane.org>
` (4 preceding siblings ...)
2013-09-25 22:01 ` [PATCH 9/9] dts: boneblack: add pinmux and hdmi node to enable display Joel Fernandes
@ 2013-09-26 9:36 ` Benoit Cousson
5 siblings, 0 replies; 12+ messages in thread
From: Benoit Cousson @ 2013-09-26 9:36 UTC (permalink / raw)
To: Joel Fernandes
Cc: Tony Lindgren, Arnd Bergmann, Olof Johansson, Grant Likely,
Jason Kridner, Koen Kooi, Devicetree Discuss, Linux OMAP List,
Linux ARM Kernel List
Hi Joel,
On 26/09/2013 00:01, Joel Fernandes wrote:
> Following series is a collection of dts patches for the below features:
> crypto:
> aes, sha on am335x
> aes, des on am437x
> aes, des on omap4
> display:
> beaglebone black HDMI
> am335x-evm panel
>
> Series is based on Benoit Cousson's for_3.13/dts branch (commit sha 45646cd)
> Available at: git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:joelagnel/linux-kernel.git (branch for-benoit)
Thanks for the update and rebase.
I'll check the series ASAP.
Thanks,
Benoit
>
> Benoit Parrot (1):
> ARM: dts: AM33XX: Add LCDC info into am335x-evm
>
> Darren Etheridge (1):
> dts: boneblack: add pinmux and hdmi node to enable display
>
> Joel Fernandes (5):
> omap4: dts: Add node for AES
> omap4: dts: Add node for DES3DES module
> am33xx: dts: Fix AES interrupt number
> ARM: am437x: dts: Add AES node for am437x
> ARM: am437x: dts: Add DES node for am437x
>
> Mark A. Greer (2):
> ARM: dts: Add SHAM data and documentation for AM33XX
> ARM: dts: Add AES data and documentation for AM33XX
>
> .../devicetree/bindings/crypto/omap-aes.txt | 34 ++++++++++
> .../devicetree/bindings/crypto/omap-sham.txt | 31 +++++++++
> arch/arm/boot/dts/am335x-bone.dts | 8 +++
> arch/arm/boot/dts/am335x-boneblack.dts | 48 +++++++++++++
> arch/arm/boot/dts/am335x-evm.dts | 79 ++++++++++++++++++++++
> arch/arm/boot/dts/am335x-evmsk.dts | 8 +++
> arch/arm/boot/dts/am33xx.dtsi | 30 ++++++++
> arch/arm/boot/dts/am4372.dtsi | 16 +++++
> arch/arm/boot/dts/omap4.dtsi | 20 ++++++
> 9 files changed, 274 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/crypto/omap-aes.txt
> create mode 100644 Documentation/devicetree/bindings/crypto/omap-sham.txt
>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 12+ messages in thread