From: Prabhakar Kushwaha Date: Thu, 19 Mar 2015 16:20:48 +0000 (-0700) Subject: driver/fsl_ifc: Add support to finalize CS1, CS3 address binding X-Git-Tag: v2015.07-rc1~67^2~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=45bc6fd10819b07b83558d753cf169d9369af823;hp=aa66acbf5cb9ca653ccf407e62383d76369015c4;p=platform%2Fkernel%2Fu-boot.git driver/fsl_ifc: Add support to finalize CS1, CS3 address binding For fsl-lsch3, IFC is binded with address within 32-bit at fist. After u-boot relocates to DDR, CS1, CS3 can be binded to higher address to support large space. Signed-off-by: Prabhakar Kushwaha Signed-off-by: York Sun --- diff --git a/drivers/misc/fsl_ifc.c b/drivers/misc/fsl_ifc.c index 3902e9f..45d299c 100644 --- a/drivers/misc/fsl_ifc.c +++ b/drivers/misc/fsl_ifc.c @@ -168,4 +168,13 @@ void init_final_memctl_regs(void) #ifdef CONFIG_SYS_CSPR0_FINAL set_ifc_cspr(IFC_CS0, CONFIG_SYS_CSPR0_FINAL); #endif +#ifdef CONFIG_SYS_CSPR1_FINAL + set_ifc_cspr(IFC_CS1, CONFIG_SYS_CSPR1_FINAL); +#endif +#ifdef CONFIG_SYS_AMASK1_FINAL + set_ifc_amask(IFC_CS1, CONFIG_SYS_AMASK1_FINAL); +#endif +#ifdef CONFIG_SYS_CSPR3_FINAL + set_ifc_cspr(IFC_CS3, CONFIG_SYS_CSPR3_FINAL); +#endif }