Re: [U-Boot] Newbie SPL question for socfpga_sockit

2016-03-02 Thread Phil Reid
On 3/03/2016 2:49 PM, George Broz wrote: On 1 March 2016 at 19:49, Phil Reid wrote: On 2/03/2016 10:40 AM, George Broz wrote: Sorry for the delayed response - got called away, but am back to this now. I patched socfpga_common.h and re-built the project. I picked up spl/u-boot-spl-dtb.sfp and

Re: [U-Boot] Newbie SPL question for socfpga_sockit

2016-03-02 Thread George Broz
On 2 March 2016 at 14:54, Dinh Nguyen wrote: >> socfpga_common.h and re-built the project. I picked up >> spl/u-boot-spl-dtb.sfp and >> u-boot-dtb.img and transferred them to the SD card with: >> >> dd if=u-boot-spl-dtb.sfp of=/dev/sdf3 bs=64k seek=0 >> dd if=u-boot-dtb.img of=/dev/sdf3 bs=64k se

Re: [U-Boot] Newbie SPL question for socfpga_sockit

2016-03-02 Thread George Broz
On 1 March 2016 at 19:49, Phil Reid wrote: > On 2/03/2016 10:40 AM, George Broz wrote: > >> Sorry for the delayed response - got called away, but am back to this >> now. I patched >> socfpga_common.h and re-built the project. I picked up >> spl/u-boot-spl-dtb.sfp and >> u-boot-dtb.img and transfer

Re: [U-Boot] [PATCH 12/12] LS2080QDS: QSPI boot: fix issues.

2016-03-02 Thread Yao Yuan
On 03/03/2016 10:58AM, Prabhakar Kushwaha wrote: > > -Original Message- > > From: Yuan Yao [mailto:yao.y...@freescale.com] > > Sent: Wednesday, March 02, 2016 4:02 PM > > To: york sun > > Cc: Prabhakar Kushwaha ; > > pratiyush.srivast...@freescale.com; u-boot@lists.denx.de; Yunhui Cui > >

Re: [U-Boot] [PATCH 02/12] configs: ls2080a_common: Remove duplicate NOR configs

2016-03-02 Thread Yao Yuan
On 03/03/2016 10:58AM, Prabhakar Kushwaha wrote: > > -Original Message- > > From: Yuan Yao [mailto:yao.y...@freescale.com] > > Sent: Wednesday, March 02, 2016 4:02 PM > > To: york sun > > Cc: Prabhakar Kushwaha ; > > pratiyush.srivast...@freescale.com; u-boot@lists.denx.de; Yunhui Cui > >

Re: [U-Boot] [PATCH 03/12] configs: ls2080aqds: Disable IFC NOR & QIXIS when QSPI

2016-03-02 Thread Yao Yuan
On 03/03/2016 10:58AM, Prabhakar Kushwaha wrote: > > -Original Message- > > From: Yuan Yao [mailto:yao.y...@freescale.com] > > Sent: Wednesday, March 02, 2016 4:02 PM > > To: york sun > > Cc: Prabhakar Kushwaha ; > > pratiyush.srivast...@freescale.com; u-boot@lists.denx.de; Yunhui Cui > >

Re: [U-Boot] [PATCH 09/12] armv8: ls2080aqds: Enable QSPI boot support

2016-03-02 Thread Yao Yuan
On 03/03/2016 12:52 AM, York Sun wrote: > On 03/02/2016 02:41 AM, Yuan Yao wrote: > > From: Yuan Yao > > > > This patch adds QSPI boot support for LS2080AQDS board. > > The QSPI boot image need to be programmed into the QSPI flash first. > > Then the booting will start from QSPI memory space. > >

Re: [U-Boot] [PATCH 06/12] armv8: ls2080aqds: Config QSPI pin mux via FPGA in NAND boot

2016-03-02 Thread Yao Yuan
On 03/03/2016 12:52 AM, York Sun wrote: > On 03/02/2016 02:41 AM, Yuan Yao wrote: > > From: Yuan Yao > > > > If we want to access QSPI flash when boot from NAND, > > Is this "either this or that" choice? Is there any limitation after > configuring pin > mux? No, there is no any limitation. Just

Re: [U-Boot] [PATCH 12/12] LS2080QDS: QSPI boot: fix issues.

2016-03-02 Thread Yao Yuan
On 03/03/2016 12:52 AM, York Sun wrote: > On 03/02/2016 02:41 AM, Yuan Yao wrote: > > From: Yuan Yao > > > > This patch is used for fix the bug below: > > /***/ > > "Synchronous Abort" handler, esr 0x86000210 > > ELR: fff6cfb4 > > LR: fff6d3f0 > >

Re: [U-Boot] [PATCH 10/12] ls2080aqds: Enable support for boot from QSPI

2016-03-02 Thread Yao Yuan
On 03/03/2016 12:52 AM, York Sun wrote: > On 03/02/2016 02:41 AM, Yuan Yao wrote: > > From: Yuan Yao > > > > Signed-off-by: Yuan Yao > > --- > > include/configs/ls2080aqds.h | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/include/configs/ls2080aqds.h > > b/include/configs/ls208

[U-Boot] Sunxi (Allwinner A20) GPIO problems on u-boot 2016.1 and 2016.3-rc3 but not on 2015.10

2016-03-02 Thread Hendrik
I am trying to get an Olimex A20-SOM running but I am experiencing strange problems on some of the GPIO pins on the device. We are using (amongst others) pin PE6 as GPIO output but somehow there seems to be a change between U-Boot 2015.10 and 2016.01 in the default behaviour of these particul

[U-Boot] [PATCH 1/3] drivers: block: Kconfig: set default n to CONFIG_DISK

2016-03-02 Thread Mugunthan V N
When a platform is converted to support DM and when its scsi driver is not converted to support DM, there is a build break as multiple definition of scsi_init(). So select CONFIG_DISK only when the platform supports CONFIG_DISK. drivers/built-in.o: In function `scsi_init': /home/mugunthan/workspac

[U-Boot] [PATCH 3/3] cmd: scsi: compile out scsi_init when CONFIG_DISK is defined

2016-03-02 Thread Mugunthan V N
When CONFIG_DISK is defined, disk_uclass takes care of scsi_init, so compile out scsi_init when CONFIG_DISK is defined. Signed-off-by: Mugunthan V N --- cmd/scsi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/scsi.c b/cmd/scsi.c index bc7d1b6..e2ae046 100644 --- a/cm

[U-Boot] [PATCH 2/3] configs: chromebook_link: enable CONFIG_DISK for accessing sata disk drive

2016-03-02 Thread Mugunthan V N
As the CONFIG_DISK Kconfig default value is changed to 'n', select CONFIG_DISK for chromebook_link in defconfig Signed-off-by: Mugunthan V N --- configs/chromebook_link_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/chromebook_link_defconfig b/configs/chromebook_link_defc

[U-Boot] [PATCH 0/3] fix for build break with CONFIG_DISK scsi_init()

2016-03-02 Thread Mugunthan V N
This series fixes the build break with the SATA DM bringup series on TI DRA7xx platformi [1]. Simon, I am not able to build the seires for chromebook_link, may be because of the compiler I have, can you verify this series? arch/x86/lib/built-in.o: In function `__wrap___udivdi3': /home/mugunthan/w

Re: [U-Boot] [PATCH 1/1] am33xx: Update serial platdata to update reg_offset to 0

2016-03-02 Thread Mugunthan V N
Adam On Wednesday 02 March 2016 06:25 PM, Adam Ford wrote: > On Wed, Mar 2, 2016 at 6:24 AM, Michal Simek wrote: >> On 2.3.2016 13:18, Adam Ford wrote: >>> On Wed, Mar 2, 2016 at 5:53 AM, Michal Simek >>> wrote: On 2.3.2016 12:09, Adam Ford wrote: > On Mon, Feb 29, 2016 at 11:55 PM, Mu

Re: [U-Boot] [PATCH 8/9] ARM: ARMv7: PSCI: ls102xa: add psci functions implemention

2016-03-02 Thread Dongsheng Wang
+Zhang Hongbo. > > Hi Scott, > > Thanks for your review. > > > On Tue, 2016-01-19 at 06:28 +, Dongsheng Wang wrote: > > > Hi Scott, > > > > > > > On Mon, 2016-01-18 at 12:27 +0800, Dongsheng Wang wrote: > > > > > From: Wang Dongsheng > > > > > > > > > > Based on PSCI v1.0, implement interf

Re: [U-Boot] [PATCH 0/9] ARM: ARMv7: PSCI: add PSCI v1.0 support

2016-03-02 Thread Dongsheng Wang
Hi all, +Zhang Hongbo, Hongbo will take over this patchset. Thanks. Regards, -Dongsheng > From: Wang Dongsheng > > Support PSCI v1.0 for u-boot. > > Wang Dongsheng (9): > ARM: PSCI: Change function ID base value > ARM: PSCI: Change PSCI related macro definition style > ARM: ARMv7: PSCI

Re: [U-Boot] [PATCH 03/12] configs: ls2080aqds: Disable IFC NOR & QIXIS when QSPI

2016-03-02 Thread Prabhakar Kushwaha
> -Original Message- > From: Yuan Yao [mailto:yao.y...@freescale.com] > Sent: Wednesday, March 02, 2016 4:02 PM > To: york sun > Cc: Prabhakar Kushwaha ; > pratiyush.srivast...@freescale.com; u-boot@lists.denx.de; Yunhui Cui > ; Yao Yuan > Subject: [PATCH 03/12] configs: ls2080aqds: Disa

Re: [U-Boot] [PATCH 12/12] LS2080QDS: QSPI boot: fix issues.

2016-03-02 Thread Prabhakar Kushwaha
> -Original Message- > From: Yuan Yao [mailto:yao.y...@freescale.com] > Sent: Wednesday, March 02, 2016 4:02 PM > To: york sun > Cc: Prabhakar Kushwaha ; > pratiyush.srivast...@freescale.com; u-boot@lists.denx.de; Yunhui Cui > ; Yao Yuan > Subject: [PATCH 12/12] LS2080QDS: QSPI boot: fix

Re: [U-Boot] [PATCH 06/12] armv8: ls2080aqds: Config QSPI pin mux via FPGA in NAND boot

2016-03-02 Thread Prabhakar Kushwaha
> -Original Message- > From: Yuan Yao [mailto:yao.y...@freescale.com] > Sent: Wednesday, March 02, 2016 4:02 PM > To: york sun > Cc: Prabhakar Kushwaha ; > pratiyush.srivast...@freescale.com; u-boot@lists.denx.de; Yunhui Cui > ; Yao Yuan > Subject: [PATCH 06/12] armv8: ls2080aqds: Config

Re: [U-Boot] [PATCH] armv8: ls2080a: update fdt path for fsl-mc node

2016-03-02 Thread Stuart Yoder
> -Original Message- > From: Prabhakar Kushwaha > Sent: Wednesday, March 02, 2016 8:45 PM > To: Stuart Yoder ; u-boot@lists.denx.de > Cc: york sun ; Yang-Leo Li ; Stuart > Yoder > > Subject: RE: [PATCH] armv8: ls2080a: update fdt path for fsl-mc node > > > > -Original Message-

Re: [U-Boot] [PATCH] armv8: ls2080a: update fdt path for fsl-mc node

2016-03-02 Thread Prabhakar Kushwaha
> -Original Message- > From: Stuart Yoder [mailto:stuart.yo...@nxp.com] > Sent: Thursday, March 03, 2016 4:07 AM > To: u-boot@lists.denx.de > Cc: york sun ; Prabhakar Kushwaha > ; Yang-Leo Li ; > Stuart Yoder > Subject: [PATCH] armv8: ls2080a: update fdt path for fsl-mc node > > From: St

Re: [U-Boot] [PATCH 02/12] configs: ls2080a_common: Remove duplicate NOR configs

2016-03-02 Thread Prabhakar Kushwaha
> -Original Message- > From: Yuan Yao [mailto:yao.y...@freescale.com] > Sent: Wednesday, March 02, 2016 4:02 PM > To: york sun > Cc: Prabhakar Kushwaha ; > pratiyush.srivast...@freescale.com; u-boot@lists.denx.de; Yunhui Cui > ; Yao Yuan > Subject: [PATCH 02/12] configs: ls2080a_common:

Re: [U-Boot] Setting ipaddr via setenv() - H_INTERACTIVE vs H_PROGRAMMATIC

2016-03-02 Thread Joe Hershberger
On Wed, Mar 2, 2016 at 1:01 AM, Stefan Roese wrote: > Hi Joe, > > > On 02.03.2016 07:46, Joe Hershberger wrote: >> >> On Wed, Mar 2, 2016 at 12:21 AM, Stefan Roese wrote: >>> >>> Hi Joe, >>> >>> (adding Tom to Cc as this seems to be a fundamental issue) >>> >>> On 01.03.2016 20:40, Joe Hershberge

Re: [U-Boot] [PATCH 9/9] Drop various features when the command line is not available

2016-03-02 Thread Tom Rini
On Wed, Mar 02, 2016 at 05:25:27PM -0700, Simon Glass wrote: > Hi, > > On 29 February 2016 at 16:56, Tom Rini wrote: > > On Mon, Feb 29, 2016 at 04:47:19PM -0700, Stephen Warren wrote: > >> On 02/25/2016 09:00 PM, Simon Glass wrote: > >> >Some features are only useful or meaningful when the comma

Re: [U-Boot] [PATCH 9/9] Drop various features when the command line is not available

2016-03-02 Thread Simon Glass
Hi, On 29 February 2016 at 16:56, Tom Rini wrote: > On Mon, Feb 29, 2016 at 04:47:19PM -0700, Stephen Warren wrote: >> On 02/25/2016 09:00 PM, Simon Glass wrote: >> >Some features are only useful or meaningful when the command line is >> >present. Ensure that these features are not compiled in wh

Re: [U-Boot] [PATCH 4/9] sandbox: Avoid calling commands when not available

2016-03-02 Thread Simon Glass
Hi Stephen, On 29 February 2016 at 16:39, Stephen Warren wrote: > On 02/25/2016 09:00 PM, Simon Glass wrote: >> >> Don't try to run commands when not supported. > > >> diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c > > >> +int board_run_command(const char *cmdline) >> +{ >> +

Re: [U-Boot] [PATCH 7/9] Allow command code to compile to nothing

2016-03-02 Thread Simon Glass
Hi Stephen, On 29 February 2016 at 16:40, Stephen Warren wrote: > On 02/25/2016 09:00 PM, Simon Glass wrote: >> >> When CONFIG_CMDLINE is disabled we need to remove all the command-line >> code. Most can be removed by dropping the appropriate linker lists from >> the >> images, but sub-commands m

Re: [U-Boot] Newbie SPL question for socfpga_sockit

2016-03-02 Thread Marek Vasut
On 03/03/2016 12:08 AM, Dinh Nguyen wrote: > On 03/02/2016 04:54 PM, Dinh Nguyen wrote: >> CC: Marek Vasut >> >> On 03/01/2016 08:40 PM, George Broz wrote: >>> On 17 February 2016 at 18:45, Phil Reid wrote: G'day George On 18/02/2016 5:54 AM, George Broz wrote: > > Hell

Re: [U-Boot] Newbie SPL question for socfpga_sockit

2016-03-02 Thread Dinh Nguyen
On 03/02/2016 04:54 PM, Dinh Nguyen wrote: > CC: Marek Vasut > > On 03/01/2016 08:40 PM, George Broz wrote: >> On 17 February 2016 at 18:45, Phil Reid wrote: >>> G'day George >>> >>> >>> On 18/02/2016 5:54 AM, George Broz wrote: Hello, Sorry for the newbie question... >>>

Re: [U-Boot] [PULL] Please pull u-boot-imx

2016-03-02 Thread Tom Rini
On Wed, Mar 02, 2016 at 02:57:07PM +0100, Stefano Babic wrote: > Hi Tom, > > some small fixes for release. Please pull from u-boot-imx, thanks ! > > The following changes since commit 0156782feb7fb105b8e69de00c23d3eb60c4e3db: > > Prepare v2016.03-rc3 (2016-02-29 17:44:13 -0500) > > are avail

Re: [U-Boot] Newbie SPL question for socfpga_sockit

2016-03-02 Thread Marek Vasut
On 03/02/2016 11:54 PM, Dinh Nguyen wrote: > CC: Marek Vasut > > On 03/01/2016 08:40 PM, George Broz wrote: >> On 17 February 2016 at 18:45, Phil Reid wrote: >>> G'day George >>> >>> >>> On 18/02/2016 5:54 AM, George Broz wrote: Hello, Sorry for the newbie question... >>>

Re: [U-Boot] Newbie SPL question for socfpga_sockit

2016-03-02 Thread Dinh Nguyen
CC: Marek Vasut On 03/01/2016 08:40 PM, George Broz wrote: > On 17 February 2016 at 18:45, Phil Reid wrote: >> G'day George >> >> >> On 18/02/2016 5:54 AM, George Broz wrote: >>> >>> Hello, >>> >>> Sorry for the newbie question... >>> >>> I have an Altera/Terasic board (socfpga_sockit) that has i

[U-Boot] [PATCH] armv8: ls2080a: update fdt path for fsl-mc node

2016-03-02 Thread Stuart Yoder
From: Stuart Yoder The fsl-mc node has been moved under /soc, so update the path references accordingly. Backwards compatibility is retained for /fsl-mc. Delete backwards compatibility for the completely obsolete /fsl,dprc@0. Signed-off-by: Stuart Yoder --- board/freescale/ls2080a/ls2080a.c

Re: [U-Boot] [PATCH V5] ARM: Various: Future-proof serial platdata

2016-03-02 Thread Vladimir Zapolskiy
Hi Adam, On 02.03.2016 13:38, Adam Ford wrote: > A few boards still use ns16550_platdata structures, but assume the structure > is going to be in a specific order. By explicitly naming each entry, > this should also help 'future-proof' in the event the structure changes. > > Tested on the Logic P

Re: [U-Boot] [PATCH 12/12] LS2080QDS: QSPI boot: fix issues.

2016-03-02 Thread york sun
First, please do not add a period sign in the subject. Second, the subject doesn't have much useful information. On 03/02/2016 02:41 AM, Yuan Yao wrote: > From: Yuan Yao > > This patch is used for fix the bug below: > /***/ > "Synchronous Abort" handler,

Re: [U-Boot] [PATCH 10/12] ls2080aqds: Enable support for boot from QSPI

2016-03-02 Thread york sun
On 03/02/2016 02:41 AM, Yuan Yao wrote: > From: Yuan Yao > > Signed-off-by: Yuan Yao > --- > include/configs/ls2080aqds.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/include/configs/ls2080aqds.h b/include/configs/ls2080aqds.h > index 513a2e3..064e341 100644 > --- a/include/confi

Re: [U-Boot] [PATCH 09/12] armv8: ls2080aqds: Enable QSPI boot support

2016-03-02 Thread york sun
On 03/02/2016 02:41 AM, Yuan Yao wrote: > From: Yuan Yao > > This patch adds QSPI boot support for LS2080AQDS board. > The QSPI boot image need to be programmed into the QSPI flash > first. Then the booting will start from QSPI memory space. > > Signed-off-by: Yuan Yao > --- Please update the

Re: [U-Boot] [PATCH 06/12] armv8: ls2080aqds: Config QSPI pin mux via FPGA in NAND boot

2016-03-02 Thread york sun
On 03/02/2016 02:41 AM, Yuan Yao wrote: > From: Yuan Yao > > If we want to access QSPI flash when boot from NAND, Is this "either this or that" choice? Is there any limitation after configuring pin mux? > we need below board configuration: > Boot Source ISO1ISO2IBOOT > On-bo

Re: [U-Boot] [PATCH V5] ARM: Various: Future-proof serial platdata

2016-03-02 Thread Alexander Graf
> Am 02.03.2016 um 12:38 schrieb Adam Ford : > > A few boards still use ns16550_platdata structures, but assume the structure > is going to be in a specific order. By explicitly naming each entry, > this should also help 'future-proof' in the event the structure changes. > > Tested on the Logic

Re: [U-Boot] [PATCH V4] OMAP3: Various: Future-proof serial platdata

2016-03-02 Thread Alexander Graf
> Am 02.03.2016 um 12:29 schrieb Adam Ford : > >> On Tue, Mar 1, 2016 at 6:01 PM, Alexander Graf wrote: >> >> >>> On 02.03.16 00:23, Adam Ford wrote: >>> A few boards still use ns16550_platdata structures, but assume the structure >>> is going to be in a specific order. By explicitly naming e

Re: [U-Boot] [PATCH 2/2] Add support the Avionic Design Meerkat COM and Kein Baseboard

2016-03-02 Thread Thierry Reding
On Mon, Feb 29, 2016 at 09:48:21AM -0700, Stephen Warren wrote: > On 02/29/2016 03:20 AM, Julian Scheel wrote: > >Hi Stephen, > > > >On 23.02.2016 19:03, Stephen Warren wrote: > >>On 02/23/2016 05:59 AM, Julian Scheel wrote: > >>>Add support for platforms based on the Meerkat COM module. Includes >

Re: [U-Boot] [PATCH] arm: imx6: Switch DDR3 calibration to wait_for_bit()

2016-03-02 Thread Marek Vasut
On 03/02/2016 02:58 PM, Stefano Babic wrote: > On 02/03/2016 14:49, Marek Vasut wrote: >> Switch the DDR3 calibration from ad-hoc implementation of wait_for_bit() >> to generic implementation of wait_for_bit(). >> >> Signed-off-by: Marek Vasut >> Cc: Stefano Babic >> --- >> arch/arm/cpu/armv7/mx

Re: [U-Boot] [PATCH] arm: imx6: Switch DDR3 calibration to wait_for_bit()

2016-03-02 Thread Stefano Babic
On 02/03/2016 14:49, Marek Vasut wrote: > Switch the DDR3 calibration from ad-hoc implementation of wait_for_bit() > to generic implementation of wait_for_bit(). > > Signed-off-by: Marek Vasut > Cc: Stefano Babic > --- > arch/arm/cpu/armv7/mx6/ddr.c | 44 > -

[U-Boot] [PULL] Please pull u-boot-imx

2016-03-02 Thread Stefano Babic
Hi Tom, some small fixes for release. Please pull from u-boot-imx, thanks ! The following changes since commit 0156782feb7fb105b8e69de00c23d3eb60c4e3db: Prepare v2016.03-rc3 (2016-02-29 17:44:13 -0500) are available in the git repository at: git://www.denx.de/git/u-boot-imx.git master for

[U-Boot] [PATCH] arm: imx6: Switch DDR3 calibration to wait_for_bit()

2016-03-02 Thread Marek Vasut
Switch the DDR3 calibration from ad-hoc implementation of wait_for_bit() to generic implementation of wait_for_bit(). Signed-off-by: Marek Vasut Cc: Stefano Babic --- arch/arm/cpu/armv7/mx6/ddr.c | 44 1 file changed, 12 insertions(+), 32 deletions(-

Re: [U-Boot] [PATCH] colibri-vf: Disable pull-up configuration in GPIO pin mux

2016-03-02 Thread Stefano Babic
On 24/02/2016 09:33, Bhuvanchandra DV wrote: > During very early boot-ROM execution the pinmux > configuration isi in Hi-Z state. If pull-up is enabled > on GPIO pad's there will be a short period of toggle > from high to low on the IO when GPIO is set low during > boot. To avoid this glitch, disab

Re: [U-Boot] [PATCH 1/1] am33xx: Update serial platdata to update reg_offset to 0

2016-03-02 Thread Adam Ford
On Wed, Mar 2, 2016 at 6:24 AM, Michal Simek wrote: > On 2.3.2016 13:18, Adam Ford wrote: >> On Wed, Mar 2, 2016 at 5:53 AM, Michal Simek wrote: >>> On 2.3.2016 12:09, Adam Ford wrote: On Mon, Feb 29, 2016 at 11:55 PM, Mugunthan V N wrote: > On Monday 29 February 2016 03:03 PM, Lo

Re: [U-Boot] [PATCH] arm: socfpga: Enabling U-Boot environment support in QSPI

2016-03-02 Thread Chin Liang See
On Tue, 2016-03-01 at 14:51 +0100, Marek Vasut wrote: > On 03/01/2016 07:38 AM, Chin Liang See wrote: > > On Fri, 2016-02-26 at 19:08 +0100, Marek Vasut wrote: > > > On 02/26/2016 02:06 PM, Chin Liang See wrote: > > > > On Wed, 2016-02-24 at 18:44 +0100, Marek Vasut wrote: > > > > > On 02/24/2016 0

Re: [U-Boot] [PATCH 1/1] am33xx: Update serial platdata to update reg_offset to 0

2016-03-02 Thread Michal Simek
On 2.3.2016 13:18, Adam Ford wrote: > On Wed, Mar 2, 2016 at 5:53 AM, Michal Simek wrote: >> On 2.3.2016 12:09, Adam Ford wrote: >>> On Mon, Feb 29, 2016 at 11:55 PM, Mugunthan V N wrote: On Monday 29 February 2016 03:03 PM, Lokesh Vutla wrote: > > On Monday 29 February 2016 02:55 PM

Re: [U-Boot] Problem with attaching UBI partition

2016-03-02 Thread Chin Liang See
On Tue, 2016-03-01 at 16:35 +0100, Stefan Roese wrote: > Hi! Hi Stefan, > > (adding Marek to Cc again) > > On 01.03.2016 14:38, Chin Liang See wrote: > > On Tue, 2016-03-01 at 08:23 +0100, Stefan Roese wrote: > > > On 01.03.2016 07:53, Chin Liang See wrote: > > > > On Mon, 2016-02-29 at 23:55 +

Re: [U-Boot] [PATCH 1/1] am33xx: Update serial platdata to update reg_offset to 0

2016-03-02 Thread Adam Ford
On Wed, Mar 2, 2016 at 5:53 AM, Michal Simek wrote: > On 2.3.2016 12:09, Adam Ford wrote: >> On Mon, Feb 29, 2016 at 11:55 PM, Mugunthan V N wrote: >>> On Monday 29 February 2016 03:03 PM, Lokesh Vutla wrote: On Monday 29 February 2016 02:55 PM, Mugunthan V N wrote: >> With commit:

Re: [U-Boot] [PATCH 1/1] am33xx: Update serial platdata to update reg_offset to 0

2016-03-02 Thread Michal Simek
On 2.3.2016 12:09, Adam Ford wrote: > On Mon, Feb 29, 2016 at 11:55 PM, Mugunthan V N wrote: >> On Monday 29 February 2016 03:03 PM, Lokesh Vutla wrote: >>> >>> On Monday 29 February 2016 02:55 PM, Mugunthan V N wrote: > With commit: d9a3bec682f9 "dm: ns16550: Add support for reg-offset >

[U-Boot] [PATCH V5] ARM: Various: Future-proof serial platdata

2016-03-02 Thread Adam Ford
A few boards still use ns16550_platdata structures, but assume the structure is going to be in a specific order. By explicitly naming each entry, this should also help 'future-proof' in the event the structure changes. Tested on the Logic PD Torpedo + Wireless. I only changed a handful of devices

Re: [U-Boot] [PATCH V4] OMAP3: Various: Future-proof serial platdata

2016-03-02 Thread Adam Ford
On Tue, Mar 1, 2016 at 6:01 PM, Alexander Graf wrote: > > > On 02.03.16 00:23, Adam Ford wrote: >> A few boards still use ns16550_platdata structures, but assume the structure >> is going to be in a specific order. By explicitly naming each entry, >> this should also help 'future-proof' in the eve

[U-Boot] [PATCH 01/12] armv8: ls2080aqds: Select QSPI CLK div via SCFG

2016-03-02 Thread Yuan Yao
From: Yuan Yao QSPI module output SCLK divisor value is configured through SCFG. Signed-off-by: Yuan Yao --- arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h | 1 + board/freescale/ls2080aqds/ls2080aqds.c| 5 + 2 files changed, 6 insertions(+) diff --git a/arch/arm/i

[U-Boot] [PATCH 02/12] configs: ls2080a_common: Remove duplicate NOR configs

2016-03-02 Thread Yuan Yao
From: Yuan Yao The NOR flash related configure options also appear in ls2080aqds.h and ls2080ardb.h, and the two files all have included ls2080a_common.h. This patch remove the duplicated options in ls2080a_common.h. Signed-off-by: Yuan Yao --- include/configs/ls2080a_common.h | 7 --- inc

[U-Boot] [PATCH 06/12] armv8: ls2080aqds: Config QSPI pin mux via FPGA in NAND boot

2016-03-02 Thread Yuan Yao
From: Yuan Yao If we want to access QSPI flash when boot from NAND, we need below board configuration: Boot Source ISO1ISO2IBOOT On-board NAND 1 0 0 IFCCARD NAND0 0 1 Signed-off-by: Yuan Yao --- arch/arm/include/asm/arch-fsl-layerscape/immap_ls

[U-Boot] [PATCH 10/12] ls2080aqds: Enable support for boot from QSPI

2016-03-02 Thread Yuan Yao
From: Yuan Yao Signed-off-by: Yuan Yao --- include/configs/ls2080aqds.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/ls2080aqds.h b/include/configs/ls2080aqds.h index 513a2e3..064e341 100644 --- a/include/configs/ls2080aqds.h +++ b/include/configs/ls2080aqds.h @@ -183,1

[U-Boot] [PATCH 09/12] armv8: ls2080aqds: Enable QSPI boot support

2016-03-02 Thread Yuan Yao
From: Yuan Yao This patch adds QSPI boot support for LS2080AQDS board. The QSPI boot image need to be programmed into the QSPI flash first. Then the booting will start from QSPI memory space. Signed-off-by: Yuan Yao --- configs/ls2080aqds_qspi_defconfig | 10 ++ include/configs/ls2080a

[U-Boot] [PATCH 05/12] dm: dts: ls2080aqds: Add QSPI dts node

2016-03-02 Thread Yuan Yao
From: Yuan Yao Add QSPI controller and slave dts node for LS2080AQDS board. Signed-off-by: Yuan Yao --- arch/arm/dts/fsl-ls2080a-qds.dts | 14 ++ arch/arm/dts/fsl-ls2080a.dtsi| 10 ++ 2 files changed, 24 insertions(+) diff --git a/arch/arm/dts/fsl-ls2080a-qds.dts b/arc

[U-Boot] [PATCH 11/12] freescale: cmd: qixis: tidy up the duplicated code

2016-03-02 Thread Yuan Yao
From: Yuan Yao Signed-off-by: Yuan Yao --- board/freescale/common/qixis.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/board/freescale/common/qixis.c b/board/freescale/common/qixis.c index 113295f..de9daeb 100644 --- a/board/freescale/common/qixis.c +++ b/boa

[U-Boot] [PATCH 04/12] configs: ls2080aqds: Enable QSPI flash support

2016-03-02 Thread Yuan Yao
From: Yuan Yao Enable QSPI flash related configure options. Signed-off-by: Yuan Yao --- include/configs/ls2080aqds.h | 13 - 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/include/configs/ls2080aqds.h b/include/configs/ls2080aqds.h index 3edb0b9..3cba10a 100644 --- a

Re: [U-Boot] [PATCH 1/1] am33xx: Update serial platdata to update reg_offset to 0

2016-03-02 Thread Adam Ford
On Mon, Feb 29, 2016 at 11:55 PM, Mugunthan V N wrote: > On Monday 29 February 2016 03:03 PM, Lokesh Vutla wrote: >> >> On Monday 29 February 2016 02:55 PM, Mugunthan V N wrote: >>> > With commit: d9a3bec682f9 "dm: ns16550: Add support for reg-offset >>> > property" >>> > reg_offset is added to t

[U-Boot] [PATCH 07/12] configs: ls2080a: Increase load image len in NAND boot

2016-03-02 Thread Yuan Yao
From: Yuan Yao Freescale QSPI and DSPI driver have been converted to Driver Mode. This converting bring dtb file for u-boot and this increase the size of u-boot image. LS2080A nand boot use SPL framework. This patch increase the size of image load from NAND to RAM in SPL. Signed-off-by: Yuan Yao

[U-Boot] [PATCH 12/12] LS2080QDS: QSPI boot: fix issues.

2016-03-02 Thread Yuan Yao
From: Yuan Yao This patch is used for fix the bug below: /***/ "Synchronous Abort" handler, esr 0x86000210 ELR: fff6cfb4 LR: fff6d3f0 x0 : 0022 x1 : fff78c6f x2 : ffd0ecb0 x3 : x4 : ffd0ecd0 x5 :

[U-Boot] [PATCH 08/12] ls2080aqds_nand_defconfig: Enable QSPI & its dependence

2016-03-02 Thread Yuan Yao
From: Yuan Yao The Freescale QSPI driver has been converted to Driver Model. This patch enable FSL_QSPI and its dependence options, DM, DM_SPI, OF_CONTROL and so on. Signed-off-by: Yuan Yao --- configs/ls2080aqds_nand_defconfig | 9 + 1 file changed, 9 insertions(+) diff --git a/confi

[U-Boot] [PATCH 00/12] Add SPI and QSPI boot for LS2080A

2016-03-02 Thread Yuan Yao
From: Yuan Yao Yuan Yao (12): armv8: ls2080aqds: Select QSPI CLK div via SCFG configs: ls2080a_common: Remove duplicate NOR configs configs: ls2080aqds: Disable IFC NOR & QIXIS when QSPI configs: ls2080aqds: Enable QSPI flash support dm: dts: ls2080aqds: Add QSPI dts node armv8: ls208

[U-Boot] [PATCH 03/12] configs: ls2080aqds: Disable IFC NOR & QIXIS when QSPI

2016-03-02 Thread Yuan Yao
From: Yuan Yao When QSPI is enabled, NOR Flash and QIXIS can’t be accessed through IFC due to pin muxing. Enable QIXIS accessing through I2C. Signed-off-by: Yuan Yao --- include/configs/ls2080aqds.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/include/configs/ls2080aqds.h b