Re: [U-Boot] [PATCH 0/6] usb: dwc2: add SPLIT transaction support

2015-12-12 Thread Marek Vasut
On Sunday, December 13, 2015 at 05:17:52 AM, Stefan Brüns wrote: > First two patches are preparatory work. 3rd and 4th introduce helper > functions. Patch 5 contains the core changes. Patch 6 is cleanup. > > The patch has been tested on RPi 1 B with several full speed and low speed > devices. All

Re: [U-Boot] [PATCH 4/6] usb: dwc2: add helper function for setting SPLIT HC registers

2015-12-12 Thread Marek Vasut
On Sunday, December 13, 2015 at 05:17:56 AM, Stefan Brüns wrote: > Signed-off-by: Stefan Brüns Commit message would be nice, otherwise: Acked-by: Marek Vasut Best regards, Marek Vasut ___ U-Boot mailing

Re: [U-Boot] [PATCH 1/6] usb: dwc2: avoid out of bounds access

2015-12-12 Thread Marek Vasut
On Sunday, December 13, 2015 at 05:17:53 AM, Stefan Brüns wrote: > flush_dcache_range may access data after priv->aligned_buffer end if > len > DWC2_DATA_BUF_SIZE. > memcpy may access data after buffer end if done > 0 > > Signed-off-by: Stefan Brüns Acked-by: Marek

[U-Boot] [PATCH 1/7] usb: increase USB descriptor buffer size

2015-12-12 Thread Stefan Brüns
The configuration descriptor includes all interface, endpoint and auxiliary descriptors (e.g. report, union) so 512 may not be enough. Signed-off-by: Stefan Brüns --- common/usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/usb.c

Re: [U-Boot] [PATCH 5/6] usb: dwc2: add support for SPLIT transactions

2015-12-12 Thread Marek Vasut
On Sunday, December 13, 2015 at 05:17:57 AM, Stefan Brüns wrote: > In contrast to non-SPLIT transfers each transaction has to be submitted > as an individual chunk. Handling of ACK/NAk/NYET handshakes depends on > transaction (non-SPLIT/SSPLIT/CSPLIT), thus inline the HCINT flag handling. > >

Re: [U-Boot] [PATCH 6/6] usb: dwc2: remove no longer used wait_for_chhltd()

2015-12-12 Thread Marek Vasut
On Sunday, December 13, 2015 at 05:17:58 AM, Stefan Brüns wrote: > Signed-off-by: Stefan Brüns Acked-by: Marek Vasut Best regards, Marek Vasut ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH 2/6] usb: dwc2: Handle NAK during CONTROL DATA and STATUS stage

2015-12-12 Thread Marek Vasut
On Sunday, December 13, 2015 at 05:17:54 AM, Stefan Brüns wrote: > A function is allowed to return NAKs during the DATA stage to control > data flow control. NAKs during the STATUS stage signal the function > is still processing the request. > > Signed-off-by: Stefan Brüns

Re: [U-Boot] [PATCH 1/7] usb: increase USB descriptor buffer size

2015-12-12 Thread Marek Vasut
On Sunday, December 13, 2015 at 05:47:18 AM, Stefan Brüns wrote: > The configuration descriptor includes all interface, endpoint and > auxiliary descriptors (e.g. report, union) so 512 may not be enough. > > Signed-off-by: Stefan Brüns Can the size be determined in

Re: [U-Boot] [PATCH 3/6] usb: dwc2: determine TT hub address and port for split transactions

2015-12-12 Thread Marek Vasut
On Sunday, December 13, 2015 at 05:17:55 AM, Stefan Brüns wrote: > Start split and complete split tokens need the hub address and the > downstream port of the first HS hub (device view). > Code copied from host/ehci_hcd.c > > Signed-off-by: Stefan Brüns Acked-by:

[U-Boot] [PATCH 3/6] usb: dwc2: determine TT hub address and port for split transactions

2015-12-12 Thread Stefan Brüns
Start split and complete split tokens need the hub address and the downstream port of the first HS hub (device view). Code copied from host/ehci_hcd.c Signed-off-by: Stefan Brüns --- drivers/usb/host/dwc2.c | 60 + 1

[U-Boot] [PATCH 5/6] usb: dwc2: add support for SPLIT transactions

2015-12-12 Thread Stefan Brüns
In contrast to non-SPLIT transfers each transaction has to be submitted as an individual chunk. Handling of ACK/NAk/NYET handshakes depends on transaction (non-SPLIT/SSPLIT/CSPLIT), thus inline the HCINT flag handling. Signed-off-by: Stefan Brüns ---

[U-Boot] [PATCH 4/6] usb: dwc2: add helper function for setting SPLIT HC registers

2015-12-12 Thread Stefan Brüns
Signed-off-by: Stefan Brüns --- drivers/usb/host/dwc2.c | 19 ++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/drivers/usb/host/dwc2.c b/drivers/usb/host/dwc2.c index 2d97546..6496fcf 100644 --- a/drivers/usb/host/dwc2.c +++

[U-Boot] [PATCH 2/6] usb: dwc2: Handle NAK during CONTROL DATA and STATUS stage

2015-12-12 Thread Stefan Brüns
A function is allowed to return NAKs during the DATA stage to control data flow control. NAKs during the STATUS stage signal the function is still processing the request. Signed-off-by: Stefan Brüns --- drivers/usb/host/dwc2.c | 37

[U-Boot] [PATCH 6/6] usb: dwc2: remove no longer used wait_for_chhltd()

2015-12-12 Thread Stefan Brüns
Signed-off-by: Stefan Brüns --- drivers/usb/host/dwc2.c | 34 -- 1 file changed, 34 deletions(-) diff --git a/drivers/usb/host/dwc2.c b/drivers/usb/host/dwc2.c index 0bf3ee5..baf78d8 100644 --- a/drivers/usb/host/dwc2.c +++

[U-Boot] [PATCH 0/6] usb: dwc2: add SPLIT transaction support

2015-12-12 Thread Stefan Brüns
First two patches are preparatory work. 3rd and 4th introduce helper functions. Patch 5 contains the core changes. Patch 6 is cleanup. The patch has been tested on RPi 1 B with several full speed and low speed devices. All devices enumerated successfully, with good output from "usb info". High

[U-Boot] [PATCH 1/6] usb: dwc2: avoid out of bounds access

2015-12-12 Thread Stefan Brüns
flush_dcache_range may access data after priv->aligned_buffer end if len > DWC2_DATA_BUF_SIZE. memcpy may access data after buffer end if done > 0 Signed-off-by: Stefan Brüns --- drivers/usb/host/dwc2.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-)

[U-Boot] [PATCH v3] spi: fsl_espi: Return all data read from device unmodified

2015-12-12 Thread Dale P. Smith
Signed-off-by: Dale P. Smith --- Changes for v2: - First attempt at using git format-patch Changes for v3: - Fix subject. - Add changelog drivers/spi/fsl_espi.c | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git

Re: [U-Boot] [PATCH v2] ARM: mxs: allow boards to select DC-DC switching clock source

2015-12-12 Thread Michael Heimpold
Hi Marek, Am Saturday 12 December 2015, 02:42:47 schrieb Marek Vasut: > On Friday, December 11, 2015 at 12:05:36 AM, Michael Heimpold wrote: > > For some board designs, it might be useful to switch the DC-DC > > clock source to something else rather the default 24 MHz, e.g. > > for EMI reasons. >

[U-Boot] u-boot 2016.01-rc2 detects BeagleBone Black incorrectly

2015-12-12 Thread Matwey V. Kornilov
Hello, I am running 2016.01-rc on BBB (Embest replica) printenv shows the following: findfdt=if test $board_name = A335BONE; then setenv fdtfile am335x-bone.dtb; fi; if test $board_name = A335BNLT; then if test $board_rev = BBG1; then setenv fdtfile am335x-bonegreen.dtb; else setenv fdtfile

[U-Boot] [PATCH] am335x_evm: Don't undef CONFIG_BOOTDELAY

2015-12-12 Thread Matwey V. Kornilov
config_distro_defaults.h is already included in configs/ti_am335x_common.h (by means of ti_armv7_common.h) We don't need to #undef CONFIG_BOOTDELAY because it drops default bootdelay which already defined on this line. Signed-off-by: Matwey V. Kornilov ---

Re: [U-Boot] [PATCH 1/2] spl: dm: Add SPL_DM_SEQ_ALIAS config option

2015-12-12 Thread Stefan Roese
On 11.12.2015 18:32, Marek Vasut wrote: On Friday, December 11, 2015 at 04:46:40 PM, Michal Simek wrote: On 11.12.2015 16:07, Marek Vasut wrote: On Friday, December 11, 2015 at 03:48:09 PM, Nathan Rossi wrote: The Device Model sequence alias feature is required by some Uclasses. Instead of

Re: [U-Boot] [PATCH v3] spi: fsl_espi: Return all data read from device unmodified

2015-12-12 Thread Joakim Tjernlund
On Fri, 2015-12-11 at 21:19 -0500, Dale P. Smith wrote: > Signed-off-by: Dale P. Smith > --- > Changes for v2: >    - First attempt at using git format-patch > Changes for v3: >    - Fix subject. >    - Add changelog While this is a step in the right direction, this

Re: [U-Boot] [PATCH 1/2] spl: dm: Add SPL_DM_SEQ_ALIAS config option

2015-12-12 Thread Nathan Rossi
On Sat, Dec 12, 2015 at 10:05 PM, Stefan Roese wrote: > On 11.12.2015 18:32, Marek Vasut wrote: >> >> On Friday, December 11, 2015 at 04:46:40 PM, Michal Simek wrote: >>> >>> On 11.12.2015 16:07, Marek Vasut wrote: On Friday, December 11, 2015 at 03:48:09 PM, Nathan Rossi

Re: [U-Boot] [PATCH v2] ARM: mxs: allow boards to select DC-DC switching clock source

2015-12-12 Thread Marek Vasut
On Saturday, December 12, 2015 at 10:02:30 AM, Michael Heimpold wrote: > Hi Marek, Hi! > Am Saturday 12 December 2015, 02:42:47 schrieb Marek Vasut: > > On Friday, December 11, 2015 at 12:05:36 AM, Michael Heimpold wrote: > > > For some board designs, it might be useful to switch the DC-DC > > >

Re: [U-Boot] [PATCH 1/6] arm: socfpga: cyclone5-socdk: Enabling mtd partitioning layout

2015-12-12 Thread Marek Vasut
On Saturday, December 12, 2015 at 07:30:46 AM, Chin Liang See wrote: [...] > > > > Is this the default Altera layout ? > > > > > > Yah but believe it need to be updated > > > > So you're not worried about compatibility I presume ? > > I still need to care of compatiblity. Some of them will

Re: [U-Boot] [PATCH v2 1/4] arm: socfpga: cyclone5-socdk: Enabling U-Boot environment in QSPI

2015-12-12 Thread Marek Vasut
On Saturday, December 12, 2015 at 07:17:13 AM, Chin Liang See wrote: > On Sat, 2015-12-12 at 04:23 +0100, Marek Vasut wrote: > > On Saturday, December 12, 2015 at 01:47:38 AM, Chin Liang See wrote: > > > Enabling the support of storing U-Boot environment > > > within serial NOR flash. By default,

Re: [U-Boot] [PATCH 1/2] spl: dm: Add SPL_DM_SEQ_ALIAS config option

2015-12-12 Thread Marek Vasut
On Saturday, December 12, 2015 at 03:08:21 PM, Nathan Rossi wrote: > On Sat, Dec 12, 2015 at 10:05 PM, Stefan Roese wrote: > > On 11.12.2015 18:32, Marek Vasut wrote: > >> On Friday, December 11, 2015 at 04:46:40 PM, Michal Simek wrote: > >>> On 11.12.2015 16:07, Marek Vasut wrote:

[U-Boot] [PATCH] serial: lpc32xx hsuart: port driver to driver model

2015-12-12 Thread Vladimir Zapolskiy
The change ports NXP LPC32xx 14-clock UART device driver to driver model. Signed-off-by: Vladimir Zapolskiy --- drivers/serial/lpc32xx_hsuart.c | 103 +++--- include/dm/platform_data/lpc32xx_hsuart.h | 18 ++ 2 files changed, 82

[U-Boot] Very confusing variable=name behaviour

2015-12-12 Thread Pavel Machek
Hi! I'm getting quite crazy behaviour of variables in recent u-boot: VERSION = 2016 PATCHLEVEL = 01 SUBLEVEL = EXTRAVERSION = -rc1 Bytes transferred = 104656 (198d0 hex) => bootm_boot_mode=nonsec => echo $bootm_boot_mode nonsec => prinetenv bootm_boot_mode Unknown command 'prinetenv' - try

[U-Boot] [PATCH 0/2] sunxi: support for a second SD card socket

2015-12-12 Thread Karsten Merker
Hello, this patchset enables the full-size SD card socket on the A20-Olimex-SOM-EVB baseboard in u-boot and adds support for including this kind of secondary socket into the boot process provided by config_distro_bootcmd.h. The latter is particularly useful on the A20-Olimex-SOM-EVB as changing

[U-Boot] [PATCH 2/2] sunxi: Enable a second mmc socket as boot target in the environment

2015-12-12 Thread Karsten Merker
Some sunxi-based boards (such as the Olimex A20-SOM-EVB) have a second MMC socket. This socket is not bootable hardware-wise, i.e. u-boot itself cannot be loaded from it, but once u-boot has started, the second socket can be used in the boot process provided by config_distro_bootcmd.h. If a

[U-Boot] [PATCH 1/2] sunxi: A20-Olimex-SOM-EVB defconfig: enable mmc3

2015-12-12 Thread Karsten Merker
The Olimex A20-SOM-EVB is an evaluation board for the Olimex A20-SOM system-on-module. The baseboard provides a full-size SD socket (connected to mmc3) in addition to the micro-SD socket on the SOM itself (which is connected to mmc0). Enable the mmc3 controller in the board defconfig.

Re: [U-Boot] [PATCH 1/6] arm: socfpga: cyclone5-socdk: Enabling mtd partitioning layout

2015-12-12 Thread Marek Vasut
On Sunday, December 13, 2015 at 01:49:06 AM, Chin Liang See wrote: > On Sun, 2015-12-13 at 01:01 +0100, Marek Vasut wrote: > > On Sunday, December 13, 2015 at 12:59:48 AM, Chin Liang See wrote: > > > On Sat, 2015-12-12 at 16:36 +0100, Marek Vasut wrote: > > > > On Saturday, December 12, 2015 at

Re: [U-Boot] [PATCH v2 4/4] arm: socfpga: socrates: Enabling U-Boot environment in QSPI

2015-12-12 Thread Chin Liang See
On Sat, 2015-12-12 at 23:50 +0100, Pavel Machek wrote: > On Sat 2015-12-12 08:47:41, Chin Liang See wrote: > > Enabling the support of storing U-Boot environment > > within serial NOR flash. By default, its still > > store into SDMMC > > > > Signed-off-by: Chin Liang See > >

Re: [U-Boot] [PATCH 1/6] arm: socfpga: cyclone5-socdk: Enabling mtd partitioning layout

2015-12-12 Thread Marek Vasut
On Sunday, December 13, 2015 at 12:59:48 AM, Chin Liang See wrote: > On Sat, 2015-12-12 at 16:36 +0100, Marek Vasut wrote: > > On Saturday, December 12, 2015 at 07:30:46 AM, Chin Liang See wrote: > [...] > > > > > Can you share the final layout before you roll out patches ? > > > > > > Sure,

[U-Boot] [PATCH 08/11] drivers/ddr/marvell: Default DRAM_ECC to 0

2015-12-12 Thread Phil Sutter
Not all boards implementing an Armada XP chip are equipped with ECC RAM. Defining DRAM_ECC to 1 enables ECC without a chance to turn it off in board configs, which breaks DDR training for them. Signed-off-by: Phil Sutter --- drivers/ddr/marvell/axp/ddr3_axp_config.h | 2 +- 1 file

[U-Boot] [PATCH 06/11] drivers/pci/pci_mvebu: Fix for boards with X4 lanes

2015-12-12 Thread Phil Sutter
Armada XP has support for X4 lanes, boards specify this in their serdes_cfg. During PEX init in high_speed_env_lib.c, the configuration is stored in GEN_PURP_RES_2_REG. When enumerating PEX, subsequent interfaces of an X4 lane must be skipped. Otherwise the enumeration hangs up the board. The

[U-Boot] [PATCH 11/11] common: Implement Synology specific command set

2015-12-12 Thread Phil Sutter
Synology keeps per item configuration in a dedicated 'partition' in SPI flash, namely the one named 'vendor' in DTS file. It contains the two NICs MAC addresses as well as the item's serial number. I didn't find a way to have this information extracted automatically, therefore implemented 'syno

[U-Boot] [PATCH 09/11] mvebu: Add rudimental MV78320 support

2015-12-12 Thread Phil Sutter
Signed-off-by: Phil Sutter --- arch/arm/mach-mvebu/cpu.c | 5 - arch/arm/mach-mvebu/include/mach/soc.h | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-mvebu/cpu.c b/arch/arm/mach-mvebu/cpu.c index d3b9789..b485be7 100644 ---

[U-Boot] [PATCH 02/11] drivers/spi/kirkwood_spi: Fix debugging with CONFIG_DM_SPI

2015-12-12 Thread Phil Sutter
The debug printing tries to reference slave->bus and slave->cs which don't exist when CONFIG_DM_SPI is defined. Signed-off-by: Phil Sutter --- drivers/spi/kirkwood_spi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/spi/kirkwood_spi.c b/drivers/spi/kirkwood_spi.c

[U-Boot] [PATCH 01/11] drivers/pci: Fix for debug builds without CONFIG_PCI_ENUM_ONLY

2015-12-12 Thread Phil Sutter
The debug printing references bar_res, which exists only if CONFIG_PCI_ENUM_ONLY is not defined. Therefore move it into the ifdef'd area. Signed-off-by: Phil Sutter --- drivers/pci/pci_auto_old.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[U-Boot] [PATCH 07/11] mvebu: Fix shortcoming of Marvell BSP board detection

2015-12-12 Thread Phil Sutter
Signed-off-by: Phil Sutter --- arch/arm/mach-mvebu/serdes/axp/high_speed_env_lib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-mvebu/serdes/axp/high_speed_env_lib.c b/arch/arm/mach-mvebu/serdes/axp/high_speed_env_lib.c index 702273a..6c7738c

[U-Boot] [PATCH 03/11] mvebu: Fix for non-DM ehci-marvell support

2015-12-12 Thread Phil Sutter
This mimics the relevant code in mach-kirkwood headers. The *_winctrl_calcsize functions are identical, as well as the MVCPU_WIN_* macros. Implementing shared headers/code between mvebu and kirkwood is left for someone with a better knowledge of how u-boot is organized internally. Signed-off-by:

[U-Boot] [PATCH 05/11] axp: Fix debugging support in DDR3 write leveling

2015-12-12 Thread Phil Sutter
If MV_DEBUG_WL is defined, DEBUG_WL_S and DEBUG_WL_D macros are missing. In addition to that, get rid of debug output printing non-existent counter variable. Signed-off-by: Phil Sutter --- drivers/ddr/marvell/axp/ddr3_write_leveling.c | 4 ++-- 1 file changed, 2 insertions(+), 2

[U-Boot] [PATCH 04/11] README: Review the u-boot porting guide list

2015-12-12 Thread Phil Sutter
* There is no boards.cfg anymore, so drop (1). * Creating flash.c and u-boot.lds seems not mandatory as well. * Adjusting the enumerators for the above implicitly fixed for double items numbered (3). Signed-off-by: Phil Sutter --- README | 11 --- 1 file changed, 4

[U-Boot] [PATCH 00/11] Add support for Synology DS414 and some related fixes

2015-12-12 Thread Phil Sutter
This patch series ultimately adds support for Synology DS414 NAS after a few fixes: * Patches 1-3 and 5 fix various files for enabled debugging. * Patch 4 updates the board porting guide in README file. * Patches 6-8 hold crucial fixes necessary for DS414 support. * Patches 9 and 10 contain the

[U-Boot] [PATCH 10/11] mvebu: Support Synology DS414

2015-12-12 Thread Phil Sutter
This adds support for the MV78230 based DS414 NAS by Synology. The relevant bits have been extracted from the 'synogpl-5004-armadaxp' package Synology kindly published, garnished with a fair amount of trial-and-error. Sadly, support is far from perfect. The major parts I have failed in are SATA

Re: [U-Boot] [PATCH 1/6] arm: socfpga: cyclone5-socdk: Enabling mtd partitioning layout

2015-12-12 Thread Chin Liang See
On Sun, 2015-12-13 at 01:01 +0100, Marek Vasut wrote: > On Sunday, December 13, 2015 at 12:59:48 AM, Chin Liang See wrote: > > On Sat, 2015-12-12 at 16:36 +0100, Marek Vasut wrote: > > > On Saturday, December 12, 2015 at 07:30:46 AM, Chin Liang See > > > wrote: > > [...] > > > > > > > Can you

[U-Boot] [PATCH 2/2] arm: lpc32xx: switch SPL builds to driver model

2015-12-12 Thread Vladimir Zapolskiy
For NXP LPC32xx boards the change enables SPL_DM option, this allows to use any driver model UART driver in SPL images, hence a restriction on HSUART in SPL image is removed and well as definitions for non-DM NS16550 driver, its DM version is used instead. Note, CONFIG_SPL_DM option noticeably

[U-Boot] [PATCH 0/2] arm: lpc32xx: use driver model serial console drivers

2015-12-12 Thread Vladimir Zapolskiy
The change enables DM versions of NXP LPC32xx standard (NS16550) and high-speed UART drivers for both ordinary and SPL U-boot images. The change increases the size of SPL images over a maximum size limit for a secondary bootloader, if it is downloaded from a small page NAND flash, but this does

[U-Boot] [PATCH 1/2] arm: lpc32xx: switch serial console to driver model

2015-12-12 Thread Vladimir Zapolskiy
On NXP LPC32xx platform for non-SPL builds the change adds standard (NS16550) and high-speed UARTs to driver model. Due to specific of DM NS16550 device description UART clock can not be got in runtime and by default it is set to 13MHz, if board PERIPH_CLK is different, this should be specified in

Re: [U-Boot] [PATCH 1/6] arm: socfpga: cyclone5-socdk: Enabling mtd partitioning layout

2015-12-12 Thread Chin Liang See
On Sun, 2015-12-13 at 01:01 +0100, Marek Vasut wrote: > On Sunday, December 13, 2015 at 12:59:48 AM, Chin Liang See wrote: > > On Sat, 2015-12-12 at 16:36 +0100, Marek Vasut wrote: > > > On Saturday, December 12, 2015 at 07:30:46 AM, Chin Liang See > > > wrote: > > [...] > > > > > > > Can you

Re: [U-Boot] [PATCH v2 4/4] arm: socfpga: socrates: Enabling U-Boot environment in QSPI

2015-12-12 Thread Pavel Machek
On Sat 2015-12-12 08:47:41, Chin Liang See wrote: > Enabling the support of storing U-Boot environment > within serial NOR flash. By default, its still > store into SDMMC > > Signed-off-by: Chin Liang See > Cc: Dinh Nguyen > Cc: Dinh Nguyen

Re: [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling mtd partitioning layout

2015-12-12 Thread Chin Liang See
On Sat, 2015-12-12 at 22:45 +0100, Marek Vasut wrote: > On Saturday, December 12, 2015 at 10:10:00 PM, Pavel Machek wrote: > > On Fri 2015-12-11 17:15:50, Chin Liang See wrote: > > > Enabling mtd partitioning layout which indicate partition > > > for various boot partition > > > > > >

Re: [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling mtd partitioning layout

2015-12-12 Thread Pavel Machek
On Fri 2015-12-11 17:15:50, Chin Liang See wrote: > Enabling mtd partitioning layout which indicate partition > for various boot partition > > Signed-off-by: Chin Liang See > Cc: Dinh Nguyen > Cc: Dinh Nguyen > Cc: Pavel

Re: [U-Boot] Very confusing variable=name behaviour

2015-12-12 Thread Peter Barada
In u-boot there are two types of variables, local and persistent variables. Persistent variables are assigned via "setenv", can be saved (the whole environment) via "saveenv", restored (to default values) via "env default -f". Hush variables are assigned via "=" and can aren't saved. Both are

Re: [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling mtd partitioning layout

2015-12-12 Thread Marek Vasut
On Saturday, December 12, 2015 at 10:10:00 PM, Pavel Machek wrote: > On Fri 2015-12-11 17:15:50, Chin Liang See wrote: > > Enabling mtd partitioning layout which indicate partition > > for various boot partition > > > > Signed-off-by: Chin Liang See > > Cc: Dinh Nguyen

Re: [U-Boot] [PATCH V2] arm: novena: Switch novena to config_distro_bootcmd

2015-12-12 Thread Vagrant Cascadian
On 2015-11-24, Marek Vasut wrote: > From: Vagrant Cascadian > > Switch Novena to distro bootcmd Anything remaining on this? Can we hope to see it in 2016.01? > so it can be used with debian easily. I suspect other distros would appreciate this too. :)

Re: [U-Boot] [PATCH 1/6] arm: socfpga: cyclone5-socdk: Enabling mtd partitioning layout

2015-12-12 Thread Chin Liang See
On Sat, 2015-12-12 at 16:36 +0100, Marek Vasut wrote: > On Saturday, December 12, 2015 at 07:30:46 AM, Chin Liang See wrote: [...] > > > Can you share the final layout before you roll out patches ? > > > > Sure, plan to do so but need to away from desk just now. > > > > Here is the old layout

Re: [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling mtd partitioning layout

2015-12-12 Thread Chin Liang See
On Sat, 2015-12-12 at 22:10 +0100, Pavel Machek wrote: > On Fri 2015-12-11 17:15:50, Chin Liang See wrote: > > Enabling mtd partitioning layout which indicate partition > > for various boot partition > > > > Signed-off-by: Chin Liang See > > Cc: Dinh Nguyen