]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
mpc85xx: Add the ability to set LCRR[CLKDIV] to improve R/W speed of flash
authorLan Chunhe <b25806@freescale.com>
Wed, 21 Apr 2010 12:40:50 +0000 (07:40 -0500)
committerKumar Gala <galak@kernel.crashing.org>
Tue, 27 Apr 2010 03:37:56 +0000 (22:37 -0500)
Signed-off-by: Lan Chunhe <b25806@freescale.com>
Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/cpu/mpc85xx/cpu_init.c
arch/powerpc/include/asm/fsl_lbc.h

index b517e06608787a1006c5baefb4c1eeb1b847f7c6..e578b296dfad5c79aa00f55c1d981559fcc34b50 100644 (file)
@@ -260,6 +260,10 @@ void cpu_init_f (void)
 
 int cpu_init_r(void)
 {
+#ifdef CONFIG_SYS_LBC_LCRR
+       volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
+#endif
+
        puts ("L2:    ");
 
 #if defined(CONFIG_L2_CACHE)
@@ -383,6 +387,17 @@ int cpu_init_r(void)
 #if defined(CONFIG_MP)
        setup_mp();
 #endif
+
+#ifdef CONFIG_SYS_LBC_LCRR
+       /*
+        * Modify the CLKDIV field of LCRR register to improve the writing
+        * speed for NOR flash.
+        */
+       clrsetbits_be32(&lbc->lcrr, LCRR_CLKDIV, CONFIG_SYS_LBC_LCRR);
+       __raw_readl(&lbc->lcrr);
+       isync();
+#endif
+
        return 0;
 }
 
index 5723de643a483e4fc06292ff8ea5a8f337893ad1..dfe8f793a3073097aff202abf8f788ed41c11998 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2008 Freescale Semiconductor, Inc.
+ * Copyright (C) 2004-2008,2010 Freescale Semiconductor, Inc.
  *
  * See file CREDITS for list of people who contributed to this
  * project.
 #define OR_GPCM_SETA_SHIFT             3
 #define OR_GPCM_TRLX                   0x00000004
 #define OR_GPCM_TRLX_SHIFT             2
+#define OR_GPCM_TRLX_CLEAR             0x00000000
+#define OR_GPCM_TRLX_SET               0x00000004
 #define OR_GPCM_EHTR                   0x00000002
 #define OR_GPCM_EHTR_SHIFT             1
+#define OR_GPCM_EHTR_CLEAR             0x00000000
+#define OR_GPCM_EHTR_SET               0x00000002
 #define OR_GPCM_EAD                    0x00000001
 #define OR_GPCM_EAD_SHIFT              0