aboutsummaryrefslogtreecommitdiff
path: root/include/configs/imx6dl-mamoj.h
diff options
context:
space:
mode:
authorJagan Teki <jagan@amarulasolutions.com>2018-05-07 11:21:39 +0530
committerStefano Babic <sbabic@denx.de>2018-05-18 08:23:43 +0200
commit9e759ce9044a978e90e3bd0d40bf4f29f19e267b (patch)
tree390772022ad39a240975759b7e8fec19e329c2fb /include/configs/imx6dl-mamoj.h
parent129ceda20217b2ac0adae16d9cce4710319c4849 (diff)
downloadu-boot-9e759ce9044a978e90e3bd0d40bf4f29f19e267b.zip
u-boot-9e759ce9044a978e90e3bd0d40bf4f29f19e267b.tar.gz
u-boot-9e759ce9044a978e90e3bd0d40bf4f29f19e267b.tar.bz2
configs: imx6dl-mamoj: Add Falcon mode support
Add Falcon mode support to boot Linux directly after SPL. Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'include/configs/imx6dl-mamoj.h')
-rw-r--r--include/configs/imx6dl-mamoj.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/configs/imx6dl-mamoj.h b/include/configs/imx6dl-mamoj.h
index 0ac238b..2f5e212 100644
--- a/include/configs/imx6dl-mamoj.h
+++ b/include/configs/imx6dl-mamoj.h
@@ -64,6 +64,18 @@
#define CONFIG_MXC_USB_FLAGS 0
#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
+/* Falcon */
+#define CONFIG_SPL_FS_LOAD_ARGS_NAME "args"
+#define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage"
+#define CONFIG_CMD_SPL
+#define CONFIG_SYS_SPL_ARGS_ADDR 0x13000000
+#define CONFIG_CMD_SPL_WRITE_SIZE (128 * SZ_1K)
+
+/* MMC support: args@1MB kernel@2MB */
+#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0x800 /* 1MB */
+#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS (CONFIG_CMD_SPL_WRITE_SIZE / 512)
+#define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0x1000 /* 2MB */
+
/* Miscellaneous configurable options */
#define CONFIG_SYS_MEMTEST_START 0x80000000
#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x8000000)