Hi Andy, Sorry, previous patch to enable reset function of LCM is not working stably somehow. :( Since it's pin configuration is input. Attached patch is to set LCM reset pin as output.
Cheers, Matt
>From 0cdd08c7554ff6bcf69b2915760e48000f4bc9f3 Mon Sep 17 00:00:00 2001 From: Matt Hsu <[email protected]> Date: Mon, 9 Mar 2009 15:38:18 +0800 Subject: [PATCH] qi/3d7k: GPK6 should be set as output. Signed-off-by: Matt Hsu <[email protected]> --- src/cpu/s3c6410/om_3d7k.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/cpu/s3c6410/om_3d7k.c b/src/cpu/s3c6410/om_3d7k.c index 18be867..a7632a9 100644 --- a/src/cpu/s3c6410/om_3d7k.c +++ b/src/cpu/s3c6410/om_3d7k.c @@ -546,7 +546,7 @@ void port_init_om_3d7k(void) (0 << 12) | /* GPK3 - input (NC) */ (0 << 16) | /* GPK4 - input (NC) */ (0 << 20) | /* GPK5 - input (NC) */ - (0 << 24) | /* GPK6 - input (NC) */ + (1 << 24) | /* GPK6 - input (NC) */ (0 << 28) /* GPK7 - input (NC) */ ; __REG(GPKCON1) = -- 1.5.3.6
