Re: [U-Boot] [RFC PATCH] ARMv8: add Kconfig and CPU_V8 option

2015-07-01 Thread Albert ARIBAUD
Hello feng...@phytium.com.cn, On Tue, 3 Feb 2015 17:19:35 +0800, feng...@phytium.com.cn wrote: > From: David Feng > > This patch add Kconfig to armv8. > > Signed-off-by: David Feng > --- > arch/arm/Kconfig | 16 +++- > arch/arm/cpu/armv8/Kconfig | 10 ++ >

[U-Boot] [PATCH][v2] Makefile:Add GCC flag -fno-delete-null-pointer-checks

2015-07-01 Thread Prabhakar Kushwaha
-fdelete-null-pointer-checks flag controls global dataflow analyses and eliminate useless checks for null pointers; It assume that if a pointer is checked after it has already been dereferenced, it cannot be null. This flag is enabled by default. gcc v4.9 has more optimizations added to this optio

Re: [U-Boot] [PATCH 2/8] net: asix: fix operation without eeprom

2015-07-01 Thread Marcel Ziswiler
On 2 July 2015 07:50:59 CEST, Marek Vasut wrote: >On Thursday, July 02, 2015 at 01:04:47 AM, Marcel Ziswiler wrote: > >Hi! > >[...] > >> @@ -64,8 +67,14 @@ >> AX_MEDIUM_AC | AX_MEDIUM_RE) >> >> /* AX88772 & AX88178 RX_CTL values */ >> +#define AX_RX_CTL_RH2M 0x0200

Re: [U-Boot] [PATCH 2/2] zynq: defconfig: Move CONFIG_OF_* to Kconfig

2015-07-01 Thread Jagan Teki
On 2 July 2015 at 06:50, Masahiro Yamada wrote: > 2015-07-02 2:08 GMT+09:00 Jagan Teki : >> On 29 June 2015 at 14:33, Jagan Teki wrote: >>> This commit moves: >>> - CONFIG_OF_CONTROL >>> - SPL_DISABLE_OF_CONTROL >>> >>> from zynq_*_defconfig files into arch/arm/Kconfig "config ARCH_ZYNQ" >>> >>>

[U-Boot] [PATCH 13/13][v4] driver/ldpaa_eth:Avoid infinite loop in ldpaa_eth_rx

2015-07-01 Thread Prabhakar Kushwaha
Change infinite loop mechanism to timer based polling for QBMAN release in ldpaa_eth_rx. Signed-off-by: Prabhakar Kushwaha --- Changes for v2: Sending as it is for patchset Changes for v3: Squashed with other patch Changes for v4: reverted the squash and only have rx path drivers/net/ldpaa_eth/

[U-Boot] [PATCH 12/13][v4] driver/ldpaa_eth: Avoid TX conf frames

2015-07-01 Thread Prabhakar Kushwaha
Polling of TX conf frames is not a mandatory option. Packets can be transferred via WRIOP without TX conf frame. Configure ldpaa_eth driver to use TX path without confirmation frame Signed-off-by: Prabhakar Kushwaha Acked-by: Joe Hershberger --- Changes for v2: Sending as it is for patchset C

Re: [U-Boot] [PATCH 1/8] fs/fs.c: read up to EOF when len would read past EOF

2015-07-01 Thread Marcel Ziswiler
On 2 July 2015 07:46:19 CEST, Marek Vasut wrote: >So this behaves like read(2) now, right ? Exactly for convenient use in U-Boot scripts. -- Sent from my Android device with K-9 Mail. Please excuse my brevity. ___ U-Boot mailing list U-Boot@lists.de

[U-Boot] [PATCH 10/13][v4] driver/ldpaa_eth: Retry enqueue if portal was busy

2015-07-01 Thread Prabhakar Kushwaha
Do not immediately return if the enqueue function returns -EBUSY; re-try mulitple times. if timeout occures, release the buffer. Signed-off-by: Prabhakar Kushwaha --- Changes for v2: Sending as it is for patchset Changes for v3: Incorporated Joe Hershberger's comments - Squash with "driver/l

[U-Boot] [PATCH 09/13][v4] armv8/fsl-lsch3: device tree fixups for PCI stream IDs

2015-07-01 Thread Prabhakar Kushwaha
From: Stuart Yoder This patch adds the infrastructure to update device tree nodes to convey SMMU stream IDs in the device tree. Fixups are implemented for PCI controllers initially. Signed-off-by: Stuart Yoder Signed-off-by: Prabhakar Kushwaha --- changes for v2 - define in fdt_fixup_smmu_p

[U-Boot] [PATCH 07/13][v4] armv8/fsl-lsch3: partition stream IDs

2015-07-01 Thread Prabhakar Kushwaha
From: Stuart Yoder Stream IDs on ls2085a devices are not hardwired and are programmed by sw. There are a limited number of stream IDs available, and the partitioning of them is scenario dependent. This header defines the partitioning between legacy, PCI, and DPAA2 devices. Signed-off-by: Stuart

[U-Boot] [PATCH 11/13][v4] driver/ldpaa_eth: Add timeout handling DQRR entry read

2015-07-01 Thread Prabhakar Kushwaha
Volatile command does not return frame immidiately, need to wait till a frame is available in DQRR. Ideally it should be a blocking call. Add timeout handling for DQRR frame instead of retry counter. Signed-off-by: Prabhakar Kushwaha Acked-by: Joe Hershberger --- Changes for v2: Sending as it i

[U-Boot] [PATCH 08/13][v4] drivers/fsl-mc: dynamically create ICID pool in DPC

2015-07-01 Thread Prabhakar Kushwaha
From: Stuart Yoder delete any existing ICID pools in the DPC and create a new one based on the stream ID partitioning for the SoC Signed-off-by: Stuart Yoder Signed-off-by: Prabhakar Kushwaha --- Changes for v2: Sending as it is for patchset Changes for v3: Sending as it is for patchset Change

[U-Boot] [PATCH 06/13][v4] drivers: fsl-mc: Return error for major version mismatch

2015-07-01 Thread Prabhakar Kushwaha
Management complex major version should match to the firmware present in flash. Return error during mismatch of major version. Signed-off-by: Prabhakar Kushwaha --- Changes for v2: Sending as it is for patchset Changes for v3: Incorporated Joe Hershberger's comments - Use ENODEV instead

[U-Boot] [PATCH 02/13][v4] driver/ldpaa_eth:Flush buffer before seeding BMAN after TX_conf

2015-07-01 Thread Prabhakar Kushwaha
Flush buffer before releasing to BMan after TX_conf to ensure, the core does not have any cachelines that the WRIOP will DMA to. Signed-off-by: Prabhakar Kushwaha --- Changes for v2: Sending as it is for patchset Changes for v3: Sending as it is for patchset Changes for v4: Sending as it is for p

[U-Boot] [PATCH 04/13][v4] drivers: fsl-mc: Update flibs to mc-0.6.0.1

2015-07-01 Thread Prabhakar Kushwaha
Update flibs changes to mc-0.6.0.1 for dpmang, dprc, dpni and dpio objects Also rename qbman_portal_ce/ci_paddr to qbman_portal_ce/ci_offset in dpio_attr. These are now offsets from the SoC QBMan portals base. Signed-off-by: J. German Rivera Signed-off-by: Prabhakar Kushwaha --- Changes for v2:

[U-Boot] [PATCH 01/13][v4] drivers/fsl-mc: Make MC boot error messages more readable

2015-07-01 Thread Prabhakar Kushwaha
From: "J. German Rivera" Make it easier for the user to notice when the MC firmware had problems booting. Signed-off-by: J. German Rivera Signed-off-by: Prabhakar Kushwaha --- Changes for v2: Sending as it is for patchset Changes for v3: Sending as it is for patchset Changes for v4: Sending as

[U-Boot] [PATCH 05/13][v4] drivers: fsl-mc: Update qbman driver

2015-07-01 Thread Prabhakar Kushwaha
Update qbman driver - As per latest available qbman driver - Use of atomic APIs Signed-off-by: Prabhakar Kushwaha CC: Geoff Thorpe CC: Haiying Wang CC: Roy Pledge --- Changes for v2: Sending as it is for patchset Changes for v3: Sending as it is for patchset Changes for v4: Sending as it is

[U-Boot] [PATCH 03/13][v4] drivers/fsl-mc: Autoload AOIP image from NOR flash

2015-07-01 Thread Prabhakar Kushwaha
From: "J. German Rivera" Load AIOP image from NOR flash into DDR so that the MC firmware the MC fw can start it at boot time Signed-off-by: J. German Rivera Signed-off-by: Prabhakar Kushwaha --- Changes for v2: Sending as it is for patchset Changes for v3: Sending as it is for patchset Changes

Re: [U-Boot] [PATCH] colibri_vf: Increase console IO buffer size to 1024

2015-07-01 Thread maitysanchayan
Hello, Another ping? - Sanchayan. On 15-06-08 12:40:41, Sanchayan Maity wrote: > Increase console IO buffer size to 1024 from the previous value of 256. > The previous value was too short for editing environment variables like > ubiboot from the console. > > Signed-off-by: Sanchayan Maity > --

Re: [U-Boot] [PATCH 8/8] tftp.c: fix CONFIG_TFTP_TSIZE for small files

2015-07-01 Thread Marek Vasut
On Thursday, July 02, 2015 at 01:04:53 AM, Marcel Ziswiler wrote: > From: Max Krummenacher > > CONFIG_TFTP_TSIZE should limit a tftp downloads progress to 50 '#' > chars. Make this work also for small files. > > If the file size is small, i.e. smaller than 2 tftp block sizes the > number of '#'

Re: [U-Boot] [PATCH 5/8] colibri_vf: remove spurious new line

2015-07-01 Thread Marek Vasut
On Thursday, July 02, 2015 at 01:04:50 AM, Marcel Ziswiler wrote: > From: Marcel Ziswiler > > Remove spurious new line in configuration file. > > Signed-off-by: Marcel Ziswiler This doesn't break anything, so: Tested-by: Marek Vasut Acked-by: Marek Vasut Best regards, Marek Vasut _

Re: [U-Boot] [PATCH 2/8] net: asix: fix operation without eeprom

2015-07-01 Thread Marek Vasut
On Thursday, July 02, 2015 at 01:04:47 AM, Marcel Ziswiler wrote: Hi! [...] > @@ -64,8 +67,14 @@ >AX_MEDIUM_AC | AX_MEDIUM_RE) > > /* AX88772 & AX88178 RX_CTL values */ > +#define AX_RX_CTL_RH2M 0x0200 /* Enable IP header in receive > +

Re: [U-Boot] [PATCH 1/8] fs/fs.c: read up to EOF when len would read past EOF

2015-07-01 Thread Marek Vasut
On Thursday, July 02, 2015 at 01:04:46 AM, Marcel Ziswiler wrote: > From: Max Krummenacher > > http://lists.denx.de/pipermail/u-boot/2012-September/134347.html > allows for reading files in chunks from the shell. > > When this feature is used to read past the end of a file an error > was returne

Re: [U-Boot] [PATCH 7/8] mtd/nand/ubi: assortment of alignment fixes

2015-07-01 Thread Marek Vasut
On Thursday, July 02, 2015 at 01:04:52 AM, Marcel Ziswiler wrote: > From: Marcel Ziswiler > > 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 alig

Re: [U-Boot] [PATCH 6/8] image-fdt.c: store returned error value

2015-07-01 Thread Marek Vasut
On Thursday, July 02, 2015 at 01:04:51 AM, Marcel Ziswiler wrote: > From: Max Krummenacher > > This fixes the following warning (and the runtime error reporting): > ../common/image-fdt.c:491:4: warning: 'fdt_ret' may be used > uninitialized in this function [-Wmaybe-uninitialized] > > Signed-off

Re: [U-Boot] [PATCH] ARM: enable CONFIG_USE_PRIVATE_LIBGCC by default (re-send to the correct address)

2015-07-01 Thread Albert ARIBAUD
Hello Daniel, (not sure how in my previous reply I managed to drop Masahiro off the discussion; fixing that, and apologies) On Thu, 02 Jul 2015 01:39:17 +0200, Daniel Schwierzeck wrote: > > > Am 02.07.2015 um 00:04 schrieb Albert ARIBAUD: > > Hello Wolfgang, > > > > On Wed, 01 Jul 2015 23:50:

Re: [U-Boot] [PATCH v2] siemens,am33x: adjust mtd partition

2015-07-01 Thread Heiko Schocher denx
Hello Samuel, Am 01.07.2015 um 17:57 schrieb Samuel Egli: Use one mtd partition for rootfs and configuration by means of ubi volumes and get rid of configuration partition. We can use partition layout for both 256MB and 512MB flash. Signed-off-by: Samuel Egli Cc: Heiko Schocher Cc: Roger Meie

Re: [U-Boot] ARM status or maintainer info currently missing

2015-07-01 Thread Lokesh Vutla
Hi Albert, On Wednesday 01 July 2015 06:43 PM, Albert ARIBAUD wrote: > Hello all, > > I get the following when building current u-boot-arm/master with > current u-boot/master: > > * WARNING: no status info for 'am43xx_evm_ethboot' > * WARNING: no maintainers for 'am43xx_evm_ethboot' > WARNING

[U-Boot] [PATCH] board: am43xx: Add maintainer information

2015-07-01 Thread Lokesh Vutla
am43xx_evm_ethboot/usbhost_boot_defconfig entries are missing in MAINTAINER file. Adding entries for them. Reported-by: Albert ARIBAUD Signed-off-by: Lokesh Vutla --- board/ti/am43xx/MAINTAINERS |2 ++ 1 file changed, 2 insertions(+) diff --git a/board/ti/am43xx/MAINTAINERS b/board/ti/am43

Re: [U-Boot] [PATCH] scsi: fix compiler warning with DEBUG and 48bit LBAs

2015-07-01 Thread Bin Meng
On Thu, Jul 2, 2015 at 8:04 AM, Andre Przywara wrote: > Commit 2b42c9317db ("ahci: support LBA48 data reads for 2+TB drives") > introduced conditional code which triggers a warning when compiled > with DEBUG enabled: > > In file included from common/cmd_scsi.c:12:0: > common/cmd_scsi.c: In functio

[U-Boot] [PATCH] arm: adds the status info for odroid-xu3

2015-07-01 Thread Minkyu Kang
Adds the 'F:' entry for the board's defconfig Signed-off-by: Minkyu Kang --- board/samsung/smdk5420/MAINTAINERS |1 + 1 file changed, 1 insertion(+) diff --git a/board/samsung/smdk5420/MAINTAINERS b/board/samsung/smdk5420/MAINTAINERS index a26ea68..0361657 100644 --- a/board/samsung/smdk54

Re: [U-Boot] [PATCH 2/2] zynq: defconfig: Move CONFIG_OF_* to Kconfig

2015-07-01 Thread Masahiro Yamada
2015-07-02 2:08 GMT+09:00 Jagan Teki : > On 29 June 2015 at 14:33, Jagan Teki wrote: >> This commit moves: >> - CONFIG_OF_CONTROL >> - SPL_DISABLE_OF_CONTROL >> >> from zynq_*_defconfig files into arch/arm/Kconfig "config ARCH_ZYNQ" >> >> Signed-off-by: Jagan Teki >> Cc: Michal Simek >> Cc: Siva

Re: [U-Boot] [PATCH 08/11] x86: Move VGA option rom macros to Kconfig

2015-07-01 Thread Bin Meng
Hi Simon, On Wed, Jul 1, 2015 at 10:59 PM, Simon Glass wrote: > Hi Bin, > > On 1 July 2015 at 02:28, Bin Meng wrote: >> Move X86_OPTION_ROM_FILE & X86_OPTION_ROM_ADDR to arch/x86/Kconfig >> and rename them to VGA_BIOS_FILE & VGA_BIOS_ADDR which depend on >> HAVE_VGA_BIOS. The new names are consi

[U-Boot] [PATCH] scsi: fix compiler warning with DEBUG and 48bit LBAs

2015-07-01 Thread Andre Przywara
Commit 2b42c9317db ("ahci: support LBA48 data reads for 2+TB drives") introduced conditional code which triggers a warning when compiled with DEBUG enabled: In file included from common/cmd_scsi.c:12:0: common/cmd_scsi.c: In function 'scsi_read': include/common.h:109:4: warning: 'smallblks' may be

Re: [U-Boot] [PATCH 02/11] x86: bios: Synchronize stack between real and protected mode

2015-07-01 Thread Bin Meng
Hi Simon, On Wed, Jul 1, 2015 at 10:58 PM, Simon Glass wrote: > Hi, > > On 1 July 2015 at 02:27, Bin Meng wrote: >> From: Jian Luo >> >> PCI option rom may use different SS during its execution, so it is not >> safe to assume esp pointed to the same location in the protected mode. >> >> Signed-

Re: [U-Boot] [PATCH] ARM: enable CONFIG_USE_PRIVATE_LIBGCC by default (re-send to the correct address)

2015-07-01 Thread Daniel Schwierzeck
Am 02.07.2015 um 00:04 schrieb Albert ARIBAUD: > Hello Wolfgang, > > On Wed, 01 Jul 2015 23:50:17 +0200, Wolfgang Denk wrote: > >> Actually I think it is inherently wrong to enable >> CONFIG_USE_PRIVATE_LIBGCC by default. >> >> This option is intended as a workaround for broken toolchains, unt

[U-Boot] [PATCH 5/8] colibri_vf: remove spurious new line

2015-07-01 Thread Marcel Ziswiler
From: Marcel Ziswiler Remove spurious new line in configuration file. Signed-off-by: Marcel Ziswiler --- include/configs/colibri_vf.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/colibri_vf.h b/include/configs/colibri_vf.h index aff2810..2523f32 100644 --- a/include/confi

Re: [U-Boot] [PATCH] arm: mvebu: db-88f6820-gp: Add MAINTAINERS file

2015-07-01 Thread Luka Perkov
Hi Stefan, On Wed, Jul 01, 2015 at 05:38:05PM +0200, Stefan Roese wrote: > Signed-off-by: Stefan Roese > Cc: Luka Perkov > Cc: Albert Aribaud > --- > board/Marvell/db-88f6820-gp/MAINTAINERS | 6 ++ > 1 file changed, 6 insertions(+) > create mode 100644 board/Marvell/db-88f6820-gp/MAINTAIN

[U-Boot] [PATCH 8/8] tftp.c: fix CONFIG_TFTP_TSIZE for small files

2015-07-01 Thread Marcel Ziswiler
From: Max Krummenacher CONFIG_TFTP_TSIZE should limit a tftp downloads progress to 50 '#' chars. Make this work also for small files. If the file size is small, i.e. smaller than 2 tftp block sizes the number of '#' can get much larger. i.e. with a 1 byte file 65000 characters are printed, with

[U-Boot] [PATCH 6/8] image-fdt.c: store returned error value

2015-07-01 Thread Marcel Ziswiler
From: Max Krummenacher This fixes the following warning (and the runtime error reporting): ../common/image-fdt.c:491:4: warning: 'fdt_ret' may be used uninitialized in this function [-Wmaybe-uninitialized] Signed-off-by: Max Krummenacher Signed-off-by: Marcel Ziswiler --- common/image-fdt.c |

[U-Boot] [PATCH 3/8] generic-board: allow showing custom board info

2015-07-01 Thread Marcel Ziswiler
From: Marcel Ziswiler Allow showing custom board info from a checkboard() function being implemented if CONFIG_CUSTOM_BOARDINFO is specified. Signed-off-by: Marcel Ziswiler --- common/board_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/board_info.c b/common/

[U-Boot] [PATCH 0/8] assortment of fixes/enhancements

2015-07-01 Thread Marcel Ziswiler
From: Marcel Ziswiler This patch set is an assortment of fixes/enhancements distilled straight from our downstream integration work. Marcel Ziswiler (4): net: asix: fix operation without eeprom generic-board: allow showing custom board info colibri_vf: remove spurious new line mtd/nand/u

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

2015-07-01 Thread Marcel Ziswiler
From: Marcel Ziswiler 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 - stop address is not aligned -

[U-Boot] [PATCH 4/8] logos: add Toradex logo

2015-07-01 Thread Marcel Ziswiler
From: Stefan Agner Use the boot loader splash screen from WinCE which matches our wallpapers position wise. Although the logo is an 8-bit indexed BMP as well colours looked odd at first in U-Boot. After converting to full RGB palette and converting back to an indexed BMP using imagemagick the Log

[U-Boot] [PATCH 1/8] fs/fs.c: read up to EOF when len would read past EOF

2015-07-01 Thread Marcel Ziswiler
From: Max Krummenacher http://lists.denx.de/pipermail/u-boot/2012-September/134347.html allows for reading files in chunks from the shell. When this feature is used to read past the end of a file an error was returned instead of returning the bytes read up to the end of file. Thus the following

[U-Boot] [PATCH 2/8] net: asix: fix operation without eeprom

2015-07-01 Thread Marcel Ziswiler
From: Marcel Ziswiler This patch fixes operation of our on-board AX88772B chip without EEPROM but with a ethaddr coming from the regular U-Boot environment. This is a forward port of some remaining parts initially implemented by Antmicro. Signed-off-by: Marcel Ziswiler --- drivers/usb/eth/asix

[U-Boot] [PATCH] config: ti_omap5_common: Palmas power support in SPL

2015-07-01 Thread Paul Kocialkowski
Palmas power support is required for OMAP5 devices such as the OMAP5 uEVM, that need to e.g. enable MMC power at SPL stage. This is especially important when booting from a peripheral (such as USB, UART), where the bootrom will not enable power for the MMC device that will hold the main U-Boot. S

[U-Boot] [PATCH v4 8/8] omap5: Definitions for SYS_BOOT-based fallback boot device selection

2015-07-01 Thread Paul Kocialkowski
This introduces code to read the value of the SYS_BOOT pins on the OMAP5, as well as the memory-preferred scheme for the interpretation of each value. Signed-off-by: Paul Kocialkowski --- arch/arm/cpu/armv7/omap5/Makefile | 1 + arch/arm/cpu/armv7/omap5/boot.c | 46 +++

[U-Boot] [PATCH v4 7/8] omap4: Definitions for SYS_BOOT-based fallback boot device selection

2015-07-01 Thread Paul Kocialkowski
This introduces code to read the value of the SYS_BOOT pins on the OMAP4, as well as the memory-preferred scheme for the interpretation of each value. Signed-off-by: Paul Kocialkowski --- arch/arm/cpu/armv7/omap4/Makefile| 1 + arch/arm/cpu/armv7/omap4/boot.c | 60 +

[U-Boot] [PATCH v4 6/8] omap3: Definitions for SYS_BOOT-based fallback boot device selection

2015-07-01 Thread Paul Kocialkowski
This introduces code to read the value of the SYS_BOOT pins on the OMAP3, as well as the memory-preferred scheme for the interpretation of each value. Signed-off-by: Paul Kocialkowski --- arch/arm/cpu/armv7/omap3/Makefile | 1 + arch/arm/cpu/armv7/omap3/boot.c | 58 +++

[U-Boot] [PATCH v4 5/8] omap-common: SYS_BOOT-based fallback boot device selection for peripheral boot

2015-07-01 Thread Paul Kocialkowski
OMAP devices might boot from peripheral devices, such as UART or USB. When that happens, the U-Boot SPL tries to boot the next stage (complete U-Boot) from that peripheral device, but in most cases, this is not a valid boot device. This introduces a fallback option that reads the SYS_BOOT pins, th

[U-Boot] [PATCH v4 2/8] omap: SPL boot devices cleanup and completion

2015-07-01 Thread Paul Kocialkowski
This cleans up the SPL boot devices for omap platforms and introduces support for missing boot devices. Signed-off-by: Paul Kocialkowski --- arch/arm/include/asm/arch-am33xx/spl.h | 94 +++--- arch/arm/include/asm/arch-omap3/spl.h | 18 --- arch/arm/include/asm/a

[U-Boot] [PATCH v4 0/8] omap-common: Common boot code OMAP3 support and SYS_BOOT-based fallback boot device

2015-07-01 Thread Paul Kocialkowski
This looks good to me, please let me know if it can be merged before 2015.07 is released. Changes since v3: * Tested on the OMAP5 uEVM, adjusted SYS_BOOT interpretation. * Typo fixup, other minor cleanups. Changes since v2: * ifdef save_boot_params definition and save_omap_boot_params calls with

[U-Boot] [PATCH v4 1/8] omap-common: Common boot code OMAP3 support and cleanup

2015-07-01 Thread Paul Kocialkowski
This introduces OMAP3 support for the common omap boot code, as well as a major cleanup of the common omap boot code. First, the omap_boot_parameters structure becomes platform-specific, since its definition differs a bit across omap platforms. The offsets are removed as well since it is U-Boot's

[U-Boot] [PATCH v4 3/8] omap-common: Boot device define instead of hardcoded value

2015-07-01 Thread Paul Kocialkowski
Now that SPL boot devices are clearly defined, we can use BOOT_DEVICE_QSPI_4 instead of a hardcoded value. Signed-off-by: Paul Kocialkowski --- arch/arm/cpu/armv7/omap-common/boot-common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/armv7/omap-common/boot

[U-Boot] [PATCH v4 4/8] siemens-am33x-common: Hardcoded value instead of non-included define

2015-07-01 Thread Paul Kocialkowski
The config file for the siemens-am33x-common was using OMAP_I2C_STANDARD, which is defined in a header that is not included in the config header. In most cases, it was being included by the code using CONFIG_SYS_OMAP24_I2C_SPEED, but it might not always be the case. In particular, when introducing

Re: [U-Boot] [PATCH] ARM: enable CONFIG_USE_PRIVATE_LIBGCC by default (re-send to the correct address)

2015-07-01 Thread Albert ARIBAUD
Hello Wolfgang, On Wed, 01 Jul 2015 23:50:17 +0200, Wolfgang Denk wrote: > Actually I think it is inherently wrong to enable > CONFIG_USE_PRIVATE_LIBGCC by default. > > This option is intended as a workaround for broken toolchains, until > these get fixed. By enabling this by default, we miss

Re: [U-Boot] [PATCH] net/designware: revert MAC-address setup on init

2015-07-01 Thread Tom Rini
On Wed, Jul 01, 2015 at 10:26:21AM -0500, Joe Hershberger wrote: > Hi Alexey, > > On Wed, Jul 1, 2015 at 9:25 AM, Alexey Brodkin > wrote: > > Hi Tom, Joe, > > > > On Wed, 2015-07-01 at 22:22 +0800, Bin Meng wrote: > >> Hi Alexey, > >> > >> On Wed, Jul 1, 2015 at 9:59 PM, Alexey Brodkin > >> wrot

Re: [U-Boot] [PATCH] keystone2: switch to zImage boot on K2 devices

2015-07-01 Thread Tom Rini
On Wed, Jul 01, 2015 at 04:03:45PM -0400, Vitaly Andrianov wrote: > This patch switch default boot mode to use bootz command instead of > bootm as in OMAP devices. Also fix the address for fdt and kernel to > a higher address to support this boot. Also fix the image name > to remove the uImage/zIm

Re: [U-Boot] [PATCH] ARM: enable CONFIG_USE_PRIVATE_LIBGCC by default (re-send to the correct address)

2015-07-01 Thread Wolfgang Denk
Dear Albert, In message <20150701234229.705fe4ce@lilith> you wrote: > On Thu, 16 Apr 2015 11:21:44 +0200, Albert ARIBAUD > wrote: > > Hello Masahiro, > > > > Your patch clashes with Pavel's already committed > > break-if-private-libgcc-and-thumb, causing many boards to fail building. > > > > I

Re: [U-Boot] [PATCH] keystone2: Add support for bootz

2015-07-01 Thread Tom Rini
On Wed, Jul 01, 2015 at 04:03:44PM -0400, Vitaly Andrianov wrote: > From: Lokesh Vutla > > Adding support for zImage loading. > > Signed-off-by: Lokesh Vutla > Signed-off-by: Vitaly Andrianov Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature _

Re: [U-Boot] Pull request: u-boot-spi/master

2015-07-01 Thread Tom Rini
On Wed, Jul 01, 2015 at 11:03:26PM +0530, Jagan Teki wrote: > Hi Tom, > > Please pull these series for Kconfig/defconfig updates > for spi/sf subsystems. > > thanks! > Jagan. > > The following changes since commit 8ee81b7f9b675cb675119a998b04ca843d24ddcd: > > mtd, spi: Check if flash pointer

Re: [U-Boot] Pull request: u-boot-uniphier/master

2015-07-01 Thread Tom Rini
On Thu, Jul 02, 2015 at 01:16:59AM +0900, Masahiro Yamada wrote: > Hi Tom, > > Some small changes for UniPhier SoCs. > > > The following changes since commit 9c6b05cb724e18d1db3f9e1a75b2272572f06fbd: > > Prepare v2015.07-rc3 (2015-06-29 17:22:01 -0400) > > are available in the git repositor

Re: [U-Boot] Please pull changes for ARC

2015-07-01 Thread Tom Rini
On Wed, Jul 01, 2015 at 02:32:21PM +, Alexey Brodkin wrote: > Hi Tom, > > The following changes since commit > 9c6b05cb724e18d1db3f9e1a75b2272572f06fbd: > > Prepare v2015.07-rc3 (2015-06-29 17:22:01 -0400) > > are available in the git repository at: > > git://git.denx.de/u-boot-arc.git

Re: [U-Boot] [PATCH] ARM: enable CONFIG_USE_PRIVATE_LIBGCC by default (re-send to the correct address)

2015-07-01 Thread Albert ARIBAUD
On Thu, 16 Apr 2015 11:21:44 +0200, Albert ARIBAUD wrote: > Hello Masahiro, > > Your patch clashes with Pavel's already committed > break-if-private-libgcc-and-thumb, causing many boards to fail building. > > I am putting your patch in 'under review' state until I can have a look > at what happe

Re: [U-Boot] [PATCH] ARM: enable CONFIG_USE_PRIVATE_LIBGCC by default

2015-07-01 Thread Albert ARIBAUD
Note: this is when applying the patch above current u-boot-arm/master. Amicalement, -- Albert. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] ARM: enable CONFIG_USE_PRIVATE_LIBGCC by default

2015-07-01 Thread Albert ARIBAUD
On Thu, 16 Apr 2015 11:21:44 +0200, Albert ARIBAUD wrote: > Hello Masahiro, > > Your patch clashes with Pavel's already committed > break-if-private-libgcc-and-thumb, causing many boards to fail building. > > I am putting your patch in 'under review' state until I can have a look > at what happe

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

2015-07-01 Thread Simon Glass
Hi Andrew, On 1 July 2015 at 14:39, Andrew Bradford wrote: > Hi Bin, > > On 07/01 17:45, Bin Meng wrote: >> Hi Andrew, >> >> On Mon, Jun 29, 2015 at 11:10 PM, wrote: >> > From: Andrew Bradford >> > >> > Allow for configuration of FSP UPD from the device tree which will >> > override any settin

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

2015-07-01 Thread Andrew Bradford
Hi Bin, On 07/01 17:45, Bin Meng wrote: > Hi Andrew, > > On Mon, Jun 29, 2015 at 11:10 PM, wrote: > > From: Andrew Bradford > > > > Allow for configuration of FSP UPD from the device tree which will > > override any settings which the FSP was built with itself if the device > > tree settings e

[U-Boot] [PATCH] board: baltos - add mainteiner information

2015-07-01 Thread Yegor Yefremov
Signed-off-by: Yegor Yefremov --- board/vscom/baltos/MAINTAINERS | 6 ++ 1 file changed, 6 insertions(+) create mode 100644 board/vscom/baltos/MAINTAINERS diff --git a/board/vscom/baltos/MAINTAINERS b/board/vscom/baltos/MAINTAINERS new file mode 100644 index 000..e82acfe --- /dev/null +

[U-Boot] [PATCH] keystone2: Add support for bootz

2015-07-01 Thread Vitaly Andrianov
From: Lokesh Vutla Adding support for zImage loading. Signed-off-by: Lokesh Vutla Signed-off-by: Vitaly Andrianov --- include/configs/ks2_evm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/ks2_evm.h b/include/configs/ks2_evm.h index 26198db..f1517eb 100644 --- a/include

[U-Boot] [PATCH] keystone2: switch to zImage boot on K2 devices

2015-07-01 Thread Vitaly Andrianov
This patch switch default boot mode to use bootz command instead of bootm as in OMAP devices. Also fix the address for fdt and kernel to a higher address to support this boot. Also fix the image name to remove the uImage/zImage prefix and evm.bin suffix. Fix name of skern image to skern-k2g.bin Si

Re: [U-Boot] [PATCH v2 0/4] musb device model support series

2015-07-01 Thread Simon Glass
Hi Hans, On 1 July 2015 at 12:52, Hans de Goede wrote: > > Hi Simon, Marek, > > Here is a series with just the patches which needed work after my v1 > posting of this series. > > I've a rebased version of the entire series (some patches needed adjustment > after the recent Kconfig / defconfig cha

Re: [U-Boot] [PATCH v2] siemens,am33x: adjust mtd partition

2015-07-01 Thread Tom Rini
On Wed, Jul 01, 2015 at 05:57:39PM +0200, Samuel Egli wrote: > Use one mtd partition for rootfs and configuration by > means of ubi volumes and get rid of configuration partition. > We can use partition layout for both 256MB and 512MB flash. > > Signed-off-by: Samuel Egli > Cc: Heiko Schocher >

Re: [U-Boot] [PATCH] sunxi: Select a bunch of CONFIG_foo options from ARCH_SUNXI

2015-07-01 Thread Hans de Goede
Hi, On 30-06-15 22:46, Tom Rini wrote: On Tue, Jun 30, 2015 at 10:33:17PM +0200, Hans de Goede wrote: Select a bunch of CONFIG_foo options from ARCH_SUNXI, instead of having them set to y in every single sunxi defconfig. Signed-off-by: Hans de Goede Ug, sorry, I was waiting for some build

[U-Boot] [PATCH v2 3/4] dm: usb: Use device_unbind_children to clean up usb devs on stop

2015-07-01 Thread Hans de Goede
On an usb stop instead of leaving orphan usb devices behind simply remove them. The result of this commit is best seen in the output of "dm tree" after plugging out an usb hub with 2 devices plugges in and plugging in a keyb. instead, before this commit the output would be: usb [ + ]

[U-Boot] [PATCH v2 2/4] dm: usb: Document that mixing DM_DEVICE_REMOVE and DM_USB is a bad idea

2015-07-01 Thread Hans de Goede
Document that mixing DM_DEVICE_REMOVE and DM_USB is a bad idea, and also why this is a bad idea. Signed-off-by: Hans de Goede --- drivers/core/Kconfig | 4 1 file changed, 4 insertions(+) diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig index 2861b43..e40372d 100644 --- a/drivers/c

[U-Boot] [PATCH v2 4/4] dm: usb: Rename usb_find_child to usb_find_emul_child

2015-07-01 Thread Hans de Goede
Now that we unbind usb devices from usb_stop() usb_find_child() is only necessary to deal with emulated usb devices. Rename it to make this clear and add a #ifdef to make it a nop in other cases. Note the #ifdef turns usb_find_emul_child() into a nop, rather then not building it and adding anothe

[U-Boot] [PATCH v2 0/4] musb device model support series

2015-07-01 Thread Hans de Goede
Hi Simon, Marek, Here is a series with just the patches which needed work after my v1 posting of this series. I've a rebased version of the entire series (some patches needed adjustment after the recent Kconfig / defconfig changes) in my personal tree. Simon, AFAIK the plan is still for this to

[U-Boot] [PATCH v2 1/4] dm: Export device_remove_children / device_unbind_children

2015-07-01 Thread Hans de Goede
These functions are useful to remove all children from an usb bus before rescanning the bus. Give them a better name and export them. Signed-off-by: Hans de Goede --- Changes in v2: -Not only export but also rename the functions to device_remove_children / device_unbind_children --- drivers/cor

[U-Boot] Pull request: u-boot-spi/master

2015-07-01 Thread Jagan Teki
Hi Tom, Please pull these series for Kconfig/defconfig updates for spi/sf subsystems. thanks! Jagan. The following changes since commit 8ee81b7f9b675cb675119a998b04ca843d24ddcd: mtd, spi: Check if flash pointer is used (2015-06-30 00:40:11 +0530) are available in the git repository at: gi

Re: [U-Boot] [PATCH v2] spi: cf_qspi: fix clamp macro type check compilation warnings

2015-07-01 Thread Jagan Teki
On 30 June 2015 at 16:37, Angelo Dureghello wrote: > Hi Jagan, > > > On 29/06/2015 22:00, Jagan Teki wrote: >> >> On 22 June 2015 at 12:49, Angelo Dureghello wrote: >>> >>> >>> >>> On 22/06/2015 08:44, Jagan Teki wrote: On 22 June 2015 at 03:10, Angelo Dureghello wrote: >

Re: [U-Boot] [PATCH 00/20] spi/sf: Kconfig updates

2015-07-01 Thread Jagan Teki
On 27 June 2015 at 23:43, Jagan Teki wrote: > Kconfig additions for spi/sf related drivers. > > thanks! > Jagan. > > Jagan Teki (20): > sf: dataflash: Rename to CONFIG_SPI_FLASH_DATAFLASH > README: Add CONFIG_SPI_FLASH_DATAFLASH description > sf: Add Kconfig menu entry > common: Add CMD_SF

Re: [U-Boot] [PATCH v2 07/20] sf: Kconfig: Add SPI_FLASH_DATAFLASH entry

2015-07-01 Thread Jagan Teki
On 1 July 2015 at 21:38, Jagan Teki wrote: > Added SPI_FLASH_DATAFLASH entry on Kconfig with help description. > > data flash driver comes with good decription, hence moved the > same on to kconfig help decription. > > Signed-off-by: Jagan Teki > Reviewed-by: Simon Glass > Cc: Haikun Wang > ---

Re: [U-Boot] [PATCH 19/20] spi: Kconfig: Add TEGRA20_SFLASH entry

2015-07-01 Thread Jagan Teki
On 1 July 2015 at 01:18, Simon Glass wrote: > On 27 June 2015 at 12:14, Jagan Teki wrote: >> Added TEGRA20_SFLASH entry on Kconfig with help description. >> >> Signed-off-by: Jagan Teki >> Cc: Tom Warren >> Cc: Stephen Warren >> Cc: Simon Glass >> --- >> drivers/spi/Kconfig | 7 +++ >> 1

Re: [U-Boot] [PATCH 18/20] spi: Kconfig: Add TEGRA114_SPI entry

2015-07-01 Thread Jagan Teki
On 1 July 2015 at 01:18, Simon Glass wrote: > On 27 June 2015 at 12:14, Jagan Teki wrote: >> Added TEGRA114_SPI entry on Kconfig with help description. >> >> Signed-off-by: Jagan Teki >> Cc: Tom Warren >> Cc: Stephen Warren >> Cc: Simon Glass >> --- >> drivers/spi/Kconfig | 10 ++ >>

Re: [U-Boot] [PATCH 17/20] spi: Kconfig: Add ICH_SPI entry

2015-07-01 Thread Jagan Teki
On 1 July 2015 at 01:18, Simon Glass wrote: > On 27 June 2015 at 12:14, Jagan Teki wrote: >> Added ICH_SPI entry on Kconfig with help description. >> >> Signed-off-by: Jagan Teki >> Cc: Simon Glass >> --- >> drivers/spi/Kconfig | 7 +++ >> 1 file changed, 7 insertions(+) >> > > Reviewed-by

Re: [U-Boot] [PATCH 20/20] spi: Kconfig: Add TEGRA20_SLINK entry

2015-07-01 Thread Jagan Teki
On 1 July 2015 at 01:18, Simon Glass wrote: > On 27 June 2015 at 12:14, Jagan Teki wrote: >> Added TEGRA20_SLINK entry on Kconfig with help description. >> >> Signed-off-by: Jagan Teki >> Cc: Tom Warren >> Cc: Stephen Warren >> Cc: Simon Glass >> --- >> drivers/spi/Kconfig | 7 +++ >> 1

Re: [U-Boot] [PATCH 07/20] sf: Kconfig: Add SPI_FLASH_DATAFLASH entry

2015-07-01 Thread Jagan Teki
On 1 July 2015 at 01:18, Simon Glass wrote: > Hi Jagan, > > On 27 June 2015 at 12:13, Jagan Teki wrote: >> Added SPI_FLASH_DATAFLASH entry on Kconfig with help description >> >> Signed-off-by: Jagan Teki >> Cc: Haikun Wang >> Cc: Simon Glass >> --- >> drivers/mtd/spi/Kconfig | 8 >>

Re: [U-Boot] [PATCH 16/20] spi: Kconfig: Add EXYNOS_SPI entry

2015-07-01 Thread Jagan Teki
On 1 July 2015 at 01:18, Simon Glass wrote: > On 27 June 2015 at 12:13, Jagan Teki wrote: >> Added EXYNOS_SPI entry on Kconfig with help description. >> >> Signed-off-by: Jagan Teki >> Cc: Simon Glass >> --- >> drivers/spi/Kconfig | 7 +++ >> 1 file changed, 7 insertions(+) > > Reviewed-by

Re: [U-Boot] [PATCH 2/2] zynq: defconfig: Move CONFIG_OF_* to Kconfig

2015-07-01 Thread Jagan Teki
On 29 June 2015 at 14:33, Jagan Teki wrote: > This commit moves: > - CONFIG_OF_CONTROL > - SPL_DISABLE_OF_CONTROL > > from zynq_*_defconfig files into arch/arm/Kconfig "config ARCH_ZYNQ" > > Signed-off-by: Jagan Teki > Cc: Michal Simek > Cc: Siva Durga Prasad Paladugu > Cc: Masahiro Yamada > -

Re: [U-Boot] [PATCH 1/2] defconfig: Add CONFIG_OF_CONTROL in zynq_picozed

2015-07-01 Thread Jagan Teki
On 29 June 2015 at 14:33, Jagan Teki wrote: > Enable FDT support for zynq_picozed board. > > Signed-off-by: Jagan Teki > Cc: Michal Simek > Cc: Siva Durga Prasad Paladugu > --- > configs/zynq_picozed_defconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/configs/zynq_picozed_defcon

Re: [U-Boot] ARM status or maintainer info currently missing

2015-07-01 Thread Marek Vasut
On Wednesday, July 01, 2015 at 03:31:01 PM, Pavel Machek wrote: > Hi! > > > WARNING: no status info for 'socfpga_arria5' > > WARNING: no maintainers for 'socfpga_arria5' > > I guess Marek or Dinh would be willing to mainain Arria 5. Yep, I have an AV board. Best regards, Marek Vasut ___

Re: [U-Boot] [PATCH 0/5] sf: defconfig/kconfig updates

2015-07-01 Thread Jagan Teki
On 30 June 2015 at 00:59, Jagan Teki wrote: > defconfig/kconfig changes related to sf. > > Jagan Teki (5): > README: Remove CONFIG_SPI_FLASH_MTD help text > defconfig: Move CONFIG_SPI_FLASH_BAR from configs > sf: Kconfig: Add SPI_FLASH_BAR entry > README: Remove CONFIG_SPI_FLASH_BAR help t

Re: [U-Boot] [PATCH v2 05/20] sf: Kconfig: Update SPI_FLASH entry

2015-07-01 Thread Jagan Teki
On 29 June 2015 at 01:02, Jagan Teki wrote: > Updated SPI_FLASH entry on Kconfig with depends on > and along with config help description. > > Signed-off-by: Jagan Teki > --- > Changes for v2: > - Removed "depends on CMD_SF" as it's not in defconfig > > drivers/mtd/spi/Kconfig | 18 +

Re: [U-Boot] [PATCH v4 14/16] dm: spi: xilinx_spi: Convert to driver model

2015-07-01 Thread Jagan Teki
On 29 June 2015 at 13:20, Jagan Teki wrote: > This converts the xilinx spi driver to use the driver model. > > Signed-off-by: Jagan Teki > Acked-by: Simon Glass > Cc: Michal Simek > --- > Changes for v4: > - Removed cs_info ops, as it need to proper testing to verify. > > Changes for v3: > - Ge

Re: [U-Boot] [PATCH v3 00/16] spi/sf: Cleansup and driver model

2015-07-01 Thread Jagan Teki
On 27 June 2015 at 00:57, Jagan Teki wrote: > On 27 June 2015 at 00:51, Jagan Teki wrote: >> Few minor updates and tested on zynq board for driver model zynq_spi >> driver. >> >> Changes for v3: >> - Remove spi_chip_select() from probe and get cs from spi_xfer >> - Add spi1 in dts

Re: [U-Boot] [PATCH RESEND 0/7] spi: cadence_qspi: optimize & fix indirect rd-writes

2015-07-01 Thread Vikas MANOCHA
Hi Stefan, > -Original Message- > From: Vikas MANOCHA > Sent: Monday, June 22, 2015 4:31 PM > To: 'Stefan Roese' > Cc: u-boot@lists.denx.de; grmo...@opensource.altera.com; > dingu...@opensource.altera.com; jt...@openedev.com > Subject: RE: [PATCH RESEND 0/7] spi: cadence_qspi: optimize & f

[U-Boot] Pull request: u-boot-uniphier/master

2015-07-01 Thread Masahiro Yamada
Hi Tom, Some small changes for UniPhier SoCs. The following changes since commit 9c6b05cb724e18d1db3f9e1a75b2272572f06fbd: Prepare v2015.07-rc3 (2015-06-29 17:22:01 -0400) are available in the git repository at: git://git.denx.de/u-boot-uniphier.git master for you to fetch changes up to

Re: [U-Boot] [PATCH] ARM: UniPhier: add IDs for PH1-Pro5, ProXstream2, PH1-LD6b

2015-07-01 Thread Masahiro Yamada
2015-06-30 18:43 GMT+09:00 Masahiro Yamada : > This prepares for new SoCs support. > > Signed-off-by: Masahiro Yamada > --- Applied to u-boot-uniphier/master. -- Best Regards Masahiro Yamada ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.

  1   2   >