Re: [U-Boot] [PATCH] arch: ifc: update the IFC IP input clock

2016-09-09 Thread Prabhakar Kushwaha
> -Original Message- > From: Scott Wood > Sent: Friday, September 09, 2016 7:30 AM > To: Prabhakar Kushwaha ; york sun > ; u-boot@lists.denx.de > Subject: Re: [PATCH] arch: ifc: update the IFC IP input clock > > On 09/08/2016 08:46 PM, Prabhakar Kushwaha wrote: > > > >> -Original Mess

Re: [U-Boot] [PATCH v7 01/12] clk: Use dummy clk_get_by_* functions when CONFIG_CLK is disabled

2016-09-09 Thread Paul Burton
On 09/09/16 04:15, Masahiro Yamada wrote: > 2016-09-08 15:47 GMT+09:00 Paul Burton : >> The implementations of clk_get_by_index & clk_get_by_name are only >> available when CONFIG_CLK is enabled. > > Unless I am missing something, > I think this statement also applies to other clk API functions >

[U-Boot] [RFC v2] bootm: fix passing argc to standalone apps

2016-09-09 Thread Zubair Lutfullah Kakakhel
This bug appears in b6396403 which makes u-boot unable to pass arguments via bootm to a standalone application without this patch. Steps to reproduce. Compile a u-boot. Use mkimage to package the standalone hello_world.bin file. e.g. For the MIPS Boston platform mkimage -n "hello" -A mips -O u-

[U-Boot] [PATCH v2 3/4] disk: part: refactor generic name creation for DOS and ISO

2016-09-09 Thread Petr Kulhavy
In both DOS and ISO partition tables the same code to create partition name like "hda1" was repeated. Code moved to into a new function part_set_generic_name() in part.c and optimized. Added recognition of MMC and SD types, name is like "mmcsda1". Signed-off-by: Petr Kulhavy Reviewed-by: Tom Ri

[U-Boot] [PATCH v2 1/4] disk: part: implement generic function part_get_info_by_name()

2016-09-09 Thread Petr Kulhavy
So far partition search by name has been supported only on the EFI partition table. This patch extends the search to all partition tables. Rename part_get_info_efi_by_name() to part_get_info_by_name(), move it from part_efi.c into part.c and make it a generic function which traverses all part driv

[U-Boot] [PATCH v2 4/4] fastboot: move FASTBOOT_FLASH options into Kconfig

2016-09-09 Thread Petr Kulhavy
Move FASTBOOT_MBR_NAME and FASTBOOT_GPT_NAME into Kconfig. Add dependency on the FASTBOOT_FLASH setting (also for FASTBOOT_MBR_NAME). Remove the now redundant GPT_ENTRY_NAME. Signed-off-by: Petr Kulhavy --- v2: initial README | 2 +- cmd/fastboot/Kconfig | 24

[U-Boot] [PATCH v2 0/4] Fastboot MBR and generic partition support

2016-09-09 Thread Petr Kulhavy
This set extends the Fastboot implementation from GPT-only to any partition support. Further it adds a special target "mbr" (configurable) to write the DOS MBR. Version 2: Add a fourth patch into the set to move CONFIG_FASTBOOT_GPT_NAME and CONFIG_FASTBOOT_MBR_NAME into cmd/fastboot/Kconfig Pet

[U-Boot] [PATCH v2 2/4] fastboot: add support for writing MBR

2016-09-09 Thread Petr Kulhavy
Add special target "mbr" (otherwise configurable via CONFIG_FASTBOOT_MBR_NAME) to write MBR partition table. Partitions are now searched using the generic function which finds any partiiton by name. For MBR the partition names hda1, sda1, etc. are used. Signed-off-by: Petr Kulhavy Reviewed-by: To

[U-Boot] [PATCH v2] mmc: s5p_sdhci: support the Driver model for Exynos

2016-09-09 Thread Jaehoon Chung
This patch support the driver model for s5p_sdhci controller. To support the legacy model, maintained the existing code. Note: If use the Driver Model, it needs to modify the device-tree. In future, will update the Device-tree and enable the configuratioin. (CONFIG_BLK, CONFIG_DM_MMC and CONFING_D

[U-Boot] [PATCH v6 1/2] armv8: Support loading 32-bit OS in AArch32 execution state

2016-09-09 Thread Alison Wang
To support loading a 32-bit OS, the execution state will change from AArch64 to AArch32 when jumping to kernel. The architecture information will be got through checking FIT image, then U-Boot will load 32-bit OS or 64-bit OS automatically. Signed-off-by: Ebony Zhu Signed-off-by: Alison Wang Si

[U-Boot] [PATCH v6 0/2] armv8: Support loading 32-bit OS in AArch32 execution state

2016-09-09 Thread Alison Wang
This series is to support loading a 32-bit OS, the execution state will change from AArch64 to AArch32 when jumping to kernel. The architecture information will be got through checking FIT image, then U-Boot will load 32-bit OS or 64-bit OS automatically. Spin-table method is used for secondary

[U-Boot] [PATCH] arm: exynos: Use the generic lowlevel_init instead of the specific one

2016-09-09 Thread Alison Wang
This patch is to use the the generic lowlevel_init instead of the specific one. Signed-off-by: Alison Wang --- arch/arm/mach-exynos/soc.c | 8 1 file changed, 8 deletions(-) diff --git a/arch/arm/mach-exynos/soc.c b/arch/arm/mach-exynos/soc.c index f9c7468..737a8dd 100644 --- a/arch/ar

Re: [U-Boot] [PATCH 1/3] sunxi: Sync h3-orangepi dts files with kernel

2016-09-09 Thread Hans de Goede
Hi, On 08-09-16 13:58, Ian Campbell wrote: On Sat, 2016-09-03 at 13:12 +0200, Hans de Goede wrote: This adds an emac node to the orangepi-2 dts (not yet merged upstream, but in u-boot we already have emac support); fixes the alphetically sorting of nodes in sun8i-h3-orangepi-plus.dts and disabl

[U-Boot] [PATCH] cmd: usb: run 'usb start' when USB is stopped

2016-09-09 Thread Jaehoon Chung
If USB is stopped, just run 'usb start' instead of printing message. Then user didn't consider whether usb is started or stopped. Signed-off-by: Jaehoon Chung --- cmd/usb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/usb.c b/cmd/usb.c index 455127c..4970851 100644

[U-Boot] [PATCH] search.h: Numerous grammatical fixes, comment updates

2016-09-09 Thread Robert P. J. Day
Tweaks (no functional changes) to include/search.h, including: * use standard multiple inclusion check * fix spelling mistakes * have comments match actual names in function prototypes * remove obsolete reference to "do_apply" * replace "hashing table" with "hash table" Signed-off-by: Rober

[U-Boot] [PATCH v6 2/2] armv8: fsl-layerscape: SMP support for loading 32-bit OS

2016-09-09 Thread Alison Wang
Spin-table method is used for secondary cores to load 32-bit OS. The architecture information will be got through checking FIT image and saved in the os_arch element of spin-table, then the secondary cores will check os_arch and jump to 32-bit OS or 64-bit OS automatically. Signed-off-by: Alison W

Re: [U-Boot] "_ENTRY" is both a struct and a typedef?

2016-09-09 Thread Måns Rullgård
writes: >> "Robert" == Robert P J Day writes: > > Robert> from lib/hashtable.c: > > Robert> typedef struct _ENTRY { int used; ENTRY entry; } _ENTRY; > > Robert> ok, that's just kind of creepy ... defining a typedef over top > Robert> of a struct of the same name. does anyone else find th

[U-Boot] [PATCH 1/1] cmd: Rework disk.c usage

2016-09-09 Thread Tom Rini
We only need the function found in cmd/disk.c when we have IDE, SCSI or USB_STORAGE enabled. While the first two are easy to get right, in the 3rd case we assume that the set of cases where we do have USB and do not enable USB_STORAGE are small enough that we can take the small bloat of un-discard

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

2016-09-09 Thread Fabio Estevam
Hi Tom, On Wed, Sep 7, 2016 at 2:57 PM, Tom Rini wrote: > Applied to u-boot/master, thanks! Still don't appear at http://git.denx.de/?p=u-boot.git;a=summary ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] pedantry: is a FIT image really an enhanced type of uImage?

2016-09-09 Thread Robert P. J. Day
a matter of picky terminology, but i'm reading the docs on FIT images, and in doc/uImage.FIT/source_file_format.txt, early on, i read: "U-Boot new uImage source file format (bindings definition) ... This document defines new uImage structure ..." and so on and so on ... a number of refer

[U-Boot] [RFC PATCH] common, kconfig: move VERSION_VARIABLE to Kconfig

2016-09-09 Thread Heiko Schocher
move VERSION_VARIABLE from board config file into a Kconfig option. Signed-off-by: Heiko Schocher --- Tested with tbot: http://lists.denx.de/pipermail/u-boot/2016-June/258119.html result from first run: Boards : 1193 compile err : 60 not checked : 1 U-Boot good : 1129 bad 3 SPL good: 4

[U-Boot] [PATCH] armv8/fsl-layerscape: print SoC revsion number

2016-09-09 Thread Wenbin song
The exact SoC revsion number can be recognized from U-Boot log. Signed-off-by: Wenbin Song Signed-off-by: Mingkai Hu --- arch/arm/cpu/armv8/fsl-layerscape/cpu.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c b/arch/arm/cpu/armv8/fsl-layerscape/cpu

[U-Boot] Sdcard boot for a generic allwinner q8 clone A33 tablet not work.

2016-09-09 Thread far5893
Hi, i'm trying to boot a classic A33 q8 clone with uboot copied in sdcard but nothing happen (not backlight on) dd if=u-boot-sunxi-with-spl.bin of=/dev/sdb bs=1024 seek=8 on the partitioned sdcard for reference if i compile with configuration for A13 based tablet on A13 based tablet it wor

Re: [U-Boot] Sdcard boot for a generic allwinner q8 clone A33 tablet not work.

2016-09-09 Thread Hans de Goede
Hi, On 09-09-16 14:10, far5893 wrote: Hi, i'm trying to boot a classic A33 q8 clone with uboot copied in sdcard but nothing happen (not backlight on) dd if=u-boot-sunxi-with-spl.bin of=/dev/sdb bs=1024 seek=8 on the partitioned sdcard for reference In my experience the A33 can be a bit picky

[U-Boot] [PATCH v2 00/10] MIPS L2 cache support

2016-09-09 Thread Paul Burton
This series introduces support for initialising & maintaining L2 caches on MIPS systems. This allows U-Boot to function correctly on systems where such caches are present, whereas without performing L2 maintenance it is likely to fail with cache coherence issues when writing code or performing DMA

[U-Boot] [PATCH] rockchip: miniarm: remove eMMC support

2016-09-09 Thread Ziyuan Xu
The latest rk3288-miniarm board doesn't have eMMC device, so remove it. Signed-off-by: Ziyuan Xu --- arch/arm/dts/rk3288-miniarm.dtsi | 12 board/rockchip/miniarm_rk3288/miniarm-rk3288.c | 8 include/configs/miniarm_rk3288.h | 7 ++- 3 fil

[U-Boot] [PATCH v2 01/10] board_f: Add a mach_cpu_init callback

2016-09-09 Thread Paul Burton
Currently we have a mismash of architectures which use arch_cpu_init from architecture-wide code (arc, avr32, blackfin, mips, nios2, xtensa) and architectures which use arch_cpu_init from machine/SoC level code (arm, x86). In order to clean this mess up & allow for both use cases, introduce a new

[U-Boot] [PATCH v2 02/10] MIPS: ath79: Use mach_cpu_init instead of arch_cpu_init

2016-09-09 Thread Paul Burton
In order to prepare for MIPS arch code making use of arch_cpu_init in a later patch, stop using it from ath79 SoC code & instead use the new mach_cpu_init which is provided for this purpose. Signed-off-by: Paul Burton --- Changes in v2: - Rebase atop changes in patch 1 arch/mips/mach-ath79/cp

[U-Boot] [PATCH v2 03/10] MIPS: Probe cache line sizes once during boot

2016-09-09 Thread Paul Burton
Rather than probing the cache line sizes on every call of any cache maintenance function, probe them once during boot & store the values in the global data structure for later use. This will reduce the overhead of the cache maintenance functions, which isn't a big deal yet but becomes more importan

[U-Boot] [PATCH v2 05/10] MIPS: Preserve Config implementation-defined bits

2016-09-09 Thread Paul Burton
The coprocessor 0 Config register includes 9 implementation defined bits, which in some processors do things like enable write combining or other functionality. We ought not to wipe them to 0 during boot. Rather than doing so, preserve their value & only clear the bits standardised by the MIPS arch

[U-Boot] [PATCH v2 04/10] MIPS: Enable use of the instruction cache earlier

2016-09-09 Thread Paul Burton
Enable use of the instruction cache immediately after it has been initialised. This will only take effect if U-Boot was linked to run from kseg0 rather than kseg1, but when this is the case the data cache initialisation code will run cached & thus significantly faster. Signed-off-by: Paul Burton

[U-Boot] [PATCH v2 07/10] MIPS: Define register names for cache init

2016-09-09 Thread Paul Burton
Define names for registers holding cache sizes throughout mips_cache_reset, in order to make the code easier to read & allow for changing register assignments more easily. Signed-off-by: Paul Burton --- Changes in v2: None arch/mips/lib/cache_init.S | 42 +++

[U-Boot] [PATCH v2 08/10] MIPS: Map CM Global Control Registers

2016-09-09 Thread Paul Burton
Map the Global Control Registers (GCRs) provided by the MIPS Coherence Manager (CM) in preparation for using some of them in later patches. Signed-off-by: Paul Burton --- Changes in v2: None arch/mips/Kconfig | 16 arch/mips/cpu/Makefile | 2 ++ arch/mips/cpu/cm_

[U-Boot] [PATCH v2 09/10] MIPS: L2 cache support

2016-09-09 Thread Paul Burton
This patch adds support for initialising & maintaining L2 caches on MIPS systems. The L2 cache configuration may be advertised through either coprocessor 0 or the MIPS Coherence Manager depending upon the system, and support for both is included. If the L2 can be bypassed then we bypass it early i

[U-Boot] [PATCH v2 10/10] MIPS: Malta: Enable CM & L2 support

2016-09-09 Thread Paul Burton
Enable support for the MIPS Coherence Manager & L2 caches on the MIPS Malta board, removing the need for us to attempt to bypass the L2 during boot (which would fail with recent CPUs that expose L2 config via the CM anyway). Signed-off-by: Paul Burton --- Changes in v2: None arch/mips/Kconfig

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

2016-09-09 Thread Tom Rini
On Fri, Sep 09, 2016 at 09:34:23AM -0300, Fabio Estevam wrote: > Hi Tom, > > On Wed, Sep 7, 2016 at 2:57 PM, Tom Rini wrote: > > > Applied to u-boot/master, thanks! > > Still don't appear at http://git.denx.de/?p=u-boot.git;a=summary Gah. Git annoys me every once in a while, fixed now. Than

[U-Boot] [PATCH v2 06/10] MIPS: If we don't need DDR for cache init, init cache first

2016-09-09 Thread Paul Burton
On systems where cache initialisation doesn't require zeroed memory (ie. systems where CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD is not defined) perform cache initialisation prior to lowlevel_init & DDR initialisation. This allows for DDR initialisation code to run cached & thus significantly faster. Si

Re: [U-Boot] [PATCH 2/2] configs: Migrate CONFIG_USB_STORAGE

2016-09-09 Thread Tom Rini
On Fri, Sep 09, 2016 at 01:52:34PM +0900, Masahiro Yamada wrote: [snip] > BTW, > > $ git grep CONFIG_USB=y configs/*_defconfig | wc > 669 669 30938 > $ git grep CONFIG_USB_STORAGE=y configs/*_defconfig | wc > 650 650 35349 > > > With this series, we will have 669 boards with

Re: [U-Boot] [PATCH v2 4/4] fastboot: move FASTBOOT_FLASH options into Kconfig

2016-09-09 Thread Tom Rini
On Fri, Sep 09, 2016 at 10:27:18AM +0200, Petr Kulhavy wrote: > Move FASTBOOT_MBR_NAME and FASTBOOT_GPT_NAME into Kconfig. > Add dependency on the FASTBOOT_FLASH setting (also for FASTBOOT_MBR_NAME). > Remove the now redundant GPT_ENTRY_NAME. > > Signed-off-by: Petr Kulhavy Reviewed-by: Tom Rin

Re: [U-Boot] [RFC PATCH] common, kconfig: move VERSION_VARIABLE to Kconfig

2016-09-09 Thread Tom Rini
On Fri, Sep 09, 2016 at 08:12:49AM +0200, Heiko Schocher wrote: [snip] > One remark: > define CONFIG_SPL_NET_VCI_STRING="..." is removed from > some defconfigs, but not again added to the defconfig. > This is for all boards, which use this define ... but as > the resulting images are not changes,

Re: [U-Boot] [PATCH v1 2/5] simple panel: fix spelling of debug message

2016-09-09 Thread Anatolij Gustschin
On Fri, 9 Sep 2016 18:10:38 +0200 Marcel Ziswiler marcel.ziswi...@toradex.com wrote: > Fix spelling of debug message from cnnot to cannot. > > Signed-off-by: Marcel Ziswiler Acked-by: Anatolij Gustschin ___ U-Boot mailing list U-Boot@lists.denx.de h

Re: [U-Boot] [PATCH 1/2] configs: Resync with savedefconfig

2016-09-09 Thread Stephen Warren
On 09/08/2016 07:19 PM, Tom Rini wrote: Signed-off-by: Tom Rini diff --git a/configs/harmony_defconfig b/configs/harmony_defconfig -CONFIG_USE_PRIVATE_LIBGCC=y I assume that's because =y is the default for that now? diff --git a/configs/p2771--000_defconfig b/configs/p2771--000

[U-Boot] question about bootstage and timer_init in init_sequence_f

2016-09-09 Thread Patrick Delaunay
Hi, I am trying to activate bootstage on ARMV7 architecture. My platform use the generic armv7 timer defined in file ./arch/arm/cpu/armv7m/timer.c: For me the get_timer function should not used before timer_init (which initialize gd->arch.timer_rate_hz) at least for the ARMV7 timer. But in the i

Re: [U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-09-09 Thread Brüns , Stefan
On Sonntag, 14. August 2016 00:57:38 CEST Benoît Thébaudeau wrote: > Hi, > > On Tue, Aug 2, 2016 at 9:35 PM, Benoît Thébaudeau > > wrote: > > On Tue, Aug 2, 2016 at 8:53 PM, Stephen Warren wrote: > >> On 07/28/2016 12:11 AM, Tien Fong Chee wrote: > >>> Single 64KB get_contents_vfatname_block g

Re: [U-Boot] [PATCH] ext4: fix possible crash on directory traversal, ignore deleted entries

2016-09-09 Thread Brüns , Stefan
On Freitag, 2. September 2016 10:53:08 CEST you wrote: > > > > Adding this to the current test script is somewhat problematic. The test > > runs all tests for fat and ext4, so each testcase should be file system > > agnostic. Unfortunately fat and ext4 (at least as implemented in U-Boot) > > have

Re: [U-Boot] [Patch v6 8/9] armv8: ls1046ardb: Add LS1046ARDB board support

2016-09-09 Thread york sun
On 09/08/2016 05:07 PM, Prabhakar Kushwaha wrote: >>> UART: supports two UARTs up to 115200 bps for console >> >> The board specification doesn't belong to commit message. Instead, you >> can add what features have been supported, such as boot source, any >> important commands, special care to p

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

2016-09-09 Thread Joe Hershberger
Hi Tom, A few last minute fixes. Turns out I broke NFS. The following changes since commit 16f416661ec5ffa46b3f879a0b83907bbec13714: Merge branch 'master' of git://www.denx.de/git/u-boot-imx (2016-09-09 09:45:32 -0400) are available in the git repository at: git://git.denx.de/u-boot-net.

Re: [U-Boot] net: asix: Fix AX88772B when used with DriverModel

2016-09-09 Thread Joe Hershberger
Hi Joshua, https://patchwork.ozlabs.org/patch/666191/ was applied to u-boot-net.git. Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/2] configs: Resync with savedefconfig

2016-09-09 Thread Tom Rini
On Fri, Sep 09, 2016 at 10:21:45AM -0600, Stephen Warren wrote: > On 09/08/2016 07:19 PM, Tom Rini wrote: > >Signed-off-by: Tom Rini /bin/bash: ess: command not found > >diff --git a/configs/harmony_defconfig b/configs/harmony_defconfig > > >-CONFIG_USE_PRIVATE_LIBGCC=y > > I assume that's becau

[U-Boot] [PATCH v1 4/5] colibri_t20: fix usb operation and controller order

2016-09-09 Thread Marcel Ziswiler
Without this patch the following error will be shown: Colibri T20 # usb start starting USB... No controllers found This patch fixes USB operation and also the controller order as the CI UDC driver may only be instantiated on the first aka OTG port. Signed-off-by: Marcel Ziswiler --- arch/arm/

[U-Boot] [PATCH v1 3/5] colibri_t20: fix display configuration

2016-09-09 Thread Marcel Ziswiler
Without this patch the following error will be shown: stdio_add_devices: Video device failed (ret=-22) As commit ec5507707a1d1e84056a6c864338f95f6118d3ca (video: tegra: Move to using simple-panel and pwm-backlight) states the Colibri T20 needs updating too which this patch finally attempts doing.

[U-Boot] [PATCH v1 0/5] various fixes mainly for colibri_t20

2016-09-09 Thread Marcel Ziswiler
This series addresses various issues as seen on Colibri T20. Please note that for successful Ethernet operation not only on Colibri T20 but also on Colibri T30 the following patch will still need applying as well: [PATCH] net: asix: Fix ASIX 88772B with driver model https://www.mail-archive.com/u

[U-Boot] [PATCH v1 1/5] tegra: usb gadget: fix ci udc operation if not hostpc capable

2016-09-09 Thread Marcel Ziswiler
The Tegra 2 aka T20 is not host PC capable. Therefore move the define CONFIG_CI_UDC_HAS_HOSTPC from the generic tegra-common-usb-gadget.h header file into resp. SoC type specific ones. Signed-off-by: Marcel Ziswiler --- include/configs/tegra-common-usb-gadget.h | 1 - include/configs/tegra114-c

[U-Boot] [PATCH v1 5/5] colibri_t20: enable dfu also for nand

2016-09-09 Thread Marcel Ziswiler
Enable USB gadget DFU functionality for NAND as well. Signed-off-by: Marcel Ziswiler --- include/configs/colibri_t20.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/configs/colibri_t20.h b/include/configs/colibri_t20.h index c15f0cb..33e1ef5 100644 --- a/include/configs/col

[U-Boot] [PATCH v1 2/5] simple panel: fix spelling of debug message

2016-09-09 Thread Marcel Ziswiler
Fix spelling of debug message from cnnot to cannot. Signed-off-by: Marcel Ziswiler --- drivers/video/simple_panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/simple_panel.c b/drivers/video/simple_panel.c index b2fe345..baa95f6 100644 --- a/drivers/video/s

Re: [U-Boot] [PATCH 1/2] configs: Resync with savedefconfig

2016-09-09 Thread Stephen Warren
On 09/09/2016 01:02 PM, Tom Rini wrote: On Fri, Sep 09, 2016 at 10:21:45AM -0600, Stephen Warren wrote: On 09/08/2016 07:19 PM, Tom Rini wrote: Signed-off-by: Tom Rini /bin/bash: ess: command not found diff --git a/configs/harmony_defconfig b/configs/harmony_defconfig -CONFIG_USE_PRIVATE_

Re: [U-Boot] [PATCH 1/2] configs: Resync with savedefconfig

2016-09-09 Thread Tom Rini
On Fri, Sep 09, 2016 at 01:09:43PM -0600, Stephen Warren wrote: > On 09/09/2016 01:02 PM, Tom Rini wrote: > >On Fri, Sep 09, 2016 at 10:21:45AM -0600, Stephen Warren wrote: > >>On 09/08/2016 07:19 PM, Tom Rini wrote: > >>>Signed-off-by: Tom Rini > >/bin/bash: ess: command not found > >>>diff --git

Re: [U-Boot] [PATCH 1/2] configs: Resync with savedefconfig

2016-09-09 Thread Tom Rini
On Thu, Sep 08, 2016 at 09:19:04PM -0400, Tom Rini wrote: > Signed-off-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/list

Re: [U-Boot] [PATCH 2/2] configs: Migrate CONFIG_USB_STORAGE

2016-09-09 Thread Tom Rini
On Thu, Sep 08, 2016 at 09:19:05PM -0400, Tom Rini wrote: > In some cases we were missing CONFIG_USB=y so enable that when needed. > > Signed-off-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature __

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

2016-09-09 Thread Tom Rini
On Fri, Sep 09, 2016 at 01:52:41PM -0500, Joe Hershberger wrote: > Hi Tom, > > A few last minute fixes. Turns out I broke NFS. > > The following changes since commit 16f416661ec5ffa46b3f879a0b83907bbec13714: > > Merge branch 'master' of git://www.denx.de/git/u-boot-imx (2016-09-09 > 09:45:32

Re: [U-Boot] [PATCH 1/1] cmd: Rework disk.c usage

2016-09-09 Thread Tom Rini
On Fri, Sep 09, 2016 at 07:26:45AM -0400, Tom Rini wrote: > We only need the function found in cmd/disk.c when we have IDE, SCSI or > USB_STORAGE enabled. While the first two are easy to get right, in the > 3rd case we assume that the set of cases where we do have USB and do not > enable USB_STOR

Re: [U-Boot] [PATCH 1/2] configs: Resync with savedefconfig

2016-09-09 Thread Stephen Warren
On 09/09/2016 01:11 PM, Tom Rini wrote: On Fri, Sep 09, 2016 at 01:09:43PM -0600, Stephen Warren wrote: On 09/09/2016 01:02 PM, Tom Rini wrote: On Fri, Sep 09, 2016 at 10:21:45AM -0600, Stephen Warren wrote: On 09/08/2016 07:19 PM, Tom Rini wrote: Signed-off-by: Tom Rini /bin/bash: ess: com

[U-Boot] [PATCH] Revert "net: asix: Fix AX88772B when used with DriverModel"

2016-09-09 Thread Marcel Ziswiler
As discussed before rather than Joshua's patch the one from Alban should long since have been applied: https://www.mail-archive.com/u-boot@lists.denx.de/msg221455.html This reverts commit 41d1258aceb45b45f9e68f67a9c40f0afbc09dc9. Signed-off-by: Marcel Ziswiler --- drivers/usb/eth/asix.c | 5

Re: [U-Boot] [PATCH 1/2] configs: Resync with savedefconfig

2016-09-09 Thread Tom Rini
On Fri, Sep 09, 2016 at 03:06:01PM -0600, Stephen Warren wrote: > On 09/09/2016 01:11 PM, Tom Rini wrote: > >On Fri, Sep 09, 2016 at 01:09:43PM -0600, Stephen Warren wrote: > >>On 09/09/2016 01:02 PM, Tom Rini wrote: > >>>On Fri, Sep 09, 2016 at 10:21:45AM -0600, Stephen Warren wrote: > On 09/0

Re: [U-Boot] [PATCH] Revert "net: asix: Fix AX88772B when used with DriverModel"

2016-09-09 Thread Joe Hershberger
Hi Marcel, On Fri, Sep 9, 2016 at 4:12 PM, Marcel Ziswiler wrote: > As discussed before rather than Joshua's patch the one from Alban > should long since have been applied: > > https://www.mail-archive.com/u-boot@lists.denx.de/msg221455.html > > This reverts commit 41d1258aceb45b45f9e68f67a9c40f0

Re: [U-Boot] [PATCH 2/2] fs/fat: Optimizes memory size with single global variable instead of 3

2016-09-09 Thread Benoît Thébaudeau
Hi, On Fri, Sep 9, 2016 at 6:34 PM, Brüns, Stefan wrote: > On Sonntag, 14. August 2016 00:57:38 CEST Benoît Thébaudeau wrote: >> On Tue, Aug 2, 2016 at 9:35 PM, Benoît Thébaudeau >> >> wrote: >> > On Tue, Aug 2, 2016 at 8:53 PM, Stephen Warren > wrote: >> >> On 07/28/2016 12:11 AM, Tien Fong Ch

Re: [U-Boot] [PATCH 1/2] configs: Resync with savedefconfig

2016-09-09 Thread Stephen Warren
On 09/09/2016 03:14 PM, Tom Rini wrote: On Fri, Sep 09, 2016 at 03:06:01PM -0600, Stephen Warren wrote: On 09/09/2016 01:11 PM, Tom Rini wrote: On Fri, Sep 09, 2016 at 01:09:43PM -0600, Stephen Warren wrote: On 09/09/2016 01:02 PM, Tom Rini wrote: On Fri, Sep 09, 2016 at 10:21:45AM -0600, Ste

Re: [U-Boot] [PATCH] Revert "net: asix: Fix AX88772B when used with DriverModel"

2016-09-09 Thread Marek Vasut
On 09/09/2016 11:24 PM, Marcel Ziswiler wrote: > On Fri, 2016-09-09 at 16:16 -0500, Joe Hershberger wrote: >> Hi Marcel, >> >> On Fri, Sep 9, 2016 at 4:12 PM, Marcel Ziswiler >> wrote: >>> >>> As discussed before rather than Joshua's patch the one from Alban >>> should long since have been applied

Re: [U-Boot] net: asix: Fix AX88772B when used with DriverModel

2016-09-09 Thread Marek Vasut
On 09/09/2016 11:06 PM, Marcel Ziswiler wrote: > On Fri, 2016-09-09 at 13:57 -0500, Joe Hershberger wrote: >> Hi Joshua, >> >> https://patchwork.ozlabs.org/patch/666191/ was applied to u-boot- >> net.git. >> >> Thanks! >> -Joe > > No, sorry, but this is really the wrong approach! As discussed befo

Re: [U-Boot] U-Boot memory allocation problems with ast2500

2016-09-09 Thread Simon Glass
Hi Maxim, On 9 September 2016 at 15:53, Maxim Sloyko wrote: > > Hi all, > > First, disclaimer: this is the first time I'm doing something with U-Boot or > the part (ast2500), so any claim I make below can be false or just plain > nonsense. Welcome! > > I'm working on expanding support of Aspe

Re: [U-Boot] net: asix: Fix AX88772B when used with DriverModel

2016-09-09 Thread Marek Vasut
On 09/10/2016 01:13 AM, Marcel Ziswiler wrote: > On Sat, 2016-09-10 at 01:04 +0200, Marek Vasut wrote: >> On 09/09/2016 11:06 PM, Marcel Ziswiler wrote: >>> >>> On Fri, 2016-09-09 at 13:57 -0500, Joe Hershberger wrote: Hi Joshua, https://patchwork.ozlabs.org/patch/666191/ was ap

Re: [U-Boot] net: asix: Fix AX88772B when used with DriverModel

2016-09-09 Thread Marcel Ziswiler
On Fri, 2016-09-09 at 13:57 -0500, Joe Hershberger wrote: > Hi Joshua, > > https://patchwork.ozlabs.org/patch/666191/ was applied to u-boot- > net.git. > > Thanks! > -Joe No, sorry, but this is really the wrong approach! As discussed before rather than Joshua's patch the one from Alban should lo

[U-Boot] [PATCH v2] net: asix: Fix ASIX 88772B with driver model

2016-09-09 Thread Marcel Ziswiler
From: Alban Bedel Commit 147271209a9d ("net: asix: fix operation without eeprom") added a special handling for ASIX 88772B that enable another type of header. This break the driver in DM mode as the extra handling needed in the receive path is missing. However this new header mode is not require

[U-Boot] [PATCH] colibri_t30: fix usb ethernet functionality

2016-09-09 Thread Marcel Ziswiler
Since commit aa7a648747d8c704a9a81c9e493d386930724e9d ("net: Stop including NFS overhead in defragment max") the following has been reproducibly observed while trying to transfer data over TFTP: Load address: 0x80408000 Loading: EHCI timed out on TD - token=0x8008d80 T EHCI timed out on TD - token

Re: [U-Boot] net: asix: Fix AX88772B when used with DriverModel

2016-09-09 Thread Marcel Ziswiler
On Sat, 2016-09-10 at 01:04 +0200, Marek Vasut wrote: > On 09/09/2016 11:06 PM, Marcel Ziswiler wrote: > > > > On Fri, 2016-09-09 at 13:57 -0500, Joe Hershberger wrote: > > > > > > Hi Joshua, > > > > > > https://patchwork.ozlabs.org/patch/666191/ was applied to u-boot- > > > net.git. > > > > >

Re: [U-Boot] [PATCH] Revert "net: asix: Fix AX88772B when used with DriverModel"

2016-09-09 Thread Marcel Ziswiler
On Fri, 2016-09-09 at 16:16 -0500, Joe Hershberger wrote: > Hi Marcel, > > On Fri, Sep 9, 2016 at 4:12 PM, Marcel Ziswiler > wrote: > > > > As discussed before rather than Joshua's patch the one from Alban > > should long since have been applied: > > > > https://www.mail-archive.com/u-boot@list

Re: [U-Boot] net: asix: Fix AX88772B when used with DriverModel

2016-09-09 Thread Marcel Ziswiler
On Sat, 2016-09-10 at 02:18 +0200, Marcel Ziswiler wrote: > On Sat, 2016-09-10 at 01:23 +0200, Marek Vasut wrote: > > > > On 09/10/2016 01:13 AM, Marcel Ziswiler wrote: > > > > > > > > > On Sat, 2016-09-10 at 01:04 +0200, Marek Vasut wrote: > > > > > > > > > > > > On 09/09/2016 11:06 PM, Marce