From: Ben Dooks Date: Sun, 2 Apr 2006 09:32:46 +0000 (+0100) Subject: [ARM] 3449/1: [S3C2410] Anubis - fix NAND timings X-Git-Tag: v2.6.17-rc1~3^2~17 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=661e6acf7b882e5a886845dca5d1559e987464b4;p=linux-2.6-omap-h63xx.git [ARM] 3449/1: [S3C2410] Anubis - fix NAND timings Patch from Ben Dooks The NAND timings on the Anubis are too large to be selected when running at 133MHz memory clock. Signed-off-by: Ben Dooks Signed-off-by: Russell King --- diff --git a/arch/arm/mach-s3c2410/mach-anubis.c b/arch/arm/mach-s3c2410/mach-anubis.c index 3e327b8e46b..cc97fbf6629 100644 --- a/arch/arm/mach-s3c2410/mach-anubis.c +++ b/arch/arm/mach-s3c2410/mach-anubis.c @@ -232,8 +232,8 @@ static void anubis_nand_select(struct s3c2410_nand_set *set, int slot) static struct s3c2410_platform_nand anubis_nand_info = { .tacls = 25, - .twrph0 = 80, - .twrph1 = 80, + .twrph0 = 55, + .twrph1 = 40, .nr_sets = ARRAY_SIZE(anubis_nand_sets), .sets = anubis_nand_sets, .select_chip = anubis_nand_select,