Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-10-15 Thread Huan Wang
Hi, Albert, On Wed, 8 Oct 2014 09:53:03 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Thu, 25 Sep 2014 06:45:00 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Mon, 22 Sep 2014 06:46:20 +, Huan Wang

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-10-15 Thread Albert ARIBAUD
Hi Huan, On Wed, 15 Oct 2014 06:56:37 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Wed, 8 Oct 2014 09:53:03 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Thu, 25 Sep 2014 06:45:00 +, Huan Wang alison.w...@freescale.com wrote:

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-10-11 Thread Albert ARIBAUD
Hi Huan, On Wed, 8 Oct 2014 09:53:03 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Thu, 25 Sep 2014 06:45:00 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Mon, 22 Sep 2014 06:46:20 +, Huan Wang alison.w...@freescale.com wrote:

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-10-08 Thread Huan Wang
Hi, Albert, On Thu, 25 Sep 2014 06:45:00 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Mon, 22 Sep 2014 06:46:20 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Thu, 18 Sep 2014 13:47:18 +0800, Alison Wang

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-10-01 Thread Albert ARIBAUD
Hi Huan, On Thu, 25 Sep 2014 06:45:00 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Mon, 22 Sep 2014 06:46:20 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Thu, 18 Sep 2014 13:47:18 +0800, Alison Wang b18...@freescale.com

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-09-25 Thread Huan Wang
Hi, Albert, On Mon, 22 Sep 2014 06:46:20 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Thu, 18 Sep 2014 13:47:18 +0800, Alison Wang b18...@freescale.com wrote: + + . = ALIGN(4); + .u_boot_list : { +

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-09-22 Thread Huan Wang
Hi, Albert, On Thu, 18 Sep 2014 13:47:18 +0800, Alison Wang b18...@freescale.com wrote: + + . = ALIGN(4); + .u_boot_list : { + KEEP(*(SORT(.u_boot_list*_i2c_*))); + } IS this required? And if it is, could it not be added to the

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-09-22 Thread Albert ARIBAUD
Hi Huan, On Mon, 22 Sep 2014 06:46:20 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Thu, 18 Sep 2014 13:47:18 +0800, Alison Wang b18...@freescale.com wrote: + + . = ALIGN(4); + .u_boot_list : { +

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-09-19 Thread Albert ARIBAUD
Hi Huan, On Thu, 18 Sep 2014 15:15:54 +, Huan Wang alison.w...@freescale.com wrote: Hi, Albert, On Thu, 18 Sep 2014 13:47:18 +0800, Alison Wang b18...@freescale.com wrote: + + . = ALIGN(4); + .u_boot_list : { + KEEP(*(SORT(.u_boot_list*_i2c_*))); + }

[U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-09-18 Thread Alison Wang
This patch adds SD boot support for LS1021AQDS board. SPL framework is used. PBL initialize the internal RAM and copy SPL to it, then SPL initialize DDR using SPD and copy u-boot from SD card to DDR, finally SPL transfer control to u-boot. Signed-off-by: Alison Wang alison.w...@freescale.com

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-09-18 Thread Albert ARIBAUD
Hi Alison, On Thu, 18 Sep 2014 13:47:18 +0800, Alison Wang b18...@freescale.com wrote: This patch adds SD boot support for LS1021AQDS board. SPL framework is used. PBL initialize the internal RAM and copy SPL to it, then SPL initialize DDR using SPD and copy u-boot from SD card to DDR,

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-09-18 Thread Alison Wang
Hi, Albert, On Thu, 18 Sep 2014 13:47:18 +0800, Alison Wang b18...@freescale.com wrote: + + . = ALIGN(4); + .u_boot_list : { + KEEP(*(SORT(.u_boot_list*_i2c_*))); + } IS this required? And if it is, could it not be added to the arch/arm/cpu/u-boot-spl.lds file? This

Re: [U-Boot] [PATCH 6/7] arm: ls102xa: Add SD boot support for LS1021AQDS board

2014-09-18 Thread Huan Wang
Hi, Albert, + . = ALIGN(4); + .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } + + . = ALIGN(4); + .data : { + *(.data*) + } + + . = ALIGN(4); + .u_boot_list : { + KEEP(*(SORT(.u_boot_list*_i2c_*))); + } IS this required?