* [PATCH] I2C: OMAP: Add missing wakeup events
@ 2009-01-23 8:49 Pakaravoor, Jagadeesh
[not found] ` <EAF47CD23C76F840A9E7FCE10091EFAB02A39CF17B-/tLxBxkBPtCIQmiDNMet8wC/G2K4zDHf@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Pakaravoor, Jagadeesh @ 2009-01-23 8:49 UTC (permalink / raw)
To: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Ben Dooks
From: Jagadeesh Bhaskar Pakaravoor <j-pakaravoor-l0cyMroinI0@public.gmane.org>
Include wake up events for receiver overflow and transmitter
underflow in OMAP_I2C_WE_REG configuration. Also fix a small
typo.
Signed-off-by: Jagadeesh Bhaskar Pakaravoor <j-pakaravoor-l0cyMroinI0@public.gmane.org>
---
Index: kernel_org/drivers/i2c/busses/i2c-omap.c
===================================================================
--- kernel_org.orig/drivers/i2c/busses/i2c-omap.c 2009-01-23 12:46:58.000000000 +0530
+++ kernel_org/drivers/i2c/busses/i2c-omap.c 2009-01-23 14:15:52.187150630 +0530
@@ -92,8 +92,10 @@
#define OMAP_I2C_STAT_AL (1 << 0) /* Arbitration lost int ena */
/* I2C WE wakeup enable register */
-#define OMAP_I2C_WE_XDR_WE (1 << 14) /* TX drain wakup */
+#define OMAP_I2C_WE_XDR_WE (1 << 14) /* TX drain wakeup */
#define OMAP_I2C_WE_RDR_WE (1 << 13) /* RX drain wakeup */
+#define OMAP_I2C_WE_ROVR_WE (1 << 11) /* RX overflow wakeup */
+#define OMAP_I2C_WE_XUDF_WE (1 << 10) /* TX underflow wakeup */
#define OMAP_I2C_WE_AAS_WE (1 << 9) /* Address as slave wakeup*/
#define OMAP_I2C_WE_BF_WE (1 << 8) /* Bus free wakeup */
#define OMAP_I2C_WE_STC_WE (1 << 6) /* Start condition wakeup */
@@ -104,6 +106,7 @@
#define OMAP_I2C_WE_AL_WE (1 << 0) /* Arbitration lost wakeup */
#define OMAP_I2C_WE_ALL (OMAP_I2C_WE_XDR_WE | OMAP_I2C_WE_RDR_WE | \
+ OMAP_I2C_WE_ROVR_WE | OMAP_I2C_WE_XUDF_WE | \
OMAP_I2C_WE_AAS_WE | OMAP_I2C_WE_BF_WE | \
OMAP_I2C_WE_STC_WE | OMAP_I2C_WE_GC_WE | \
OMAP_I2C_WE_DRDY_WE | OMAP_I2C_WE_ARDY_WE | \
--
With Regards,
Jagadeesh Bhaskar P
----------------------------
Some men see things as they are and say why - I dream things that never were and say why not.
- George Bernard Shaw
----------------------------
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] I2C: OMAP: Add missing wakeup events
[not found] ` <EAF47CD23C76F840A9E7FCE10091EFAB02A39CF17B-/tLxBxkBPtCIQmiDNMet8wC/G2K4zDHf@public.gmane.org>
@ 2009-02-02 7:17 ` Pakaravoor, Jagadeesh
2009-02-02 14:06 ` Ben Dooks
0 siblings, 1 reply; 6+ messages in thread
From: Pakaravoor, Jagadeesh @ 2009-02-02 7:17 UTC (permalink / raw)
To: Ben Dooks
Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Ben,
Did you get a chance to look at this patch?
-----Original Message-----
From: linux-i2c-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [mailto:linux-i2c-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org] On Behalf Of Pakaravoor, Jagadeesh
Sent: Friday, January 23, 2009 2:19 PM
To: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; Ben Dooks
Subject: [PATCH] I2C: OMAP: Add missing wakeup events
From: Jagadeesh Bhaskar Pakaravoor <j-pakaravoor-l0cyMroinI0@public.gmane.org>
Include wake up events for receiver overflow and transmitter
underflow in OMAP_I2C_WE_REG configuration. Also fix a small
typo.
Signed-off-by: Jagadeesh Bhaskar Pakaravoor <j-pakaravoor-l0cyMroinI0@public.gmane.org>
---
Index: kernel_org/drivers/i2c/busses/i2c-omap.c
===================================================================
--- kernel_org.orig/drivers/i2c/busses/i2c-omap.c 2009-01-23 12:46:58.000000000 +0530
+++ kernel_org/drivers/i2c/busses/i2c-omap.c 2009-01-23 14:15:52.187150630 +0530
@@ -92,8 +92,10 @@
#define OMAP_I2C_STAT_AL (1 << 0) /* Arbitration lost int ena */
/* I2C WE wakeup enable register */
-#define OMAP_I2C_WE_XDR_WE (1 << 14) /* TX drain wakup */
+#define OMAP_I2C_WE_XDR_WE (1 << 14) /* TX drain wakeup */
#define OMAP_I2C_WE_RDR_WE (1 << 13) /* RX drain wakeup */
+#define OMAP_I2C_WE_ROVR_WE (1 << 11) /* RX overflow wakeup */
+#define OMAP_I2C_WE_XUDF_WE (1 << 10) /* TX underflow wakeup */
#define OMAP_I2C_WE_AAS_WE (1 << 9) /* Address as slave wakeup*/
#define OMAP_I2C_WE_BF_WE (1 << 8) /* Bus free wakeup */
#define OMAP_I2C_WE_STC_WE (1 << 6) /* Start condition wakeup */
@@ -104,6 +106,7 @@
#define OMAP_I2C_WE_AL_WE (1 << 0) /* Arbitration lost wakeup */
#define OMAP_I2C_WE_ALL (OMAP_I2C_WE_XDR_WE | OMAP_I2C_WE_RDR_WE | \
+ OMAP_I2C_WE_ROVR_WE | OMAP_I2C_WE_XUDF_WE | \
OMAP_I2C_WE_AAS_WE | OMAP_I2C_WE_BF_WE | \
OMAP_I2C_WE_STC_WE | OMAP_I2C_WE_GC_WE | \
OMAP_I2C_WE_DRDY_WE | OMAP_I2C_WE_ARDY_WE | \
--
With Regards,
Jagadeesh Bhaskar P
----------------------------
Some men see things as they are and say why - I dream things that never were and say why not.
- George Bernard Shaw
----------------------------
--
To unsubscribe from this list: send the line "unsubscribe linux-i2c" 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] 6+ messages in thread
* Re: [PATCH] I2C: OMAP: Add missing wakeup events
2009-02-02 7:17 ` Pakaravoor, Jagadeesh
@ 2009-02-02 14:06 ` Ben Dooks
[not found] ` <20090202140606.GN8032-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Ben Dooks @ 2009-02-02 14:06 UTC (permalink / raw)
To: Pakaravoor, Jagadeesh
Cc: Ben Dooks, linux-i2c@vger.kernel.org, linux-omap@vger.kernel.org
On Mon, Feb 02, 2009 at 12:47:05PM +0530, Pakaravoor, Jagadeesh wrote:
> Ben,
>
> Did you get a chance to look at this patch?
Is it a necesary bugfix, or should it wait for the next merge window?
> -----Original Message-----
> From: linux-i2c-owner@vger.kernel.org [mailto:linux-i2c-owner@vger.kernel.org] On Behalf Of Pakaravoor, Jagadeesh
> Sent: Friday, January 23, 2009 2:19 PM
> To: linux-i2c@vger.kernel.org
> Cc: linux-omap@vger.kernel.org; Ben Dooks
> Subject: [PATCH] I2C: OMAP: Add missing wakeup events
>
> From: Jagadeesh Bhaskar Pakaravoor <j-pakaravoor@ti.com>
>
> Include wake up events for receiver overflow and transmitter
> underflow in OMAP_I2C_WE_REG configuration. Also fix a small
> typo.
>
> Signed-off-by: Jagadeesh Bhaskar Pakaravoor <j-pakaravoor@ti.com>
> ---
> Index: kernel_org/drivers/i2c/busses/i2c-omap.c
> ===================================================================
> --- kernel_org.orig/drivers/i2c/busses/i2c-omap.c 2009-01-23 12:46:58.000000000 +0530
> +++ kernel_org/drivers/i2c/busses/i2c-omap.c 2009-01-23 14:15:52.187150630 +0530
> @@ -92,8 +92,10 @@
> #define OMAP_I2C_STAT_AL (1 << 0) /* Arbitration lost int ena */
>
> /* I2C WE wakeup enable register */
> -#define OMAP_I2C_WE_XDR_WE (1 << 14) /* TX drain wakup */
> +#define OMAP_I2C_WE_XDR_WE (1 << 14) /* TX drain wakeup */
> #define OMAP_I2C_WE_RDR_WE (1 << 13) /* RX drain wakeup */
> +#define OMAP_I2C_WE_ROVR_WE (1 << 11) /* RX overflow wakeup */
> +#define OMAP_I2C_WE_XUDF_WE (1 << 10) /* TX underflow wakeup */
> #define OMAP_I2C_WE_AAS_WE (1 << 9) /* Address as slave wakeup*/
> #define OMAP_I2C_WE_BF_WE (1 << 8) /* Bus free wakeup */
> #define OMAP_I2C_WE_STC_WE (1 << 6) /* Start condition wakeup */
> @@ -104,6 +106,7 @@
> #define OMAP_I2C_WE_AL_WE (1 << 0) /* Arbitration lost wakeup */
>
> #define OMAP_I2C_WE_ALL (OMAP_I2C_WE_XDR_WE | OMAP_I2C_WE_RDR_WE | \
> + OMAP_I2C_WE_ROVR_WE | OMAP_I2C_WE_XUDF_WE | \
> OMAP_I2C_WE_AAS_WE | OMAP_I2C_WE_BF_WE | \
> OMAP_I2C_WE_STC_WE | OMAP_I2C_WE_GC_WE | \
> OMAP_I2C_WE_DRDY_WE | OMAP_I2C_WE_ARDY_WE | \
> --
> With Regards,
> Jagadeesh Bhaskar P
>
> ----------------------------
> Some men see things as they are and say why - I dream things that never were and say why not.
> - George Bernard Shaw
> ----------------------------
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-i2c" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-i2c" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Ben (ben@fluff.org, http://www.fluff.org/)
'a smiley only costs 4 bytes'
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] I2C: OMAP: Add missing wakeup events
[not found] ` <20090202140606.GN8032-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org>
@ 2009-02-02 15:26 ` Pakaravoor, Jagadeesh
[not found] ` <EAF47CD23C76F840A9E7FCE10091EFAB02A3D4524D-/tLxBxkBPtCIQmiDNMet8wC/G2K4zDHf@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Pakaravoor, Jagadeesh @ 2009-02-02 15:26 UTC (permalink / raw)
To: Ben Dooks
Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Hi,
> Is it a necesary bugfix, or should it wait for the next merge window?
You can line it up for the next merge window.
-Jagadeesh
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] I2C: OMAP: Add missing wakeup events
[not found] ` <EAF47CD23C76F840A9E7FCE10091EFAB02A3D4524D-/tLxBxkBPtCIQmiDNMet8wC/G2K4zDHf@public.gmane.org>
@ 2009-02-20 18:42 ` Tony Lindgren
[not found] ` <20090220184243.GU7414-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Tony Lindgren @ 2009-02-20 18:42 UTC (permalink / raw)
To: Pakaravoor, Jagadeesh
Cc: Ben Dooks, linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
* Pakaravoor, Jagadeesh <j-pakaravoor-l0cyMroinI0@public.gmane.org> [090202 07:28]:
> Hi,
> > Is it a necesary bugfix, or should it wait for the next merge window?
>
> You can line it up for the next merge window.
Just for references, I'm assuming that Ben has picked up this for his
queue, so not adding it to any of my ustream queues.
Acked-by: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
Regards,
Tony
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] I2C: OMAP: Add missing wakeup events
[not found] ` <20090220184243.GU7414-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
@ 2009-05-04 15:13 ` Jagadeesh Bhaskar Pakaravoor
0 siblings, 0 replies; 6+ messages in thread
From: Jagadeesh Bhaskar Pakaravoor @ 2009-05-04 15:13 UTC (permalink / raw)
To: Ben Dooks, Tony Lindgren
Cc: Pakaravoor, Jagadeesh,
linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Ben,
On Sat, Feb 21, 2009 at 12:12 AM, Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> wrote:
>
> * Pakaravoor, Jagadeesh <j-pakaravoor-l0cyMroinI0@public.gmane.org> [090202 07:28]:
> > Hi,
> > > Is it a necesary bugfix, or should it wait for the next merge window?
> >
> > You can line it up for the next merge window.
>
> Just for references, I'm assuming that Ben has picked up this for his
> queue, so not adding it to any of my ustream queues.
>
> Acked-by: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
>
> Regards,
>
> Tony
Is this patch applied?
--
With Regards,
Jagadeesh Bhaskar Pakaravoor
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-05-04 15:13 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-23 8:49 [PATCH] I2C: OMAP: Add missing wakeup events Pakaravoor, Jagadeesh
[not found] ` <EAF47CD23C76F840A9E7FCE10091EFAB02A39CF17B-/tLxBxkBPtCIQmiDNMet8wC/G2K4zDHf@public.gmane.org>
2009-02-02 7:17 ` Pakaravoor, Jagadeesh
2009-02-02 14:06 ` Ben Dooks
[not found] ` <20090202140606.GN8032-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org>
2009-02-02 15:26 ` Pakaravoor, Jagadeesh
[not found] ` <EAF47CD23C76F840A9E7FCE10091EFAB02A3D4524D-/tLxBxkBPtCIQmiDNMet8wC/G2K4zDHf@public.gmane.org>
2009-02-20 18:42 ` Tony Lindgren
[not found] ` <20090220184243.GU7414-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2009-05-04 15:13 ` Jagadeesh Bhaskar Pakaravoor
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox