[U-Boot] [PATCH] mmc_spi: Big-endian support

2015-06-01 Thread Yoshinori Sato
Currently implement always swap for big-endian value. So doesn't work big-endian environment. Signed-off-by: Yoshinori Sato ys...@users.sourceforge.jp --- drivers/mmc/mmc_spi.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/mmc/mmc_spi.c

Re: [U-Boot] [PATCH 00/11] Add GPIO driver for Freescale Vybrid platform

2015-06-01 Thread Stefano Babic
Hi, On 01/06/2015 07:34, Bhuvanchandra DV wrote: Generally, if a maintainer acks a patch, the patch could then be applied into another tree if this makes sense and avoid to introduce breakage, maybe in both trees. You patchset is related to u-boot-imx with exception for the USB part, but

[U-Boot] [PATCH V3 10/11] usb: ehci-vf: Add weak function for board specific initialisation

2015-06-01 Thread Bhuvanchandra DV
From: Sanchayan Maity maitysancha...@gmail.com Add a weak function board_ehci_hcd_init which can be used by the board file for board specific initialisation. Signed-off-by: Sanchayan Maity maitysancha...@gmail.com --- drivers/usb/host/ehci-vf.c | 8 1 file changed, 8 insertions(+)

[U-Boot] [PATCH V3 08/11] colibri-vf: Enable SPI support

2015-06-01 Thread Bhuvanchandra DV
Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- include/configs/colibri_vf.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/include/configs/colibri_vf.h b/include/configs/colibri_vf.h index 195102b..56e6d97 100644 --- a/include/configs/colibri_vf.h +++

[U-Boot] [PATCH V3 07/11] vf610: dts: Add device tree support

2015-06-01 Thread Bhuvanchandra DV
Add device tree files for Freescale Vybrid platform and Toradex Colibri VF50, VF61 modules. Device tree files are taken from upstream Kernel. Removed the stuff which are not used/supported yet in U-Boot. Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- arch/arm/dts/Makefile

[U-Boot] [PATCH V3 03/11] colibri_vf: Add pinmux entries for GPIOs

2015-06-01 Thread Bhuvanchandra DV
Inorder to use the pins as GPIO, apart from setting the alt-function, pinmuxing need to be done, this patch adds pinmux entries of few GPIOs. Acked-by: Stefan Agner ste...@agner.ch Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- arch/arm/include/asm/arch-vf610/iomux-vf610.h | 49

[U-Boot] [PATCH V3 09/11] colibri_vf: Add separate defconfig for device tree support

2015-06-01 Thread Bhuvanchandra DV
Most of the drivers available for Vybrid are not yet converted to OF model to use device tree model, only few drivers like SPI and GPIO drivers use device trees. Add separate defconfig for who needs to use device tree model. Later this can be integrated to single defconfig. Acked-by: Stefan Agner

[U-Boot] [PATCH V3 11/11] colibri_vf: Enable board specific USB initialisation for USB pen gpio

2015-06-01 Thread Bhuvanchandra DV
From: Sanchayan Maity maitysancha...@gmail.com Add IOMUX for the pad used as USB pen. This needs to be driven low for the Iris and Viola boards where it is pulled up high by default. This is required for the USB host functionality to work on these boards. Use the board specific weak

Re: [U-Boot] [PATCH V2 09/11] colibri_vf: Add separate defconfig for device tree support

2015-06-01 Thread Bhuvanchandra DV
On 06/01/2015 04:05 PM, Stefan Agner wrote: On 2015-06-01 10:51, Bhuvanchandra DV wrote: Most of the drivers available for Vybrid are not yet converted to OF model to use device tree model, only few drivers like SPI and GPIO drivers use device trees. Add separate defconfig for who needs to use

Re: [U-Boot] [PATCH V2 08/11] colibri-vf: Enable SPI support

2015-06-01 Thread Bhuvanchandra DV
Hello Stefan, On 06/01/2015 04:02 PM, Stefan Agner wrote: On 2015-06-01 10:51, Bhuvanchandra DV wrote: Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- include/configs/colibri_vf.h | 11 +++ 1 file changed, 11 insertions(+) diff --git a/include/configs/colibri_vf.h

[U-Boot] [PATCH V3 02/11] dm: gpio: vf610: Add GPIO driver support

2015-06-01 Thread Bhuvanchandra DV
Add GPIO driver support to Freescale VF610 Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- arch/arm/imx-common/iomux-v3.c | 26 + arch/arm/include/asm/arch-vf610/gpio.h | 29 + arch/arm/include/asm/arch-vf610/imx-regs.h | 5 +

[U-Boot] [PATCH V3 06/11] arm: vf610: Add iomux support for DSPI

2015-06-01 Thread Bhuvanchandra DV
Add iomux definitions for DSPI second instance. Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- arch/arm/include/asm/arch-vf610/iomux-vf610.h | 9 + board/toradex/colibri_vf/colibri_vf.c | 21 + 2 files changed, 30 insertions(+) diff --git

[U-Boot] [PATCH V3 05/11] arm: vf610: Add clock support for DSPI

2015-06-01 Thread Bhuvanchandra DV
Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- arch/arm/cpu/armv7/vf610/generic.c | 7 +++ arch/arm/include/asm/arch-vf610/clock.h| 1 + arch/arm/include/asm/arch-vf610/crm_regs.h | 4 3 files changed, 12 insertions(+) diff --git

[U-Boot] [PATCH V3 01/11] dm: gpio: uclass: Add flag to control sequence numbering

2015-06-01 Thread Bhuvanchandra DV
Like SPI and I2C few GPIO controllers also have multiple chip instances. This patch adds the flag 'DM_UC_FLAG_SEQ_ALIAS' in gpio_uclass driver to control device sequence numbering. By defalut the dev-r_seq for gpio_uclass will alwalys returns -1, which leads the gpio driver probe failure when

[U-Boot] [PATCH V3 00/11] Add GPIO driver for Freescale Vybrid platform

2015-06-01 Thread Bhuvanchandra DV
Changes since V2: Add defconfig and device tree files list to Toradex boards maintainer file. Invert the logic for enabling the DSPI support. Bhuvanchandra DV (9): dm: gpio: uclass: Add flag to control sequence numbering dm: gpio: vf610: Add GPIO driver support colibri_vf: Add pinmux

[U-Boot] [PATCH] x86: kconfig: Make FSP_TEMP_RAM_ADDR depend on HAVE_FSP

2015-06-01 Thread Bin Meng
FSP_TEMP_RAM_ADDR should only be visible when HAVE_FSP is on. Signed-off-by: Bin Meng bmeng...@gmail.com --- arch/x86/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index ac1dc65..3506ba2 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@

[U-Boot] [PATCH V3 04/11] colibri_vf: Enable GPIO support

2015-06-01 Thread Bhuvanchandra DV
Acked-by: Stefan Agner ste...@agner.ch Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- configs/colibri_vf_defconfig | 1 + include/configs/colibri_vf.h | 5 + 2 files changed, 6 insertions(+) diff --git a/configs/colibri_vf_defconfig b/configs/colibri_vf_defconfig index

[U-Boot] [RFC PATCH 2/2] x86: fsp: Move FspInitEntry call to board_init_f()

2015-06-01 Thread Bin Meng
The call to FspInitEntry is done in arch/x86/lib/fsp/fsp_car.S so far. It worked pretty well but looks not that good. Apart from doing too much work than just enabling CAR, it cannot read the configuration data from device tree at that time. Now we want to move it a little bit later as part of

[U-Boot] [RFC PATCH 1/2] x86: fsp: Load GDT before calling FspInitEntry

2015-06-01 Thread Bin Meng
Currently the FSP execution environment GDT is setup by U-Boot in arch/x86/cpu/start16.S, which works pretty well. But if we try to move the FspInitEntry call a little bit later to better fit into U-Boot's initialization sequence, FSP will fail to bring up the AP due to #GP fault as AP's GDT is

Re: [U-Boot] [PATCH] x86: baytrail: PCI is not always mapped to end of ram

2015-06-01 Thread Andrew Bradford
Hi Bin, On 05/31 14:10, Bin Meng wrote: Hi Andrew, On Sat, May 30, 2015 at 2:27 AM, Andrew Bradford and...@bradfordembedded.com wrote: Hi Bin, On 05/29 13:00, Bin Meng wrote: Hi Andrew, On Wed, May 27, 2015 at 7:53 PM, Andrew Bradford and...@bradfordembedded.com wrote: Hi

Re: [U-Boot] [PATCH v2 22/22] x86: Add support for Intel Minnowboard Max

2015-06-01 Thread Bin Meng
Hi Simon, Hi Andrew, On Fri, May 29, 2015 at 9:54 PM, Bin Meng bmeng...@gmail.com wrote: Hi Andrew, Simon, On Fri, May 29, 2015 at 2:09 AM, Andrew Bradford and...@bradfordembedded.com wrote: On 05/28 10:30, Simon Glass wrote: Hi Andrew, On 27 May 2015 at 08:39, Andrew Bradford

Re: [U-Boot] [PATCH] x86: baytrail: PCI is not always mapped to end of ram

2015-06-01 Thread Bin Meng
Hi Andrew, On Mon, Jun 1, 2015 at 8:24 PM, Andrew Bradford and...@bradfordembedded.com wrote: Hi Bin, On 05/31 14:10, Bin Meng wrote: Hi Andrew, On Sat, May 30, 2015 at 2:27 AM, Andrew Bradford and...@bradfordembedded.com wrote: Hi Bin, On 05/29 13:00, Bin Meng wrote: Hi Andrew,

Re: [U-Boot] [PATCH] spi: cadence_qspi: Fix the indirect ahb trigger address setting

2015-06-01 Thread Stefan Roese
Hi Vikas, On 29.05.2015 18:53, vikasm wrote: On 05/28/2015 11:20 PM, Stefan Roese wrote: Hi Vikas, (added Dinh, Graham and Marek to Cc) On 29.05.2015 03:22, Vikas Manocha wrote: Trigger base address can be set to the spi flash address without any masking, here is the explanation of the

Re: [U-Boot] [PATCH 09/11] colibri_vf: Add separate defconfig for device tree support

2015-06-01 Thread Bhuvanchandra DV
Hello Stefano, On 06/01/2015 01:15 PM, Stefano Babic wrote: Hi Bhuvanchandra, On 18/05/2015 15:06, Bhuvanchandra DV wrote: Most of the drivers available for Vybrid are not yet converted to OF model to use device tree model, only few drivers like SPI and GPIO drivers use device trees. Add

Re: [U-Boot] cpsw not working with slave2 port defined only

2015-06-01 Thread Mugunthan V N
On Tuesday 26 May 2015 01:00 AM, Belisko Marek wrote: Hi, I have custom am33xx board with phy connected to slave2 port. I copy'n'paste cpsw setup from /board/BuR/common/common.c but I'm using only slave2 port (RMII mode) so my cpsw_slave_data looks like: static struct cpsw_slave_data

Re: [U-Boot] [PATCH V2 11/11] colibri_vf: Enable board specific USB initialisation for USB pen gpio

2015-06-01 Thread Stefan Agner
On 2015-06-01 10:51, Bhuvanchandra DV wrote: From: Sanchayan Maity maitysancha...@gmail.com Add IOMUX for the pad used as USB pen. This needs to be driven low for the Iris and Viola boards where it is pulled up high by default. This is required for the USB host functionality to work on these

Re: [U-Boot] [PATCH V2 03/11] colibri_vf: Add pinmux entries for GPIOs

2015-06-01 Thread Stefan Agner
On 2015-06-01 10:51, Bhuvanchandra DV wrote: Inorder to use the pins as GPIO, apart from setting the alt-function, pinmuxing need to be done, this patch adds pinmux entries of few GPIOs. Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com ---

[U-Boot] Instructions for upgrading U-boot on Marvell OpenRD Base computer?

2015-06-01 Thread Rick Thomas
I’ve got an old Marvell OpenRD Base computer that I’d like to install Debian Jessie on. I believe that I’ll need to up-grade the u-boot on it to handle new features in the Jessie kernel. I need the following information… 1) Where to get a suitable u-boot image? (Will the one at

[U-Boot] [PATCH V2 11/11] colibri_vf: Enable board specific USB initialisation for USB pen gpio

2015-06-01 Thread Bhuvanchandra DV
From: Sanchayan Maity maitysancha...@gmail.com Add IOMUX for the pad used as USB pen. This needs to be driven low for the Iris and Viola boards where it is pulled up high by default. This is required for the USB host functionality to work on these boards. Use the board specific weak

[U-Boot] [PATCH V2 02/11] dm: gpio: vf610: Add GPIO driver support

2015-06-01 Thread Bhuvanchandra DV
Add GPIO driver support to Freescale VF610 Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- arch/arm/imx-common/iomux-v3.c | 26 + arch/arm/include/asm/arch-vf610/gpio.h | 29 + arch/arm/include/asm/arch-vf610/imx-regs.h | 5 +

[U-Boot] [PATCH V2 05/11] arm: vf610: Add clock support for DSPI

2015-06-01 Thread Bhuvanchandra DV
Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- arch/arm/cpu/armv7/vf610/generic.c | 7 +++ arch/arm/include/asm/arch-vf610/clock.h| 1 + arch/arm/include/asm/arch-vf610/crm_regs.h | 4 3 files changed, 12 insertions(+) diff --git

[U-Boot] [PATCH V2 01/11] dm: gpio: uclass: Add flag to control sequence numbering

2015-06-01 Thread Bhuvanchandra DV
Like SPI and I2C few GPIO controllers also have multiple chip instances. This patch adds the flag 'DM_UC_FLAG_SEQ_ALIAS' in gpio_uclass driver to control device sequence numbering. By defalut the dev-r_seq for gpio_uclass will alwalys returns -1, which leads the gpio driver probe failure when

[U-Boot] [PATCH V2 08/11] colibri-vf: Enable SPI support

2015-06-01 Thread Bhuvanchandra DV
Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- include/configs/colibri_vf.h | 11 +++ 1 file changed, 11 insertions(+) diff --git a/include/configs/colibri_vf.h b/include/configs/colibri_vf.h index 195102b..3e57417 100644 --- a/include/configs/colibri_vf.h +++

[U-Boot] [PATCH V2 09/11] colibri_vf: Add separate defconfig for device tree support

2015-06-01 Thread Bhuvanchandra DV
Most of the drivers available for Vybrid are not yet converted to OF model to use device tree model, only few drivers like SPI and GPIO drivers use device trees. Add separate defconfig for who needs to use device tree model. Later this can be integrated to single defconfig. Signed-off-by:

Re: [U-Boot] [PATCH 0/5] imx: ventana: various cleanups

2015-06-01 Thread Stefano Babic
Hi Tim, On 26/05/2015 20:04, Tim Harvey wrote: Here is another series of unrelated minor fixues and cleanups for Ventana Tim Harvey (5): imx: ventana: various board-specific GPIO config updates imx: ventana: make model env var automatic and non-overridable imx: ventana: make

[U-Boot] [PATCH V2 04/11] colibri_vf: Enable GPIO support

2015-06-01 Thread Bhuvanchandra DV
Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- configs/colibri_vf_defconfig | 1 + include/configs/colibri_vf.h | 5 + 2 files changed, 6 insertions(+) diff --git a/configs/colibri_vf_defconfig b/configs/colibri_vf_defconfig index 3b1f66a..0715267 100644 ---

[U-Boot] [PATCH V2 00/11] Add GPIO driver for Freescale Vybrid platform

2015-06-01 Thread Bhuvanchandra DV
Changes since V1: Fix the broken patches Bhuvanchandra DV (9): dm: gpio: uclass: Add flag to control sequence numbering dm: gpio: vf610: Add GPIO driver support colibri_vf: Add pinmux entries for GPIOs colibri_vf: Enable GPIO support arm: vf610: Add clock support for DSPI arm: vf610:

[U-Boot] [PATCH V2 03/11] colibri_vf: Add pinmux entries for GPIOs

2015-06-01 Thread Bhuvanchandra DV
Inorder to use the pins as GPIO, apart from setting the alt-function, pinmuxing need to be done, this patch adds pinmux entries of few GPIOs. Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- arch/arm/include/asm/arch-vf610/iomux-vf610.h | 49 ++

[U-Boot] [PATCH V2 10/11] usb: ehci-vf: Add weak function for board specific initialisation

2015-06-01 Thread Bhuvanchandra DV
From: Sanchayan Maity maitysancha...@gmail.com Add a weak function board_ehci_hcd_init which can be used by the board file for board specific initialisation. Signed-off-by: Sanchayan Maity maitysancha...@gmail.com --- drivers/usb/host/ehci-vf.c | 8 1 file changed, 8 insertions(+)

Re: [U-Boot] [PATCH V2 08/11] colibri-vf: Enable SPI support

2015-06-01 Thread Stefan Agner
On 2015-06-01 10:51, Bhuvanchandra DV wrote: Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- include/configs/colibri_vf.h | 11 +++ 1 file changed, 11 insertions(+) diff --git a/include/configs/colibri_vf.h b/include/configs/colibri_vf.h index 195102b..3e57417

Re: [U-Boot] [Patch 2/2] arm: mx6: tqma6: use default CONFIG_SYS_PBSIZE

2015-06-01 Thread Stefano Babic
On 12/05/2015 10:55, Markus Niebel wrote: From: Markus Niebel markus.nie...@tq-group.com this removes a config entry and uses the default value defined in config_fallbacks.h. This implements the same behaviour as a patch series for other i.MX6 boards from Freescale Signed-off-by: Markus

Re: [U-Boot] [Patch 1/2] arm: mx6: tqma6: fix spelling error in condition

2015-06-01 Thread Stefano Babic
On 12/05/2015 10:55, Markus Niebel wrote: From: Markus Niebel markus.nie...@tq-group.com Signed-off-by: Markus Niebel markus.nie...@tq-group.com --- include/configs/tqma6_mba6.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/tqma6_mba6.h

Re: [U-Boot] Booting Wandboard through USB

2015-06-01 Thread Stefano Babic
Hi Nikolay, (jumping a little later in the discussion but trying to sumarize all topics..) IMHO we should find a way without constraining SPL to work differently as thought only to allow loading from USB. For this reason I will tend to a solution as much as possible tools only, that is extending

[U-Boot] [PATCH V2 06/11] arm: vf610: Add iomux support for DSPI

2015-06-01 Thread Bhuvanchandra DV
Add iomux definitions for DSPI second instance. Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- arch/arm/include/asm/arch-vf610/iomux-vf610.h | 9 + board/toradex/colibri_vf/colibri_vf.c | 21 + 2 files changed, 30 insertions(+) diff --git

[U-Boot] [PATCH V2 07/11] vf610: dts: Add device tree support

2015-06-01 Thread Bhuvanchandra DV
Add device tree files for Freescale Vybrid platform and Toradex Colibri VF50, VF61 modules. Device tree files are taken from upstream Kernel. Removed the stuff which are not used/supported yet in U-Boot. Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- arch/arm/dts/Makefile

Re: [U-Boot] [PATCH v3 2/2] Clean all defconfigs with savedefconfig

2015-06-01 Thread Ian Campbell
On Mon, 2015-06-01 at 15:45 +0800, Chen-Yu Tsai wrote: Hi, On Wed, May 13, 2015 at 6:12 AM, Tom Rini tr...@konsulko.com wrote: On Tue, May 12, 2015 at 02:46:24PM -0500, Joe Hershberger wrote: In order to reduce merge conflicts and to maintain the simplest possible defconfig files, we

Re: [U-Boot] [PATCH] mxs: Do not disable bo detection when DC-DC is already enabled

2015-06-01 Thread Stefano Babic
On 21/05/2015 13:20, Stefan Wahren wrote: In case the DC-DC is already enabled mxs_enable_4p2_dcdc_input() returns without reenabling brown out detection. So fix this issue by moving the return before brown out deactivation. Signed-off-by: Stefan Wahren stefan.wah...@i2se.com ---

Re: [U-Boot] [PATCHv2] board: Add Toby-Churchill SL50 board support.

2015-06-01 Thread Sjoerd Simons
On Thu, 2015-05-28 at 14:47 +0200, Enric Balletbo i Serra wrote: Add support for Lightwriter SL50 series board, a small, robust and portable Voice Output Communication Aids (VOCA) designed to meet the particular and changing needs of people with speech loss resulting from a wide range of

Re: [U-Boot] [PATCH V2 09/11] colibri_vf: Add separate defconfig for device tree support

2015-06-01 Thread Stefan Agner
On 2015-06-01 10:51, Bhuvanchandra DV wrote: Most of the drivers available for Vybrid are not yet converted to OF model to use device tree model, only few drivers like SPI and GPIO drivers use device trees. Add separate defconfig for who needs to use device tree model. Later this can be

Re: [U-Boot] [PATCH v3 2/2] Clean all defconfigs with savedefconfig

2015-06-01 Thread Chen-Yu Tsai
Hi, On Wed, May 13, 2015 at 6:12 AM, Tom Rini tr...@konsulko.com wrote: On Tue, May 12, 2015 at 02:46:24PM -0500, Joe Hershberger wrote: In order to reduce merge conflicts and to maintain the simplest possible defconfig files, we should be using the savedefconfig feature of Kconfig every

Re: [U-Boot] [PATCH 09/11] colibri_vf: Add separate defconfig for device tree support

2015-06-01 Thread Stefano Babic
Hi Bhuvanchandra, On 18/05/2015 15:06, Bhuvanchandra DV wrote: Most of the drivers available for Vybrid are not yet converted to OF model to use device tree model, only few drivers like SPI and GPIO drivers use device trees. Add separate defconfig for who needs to use device tree model.

[U-Boot] [PATCH] ARM: phytec: pcm051: drop unused CONFIG_NET_MULTI

2015-06-01 Thread poeschel
From: Lars Poeschel poesc...@lemonage.de Drop unused CONFIG_NET_MULTI. Also drop CONFIG_USE_IRQ, that is not used either. Signed-off-by: Lars Poeschel poesc...@lemonage.de --- include/configs/pcm051.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git

Re: [U-Boot] Booting Wandboard through USB

2015-06-01 Thread Tim Harvey
On Mon, Jun 1, 2015 at 9:28 AM, Nikolay Dimitrov picmas...@mail.bg wrote: Hi Tim, On 06/01/2015 07:03 PM, Tim Harvey wrote: On Mon, Jun 1, 2015 at 1:10 AM, Stefano Babic sba...@denx.de wrote: Hi Nikolay, (jumping a little later in the discussion but trying to sumarize all topics..)

[U-Boot] [PATCH] ARM: phytec: pcm051: select board revision by Kconfig

2015-06-01 Thread poeschel
From: Lars Poeschel poesc...@lemonage.de This add a Kconfig entry that allows to set the board revision in menuconfig. So the deprecated CONFIG_SYS_EXTRA_OPTIONS is no longer needed for this boad. Signed-off-by: Lars Poeschel poesc...@lemonage.de --- board/phytec/pcm051/Kconfig | 19

Re: [U-Boot] [PATCH 21/22][v2] armv8/fsl-lsch3: Support 256M mem split for MC dbg-srvr

2015-06-01 Thread York Sun
On 05/28/2015 02:24 AM, Prabhakar Kushwaha wrote: From: Stuart Yoder stuart.yo...@freescale.com The agreed split of the top of memory is 256M for debug server and 256M for MC. This patch implements the split. In addition, the MC mem must be 512MB aligned, so the amount of memory to hide

Re: [U-Boot] [PATCH] net: Fix NET_RANDOM_ETHADDR dependencies

2015-06-01 Thread Michal Simek
On 06/01/2015 04:06 PM, Joe Hershberger wrote: Hi Michal, On Mon, May 25, 2015 at 4:37 AM, Michal Simek michal.si...@xilinx.com wrote: NET_RANDOM_ETHADDR depends on lib/rand.c. This patch adds dependency to Kconfig to ensure that library is also compiled. Signed-off-by: Michal Simek

Re: [U-Boot] Building u-boot.rom for Minnowboard

2015-06-01 Thread Simon Glass
Hi Saket, On 31 May 2015 at 22:55, Saket Sinha saket.sinh...@gmail.com wrote: Hi Bin, Please find my response inline. root@saket-HP-PC:# /u-boot-x86/tools/ifdtool -x BayleyBay/SPI.bin Flash Region 0 (Flash Descriptor): - 0fff Flash Region 1 (BIOS): 0050 -

Re: [U-Boot] Booting Wandboard through USB

2015-06-01 Thread Tim Harvey
On Mon, Jun 1, 2015 at 1:10 AM, Stefano Babic sba...@denx.de wrote: Hi Nikolay, (jumping a little later in the discussion but trying to sumarize all topics..) IMHO we should find a way without constraining SPL to work differently as thought only to allow loading from USB. For this reason I

Re: [U-Boot] Booting Wandboard through USB

2015-06-01 Thread Nikolay Dimitrov
Hi Stefano, On 06/01/2015 11:10 AM, Stefano Babic wrote: Hi Nikolay, (jumping a little later in the discussion but trying to sumarize all topics..) Np, you're welcome. IMHO we should find a way without constraining SPL to work differently as thought only to allow loading from USB. For this

Re: [U-Boot] Booting Wandboard through USB

2015-06-01 Thread Nikolay Dimitrov
Hi Tim, On 06/01/2015 07:03 PM, Tim Harvey wrote: On Mon, Jun 1, 2015 at 1:10 AM, Stefano Babic sba...@denx.de wrote: Hi Nikolay, (jumping a little later in the discussion but trying to sumarize all topics..) IMHO we should find a way without constraining SPL to work differently as thought

Re: [U-Boot] [PATCHv3 2/3] driver/ddr/altera/: Add the sdram calibration portion

2015-06-01 Thread Marek Vasut
On Friday, May 29, 2015 at 05:24:19 PM, Dinh Nguyen wrote: [...] My concern is if this is actually true (and I asked this before, in an earlier round ov reviews). I cannot make heads or tails of this comment, as I don't understand what configuration time and reset are supposed to mean in

Re: [U-Boot] [PATCH] x86: baytrail: PCI is not always mapped to end of ram

2015-06-01 Thread Andrew Bradford
Hi Bin, On 06/01 20:58, Bin Meng wrote: Hi Andrew, On Mon, Jun 1, 2015 at 8:24 PM, Andrew Bradford and...@bradfordembedded.com wrote: Hi Bin, On 05/31 14:10, Bin Meng wrote: Hi Andrew, On Sat, May 30, 2015 at 2:27 AM, Andrew Bradford and...@bradfordembedded.com wrote: Hi

Re: [U-Boot] [PATCH 2/2] net: Move the CMD_NET config to defconfigs

2015-06-01 Thread Joe Hershberger
Hi Michal, On Mon, Jun 1, 2015 at 12:31 AM, Michal Simek mon...@monstr.eu wrote: On 05/30/2015 02:53 AM, Joe Hershberger wrote: This also selects CONFIG_NET for any CONFIG_CMD_NET board. Remove the imx default for CONFIG_NET. This moves the config that was defined by 60296a8. IRC The

Re: [U-Boot] [PATCH] net: Fix NET_RANDOM_ETHADDR dependencies

2015-06-01 Thread Joe Hershberger
Hi Michal, On Mon, May 25, 2015 at 4:37 AM, Michal Simek michal.si...@xilinx.com wrote: NET_RANDOM_ETHADDR depends on lib/rand.c. This patch adds dependency to Kconfig to ensure that library is also compiled. Signed-off-by: Michal Simek michal.si...@xilinx.com --- lib/Kconfig | 3 +++

[U-Boot] [PATCH] sunxi: usb_phy: Swap check for disconnect threshold

2015-06-01 Thread Hans de Goede
Before this commit the code for determining the disconnect threshold was checking for sun4i or sun6i assuming that those where the exception and that newer SoCs use a disconnect threshold of 2 like sun7i does. But it turns out that newer SoCs actually use a disconnect threshold of 3 and sun5i and

[U-Boot] [PATCH] sunxi: Add new Mele_A1000G_quad defconfig

2015-06-01 Thread Hans de Goede
The Mele A1000G-quad and the Mele M9 have the same PCB, sofar we've been using the same defconfig (and dts on the kernel side) for both models. Unfortunately this does not work for the otg controller, on the M9 this is routed to a micro-usb connector on the outside, while as on the A1000G-quad it

Re: [U-Boot] [PATCH v3 2/2] Clean all defconfigs with savedefconfig

2015-06-01 Thread Tom Rini
On Mon, Jun 01, 2015 at 08:41:34AM -0500, Joe Hershberger wrote: Hi Ian, On Mon, Jun 1, 2015 at 4:46 AM, Ian Campbell i...@hellion.org.uk wrote: On Mon, 2015-06-01 at 15:45 +0800, Chen-Yu Tsai wrote: Hi, On Wed, May 13, 2015 at 6:12 AM, Tom Rini tr...@konsulko.com wrote: On Tue, May

Re: [U-Boot] [U-Boot,1/2] Move setexpr to Kconfig

2015-06-01 Thread Joe Hershberger
Hi Tom, On Wed, May 27, 2015 at 12:42 PM, Tom Rini tr...@konsulko.com wrote: On Mon, May 11, 2015 at 01:53:12PM -0500, Joe Hershberger wrote: Another shell scripting command that has not been moved. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Masahiro Yamada

Re: [U-Boot] [PATCH v3 2/2] Clean all defconfigs with savedefconfig

2015-06-01 Thread Joe Hershberger
Hi Ian, On Mon, Jun 1, 2015 at 4:46 AM, Ian Campbell i...@hellion.org.uk wrote: On Mon, 2015-06-01 at 15:45 +0800, Chen-Yu Tsai wrote: Hi, On Wed, May 13, 2015 at 6:12 AM, Tom Rini tr...@konsulko.com wrote: On Tue, May 12, 2015 at 02:46:24PM -0500, Joe Hershberger wrote: In order to

Re: [U-Boot] [PATCH V3 08/11] colibri-vf: Enable SPI support

2015-06-01 Thread Stefan Agner
On 2015-06-01 15:07, Bhuvanchandra DV wrote: Signed-off-by: Bhuvanchandra DV bhuvanchandra...@toradex.com --- include/configs/colibri_vf.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/include/configs/colibri_vf.h b/include/configs/colibri_vf.h index 195102b..56e6d97 100644

Re: [U-Boot] [PATCH] sunxi: Add new Mele_A1000G_quad defconfig

2015-06-01 Thread Ian Campbell
On Mon, 2015-06-01 at 17:01 +0200, Hans de Goede wrote: The Mele A1000G-quad and the Mele M9 have the same PCB, sofar we've been using the same defconfig (and dts on the kernel side) for both models. Unfortunately this does not work for the otg controller, on the M9 this is routed to a

Re: [U-Boot] [PATCH v3 08/11] ARM: UniPhier: enable CONFIG_NET_RANDOM_ETHADDR

2015-06-01 Thread Joe Hershberger
Hi Masahiro / Tom, On Fri, May 29, 2015 at 3:30 AM, Masahiro Yamada yamada.masah...@socionext.com wrote: Since commit 92ac52082140 (net: Remove all references to CONFIG_ETHADDR and friends), the ethernet device on UniPhier boards is not working because of the incorrect (all-zero) MAC address.

Re: [U-Boot] [PATCH] sunxi: Add new Mele_A1000G_quad defconfig

2015-06-01 Thread Hans de Goede
Hi, On 01-06-15 20:12, Ian Campbell wrote: On Mon, 2015-06-01 at 17:01 +0200, Hans de Goede wrote: The Mele A1000G-quad and the Mele M9 have the same PCB, sofar we've been using the same defconfig (and dts on the kernel side) for both models. Unfortunately this does not work for the otg

Re: [U-Boot] [PATCH] imx: missing CONFIG_NET after consolidation patches

2015-06-01 Thread Simon Glass
Hi, On 29 May 2015 at 01:43, Joe Hershberger joe.hershber...@gmail.com wrote: Hi Bin, On Fri, May 29, 2015 at 2:16 AM, Bin Meng bmeng...@gmail.com wrote: Hi Heiko, On Fri, May 29, 2015 at 1:19 PM, Heiko Schocher h...@denx.de wrote: Hello Bin, Am 29.05.2015 04:33, schrieb Bin Meng: Hi

[U-Boot] Pull request: u-boot-net.git master

2015-06-01 Thread Joe Hershberger
Hi Tom, This should include the few build fixes that have been submitted as well as fixing up Michal's patch to the LIB_RAND dependency patch. It also cleans up the CONFIG_NET/CONFIG_CMD_NET situation that was breaking networking for a number of boards. I've included the CMD_SETEXPR patch in

Re: [U-Boot] [PATCH] imx: missing CONFIG_NET after consolidation patches

2015-06-01 Thread Joe Hershberger
Hi Simon, On Mon, Jun 1, 2015 at 12:14 PM, Simon Glass s...@chromium.org wrote: Hi, On 29 May 2015 at 01:43, Joe Hershberger joe.hershber...@gmail.com wrote: Hi Bin, On Fri, May 29, 2015 at 2:16 AM, Bin Meng bmeng...@gmail.com wrote: Hi Heiko, On Fri, May 29, 2015 at 1:19 PM, Heiko

Re: [U-Boot] [PATCH] ARM: phytec: pcm051: drop unused CONFIG_NET_MULTI

2015-06-01 Thread Joe Hershberger
Hi Lars, On Mon, Jun 1, 2015 at 9:59 AM, poesc...@lemonage.de wrote: From: Lars Poeschel poesc...@lemonage.de Drop unused CONFIG_NET_MULTI. Also drop CONFIG_USE_IRQ, that is not used either. Signed-off-by: Lars Poeschel poesc...@lemonage.de --- include/configs/pcm051.h | 4 +--- 1 file

Re: [U-Boot] [PATCH] sunxi: usb_phy: Swap check for disconnect threshold

2015-06-01 Thread Ian Campbell
On Mon, 2015-06-01 at 17:01 +0200, Hans de Goede wrote: Before this commit the code for determining the disconnect threshold was checking for sun4i or sun6i assuming that those where the exception and that newer SoCs use a disconnect threshold of 2 like sun7i does. But it turns out that

Re: [U-Boot] Building u-boot.rom for Minnowboard

2015-06-01 Thread Simon Glass
+John Hi Saket, On 1 June 2015 at 13:45, Saket Sinha saket.sinh...@gmail.com wrote: Hi Simon, 5. Now when I am powering Minnowmax and collecting the output on serial Nothing appears. It seems to boot OK for me. See details and download link below: Download u-boot.rom from:

Re: [U-Boot] Building u-boot.rom for Minnowboard

2015-06-01 Thread Saket Sinha
Hi Simon, 5. Now when I am powering Minnowmax and collecting the output on serial Nothing appears. It seems to boot OK for me. See details and download link below: Download u-boot.rom from: https://drive.google.com/file/d/0B7WYZbZ9zd-3eDFaNHpFN2JrcUE/view?usp=sharing With this

Re: [U-Boot] [PATCH] sunxi: Add new Mele_A1000G_quad defconfig

2015-06-01 Thread Tom Rini
On Mon, Jun 01, 2015 at 08:19:23PM +0200, Hans de Goede wrote: Hi, On 01-06-15 20:12, Ian Campbell wrote: On Mon, 2015-06-01 at 17:01 +0200, Hans de Goede wrote: The Mele A1000G-quad and the Mele M9 have the same PCB, sofar we've been using the same defconfig (and dts on the kernel side)

Re: [U-Boot] Building u-boot.rom for Minnowboard

2015-06-01 Thread Simon Glass
Hi John, On Jun 1, 2015 3:21 PM, John Hawley john.haw...@intel.com wrote: Shouldn't be an appreciable differences in the boards, how are you flashing it? Can you punt me a copy of the image so I can try it here and double check? - John Please see below for the drive link. - Simon On

[U-Boot] [PATCH v2] pepper: Implement Board Detection mechanism

2015-06-01 Thread Ash Charles
From: Adam YH Lee adam.yh@gmail.com AM335x-based 'Gumstix Pepper' SBCs and variants use different types of RAM (DDR2 vs DDR3 with DDR3 being the default). Detect the board type by reading the factory-programmed EEPROM [1] and use this to select any runtime boot options such as RAM type. [1]

Re: [U-Boot] [PATCH 2/2] nand: sunxi: Add support for booting from internal NAND memory

2015-06-01 Thread Scott Wood
On Thu, 2015-05-21 at 15:59 +0200, Roy Spliet wrote: +#ifdef CONFIG_NAND_SUNXI +#include nand.h +#endif Why do you need the ifdef? +#include common.h +#include config.h +#include asm/io.h +#include nand.h + +/* DMAC */ +#define DMAC_BASE0x01c02000 +#define

Re: [U-Boot] Building u-boot.rom for Minnowboard

2015-06-01 Thread John Hawley
Are we assuming a serial port being 11520n8 on ttyS0 (I.E. the same port we normally use for early serial)? - John On 06/01/2015 02:27 PM, Simon Glass wrote: Hi John, On Jun 1, 2015 3:21 PM, John Hawley john.haw...@intel.com mailto:john.haw...@intel.com wrote: Shouldn't be an appreciable

Re: [U-Boot] Building u-boot.rom for Minnowboard

2015-06-01 Thread John Hawley
Shouldn't be an appreciable differences in the boards, how are you flashing it? Can you punt me a copy of the image so I can try it here and double check? - John On 06/01/2015 01:10 PM, Simon Glass wrote: +John Hi Saket, On 1 June 2015 at 13:45, Saket Sinha saket.sinh...@gmail.com wrote:

[U-Boot] [PATCH 21/22][v3] armv8/fsl-lsch3: Support 256M mem split for MC dbg-srvr

2015-06-01 Thread Prabhakar Kushwaha
The agreed split of the top of memory is 256M for debug server and 256M for MC. This patch implements the split. In addition, the MC mem must be 512MB aligned, so the amount of memory to hide must be 512MB to achieve that alignment. Signed-off-by: Stuart Yoder stuart.yo...@freescale.com

Re: [U-Boot] [PATCH] imx: missing CONFIG_NET after consolidation patches

2015-06-01 Thread Bin Meng
Hi Simon, On Tue, Jun 2, 2015 at 1:14 AM, Simon Glass s...@chromium.org wrote: Hi, On 29 May 2015 at 01:43, Joe Hershberger joe.hershber...@gmail.com wrote: Hi Bin, On Fri, May 29, 2015 at 2:16 AM, Bin Meng bmeng...@gmail.com wrote: Hi Heiko, On Fri, May 29, 2015 at 1:19 PM, Heiko

Re: [U-Boot] Building u-boot.rom for Minnowboard

2015-06-01 Thread Saket Sinha
Hi John, Are we assuming a serial port being 11520n8 on ttyS0 (I.E. the same port we normally use for early serial)? I access my serial port through screen /dev/ttyUSB0 115200 using USB to Serial TTL Level cable. When I flash MinnowBoard.MAX.X64.079.R01.bin, I get all the UEFI outputs but

[U-Boot] u-boot relocation hang with EP8xx PPC

2015-06-01 Thread Sébastien BLAVIER
Hi All, I am porting the u-boot for a customized board based on MPC885 processor. Initially we used u-boot v2010 for this board and it's works fine so i only porting our board patch to u-boot 2013 but the relocation seems hang nothing is dipslayed after debug print New stack pointer is