Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-03-19 Thread Jarkko Nikula
On Wed, 10 Mar 2010 14:30:00 -0800
Tony Lindgren t...@atomide.com wrote:

 * Kevin Hilman khil...@deeprootsystems.com [100310 10:01]:
  Tony Lindgren t...@atomide.com writes:
  
...
  Unfortunately, Tony's additional fix did not make it into the version
  that was merged to mainline, which results in a crash during
  probe when using v2.6.34-rc1.
  
  Ben, can you queue the fix below from Tony for -rc2?
 
 The original patch attached again below.
 
FWIW,

Tony's [PATCH] i2c-omap: Fix reg_shift init makes the mainline
2.6.34-rc1 booting on OMAP3.

Tested-by: Jarkko Nikula jhnik...@gmail.com
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-03-15 Thread Kevin Hilman
Tony Lindgren t...@atomide.com writes:

[...]

 
 Here's another one to add to omap-testing then.
 
 This one has been submitted to linux-i2c a couple times and been in
 the OMAP PM branch for a while.

 OK, let's add that to omap-testing after we're done with the initial
 fixes. This does not currently apply on top of omap-testing, BTW.

Here's an updated version that applies on omap-testing.

Kevin


From 5e5fcf4322b04e27698f1ae48d12ae788969ea49 Mon Sep 17 00:00:00 2001
From: Kalle Jokiniemi kalle.jokini...@digia.com
Date: Wed, 21 Oct 2009 14:51:21 +0300
Subject: [PATCH] i2c-omap: add mpu wake up latency constraint in i2c

While waiting for completion of the i2c transfer, the
MPU could hit OFF mode and cause several msecs of
delay that made i2c transfers fail more often. The
extra delays and subsequent re-trys cause i2c clocks
to be active more often. This has also an negative
effect on power consumption.

Created a mechanism for passing and using the
constraint setting function in driver code. The used
mpu wake up latency constraints are now set individually
per bus, and they are calculated based on clock rate
and fifo size.

Thanks to Jarkko Nikula, Moiz Sonasath, Paul Walmsley,
and Nishanth Menon for tuning out the details of
this patch.

Cc: Moiz Sonasath m-sonas...@ti.com
Cc: Jarkko Nikula jhnik...@gmail.com
Cc: Paul Walmsley p...@pwsan.com
Cc: Nishanth Menon n...@ti.com
Signed-off-by: Kalle Jokiniemi kalle.jokini...@digia.com
Signed-off-by: Kevin Hilman khil...@deeprootsystems.com
---
 arch/arm/plat-omap/i2c.c  |   55 -
 drivers/i2c/busses/i2c-omap.c |   24 +++---
 include/linux/i2c-omap.h  |9 ++
 3 files changed, 72 insertions(+), 16 deletions(-)
 create mode 100644 include/linux/i2c-omap.h

diff --git a/arch/arm/plat-omap/i2c.c b/arch/arm/plat-omap/i2c.c
index 624e262..36011a1 100644
--- a/arch/arm/plat-omap/i2c.c
+++ b/arch/arm/plat-omap/i2c.c
@@ -26,9 +26,12 @@
 #include linux/kernel.h
 #include linux/platform_device.h
 #include linux/i2c.h
+#include linux/i2c-omap.h
+
 #include mach/irqs.h
 #include plat/mux.h
 #include plat/i2c.h
+#include plat/omap-pm.h
 
 #define OMAP_I2C_SIZE  0x3f
 #define OMAP1_I2C_BASE 0xfffb3800
@@ -70,19 +73,44 @@ static struct resource i2c_resources[][2] = {
},  \
}
 
-static u32 i2c_rate[ARRAY_SIZE(i2c_resources)];
+static struct omap_i2c_bus_platform_data i2c_pdata[ARRAY_SIZE(i2c_resources)];
 static struct platform_device omap_i2c_devices[] = {
-   I2C_DEV_BUILDER(1, i2c_resources[0], i2c_rate[0]),
+   I2C_DEV_BUILDER(1, i2c_resources[0], i2c_pdata[0]),
 #ifdefined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
-   I2C_DEV_BUILDER(2, i2c_resources[1], i2c_rate[1]),
+   I2C_DEV_BUILDER(2, i2c_resources[1], i2c_pdata[1]),
 #endif
 #ifdefined(CONFIG_ARCH_OMAP3)
-   I2C_DEV_BUILDER(3, i2c_resources[2], i2c_rate[2]),
+   I2C_DEV_BUILDER(3, i2c_resources[2], i2c_pdata[2]),
 #endif
 };
 
 #define OMAP_I2C_CMDLINE_SETUP (BIT(31))
 
+#ifdef CONFIG_ARCH_OMAP3
+/*
+ * omap_i2c_set_wfc_mpu_wkup_lat - sets mpu wake up constraint
+ * @dev:   i2c bus device pointer
+ * @val:   latency constraint to set, -1 to disable constraint
+ *
+ * When waiting for completion of a i2c transfer, we need to set a wake up
+ * latency constraint for the MPU. This is to ensure quick enough wakeup from
+ * idle, when transfer completes.
+ */
+static void omap_i2c_set_wfc_mpu_wkup_lat(struct device *dev, int val)
+{
+   omap_pm_set_max_mpu_wakeup_lat(dev, val);
+}
+#endif
+
+static void __init omap_set_i2c_constraint_func(
+   struct omap_i2c_bus_platform_data *pd)
+{
+   if (cpu_is_omap34xx())
+   pd-set_mpu_wkup_lat = omap_i2c_set_wfc_mpu_wkup_lat;
+   else
+   pd-set_mpu_wkup_lat = NULL;
+}
+
 static int __init omap_i2c_nr_ports(void)
 {
int ports = 0;
@@ -146,8 +174,8 @@ static int __init omap_i2c_bus_setup(char *str)
get_options(str, 3, ints);
if (ints[0]  2 || ints[1]  1 || ints[1]  ports)
return 0;
-   i2c_rate[ints[1] - 1] = ints[2];
-   i2c_rate[ints[1] - 1] |= OMAP_I2C_CMDLINE_SETUP;
+   i2c_pdata[ints[1] - 1].clkrate = ints[2];
+   i2c_pdata[ints[1] - 1].clkrate |= OMAP_I2C_CMDLINE_SETUP;
 
return 1;
 }
@@ -161,9 +189,10 @@ static int __init omap_register_i2c_bus_cmdline(void)
 {
int i, err = 0;
 
-   for (i = 0; i  ARRAY_SIZE(i2c_rate); i++)
-   if (i2c_rate[i]  OMAP_I2C_CMDLINE_SETUP) {
-   i2c_rate[i] = ~OMAP_I2C_CMDLINE_SETUP;
+   for (i = 0; i  ARRAY_SIZE(i2c_pdata); i++)
+   if (i2c_pdata[i].clkrate  OMAP_I2C_CMDLINE_SETUP) {
+   i2c_pdata[i].clkrate = ~OMAP_I2C_CMDLINE_SETUP;
+   omap_set_i2c_constraint_func(i2c_pdata[i]);
err = omap_i2c_add_bus(i + 

Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-03-12 Thread Kevin Hilman
Tony Lindgren t...@atomide.com writes:

 * Kevin Hilman khil...@deeprootsystems.com [100311 08:36]:
 Tony Lindgren t...@atomide.com writes:
 
  Anyways, for the future, considering how critical this driver is
  for all omaps.. And considering how badly this driver needs some
  updates done..
 
  How about we pile up the i2c-omap patches for testing into linux-omap
  branch first, then ask Ben to pull it around -rc6 after we've all
  acked and tested the changes?
 
  Ben does that sound OK to you?
 
 Here's another one to add to omap-testing then.
 
 This one has been submitted to linux-i2c a couple times and been in
 the OMAP PM branch for a while.

 OK, let's add that to omap-testing after we're done with the initial
 fixes. This does not currently apply on top of omap-testing, BTW.

The patch is against v2.6.34-rc1.

Kevin
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-03-11 Thread Kevin Hilman
Tony Lindgren t...@atomide.com writes:

 * Kevin Hilman khil...@deeprootsystems.com [100310 10:01]:
 Tony Lindgren t...@atomide.com writes:
 
  * Cory Maccarrone darkstar6...@gmail.com [100109 10:34]:
  On Sat, Jan 9, 2010 at 10:33 AM, Tony Lindgren t...@atomide.com wrote:
  
   Let's plan on adding this into omap-testing branch next week so
   we can make sure things are OK for the other platforms.
  
   Then assuming no issues, let's ask Ben can queue it.
  
  
  Excellent, thank you!
 
  Applied to omap-testing with the following fix. Can you please merge
  it into your original patch?
 
 Unfortunately, Tony's additional fix did not make it into the version
 that was merged to mainline, which results in a crash during
 probe when using v2.6.34-rc1.
 
 Ben, can you queue the fix below from Tony for -rc2?

 The original patch attached again below.

 Oops, did I maybe send a wrong patchwork link earlier to the
 patch?

 Anyways, for the future, considering how critical this driver is
 for all omaps.. And considering how badly this driver needs some
 updates done..

 How about we pile up the i2c-omap patches for testing into linux-omap
 branch first, then ask Ben to pull it around -rc6 after we've all
 acked and tested the changes?

 Ben does that sound OK to you?

Here's another one to add to omap-testing then.

This one has been submitted to linux-i2c a couple times and been in
the OMAP PM branch for a while.

Kevin

From 639d6ce328663c0e6cb1623bc69bcb5d167db2f9 Mon Sep 17 00:00:00 2001
From: Kalle Jokiniemi kalle.jokini...@digia.com
Date: Wed, 21 Oct 2009 14:51:21 +0300
Subject: [PATCH] i2c-omap: add mpu wake up latency constraint in i2c

While waiting for completion of the i2c transfer, the
MPU could hit OFF mode and cause several msecs of
delay that made i2c transfers fail more often. The
extra delays and subsequent re-trys cause i2c clocks
to be active more often. This has also an negative
effect on power consumption.

Created a mechanism for passing and using the
constraint setting function in driver code. The used
mpu wake up latency constraints are now set individually
per bus, and they are calculated based on clock rate
and fifo size.

Thanks to Jarkko Nikula, Moiz Sonasath, Paul Walmsley,
and Nishanth Menon for tuning out the details of
this patch.

Cc: Moiz Sonasath m-sonas...@ti.com
Cc: Jarkko Nikula jhnik...@gmail.com
Cc: Paul Walmsley p...@pwsan.com
Cc: Nishanth Menon n...@ti.com
Signed-off-by: Kalle Jokiniemi kalle.jokini...@digia.com
Signed-off-by: Kevin Hilman khil...@deeprootsystems.com
---
 arch/arm/plat-omap/i2c.c  |   55 -
 drivers/i2c/busses/i2c-omap.c |   25 +++---
 include/linux/i2c-omap.h  |9 ++
 3 files changed, 73 insertions(+), 16 deletions(-)
 create mode 100644 include/linux/i2c-omap.h

diff --git a/arch/arm/plat-omap/i2c.c b/arch/arm/plat-omap/i2c.c
index 624e262..36011a1 100644
--- a/arch/arm/plat-omap/i2c.c
+++ b/arch/arm/plat-omap/i2c.c
@@ -26,9 +26,12 @@
 #include linux/kernel.h
 #include linux/platform_device.h
 #include linux/i2c.h
+#include linux/i2c-omap.h
+
 #include mach/irqs.h
 #include plat/mux.h
 #include plat/i2c.h
+#include plat/omap-pm.h
 
 #define OMAP_I2C_SIZE  0x3f
 #define OMAP1_I2C_BASE 0xfffb3800
@@ -70,19 +73,44 @@ static struct resource i2c_resources[][2] = {
},  \
}
 
-static u32 i2c_rate[ARRAY_SIZE(i2c_resources)];
+static struct omap_i2c_bus_platform_data i2c_pdata[ARRAY_SIZE(i2c_resources)];
 static struct platform_device omap_i2c_devices[] = {
-   I2C_DEV_BUILDER(1, i2c_resources[0], i2c_rate[0]),
+   I2C_DEV_BUILDER(1, i2c_resources[0], i2c_pdata[0]),
 #ifdefined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
-   I2C_DEV_BUILDER(2, i2c_resources[1], i2c_rate[1]),
+   I2C_DEV_BUILDER(2, i2c_resources[1], i2c_pdata[1]),
 #endif
 #ifdefined(CONFIG_ARCH_OMAP3)
-   I2C_DEV_BUILDER(3, i2c_resources[2], i2c_rate[2]),
+   I2C_DEV_BUILDER(3, i2c_resources[2], i2c_pdata[2]),
 #endif
 };
 
 #define OMAP_I2C_CMDLINE_SETUP (BIT(31))
 
+#ifdef CONFIG_ARCH_OMAP3
+/*
+ * omap_i2c_set_wfc_mpu_wkup_lat - sets mpu wake up constraint
+ * @dev:   i2c bus device pointer
+ * @val:   latency constraint to set, -1 to disable constraint
+ *
+ * When waiting for completion of a i2c transfer, we need to set a wake up
+ * latency constraint for the MPU. This is to ensure quick enough wakeup from
+ * idle, when transfer completes.
+ */
+static void omap_i2c_set_wfc_mpu_wkup_lat(struct device *dev, int val)
+{
+   omap_pm_set_max_mpu_wakeup_lat(dev, val);
+}
+#endif
+
+static void __init omap_set_i2c_constraint_func(
+   struct omap_i2c_bus_platform_data *pd)
+{
+   if (cpu_is_omap34xx())
+   pd-set_mpu_wkup_lat = omap_i2c_set_wfc_mpu_wkup_lat;
+   else
+   pd-set_mpu_wkup_lat = NULL;
+}
+
 static int __init 

Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-03-11 Thread Tony Lindgren
* Kevin Hilman khil...@deeprootsystems.com [100311 08:36]:
 Tony Lindgren t...@atomide.com writes:
 
  Anyways, for the future, considering how critical this driver is
  for all omaps.. And considering how badly this driver needs some
  updates done..
 
  How about we pile up the i2c-omap patches for testing into linux-omap
  branch first, then ask Ben to pull it around -rc6 after we've all
  acked and tested the changes?
 
  Ben does that sound OK to you?
 
 Here's another one to add to omap-testing then.
 
 This one has been submitted to linux-i2c a couple times and been in
 the OMAP PM branch for a while.

OK, let's add that to omap-testing after we're done with the initial
fixes. This does not currently apply on top of omap-testing, BTW.

Regards,

Tony
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-03-10 Thread Kevin Hilman
Tony Lindgren t...@atomide.com writes:

 * Cory Maccarrone darkstar6...@gmail.com [100109 10:34]:
 On Sat, Jan 9, 2010 at 10:33 AM, Tony Lindgren t...@atomide.com wrote:
 
  Let's plan on adding this into omap-testing branch next week so
  we can make sure things are OK for the other platforms.
 
  Then assuming no issues, let's ask Ben can queue it.
 
 
 Excellent, thank you!

 Applied to omap-testing with the following fix. Can you please merge
 it into your original patch?

Unfortunately, Tony's additional fix did not make it into the version
that was merged to mainline, which results in a crash during
probe when using v2.6.34-rc1.

Ben, can you queue the fix below from Tony for -rc2?

Kevin



 Tony
 From 5b640a850de9fb87b9e9e6dd2cfeb7144ada8053 Mon Sep 17 00:00:00 2001
 From: Tony Lindgren t...@atomide.com
 Date: Mon, 11 Jan 2010 17:22:21 -0800
 Subject: [PATCH] i2c-omap: Fix reg_shift init

 Otherwise register access won't work during probe
 for omap_i2c_unidle.

 Signed-off-by: Tony Lindgren t...@atomide.com

 diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
 index 913abd7..9c3ce4d 100644
 --- a/drivers/i2c/busses/i2c-omap.c
 +++ b/drivers/i2c/busses/i2c-omap.c
 @@ -894,6 +894,12 @@ omap_i2c_probe(struct platform_device *pdev)
   dev-idle = 1;
   dev-dev = pdev-dev;
   dev-irq = irq-start;
 +
 + if (cpu_is_omap7xx())
 + dev-reg_shift = 1;
 + else
 + dev-reg_shift = 2;
 +
   dev-base = ioremap(mem-start, resource_size(mem));
   if (!dev-base) {
   r = -ENOMEM;
 @@ -925,11 +931,6 @@ omap_i2c_probe(struct platform_device *pdev)
   dev-b_hw = 1; /* Enable hardware fixes */
   }
  
 - if (cpu_is_omap7xx())
 - dev-reg_shift = 1;
 - else
 - dev-reg_shift = 2;
 -
   /* reset ASAP, clearing any IRQs */
   omap_i2c_init(dev);
  
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-03-10 Thread Tony Lindgren
* Kevin Hilman khil...@deeprootsystems.com [100310 10:01]:
 Tony Lindgren t...@atomide.com writes:
 
  * Cory Maccarrone darkstar6...@gmail.com [100109 10:34]:
  On Sat, Jan 9, 2010 at 10:33 AM, Tony Lindgren t...@atomide.com wrote:
  
   Let's plan on adding this into omap-testing branch next week so
   we can make sure things are OK for the other platforms.
  
   Then assuming no issues, let's ask Ben can queue it.
  
  
  Excellent, thank you!
 
  Applied to omap-testing with the following fix. Can you please merge
  it into your original patch?
 
 Unfortunately, Tony's additional fix did not make it into the version
 that was merged to mainline, which results in a crash during
 probe when using v2.6.34-rc1.
 
 Ben, can you queue the fix below from Tony for -rc2?

The original patch attached again below.

Oops, did I maybe send a wrong patchwork link earlier to the
patch?

Anyways, for the future, considering how critical this driver is
for all omaps.. And considering how badly this driver needs some
updates done..

How about we pile up the i2c-omap patches for testing into linux-omap
branch first, then ask Ben to pull it around -rc6 after we've all
acked and tested the changes?

Ben does that sound OK to you?

Regards,

Tony
From 07e3b9fc5a37c3d1228ecc6fb2726211bb8d41df Mon Sep 17 00:00:00 2001
From: Tony Lindgren t...@atomide.com
Date: Tue, 9 Mar 2010 16:53:18 -0800
Subject: [PATCH] i2c-omap: Fix reg_shift init

Otherwise register access won't work during probe
for omap_i2c_unidle.

Signed-off-by: Tony Lindgren t...@atomide.com

diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
index c7c2375..3d7cf1f 100644
--- a/drivers/i2c/busses/i2c-omap.c
+++ b/drivers/i2c/busses/i2c-omap.c
@@ -894,6 +894,12 @@ omap_i2c_probe(struct platform_device *pdev)
 	dev-idle = 1;
 	dev-dev = pdev-dev;
 	dev-irq = irq-start;
+
+	if (cpu_is_omap7xx())
+		dev-reg_shift = 1;
+	else
+		dev-reg_shift = 2;
+
 	dev-base = ioremap(mem-start, resource_size(mem));
 	if (!dev-base) {
 		r = -ENOMEM;
@@ -925,11 +931,6 @@ omap_i2c_probe(struct platform_device *pdev)
 		dev-b_hw = 1; /* Enable hardware fixes */
 	}
 
-	if (cpu_is_omap7xx())
-		dev-reg_shift = 1;
-	else
-		dev-reg_shift = 2;
-
 	/* reset ASAP, clearing any IRQs */
 	omap_i2c_init(dev);
 


Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-02-01 Thread Tony Lindgren
* Cory Maccarrone darkstar6...@gmail.com [100111 17:49]:
 On Mon, Jan 11, 2010 at 5:28 PM, Tony Lindgren t...@atomide.com wrote:
 
  Applied to omap-testing with the following fix. Can you please merge
  it into your original patch?
 
 
 Done, I've attached the new patch to here.  I've tested it and it
 works perfectly.

Here's my ack for this patch:

Acked-by: Tony Lindgren t...@atomide.com

 
 - Cory
 
 
 From 7c693afce8ffa3978b4fcecc56cd7d4a9d9d3b75 Mon Sep 17 00:00:00 2001
 From: Cory Maccarrone darkstar6...@gmail.com
 Date: Sat, 5 Dec 2009 22:00:25 -0800
 Subject: [PATCH] [I2C-OMAP] Add support for 16-bit registers
 
 The current i2c-omap driver is set up for 32-bit registers, which
 corresponds to most OMAP devices.  However, OMAP730/850 based
 devices use a 16-bit register size.
 
 This change modifies the driver to perform a runtime CPU type check
 to determine the register sizes, and uses a bit shift of either 1
 or 2 bits to compute the proper register sizes for all registers.
 
 Signed-off-by: Cory Maccarrone darkstar6...@gmail.com
 ---
  drivers/i2c/busses/i2c-omap.c |   45 +++-
  1 files changed, 26 insertions(+), 19 deletions(-)
 
 diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
 index 0037e31..9c3ce4d 100644
 --- a/drivers/i2c/busses/i2c-omap.c
 +++ b/drivers/i2c/busses/i2c-omap.c
 @@ -49,24 +49,24 @@
  #define OMAP_I2C_TIMEOUT (msecs_to_jiffies(1000))
 
  #define OMAP_I2C_REV_REG 0x00
 -#define OMAP_I2C_IE_REG  0x04
 -#define OMAP_I2C_STAT_REG0x08
 -#define OMAP_I2C_IV_REG  0x0c
 +#define OMAP_I2C_IE_REG  0x01
 +#define OMAP_I2C_STAT_REG0x02
 +#define OMAP_I2C_IV_REG  0x03
  /* For OMAP3 I2C_IV has changed to I2C_WE (wakeup enable) */
 -#define OMAP_I2C_WE_REG  0x0c
 -#define OMAP_I2C_SYSS_REG0x10
 -#define OMAP_I2C_BUF_REG 0x14
 -#define OMAP_I2C_CNT_REG 0x18
 -#define OMAP_I2C_DATA_REG0x1c
 -#define OMAP_I2C_SYSC_REG0x20
 -#define OMAP_I2C_CON_REG 0x24
 -#define OMAP_I2C_OA_REG  0x28
 -#define OMAP_I2C_SA_REG  0x2c
 -#define OMAP_I2C_PSC_REG 0x30
 -#define OMAP_I2C_SCLL_REG0x34
 -#define OMAP_I2C_SCLH_REG0x38
 -#define OMAP_I2C_SYSTEST_REG 0x3c
 -#define OMAP_I2C_BUFSTAT_REG 0x40
 +#define OMAP_I2C_WE_REG  0x03
 +#define OMAP_I2C_SYSS_REG0x04
 +#define OMAP_I2C_BUF_REG 0x05
 +#define OMAP_I2C_CNT_REG 0x06
 +#define OMAP_I2C_DATA_REG0x07
 +#define OMAP_I2C_SYSC_REG0x08
 +#define OMAP_I2C_CON_REG 0x09
 +#define OMAP_I2C_OA_REG  0x0a
 +#define OMAP_I2C_SA_REG  0x0b
 +#define OMAP_I2C_PSC_REG 0x0c
 +#define OMAP_I2C_SCLL_REG0x0d
 +#define OMAP_I2C_SCLH_REG0x0e
 +#define OMAP_I2C_SYSTEST_REG 0x0f
 +#define OMAP_I2C_BUFSTAT_REG 0x10
 
  /* I2C Interrupt Enable Register (OMAP_I2C_IE): */
  #define OMAP_I2C_IE_XDR  (1  14)   /* TX Buffer drain int 
 enable */
 @@ -161,6 +161,7 @@ struct omap_i2c_dev {
   struct device   *dev;
   void __iomem*base;  /* virtual */
   int irq;
 + int reg_shift;  /* bit shift for I2C register 
 addresses */
   struct clk  *iclk;  /* Interface clock */
   struct clk  *fclk;  /* Functional clock */
   struct completion   cmd_complete;
 @@ -189,12 +190,12 @@ struct omap_i2c_dev {
  static inline void omap_i2c_write_reg(struct omap_i2c_dev *i2c_dev,
 int reg, u16 val)
  {
 - __raw_writew(val, i2c_dev-base + reg);
 + __raw_writew(val, i2c_dev-base + (reg  i2c_dev-reg_shift));
  }
 
  static inline u16 omap_i2c_read_reg(struct omap_i2c_dev *i2c_dev, int reg)
  {
 - return __raw_readw(i2c_dev-base + reg);
 + return __raw_readw(i2c_dev-base + (reg  i2c_dev-reg_shift));
  }
 
  static int __init omap_i2c_get_clocks(struct omap_i2c_dev *dev)
 @@ -893,6 +894,12 @@ omap_i2c_probe(struct platform_device *pdev)
   dev-idle = 1;
   dev-dev = pdev-dev;
   dev-irq = irq-start;
 +
 + if (cpu_is_omap7xx())
 + dev-reg_shift = 1;
 + else
 + dev-reg_shift = 2;
 +
   dev-base = ioremap(mem-start, resource_size(mem));
   if (!dev-base) {
   r = -ENOMEM;
 -- 
 1.6.3.3

 From 7c693afce8ffa3978b4fcecc56cd7d4a9d9d3b75 Mon Sep 17 00:00:00 2001
 From: Cory Maccarrone darkstar6...@gmail.com
 Date: Sat, 5 Dec 2009 22:00:25 -0800
 Subject: [PATCH] [I2C-OMAP] Add support for 16-bit registers
 
 The current i2c-omap driver is set up for 32-bit registers, which
 corresponds to most OMAP 

[APPLIED] [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-01-11 Thread Tony Lindgren
This patch has been applied to the linux-omap
by youw fwiendly patch wobot.

Branch in linux-omap: omap-testing

Initial commit ID (Likely to change): acc580d61f84565baec4a2fdf9b9d9e88e7bf373

PatchWorks
http://patchwork.kernel.org/patch/66948/

Git (Likely to change, and takes a while to get mirrored)
http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=acc580d61f84565baec4a2fdf9b9d9e88e7bf373


--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-01-11 Thread Tony Lindgren
* Cory Maccarrone darkstar6...@gmail.com [100109 10:34]:
 On Sat, Jan 9, 2010 at 10:33 AM, Tony Lindgren t...@atomide.com wrote:
 
  Let's plan on adding this into omap-testing branch next week so
  we can make sure things are OK for the other platforms.
 
  Then assuming no issues, let's ask Ben can queue it.
 
 
 Excellent, thank you!

Applied to omap-testing with the following fix. Can you please merge
it into your original patch?

Regards,

Tony
From 5b640a850de9fb87b9e9e6dd2cfeb7144ada8053 Mon Sep 17 00:00:00 2001
From: Tony Lindgren t...@atomide.com
Date: Mon, 11 Jan 2010 17:22:21 -0800
Subject: [PATCH] i2c-omap: Fix reg_shift init

Otherwise register access won't work during probe
for omap_i2c_unidle.

Signed-off-by: Tony Lindgren t...@atomide.com

diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
index 913abd7..9c3ce4d 100644
--- a/drivers/i2c/busses/i2c-omap.c
+++ b/drivers/i2c/busses/i2c-omap.c
@@ -894,6 +894,12 @@ omap_i2c_probe(struct platform_device *pdev)
dev-idle = 1;
dev-dev = pdev-dev;
dev-irq = irq-start;
+
+   if (cpu_is_omap7xx())
+   dev-reg_shift = 1;
+   else
+   dev-reg_shift = 2;
+
dev-base = ioremap(mem-start, resource_size(mem));
if (!dev-base) {
r = -ENOMEM;
@@ -925,11 +931,6 @@ omap_i2c_probe(struct platform_device *pdev)
dev-b_hw = 1; /* Enable hardware fixes */
}
 
-   if (cpu_is_omap7xx())
-   dev-reg_shift = 1;
-   else
-   dev-reg_shift = 2;
-
/* reset ASAP, clearing any IRQs */
omap_i2c_init(dev);
 


Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-01-11 Thread Cory Maccarrone
On Mon, Jan 11, 2010 at 5:28 PM, Tony Lindgren t...@atomide.com wrote:

 Applied to omap-testing with the following fix. Can you please merge
 it into your original patch?


Done, I've attached the new patch to here.  I've tested it and it
works perfectly.

- Cory


From 7c693afce8ffa3978b4fcecc56cd7d4a9d9d3b75 Mon Sep 17 00:00:00 2001
From: Cory Maccarrone darkstar6...@gmail.com
Date: Sat, 5 Dec 2009 22:00:25 -0800
Subject: [PATCH] [I2C-OMAP] Add support for 16-bit registers

The current i2c-omap driver is set up for 32-bit registers, which
corresponds to most OMAP devices.  However, OMAP730/850 based
devices use a 16-bit register size.

This change modifies the driver to perform a runtime CPU type check
to determine the register sizes, and uses a bit shift of either 1
or 2 bits to compute the proper register sizes for all registers.

Signed-off-by: Cory Maccarrone darkstar6...@gmail.com
---
 drivers/i2c/busses/i2c-omap.c |   45 +++-
 1 files changed, 26 insertions(+), 19 deletions(-)

diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
index 0037e31..9c3ce4d 100644
--- a/drivers/i2c/busses/i2c-omap.c
+++ b/drivers/i2c/busses/i2c-omap.c
@@ -49,24 +49,24 @@
 #define OMAP_I2C_TIMEOUT (msecs_to_jiffies(1000))

 #define OMAP_I2C_REV_REG   0x00
-#define OMAP_I2C_IE_REG0x04
-#define OMAP_I2C_STAT_REG  0x08
-#define OMAP_I2C_IV_REG0x0c
+#define OMAP_I2C_IE_REG0x01
+#define OMAP_I2C_STAT_REG  0x02
+#define OMAP_I2C_IV_REG0x03
 /* For OMAP3 I2C_IV has changed to I2C_WE (wakeup enable) */
-#define OMAP_I2C_WE_REG0x0c
-#define OMAP_I2C_SYSS_REG  0x10
-#define OMAP_I2C_BUF_REG   0x14
-#define OMAP_I2C_CNT_REG   0x18
-#define OMAP_I2C_DATA_REG  0x1c
-#define OMAP_I2C_SYSC_REG  0x20
-#define OMAP_I2C_CON_REG   0x24
-#define OMAP_I2C_OA_REG0x28
-#define OMAP_I2C_SA_REG0x2c
-#define OMAP_I2C_PSC_REG   0x30
-#define OMAP_I2C_SCLL_REG  0x34
-#define OMAP_I2C_SCLH_REG  0x38
-#define OMAP_I2C_SYSTEST_REG   0x3c
-#define OMAP_I2C_BUFSTAT_REG   0x40
+#define OMAP_I2C_WE_REG0x03
+#define OMAP_I2C_SYSS_REG  0x04
+#define OMAP_I2C_BUF_REG   0x05
+#define OMAP_I2C_CNT_REG   0x06
+#define OMAP_I2C_DATA_REG  0x07
+#define OMAP_I2C_SYSC_REG  0x08
+#define OMAP_I2C_CON_REG   0x09
+#define OMAP_I2C_OA_REG0x0a
+#define OMAP_I2C_SA_REG0x0b
+#define OMAP_I2C_PSC_REG   0x0c
+#define OMAP_I2C_SCLL_REG  0x0d
+#define OMAP_I2C_SCLH_REG  0x0e
+#define OMAP_I2C_SYSTEST_REG   0x0f
+#define OMAP_I2C_BUFSTAT_REG   0x10

 /* I2C Interrupt Enable Register (OMAP_I2C_IE): */
 #define OMAP_I2C_IE_XDR(1  14)   /* TX Buffer drain int 
enable */
@@ -161,6 +161,7 @@ struct omap_i2c_dev {
struct device   *dev;
void __iomem*base;  /* virtual */
int irq;
+   int reg_shift;  /* bit shift for I2C register 
addresses */
struct clk  *iclk;  /* Interface clock */
struct clk  *fclk;  /* Functional clock */
struct completion   cmd_complete;
@@ -189,12 +190,12 @@ struct omap_i2c_dev {
 static inline void omap_i2c_write_reg(struct omap_i2c_dev *i2c_dev,
  int reg, u16 val)
 {
-   __raw_writew(val, i2c_dev-base + reg);
+   __raw_writew(val, i2c_dev-base + (reg  i2c_dev-reg_shift));
 }

 static inline u16 omap_i2c_read_reg(struct omap_i2c_dev *i2c_dev, int reg)
 {
-   return __raw_readw(i2c_dev-base + reg);
+   return __raw_readw(i2c_dev-base + (reg  i2c_dev-reg_shift));
 }

 static int __init omap_i2c_get_clocks(struct omap_i2c_dev *dev)
@@ -893,6 +894,12 @@ omap_i2c_probe(struct platform_device *pdev)
dev-idle = 1;
dev-dev = pdev-dev;
dev-irq = irq-start;
+
+   if (cpu_is_omap7xx())
+   dev-reg_shift = 1;
+   else
+   dev-reg_shift = 2;
+
dev-base = ioremap(mem-start, resource_size(mem));
if (!dev-base) {
r = -ENOMEM;
-- 
1.6.3.3
From 7c693afce8ffa3978b4fcecc56cd7d4a9d9d3b75 Mon Sep 17 00:00:00 2001
From: Cory Maccarrone darkstar6...@gmail.com
Date: Sat, 5 Dec 2009 22:00:25 -0800
Subject: [PATCH] [I2C-OMAP] Add support for 16-bit registers

The current i2c-omap driver is set up for 32-bit registers, which
corresponds to most OMAP devices.  However, OMAP730/850 based
devices use a 16-bit register size.

This change modifies the driver to perform a runtime CPU type check
to 

Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-01-09 Thread Cory Maccarrone
On Sat, Dec 12, 2009 at 5:54 PM, Cory Maccarrone darkstar6...@gmail.com wrote:
 The current i2c-omap driver is set up for 32-bit registers, which
 corresponds to most OMAP devices.  However, OMAP730/850 based
 devices use a 16-bit register size.

 This change modifies the driver to perform a runtime CPU type check
 to determine the register sizes, and uses a bit shift of either 1
 or 2 bits to compute the proper register sizes for all registers.

 Signed-off-by: Cory Maccarrone darkstar6...@gmail.com

Haven't heard anything recently on this one -- any chance of it
getting in for the next -rc merge window, or is this a change that'll
need to go in for the next release?  Without it, I2C doesn't work on
omap7xx devices.

Thanks
- Cory
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-01-09 Thread Tony Lindgren
* Cory Maccarrone darkstar6...@gmail.com [100109 09:45]:
 On Sat, Dec 12, 2009 at 5:54 PM, Cory Maccarrone darkstar6...@gmail.com 
 wrote:
  The current i2c-omap driver is set up for 32-bit registers, which
  corresponds to most OMAP devices.  However, OMAP730/850 based
  devices use a 16-bit register size.
 
  This change modifies the driver to perform a runtime CPU type check
  to determine the register sizes, and uses a bit shift of either 1
  or 2 bits to compute the proper register sizes for all registers.
 
  Signed-off-by: Cory Maccarrone darkstar6...@gmail.com
 
 Haven't heard anything recently on this one -- any chance of it
 getting in for the next -rc merge window, or is this a change that'll
 need to go in for the next release?  Without it, I2C doesn't work on
 omap7xx devices.

Let's plan on adding this into omap-testing branch next week so
we can make sure things are OK for the other platforms.

Then assuming no issues, let's ask Ben can queue it.

Regards,

Tony
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2010-01-09 Thread Cory Maccarrone
On Sat, Jan 9, 2010 at 10:33 AM, Tony Lindgren t...@atomide.com wrote:

 Let's plan on adding this into omap-testing branch next week so
 we can make sure things are OK for the other platforms.

 Then assuming no issues, let's ask Ben can queue it.


Excellent, thank you!

- Cory
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2] [I2C-OMAP] Add support for 16-bit registers

2009-12-12 Thread Cory Maccarrone
The current i2c-omap driver is set up for 32-bit registers, which
corresponds to most OMAP devices.  However, OMAP730/850 based
devices use a 16-bit register size.

This change modifies the driver to perform a runtime CPU type check
to determine the register sizes, and uses a bit shift of either 1
or 2 bits to compute the proper register sizes for all registers.

Signed-off-by: Cory Maccarrone darkstar6...@gmail.com
---
 drivers/i2c/busses/i2c-omap.c |   44 +++-
 1 files changed, 25 insertions(+), 19 deletions(-)

diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
index 827da08..4f8e2f5 100644
--- a/drivers/i2c/busses/i2c-omap.c
+++ b/drivers/i2c/busses/i2c-omap.c
@@ -49,24 +49,24 @@
 #define OMAP_I2C_TIMEOUT (msecs_to_jiffies(1000))
 
 #define OMAP_I2C_REV_REG   0x00
-#define OMAP_I2C_IE_REG0x04
-#define OMAP_I2C_STAT_REG  0x08
-#define OMAP_I2C_IV_REG0x0c
+#define OMAP_I2C_IE_REG0x01
+#define OMAP_I2C_STAT_REG  0x02
+#define OMAP_I2C_IV_REG0x03
 /* For OMAP3 I2C_IV has changed to I2C_WE (wakeup enable) */
-#define OMAP_I2C_WE_REG0x0c
-#define OMAP_I2C_SYSS_REG  0x10
-#define OMAP_I2C_BUF_REG   0x14
-#define OMAP_I2C_CNT_REG   0x18
-#define OMAP_I2C_DATA_REG  0x1c
-#define OMAP_I2C_SYSC_REG  0x20
-#define OMAP_I2C_CON_REG   0x24
-#define OMAP_I2C_OA_REG0x28
-#define OMAP_I2C_SA_REG0x2c
-#define OMAP_I2C_PSC_REG   0x30
-#define OMAP_I2C_SCLL_REG  0x34
-#define OMAP_I2C_SCLH_REG  0x38
-#define OMAP_I2C_SYSTEST_REG   0x3c
-#define OMAP_I2C_BUFSTAT_REG   0x40
+#define OMAP_I2C_WE_REG0x03
+#define OMAP_I2C_SYSS_REG  0x04
+#define OMAP_I2C_BUF_REG   0x05
+#define OMAP_I2C_CNT_REG   0x06
+#define OMAP_I2C_DATA_REG  0x07
+#define OMAP_I2C_SYSC_REG  0x08
+#define OMAP_I2C_CON_REG   0x09
+#define OMAP_I2C_OA_REG0x0a
+#define OMAP_I2C_SA_REG0x0b
+#define OMAP_I2C_PSC_REG   0x0c
+#define OMAP_I2C_SCLL_REG  0x0d
+#define OMAP_I2C_SCLH_REG  0x0e
+#define OMAP_I2C_SYSTEST_REG   0x0f
+#define OMAP_I2C_BUFSTAT_REG   0x10
 
 /* I2C Interrupt Enable Register (OMAP_I2C_IE): */
 #define OMAP_I2C_IE_XDR(1  14)   /* TX Buffer drain int 
enable */
@@ -161,6 +161,7 @@ struct omap_i2c_dev {
struct device   *dev;
void __iomem*base;  /* virtual */
int irq;
+   int reg_shift;  /* bit shift for I2C register 
addresses */
struct clk  *iclk;  /* Interface clock */
struct clk  *fclk;  /* Functional clock */
struct completion   cmd_complete;
@@ -183,12 +184,12 @@ struct omap_i2c_dev {
 static inline void omap_i2c_write_reg(struct omap_i2c_dev *i2c_dev,
  int reg, u16 val)
 {
-   __raw_writew(val, i2c_dev-base + reg);
+   __raw_writew(val, i2c_dev-base + (reg  i2c_dev-reg_shift));
 }
 
 static inline u16 omap_i2c_read_reg(struct omap_i2c_dev *i2c_dev, int reg)
 {
-   return __raw_readw(i2c_dev-base + reg);
+   return __raw_readw(i2c_dev-base + (reg  i2c_dev-reg_shift));
 }
 
 static int __init omap_i2c_get_clocks(struct omap_i2c_dev *dev)
@@ -895,6 +896,11 @@ omap_i2c_probe(struct platform_device *pdev)
dev-b_hw = 1; /* Enable hardware fixes */
}
 
+   if (cpu_is_omap7xx())
+   dev-reg_shift = 1;
+   else
+   dev-reg_shift = 2;
+
/* reset ASAP, clearing any IRQs */
omap_i2c_init(dev);
 
-- 
1.6.3.3

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html