Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1272809 > unrolled thread
| Started by | Cory Tusar <cory.tusar@pid1solutions.com> |
|---|---|
| First post | 2015-11-19 05:00 +0100 |
| Last post | 2015-11-24 11:00 +0100 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] ARM: dts: vfxxx: Include support for dspi[23] functionality. Cory Tusar <cory.tusar@pid1solutions.com> - 2015-11-19 05:00 +0100
Re: [PATCH] ARM: dts: vfxxx: Include support for dspi[23] functionality. Stefan Agner <stefan@agner.ch> - 2015-11-19 07:50 +0100
Re: [PATCH] ARM: dts: vfxxx: Include support for dspi[23] functionality. Shawn Guo <shawnguo@kernel.org> - 2015-11-24 11:00 +0100
| From | Cory Tusar <cory.tusar@pid1solutions.com> |
|---|---|
| Date | 2015-11-19 05:00 +0100 |
| Subject | [PATCH] ARM: dts: vfxxx: Include support for dspi[23] functionality. |
| Message-ID | <qwoy5-41Q-1@gated-at.bofh.it> |
Extend the existing Vybrid DSPI devicetree implementation to also
describe the dspi2 and dspi3 functional blocks.
Signed-off-by: Cory Tusar <cory.tusar@pid1solutions.com>
---
arch/arm/boot/dts/vfxxx.dtsi | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/arch/arm/boot/dts/vfxxx.dtsi b/arch/arm/boot/dts/vfxxx.dtsi
index 1cca43a..858e60a 100644
--- a/arch/arm/boot/dts/vfxxx.dtsi
+++ b/arch/arm/boot/dts/vfxxx.dtsi
@@ -453,6 +453,30 @@
status = "disabled";
};
+ dspi2: dspi2@400ac000 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ compatible = "fsl,vf610-dspi";
+ reg = <0x400ac000 0x1000>;
+ interrupts = <69 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&clks VF610_CLK_DSPI2>;
+ clock-names = "dspi";
+ spi-num-chipselects = <2>;
+ status = "disabled";
+ };
+
+ dspi3: dspi3@400ad000 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ compatible = "fsl,vf610-dspi";
+ reg = <0x400ad000 0x1000>;
+ interrupts = <70 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&clks VF610_CLK_DSPI3>;
+ clock-names = "dspi";
+ spi-num-chipselects = <2>;
+ status = "disabled";
+ };
+
adc1: adc@400bb000 {
compatible = "fsl,vf610-adc";
reg = <0x400bb000 0x1000>;
--
2.4.10
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Stefan Agner <stefan@agner.ch> |
|---|---|
| Date | 2015-11-19 07:50 +0100 |
| Subject | Re: [PATCH] ARM: dts: vfxxx: Include support for dspi[23] functionality. |
| Message-ID | <qwrcB-5Lq-7@gated-at.bofh.it> |
| In reply to | #1272809 |
Verified too, looks good to me.
Acked-by: Stefan Agner <stefan@agner.ch>
--
Stefan
On 2015-11-18 19:54, Cory Tusar wrote:
> Extend the existing Vybrid DSPI devicetree implementation to also
> describe the dspi2 and dspi3 functional blocks.
>
> Signed-off-by: Cory Tusar <cory.tusar@pid1solutions.com>
> ---
> arch/arm/boot/dts/vfxxx.dtsi | 24 ++++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
>
> diff --git a/arch/arm/boot/dts/vfxxx.dtsi b/arch/arm/boot/dts/vfxxx.dtsi
> index 1cca43a..858e60a 100644
> --- a/arch/arm/boot/dts/vfxxx.dtsi
> +++ b/arch/arm/boot/dts/vfxxx.dtsi
> @@ -453,6 +453,30 @@
> status = "disabled";
> };
>
> + dspi2: dspi2@400ac000 {
> + #address-cells = <1>;
> + #size-cells = <0>;
> + compatible = "fsl,vf610-dspi";
> + reg = <0x400ac000 0x1000>;
> + interrupts = <69 IRQ_TYPE_LEVEL_HIGH>;
> + clocks = <&clks VF610_CLK_DSPI2>;
> + clock-names = "dspi";
> + spi-num-chipselects = <2>;
> + status = "disabled";
> + };
> +
> + dspi3: dspi3@400ad000 {
> + #address-cells = <1>;
> + #size-cells = <0>;
> + compatible = "fsl,vf610-dspi";
> + reg = <0x400ad000 0x1000>;
> + interrupts = <70 IRQ_TYPE_LEVEL_HIGH>;
> + clocks = <&clks VF610_CLK_DSPI3>;
> + clock-names = "dspi";
> + spi-num-chipselects = <2>;
> + status = "disabled";
> + };
> +
> adc1: adc@400bb000 {
> compatible = "fsl,vf610-adc";
> reg = <0x400bb000 0x1000>;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Shawn Guo <shawnguo@kernel.org> |
|---|---|
| Date | 2015-11-24 11:00 +0100 |
| Subject | Re: [PATCH] ARM: dts: vfxxx: Include support for dspi[23] functionality. |
| Message-ID | <qyiye-6qf-13@gated-at.bofh.it> |
| In reply to | #1272809 |
On Wed, Nov 18, 2015 at 10:54:40PM -0500, Cory Tusar wrote: > Extend the existing Vybrid DSPI devicetree implementation to also > describe the dspi2 and dspi3 functional blocks. > > Signed-off-by: Cory Tusar <cory.tusar@pid1solutions.com> Applied, thanks. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web