diff options
author | Haiying Wang | 2009-03-26 17:01:49 -0400 |
---|---|---|
committer | Kumar Gala | 2009-03-30 13:33:50 -0500 |
commit | 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f (patch) | |
tree | 218d790237012d3388b28ca8689a237e0a332a34 /drivers/qe/qe.c | |
parent | 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b (diff) |
MPC85xx: Load and enable QE microcode patch in IRAM
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>
Diffstat (limited to 'drivers/qe/qe.c')
-rw-r--r-- | drivers/qe/qe.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/qe/qe.c b/drivers/qe/qe.c index e90a4a5fe93..ea5a14b0bb3 100644 --- a/drivers/qe/qe.c +++ b/drivers/qe/qe.c @@ -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; |