public inbox for linux-sh@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sh: Add I2C platform data to sh7722
@ 2008-03-25  8:14 Magnus Damm
  2008-03-26  9:24 ` Paul Mundt
  0 siblings, 1 reply; 2+ messages in thread
From: Magnus Damm @ 2008-03-25  8:14 UTC (permalink / raw)
  To: linux-sh

Add platform data for the SuperH Mobile I2C block to sh7722.

Signed-off-by: Magnus Damm <damm@igel.co.jp>
---

 arch/sh/kernel/cpu/sh4a/setup-sh7722.c |   21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

--- 0004/arch/sh/kernel/cpu/sh4a/setup-sh7722.c
+++ work/arch/sh/kernel/cpu/sh4a/setup-sh7722.c	2008-03-24 10:27:18.000000000 +0900
@@ -39,6 +39,26 @@ static struct platform_device usbf_devic
 	.resource	= usbf_resources,
 };
 
+static struct resource iic_resources[] = {
+	[0] = {
+		.name	= "IIC",
+		.start  = 0x04470000,
+		.end    = 0x04470017,
+		.flags  = IORESOURCE_MEM,
+	},
+	[1] = {
+		.start  = 96,
+		.end    = 99,
+		.flags  = IORESOURCE_IRQ,
+       },
+};
+
+static struct platform_device iic_device = {
+	.name           = "i2c-sh_mobile",
+	.num_resources  = ARRAY_SIZE(iic_resources),
+	.resource       = iic_resources,
+};
+
 static struct plat_sci_port sci_platform_data[] = {
 	{
 		.mapbase	= 0xffe00000,
@@ -73,6 +93,7 @@ static struct platform_device sci_device
 
 static struct platform_device *sh7722_devices[] __initdata = {
 	&usbf_device,
+	&iic_device,
 	&sci_device,
 };
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] sh: Add I2C platform data to sh7722
  2008-03-25  8:14 [PATCH] sh: Add I2C platform data to sh7722 Magnus Damm
@ 2008-03-26  9:24 ` Paul Mundt
  0 siblings, 0 replies; 2+ messages in thread
From: Paul Mundt @ 2008-03-26  9:24 UTC (permalink / raw)
  To: linux-sh

On Tue, Mar 25, 2008 at 05:14:03PM +0900, Magnus Damm wrote:
> Add platform data for the SuperH Mobile I2C block to sh7722.

On Tue, Mar 25, 2008 at 05:20:24PM +0900, Magnus Damm wrote:
> Enable the sh7722 I2C controller on the MigoR board.

On Tue, Mar 25, 2008 at 05:24:31PM +0900, Magnus Damm wrote:
> Add support for the rs5c372b RTC chip to MigoR.

On Tue, Mar 25, 2008 at 05:30:45PM +0900, Magnus Damm wrote:
> Add support for the migor_ts touch panel to the MigoR board.

Applied, thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-03-26  9:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-25  8:14 [PATCH] sh: Add I2C platform data to sh7722 Magnus Damm
2008-03-26  9:24 ` Paul Mundt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox