Re: [U-Boot] [PATCH 10/13] sunxi: Make the fastboot buffer larger

2015-09-07 Thread Ian Campbell
On Sun, 2015-09-06 at 13:22 +0200, Maxime Ripard wrote: > On Fri, Sep 04, 2015 at 12:59:24PM -0400, Tom Rini wrote: > > On Tue, Sep 01, 2015 at 09:57:16AM +0200, Maxime Ripard wrote: > > > > [snip] > > > Of course, this will all depend on the ratio between the empty space > > > and the files

Re: [U-Boot] [PATCH 1/2] arm: socfpga: mmc: Enable calibration for drvsel and smpsel

2015-09-07 Thread Jaehoon Chung
Hi, On 09/04/2015 07:41 PM, Pavel Machek wrote: > Hi! > >>> How is this SMPLSEL and DRVSEL implemented on Exynos ? > > Exynos is using CLKSEL register in dw-mmc controller. > It's exynos specific register in dwmmc controller. It's also > represented 45 degree increment.

[U-Boot] [PATCH 2/2] igep00x0: Switch to use the generic distro configuration and environment.

2015-09-07 Thread Enric Balletbo i Serra
This patch changes a little bit the environment, current environment was broken for a long time, and board don't as expected sometimes, on production systems this is fixed adding boot script. I think it's time to change this to make a system conformant environment and use generic distro

[U-Boot] [PATCH 1/2] igep00xx: MAINTAINERS: update eballetbo's email address.

2015-09-07 Thread Enric Balletbo i Serra
Signed-off-by: Enric Balletbo i Serra --- board/isee/igep0033/MAINTAINERS | 2 +- board/isee/igep00x0/MAINTAINERS | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/isee/igep0033/MAINTAINERS b/board/isee/igep0033/MAINTAINERS index

Re: [U-Boot] [PATCH 1/2] mx6: remove SYS_SOC from board Kconfig

2015-09-07 Thread Stefan Roese
On 07.09.2015 08:59, Peng Fan wrote: Remove duplicated SYS_SOC Kconfig entry from board Kconfig, because we have this entry in arch/arm/cpu/armv7/mx6/Kconfig. Signed-off-by: Peng Fan Cc: Stefano Babic Cc: Heiko Schocher Cc: Christian

Re: [U-Boot] [PATCH v4 1/2] usb: zynqmp: Add XHCI driver support

2015-09-07 Thread Siva Durga Prasad Paladugu
Hi Marek, > -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Saturday, September 05, 2015 6:46 PM > To: Siva Durga Prasad Paladugu > Cc: u-boot@lists.denx.de; Siva Durga Prasad Paladugu > Subject: Re: [PATCH v4 1/2] usb: zynqmp: Add XHCI driver support > > On Friday,

Re: [U-Boot] [PATCH 2/2] nios2: Split timer code into timer.c

2015-09-07 Thread Thomas Chou
Hi Marek, On 09/04/2015 05:51 PM, Marek Vasut wrote diff --git a/arch/nios2/cpu/timer.c b/arch/nios2/cpu/timer.c new file mode 100644 index 000..006b19b --- /dev/null +++ b/arch/nios2/cpu/timer.c @@ -0,0 +1,69 @@ +/* + * (C) Copyright 2000-2002 + * Wolfgang Denk, DENX Software Engineering,

[U-Boot] [PATCH v2 1/6] am335x_evm: prepare for eth driver model support

2015-09-07 Thread Mugunthan V N
Prepare board file so that ethernet registration are commented for DM conversion Signed-off-by: Mugunthan V N Reviewed-by: Tom Rini --- board/ti/am335x/board.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/board/ti/am335x/board.c

[U-Boot] [PATCH v2 0/6] device model bringup of cpsw on am335x bone black

2015-09-07 Thread Mugunthan V N
This patch seires enables cpsw to adopt driver model. This has been tested on AM335x beagle bone black and GP EVM (logs [1]). Also pushed a branch for testing [2] This patch depends on [3] for getting cpsw address space from DT [1]: http://pastebin.ubuntu.com/12305998/ [2]:

[U-Boot] [PATCH v2 2/6] am335x_evm: do not define usb ether gadget when Eth DM is defined

2015-09-07 Thread Mugunthan V N
Since usb ether gadget doesn't have support for driver model, so not defining usb ether gadget when ethernet driver model is defined. Signed-off-by: Mugunthan V N Reviewed-by: Tom Rini --- include/configs/am335x_evm.h | 3 +++ 1 file changed, 3

[U-Boot] [PATCH v2 4/6] drivers: net: cpsw: convert driver to adopt device driver model

2015-09-07 Thread Mugunthan V N
adopt cpsw driver to device driver model Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass --- drivers/net/cpsw.c | 245 - include/cpsw.h | 2 + 2 files changed, 246 insertions(+), 1

[U-Boot] [PATCH v2 6/6] defconfig: am335x: gp_evm: enable ethernet driver model

2015-09-07 Thread Mugunthan V N
enable ethernet driver model for am335x gp evm as cpsw supports driver model Signed-off-by: Mugunthan V N --- configs/am335x_gp_evm_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_gp_evm_defconfig b/configs/am335x_gp_evm_defconfig index

[U-Boot] [PATCH v2 5/6] defconfig: am335x: bbb: enable ethernet driver model

2015-09-07 Thread Mugunthan V N
enable ethernet driver model for am335x beagle bone black as cpsw supports driver model Signed-off-by: Mugunthan V N Reviewed-by: Tom Rini --- configs/am335x_boneblack_vboot_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git

Re: [U-Boot] [PATCH v2 0/8] nios2: add device tree control of U-Boot

2015-09-07 Thread Ley Foon Tan
On Sab, 2015-09-05 at 11:20 +0800, Thomas Chou wrote: > Hi Marek, > > On 09/04/2015 10:04 PM, Marek Vasut wrote: > > I can start picking the NIOS2 stuff into U-Boot as well if you want. > > That's great! You are very kind and responsive. Thanks a lot. You can > take over the custodianship of

[U-Boot] [PATCH 0/2] igep00x0: standardize boot commmands

2015-09-07 Thread Enric Balletbo i Serra
Hi, Please consider adding these two patches. I saw that I missed some emails because my MAINTAINERS address was obsolete, so the first patch only updates my email. The second one switches igep00x0 to use generic distro configuration and environment instead of custom boot commands to be more

[U-Boot] [PATCH 2/2] imx: mx6 discard 'select CPU_V7' for different targets

2015-09-07 Thread Peng Fan
Discard the 'select CPU_V7' from Kconfig in arch/arm/cpu/armv7/mx6 for different targets, because ARCH_MX6 selects CPU_V7. Signed-off-by: Peng Fan Cc: Stefano Babic --- arch/arm/cpu/armv7/mx6/Kconfig | 24 1 file changed, 24

[U-Boot] [PATCH 1/2] mx6: remove SYS_SOC from board Kconfig

2015-09-07 Thread Peng Fan
Remove duplicated SYS_SOC Kconfig entry from board Kconfig, because we have this entry in arch/arm/cpu/armv7/mx6/Kconfig. Signed-off-by: Peng Fan Cc: Stefano Babic Cc: Heiko Schocher Cc: Christian Gmeiner Cc:

[U-Boot] [PATCH V3] mtd: nand: mxs check maximum ecc that platfrom supports

2015-09-07 Thread Peng Fan
Check maximum ecc strength for each platfrom to avoid the calculated ecc exceed the limitation. Signed-off-by: Peng Fan Signed-off-by: Han Xu Tested-By: Tim Harvey Reviewed-by: Marek Vasut Acked-by: Scott Wood

[U-Boot] [PATCH v2 3/6] drivers: net: cpsw: prepare driver for device model migration

2015-09-07 Thread Mugunthan V N
prepare driver for device model migration Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass --- drivers/net/cpsw.c | 133 +++-- 1 file changed, 89 insertions(+), 44 deletions(-) diff --git

Re: [U-Boot] [PATCH] fdt: add new fdt address parsing functions

2015-09-07 Thread Mugunthan V N
On Friday 07 August 2015 03:01 AM, Stephen Warren wrote: > From: Stephen Warren > > fdtdec_get_addr_size() hard-codes the number of cells used to represent > an address or size in DT. This is incorrect in many cases depending on > the DT binding for a particular node or

Re: [U-Boot] [PATCH v4 1/4] bitops: introduce BIT() definition

2015-09-07 Thread Andreas Bießmann
On 08/21/2015 07:01 PM, Heiko Schocher wrote: > introduce BIT() definition, used in at91_udc gadget > driver. > > Signed-off-by: Heiko Schocher > NAK, this one breaks a lot of boards which already defined BIT() > --- > > Changes in v4: None > Changes in v3: > - new in v3 > >

Re: [U-Boot] [PATCH v2 4/8] nios2: enlarge the code relocation range

2015-09-07 Thread Marek Vasut
On Monday, September 07, 2015 at 03:47:46 AM, Thomas Chou wrote: > Hi Marek, Hi! > On 09/07/2015 08:53 AM, Marek Vasut wrote: > > Where did that 64KB figure come from ? :O > > This is estimated from 41KB of the SPL of socfpga. The code density of > nios2 is worse than ARM. > > > I assume the

Re: [U-Boot] [PATCH 1/2] mx6: remove SYS_SOC from board Kconfig

2015-09-07 Thread Marek Vasut
On Monday, September 07, 2015 at 11:20:03 AM, Stefan Roese wrote: > On 07.09.2015 08:59, Peng Fan wrote: > > Remove duplicated SYS_SOC Kconfig entry from board Kconfig, > > because we have this entry in arch/arm/cpu/armv7/mx6/Kconfig. > > > > Signed-off-by: Peng Fan > >

Re: [U-Boot] [PATCH v4 0/7] nios2: add device tree control of U-Boot

2015-09-07 Thread Marek Vasut
On Monday, September 07, 2015 at 03:03:19 AM, Thomas Chou wrote: > These patches add device tree control of U-Boot to nios2 boards. > > v2 > use SPDX license header. > use fdt relocation in board_init_f. > v3 > fix comment style. > v4 > drop fdt_blob print in board info, which needs more

Re: [U-Boot] [PATCH] nios2: enable Driver Model

2015-09-07 Thread Thomas Chou
On 09/07/2015 10:49 AM, Thomas Chou wrote: Enable the Driver Model config. The driver subsystems are not enabled until we enable each of them. Signed-off-by: Thomas Chou --- configs/nios2-generic_defconfig | 2 ++ 1 file changed, 2 insertions(+) Applied to

Re: [U-Boot] [PATCH v4 1/4] bitops: introduce BIT() definition

2015-09-07 Thread Heiko Schocher
Hello Andreas, Am 07.09.2015 um 13:20 schrieb Andreas Bießmann: On 08/21/2015 07:01 PM, Heiko Schocher wrote: introduce BIT() definition, used in at91_udc gadget driver. Signed-off-by: Heiko Schocher NAK, this one breaks a lot of boards which already defined BIT() Uhh...

Re: [U-Boot] [PATCH v4 1/4] bitops: introduce BIT() definition

2015-09-07 Thread Andreas Bießmann
Hi Heiko, On 2015-09-07 13:52, Heiko Schocher wrote: Hello Andreas, Am 07.09.2015 um 13:20 schrieb Andreas Bießmann: On 08/21/2015 07:01 PM, Heiko Schocher wrote: introduce BIT() definition, used in at91_udc gadget driver. Signed-off-by: Heiko Schocher NAK, this one breaks

[U-Boot] [PULL] u-boot-socfpga/master

2015-09-07 Thread Marek Vasut
The following changes since commit 6015f8f1b6fc30de7b4839bd691058583ec7f521: doc: document the fdtdir PXE command (2015-09-03 16:59:07 -0400) are available in the git repository at: git://git.denx.de/u-boot-socfpga.git for you to fetch changes up to

Re: [U-Boot] [PATCH v4 1/4] bitops: introduce BIT() definition

2015-09-07 Thread Marek Vasut
On Monday, September 07, 2015 at 02:01:11 PM, Andreas Bießmann wrote: > Hi Heiko, > > On 2015-09-07 13:52, Heiko Schocher wrote: > > Hello Andreas, > > > > Am 07.09.2015 um 13:20 schrieb Andreas Bießmann: > >> On 08/21/2015 07:01 PM, Heiko Schocher wrote: > >>> introduce BIT() definition, used

[U-Boot] [PULL] u-boot-usb/master

2015-09-07 Thread Marek Vasut
The following changes since commit 6015f8f1b6fc30de7b4839bd691058583ec7f521: doc: document the fdtdir PXE command (2015-09-03 16:59:07 -0400) are available in the git repository at: git://git.denx.de/u-boot-usb.git for you to fetch changes up to 49b4c5c700077e387fef61a7225f92d190ee0c45:

Re: [U-Boot] [PATCH 1/2] nios2: Switch to generic timer

2015-09-07 Thread Marek Vasut
On Saturday, September 05, 2015 at 02:10:37 AM, Thomas Chou wrote: > Hi Marek, Hi! > On 09/04/2015 10:08 PM, Marek Vasut wrote: > > I think I removed this led nonsense somewhere along the way indeed. > > This is a timer code, not some LED blinking code afterall, so it > > should not be poluted

Re: [U-Boot] [PATCH 1/2] nios2: Switch to generic timer

2015-09-07 Thread Thomas Chou
Hi Marek, On 09/07/2015 05:32 PM, Marek Vasut wrote: Could you please rebase and submit this series again? Yes, that's my plan shortly. We're aiming for after 2015.10 release with all these NIOS changes, so this is not urgent, right ? Yes, they will be after 2015.10. No hurry. I just hope

[U-Boot] [PATCH V2 1/2] nios2: Switch to generic timer

2015-09-07 Thread Marek Vasut
Zap almost all of the ad-hoc timer code from interrupts.c and use the code in lib/time.c instead. Signed-off-by: Marek Vasut --- arch/nios2/cpu/interrupts.c | 132 arch/nios2/lib/Makefile | 1 - arch/nios2/lib/time.c

[U-Boot] [PATCH 2/2] nios2: Split timer code into timer.c

2015-09-07 Thread Marek Vasut
Move the timer code from interrupts.c into timer.c . Eliminate the installation of timer interrupt handler, which is no longer used. Signed-off-by: Marek Vasut --- arch/nios2/cpu/Makefile | 2 +- arch/nios2/cpu/interrupts.c | 84

[U-Boot] [PATCH v5] bitops: introduce BIT() definition

2015-09-07 Thread Andreas Bießmann
From: Heiko Schocher introduce BIT() definition, used in at91_udc gadget driver. Signed-off-by: Heiko Schocher [remove all other occurrences of BIT(x) definition] Signed-off-by: Andreas Bießmann --- Full buildman is running Would be

[U-Boot] [PATCH] fs: ext4: fix symlink read function

2015-09-07 Thread Gary Bisson
Since last API changes for files >2GB, the read of symlink is broken as ext4fs_read_file now returns 0 instead of the length of the actual read. Signed-off-by: Gary Bisson --- Hi all, Switching from an old v2014.07 to v2015.07 we've noticed that we couldn't read

[U-Boot] [PATCH v1 1/1] fix: possible overflow when copying the string

2015-09-07 Thread Imran Zaman
Bigger source buffer than dest buffer could overflow when copying strings. Source and destination buffer sizes are same now. Signed-off-by: Imran Zaman --- common/cli_simple.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/cli_simple.c

[U-Boot] [PATCH v2] spi: tegra20: Add support for mode selection

2015-09-07 Thread Mirza Krak
From: Mirza Krak Respect the mode passed in claim_bus call. Signed-off-by: Mirza Krak --- Changes in v2: * Refactor clearing the CPOL and CPHA bits. Based on comments from Jagan Teki. drivers/spi/tegra20_slink.c | 17

[U-Boot] [PATCH v1] fix: possible overflow when copying the string

2015-09-07 Thread Imran Zaman
Bigger source buffer than dest buffer could overflow when copying strings. Source and destination buffer sizes are same now. Signed-off-by: Imran Zaman --- common/cli_simple.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/cli_simple.c

[U-Boot] u-boot hangs in spl fat load when Linux image size exceeds one cluster

2015-09-07 Thread Lixun . Lin
Hi there, I am using u-boot 2015.04. I am trying to use spl mode to boot Linux without loading u-boot. I am working on the Zynq-7000 zc706 board. I enabled the debug mode and here is the output: U-Boot SPL 2015.04 (Sep 07 2015 - 08:22:08) >>spl:board_init_r() using memory 0x10c0-0x20c0

Re: [U-Boot] [PATCH] arc: make AXS101 default platform

2015-09-07 Thread Alexey Brodkin
On Mon, 2015-08-24 at 19:00 +0300, Alexey Brodkin wrote: > This fixes building in automated flow that doesn't use defconfigs. > > See discussion on that topic here: > http://patchwork.ozlabs.org/patch/502558/ > > See similar patches for other architectures/platforms here: > [1] >

Re: [U-Boot] [PATCH v5] bitops: introduce BIT() definition

2015-09-07 Thread Stefan Roese
On 07.09.2015 13:43, Andreas Bießmann wrote: From: Heiko Schocher introduce BIT() definition, used in at91_udc gadget driver. Signed-off-by: Heiko Schocher [remove all other occurrences of BIT(x) definition] Signed-off-by: Andreas Bießmann

[U-Boot] please pull u-boot-arc master

2015-09-07 Thread Alexey Brodkin
Hi Tom, The following changes since commit 6015f8f1b6fc30de7b4839bd691058583ec7f521: doc: document the fdtdir PXE command (2015-09-03 16:59:07 -0400) are available in the git repository at: git://git.denx.de/u-boot-arc.git for you to fetch changes up to

Re: [U-Boot] [PATCH 1/2] nios2: Switch to generic timer

2015-09-07 Thread Marek Vasut
On Monday, September 07, 2015 at 03:10:18 AM, Thomas Chou wrote: > Hi Marek, Hi! > On 09/04/2015 10:08 PM, Marek Vasut wrote: > >> The patch cannot apply to board_f.c due to conflict in > >> > >> commit 2e88bb28d8061286d2f1cabcac224df15b941b82 > >> NDS32: Generic Board Support and Unsupport > >

Re: [U-Boot] [PATCH] nios2: enable Driver Model

2015-09-07 Thread Marek Vasut
On Monday, September 07, 2015 at 04:49:20 AM, Thomas Chou wrote: > Enable the Driver Model config. The driver subsystems > are not enabled until we enable each of them. > > Signed-off-by: Thomas Chou Cool, let's do this :) Acked-by: Marek Vasut Best

Re: [U-Boot] [PATCH 1/2] mx6: remove SYS_SOC from board Kconfig

2015-09-07 Thread Markus Niebel
Hello, Am 07.09.2015 um 08:59 schrieb Peng Fan: > Remove duplicated SYS_SOC Kconfig entry from board Kconfig, > because we have this entry in arch/arm/cpu/armv7/mx6/Kconfig. > > Signed-off-by: Peng Fan > Cc: Stefano Babic > Cc: Heiko Schocher

[U-Boot] [PATCH v5 7/9] armv8: cavium: Add ThunderX 88xx board definition

2015-09-07 Thread Sergey Temerkhanov
This commit adds basic Cavium ThunderX 88xx board definitions and support. Signed-off-by: Sergey Temerkhanov Signed-off-by: Radha Mohan Chintakuntla --- Changes in v5: - Added CONFIG_OF_CONTROL support - Changed memory attributes Changes in

[U-Boot] [PATCH v5 8/9] armv8: cavium: Add an implementation of ATF calling functions

2015-09-07 Thread Sergey Temerkhanov
This commit adds functions issuing calls to the product-specific ATF services Signed-off-by: Sergey Temerkhanov Signed-off-by: Radha Mohan Chintakuntla --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: None

Re: [U-Boot] [PATCH v4 0/7] nios2: add device tree control of U-Boot

2015-09-07 Thread Thomas Chou
Hi Marek, On 09/07/2015 05:29 PM, Marek Vasut wrote: Nice, I like seeing how NIOS2 getting back to shape. btw you could have waited a few days before applying patches that were just posted. Thanks for reminding. I used to wait a week. But I hate too many things floating around, that would

Re: [U-Boot] [PATCH V2 1/2] nios2: Switch to generic timer

2015-09-07 Thread Thomas Chou
Hi Marek, On 09/07/2015 08:31 PM, Marek Vasut wrote: Zap almost all of the ad-hoc timer code from interrupts.c and use the code in lib/time.c instead. Signed-off-by: Marek Vasut --- arch/nios2/cpu/interrupts.c | 132

Re: [U-Boot] [PATCH 2/2] nios2: Split timer code into timer.c

2015-09-07 Thread Thomas Chou
Hi Marek, On 09/07/2015 08:31 PM, Marek Vasut wrote: Move the timer code from interrupts.c into timer.c . Eliminate the installation of timer interrupt handler, which is no longer used. Signed-off-by: Marek Vasut --- arch/nios2/cpu/Makefile | 2 +-

[U-Boot] [PATCH v5 3/9] armv8: Add Secure Monitor/Hypervisor Call (SMC/HVC) infrastructure

2015-09-07 Thread Sergey Temerkhanov
This commit adds functions issuing calls to secure monitor or hypervisore. This allows using services such as Power State Coordination Interface (PSCI) provided by firmware, e.g. ARM Trusted Firmware (ATF) The SMC call can destroy all registers declared temporary by the calling conventions. The

[U-Boot] [PATCH v5 6/9] armv8: cavium: Add the device tree for ThunderX

2015-09-07 Thread Sergey Temerkhanov
This commit adds the FDT for the ThunderX family of SoCs Signed-off-by: Sergey Temerkhanov Signed-off-by: Radha Mohan Chintakuntla --- Changes in v5: - Added FDT for ThunderX 88xx series Changes in v4: None Changes in v3: None Changes in v2:

[U-Boot] [PATCH v5 5/9] arm: serial: Add ability to use pre-initialized UARTs

2015-09-07 Thread Sergey Temerkhanov
On some systems, UART initialization is performed before running U-Boot. This commit allows to skip UART re-initializaion on those systems Signed-off-by: Sergey Temerkhanov Signed-off-by: Radha Mohan Chintakuntla --- Changes in v5: - Added OF

[U-Boot] [PATCH v5 4/9] armv8: Add psci.h from the Linux kernel

2015-09-07 Thread Sergey Temerkhanov
This commit adds the psci.h header file from Linux kernel which contains definitions related to the PSCI interface provided by firmware Signed-off-by: Sergey Temerkhanov Signed-off-by: Radha Mohan Chintakuntla --- Changes in v5: None Changes

[U-Boot] [PATCH v5 9/9] armv8: cavium: Get DRAM size from ATF

2015-09-07 Thread Sergey Temerkhanov
Change the dram_init() function on ThunderX to query ATF services for the real installed DRAM size Signed-off-by: Sergey Temerkhanov Signed-off-by: Radha Mohan Chintakuntla DRAM fix --- Changes in v5: - Moved dram_init() from a separate file

[U-Boot] [PATCH v5 1/9] armv8: Add read_mpidr() function

2015-09-07 Thread Sergey Temerkhanov
This patch adds the read_mpidr() function which returns the MPIDR_EL1 register value Signed-off-by: Sergey Temerkhanov Signed-off-by: Radha Mohan Chintakuntla Reviewed-by: Simon Glass --- Changes in v5: None Changes in v4:

[U-Boot] Any more patches for x86?

2015-09-07 Thread Simon Glass
Hi Bin, Do you have any other patches that you think should be applied for the upcoming release? I'd like to get these in before sending out the last big pull request. Regards, Simon ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH 1/4] spi: cadence_qspi: Ensure spi_calibration is run when sclk change

2015-09-07 Thread Chin Liang See
Hi, On Thu, 2015-09-03 at 16:17 +0200, ma...@denx.de wrote: > On Thursday, September 03, 2015 at 03:41:59 PM, Chin Liang See wrote: > > Ensuring spi_calibration is run when there is a change of sclk > > frequency. This will ensure the qspi flash access works for high > > sclk frequency > > > >

Re: [U-Boot] [PATCH 2/4] spi: cadence_qspi: Fix fdt read of spi-max-frequency

2015-09-07 Thread Chin Liang See
Hi, On Thu, 2015-09-03 at 16:19 +0200, ma...@denx.de wrote: > On Thursday, September 03, 2015 at 03:42:00 PM, Chin Liang See wrote: > > Fix the fdt read for spi-max-frequency as it's contained > > in the child node. Current state of code is always > > returning default value. > > > >

[U-Boot] [PATCH 1/4] spi: cadence_qspi: Ensure spi_calibration is run when sclk change

2015-09-07 Thread Chin Liang See
Ensuring spi_calibration is run when there is a change of sclk frequency. This will ensure the qspi flash access works for high sclk frequency Signed-off-by: Chin Liang See Cc: Dinh Nguyen Cc: Dinh Nguyen Cc: Marek Vasut

[U-Boot] [PATCH 2/4] spi: cadence_qspi: Fix fdt read of spi-max-frequency

2015-09-07 Thread Chin Liang See
Fix the fdt read for spi-max-frequency as it's contained in the child node. Current state of code is always returning default value. Signed-off-by: Chin Liang See Cc: Dinh Nguyen Cc: Dinh Nguyen Cc: Marek Vasut

[U-Boot] [PATCH 4/4] arm: dts: socfpga: Increase the spi-max-frequency for QSPI flash

2015-09-07 Thread Chin Liang See
With a working QSPI calibration, the SCLK can now run up to 100MHz Signed-off-by: Chin Liang See Cc: Dinh Nguyen Cc: Dinh Nguyen Cc: Marek Vasut Cc: Stefan Roese Cc: Vikas Manocha

[U-Boot] [PATCH 3/4] spi: cadence_qspi: Ensure check for max frequency in place

2015-09-07 Thread Chin Liang See
Ensure the intended SCLK frequency not exceeding the maximum frequency. If that happen, SCLK will set to maximum frequency. Signed-off-by: Chin Liang See Cc: Dinh Nguyen Cc: Dinh Nguyen Cc: Marek Vasut Cc:

[U-Boot] [PATCH] smsc95xx: Use zero length packets when RX fifo is empty

2015-09-07 Thread Stefan Brüns
Using NAKs on empty RX fifo for bulk in transfers is the right choice for a interrupt driven model, but U-Boot uses polling and expects an immediate answer if there is no incoming packet. Using ZLP Bulk In Response (BIR) mode avoids unexpected timeouts in the host controller driver. As ZLP mode

Re: [U-Boot] [PATCH v5 5/9] arm: serial: Add ability to use pre-initialized UARTs

2015-09-07 Thread Simon Glass
Hi Sergey, On 7 September 2015 at 09:18, Sergey Temerkhanov wrote: > On some systems, UART initialization is performed before running U-Boot. > This commit allows to skip UART re-initializaion on those systems > > Signed-off-by: Sergey Temerkhanov

Re: [U-Boot] [PATCH v2 7/8] nios2: show fdt blob address in board info command

2015-09-07 Thread Simon Glass
Hi, On 6 September 2015 at 08:27, Marek Vasut wrote: > On Sunday, September 06, 2015 at 03:20:21 PM, Thomas Chou wrote: >> Hi Marek, >> >> >>> I think this will not work on 64bit machines. >> >> I tried 64bits with >> >> print_lnum("fdt_blob", (u64)gd->fdt_blob); >> >> But

Re: [U-Boot] [PATCH] fs: ext4: fix symlink read function

2015-09-07 Thread Simon Glass
Hi Gary, On 7 September 2015 at 03:20, Gary Bisson wrote: > Since last API changes for files >2GB, the read of symlink is broken as > ext4fs_read_file now returns 0 instead of the length of the actual read. > > Signed-off-by: Gary Bisson

Re: [U-Boot] [PATCH v5 6/9] armv8: cavium: Add the device tree for ThunderX

2015-09-07 Thread Simon Glass
Hi Sergey, On 7 September 2015 at 09:18, Sergey Temerkhanov wrote: > This commit adds the FDT for the ThunderX family of SoCs > > Signed-off-by: Sergey Temerkhanov > Signed-off-by: Radha Mohan Chintakuntla > > --- > >

Re: [U-Boot] please pull u-boot-arc master

2015-09-07 Thread Tom Rini
On Mon, Sep 07, 2015 at 10:46:26AM +, Alexey Brodkin wrote: > Hi Tom, > > The following changes since commit 6015f8f1b6fc30de7b4839bd691058583ec7f521: > > doc: document the fdtdir PXE command (2015-09-03 16:59:07 -0400) > > are available in the git repository at: > >

Re: [U-Boot] [PULL] u-boot-socfpga/master

2015-09-07 Thread Tom Rini
On Mon, Sep 07, 2015 at 02:13:06PM +0200, Marek Vasut wrote: > The following changes since commit 6015f8f1b6fc30de7b4839bd691058583ec7f521: > > doc: document the fdtdir PXE command (2015-09-03 16:59:07 -0400) > > are available in the git repository at: > >

Re: [U-Boot] [PULL] u-boot-usb/master

2015-09-07 Thread Tom Rini
On Mon, Sep 07, 2015 at 02:13:41PM +0200, Marek Vasut wrote: > The following changes since commit 6015f8f1b6fc30de7b4839bd691058583ec7f521: > > doc: document the fdtdir PXE command (2015-09-03 16:59:07 -0400) > > are available in the git repository at: > > git://git.denx.de/u-boot-usb.git

[U-Boot] [ANN] U-Boot v2015.10-rc3 released

2015-09-07 Thread Tom Rini
Hey all, I've pushed v2015.10-rc3 out to the repository and tarballs should exist soon. I think this looks reasonable overall and we're on pace for release. There's certainly a few fixes that need to come in but at least in the case of the 64bit fdt nodes I want to be sure that we get a change

[U-Boot] [PATCH v3 2/2] arm: socfpga: config: Remove hard-coded drvsel and smpsel

2015-09-07 Thread Chin Liang See
Remove hard-coded SDMMC timing parameter drvsel and smplsel. This setting now will come from SDMMC calibration Signed-off-by: Chin Liang See Cc: Dinh Nguyen Cc: Pavel Machek Cc: Marek Vasut Cc: Stefan Roese

[U-Boot] [PATCH v3 1/2] mmc: socfpga_dw_mmc: Enable calibration for drvsel and smpsel

2015-09-07 Thread Chin Liang See
Enable SDMMC calibration to determine the best setting for drvsel and smpsel. It will be triggered whenever there is a change of card frequency and bus width. This is to ensure reliable transmission between the controller and the card. Signed-off-by: Chin Liang See Cc: Dinh

Re: [U-Boot] Any more patches for x86?

2015-09-07 Thread Bin Meng
Hi Simon, On Tue, Sep 8, 2015 at 11:50 AM, Simon Glass wrote: > Hi Bin, > > Do you have any other patches that you think should be applied for the > upcoming release? I'd like to get these in before sending out the last > big pull request. > I have one last Quark patch series

Re: [U-Boot] [PATCH] driver: misc: correct Kconfig entry

2015-09-07 Thread Peng Fan
Hi, On Wed, Aug 26, 2015 at 06:19:38AM -0700, Simon Glass wrote: >On 26 August 2015 at 00:41, Peng Fan wrote: >> Should use FSL_SEC_MON, not CONFIG_FSL_SEC_MON as Kconfig entry. >> >> Signed-off-by: Peng Fan >> Cc: Simon Glass

Re: [U-Boot] [PATCH 1/2] arm: socfpga: mmc: Enable calibration for drvsel and smpsel

2015-09-07 Thread Chin Liang See
Hi, On Mon, 2015-09-07 at 03:33 +, Jaehoon Chung wrote: > Hi, > > On 09/04/2015 07:41 PM, Pavel Machek wrote: > > Hi! > > > >>> How is this SMPLSEL and DRVSEL implemented on Exynos ? > > > > Exynos is using CLKSEL register in dw-mmc controller. > > It's exynos specific

[U-Boot] [PATCH 1/3] spi: xilinx_spi: Fix to configure CPOL, CPHA mask

2015-09-07 Thread Jagan Teki
priv->mode is initialized when .set_speed triggers with mode value, so checking mode for configuring CPOL, CPHA using priv->mode is invalid hence use mode from .set_speed argument, and at the end priv->mode will initialized with mode. This patch also replaces formatting string to use speed

[U-Boot] [PATCH 2/3] spi: zynq_spi: Fix to configure CPOL, CPHA mask

2015-09-07 Thread Jagan Teki
priv->mode is initialized when .set_speed triggers with mode value, so checking mode for configuring CPOL, CPHA using priv->mode is invalid hence use mode from .set_speed argument, and at the end priv->mode will initialized with mode. This patch also replaces formatting string to use speed

[U-Boot] [PATCH 3/3] spi: zynq_qspi: Fix to configure CPOL, CPHA mask

2015-09-07 Thread Jagan Teki
priv->mode is initialized when .set_speed triggers with mode value, so checking mode for configuring CPOL, CPHA using priv->mode is invalid hence use mode from .set_speed argument, and at the end priv->mode will initialized with mode. This patch also replaces formatting string to use speed

Re: [U-Boot] [PATCH 1/2] mx6: remove SYS_SOC from board Kconfig

2015-09-07 Thread Christian Gmeiner
2015-09-07 8:59 GMT+02:00 Peng Fan : > Remove duplicated SYS_SOC Kconfig entry from board Kconfig, > because we have this entry in arch/arm/cpu/armv7/mx6/Kconfig. > > Signed-off-by: Peng Fan > Cc: Stefano Babic > Cc: Heiko Schocher

Re: [U-Boot] [PATCH v4 5/8] arm: serial: Add ability to use pre-initialized UARTs

2015-09-07 Thread Sergei Temerkhanov
On Sat, Aug 22, 2015 at 3:36 AM, Simon Glass wrote: > Hi Serkey, > > On 18 August 2015 at 06:26, Sergey Temerkhanov > wrote: >> On some systems, UART initialization is performed before running U-Boot. >> This commit allows to skip UART

Re: [U-Boot] [PATCH v4 1/4] bitops: introduce BIT() definition

2015-09-07 Thread Jagan Teki
On 7 September 2015 at 17:45, Marek Vasut wrote: > On Monday, September 07, 2015 at 02:01:11 PM, Andreas Bießmann wrote: >> Hi Heiko, >> >> On 2015-09-07 13:52, Heiko Schocher wrote: >> > Hello Andreas, >> > >> > Am 07.09.2015 um 13:20 schrieb Andreas Bießmann: >> >> On 08/21/2015

Re: [U-Boot] [PATCH v2] spi: tegra20: Add support for mode selection

2015-09-07 Thread Jagan Teki
On 7 September 2015 at 12:09, Mirza Krak wrote: > From: Mirza Krak > > Respect the mode passed in claim_bus call. > > Signed-off-by: Mirza Krak > --- > > Changes in v2: > * Refactor clearing the CPOL and CPHA

[U-Boot] [PATCH v5 2/9] armv8: New MMU setup code allowing to use 48+ bits PA/VA

2015-09-07 Thread Sergey Temerkhanov
This patch adds code which sets up 2-level page tables on ARM64 thus extending available VA space. CPUs implementing 64k translation granule are able to use direct PA-VA mapping of the whole 48 bit address space. It also adds the ability to reset the SCTRL register at the very beginning of

[U-Boot] [PATCH v5 0/9] Add support for ThunderX 88xx SoC family

2015-09-07 Thread Sergey Temerkhanov
This patch series adds support for Cavium ThunderX 88xx SoC family (http://cavium.com/ThunderX_ARM_Processors.html) This is the version 5 of the series I posted at http://lists.denx.de/pipermail/u-boot/2015-August/224324.html http://lists.denx.de/pipermail/u-boot/2015-August/223618.html