Re: [U-Boot] [U-Boot, 1/4] km/common: stop u-boot only if someone press

2015-11-18 Thread Tom Rini
On Fri, Nov 13, 2015 at 04:15:19PM +0100, Valentin Longchamp wrote: > From: Holger Brunck > > To prevent u-boot to stop accidently e.g. due to line noise on the > serial line, we now use the option CONFIG_AUTOBOOT_KEYED. We choose the > key for this. > >

Re: [U-Boot] [U-Boot, 3/4] arm/mgcoge3un: check dip_switch at startup

2015-11-18 Thread Tom Rini
On Fri, Nov 13, 2015 at 03:01:16PM +0100, Valentin Longchamp wrote: > From: Holger Brunck > > Similar to kmcoge5un we need to check the dip switch at startup > connected to the kirkwood at MPP43. If it's set we need to set the > actual_bank to zero to boot from SW

Re: [U-Boot] [U-Boot, v3] board_init: Change the logic to setup malloc_base

2015-11-18 Thread Tom Rini
On Thu, Nov 12, 2015 at 12:30:19PM -0200, Fabio Estevam wrote: > Prior to commit 5ba534d247d418 ("arm: Switch 32-bit ARM to using generic > global_data setup") we used to have assembly code that configured the > malloc_base address. > > Since this commit we use the board_init_f_mem() function in

Re: [U-Boot] [U-Boot, 1/4] arm/km_kirkwood: remove KM_ENV_BUS and use CONFIG_I2C_ENV_EEPROM_BUS

2015-11-18 Thread Tom Rini
On Fri, Nov 13, 2015 at 03:01:14PM +0100, Valentin Longchamp wrote: > KM_ENV_BUS was used for nothing else than an direct assignment to > CONFIG_I2C_ENV_EEPROM_BUS. To avoid this, directly use > CONFIG_I2C_ENV_EEPROM_BUS instead. > > Patchwork: http://patchwork.ozlabs.org/patch/399411/ >

Re: [U-Boot] [PATCH 6/6] gpt: command: Extend gpt command to support GPT table verification

2015-11-18 Thread Tom Rini
On Fri, Nov 13, 2015 at 07:42:12AM +0100, Lukasz Majewski wrote: > This commit adds support for "gpt verify" command, which verifies > correctness of on-board stored GPT partition table. > As the optional parameter one can provide '$partitons' environment variable > to check if partition data

Re: [U-Boot] [PATCH 5/6] gpt: part: Definition and declaration of GPT verification functions

2015-11-18 Thread Tom Rini
On Fri, Nov 13, 2015 at 07:42:11AM +0100, Lukasz Majewski wrote: > This commit provides definition and declaration of GPT verification > functions - namely gpt_verify_headers() and gpt_verify_partitions(). > The former is used to only check CRC32 of GPT's header and PTEs. > The latter examines

Re: [U-Boot] [PATCH 14/25] dm: tegra: net: Convert tegra boards to driver model for Ethernet

2015-11-18 Thread Stephen Warren
On 11/16/2015 08:53 PM, Simon Glass wrote: Adjust all Tegra boards to use driver model for Ethernet, now that the required drivers are converted. diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig @@ -14,6 +14,7 @@ config TEGRA_ARMV7_COMMON select DM_GPIO

Re: [U-Boot] [PATCH v2] armv8: fsl-layerscale: Rewrite reserving memory for MC and debug server

2015-11-18 Thread Scott Wood
On Wed, 2015-11-18 at 10:05 -0800, York Sun wrote: > MC and debug server are not board-specific. Instead of reserving > memory in each board file, a weak function is introduced in board_f.c > to replace macro CONFIG_SYS_MEM_TOP_HIDE for more flexibility. > Legacy use of this macro is still

Re: [U-Boot] [U-Boot, V4, 03/13] spl: mmc: refactor device location code to its own function

2015-11-18 Thread Tom Rini
On Sun, Nov 08, 2015 at 05:11:44PM +0200, Nikita Kiryanov wrote: > Simplify spl_mmc_load_image() code by moving the part that finds the mmc > device > into its own function spl_mmc_find_device(), available in two flavors: DM and > non-DM. > > This refactor fixes a bug in which an error in the

Re: [U-Boot] [U-Boot, V4, 04/13] spl: mmc: remove #ifdef CONFIG_SPL_OS_BOOT check

2015-11-18 Thread Tom Rini
On Sun, Nov 08, 2015 at 05:11:45PM +0200, Nikita Kiryanov wrote: > Implement default versions of falcon mode functions to make the > CONFIG_SPL_OS_BOOT check in spl_mmc_load_image() unnecessary, thus reducing > its #ifdef complexity. > > No functional changes. > > Signed-off-by: Nikita Kiryanov

Re: [U-Boot] [U-Boot, V4, 05/13] spl: mmc: get rid of #ifdef CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION check

2015-11-18 Thread Tom Rini
On Sun, Nov 08, 2015 at 05:11:46PM +0200, Nikita Kiryanov wrote: > Implement defaults for the raw partition image loading so that the #ifdef > CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION in spl_mmc_load_image() will no > longer be necessary. > > This change makes it possible for

Re: [U-Boot] [U-Boot, V4, 09/13] common: spl: move image load to its own function

2015-11-18 Thread Tom Rini
On Sun, Nov 08, 2015 at 05:11:50PM +0200, Nikita Kiryanov wrote: > Refactor spl image load code out of board_init_r and into its own > function. This is a preparation for supporting alternative boot > devices. > > Signed-off-by: Nikita Kiryanov > Cc: Igor Grinberg

Re: [U-Boot] [U-Boot, V4, 06/13] spl: mmc: move fs boot into its own function

2015-11-18 Thread Tom Rini
On Sun, Nov 08, 2015 at 05:11:47PM +0200, Nikita Kiryanov wrote: > Move the code that handles fs boot out of spl_mmc_load_image() and into its > own function to reduce the #ifdef complexity of spl_mmc_load_image(). > > No functional changes. > > Signed-off-by: Nikita Kiryanov

[U-Boot] [PATCH 2/5][v2] armv8: Make SEC read/write as snoopable for LS1043

2015-11-18 Thread Aneesh Bansal
For LS1043, SEC read/writes are made snoopable by setting the corresponding bits in SCFG to avoid coherency issues. Signed-off-by: Aneesh Bansal --- Changes in v2: New Patch Set created with an additional patch Commit Subject modified

[U-Boot] [PATCH 4/5][v2] armv8/ls1043ardb: SECURE BOOT target added for NOR

2015-11-18 Thread Aneesh Bansal
LS1043ARDB Secure Boot Target from NOR has been added. - Configs defined to enable esbc_validate. - ESBC Address in header is made 64 bit. - SMMU is re-configured in Bypass mode. Signed-off-by: Aneesh Bansal --- Changes in v2: New Patch Set created with an additional

[U-Boot] [PATCH 1/5][v2] armv8: usec2ticks function defined

2015-11-18 Thread Aneesh Bansal
usec2ticks() function has been defined for ARMv8 which will be used by SEC Driver. Signed-off-by: Aneesh Bansal --- Changes in v2: New Patch Set created with an additional patch. arch/arm/cpu/armv8/generic_timer.c | 11 +++ 1 file changed, 11 insertions(+)

[U-Boot] [PATCH 3/5] Data type defined for pointer addresses

2015-11-18 Thread Aneesh Bansal
A new data type uintptr_t has been defined for creating pointers (32 or 64 bit depending on Core) from 32 bit variables storing the address. If a 32 bit variable (u32) is typecasted to a pointer (void *), compiler gives a warning in case size of pointer on the core is 64 bit. Signed-off-by:

[U-Boot] [PATCH 5/5][v2] drivers/crypto/fsl: fix endianness issue in RNG

2015-11-18 Thread Aneesh Bansal
For Setting and clearing the bits in SEC Block registers sec_clrbits32() and sec_setbits32() are used which work as per endianness of CAAM block. So these must be used with SEC register address as argument. If the value is read in a local variable, then the functions will not behave correctly

Re: [U-Boot] git-mailrc: Add Bin as a maintainer of x86

2015-11-18 Thread Tom Rini
On Tue, Nov 10, 2015 at 06:13:34PM -0800, Bin Meng wrote: > This updates git-mailrc to add me as a maintainer of x86. > > Signed-off-by: Bin Meng > Acked-by: Simon Glass Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital

Re: [U-Boot] [U-Boot, v2] omap3: cm-t3517: add board specific get_board_rev()

2015-11-18 Thread Tom Rini
On Tue, Nov 10, 2015 at 03:17:44PM +0200, Dmitry Lifshitz wrote: > CM-T3517 has several HW revisions. > Add board specific get_board_rev() callback to retrieve revision number. > > Signed-off-by: Dmitry Lifshitz > Reviewed-by: Igor Grinberg

Re: [U-Boot] [U-Boot, V4, 12/13] arm: mx6: cm-fx6: define fallback boot devices for spl

2015-11-18 Thread Tom Rini
On Sun, Nov 08, 2015 at 05:11:53PM +0200, Nikita Kiryanov wrote: > Use spl alternate boot device feature to define fallback to > the main boot device as it is defined by hardware. > > Signed-off-by: Nikita Kiryanov > Cc: Igor Grinberg > Cc:

Re: [U-Boot] [U-Boot,v2] common: add CMD_GPIO to Kconfig

2015-11-18 Thread Tom Rini
On Wed, Nov 11, 2015 at 09:39:33PM +0800, Thomas Chou wrote: > Add CMD_GPIO to Kconfig and run tools/moveconfig.py . > > Signed-off-by: Thomas Chou > Reviewed-by: Simon Glass Applied to u-boot/master, thanks! -- Tom signature.asc Description:

[U-Boot] [PATCH v8 20/23] rockchip: Add basic support for evb-rk3036 board

2015-11-18 Thread Simon Glass
From: huang lin This add some basic files required to allow the board to dispaly serial message and can run command(mmc info etc) Signed-off-by: Lin Huang Acked-by: Simon Glass Moved board Kconfig fragment from previous patch into

[U-Boot] [PATCH v8 21/23] rockchip: Add max spl size & spl header configs

2015-11-18 Thread Simon Glass
From: Jeffy Chen Our chips may have different max spl size and spl header, so we need to add configs for that. Signed-off-by: Jeffy Chen Acked-by: Simon Glass Dropped CONFIG_ROCKCHIP_MAX_SPL_SIZE from rk3288_common.h,

[U-Boot] [PATCH v8 19/23] rockchip: rk3036: Add core Soc start-up code

2015-11-18 Thread Simon Glass
From: huang lin rk3036 only 4K size SRAM for SPL, so only support timer, uart, sdram driver in SPL stage, when finish initial sdram, back to bootrom.And in rk3036 sdmmc and debug uart use same iomux, so if you want to boot from sdmmc, you must disable debug uart.

[U-Boot] MicroBlaze target: Where should CONFIG_SPI_FLASH_BAR be defined?

2015-11-18 Thread Scott Welsh
Hello, I've got a 32MByte Micron SPI Flash and I am unable to access the upper half of the part due to CONFIG_SPI_FLASH_BAR not being defined when my u-boot.elf is built. I am using the Petalinux version 2013.10 toolset to build the u-boot.elf and image.elf artifacts and am still at a loss as to

Re: [U-Boot] [PATCH v2 03/13] ns16550: add generic binding to unify the drivers

2015-11-18 Thread Heiko Schocher
Hello Thomas, Am 18.11.2015 um 14:44 schrieb Thomas Chou: Add generic binding to unify ns16550 drivers. There are several drivers using almost the same code, such as serial_dw, serial_keystone, serial_omap, serial_ppc, serial_rockchip, serial_tegra.c, and serial_x86. But each is platform

Re: [U-Boot] [PATCH v2 01/13] debug_uart: restore ns16550 as default

2015-11-18 Thread Heiko Schocher
Hello Thomas, Am 18.11.2015 um 14:44 schrieb Thomas Chou: Since commit 220e8021af96 ("nios2: convert altera_jtag_uart to driver model"), the default debug uart was changed. Most people use ns16550 UART, so restore it as default. Signed-off-by: Thomas Chou Reported-by:

[U-Boot] [PATCH v3 04/16] dm: core: Add a new api to get indexed device address

2015-11-18 Thread Mugunthan V N
Add new api to get device address based on index. Signed-off-by: Mugunthan V N --- drivers/core/device.c | 31 +++ include/dm/device.h | 11 +++ 2 files changed, 38 insertions(+), 4 deletions(-) diff --git a/drivers/core/device.c

[U-Boot] [PATCH v3 08/16] drivers: spi: ti_qspi: convert driver to adopt device driver model

2015-11-18 Thread Mugunthan V N
adopt ti_qspi driver to device driver model Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass Reviewed-by: Tom Rini --- drivers/spi/ti_qspi.c | 187 ++ 1 file changed, 187

[U-Boot] [PATCH v3 12/16] defconfig: dra72_evm: enable spi driver model

2015-11-18 Thread Mugunthan V N
enable mmc driver model for dra72_evm as ti_qspi supports driver model Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass Reviewed-by: Tom Rini --- configs/dra72_evm_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git

[U-Boot] [PATCH v3 11/16] drivers: mtd: spi: sf_probe: add compatible for Macronix spi flash

2015-11-18 Thread Mugunthan V N
Add compatible for Macronix 64MiB spi flash mx66l51235l. Signed-off-by: Mugunthan V N --- drivers/mtd/spi/sf_probe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c index ffbce59..add6738 100644 ---

[U-Boot] [PATCH v3 09/16] arm: dts: dra7: add qspi register maps for memory map and control module

2015-11-18 Thread Mugunthan V N
Add qspi memory map and control module register maps to device tree. Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass --- arch/arm/dts/dra7.dtsi | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/arch/arm/dts/dra7.dtsi

[U-Boot] [PATCH v3 07/16] dts: dra7: add spi alias for qspi

2015-11-18 Thread Mugunthan V N
add spi alias for qspi so that spi probes the device and driver successfully. Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass --- arch/arm/dts/dra7.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/dts/dra7.dtsi

[U-Boot] [PATCH v3 10/16] drivers: mtd: spi: sf_probe: add compatible for spansion spi flash

2015-11-18 Thread Mugunthan V N
Add compatible for spansion 32MiB spi flash s25fl256s1. Signed-off-by: Mugunthan V N --- drivers/mtd/spi/sf_probe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c index bc05d30..ffbce59 100644 ---

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

2015-11-18 Thread Heiko Schocher
Hello Tom, please pull from u-boot-ubi master The following changes since commit 736d1746fb7b8f7cd70657a4a72db2b6bd8de40e: itest: add missing break statements to evalexp() (2015-11-18 15:29:00 -0500) are available in the git repository at: git://git.denx.de/u-boot-ubi.git master for you

Re: [U-Boot] [PATCH v6 00/23] Bring up rk3036 uboot

2015-11-18 Thread hl
Hi Simon, On 19/11/15 12:44, Simon Glass wrote: Hi Lin, On 17 November 2015 at 18:19, hl wrote: Hi Simon, On 18/11/15 01:38, Simon Glass wrote: Hi Lin, On 16 November 2015 at 23:20, Lin Huang wrote: This series patch bring up rk3036 uboot,

[U-Boot] [PATCH v3 03/16] drivers: spi: ti_qspi: prepare driver for DM conversion

2015-11-18 Thread Mugunthan V N
Prepare driver for DM conversion. Signed-off-by: Mugunthan V N --- drivers/spi/ti_qspi.c | 276 +++--- 1 file changed, 151 insertions(+), 125 deletions(-) diff --git a/drivers/spi/ti_qspi.c b/drivers/spi/ti_qspi.c index

[U-Boot] [PATCH v3 00/16] device model bring-up of ti-qspi on dra72, dra74 and am437x-sk evm

2015-11-18 Thread Mugunthan V N
This patch series enables ti_qspi to adopt driver model. This has been tested on dra72, dra74 and am437x-sk evms (logs [1]). Also pushed a branch for testing [2] [1]: http://pastebin.ubuntu.com/13341771/ [2]: git://git.ti.com/~mugunthanvnm/ti-u-boot/mugunth-ti-u-boot.git qspi-v3 Changes from

[U-Boot] [PATCH v3 02/16] drivers: spi:ti_qspi: change ti_qspi_slave to ti_qspi_priv for driver model conversion

2015-11-18 Thread Mugunthan V N
Changing the ti_qspi_priv structure and its instance names from to priv for driver mode conversion. Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass Reviewed-by: Tom Rini Reviewed-by: Jagan Teki ---

[U-Boot] [PATCH v3 05/16] spi: Add support for dual and quad mode

2015-11-18 Thread Mugunthan V N
spi bus can support dual and quad wire data transfers for tx and rx. So defining dual and quad modes for both tx and rx. Also add support to parse bus width used for spi tx and rx transfers. Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass

[U-Boot] [PATCH v3 06/16] dra7xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl

2015-11-18 Thread Mugunthan V N
Since OMAP's spl doesn't support DM currently, do not define DM_SPI and DM_SPI_FLASH for spl build. Signed-off-by: Mugunthan V N --- include/configs/dra7xx_evm.h | 5 + 1 file changed, 5 insertions(+) diff --git a/include/configs/dra7xx_evm.h

[U-Boot] [PATCH v3 01/16] drivers: spi: ti_qspi: do not hard code chip select for memory map configuration

2015-11-18 Thread Mugunthan V N
To enable memory map in dra7xx, specific chip select must be written to control module register. But this hard coded to chip select 1, fixing it by writing the specific chip select value to control module register. Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass

Re: [U-Boot] [PATCH v2 11/13] ns16550: zap CONFIG_NS16550_SERIAL

2015-11-18 Thread Bin Meng
Hi Thomas, On Wed, Nov 18, 2015 at 10:36 PM, Thomas Chou wrote: > Hi Bin, > > > On 2015年11月18日 22:09, Bin Meng wrote: >> >> Hi Thomas, >> >> On Wed, Nov 18, 2015 at 9:44 PM, Thomas Chou wrote: >>> >>> Zap CONFIG_NS16550_SERIAL, as the unification of

[U-Boot] [PATCH v3 13/16] defconfig: dra74_evm: enable spi driver model

2015-11-18 Thread Mugunthan V N
enable spi driver model for dra74_evm as ti_qspi supports driver model Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass Reviewed-by: Tom Rini --- configs/dra74_evm_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git

[U-Boot] [PATCH v3 14/16] am43xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl

2015-11-18 Thread Mugunthan V N
Since OMAP's spl doesn't support DM currently, do not define DM_SPI and DM_SPI_FLASH for spl build. Signed-off-by: Mugunthan V N --- include/configs/am43xx_evm.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/am43xx_evm.h

[U-Boot] [PATCH v3 15/16] arm: dts: am4372: add qspi register maps for memory map

2015-11-18 Thread Mugunthan V N
Add qspi memory map address to device tree. Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass --- arch/arm/dts/am4372.dtsi | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/arch/arm/dts/am4372.dtsi b/arch/arm/dts/am4372.dtsi

[U-Boot] [PATCH v3 16/16] defconfig: am437x_sk_evm: enable spi driver model

2015-11-18 Thread Mugunthan V N
enable spi driver model for am437x_sk_evm as ti_qspi supports driver model Signed-off-by: Mugunthan V N Reviewed-by: Simon Glass Reviewed-by: Tom Rini --- configs/am437x_sk_evm_defconfig | 3 +++ 1 file changed, 3 insertions(+) diff

Re: [U-Boot] [PATCH v6 00/23] Bring up rk3036 uboot

2015-11-18 Thread Simon Glass
Hi Lin, On 17 November 2015 at 18:19, hl wrote: > > Hi Simon, > > > > On 18/11/15 01:38, Simon Glass wrote: >> >> Hi Lin, >> >> On 16 November 2015 at 23:20, Lin Huang wrote: >>> >>> This series patch bring up rk3036 uboot, since rk3036 only 4K size

Re: [U-Boot] [U-Boot, V4, 02/13] spl: mmc: add break statements in spl_mmc_load_image()

2015-11-18 Thread Tom Rini
On Sun, Nov 08, 2015 at 05:11:43PM +0200, Nikita Kiryanov wrote: > The original intention of the mmc load_image() function was to try multiple > boot modes before failing. This is evident by the lack of break statements > in the switch, and the following line in the default case: > puts("spl:

Re: [U-Boot] Allow fw env tools to be available as library

2015-11-18 Thread Tom Rini
On Fri, Oct 30, 2015 at 02:57:04PM +0100, Stefano Babic wrote: > Sometimes it can be useful to link the fw_ tools instead > of having the fw_setenv/fw_printenv installed. > Patch exports the tool as library and allowes to link it > with own programs. > > Signed-off-by: Stefano Babic

Re: [U-Boot] [U-Boot, v2] board: ti: beagle_x15: Rename to indicate support for TI am57xx evms

2015-11-18 Thread Tom Rini
On Thu, Oct 29, 2015 at 04:50:43PM -0500, Kipisz, Steven wrote: > BeagleBoard X15 (http://beagleboard.org/x15) support in u-boot does > actually support two different platform configuration offered by > TI. In addition to BeagleBoard X15, it also supports the TMDXEVM5728 > (or more commonly known

Re: [U-Boot] [U-Boot,V4,01/13] spl: nand: remove code duplication

2015-11-18 Thread Tom Rini
On Sun, Nov 08, 2015 at 05:11:42PM +0200, Nikita Kiryanov wrote: > Remove code duplication in spl_nand_load_image(). > > No functional changes. > > Signed-off-by: Nikita Kiryanov > Cc: Scott Wood > Cc: Igor Grinberg >

Re: [U-Boot] [U-Boot, 1/2] test: fat: add error-checking to non-contig test

2015-11-18 Thread Tom Rini
On Tue, Nov 17, 2015 at 10:29:07AM -0700, Stephen Warren wrote: > From: Stephen Warren > > Check the result code of all command that are executed. Without this, > if the fallocate invocation fails (this feature is not supported on ext3 > filesystems for example) then a

Re: [U-Boot] [PATCH v2] armv8: fsl-layerscale: Rewrite reserving memory for MC and debug server

2015-11-18 Thread York Sun
On 11/18/2015 02:15 PM, Scott Wood wrote: > On Wed, 2015-11-18 at 10:05 -0800, York Sun wrote: >> MC and debug server are not board-specific. Instead of reserving >> memory in each board file, a weak function is introduced in board_f.c >> to replace macro CONFIG_SYS_MEM_TOP_HIDE for more

Re: [U-Boot] [PATCH v2] armv8: fsl-layerscale: Rewrite reserving memory for MC and debug server

2015-11-18 Thread Scott Wood
On Wed, 2015-11-18 at 14:48 -0800, York Sun wrote: > > On 11/18/2015 02:15 PM, Scott Wood wrote: > > On Wed, 2015-11-18 at 10:05 -0800, York Sun wrote: > > > MC and debug server are not board-specific. Instead of reserving > > > memory in each board file, a weak function is introduced in

Re: [U-Boot] [PATCH v2] armv8: fsl-layerscale: Rewrite reserving memory for MC and debug server

2015-11-18 Thread York Sun
On 11/18/2015 02:56 PM, Scott Wood wrote: > >>> I think it'd be a bit more straightforward for this to return the new >>> ram_top >>> rather than the size to be subtracted. >> >> That will be inaccurate. For layerscape SoCs, the gd->ram_size is known at >> this >> point, but the address is

Re: [U-Boot] [RESEND PATCH v5 1/6] cgtqmx6eval: Add SPI NOR flash support

2015-11-18 Thread Fabio Estevam
Hi Jagan, On Tue, Nov 17, 2015 at 4:07 AM, Jagan Teki wrote: > On 14 November 2015 at 00:19, Otavio Salvador wrote: >> Add SPI NOR support: >> >> => sf probe >> SF: Detected SST25VF032B with page size 256 Bytes, erase size 4 KiB, total 4 >> MiB >>

<    1   2