Re: NAND ECC in linux-omap

2010-08-24 Thread Vimal Singh
On Tue, Aug 24, 2010 at 8:04 PM, Cliff Brake cliff.br...@gmail.com wrote: flash_erasall -j /dev/mtd4 Give a try without using '-j' option... If ECC layout is the suspect.. this may help. -- Regards, Vimal Singh -- To unsubscribe from this list: send the line unsubscribe linux-omap

Re: NAND ECC in linux-omap

2010-08-27 Thread Vimal Singh
Adding LO and MTD list too for more comments. On Sat, Aug 28, 2010 at 1:40 AM, Vimal Singh vimal.neww...@gmail.com wrote: On Sat, Aug 28, 2010 at 12:00 AM, Cliff Brake cliff.br...@gmail.com wrote: On Fri, Aug 27, 2010 at 2:29 PM, Cliff Brake cliff.br...@gmail.com wrote: On Fri, Aug 27, 2010

Re: Issue : jffs2 and ecc layout

2010-10-07 Thread Vimal Singh
T32) and verify if commands issued were written correctly to appropriate registers. [1]: http://marc.info/?l=linux-omapm=128302624528822w=2 [2] commit: http://git.infradead.org/mtd-2.6.git/commitdiff/2c01946c6b9ebaa5a89710bc42ca224a7f52f227 -- Regards, Vimal Singh -- To unsubscribe from

Re: [PATCH v3] OMAP: NAND: Fix static declaration warning

2010-10-07 Thread Vimal Singh
, Vimal Singh -- 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 09/10] OMAP2/3: Convert write/read functions to raw read/write

2010-10-07 Thread Vimal Singh
++ != cpu_to_le16(__raw_readw(info-nand.IO_ADDR_R))) There was an old comment to remove use of 'cpu_to_le16' from driver, I just missed it. Can you rather use 'ioread16_rep' for reading data. -- Regards, Vimal Singh -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message

Re: [PATCH] omap3: nand: bch ecc support added

2011-01-20 Thread Vimal Singh
); + +       return no_of_err; +} +EXPORT_SYMBOL(decode_bch); + -- 1.7.0.4 -- 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 -- Regards, Vimal

Re: [PATCH] omap3: nand: bch ecc support added

2011-01-20 Thread Vimal Singh
On Fri, Jan 21, 2011 at 9:37 AM, Ghorai, Sukumar s-gho...@ti.com wrote: -Original Message- From: Vimal Singh [mailto:vimal.neww...@gmail.com] Sent: Thursday, January 20, 2011 8:47 PM To: Ghorai, Sukumar Cc: linux-omap@vger.kernel.org; linux-...@lists.infradead.org; linux-arm- ker

[PATCH 0/3][NAND][OMAP]: fixing omap nand driver issues

2010-01-06 Thread Vimal Singh
From 3700088e8da8c890d9e4c6eb626e18287d149b97 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 5 Jan 2010 16:43:08 +0530 Subject: [PATCH] fixing omap nand driver issues fixing omap nand driver issues. Vimal Singh (3): Fixing compilation warning for 'nand/omap2.c' NAND

[PATCH 1/3][NAND][OMAP]: Fixing compilation warning for 'nand/omap2.c'

2010-01-06 Thread Vimal Singh
From 3e856346f93afaf3f519dffe7987e4bbf56a136d Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 5 Jan 2010 12:49:24 +0530 Subject: [PATCH] Fixing compilation warning for 'nand/omap2.c' Fixing below warning in compilation: drivers/mtd/nand/omap2.c: In function

[PATCH 2/3][NAND][OMAP]: correct 'info' pointer in 'omap_nand_remove'

2010-01-06 Thread Vimal Singh
From bf5256c8c29100c3a55e29a8a5d6718ba5817519 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 5 Jan 2010 16:01:08 +0530 Subject: [PATCH] NAND: OMAP: correct 'info' pointer in 'omap_nand_remove' Removing OMAP NAND driver, when loaded as a module, gives error and does

[PATCH 3/3][NAND][OMAP]: Fixing issue in oamp nand driver in prefetch mode read

2010-01-06 Thread Vimal Singh
From 3700088e8da8c890d9e4c6eb626e18287d149b97 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 5 Jan 2010 16:37:03 +0530 Subject: [PATCH] NAND: OMAP: Fixing issue in oamp nand driver in prefetch mode read There is a bug in nand prefetch read routine, which comes into effect

Re: [PATCH v2 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2010-01-06 Thread Vimal Singh
On Wed, Jan 6, 2010 at 8:04 PM, Artem Bityutskiy dedeki...@gmail.com wrote: On Mon, 2009-12-14 at 15:17 +0530, Vimal Singh wrote: From 6170aa1c63c49a3f09e76258f400230b742fdd6f Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Wed, 25 Nov 2009 18:23:15 +0530 Subject: [PATCH

Re: [PATCH 3/3][NAND][OMAP]: Fixing issue in oamp nand driver in prefetch mode read

2010-01-06 Thread Vimal Singh
On Wed, Jan 6, 2010 at 7:36 PM, Vimal Singh vimal.neww...@gmail.com wrote: From 3700088e8da8c890d9e4c6eb626e18287d149b97 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 5 Jan 2010 16:37:03 +0530 Subject: [PATCH] NAND: OMAP: Fixing issue in oamp nand driver in prefetch

Re: [PATCH 1/3][NAND][OMAP]: Fixing compilation warning for 'nand/omap2.c'

2010-01-08 Thread Vimal Singh
On Fri, Jan 8, 2010 at 8:31 PM, Premi, Sanjeev pr...@ti.com wrote: -Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap-ow...@vger.kernel.org] On Behalf Of Vimal Singh Sent: Wednesday, January 06, 2010 7:30 PM To: Linux MTD Cc: linux-omap@vger.kernel.org

Re: Issue in oamp nand driver with 32-bit reads in prefetch mode

2010-01-10 Thread Vimal Singh
On Sun, Jan 10, 2010 at 2:16 PM, Artem Bityutskiy dedeki...@gmail.com wrote: On Thu, 2009-12-31 at 17:50 +0530, Vimal Singh wrote: There is a bug in nand prefetch read routine, which comes into effect only if nand device is a 16-bit device (as we have in zoom boards). This bug is effective

[PATCH v3]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2010-01-11 Thread Vimal Singh
Re-summiting this patch. After re-basing on LO master. -vimal From a7ea8851fe96690c9322393eb35a344853992166 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 11 Jan 2010 16:01:29 +0530 Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init Introducing

Re: [PATCH v3]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2010-01-11 Thread Vimal Singh
On Mon, Jan 11, 2010 at 4:10 PM, Vimal Singh vimal.neww...@gmail.com wrote: Re-summiting this patch. After re-basing on LO master. -vimal From a7ea8851fe96690c9322393eb35a344853992166 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 11 Jan 2010 16:01:29 +0530

Re: [PATCH v3]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2010-01-12 Thread Vimal Singh
On Tue, Jan 12, 2010 at 6:31 AM, Tony Lindgren t...@atomide.com wrote: Hi, Few more comments below. * Vimal Singh vimal.neww...@gmail.com [100111 02:47]: On Mon, Jan 11, 2010 at 4:10 PM, Vimal Singh vimal.neww...@gmail.com wrote: Re-summiting this patch. After re-basing on LO master

[PATCH 1/3] Introducing 'gpmc-nand.c' for GPMC specific NAND init

2010-01-12 Thread Vimal Singh
From 89eaa5d55e04f65e76ad49ed8b010cba578d91ca Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 11 Jan 2010 16:01:29 +0530 Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init Introducing 'gpmc-nand.c' for GPMC specific NAND init. For example: GPMC timing

[PATCH 2/3] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init

2010-01-12 Thread Vimal Singh
From 994785b066a9bd4fbaf7753cb6ab7317440afd36 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 12 Jan 2010 17:22:42 +0530 Subject: [PATCH] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init This patch adds 'board-sdp-flash.c', which could be utilized by boards

[PATCH 3/3] OMAP3: Add support for flash on 3430SDP board

2010-01-12 Thread Vimal Singh
From 4fbddd880c7a0da61fb66ae1d2c2553e3fbc82cb Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 12 Jan 2010 17:23:57 +0530 Subject: [PATCH] OMAP3: Add support for flash on 3430SDP board This patch adds support for flashes on 3430SDP boards. All three NAND, NOR and OneNAND

[PATCH 0/3] nand support on zoom boards

2010-01-12 Thread Vimal Singh
From 345704a79f15b0481b14d5d504b0bcdf55f2a9a6 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 12 Jan 2010 18:12:53 +0530 Subject: [PATCH] nand support on zoom boards I have verified it on zoom2/3 support on zoom boards. I still have not tried it on LDP (zoom1) board. So

[PATCH 1/3] OMAP: ZOOM: Introducing 'board-zoom-flash.c'

2010-01-12 Thread Vimal Singh
From c97a9126f713fa7577ea555a555dc9f22513c154 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 12 Jan 2010 17:26:07 +0530 Subject: [PATCH] OMAP: ZOOM: Introducing 'board-zoom-flash.c' This patch adds 'board-zoom-flash.c', which could be utilized by boards similar to ZOOM2

[PATCH 3/3] OMAP3: Add support for NAND on ZOOM3 board

2010-01-12 Thread Vimal Singh
From 345704a79f15b0481b14d5d504b0bcdf55f2a9a6 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 12 Jan 2010 17:56:44 +0530 Subject: [PATCH] OMAP3: Add support for NAND on ZOOM3 board This patch adds NAND support to ZOOM3 board. Signed-off-by: Vimal Singh vimalsi...@ti.com

Re: NAND misreads on omap beagle and overo

2010-01-29 Thread Vimal Singh
? -- Jeff DeFouw je...@i2k.com __ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/ -- Regards, Vimal Singh -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body

Re: [PATCH 1/3] Introducing 'gpmc-nand.c' for GPMC specific NAND init

2010-02-04 Thread Vimal Singh
On Fri, Feb 5, 2010 at 5:17 AM, Tony Lindgren t...@atomide.com wrote: Hi, Almost there.. Few more comments below. * Vimal Singh vimal.neww...@gmail.com [100112 22:48]: From 89eaa5d55e04f65e76ad49ed8b010cba578d91ca Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 11

[PATCH v2 0/3] OMAP: NAND: support flashes on sdp boards

2010-02-08 Thread Vimal Singh
On Wed, Jan 13, 2010 at 12:16 PM, Vimal Singh vimal.neww...@gmail.com wrote: From 4fbddd880c7a0da61fb66ae1d2c2553e3fbc82cb Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 12 Jan 2010 18:14:14 +0530 Subject: [PATCH] OMAP: NAND: support flashes on sdp boards Reposting

[PATCH v2 1/3] Introducing 'gpmc-nand.c' for GPMC specific NAND init

2010-02-08 Thread Vimal Singh
From 35da04834f4b0363e90a628bdb369318d80b7a6c Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Fri, 5 Feb 2010 05:56:18 +0530 Subject: [PATCH 1/3] Introducing 'gpmc-nand.c' for GPMC specific NAND init Introducing 'gpmc-nand.c' for GPMC specific NAND init. For example: GPMC

[PATCH v2 2/3] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init

2010-02-08 Thread Vimal Singh
From e586d2fbbecc60bc66687c4e6d4798913bb33b7a Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 8 Feb 2010 05:02:45 +0530 Subject: [PATCH 2/3] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init This patch adds 'board-sdp-flash.c', which could be utilized by boards

[PATCH v2 3/3] OMAP3: Add support for flash on 3430SDP board

2010-02-08 Thread Vimal Singh
From d3e5ee6d8a6449aee01fbc93313201a4674f5577 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 8 Feb 2010 05:06:33 +0530 Subject: [PATCH 3/3] OMAP3: Add support for flash on 3430SDP board This patch adds support for flashes on 3430SDP boards. All three NAND, NOR and OneNAND

Re: [PATCH v2 2/3] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init

2010-02-08 Thread Vimal Singh
sdp_nor_data = { +     .width          = 2, +     .set_vpp        = omap_set_vpp, +}; ... and in case there is not, just leave set_vpp set to NULL and delete this incarnation of omap_set_vpp. My bad. I just did not look into that. I'll fix it as per your suggestion. -- Regards, Vimal Singh

[PATCH v3 2/3] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init

2010-02-08 Thread Vimal Singh
In this version: (as per comments recieved for 2nd version) - remove 'omap_set_vpp' function - set 'set_vpp' to null These changes do not have any impact on rest of the patches in series. -vimal From 6199d9c4db83dfd006f7cc2e74089ca1e9fdf8dc Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi

Re: [PATCH v3 2/3] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init

2010-02-08 Thread Vimal Singh
On Mon, Feb 8, 2010 at 9:02 PM, Ladislav Michl ladislav.mi...@seznam.cz wrote: On Mon, Feb 08, 2010 at 06:38:57PM +0530, Vimal Singh wrote: In this version: (as per comments recieved for 2nd version) - remove 'omap_set_vpp' function - set 'set_vpp' to null Ah, I'm sorry for not being quite

[PATCH v3 2/3] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init

2010-02-08 Thread Vimal Singh
Sorry, mailer corrupted the last patch (line wrapped). Here is the correct patch. - vimal From f931fb85b774f97db3b0a25cde4a8154bb8d6dba Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 8 Feb 2010 05:02:45 +0530 Subject: [PATCH] OMAP: SDP: Introducing 'board-sdp-flash.c

Re: [PATCH 0/3] nand support on zoom boards

2010-02-10 Thread Vimal Singh
Re-posting this patch series once again after re-basing on latest LO master. - vimal On Wed, Jan 13, 2010 at 12:31 PM, Vimal Singh vimal.neww...@gmail.com wrote: From 345704a79f15b0481b14d5d504b0bcdf55f2a9a6 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 12 Jan 2010

[PATCH v2 1/3] OMAP: ZOOM: Introducing 'board-zoom-flash.c'

2010-02-10 Thread Vimal Singh
From: Vimal Singh vimalsi...@ti.com This patch adds 'board-zoom-flash.c', which could be utilized by boards similar to ZOOM2. (For ex: LDP, ZOOM2, ZOOM3). This does initialization for NAND device based on the 'cs' number and partition information passed from board file (ex: board-zoom2.c

[PATCH v2 2/3] OMAP3: Add support for NAND on ZOOM2 board

2010-02-10 Thread Vimal Singh
From: Vimal Singh vimalsi...@ti.com This patch adds NAND support to ZOOM2 board. This uses 'board-zoom-flash.c' for NAND initialization. Signed-off-by: Vimal Singh vimalsi...@ti.com --- arch/arm/mach-omap2/Makefile |1 + arch/arm/mach-omap2/board-zoom2.c | 49

[PATCH v2 3/3] OMAP3: Add support for NAND on ZOOM3 board

2010-02-10 Thread Vimal Singh
From: Vimal Singh vimalsi...@ti.com This patch adds NAND support to ZOOM3 board. Signed-off-by: Vimal Singh vimalsi...@ti.com --- arch/arm/mach-omap2/Makefile |1 + arch/arm/mach-omap2/board-zoom3.c | 49 + 2 files changed, 50 insertions(+), 0

Re: [PATCH v2 1/3] OMAP: ZOOM: Introducing 'board-zoom-flash.c'

2010-02-13 Thread Vimal Singh
On Fri, Feb 12, 2010 at 2:49 AM, Tony Lindgren t...@atomide.com wrote: * Tony Lindgren t...@atomide.com [100211 12:43]: * Vimal Singh vimal.neww...@gmail.com [100210 21:16]: From: Vimal Singh vimalsi...@ti.com This patch adds 'board-zoom-flash.c', which could be utilized by boards

Re: probe of omap2-nand failed with -16

2010-03-08 Thread Vimal Singh
=88c8460ac32283e2a25e36e4670ff5ab02f3b521 -- Regards, Vimal Singh -- 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-v4 0/4] OMAP: Adding flash support to SDP, ZOOM2 and LDP boards

2009-10-26 Thread Vimal Singh
arch/arm/plat-omap/include/plat/board-sdp.h | 15 arch/arm/plat-omap/include/plat/board-zoom.h | 36 + arch/arm/plat-omap/include/plat/gpmc.h |2 arch/arm/plat-omap/include/plat/nand.h |2 14 files changed, 1095 insertions(+), 403 deletions(-) -- Regards, Vimal Singh

[PATCH-v4 1/4] OMAP2/3: Add support for flash on SDP boards

2009-10-26 Thread Vimal Singh
From 92c416f513df62cc0ad75b61639df27f2857b641 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 26 Oct 2009 14:24:18 +0530 Subject: [PATCH] OMAP2/3: Add support for flash on SDP boards Add support for flash on SDP boards. NAND, NOR and OneNAND are supported. Only tested

[PATCH-v4 2/4] OMAP3: Add support for NAND on ZOOM2/LDP boards

2009-10-26 Thread Vimal Singh
From 76e86c500e247e231c975f0a5bf01e832bf460d6 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 26 Oct 2009 14:25:26 +0530 Subject: [PATCH] OMAP3: Add support for NAND on ZOOM2/LDP boards Adding NAND support for ZOOM2 and LDP board. I have tested it for ZOOM2 boards, someone

[PATCH-v4 3/4] OMAP: Zoom2: Enable NAND and JFFS2 support in defconfig

2009-10-26 Thread Vimal Singh
From d99d0bb2f2bf1d6a1b8197daf93634dc5a9fa16f Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 26 Oct 2009 16:56:16 +0530 Subject: [PATCH] OMAP: Zoom2: Enable NAND and JFFS2 support in defconfig Enable NAND and JFFS2 options by default in zoom2_defconfig file Other changes

[PATCH 4/4] OMAP: 3430SDP: Enable NAND in defconfig

2009-10-26 Thread Vimal Singh
From 7f9c36fb821c2a836508be712e8247d6b283acfe Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 26 Oct 2009 17:23:57 +0530 Subject: [PATCH] OMAP: 3430SDP: Enable NAND in defconfig Enable NAND options by default in 3430sdp_defconfig file Other changes in defconfig come from

Re: [PATCH 0/3] NAND: OMAP: Fix and clean NAND driver

2009-10-30 Thread Vimal Singh
Looping Linux-omap mailing list. From: Vimal Singh vimalsi...@ti.com Date: Fri, 30 Oct 2009 11:34:14 +0530 Subject: [PATCH 0/3] NAND: OMAP: Fix and clean NAND driver This patch series addresses some of the issues in omap nand driver. Vimal Singh (3): Fixing compilation warning for 'nand/omap2

Re: [PATCH 1/3] Fixing compilation warning for 'nand/omap2.c'

2009-10-30 Thread Vimal Singh
Looping Linux-omap mailing list. From: Vimal Singh vimalsi...@ti.com Date: Fri, 30 Oct 2009 11:31:34 +0530 Subject: [PATCH] Fixing compilation warning for 'nand/omap2.c' Fixing below warning in compilation: drivers/mtd/nand/omap2.c: In function 'omap_write_buf_dma_pref': drivers/mtd/nand/omap2

Re: [PATCH 2/3]NAND: OMAP: Fixing omap nand driver, compiled as module

2009-10-30 Thread Vimal Singh
Looping Linux-omap mailing list. From: Vimal Singh vimalsi...@ti.com Date: Fri, 30 Oct 2009 11:32:17 +0530 Subject: [PATCH] NAND: OMAP: Fixing omap nand driver, compiled as module Removing OMAP NAND driver, when loaded as a module, gives error and does not get success. This fixes this and makes

Re: [PATCH 3/3] NAND: OMAP: Simplifying HWECC and removing unnecessary macros

2009-10-30 Thread Vimal Singh
Looping Linunx-omap mailing list. From: Vimal Singh vimalsi...@ti.com Date: Fri, 30 Oct 2009 11:33:34 +0530 Subject: [PATCH] NAND: OMAP: Simplifying HWECC and removing unnecessary macros Removing number of macros from the top, which were being used for generating ture ECC earlier

Re: [PATCH 2/3]NAND: OMAP: Fixing omap nand driver, compiled as module

2009-10-30 Thread Vimal Singh
Last time I forgot to 'git add' for 'arch/arm/mach-omap2/gpmc.c'... My bad. Correct patch is below. -vimal From: Vimal Singh vimalsi...@ti.com Date: Fri, 30 Oct 2009 14:54:29 +0530 Subject: [PATCH] NAND: OMAP: Fixing omap nand driver, compiled as module Removing OMAP NAND driver, when loaded

Re: [PATCH 3/3] NAND: OMAP: Simplifying HWECC and removing unnecessary macros

2009-10-30 Thread Vimal Singh
I removed function description comments for 'omap_correct_data' by mistake last time. Correcting that. Updated patch is below. Sorry for noise. -vimal From: Vimal Singh vimalsi...@ti.com Date: Fri, 30 Oct 2009 17:41:55 +0530 Subject: [PATCH] NAND: OMAP: Simplifying HWECC and removing

Re: [PATCH v2] [OMAP3_PM] Fix omap zoom2 defconfig build error

2009-11-02 Thread Vimal Singh
-omap2/pm-debug.c @@ -625,4 +625,6 @@ arch_initcall(pm_dbg_init);  #else  void pm_dbg_update_time(struct powerdomain *pwrdm, int prev) {} +int pm_dbg_regset_init(int reg_set) {} +int pm_dbg_regset_save(int reg_set) {} 'return 0' to avoid compilation warning... -- Regards, Vimal Singh  #endif

Re: [PATCH 2/3]NAND: OMAP: Fixing omap nand driver, compiled as module

2009-11-03 Thread Vimal Singh
On Tue, Nov 3, 2009 at 1:58 PM, Artem Bityutskiy dedeki...@gmail.com wrote: On Fri, 2009-10-30 at 14:57 +0530, Vimal Singh wrote: Last time I forgot to 'git add' for 'arch/arm/mach-omap2/gpmc.c'... My bad. Correct patch is below. -vimal From: Vimal Singh vimalsi...@ti.com Date: Fri, 30

Re: [PATCH 1/3] Fixing compilation warning for 'nand/omap2.c'

2009-11-03 Thread Vimal Singh
On Tue, Nov 3, 2009 at 1:48 PM, Artem Bityutskiy dedeki...@gmail.com wrote: On Fri, 2009-10-30 at 14:12 +0530, Vimal Singh wrote: Looping Linux-omap mailing list. From: Vimal Singh vimalsi...@ti.com Date: Fri, 30 Oct 2009 11:31:34 +0530 Subject: [PATCH] Fixing compilation warning for 'nand

Re: [PATCH 2/3]NAND: OMAP: Fixing omap nand driver, compiled as module

2009-11-03 Thread Vimal Singh
On Tue, Nov 3, 2009 at 2:09 PM, Artem Bityutskiy dedeki...@gmail.com wrote: On Tue, 2009-11-03 at 14:05 +0530, Vimal Singh wrote: On Tue, Nov 3, 2009 at 1:58 PM, Artem Bityutskiy dedeki...@gmail.com wrote: On Fri, 2009-10-30 at 14:57 +0530, Vimal Singh wrote: Last time I forgot to 'git add

Re: [PATCH 1/3] Fixing compilation warning for 'nand/omap2.c'

2009-11-03 Thread Vimal Singh
-mail to yourself, then save it and apply with git-am. If it works, send to the mailing list. Below patch applies. Sorry for noise... :( Thanks, vimal From eebbd81141b196af2dc3f7a2650ce16b6b0d76ae Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Fri, 30 Oct 2009 11:31:34 +0530

Re: [PATCH-v4 0/4] OMAP: Adding flash support to SDP, ZOOM2 and LDP boards

2009-11-04 Thread Vimal Singh
Hi Tony, I did not see any comment on these patches. Could you please upstream these? Or, do you have some other plan? - vimal On Mon, Oct 26, 2009 at 5:37 PM, Vimal Singh vimal.neww...@gmail.com wrote: I posted a patch series for this sometime back and did not get any respose.. :( http

Re: [PATCH 0/3] NAND: OMAP: Fix and clean NAND driver

2009-11-09 Thread Vimal Singh
Artem, I just saw you have taken 2nd patch from this series to your tree . Could you please be able to maintain this full series? Tony, You may want to look into 1st and 2nd patch in this series. -vimal On Fri, Oct 30, 2009 at 2:12 PM, Vimal Singh vimal.neww...@gmail.com wrote: Looping Linux

Re: [PATCH-v4 1/4] OMAP2/3: Add support for flash on SDP boards

2009-11-09 Thread Vimal Singh
On Tue, Nov 10, 2009 at 2:21 AM, Tony Lindgren t...@atomide.com wrote: Hi, Few comments below. * Vimal Singh vimal.neww...@gmail.com [091026 05:10]: From 92c416f513df62cc0ad75b61639df27f2857b641 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 26 Oct 2009 14:24:18

[PATCH-v5 0/4] OMAP: Adding flash support to SDP, ZOOM2 and LDP boards

2009-11-10 Thread Vimal Singh
From 225e5c1e38ba1d4a14757150b0b7caf1d8cab893 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 10 Nov 2009 15:24:29 +0530 Subject: [PATCH] OMAP: Adding flash support to SDP, ZOOM2 and LDP boards This is v5 of this patch series. This patch series adds flash support for NAND

[PATCH-v5 1/4] OMAP2/3: Add support for flash on SDP boards

2009-11-10 Thread Vimal Singh
From 42f080e0915bbce1509fc8ab3773569fec0a44f1 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 10 Nov 2009 11:39:39 +0530 Subject: [PATCH] OMAP2/3: Add support for flash on SDP boards Add support for flash on SDP boards. NAND, NOR and OneNAND are supported. Only tested

[PATCH-v5 2/4] OMAP3: Add support for NAND on ZOOM2/LDP boards

2009-11-10 Thread Vimal Singh
From 6f535d7128ca392458dd0cb31d138cda84747c06 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 10 Nov 2009 11:42:45 +0530 Subject: [PATCH] OMAP3: Add support for NAND on ZOOM2/LDP boards Adding NAND support for ZOOM2 and LDP board. I have tested it for ZOOM2 boards, someone

[PATCH-v5 3/4] OMAP: Zoom2: Enable NAND and JFFS2 support in defconfig

2009-11-10 Thread Vimal Singh
From ddd6a39e4725c1e3947fab9a54399e9e7de508cd Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 10 Nov 2009 11:48:24 +0530 Subject: [PATCH] OMAP: Zoom2: Enable NAND and JFFS2 support in defconfig Enable NAND and JFFS2 options by default in zoom2_defconfig file Other changes

[PATCH-v5 4/4] OMAP: 3430SDP: Enable NAND in defconfig

2009-11-10 Thread Vimal Singh
From 225e5c1e38ba1d4a14757150b0b7caf1d8cab893 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 10 Nov 2009 15:24:07 +0530 Subject: [PATCH] OMAP: 3430SDP: Enable NAND in defconfig Enable NAND by default in 3430sdp_defconfig file. This patch also enables MTD_CMDLINE_PARTS

Re: [PATCH 1/3] Fixing compilation warning for 'nand/omap2.c'

2009-11-10 Thread Vimal Singh
On Tue, Nov 10, 2009 at 7:56 PM, Artem Bityutskiy dedeki...@gmail.com wrote: On Tue, 2009-11-10 at 16:20 +0200, Artem Bityutskiy wrote: On Tue, 2009-11-03 at 14:31 +0530, Vimal Singh wrote: diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c index 090ab87..92573d5 100644

Re: [PATCH 1/3] Fixing compilation warning for 'nand/omap2.c'

2009-11-10 Thread Vimal Singh
On Tue, Nov 10, 2009 at 7:54 PM, Artem Bityutskiy dedeki...@gmail.com wrote: On Tue, 2009-11-03 at 14:31 +0530, Vimal Singh wrote: diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c index 090ab87..92573d5 100644 --- a/drivers/mtd/nand/omap2.c +++ b/drivers/mtd/nand/omap2.c

Re: [PATCH 2/3]NAND: OMAP: Fixing omap nand driver, compiled as module

2009-11-10 Thread Vimal Singh
On Wed, Nov 11, 2009 at 12:26 AM, Tony Lindgren t...@atomide.com wrote: * Artem Bityutskiy dedeki...@gmail.com [091110 06:22]: On Fri, 2009-10-30 at 14:57 +0530, Vimal Singh wrote: Last time I forgot to 'git add' for 'arch/arm/mach-omap2/gpmc.c'... My bad. Correct patch is below. -vimal

[PATCH] Fixing keymap for zoom2 according to matrix keypad framwork

2009-11-12 Thread Vimal Singh
From fa0ed0d00ee835d70cd4b1d32f89d4e845e0fff8 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 12 Nov 2009 14:46:00 +0530 Subject: [PATCH] Fixing keymap for zoom2 according to matrix keypad framwork Interpretation of 'row' and 'col' got reversed in matrix keymap framework

Re: [PATCH 4/4] Add ASoC support for DEVKIT8000

2009-11-12 Thread Vimal Singh
On Thu, Nov 12, 2009 at 3:54 PM, Kim Botherway kbother...@djdvant.com wrote: This patch add support for DEVKIT8000, it is a copy of Beagleboard sound driver diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig index 653a362..8cdcfe9 100644 --- a/sound/soc/omap/Kconfig +++

Re: [PATCH 3/4] Add support for DEVKIT8000 LCD

2009-11-12 Thread Vimal Singh
); +module_exit(omap3devkit8000_panel_drv_exit); -- 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 -- Regards, Vimal Singh -- To unsubscribe from

Re: [PATCH 2/4] Add omap3_devkit8000_defconfig

2009-11-12 Thread Vimal Singh
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 -- Regards, Vimal Singh -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message

Re: [PATCH 3/8] OMAP3 hwmod: Add automatic OCP_SYSCONFIG AUTOIDLE handling

2009-11-18 Thread Vimal Singh
On Wed, Nov 18, 2009 at 6:35 AM, Kevin Hilman khil...@deeprootsystems.com wrote: From: Paul Walmsley p...@pwsan.com This patch fills in the OCP_SYSCONFIG.AUTOIDLE handling in the OMAP hwmod code. After this patch, the hwmod code will set the module AUTOIDLE bit (generally

Re: [PATCH-v5 2/4] OMAP3: Add support for NAND on ZOOM2/LDP boards

2009-11-18 Thread Vimal Singh
Tony, On Fri, Nov 13, 2009 at 2:14 AM, Tony Lindgren t...@atomide.com wrote: * Vimal Singh vimal.neww...@gmail.com [091110 02:08]: From 6f535d7128ca392458dd0cb31d138cda84747c06 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 10 Nov 2009 11:42:45 +0530 Subject: [PATCH

Re: [PATCH-v5 1/4] OMAP2/3: Add support for flash on SDP boards

2009-11-18 Thread Vimal Singh
On Fri, Nov 13, 2009 at 2:10 AM, Tony Lindgren t...@atomide.com wrote: * Vimal Singh vimal.neww...@gmail.com [091110 02:08]: From 42f080e0915bbce1509fc8ab3773569fec0a44f1 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 10 Nov 2009 11:39:39 +0530 Subject: [PATCH] OMAP2

Re: [PATCH-v5 1/4] OMAP2/3: Add support for flash on SDP boards

2009-11-19 Thread Vimal Singh
On Wed, Nov 18, 2009 at 10:33 PM, Tony Lindgren t...@atomide.com wrote: * Vimal Singh vimal.neww...@gmail.com [091118 07:25]: On Fri, Nov 13, 2009 at 2:10 AM, Tony Lindgren t...@atomide.com wrote: * Vimal Singh vimal.neww...@gmail.com [091110 02:08]: From

Re: [PATCH-v5 2/4] OMAP3: Add support for NAND on ZOOM2/LDP boards

2009-11-19 Thread Vimal Singh
On Wed, Nov 18, 2009 at 10:37 PM, Tony Lindgren t...@atomide.com wrote: * Vimal Singh vimal.neww...@gmail.com [091118 06:38]: Tony, On Fri, Nov 13, 2009 at 2:14 AM, Tony Lindgren t...@atomide.com wrote: * Vimal Singh vimal.neww...@gmail.com [091110 02:08]: From

[PATCH-v6 0/4] OMAP: Adding flash support to SDP, ZOOM2 and LDP boards

2009-11-19 Thread Vimal Singh
Here is the v6 of this patch series. I am cc'ing mtd list too this time. From 8bc97108cf9c78216f1ea5407ccbd900e6b63dc2 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 19 Nov 2009 19:28:11 +0530 This patch series adds flash support for NAND (in sdp, zoom and ldp), OneNAND

Re: [PATCH-v6 0/4] OMAP: Adding flash support to SDP, ZOOM2 and LDP boards

2009-11-19 Thread Vimal Singh
Sorry, forgot to append diffstat. Listing below this time. On Thu, Nov 19, 2009 at 7:38 PM, Vimal Singh vimal.neww...@gmail.com wrote: Here is the v6 of this patch series. I am cc'ing mtd list too this time. From 8bc97108cf9c78216f1ea5407ccbd900e6b63dc2 Mon Sep 17 00:00:00 2001 From: Vimal

[PATCH-v6 2/4] OMAP3: Add support for NAND on ZOOM/LDP boards

2009-11-19 Thread Vimal Singh
From 43df1ee9e29d454100e59ee4902db157072b81b6 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 19 Nov 2009 14:37:44 +0530 Subject: [PATCH] OMAP3: Add support for NAND on ZOOM/LDP boards Adding NAND support for ZOOM2/3 and LDP board. I have tested it for ZOOM2 boards

[PATCH-v6 3/4] OMAP: Zoom2: Enable NAND and JFFS2 support in defconfig

2009-11-19 Thread Vimal Singh
From 8bc97108cf9c78216f1ea5407ccbd900e6b63dc2 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 19 Nov 2009 19:23:18 +0530 Subject: [PATCH] OMAP: Zoom2: Enable NAND and JFFS2 support in defconfig Enable NAND (and other necessary options too) and JFFS2 options by default

[PATCH-v6 4/4] OMAP: 3430SDP: Enable NAND in defconfig

2009-11-19 Thread Vimal Singh
From cff30e52d3702c154310557145090b2375c870c3 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 19 Nov 2009 19:17:38 +0530 Subject: [PATCH] OMAP: 3430SDP: Enable NAND in defconfig Enable NAND by default in 3430sdp_defconfig file. Other changes in defconfig come from make

[PATCH-v6 1/4] OMAP2/3: Add support for flash on SDP boards

2009-11-19 Thread Vimal Singh
From ac109bb5f47577b323673699a94f9b6a4a7e2431 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 19 Nov 2009 19:01:11 +0530 Subject: [PATCH] OMAP2/3: Add support for flash on SDP boards Add support for flash on SDP boards. NAND, NOR and OneNAND are supported. This patch also

Re: [PATCH-v6 0/4] OMAP: Adding flash support to SDP, ZOOM2 and LDP boards

2009-11-19 Thread Vimal Singh
On Thu, Nov 19, 2009 at 7:52 PM, Nishanth Menon n...@ti.com wrote: Vimal Singh had written, on 11/19/2009 08:11 AM, the following: [...] v4-v5: [PATCH-v5 1/4] OMAP2/3: Add support for flash on SDP boards: Implemented Tony's comments.  arch/arm/configs/omap_3430sdp_defconfig      |  140

Re: [PATCH-v6 2/4] OMAP3: Add support for NAND on ZOOM/LDP boards

2009-11-19 Thread Vimal Singh
On Thu, Nov 19, 2009 at 7:50 PM, Nishanth Menon n...@ti.com wrote: Vimal Singh had written, on 11/19/2009 08:16 AM, the following: From 43df1ee9e29d454100e59ee4902db157072b81b6 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 19 Nov 2009 14:37:44 +0530 Subject: [PATCH

Re: [PATCH-v6 0/4] OMAP: Adding flash support to SDP, ZOOM2 and LDP boards

2009-11-24 Thread Vimal Singh
On Tue, Nov 24, 2009 at 8:36 PM, Artem Bityutskiy dedeki...@gmail.com wrote: On Thu, 2009-11-19 at 19:38 +0530, Vimal Singh wrote: Here is the v6 of this patch series. I am cc'ing mtd list too this time. From 8bc97108cf9c78216f1ea5407ccbd900e6b63dc2 Mon Sep 17 00:00:00 2001 From: Vimal Singh

Re: [PATCH-v5 2/4] OMAP3: Add support for NAND on ZOOM2/LDP boards

2009-11-29 Thread Vimal Singh
On Mon, Nov 23, 2009 at 11:15 PM, Tony Lindgren t...@atomide.com wrote: * Vimal Singh vimal.neww...@gmail.com [091119 00:52]: On Wed, Nov 18, 2009 at 10:37 PM, Tony Lindgren t...@atomide.com wrote: * Vimal Singh vimal.neww...@gmail.com [091118 06:38]: Tony, On Fri, Nov 13, 2009 at 2:14

Re: [PATCH-v5 2/4] OMAP3: Add support for NAND on ZOOM2/LDP boards

2009-11-29 Thread Vimal Singh
On Mon, Nov 23, 2009 at 11:15 PM, Tony Lindgren t...@atomide.com wrote: * Vimal Singh vimal.neww...@gmail.com [091119 00:52]: On Wed, Nov 18, 2009 at 10:37 PM, Tony Lindgren t...@atomide.com wrote: * Vimal Singh vimal.neww...@gmail.com [091118 06:38]: Tony, On Fri, Nov 13, 2009 at 2:14

Re: [PATCH-v6 0/4] OMAP: Adding flash support to SDP, ZOOM2 and LDP boards

2009-12-02 Thread Vimal Singh
From 8bc97108cf9c78216f1ea5407ccbd900e6b63dc2 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 19 Nov 2009 19:28:11 +0530 This patch series adds flash support for NAND (in sdp, zoom and ldp), OneNAND and NOR (in sdp) Tested on Zoom2 and 3430SDP Vimal

[PATCH 0/2]OMAP: Introducing gpmc-nand.c

2009-12-03 Thread Vimal Singh
From fadc45cca4026d26d00a759efdc681303b0d3097 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 3 Dec 2009 18:35:23 +0530 Subject: [PATCH] OMAP: Introducing gpmc-nand.c This patch series introduces generic gpmc-nand.c for nand device related gpmc init. Vimal Singh (2

[PATCH 1/2]: Correcting GPMC_CONFIG1_DEVICETYPE_NAND

2009-12-03 Thread Vimal Singh
From efeeb1cfc592c827424b4c76b18150e801bdfbab Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Wed, 25 Nov 2009 17:47:46 +0530 Subject: [PATCH] Correcting GPMC_CONFIG1_DEVICETYPE_NAND For NAND devices '2' should be used with GPMC_CONFIG1_DEVICETYPE instead of '1'. Signed-off

[PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-03 Thread Vimal Singh
From fadc45cca4026d26d00a759efdc681303b0d3097 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Wed, 25 Nov 2009 18:23:15 +0530 Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init Introducing 'gpmc-nand.c' for GPMC specific NAND init. For example: GPMC timing

[PATCH 1/2]: OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init

2009-12-03 Thread Vimal Singh
From 13d52884956a26f93826c443e2b8bd78615f74d6 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 26 Nov 2009 16:10:24 +0530 Subject: [PATCH] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init This patch adds 'board-sdp-flash.c', which could be utilized by boards

[PATCH 2/2]: OMAP3: Add support for flash on 3430SDP board

2009-12-03 Thread Vimal Singh
From f48199dc44e1bf5f56aa981d20f35dc8ce1113bf Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 1 Dec 2009 11:24:46 +0530 Subject: [PATCH] OMAP3: Add support for flash on 3430SDP board This patch adds support for flashes on 3430SDP boards. All three NAND, NOR and OneNAND

[PATCH 0/4]: Adding NAND support for LDP/ZOOM boards

2009-12-03 Thread Vimal Singh
From 1786a05d3331850ff5c49e4edafe68a411597173 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 3 Dec 2009 18:36:11 +0530 Subject: [PATCH] Adding NAND support for LDP/ZOOM boards '1st' patch in this series introduces 'board-zoom-flash.c' for NAND init in ZOOM boards. Other

[PATCH 1/4]: OMAP: ZOOM: Introducing 'board-zoom-flash.c' for NAND init in ZOOM boards

2009-12-03 Thread Vimal Singh
From 948584f4157a9eb99ba085968d23add28cbfd160 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 1 Dec 2009 11:36:56 +0530 Subject: [PATCH] OMAP: ZOOM: Introducing 'board-zoom-flash.c' This patch adds 'board-zoom-flash.c', which could be utilized by boards similar to ZOOM2

[PATCH 2/4]: OMAP3: Add support for NAND on ZOOM2 board

2009-12-03 Thread Vimal Singh
From 06890a29ed85068787d2bc3af3c38d29b4e0e421 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 3 Dec 2009 18:21:44 +0530 Subject: [PATCH] OMAP3: Add support for NAND on ZOOM2 board This patch adds NAND support to ZOOM2 board. This uses 'board-zoom-flash.c' for NAND

[PATCH 3/4]: OMAP3: Add support for NAND on ZOOM3 board

2009-12-03 Thread Vimal Singh
From 4259c6ae2e6d9b5e316fa8289a9fca729fc6bc83 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 3 Dec 2009 18:23:37 +0530 Subject: [PATCH] OMAP3: Add support for NAND on ZOOM3 board This patch adds NAND support to ZOOM3 board. Signed-off-by: Vimal Singh vimalsi...@ti.com

[PATCH 4/4]: OMAP3: Add support for NAND on LDP board

2009-12-03 Thread Vimal Singh
From 1786a05d3331850ff5c49e4edafe68a411597173 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Thu, 3 Dec 2009 18:26:45 +0530 Subject: [PATCH] OMAP3: Add support for NAND on LDP board This patch adds NAND support to LDP board. Signed-off-by: Vimal Singh vimalsi...@ti.com

Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-04 Thread Vimal Singh
Hi all, Please ignore previous patch, it has a compilation error. Correct patch is present below. -vimal From e024a2e6aa2051259ad904daff13bdac73b3b1b8 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Wed, 25 Nov 2009 18:23:15 +0530 Subject: [PATCH] Introducing 'gpmc-nand.c

Re: [PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-04 Thread Vimal Singh
e024a2e6aa2051259ad904daff13bdac73b3b1b8 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Wed, 25 Nov 2009 18:23:15 +0530 Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init Introducing 'gpmc-nand.c' for GPMC specific NAND init. For example: GPMC timing parameters and all. This patch also

  1   2   >