Re: [PATCH] OMAP3: mailbox initialization for all omap versions

2010-03-29 Thread Hiroshi DOYU
Hi Fernando, From: ext Guzman Lugo, Fernando x0095...@ti.com Subject: [PATCH] OMAP3: mailbox initialization for all omap versions Date: Fri, 26 Mar 2010 20:30:34 +0100 From 47783fc3e030d4e49d20ba412661cc1f38d8aec0 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Fri,

[PATCH v2 1/1] omap: Registering sgx device and it's platform data

2010-03-29 Thread Agarwal, Preshit
In this patch SGX powervr_device is registered with it's platform specific data to provide information about setting constraint through omap_pm_set_min_bus_tput. This patch removes the requirement of EXPORT_SYMBOL for the same function. Signed-off-by: Preshit Agarwal preshit.agar...@ti.com

Re: [PATCH] OMAP3: mailbox initialization for all omap versions

2010-03-29 Thread Felipe Balbi
hi, On Mon, Mar 29, 2010 at 08:40:17AM +0200, Doyu Hiroshi (Nokia-D/Helsinki) wrote: From 47783fc3e030d4e49d20ba412661cc1f38d8aec0 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Fri, 26 Mar 2010 13:06:32 -0600 Subject: [PATCH] OMAP3: mailbox initialization for all

Re: [PATCH v2 1/1] omap: Registering sgx device and it's platform data

2010-03-29 Thread Felipe Balbi
Hi, On Mon, Mar 29, 2010 at 08:46:37AM +0200, ext Agarwal, Preshit wrote: In this patch SGX powervr_device is registered with it's platform specific data to provide information about setting constraint through omap_pm_set_min_bus_tput. This patch removes the requirement of EXPORT_SYMBOL for the

Re: [RFC][PATCH] ASoC: OMAP: Fix capture pointer handling for OMAP1510 to work correctly with recent ALSA PCM code

2010-03-29 Thread Jarkko Nikula
On Sun, 28 Mar 2010 22:29:29 +0200 Janusz Krzysztofik jkrzy...@tis.icnet.pl wrote: With recent (2.6.34) chnages in PCM handling, capture stopped working on my OMAP1510 based Amstrad Delta videophone. Using 2.6.34-rc2, I was able to correct the problem in 3 different ways: 1. reverting

Re: [PATCH] OMAP3: mailbox initialization for all omap versions

2010-03-29 Thread Hiroshi DOYU
From: Balbi Felipe (Nokia-D/Helsinki) felipe.ba...@nokia.com Subject: Re: [PATCH] OMAP3: mailbox initialization for all omap versions Date: Mon, 29 Mar 2010 09:01:45 +0200 hi, On Mon, Mar 29, 2010 at 08:40:17AM +0200, Doyu Hiroshi (Nokia-D/Helsinki) wrote: From

Re: Merge plans for Staging Synaptics Touchscreen Driver

2010-03-29 Thread Hemanth V
Hi! Are there any plans to merge the synaptics touchscreen driver (drivers/staging/dream/synaptics_i2c_rmi.c) to drivers/input/touchscreen. We are interested in the same since OMAP3 based Zoom boards use this touchscreen. Plans are, but day job interferes with them. Pl add (if required)

Re: [RFC][PATCH] ASoC: OMAP: Fix capture pointer handling for OMAP1510 to work correctly with recent ALSA PCM code

2010-03-29 Thread Janusz Krzysztofik
Monday 29 March 2010 10:54:59 Jarkko Nikula napisaƂ(a): On Sun, 28 Mar 2010 22:29:29 +0200 Janusz Krzysztofik jkrzy...@tis.icnet.pl wrote: With recent (2.6.34) chnages in PCM handling, capture stopped working on my OMAP1510 based Amstrad Delta videophone. Using 2.6.34-rc2, I was able to

Re: Merge plans for Staging Synaptics Touchscreen Driver

2010-03-29 Thread Hemanth V
Hi! Are there any plans to merge the synaptics touchscreen driver (drivers/staging/dream/synaptics_i2c_rmi.c) to drivers/input/touchscreen. We are interested in the same since OMAP3 based Zoom boards use this touchscreen. Plans are, but day job interferes with them. Pl add (if required)

RE: [patch-2.6.34-rc2+ 10/11] musb_core: don't call musb_platform_exit() twice

2010-03-29 Thread Gadiyar, Anand
Felipe Balbi wrote: On Thu, Mar 25, 2010 at 01:34:25PM +0100, ext Gadiyar, Anand wrote: Felipe Balbi wrote: From: Sergei Shtylyov sshtyl...@ru.mvista.com musb_platform_exit() is called twice from musb_init_controller() iff controller initialization fails. Move the call (and the

Re: Merge plans for Staging Synaptics Touchscreen Driver

2010-03-29 Thread Pavel Machek
Hi! Pl add (if required) below tested by for the staging driver. 1) are you able to use driver in staging? Yes I am able to use staging driver for single touch events. Good. at minimum, non-standard multitouch support needs to be removed before merging to input. Do you have

Re: [RFC][PATCH] Add support for hook switch on ams-delta

2010-03-29 Thread Mark Brown
On Tue, Jun 02, 2009 at 11:04:33PM +0100, Jonathan McDowell wrote: * The commented out code to include the GPIO status in sysfs shouldn't be included. Does the input layer not provide a way to obtain the state of the switch? It does, but only via an ioctl(). -- To unsubscribe from this

[RFC][PATCH v2 1/5] omap1: Amstrad Delta: add FIQ handler for serial keyboard port interrupt processing

2010-03-29 Thread Janusz Krzysztofik
This patch introduces a Fast Interrupt Request (FIQ) handler for Amstrad Delta (E3) videophone. The handler's purpose is to process interrupts generated by a GPIO line that a serial keyboard clock hangs off. It collects consecutive bits into bytes, pushing them into a buffer, then requests a

[RFC][PATCH v2 2/5] omap1: Amstrad Delta: add a handler for processing interrupts generated by the FIQ routine

2010-03-29 Thread Janusz Krzysztofik
This patch introduces an IRQ handler used for processing interrupts generated by the FIQ handler when it decides there are data ready for processing. The handler further invokes device specific interrupt routines based on an interrupt source as passed from the FIQ handler. It can be registered

[RFC][PATCH v2 3/5] omap1: Amstrad Delta: use FIQ for processing GPIO interrupts

2010-03-29 Thread Janusz Krzysztofik
The patch adds initialization of FIQ related handlers to the Amstrad Delta videophone board code. FIQ will be used instead of a traditional IRQ for processing all GPIO generated interrupts, including a keyboard serial clock line. Amstrad Delta defconfig is modified to use FIQ by default.

[RFC][PATCH v2 4/5] input: serio: add support for Amstrad Delta serial keyboard port

2010-03-29 Thread Janusz Krzysztofik
The patch introduces a serio driver that supports a keyboard serial port found on the Amstrad Delta videophone board. After initializing the hardware, the driver reads its input data from a buffer filled in by the board FIQ (Fast Interrupt Request) handler. Standard AT keyboard driver (atkbd)

[RFC][PATCH v2 5/5] omap1: Amstrad Delta: modify defconfig for external keyboard support

2010-03-29 Thread Janusz Krzysztofik
The patch adds a CONFIG directive required for supporting the Amstrad Delta connected external keyboard by default. Works on top of patch 4/5: input: serio: add support for Amstrad Delta serial keyboard port Created and tested against linux-2.6.34-rc2. Signed-off-by: Janusz Krzysztofik

Re: USB on omap2430

2010-03-29 Thread Felipe Balbi
Hi, On Fri, Mar 26, 2010 at 06:44:16PM +0100, ext Felipe Balbi wrote: to me it sounds like you don't have a transceiver. Can you do the following: 1. arm-linux-gdb vmlinux (with the same kernel image you reproduce the crash) 2. (gdb) l *(musb_platform_suspend + 0x20) it should show you the

Re: [PATCH 7/9] OMAP: Devkit8000: Fix wrong usb port on Devkit8000

2010-03-29 Thread Felipe Balbi
On Wed, Mar 24, 2010 at 02:00:01PM +0100, Balbi Felipe (Nokia-D/Helsinki) wrote: On Wed, Mar 24, 2010 at 01:52:16PM +0100, ext Thomas Weber wrote: Disable the nonexistent ehci port on Devkit8000. Signed-off-by: Thomas Weber we...@corscience.de can anyone with this board available (other than