]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
MPC85xx: Load and enable QE microcode patch in IRAM
authorHaiying Wang <Haiying.Wang@freescale.com>
Thu, 26 Mar 2009 21:01:49 +0000 (17:01 -0400)
committerKumar Gala <galak@kernel.crashing.org>
Mon, 30 Mar 2009 18:33:50 +0000 (13:33 -0500)
For the silicon which doesn't have ROM support in QE, it always needs to load
a pre-built ucode binary to IRAM so that QE can work.

Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
drivers/qe/qe.c
drivers/qe/qe.h

index e90a4a5fe93ddbe8eea47d04a8a51ba9ba934a07..ea5a14b0bb3d91e75bdee14855a6d4cc559334d8 100644 (file)
@@ -161,6 +161,15 @@ void qe_init(uint qe_base)
        /* Init the QE IMMR base */
        qe_immr = (qe_map_t *)qe_base;
 
+#ifdef CONFIG_SYS_QE_FW_ADDR
+        /* Upload microcode to IRAM for those SOCs which do not have ROM in QE.
+         */
+        qe_upload_firmware((const struct qe_firmware *) CONFIG_SYS_QE_FW_ADDR);
+
+        /* enable the microcode in IRAM */
+        out_be32(&qe_immr->iram.iready,QE_IRAM_READY);
+#endif
+
        gd->mp_alloc_base = QE_DATAONLY_BASE;
        gd->mp_alloc_top = gd->mp_alloc_base + QE_DATAONLY_SIZE;
 
index a55555f6617913ec23803a85c238f05280b74687..d78edba23e93f342b2c9c53f4920a15a8650e22e 100644 (file)
@@ -230,6 +230,7 @@ typedef enum qe_clock {
 /* I-RAM */
 #define QE_IRAM_IADD_AIE       0x80000000      /* Auto Increment Enable */
 #define QE_IRAM_IADD_BADDR     0x00080000      /* Base Address */
+#define QE_IRAM_READY          0x80000000
 
 /* Structure that defines QE firmware binary files.
  *