From 40b8a3db833294bb1bc116592fad52667bc39680 Mon Sep 17 00:00:00 2001 From: Prabhakar Kushwaha Date: Wed, 6 Jan 2016 10:30:18 +0530 Subject: board: ls2085aqds: Update kernel_size env variable kernel_size env variable is defined as 0x28000000, it is beyond NOR flash range. Update kernel_size with 40MB kernel size. Signed-off-by: Prabhakar Kushwaha Reviewed-by: York Sun --- include/configs/ls2080aqds.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/configs/ls2080aqds.h b/include/configs/ls2080aqds.h index ba84248081..a402c06a3b 100644 --- a/include/configs/ls2080aqds.h +++ b/include/configs/ls2080aqds.h @@ -346,7 +346,7 @@ unsigned long get_board_ddr_clk(void); "initrd_high=0xffffffffffffffff\0" \ "kernel_start=0x581100000\0" \ "kernel_load=0xa0000000\0" \ - "kernel_size=0x28000000\0" + "kernel_size=0x2800000\0" #ifdef CONFIG_FSL_MC_ENET #define CONFIG_FSL_MEMAC -- cgit v1.2.1 From cc7b8b9abb1de3b9957203afbeb9504a40fd2ca4 Mon Sep 17 00:00:00 2001 From: Alison Wang Date: Fri, 15 Jan 2016 15:29:32 +0800 Subject: armv7: ls102xa: Increase the supported kernel size Increase the kernel size supported for LS1021A platform. Define CONFIG_SYS_BOOTM_LEN to 64M. Signed-off-by: Alison Wang Reviewed-by: York Sun --- include/configs/ls1021aqds.h | 1 + include/configs/ls1021atwr.h | 1 + 2 files changed, 2 insertions(+) (limited to 'include') diff --git a/include/configs/ls1021aqds.h b/include/configs/ls1021aqds.h index c90f5315fd..f6efc55059 100644 --- a/include/configs/ls1021aqds.h +++ b/include/configs/ls1021aqds.h @@ -665,5 +665,6 @@ unsigned long get_board_ddr_clk(void); #endif #include +#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ #endif diff --git a/include/configs/ls1021atwr.h b/include/configs/ls1021atwr.h index f820de3b09..ae58646d5e 100644 --- a/include/configs/ls1021atwr.h +++ b/include/configs/ls1021atwr.h @@ -523,5 +523,6 @@ #endif #include +#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ #endif -- cgit v1.2.1 From 7711cc0a0648e215571b1d1768381963d92a1d97 Mon Sep 17 00:00:00 2001 From: Ashish kumar Date: Fri, 29 Jan 2016 16:40:08 +0530 Subject: arm8: ls2080: Move the core errata defines out of board specific file Valid for core A57 Signed-off-by: Ashish Kumar Reviewed-by: York Sun --- include/configs/ls2080a_common.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'include') diff --git a/include/configs/ls2080a_common.h b/include/configs/ls2080a_common.h index 7323e10731..def0a6f3f0 100644 --- a/include/configs/ls2080a_common.h +++ b/include/configs/ls2080a_common.h @@ -15,9 +15,6 @@ #define CONFIG_GICV3 #define CONFIG_FSL_TZPC_BP147 -/* Errata fixes */ -#define CONFIG_ARM_ERRATA_828024 -#define CONFIG_ARM_ERRATA_826974 #include #include -- cgit v1.2.1