All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Ujfalusi <peter.ujfalusi@ti.com>
To: Tony Lindgren <tony@atomide.com>
Cc: Benoit Cousson <b-cousson@ti.com>,
	linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	devicetree-discuss@lists.ozlabs.org
Subject: [PATCH v2 5/8] ARM/dts: OMAP5: Add McBSP entries
Date: Wed, 29 Aug 2012 16:31:04 +0300	[thread overview]
Message-ID: <1346247067-9632-6-git-send-email-peter.ujfalusi@ti.com> (raw)
In-Reply-To: <1346247067-9632-1-git-send-email-peter.ujfalusi@ti.com>

Create the sections describing the McBSP ports to be able to use them via
DT.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
---
 arch/arm/boot/dts/omap5.dtsi |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi
index 881d60c..57ca7c1 100644
--- a/arch/arm/boot/dts/omap5.dtsi
+++ b/arch/arm/boot/dts/omap5.dtsi
@@ -211,5 +211,41 @@
 			ti,hwmods = "mmc5";
 			ti,needs-special-reset;
 		};
+
+		mcbsp1: mcbsp@40122000 {
+			compatible = "ti,omap4-mcbsp";
+			reg = <0x40122000 0xff>, /* MPU private access */
+			      <0x49022000 0xff>; /* L3 Interconnect */
+			reg-names = "mpu", "dma";
+			interrupts = <0 17 0x4>;
+			interrupt-names = "common";
+			interrupt-parent = <&gic>;
+			ti,buffer-size = <128>;
+			ti,hwmods = "mcbsp1";
+		};
+
+		mcbsp2: mcbsp@40124000 {
+			compatible = "ti,omap4-mcbsp";
+			reg = <0x40124000 0xff>, /* MPU private access */
+			      <0x49024000 0xff>; /* L3 Interconnect */
+			reg-names = "mpu", "dma";
+			interrupts = <0 22 0x4>;
+			interrupt-names = "common";
+			interrupt-parent = <&gic>;
+			ti,buffer-size = <128>;
+			ti,hwmods = "mcbsp2";
+		};
+
+		mcbsp3: mcbsp@40126000 {
+			compatible = "ti,omap4-mcbsp";
+			reg = <0x40126000 0xff>, /* MPU private access */
+			      <0x49026000 0xff>; /* L3 Interconnect */
+			reg-names = "mpu", "dma";
+			interrupts = <0 23 0x4>;
+			interrupt-names = "common";
+			interrupt-parent = <&gic>;
+			ti,buffer-size = <128>;
+			ti,hwmods = "mcbsp3";
+		};
 	};
 };
-- 
1.7.8.6


WARNING: multiple messages have this Message-ID (diff)
From: peter.ujfalusi@ti.com (Peter Ujfalusi)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 5/8] ARM/dts: OMAP5: Add McBSP entries
Date: Wed, 29 Aug 2012 16:31:04 +0300	[thread overview]
Message-ID: <1346247067-9632-6-git-send-email-peter.ujfalusi@ti.com> (raw)
In-Reply-To: <1346247067-9632-1-git-send-email-peter.ujfalusi@ti.com>

Create the sections describing the McBSP ports to be able to use them via
DT.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
---
 arch/arm/boot/dts/omap5.dtsi |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi
index 881d60c..57ca7c1 100644
--- a/arch/arm/boot/dts/omap5.dtsi
+++ b/arch/arm/boot/dts/omap5.dtsi
@@ -211,5 +211,41 @@
 			ti,hwmods = "mmc5";
 			ti,needs-special-reset;
 		};
+
+		mcbsp1: mcbsp at 40122000 {
+			compatible = "ti,omap4-mcbsp";
+			reg = <0x40122000 0xff>, /* MPU private access */
+			      <0x49022000 0xff>; /* L3 Interconnect */
+			reg-names = "mpu", "dma";
+			interrupts = <0 17 0x4>;
+			interrupt-names = "common";
+			interrupt-parent = <&gic>;
+			ti,buffer-size = <128>;
+			ti,hwmods = "mcbsp1";
+		};
+
+		mcbsp2: mcbsp at 40124000 {
+			compatible = "ti,omap4-mcbsp";
+			reg = <0x40124000 0xff>, /* MPU private access */
+			      <0x49024000 0xff>; /* L3 Interconnect */
+			reg-names = "mpu", "dma";
+			interrupts = <0 22 0x4>;
+			interrupt-names = "common";
+			interrupt-parent = <&gic>;
+			ti,buffer-size = <128>;
+			ti,hwmods = "mcbsp2";
+		};
+
+		mcbsp3: mcbsp at 40126000 {
+			compatible = "ti,omap4-mcbsp";
+			reg = <0x40126000 0xff>, /* MPU private access */
+			      <0x49026000 0xff>; /* L3 Interconnect */
+			reg-names = "mpu", "dma";
+			interrupts = <0 23 0x4>;
+			interrupt-names = "common";
+			interrupt-parent = <&gic>;
+			ti,buffer-size = <128>;
+			ti,hwmods = "mcbsp3";
+		};
 	};
 };
-- 
1.7.8.6

  parent reply	other threads:[~2012-08-29 13:31 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-29 13:30 [PATCH v2 0/8] ARM/dts: OMAP audio related updates for OMAP2/3/4/5 Peter Ujfalusi
2012-08-29 13:30 ` Peter Ujfalusi
2012-08-29 13:31 ` [PATCH v2 1/8] ARM/dts: OMAP2: Add McBSP entries for OMAP2420 and OMAP2430 SoC Peter Ujfalusi
2012-08-29 13:31   ` Peter Ujfalusi
     [not found]   ` <1346247067-9632-2-git-send-email-peter.ujfalusi-l0cyMroinI0@public.gmane.org>
2012-09-03 14:46     ` Benoit Cousson
2012-09-03 14:46       ` Benoit Cousson
2012-09-04  3:42       ` Vaibhav Hiremath
2012-09-04  3:42         ` Vaibhav Hiremath
2012-09-04 10:17         ` Benoit Cousson
2012-09-04 10:17           ` Benoit Cousson
2012-09-05  6:11           ` Hiremath, Vaibhav
2012-09-05  6:11             ` Hiremath, Vaibhav
2012-09-05  8:23             ` Peter Ujfalusi
2012-09-05  8:23               ` Peter Ujfalusi
2012-09-05  9:15               ` Hiremath, Vaibhav
2012-09-05  9:15                 ` Hiremath, Vaibhav
2012-09-05 13:31                 ` Benoit Cousson
2012-09-05 13:31                   ` Benoit Cousson
2012-09-05 14:41                   ` Hiremath, Vaibhav
2012-09-05 14:41                     ` Hiremath, Vaibhav
2012-09-06 14:42                     ` Benoit Cousson
2012-09-06 14:42                       ` Benoit Cousson
2012-09-11 11:42                       ` Hiremath, Vaibhav
2012-09-11 11:42                         ` Hiremath, Vaibhav
     [not found]                     ` <79CD15C6BA57404B839C016229A409A83EAA8779-Er742YJ7I/eIQmiDNMet8wC/G2K4zDHf@public.gmane.org>
2012-09-07  5:45                       ` AnilKumar, Chimata
2012-09-07  5:45                         ` AnilKumar, Chimata
     [not found]                         ` <331ABD5ECB02734CA317220B2BBEABC13EA29468-Er742YJ7I/eIQmiDNMet8wC/G2K4zDHf@public.gmane.org>
2012-09-07  8:42                           ` Benoit Cousson
2012-09-07  8:42                             ` Benoit Cousson
2012-09-05 11:14       ` Peter Ujfalusi
2012-09-05 11:14         ` Peter Ujfalusi
2012-08-29 13:31 ` [PATCH v2 2/8] ARM/dts: omap2420-h4: Include omap2420.dtsi file instead the common omap2 Peter Ujfalusi
2012-08-29 13:31   ` Peter Ujfalusi
2012-09-06 20:18   ` Tony Lindgren
2012-09-06 20:18     ` Tony Lindgren
2012-08-29 13:31 ` [PATCH v2 3/8] ARM/dts: OMAP3: Add McBSP entries Peter Ujfalusi
2012-08-29 13:31   ` Peter Ujfalusi
2012-08-29 13:31 ` [PATCH v2 4/8] ARM/dts: OMAP4: " Peter Ujfalusi
2012-08-29 13:31   ` Peter Ujfalusi
2012-08-29 13:31 ` Peter Ujfalusi [this message]
2012-08-29 13:31   ` [PATCH v2 5/8] ARM/dts: OMAP5: " Peter Ujfalusi
2012-08-29 13:31 ` [PATCH v2 6/8] ARM/dts: omap3-beagle: Enable audio support Peter Ujfalusi
2012-08-29 13:31   ` Peter Ujfalusi
2012-09-06 20:20   ` Tony Lindgren
2012-09-06 20:20     ` Tony Lindgren
2012-08-29 13:31 ` [PATCH v2 7/8] ARM/dts: omap4: Add reg-names for McPDM and DMIC Peter Ujfalusi
2012-08-29 13:31   ` Peter Ujfalusi
     [not found] ` <1346247067-9632-1-git-send-email-peter.ujfalusi-l0cyMroinI0@public.gmane.org>
2012-08-29 13:31   ` [PATCH v2 8/8] ARM/dts: omap5: Add McPDM and DMIC section to the dtsi file Peter Ujfalusi
2012-08-29 13:31     ` Peter Ujfalusi
2012-09-03 14:51 ` [PATCH v2 0/8] ARM/dts: OMAP audio related updates for OMAP2/3/4/5 Benoit Cousson
2012-09-03 14:51   ` Benoit Cousson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1346247067-9632-6-git-send-email-peter.ujfalusi@ti.com \
    --to=peter.ujfalusi@ti.com \
    --cc=b-cousson@ti.com \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=tony@atomide.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.