Re: [PATCH] onenand_init: Allow disabling sync read and write based on flags (Re: [PATCH 1/4] onenand init: Rename board-n800-flash.c to gpmc-onenand.c)

2009-05-04 Thread Adrian Hunter
Tony Lindgren wrote: * Tony Lindgren t...@atomide.com [090430 07:06]: * vimal singh vimalsi...@ti.com [090429 23:33]: 'gpmc-onenand.c' is still confusing name. This is not going to used in all boards anyway. Why do you think this cannot be used for all boards? The GPMC timings are totally

Re: [PATCH] input: Add support for the TSC2003 controller.

2009-05-04 Thread Thierry Reding
* Kwangwoo Lee wrote: Hi Thierry and Trilok, On Wed, Apr 29, 2009 at 10:23 PM, Trilok Soni soni.tri...@gmail.com wrote: Hi Thierry, I have added linux-omap community. How different is this chip from tsc2007. It looks to me that this chip is not much different from tsc2007 (this is

Re: [PATCH] input: Add support for the TSC2003 controller.

2009-05-04 Thread Trilok Soni
Hi Thierry, On Mon, May 4, 2009 at 5:07 PM, Thierry Reding thierry.red...@avionic-design.de wrote: * Kwangwoo Lee wrote: Hi Thierry and Trilok, On Wed, Apr 29, 2009 at 10:23 PM, Trilok Soni soni.tri...@gmail.com wrote: Hi Thierry, I have added linux-omap community. How different is this

Re: [PATCH] I2C: OMAP: Add missing wakeup events

2009-05-04 Thread Jagadeesh Bhaskar Pakaravoor
Ben, On Sat, Feb 21, 2009 at 12:12 AM, Tony Lindgren t...@atomide.com wrote: * Pakaravoor, Jagadeesh j-pakarav...@ti.com [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

Re: [PATCH] onenand_init: Allow disabling sync read and write based on flags, v2 (Re: [PATCH 1/4] onenand init: Rename board-n800-flash.c to gpmc-onenand.c)

2009-05-04 Thread Tony Lindgren
* vimal singh vimalsi...@ti.com [090503 22:36]: On Fri, May 1, 2009 at 11:08 PM, Tony Lindgren t...@atomide.com wrote: * Tony Lindgren t...@atomide.com [090430 11:56]: * Tony Lindgren t...@atomide.com [090430 07:06]: * vimal singh vimalsi...@ti.com [090429 23:33]: 'gpmc-onenand.c'

Re: [PATCH] input: Add support for the TSC2003 controller.

2009-05-04 Thread Thierry Reding
* Trilok Soni wrote: Hi Thierry, On Mon, May 4, 2009 at 5:07 PM, Thierry Reding thierry.red...@avionic-design.de wrote: * Kwangwoo Lee wrote: Hi Thierry and Trilok, On Wed, Apr 29, 2009 at 10:23 PM, Trilok Soni soni.tri...@gmail.com wrote: Hi Thierry, I have added

Re: [PATCH] input: Add support for the TSC2003 controller.

2009-05-04 Thread Trilok Soni
Hi Therry, On Mon, May 4, 2009 at 8:27 PM, Thierry Reding thierry.red...@avionic-design.de wrote: * Trilok Soni wrote: Hi Thierry, On Mon, May 4, 2009 at 5:07 PM, Thierry Reding thierry.red...@avionic-design.de wrote: * Kwangwoo Lee wrote: Hi Thierry and Trilok, On Wed, Apr 29, 2009

Re: [PATCH] onenand_init: Allow disabling sync read and write based on flags, v3

2009-05-04 Thread Tony Lindgren
* Adrian Hunter adrian.hun...@nokia.com [090504 01:27]: Tony Lindgren wrote: * Tony Lindgren t...@atomide.com [090430 07:06]: * vimal singh vimalsi...@ti.com [090429 23:33]: 'gpmc-onenand.c' is still confusing name. This is not going to used in all boards anyway. Why do you think this cannot

[PATCH 0/7] Generic gpmc-onenand initialization, v3

2009-05-04 Thread Tony Lindgren
Hi all, Here's the whole series one more time, looks like I missed Juha from the recipients originally. After all it's mostly Juha's code! :) To recap, this series creates a generic gpmc-onenand.c out of the board-n800-flash.c so we can get this init code to the mainline kernel. This series is

[PATCH 1/7] onenand init: Rename board-n800-flash.c to gpmc-onenand.c

2009-05-04 Thread Tony Lindgren
Rename board-n800-flash.c to gpmc-onenand.c. Signed-off-by: Tony Lindgren t...@atomide.com --- arch/arm/mach-omap2/Makefile |4 ++-- arch/arm/mach-omap2/gpmc-onenand.c |0 2 files changed, 2 insertions(+), 2 deletions(-) rename arch/arm/mach-omap2/{board-n800-flash.c =

[PATCH 2/7] onenand init: Build gpmc-onenand.o based on CONFIG_MTD_ONENAND_OMAP2

2009-05-04 Thread Tony Lindgren
Build gpmc-onenand.o based on CONFIG_MTD_ONENAND_OMAP2 Signed-off-by: Tony Lindgren t...@atomide.com --- arch/arm/mach-omap2/Makefile |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index 9127a94..9cb2662

[PATCH 3/7] onenand init: Rename n800_* functions to gpmc_onenand_* functions

2009-05-04 Thread Tony Lindgren
Rename n800_* functions to gpmc_onenand_* functions Signed-off-by: Tony Lindgren t...@atomide.com --- arch/arm/mach-omap2/Makefile |1 - arch/arm/mach-omap2/board-n800.c |2 +- arch/arm/mach-omap2/board-rx51-flash.c| 21 ---

[PATCH 4/7] onenand init: Pass configuration data from board-*.c files

2009-05-04 Thread Tony Lindgren
Pass configuration data from board-*.c files. Also remove support for the OMAP_TAG_PARTITION tag. If the partition info is passed, it should be passed from cmdline, and probably should be done in a generic way in the drivers/mtd. Signed-off-by: Tony Lindgren t...@atomide.com ---

[PATCH 5/7] onenand_init: Allow disabling sync read and write based on flags, v3

2009-05-04 Thread Tony Lindgren
Allow disabling sync read and write based on flags Signed-off-by: Tony Lindgren t...@atomide.com --- arch/arm/mach-omap2/board-n800.c |1 + arch/arm/mach-omap2/board-rx51-peripherals.c |1 + arch/arm/mach-omap2/gpmc-onenand.c | 43 ++

[PATCH 6/7] onenand init: Convert omap3430sdp to use gpmc-onenand

2009-05-04 Thread Tony Lindgren
Convert omap3430sdp to use gpmc-onenand. Note that sync mode does not seem to work for some reason, so disable it with flags. Signed-off-by: Tony Lindgren t...@atomide.com --- arch/arm/mach-omap2/board-3430sdp-flash.c | 28 ++-- 1 files changed, 2 insertions(+), 26

[PATCH 7/7] onenand_init: Clean-up for checkpatch.pl

2009-05-04 Thread Tony Lindgren
Clean-up for checkpatch.pl Signed-off-by: Tony Lindgren t...@atomide.com --- arch/arm/mach-omap2/gpmc-onenand.c| 15 +-- arch/arm/plat-omap/include/mach/onenand.h |5 ++--- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git

Re: Anyone have MUSB working on PM branch?

2009-05-04 Thread Rebecca Schultz Zavin
I'm pretty sure we do, though I doubt we have it doing the right thing across power events, we're still in the process of getting all our drivers to behave. Check out the android omap tree: http://android.git.kernel.org/?p=kernel/omap.git;a=shortlog;h=refs/heads/android-omap-2.6.29 Rebecca On

[DSPBRIDGE] Staging TODO List

2009-05-04 Thread Ramirez Luna, Omar
Hi All, I think I have a more organized list of TODO tasks, which it is being hosted at omapzoom tracker: https://www.omapzoom.org/gf/project/omapbridge/tracker/ Please comment or feel free to contribute with patches, bug reports or feedback. Thanks to the people who provided comments for

Re: [PATCH] onenand_init: Allow disabling sync read and write based on flags, v2 (Re: [PATCH 1/4] onenand init: Rename board-n800-flash.c to gpmc-onenand.c)

2009-05-04 Thread vimal singh
On Mon, May 4, 2009 at 9:29 PM, Tony Lindgren t...@atomide.com wrote: * vimal singh vimalsi...@ti.com [090503 22:36]: On Fri, May 1, 2009 at 11:08 PM, Tony Lindgren t...@atomide.com wrote: * Tony Lindgren t...@atomide.com [090430 11:56]: * Tony Lindgren t...@atomide.com [090430 07:06]: