RE: [REVIEW PATCH 00/14] OMAP3 camera + ISP + MT9P012 sensor driver v2

2009-02-06 Thread Hiremath, Vaibhav
Thanks, Vaibhav Hiremath -Original Message- From: video4linux-list-boun...@redhat.com [mailto:video4linux-list- boun...@redhat.com] On Behalf Of Sakari Ailus Sent: Monday, January 19, 2009 3:50 PM To: Aguirre Rodriguez, Sergio Alberto Cc: Nagalla, Hari;

Re: OMAP3 EHCI USB HS mode performance issue

2009-02-06 Thread Ganeshan N
Hi Ajay, I have tested with USB hard disk and getting ~264 Mbps.  Is there any option/method to increase the performance? with regards Ganeshan - Original Message From: Ganeshan N nganesh...@yahoo.com To: Gupta, Ajay Kumar ajay.gu...@ti.com; linux-omap@vger.kernel.org

[patch 2.6.29-rc3-git] input: twl4030_keypad driver

2009-02-06 Thread David Brownell
From: David Brownell dbrown...@users.sourceforge.net Add a driver for the keypad controller on TWL4030 family chips. These support up to an 8x8 key matrix. The TWL4030 multifunction chips are mostly used on OMAP3 (or OMAP 2430) based boards. Reviewed-by: Trilok Soni soni.tri...@gmail.com

RE: [patch 2.6.29-rc3-git] input: twl4030_keypad driver

2009-02-06 Thread Gadiyar, Anand
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap-ow...@vger.kernel.org] On Behalf Of David Brownell Sent: Friday, February 06, 2009 2:27 PM To: linux-in...@vger.kernel.org Cc: OMAP Subject: [patch 2.6.29-rc3-git] input: twl4030_keypad driver From:

[PATCH PM] OMAP3 McSPI: Adds context save/restore

2009-02-06 Thread Nayak, Rajendra
From: Hemanth V heman...@ti.com This patch adds context save/restore feature to McSPI driver. This includes fixes by Aaro Koskinen Signed-off-by: Hemanth V heman...@ti.com --- drivers/spi/omap2_mcspi.c | 136 ++ 1 files changed, 101 insertions(+),

[PATCH v2] usb: otg: adding nop usb transceiver

2009-02-06 Thread Ajay Kumar Gupta
NOP transceiver is used by all the usb transceiver which are mostly autonomous and doesn't require any programming or which are built into the usb ip itself.NOP transceiver only allocates the memory for struct xceiv and calls otg_set_transceiver() so function call to otg_get_transceiver() will

Re: [PATCH PM] OMAP3 McSPI: Adds context save/restore

2009-02-06 Thread Aaro Koskinen
Hello, ext Nayak, Rajendra wrote: From: Hemanth V heman...@ti.com This patch adds context save/restore feature to McSPI driver. This includes fixes by Aaro Koskinen Signed-off-by: Hemanth V heman...@ti.com For some reason git-am does not take this to my tree, but when applied with patch

Re: [PATCH] OMAP: MMC: recover from transfer failures - Resend

2009-02-06 Thread Jean Pihet
On Thursday 05 February 2009 21:32:03 Paul Walmsley wrote: On Thu, 5 Feb 2009, Andrew Morton wrote: On Tue, 3 Feb 2009 15:05:58 +0100 Jean Pihet jpi...@mvista.com wrote: + while (OMAP_HSMMC_READ(host-base, + SYSCTL) SRD) + ; Is a

Re: [PATCH] OMAP: MMC: recover from transfer failures - Resend

2009-02-06 Thread Pierre Ossman
On Fri, 6 Feb 2009 14:22:32 +0100 Jean Pihet jpi...@mvista.com wrote: On Thursday 05 February 2009 21:32:03 Paul Walmsley wrote: On Thu, 5 Feb 2009, Andrew Morton wrote: An infinite loop which assumes the hardware is perfect is always a worry. But I see the driver already does that, so

Re: [PATCH v2] board-omap3beagle: set i2c-3 to 100kHz

2009-02-06 Thread Koen Kooi
Op 4 feb 2009, om 20:58 heeft Koen Kooi het volgende geschreven: Op 25 jan 2009, om 13:04 heeft David Brownell het volgende geschreven: On Sunday 25 January 2009, Koen Kooi wrote: From: Koen Kooi k...@beagleboard.org Changing it do 100kHz is needed to make more devices works properly.

Re: [PATCH 2/3] usb: musb: fix bug in musb_start_urb

2009-02-06 Thread Sergei Shtylyov
Ajay Kumar Gupta wrote: urb-transfer_buffer_length and urb-transfer_buffer should be updated based on urb-actual_length.For a fresh and first time urb, actual_length will be zero but for urbs which has been stopped and restarted (as bulk nak scheme does) actual_length may not be zero.

Re: [REVIEW PATCH 00/14] OMAP3 camera + ISP + MT9P012 sensor driver v2

2009-02-06 Thread Sakari Ailus
Hiremath, Vaibhav wrote: [Hiremath, Vaibhav] Sakari, Can you share your version of code (either in form of patches or source) here onto the mailing list, so that everybody those who are interested will be aware of changes? I will synchronise soon with Sergio (as he noted). After that we'll

Re: [REVIEW PATCH 00/14] OMAP3 camera + ISP + MT9P012 sensor driver v2

2009-02-06 Thread Hans Verkuil
On Friday 06 February 2009 16:03:26 Sakari Ailus wrote: Hiremath, Vaibhav wrote: [Hiremath, Vaibhav] Sakari, Can you share your version of code (either in form of patches or source) here onto the mailing list, so that everybody those who are interested will be aware of changes? I will

[PATCH] OMAP: MMC: replace infinite loops with timeouts (was Re: [PATCH] OMAP: MMC: recover from transfer failures - Resend)

2009-02-06 Thread Jean Pihet
Hi, On Thu, 5 Feb 2009, Andrew Morton wrote: An infinite loop which assumes the hardware is perfect is always a worry. But I see the driver already does that, so we're no worse off.. Do you want a finite loop with udelay in it? I located 4 places were this could be used. If

[PATCH 3/3] usb: musb: NAK timeout scheme on bulk reserved ep

2009-02-06 Thread Ajay Kumar Gupta
Fixes endpoint starvation issue when more than one bulk qhs are multiplexed on reserved bulk endpoint.NAK timeout interval is set for such qhs and next qh is scheduled when NAK timeout occurs. This scheme doesn't work for devices which are connected to a high to full speed tree as there is no NAK

[PATCH 1/3] usb: musb: adding high bandwidth support

2009-02-06 Thread Ajay Kumar Gupta
Tested with Creative (Live! Cam Optia) USB camera which uses high bandwidth isochronous interface.FIFO table has been updated for Rx high bandwidth case. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com --- drivers/usb/musb/musb_core.c | 18 drivers/usb/musb/musb_host.c |

[PATCH 2/3] usb: musb: fix bug in musb_start_urb

2009-02-06 Thread Ajay Kumar Gupta
urb-transfer_buffer_length and urb-transfer_buffer should be updated based on urb-actual_length.For a fresh and first time urb, actual_length will be zero but for urbs which has been stopped and restarted (as bulk nak scheme does) actual_length may not be zero. Signed-off-by: Ajay Kumar Gupta

Re: [patch 2.6.29-rc3-git] input: twl4030_keypad driver

2009-02-06 Thread David Brownell
On Friday 06 February 2009, Gadiyar, Anand wrote: Reviewed-by: Trilok Soni soni.tri...@gmail.com                                                  ^^^ Cut-paste error? Yes. Will it mess up git-shortlog accounting a little or is it safe to ignore? No idea; but that's trivial for

RE: [REVIEW PATCH 00/14] OMAP3 camera + ISP + MT9P012 sensor driver v2

2009-02-06 Thread Hiremath, Vaibhav
Thanks, Vaibhav Hiremath -Original Message- From: Sakari Ailus [mailto:sakari.ai...@maxwell.research.nokia.com] Sent: Friday, February 06, 2009 8:33 PM To: Hiremath, Vaibhav Cc: Ailus Sakari (Nokia-D/Helsinki); Aguirre Rodriguez, Sergio Alberto; Nagalla, Hari;

Re: [PATCH D 11/11] Fix omap1 clock issues

2009-02-06 Thread Paul Walmsley
Hello Russell, On Thu, 29 Jan 2009, Russell King - ARM Linux wrote: On Wed, Jan 28, 2009 at 12:18:48PM -0700, Paul Walmsley wrote: From: Tony Lindgren t...@atomide.com This fixes booting, and is a step toward fixing things properly: - Make enable_reg u32 instead of u16 No, you're

Re: [PATCH D 11/11] Fix omap1 clock issues

2009-02-06 Thread Russell King - ARM Linux
On Fri, Feb 06, 2009 at 02:19:34PM -0700, Paul Walmsley wrote: [p...@pwsan.com: This patch has been updated to use offsets for OMAP1 clock enable registers, to resolve all current sparse warnings with the clock code, and to convert most magic constants into symbolic macros. Wish you

Re: [PATCH v2] board-omap3beagle: set i2c-3 to 100kHz

2009-02-06 Thread Tony Lindgren
* Koen Kooi k.k...@student.utwente.nl [090206 06:16]: Op 4 feb 2009, om 20:58 heeft Koen Kooi het volgende geschreven: Op 25 jan 2009, om 13:04 heeft David Brownell het volgende geschreven: On Sunday 25 January 2009, Koen Kooi wrote: From: Koen Kooi k...@beagleboard.org Changing it do

[PATCH] OMAP3 GPIO: Fix getting the value of the GPIO output pin

2009-02-06 Thread Joonyoung Shim
If the GPIO pin is output, must read the value from OMAP24XX_GPIO_DATAOUT register in __omap_get_gpio_datain(). Signed-off-by: Joonyoung Shim jy0922.s...@samsung.com --- diff --git a/arch/arm/plat-omap/gpio.c b/arch/arm/plat-omap/gpio.c index f856a90..296773a 100644 ---

[PATCH] twl4030-gpio: Fix getting the value of the TWL4030 GPIO output pin

2009-02-06 Thread Joonyoung Shim
If TWL4030 GPIO pin is output, must read the value from REG_GPIODATAOUTx register in twl4030_get_gpio_datainout(). Signed-off-by: Joonyoung Shim jy0922.s...@samsung.com --- diff --git a/drivers/gpio/twl4030-gpio.c b/drivers/gpio/twl4030-gpio.c index afad147..890518a 100644 ---