From: Ahmad Fatoum <a.fat...@pengutronix.de>

The code hardcodes i.MX6 addresses, which needs to be factored out for
use in other SoCs' startup. Do this by creating a new imx_nand_params
to hold these information and passing it into the now more generic
code.

No functional change intended. Untested as I got no i.MX6 directly
booting from NAND.

Signed-off-by: Ahmad Fatoum <a.fat...@pengutronix.de>
---
 arch/arm/mach-imx/include/mach/imx6-regs.h |  2 +
 arch/arm/mach-imx/xload-gpmi-nand.c        | 76 ++++++++++++----------
 2 files changed, 44 insertions(+), 34 deletions(-)

diff --git a/arch/arm/mach-imx/include/mach/imx6-regs.h 
b/arch/arm/mach-imx/include/mach/imx6-regs.h
index 35f03036cb..39e2751533 100644
--- a/arch/arm/mach-imx/include/mach/imx6-regs.h
+++ b/arch/arm/mach-imx/include/mach/imx6-regs.h
@@ -3,7 +3,9 @@
 #ifndef __MACH_IMX6_REGS_H
 #define __MACH_IMX6_REGS_H
 
+#define MX6_APBH_BASE_ADDR             0x00110000
 #define MX6_GPMI_BASE_ADDR             0x00112000
+#define MX6_BCH_BASE_ADDR              0x00114000
 
 #define MX6_FAST1_BASE_ADDR            0x00c00000
 #define MX6_FAST2_BASE_ADDR            0x00b00000
diff --git a/arch/arm/mach-imx/xload-gpmi-nand.c 
b/arch/arm/mach-imx/xload-gpmi-nand.c
index 165c4c5b85..a7398cc26a 100644
--- a/arch/arm/mach-imx/xload-gpmi-nand.c
+++ b/arch/arm/mach-imx/xload-gpmi-nand.c
@@ -999,49 +999,44 @@ static int read_firmware(struct mxs_nand_info *info, int 
startpage,
        return 0;
 }
 
-static int __maybe_unused imx6_nand_load_image(void *cmdbuf, void *descs,
-       void *databuf, void *dest, int len)
+struct imx_nand_params {
+       struct mxs_nand_info info;
+       struct apbh_dma apbh;
+       void *sdram;
+};
+
+static int __maybe_unused imx6_nand_load_image(struct imx_nand_params *params,
+                                              void *databuf, void *dest, int 
len)
 {
-       struct mxs_nand_info info = {
-               .io_base = (void *)0x00112000,
-               .bch_base = (void *)0x00114000,
-       };
-       struct apbh_dma apbh = {
-               .id = IMX28_DMA,
-               .regs = (void *)0x00110000,
-       };
+       struct mxs_nand_info *info = &params->info;
        struct mxs_dma_chan pchan = {
                .channel = 0, /* MXS: MXS_DMA_CHANNEL_AHB_APBH_GPMI0 */
-               .apbh = &apbh,
+               .apbh = &params->apbh,
        };
        int ret;
        struct fcb_block *fcb;
 
-       info.dma_channel = &pchan;
+       info->dma_channel = &pchan;
 
        pr_debug("cmdbuf: 0x%p descs: 0x%p databuf: 0x%p dest: 0x%p\n",
-                       cmdbuf, descs, databuf, dest);
-
-       /* Command buffers */
-       info.cmd_buf = cmdbuf;
-       info.desc = descs;
+                       info->cmd_buf, info->desc, databuf, dest);
 
-       ret = mxs_nand_get_info(&info, databuf);
+       ret = mxs_nand_get_info(info, databuf);
        if (ret)
                return ret;
 
-       ret = get_fcb(&info, databuf);
+       ret = get_fcb(info, databuf);
        if (ret)
                return ret;
 
-       fcb = &info.fcb;
+       fcb = &info->fcb;
 
-       get_dbbt(&info, databuf);
+       get_dbbt(info, databuf);
 
-       ret = read_firmware(&info, fcb->Firmware1_startingPage, dest, len);
+       ret = read_firmware(info, fcb->Firmware1_startingPage, dest, len);
        if (ret) {
                pr_err("Failed to read firmware1, trying firmware2\n");
-               ret = read_firmware(&info, fcb->Firmware2_startingPage,
+               ret = read_firmware(info, fcb->Firmware2_startingPage,
                        dest, len);
                if (ret) {
                        pr_err("Failed to also read firmware2\n");
@@ -1052,24 +1047,21 @@ static int __maybe_unused imx6_nand_load_image(void 
*cmdbuf, void *descs,
        return 0;
 }
 
-int imx6_nand_start_image(void)
+static int imx_nand_start_image(struct imx_nand_params *params)
 {
+       struct mxs_nand_info *info = &params->info;
        int ret;
-       void *sdram = (void *)0x10000000;
        void __noreturn (*bb)(void);
-       void *cmdbuf, *databuf, *descs;
+       void *databuf;
 
-       cmdbuf = sdram;
-       descs = sdram + MXS_NAND_COMMAND_BUFFER_SIZE;
-       databuf = descs +
+       /* Command buffers */
+       info->cmd_buf = params->sdram;
+       info->desc = params->sdram + MXS_NAND_COMMAND_BUFFER_SIZE;
+       databuf = info->desc +
                sizeof(struct mxs_dma_cmd) * MXS_NAND_DMA_DESCRIPTOR_COUNT;
        bb = (void *)PAGE_ALIGN((unsigned long)databuf + SZ_8K);
 
-       /* Apply ERR007117 workaround */
-       imx6_errata_007117_enable();
-
-       ret = imx6_nand_load_image(cmdbuf, descs, databuf,
-               bb, imx_image_size());
+       ret = imx6_nand_load_image(params, databuf, bb, imx_image_size());
        if (ret) {
                pr_err("Loading image failed: %d\n", ret);
                return ret;
@@ -1082,3 +1074,19 @@ int imx6_nand_start_image(void)
 
        bb();
 }
+
+int imx6_nand_start_image(void)
+{
+       static struct imx_nand_params params = {
+               .info.io_base = IOMEM(MX6_GPMI_BASE_ADDR),
+               .info.bch_base = IOMEM(MX6_BCH_BASE_ADDR),
+               .apbh.regs = IOMEM(MX6_APBH_BASE_ADDR),
+               .apbh.id = IMX28_DMA,
+               .sdram = (void *)MX6_MMDC_PORT01_BASE_ADDR,
+       };
+
+       /* Apply ERR007117 workaround */
+       imx6_errata_007117_enable();
+
+       return imx_nand_start_image(&params);
+}
-- 
2.30.2


Reply via email to