[U-Boot] [PATCH 02/11] x86: coreboot: Increase memrange entry number to 32

2015-08-13 Thread Bin Meng
Increase lib_sysinfo memrange entry number to 32 to sync with coreboot. This allows a complete E820 table to be reported to the kernel, as on some platforms (eg: Bayley Bay) having only 16 entires does not cover all the memory ranges. Signed-off-by: Bin Meng bmeng...@gmail.com ---

[U-Boot] [PATCH 04/11] x86: Remove calculate_relocation_address()

2015-08-13 Thread Bin Meng
Now that we have generic routine to calculate relocation address, remove the x86 specific one which is now only used by coreboot. Signed-off-by: Bin Meng bmeng...@gmail.com --- arch/x86/cpu/coreboot/sdram.c | 9 +-- arch/x86/include/asm/init_helpers.h | 2 --

[U-Boot] [PATCH 09/11] x86: Enable CONFIG_PCI_CONFIG_HOST_BRIDGE for all boards

2015-08-13 Thread Bin Meng
It looks that x86 chipset always contains a host bridge at pci b.d.f 0.0.0, so enable this for all boards. Signed-off-by: Bin Meng bmeng...@gmail.com --- include/configs/bayleybay.h | 1 - include/configs/crownbay.h | 1 - include/configs/minnowmax.h | 1 - include/configs/qemu-x86.h | 1

[U-Boot] [PATCH 06/11] x86: kconfig: Hide System tables for EFI

2015-08-13 Thread Bin Meng
Instead of hiding each menu entries under System tables for EFI, hide the main menu completely. Signed-off-by: Bin Meng bmeng...@gmail.com --- arch/x86/Kconfig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 01ed760..b600beb

[U-Boot] [PATCH 03/11] x86: coreboot: Correctly report E820 types

2015-08-13 Thread Bin Meng
coreboot has some extensions (type 6 16) to the E820 types. When we detect this, mark it as E820_RESERVED. Signed-off-by: Bin Meng bmeng...@gmail.com --- arch/x86/cpu/coreboot/sdram.c | 15 +-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH 07/11] x86: kconfig: Hide System tables for coreboot

2015-08-13 Thread Bin Meng
When booting as a coreboot payload, we don't need write any configuration tables as coreboot does that for us. Signed-off-by: Bin Meng bmeng...@gmail.com --- arch/x86/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index

[U-Boot] [PATCH 05/11] x86: coreboot: Allow =4GiB memory bank size

2015-08-13 Thread Bin Meng
Some platforms may have =4GiB memory, so we need make U-Boot report such configuration correctly when booting as the coreboot payload. Signed-off-by: Bin Meng bmeng...@gmail.com --- arch/x86/cpu/coreboot/sdram.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git

[U-Boot] [PATCH 00/11] x86: Improve U-Boot as the coreboot payload support

2015-08-13 Thread Bin Meng
This series adds some improvment to the existing coreboot support, like =4GiB memory support, correct E820 table report, don't bother configure system tables in Kconfig and support booting Linux kernel with a working graphics console. Tested on Intel Bayley Bay, U-Boot loaded by coreboot as a

[U-Boot] [PATCH 01/11] x86: doc: Update coreboot payload entry point address

2015-08-13 Thread Bin Meng
With recent EFI support, the entry point address of coreboot payload was changed. Now we update the address to use _x86boot_start, which is the same one for EFI. Signed-off-by: Bin Meng bmeng...@gmail.com --- doc/README.x86 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[U-Boot] [PATCH 08/11] x86: Only include cbfs command for coreboot

2015-08-13 Thread Bin Meng
When running U-Boot bare-metal, the cbfs command is useless. Signed-off-by: Bin Meng bmeng...@gmail.com --- include/configs/x86-common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/x86-common.h b/include/configs/x86-common.h index 349b06c..3d07cc0 100644 ---

[U-Boot] [PATCH 11/11] x86: Set up video framebuffer for coreboot before loading kernel

2015-08-13 Thread Bin Meng
Currenlty we only set up video framebuffer when VIDEO_VESA driver is used. With coreboot, VIDEO_COREBOOT driver is used instead. Since we already saved VESA mode in the VIDEO_COREBOOT driver, now we can also set up video framebuffer for coreboot before loading Linux kernel. Signed-off-by: Bin

Re: [U-Boot] [PATCH v4] x86: baytrail: Configure FSP UPD from device tree

2015-08-13 Thread Bin Meng
Hi Simon, On Wed, Aug 12, 2015 at 11:54 AM, Simon Glass s...@chromium.org wrote: +Gabriel Hi Andrew, On 11 August 2015 at 09:20, Andrew Bradford and...@bradfordembedded.com wrote: Hi Simon, On 08/11 08:06, Simon Glass wrote: Hi Andrew, On 11 August 2015 at 06:08, Andrew Bradford

Re: [U-Boot] [U-Boot, RESEND, v5] mtd/nand/ubi: assortment of alignment fixes

2015-08-13 Thread Marcel Ziswiler
On Wed, 2015-08-12 at 15:43 -0400, Tom Rini wrote: On Wed, Aug 05, 2015 at 05:17:04PM +0200, Marcel Ziswiler wrote: From: Marcel Ziswiler marcel.ziswi...@toradex.com Various U-Boot adoptions/extensions to MTD/NAND/UBI did not take buffer alignment into account which led to failures

[U-Boot] [PATCH v6] mtd/nand/ubi: assortment of alignment fixes

2015-08-13 Thread Marcel Ziswiler
From: Marcel Ziswiler marcel.ziswi...@toradex.com Various U-Boot adoptions/extensions to MTD/NAND/UBI did not take buffer alignment into account which led to failures of the following form: ERROR: v7_dcache_inval_range - start address is not aligned - 0x1f7f0108 ERROR: v7_dcache_inval_range -

Re: [U-Boot] [PATCH 0/2] ARM: exynos: reorganize SoC code

2015-08-13 Thread Przemyslaw Marczak
Hello Thomas, On 08/03/2015 02:27 PM, Thomas Abraham wrote: In order to reuse existing ARMv7 based Exynos SoC support for ARMv8 based Exynos platforms, move the existing sources from arch/arm/cpu/armv7/exynos to arch/arm/mach-exynos. This patch series has been tested on origen (Exynos4210),

Re: [U-Boot] [U-Boot PATCH v2 00/10] Enable edma support for ti-qspi

2015-08-13 Thread Jagan Teki
On 13 August 2015 at 11:51, Vignesh R vigne...@ti.com wrote: On 07/30/2015 11:04 AM, Vignesh R wrote: This patch series enables DMA for QSPI on dra7xx and am43xx. Patch 1 and 2 make sure the buffers are mem aligned for dma operation. Patch 3-6 add support for enabling and disabling of edma3

Re: [U-Boot] [PATCH v3 11/16] net/eth.c: Add function to validate a MAC address

2015-08-13 Thread Codrin Constantin Ciubotariu
Hi York, Sure, I will make v4 this week for this change only. I will try to shrink the function and inline it in the header file. Thanks and best regards, Codrin -Original Message- From: Sun York-R58495 Sent: Wednesday, August 12, 2015 10:59 PM To: Ciubotariu Codrin

Re: [U-Boot] [U-BOOT PATCH v3 1/4] x86: Added ACPI support as a configuration option.

2015-08-13 Thread Bin Meng
Hi Saket, The patch/commit title is: x86: Added ACPI support as a configuration option. Please use simple tense in the title. So it's 'Add', not 'Added'. Also please do not add any ending period. On Thu, Aug 13, 2015 at 11:01 AM, Saket Sinha saket.sinh...@gmail.com wrote: Please add some

Re: [U-Boot] Pull request: u-boot-mmc 12082015

2015-08-13 Thread Pantelis Antoniou
Hi Tom, On Aug 12, 2015, at 12:19 , Marek Vasut ma...@denx.de wrote: On Wednesday, August 12, 2015 at 09:48:28 AM, Pantelis Antoniou wrote: Hi Tom, The following changes since commit e2c1c5bae619d2e87505de99f907a26237640bc9: Merge git://git.denx.de/u-boot-dm (2015-08-10 10:06:07

[U-Boot] [PATCH] net: Return -1 when ctrl+c is pressed

2015-08-13 Thread Michal Simek
Current behavior is that if CTRL+C is pressed command returns 0 that was successful which is not correct behavior. The easiest test case is tftpboot 8 uImage echo yes and press CTRL+C. Then the second command is called which is incorrect. Error log: zynq-uboot tftpb 8 uImage echo yes

Re: [U-Boot] [PATCH v3] net: TFTP: add timer count environment variable

2015-08-13 Thread Albert ARIBAUD
Hi Joe, Le Wed, 12 Aug 2015 12:39:46 -0500, Joe Hershberger joe.hershber...@gmail.com a écrit : Hi Albert, On Sun, Jul 26, 2015 at 4:53 PM, Albert ARIBAUD (3ADEV) albert.arib...@3adev.fr wrote: There already is an environment variable 'tftptimeout' for setting individuabl block query

Re: [U-Boot] [U-Boot PATCH v2 00/10] Enable edma support for ti-qspi

2015-08-13 Thread Vignesh R
On 07/30/2015 11:04 AM, Vignesh R wrote: This patch series enables DMA for QSPI on dra7xx and am43xx. Patch 1 and 2 make sure the buffers are mem aligned for dma operation. Patch 3-6 add support for enabling and disabling of edma3 clocks on am43xx and dra7xx. Patch 7-9 add dma

[U-Boot] [PATCH 10/11] video: coreboot: Save VESA mode for future use

2015-08-13 Thread Bin Meng
When booting as a coreboot payload, the framebuffer details are passed from coreboot via configuration tables. We save these information into vesa_mode_info structure for future use. Signed-off-by: Bin Meng bmeng...@gmail.com --- drivers/pci/pci_rom.c | 2 +- drivers/video/coreboot_fb.c

Re: [U-Boot] [PATCH v4] x86: baytrail: Configure FSP UPD from device tree

2015-08-13 Thread Bin Meng
Hi Andrew, On Mon, Aug 10, 2015 at 7:32 PM, Andrew Bradford and...@bradfordembedded.com wrote: Hi Bin, On 08/09 10:52, Bin Meng wrote: Hi Andrew, On Sun, Aug 9, 2015 at 9:08 AM, Andrew Bradford and...@bradfordembedded.com wrote: Hi Simon, On 08/08 10:18, Simon Glass wrote: Hi,

Re: [U-Boot] [U-BOOT PATCH v3 0/4] x86: This series adds ACPI support for qemu targets.

2015-08-13 Thread Bin Meng
Hi Saket, On Thu, Aug 13, 2015 at 11:00 AM, Saket Sinha saket.sinh...@gmail.com wrote: ACPI(Advanced Configuration and Power Interface), a Power Management and configuration standard allowing the operating system to controlthe amount of power each device is given (allowing it to put

[U-Boot] [RFC PATCH 21/28] powerpc: remove MPC8544DS support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc85xx/Kconfig | 4 - board/freescale/mpc8544ds/Kconfig | 12 -

[U-Boot] [RFC PATCH 07/28] powerpc: remove zeus support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/ppc4xx/Kconfig | 4 - board/zeus/Kconfig | 9 - board/zeus/MAINTAINERS |

[U-Boot] [RFC PATCH 11/28] powerpc: remove ipek01 support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc5xxx/Kconfig | 4 - board/ipek01/Kconfig | 9 - board/ipek01/MAINTAINERS |

[U-Boot] [RFC PATCH 25/28] powerpc: remove MPC8568MDS support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc85xx/Kconfig| 4 - board/freescale/mpc8568mds/Kconfig | 12 -

[U-Boot] [RFC PATCH 09/28] powerpc: remove canmb board support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc5xxx/Kconfig | 4 - board/canmb/Kconfig | 9 -- board/canmb/MAINTAINERS

[U-Boot] [RFC PATCH 27/28] powerpc: remove MPC8610HPCD support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc86xx/Kconfig | 4 - board/freescale/mpc8610hpcd/Kconfig | 12 -

[U-Boot] [PATCH] x86: Add clarifications to the x86 README

2015-08-13 Thread Igor Stoppa
* Explicitly list the targets supported in each section of the instructions from the x86 README. * Drop references to 'raw mode', in favor of 'bare mode'. Signed-off-by: Igor Stoppa igor.sto...@intel.com --- doc/README.x86 | 24 ++-- 1 file changed, 14 insertions(+), 10

[U-Boot] [RFC PATCH 17/28] powerpc: remove socrates support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc85xx/Kconfig | 4 - board/socrates/Kconfig | 9 - board/socrates/MAINTAINERS |

[U-Boot] [RFC PATCH 23/28] powerpc: remove MPC8555CDS support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc85xx/Kconfig| 4 - board/freescale/mpc8555cds/Kconfig | 12 -

[U-Boot] [RFC PATCH 18/28] powerpc: remove stxgp3, stxssa support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc85xx/Kconfig | 8 - board/stx/stxgp3/Kconfig | 12 - board/stx/stxgp3/MAINTAINERS |

[U-Boot] [RFC PATCH 22/28] powerpc: remove MPC8548CDS support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc85xx/Kconfig| 4 - board/freescale/mpc8548cds/Kconfig | 12 -

[U-Boot] [RFC PATCH 16/28] powerpc: remove v38b support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc5xxx/Kconfig | 4 - board/v38b/Kconfig | 9 -- board/v38b/MAINTAINERS

[U-Boot] [RFC PATCH 06/28] powerpc: remove sbc405 support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/ppc4xx/Kconfig | 4 - board/sbc405/Kconfig| 9 - board/sbc405/MAINTAINERS|

Re: [U-Boot] [RFC PATCH 03/28] powerpc: remove lwmon5 support

2015-08-13 Thread Stefan Roese
Hi Masahiro, On 13.08.2015 12:15, Masahiro Yamada wrote: This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com I'd like to keep this board - at least for a while. So I'll

[U-Boot] [RFC PATCH 20/28] powerpc: remove MPC8541CDS support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc85xx/Kconfig| 4 - board/freescale/mpc8541cds/Kconfig | 12 -

Re: [U-Boot] [PATCH V6] sf: Turn SPI flash chip into 3-Byte address mode

2015-08-13 Thread Stefan Roese
On 13.08.2015 12:50, Hou Zhiqiang wrote: -Original Message- From: Siva Durga Prasad Paladugu [mailto:siva.durga.palad...@xilinx.com] Sent: 2015年8月13日 17:18 To: Hou Zhiqiang-B48286; u-boot@lists.denx.de; jt...@openedev.com Cc: Sun York-R58495; Hu Mingkai-B21284; nofooter Subject: RE:

[U-Boot] [RFC PATCH 19/28] powerpc: remove MPC8540ADS support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc85xx/Kconfig| 4 - board/freescale/mpc8540ads/Kconfig | 12 -

[U-Boot] [RFC PATCH 28/28] powerpc: remove sbc8641d support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc86xx/Kconfig | 4 - board/sbc8641d/Kconfig | 9 - board/sbc8641d/MAINTAINERS |

[U-Boot] [RFC PATCH 15/28] powerpc: remove pcm030 support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc5xxx/Kconfig| 4 - board/phytec/pcm030/Kconfig | 12 -

Re: [U-Boot] [PATCH V6] sf: Turn SPI flash chip into 3-Byte address mode

2015-08-13 Thread Hou Zhiqiang
-Original Message- From: Siva Durga Prasad Paladugu [mailto:siva.durga.palad...@xilinx.com] Sent: 2015年8月13日 17:18 To: Hou Zhiqiang-B48286; u-boot@lists.denx.de; jt...@openedev.com Cc: Sun York-R58495; Hu Mingkai-B21284; nofooter Subject: RE: [PATCH V6] sf: Turn SPI flash chip into

Re: [U-Boot] [PATCH V6] sf: Turn SPI flash chip into 3-Byte address mode

2015-08-13 Thread Jagan Teki
On 13 August 2015 at 16:57, Siva Durga Prasad Paladugu siva.durga.palad...@xilinx.com wrote: -Original Message- From: Stefan Roese [mailto:s...@denx.de] Sent: Thursday, August 13, 2015 4:51 PM To: Hou Zhiqiang; Siva Durga Prasad Paladugu; u-boot@lists.denx.de; jt...@openedev.com

[U-Boot] [RFC PATCH 04/28] powerpc: remove p3p440 support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/ppc4xx/Kconfig | 4 - board/prodrive/p3p440/Kconfig | 12 --

[U-Boot] [RFC PATCH 02/28] powerpc: remove csb272, csb472 support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/ppc4xx/Kconfig | 8 -- board/csb272/Kconfig| 9 -- board/csb272/MAINTAINERS|

[U-Boot] [RFC PATCH 05/28] powerpc: remove pcs440ep support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/ppc4xx/Kconfig | 4 - board/pcs440ep/Kconfig | 9 - board/pcs440ep/MAINTAINERS |

[U-Boot] [RFC PATCH 10/28] powerpc: remove inka4x0 support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc5xxx/Kconfig | 4 - board/inka4x0/Kconfig| 9 - board/inka4x0/MAINTAINERS|

[U-Boot] [RFC PATCH 03/28] powerpc: remove lwmon5 support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/ppc4xx/Kconfig | 5 - board/lwmon5/Kconfig| 9 - board/lwmon5/MAINTAINERS|

[U-Boot] [RFC PATCH 01/28] powerpc: remove alpr support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/ppc4xx/Kconfig | 4 - board/prodrive/alpr/Kconfig | 12 -- board/prodrive/alpr/MAINTAINERS |

[U-Boot] [RFC PATCH 00/28] Janitorial: powerpc: remove PowerPC non-generic boards

2015-08-13 Thread Masahiro Yamada
PowerPC supports generic board framework, so all the PowerPC boards should be converted(, otherwise removed). This is docmented in doc/README.generic-board, was announced in the ML again and again, and warning messages have been displayed when such boards are built. This series clears away all

[U-Boot] [RFC PATCH 26/28] powerpc: remove MPC8569MDS support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc85xx/Kconfig| 4 - board/freescale/mpc8569mds/Kconfig | 12 -

Re: [U-Boot] [PATCH V6] sf: Turn SPI flash chip into 3-Byte address mode

2015-08-13 Thread Siva Durga Prasad Paladugu
Hi Zhejiang/Jagan, I think it would be good to extend this further to support 4-byte addressing in u-boot also. This would be based on the driver, We can get the data that whether the controller supports 4-byte or not from the driver level(through slave struct) and enable 4 byte addressing here

[U-Boot] [PATCH] ppc4xx: Convert lwmon5 board to generic board

2015-08-13 Thread Stefan Roese
Add CONFIG_SYS_GENERIC_BOARD to lwmon5.h and CONFIG_DISPLAY_BOARDINFO to Kconfig file. Signed-off-by: Stefan Roese s...@denx.de Cc: Masahiro Yamada yamada.masah...@socionext.com --- board/lwmon5/Kconfig | 4 include/configs/lwmon5.h | 2 ++ 2 files changed, 6 insertions(+) diff --git

Re: [U-Boot] [RFC PATCH 03/28] powerpc: remove lwmon5 support

2015-08-13 Thread Tom Rini
On Thu, Aug 13, 2015 at 12:23:49PM +0200, Stefan Roese wrote: Hi Masahiro, On 13.08.2015 12:15, Masahiro Yamada wrote: This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada

Re: [U-Boot] [PATCH v2 15/15] of: clean up OF_CONTROL ifdef conditionals

2015-08-13 Thread Linus Walleij
On Sat, Aug 1, 2015 at 3:14 PM, Masahiro Yamada yamada.masah...@socionext.com wrote: We have flipped CONFIG_SPL_DISABLE_OF_CONTROL. We have cleansing devices, $(SPL_) and CONFIG_IS_ENABLED(), so we are ready to clear away the ugly logic in include/fdtdec.h: #ifdef CONFIG_OF_CONTROL # if

Re: [U-Boot] [U-BOOT PATCH v3 2/4] x86: Added support for ACPI table generation at the generic layer.

2015-08-13 Thread Bin Meng
Hi Saket, On Thu, Aug 13, 2015 at 11:01 AM, Saket Sinha saket.sinh...@gmail.com wrote: Please see my comments in your [1/4] patch regarding to patch title and commit message. Signed-off-by: Saket Sinha saket.sinh...@gmail.com --- arch/x86/include/asm/acpi_table.h | 387

[U-Boot] [RFC PATCH 08/28] powerpc: remove cmi_mpc5xx support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc5xx/Kconfig | 4 - board/cmi/Kconfig | 9 - board/cmi/MAINTAINERS |

[U-Boot] [RFC PATCH 14/28] powerpc: remove munices support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc5xxx/Kconfig | 4 - board/munices/Kconfig| 9 -- board/munices/MAINTAINERS

[U-Boot] [RFC PATCH 12/28] powerpc: remove jupiter support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc5xxx/Kconfig | 4 - board/jupiter/Kconfig| 9 -- board/jupiter/MAINTAINERS

[U-Boot] [RFC PATCH 24/28] powerpc: remove MPC8560ADS support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc85xx/Kconfig| 4 - board/freescale/mpc8560ads/Kconfig | 12 -

[U-Boot] [RFC PATCH 13/28] powerpc: remove motionpro support

2015-08-13 Thread Masahiro Yamada
This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- arch/powerpc/cpu/mpc5xxx/Kconfig | 4 - board/motionpro/Kconfig | 9 - board/motionpro/MAINTAINERS |

Re: [U-Boot] [PATCH V6] sf: Turn SPI flash chip into 3-Byte address mode

2015-08-13 Thread Siva Durga Prasad Paladugu
-Original Message- From: Stefan Roese [mailto:s...@denx.de] Sent: Thursday, August 13, 2015 4:51 PM To: Hou Zhiqiang; Siva Durga Prasad Paladugu; u-boot@lists.denx.de; jt...@openedev.com Cc: nofooter; York Sun Subject: Re: [U-Boot] [PATCH V6] sf: Turn SPI flash chip into 3-Byte

[U-Boot] [PATCH v3 2/2] Makefile: Add SOURCE_DATE_TZ

2015-08-13 Thread Chris Packham
Along with SOURCE_DATE_EPOCH SOURCE_DATE_TZ can be used to recreate a build with a specific date timestamp. This allows the verification of source supplied with a pre-compiled binary. If SOURCE_DATE_EPOCH is supplied SOURCE_DATE_TZ can be used to specify what will appear in the output of the

[U-Boot] [PATCH v3 1/2] Makefile: Use correct timezone for U_BOOT_TZ

2015-08-13 Thread Chris Packham
When building with SOURCE_DATE_EPOCH the timezone is in UTC. When building normally the timezone is taken from the build machine's locale setting. Signed-off-by: Chris Packham judge.pack...@gmail.com Tested-by: Bin Meng bmeng...@gmail.com Tested-by: Paul Kocialkowski cont...@paulk.fr --- Changes

Re: [U-Boot] ARM AM43XX: make boot-params available to U-Boot, save to env

2015-08-13 Thread Tom Rini
On Wed, Jul 22, 2015 at 05:01:03PM +, Holleis, Edgar wrote: This patch makes the Boot Parameter Structure of AM43XX available to U-Boot. The feature is already available for OMAP3 and OMAP4, but not AM43XX. It also adds the value of the boot device to the U-Boot environment.

Re: [U-Boot] [U-Boot, v4, 1/9] usb: dwc2: Call board_usb_init() from usb_lowlevel_init()

2015-08-13 Thread Tom Rini
On Thu, Jul 30, 2015 at 06:55:17PM +0100, Peter Griffin wrote: This patch makes the dwc2 controller like ehci / ohci / xhci controllers by calling the board_usb_init() function from usb_lowlevel_init. This can then be implemented by specific platforms to initialise their USB hardware (phys

Re: [U-Boot] kconfiglib: update to the latest version

2015-08-13 Thread Tom Rini
On Fri, Jun 12, 2015 at 06:56:19PM +0200, Ulf Magnusson wrote: Corresponds to 2f319b8 in https://github.com/ulfalizer/Kconfiglib. Fixes: - Unset user values when loading a zero-byte .config. (5e54e2c) - Ignore indented .config assignments. (f8a7510) - Do not require $srctree to be

Re: [U-Boot] [RFC PATCH 17/28] powerpc: remove socrates support

2015-08-13 Thread Anatolij Gustschin
Hi, On Thu, 13 Aug 2015 19:15:35 +0900 Masahiro Yamada yamada.masah...@socionext.com wrote: This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) I'll submit conversion patch for this board and for some other mpc5xxx boards today.

Re: [U-Boot] efi: Error building as EFI payload (both 32bit and 64 bit)

2015-08-13 Thread Stoppa, Igor
Hi Bin, On 13 August 2015 at 15:37, Bin Meng bmeng...@gmail.com wrote: x86 architecture --- Mainboard vendor --- efi x86 architecture --- Mainboard model --- efi These two should not be changed for EFI payload. What you selected is for EFI application. Thanks a lot. Now it built. If

Re: [U-Boot] [U-Boot, 07/12] sniper: Serial number support, obtained from die ID

2015-08-13 Thread Tom Rini
On Mon, Jul 20, 2015 at 03:17:13PM +0200, Paul Kocialkowski wrote: The OMAP3 has some die-specific ID bits that we can use to give the device a (more or less) unique serial number. This is particularly useful for e.g. USB. Signed-off-by: Paul Kocialkowski cont...@paulk.fr Applied to

Re: [U-Boot] [U-Boot, 11/12] sniper: Power off when the power on reason is not a valid one

2015-08-13 Thread Tom Rini
On Mon, Jul 20, 2015 at 03:17:17PM +0200, Paul Kocialkowski wrote: In most cases, userspace will attempt to power off the device with HALT instead of POWER_OFF, which triggers a reset instead of a proper power off from the TWL4030. Hence, it is up to the bootloader to actually turn the

Re: [U-Boot] [U-Boot, 08/12] sniper: Pass serial number through ATAG

2015-08-13 Thread Tom Rini
On Mon, Jul 20, 2015 at 03:17:14PM +0200, Paul Kocialkowski wrote: Now that the serial number is correctly defined, we can pass it to the kernel using the (legacy) ATAG method. It will be automatically passed via device-tree when enabled. Signed-off-by: Paul Kocialkowski cont...@paulk.fr

Re: [U-Boot] [U-Boot,10/12] sniper: Power button reset support

2015-08-13 Thread Tom Rini
On Mon, Jul 20, 2015 at 03:17:16PM +0200, Paul Kocialkowski wrote: This adds support for resetting the device on a long press on the power button. Signed-off-by: Paul Kocialkowski cont...@paulk.fr Reviewed-by: Tom Rini tr...@konsulko.com Applied to u-boot/master, thanks! -- Tom

Re: [U-Boot] [U-Boot, 12/12] sniper: Keypad support, with recovery and fastboot key combinations

2015-08-13 Thread Tom Rini
On Mon, Jul 20, 2015 at 03:17:18PM +0200, Paul Kocialkowski wrote: Using the twl4030 keypad allows booting directly into some special boot modes, such as recovery or fastboot. the VOL+ key will trigger a boot to recovery while the VOL- key will trigger a boot to fastboot. The G (gesture)

Re: [U-Boot] [U-Boot,v4,1/7] arm1136: Remove dead code

2015-08-13 Thread Tom Rini
On Fri, Jul 24, 2015 at 09:22:09AM +0200, Alexander Stein wrote: Apparently lcd_panel_disable is not defined anywhere, so no config for an arm1136 board would have set CONFIG_LCD. Remove the unused code. Signed-off-by: Alexander Stein alexander...@web.de Acked-by: Stephen Warren

Re: [U-Boot] [U-Boot, v2, 2/8] ARM: keystone2: Enable CONFIG_DISPLAY_CPUINFO

2015-08-13 Thread Tom Rini
On Tue, Jul 28, 2015 at 02:16:42PM +0530, Lokesh Vutla wrote: Add print_cpuinfo() function and enable CONFIG_DISPLAY_CPUINFO for keystone platforms, so that cpu info can be displayed during boot. Reviewed-by: Tom Rini tr...@konsulko.com Reviewed-by: Vitaly Andrianov vita...@ti.com

Re: [U-Boot] [U-Boot,5/7] i2c: lpc32xx: fix read timeout

2015-08-13 Thread Tom Rini
On Mon, Jul 27, 2015 at 01:37:38PM -0400, slemieux.t...@gmail.com wrote: From: Sylvain Lemieux slemi...@tycoint.com Fix a condition that generate watchdog timeout inside lpc32xx_i2c_read when parameters alen != 0 and len = 0. Signed-off-by: Sylvain Lemieux slemi...@tycoint.com Applied

Re: [U-Boot] [U-Boot,v2,1/8] ARM: keystone2: Cleanup SoC detection

2015-08-13 Thread Tom Rini
On Tue, Jul 28, 2015 at 02:16:41PM +0530, Lokesh Vutla wrote: Add proper register definition for JTAG ID and cleanup cpu_is_* functions. Reviewed-by: Tom Rini tr...@konsulko.com Reviewed-by: Vitaly Andrianov vita...@ti.com Signed-off-by: Lokesh Vutla lokeshvu...@ti.com Applied to

Re: [U-Boot] [U-Boot, V2, 2/3] ARM: DRA7/ OMAP5: implement Auxiliary Control Register configuration

2015-08-13 Thread Tom Rini
On Mon, Jul 27, 2015 at 04:26:06PM -0500, Nishanth Menon wrote: Implement logic for ACR(Auxiliary Control Register) configuration using ROM Code smc service. Suggested-by: Richard Woodruff r-woodru...@ti.com Suggested-by: Brad Griffis bgrif...@ti.com Reviewed-by: Brad Griffis

Re: [U-Boot] [PATCH V6] sf: Turn SPI flash chip into 3-Byte address mode

2015-08-13 Thread Stefan Roese
Jagan, On 13.08.2015 13:45, Jagan Teki wrote: Please correct me if I'm wrong, but AFAIU this BAR thing (CONFIG_SPI_FLASH_BAR) doesn't support to address e.g. a 64MiB SPI flash contiguously. Only 16MiB areas. So for example its not possible to put UBI/UBIFS in such a big partition. Stefan,

Re: [U-Boot] [PATCH 07/12] sniper: Serial number support, obtained from die ID

2015-08-13 Thread Tom Rini
On Fri, Aug 07, 2015 at 11:44:46AM +0200, Paul Kocialkowski wrote: Le mardi 04 août 2015 à 14:27 -0400, Tom Rini a écrit : On Tue, Aug 04, 2015 at 08:22:39PM +0200, Paul Kocialkowski wrote: Le mardi 04 août 2015 à 14:16 -0400, Tom Rini a écrit : On Tue, Aug 04, 2015 at 08:02:40PM +0200,

[U-Boot] efi: Error building as EFI payload (both 32bit and 64 bit)

2015-08-13 Thread Stoppa, Igor
Hello, I'm using the HEAD of the master branch from git://git.denx.de/u-boot-x86.git I want to build U-Boot as 64bit EFI payload. According to docs/README.efi, I've done the following: u-boot-x86 make qemu-x86_defconfig u-boot-x86 make menuconfig x86 architecture --- Mainboard vendor --- efi

Re: [U-Boot] [PATCH] x86: Add clarifications to the x86 README

2015-08-13 Thread Bin Meng
Hi Igor, On Thu, Aug 13, 2015 at 7:00 PM, Igor Stoppa igor.sto...@intel.com wrote: * Explicitly list the targets supported in each section of the instructions from the x86 README. * Drop references to 'raw mode', in favor of 'bare mode'. Signed-off-by: Igor Stoppa igor.sto...@intel.com ---

Re: [U-Boot] [U-Boot, V2, 3/3] ti: drop value from CONFIG_SYS_NAND_BUSWIDTH_16BIT

2015-08-13 Thread Tom Rini
On Sun, Jul 26, 2015 at 03:18:15PM +0200, Stefano Babic wrote: Signed-off-by: Stefano Babic sba...@denx.de Reviewed-by: Tom Rini tr...@konsulko.com Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot

Re: [U-Boot] include/bitfield.h: Assure new bitfield value doesn't touch unwanted bits

2015-08-13 Thread Tom Rini
On Fri, Jul 24, 2015 at 04:52:19PM +0300, Codrin Ciubotariu wrote: The new bitfield value must not be higher than its mask. Signed-off-by: Codrin Ciubotariu codrin.ciubota...@freescale.com Reviewed-by: Joe Hershberger joe.hershber...@ni.com Applied to u-boot/master, thanks! -- Tom

Re: [U-Boot] [U-Boot,V2,2/3] mcx: add Ethernet over USB

2015-08-13 Thread Tom Rini
On Sun, Jul 26, 2015 at 03:18:14PM +0200, Stefano Babic wrote: Signed-off-by: Stefano Babic sba...@denx.de Reviewed-by: Tom Rini tr...@konsulko.com Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot

Re: [U-Boot] [U-Boot,V2,1/3] omap3: fix NAND support for mcx board

2015-08-13 Thread Tom Rini
On Sun, Jul 26, 2015 at 03:18:13PM +0200, Stefano Babic wrote: mcx was not updated according to changes in NAND driver. Signed-off-by: Stefano Babic sba...@denx.de Reviewed-by: Tom Rini tr...@konsulko.com Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital

Re: [U-Boot] drivers: hierarchize drivers Kconfig menu

2015-08-13 Thread Tom Rini
On Sun, Jul 26, 2015 at 02:46:26AM +0900, Masahiro Yamada wrote: The menuconfig for drivers are getting more and more cluttered and unreadable because too many entries are displayed in a single flat menu. Use hierarchic menu for each category. Signed-off-by: Masahiro Yamada

Re: [U-Boot] [U-Boot,v4,7/7] arm/rpi: Enable dcache

2015-08-13 Thread Tom Rini
On Fri, Jul 24, 2015 at 09:22:15AM +0200, Alexander Stein wrote: Now that mailbox driver supports cache flush and invalidation, we can enable dcache. Signed-off-by: Alexander Stein alexander...@web.de Acked-by: Stephen Warren swar...@wwwdotorg.org Tested-by: Stephen Warren

Re: [U-Boot] [U-Boot, V2, 1/3] ARM: Introduce erratum workaround for 801819

2015-08-13 Thread Tom Rini
On Mon, Jul 27, 2015 at 04:26:05PM -0500, Nishanth Menon wrote: Add workaround for Cortex-A15 ARM erratum 801819 which says in summary that A livelock can occur in the L2 cache arbitration that might prevent a snoop from completing. Under certain conditions this can cause the system to

Re: [U-Boot] [U-Boot, V2, 3/3] ARM: DRA72: disable workaround for 801819

2015-08-13 Thread Tom Rini
On Mon, Jul 27, 2015 at 04:26:07PM -0500, Nishanth Menon wrote: DRA72x processor variants are single core and it does not export ACP[1]. Hence, we have no source for generating an external snoop requests which appear to be key to the deadlock in DRA72x design. Since we build the same image

Re: [U-Boot] [U-Boot,6/7] i2c: lpc32xx: fix write timeout

2015-08-13 Thread Tom Rini
On Mon, Jul 27, 2015 at 01:37:39PM -0400, slemieux.t...@gmail.com wrote: From: Sylvain Lemieux slemi...@tycoint.com Fix a condition that generate watchdog timeout inside lpc32xx_i2c_write when parameters alen = 0 and len = 0. Signed-off-by: Sylvain Lemieux slemi...@tycoint.com Applied

Re: [U-Boot] [U-Boot, 4/7] i2c: lpc32xx: use api to get hclk instead of fix value

2015-08-13 Thread Tom Rini
On Mon, Jul 27, 2015 at 01:37:37PM -0400, slemieux.t...@gmail.com wrote: From: Sylvain Lemieux slemi...@tycoint.com The HCLK is not constant and can take different value; use the api function to get the value of the HCLK for the I2C clock high and low computation. Signed-off-by: Sylvain

Re: [U-Boot] [U-Boot,7/7] net: lpc32xx: eth buffers base config

2015-08-13 Thread Tom Rini
On Mon, Jul 27, 2015 at 01:37:40PM -0400, slemieux.t...@gmail.com wrote: From: Sylvain Lemieux slemi...@tycoint.com Add support to specify the Ethernet buffer base address; if none are supply by the board, the default value is use (from existing code). Signed-off-by: Sylvain Lemieux

Re: [U-Boot] [PATCH v6 5/5] usb: lpc32xx: add host USB driver

2015-08-13 Thread LEMIEUX, SYLVAIN
-Original Message- From: Vladimir Zapolskiy [mailto:v...@mleia.com] Sent: 12-Aug-15 8:05 PM Hi Sylvain, On 12.08.2015 23:00, LEMIEUX, SYLVAIN wrote: Hi Vladimir and Marek, -Original Message- From: Vladimir Zapolskiy [mailto:v...@mleia.com] Sent: 12-Aug-15 1:55 PM

Re: [U-Boot] efi: Error building as EFI payload (both 32bit and 64 bit)

2015-08-13 Thread Bin Meng
Hi Igor, On Thu, Aug 13, 2015 at 8:11 PM, Stoppa, Igor igor.sto...@intel.com wrote: Hello, I'm using the HEAD of the master branch from git://git.denx.de/u-boot-x86.git I want to build U-Boot as 64bit EFI payload. According to docs/README.efi, I've done the following: u-boot-x86 make

Re: [U-Boot] Using spi_alloc_slave() from SPL

2015-08-13 Thread Nikolay Dimitrov
Hi Fabio, guys, On 08/07/2015 01:13 AM, Fabio Estevam wrote: Hi Simon, On Thu, Aug 6, 2015 at 4:31 PM, Simon Glass s...@chromium.org wrote: Please check the README about the SPL flow. From what I can see malloc() is not available before board_init_r() in SPL. However, if you add a call to

  1   2   3   4   5   >