Re: [U-Boot] [PATCH 2/6] ARM: keystone2: Switch to using the poweroff command

2016-03-18 Thread Tom Rini
On Wed, Mar 16, 2016 at 11:03:04AM -0400, Tom Rini wrote: > Now that we have a standard way to power off the hardware, switch to > using that rather than our own command. > > Cc: Vitaly Andrianov > Cc: Nishanth Menon > Cc: Lokesh Vutla >

[U-Boot] [PATCH 05/14] part_efi: Drop the NULL check on dev_desc in part_print_efi()

2016-03-18 Thread Simon Glass
This cannot be NULL since part_print() calls this function and requires it to be non-NULL. Reported-by: Coverity (CID: 138498) Signed-off-by: Simon Glass --- disk/part_efi.c | 4 1 file changed, 4 deletions(-) diff --git a/disk/part_efi.c b/disk/part_efi.c index

Re: [U-Boot] fdt problem

2016-03-18 Thread Peng Fan
On Tue, Mar 15, 2016 at 09:27:51AM +0100, Safa Hamza wrote: >the same problem ... but when i wrote fdt resize before U-Boot# fdt mknode / >chosen modules no error appeared  >is that right ? Yeah. correct. "fdt mknode /xxx" needs more space, so need to first "fdt addr xxx [0x10]", then "fdt

Re: [U-Boot] [PATCH 1/2] ARM: bcm283x: don't always define CONFIG_BCM2835

2016-03-18 Thread Stephen Warren
On 03/17/2016 09:54 AM, Tom Rini wrote: On Wed, Mar 16, 2016 at 09:40:56PM -0600, Stephen Warren wrote: Currently, CONFIG_BCM2835 is defined for all BCM283x builds and _BCM2836 is defined when building for that SoC. That means there isn't a single define that means "exactly BCM2835". This will

Re: [U-Boot] [PATCH 5/5] bcm2835 video: Map fb as cached

2016-03-18 Thread Andreas Färber
Am 15.03.2016 um 18:21 schrieb Alexander Graf: > The bcm2835 frame buffer is in RAM, so we can easily map it as cached and gain > all the glorious performance boost that brings with it. > > Signed-off-by: Alexander Graf > --- > drivers/video/bcm2835.c | 6 ++ > 1 file

Re: [U-Boot] [PATCH 1/3] ARM: keystone2: Convert BOOTBITMASK to static inline function

2016-03-18 Thread Tom Rini
On Tue, Mar 15, 2016 at 10:25:51AM -0500, Nishanth Menon wrote: > BOOTBITMASK is almost impossible to decode, so convert it into a simpler > static line functions of equivalent solution. > > Reported-by: Tom Rini > Signed-off-by: Nishanth Menon Reviewed-by:

Re: [U-Boot] Could you please update your denx.de U-Boot repos?

2016-03-18 Thread Stephen Warren
On 03/18/2016 10:11 AM, Stephen Warren wrote: I'm running some automated build/test cycles on a variety of git repos on denx.de. The repos below (master branch in all cases) all have some build and/or test failures simply because the code in those branches is very old. Could I ask you to push an

Re: [U-Boot] [U-Boot, 20/27] omap4: Check warm reset for reboot mode validity

2016-03-18 Thread Tom Rini
On Sat, Feb 27, 2016 at 07:19:08PM +0100, Paul Kocialkowski wrote: > Since the SAR registers are filled with garbage on cold reset, this checks > for a > warm reset to assert the validity of reboot mode. > > Signed-off-by: Paul Kocialkowski Applied to u-boot/master, thanks!

[U-Boot] [PATCH] mmc: bcm2835: fix 64-bit build warning

2016-03-18 Thread Stephen Warren
Fixes: drivers/mmc/bcm2835_sdhci.c: In function ‘bcm2835_sdhci_init’: drivers/mmc/bcm2835_sdhci.c:181:17: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] Signed-off-by: Stephen Warren --- drivers/mmc/bcm2835_sdhci.c | 2 +- 1 file changed,

Re: [U-Boot] [U-Boot, 04/27] omap_hsmmc: Board-specific TWL6030 MMC power initialization

2016-03-18 Thread Tom Rini
On Sat, Feb 27, 2016 at 07:18:52PM +0100, Paul Kocialkowski wrote: > Boards using the TWL6030 regulator may not all use the LDOs the same way. > Some might also not use MMC1 at all, so VMMC would't have to be enabled. > > This delegates TWL6030 MMC power initializations to board-specific

Re: [U-Boot] [PATCH 00/18] sf: fix support of QSPI memories and controllers

2016-03-18 Thread Cyrille Pitchen
Le 15/03/2016 19:21, Jagan Teki a écrit : > On Tuesday 15 March 2016 11:42 PM, Cyrille Pitchen wrote: >> Hi all, >> >> This series of patches fixes and extend the support of QSPI memories >> in the SPI flash framework. The updates are split into many parts to >> make it easier to understand and

Re: [U-Boot] [PATCH 1/2] ARM: bcm283x: don't always define CONFIG_BCM2835

2016-03-18 Thread Tom Rini
On Thu, Mar 17, 2016 at 11:35:39AM -0600, Stephen Warren wrote: > On 03/17/2016 09:54 AM, Tom Rini wrote: > >On Wed, Mar 16, 2016 at 09:40:56PM -0600, Stephen Warren wrote: > > > >>Currently, CONFIG_BCM2835 is defined for all BCM283x builds and _BCM2836 > >>is defined when building for that SoC.

Re: [U-Boot] [U-Boot,v6,19/30] efi_loader: Add "bootefi" command

2016-03-18 Thread Tom Rini
On Thu, Mar 10, 2016 at 12:27:20AM +0100, Alexander Graf wrote: > In order to execute an EFI application, we need to bridge the gap between > U-Boot's notion of executing images and EFI's notion of doing the same. > > The best path forward IMHO here is to stick completely to the way U-Boot >

[U-Boot] [PATCH 2/2] net: xilinx_axi: Clear Isolate bit if found during phy setup

2016-03-18 Thread Michal Simek
From: Siva Durga Prasad Paladugu In SGMII cases the isolate bit might set after DMA and ethernet resets and hence check and clear during setup_phy if it was set. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek

[U-Boot] [PATCH 4/6] cmd: scsi: Group the command portion together, guard with !CONFIG_SPL_BUILD

2016-03-18 Thread Tom Rini
When we switch to including all linker lists in U-Boot it is important to not include commands as that may lead to link errors due to other things we have already discarded. In this case, the SCSI code needs a lot of attention so for now just guard the command portions. Signed-off-by: Tom Rini

Re: [U-Boot] [U-Boot, 01/10] ti_armv7_keystone2: configs: add usb mass storage support

2016-03-18 Thread Tom Rini
On Wed, Mar 09, 2016 at 03:39:30PM +0530, Lokesh Vutla wrote: > From: Mugunthan V N > > Add USB mass storage support so that kernel can be read from > connected usb storage. > > Signed-off-by: Mugunthan V N > Signed-off-by: Lokesh Vutla

[U-Boot] [PATCH 1/2] net: export eth_setenv_enetaddr_by_index() to net.h

2016-03-18 Thread Roger Quadros
Some TI boards (e.g. IDK) have 4 to 6 ethernet ports and this function is handy at board.c to configure the MAC address of the ports. Signed-off-by: Roger Quadros --- include/net.h | 17 + 1 file changed, 17 insertions(+) diff --git a/include/net.h

Re: [U-Boot] [PATCH v2 0/5] Enable caches for the RPi2

2016-03-18 Thread Stephen Warren
On 03/17/2016 01:58 AM, Alexander Graf wrote: On 17.03.16 05:26, Stephen Warren wrote: On 03/16/2016 08:41 AM, Alexander Graf wrote: This patch set converts the Raspberry Pi 2 system to properly make use of the caches available in it. Because we're running in HYP mode, we first need to

Re: [U-Boot] [PATCH v3 03/10] x86: Move common PCH code into a common place

2016-03-18 Thread Bin Meng
On Wed, Mar 16, 2016 at 9:44 PM, Simon Glass wrote: > The SATA indexed register write functions are common to several Intel PCHs. > Move this into a common location. > > Signed-off-by: Simon Glass > --- > > Changes in v3: > - Rename pch_common.c to pch.c > >

Re: [U-Boot] [PATCH 14/14] usb: Correct return value in usb_stor_info()

2016-03-18 Thread Marek Vasut
On 03/16/2016 02:45 PM, Simon Glass wrote: > This should return 0 on success, not 1. Fix it. > > Signed-off-by: Simon Glass Yikes. Thanks for finding this. Acked-by: Marek Vasut > --- > > common/usb_storage.c | 2 +- > 1 file changed, 1 insertion(+), 1

Re: [U-Boot] [U-Boot, v5, 20/30] efi_loader: Implement memory allocation and map

2016-03-18 Thread Tom Rini
On Fri, Mar 04, 2016 at 01:10:04AM +0100, Alexander Graf wrote: > The EFI loader needs to maintain views of memory - general system memory > windows as well as used locations inside those and potential runtime service > MMIO windows. > > To manage all of these, add a few helpers that maintain an

Re: [U-Boot] [PATCH 1/2] dm: gpio: mxc: fix mxc_gpio_bank_get_value

2016-03-18 Thread Fabio Estevam
Hi Peng, On Tue, Mar 15, 2016 at 10:27 PM, Peng Fan wrote: > If set the SION bit, we need to change the pinmux settings in device tree, > however device tree are introduced from linux kernel. I would not like > to change the pinmux setting value. > > So I choose to use

Re: [U-Boot] [PATCH 0/3] Fix multipe typos "choosen" instead of "chosen" in dts/code

2016-03-18 Thread Alexander Merkle
Hi, may be the subject is misleading. The DTS/DTB entry should be named "chosen" but it was "choosen" with "oo" in the git master. Have a look to the commits. diff --git a/arch/arm/dts/vf610-twr.dts b/arch/arm/dts/vf610-twr.dts index a4ccbcb..237aa8d 100644 --- a/arch/arm/dts/vf610-twr.dts

Re: [U-Boot] [PATCH v1 1/1] fastboot: Update getvar command to get 'userdata' partition size

2016-03-18 Thread Boris Brezillon
Hi Rob, On Fri, 20 Feb 2015 08:54:56 -0600 Rob Herring wrote: > On Wed, Feb 18, 2015 at 1:52 PM, Dileep Katta wrote: > > This patch adds functionality to getvar command to get the userdata > > partition > > size. > > This is non-standard and

Re: [U-Boot] [PATCH 0/3] Fix multipe typos "choosen" instead of "chosen" in dts/code

2016-03-18 Thread Bhuvanchandra DV
On 03/17/2016 08:50 PM, Alexander Merkle wrote: Hi, may be the subject is misleading. The DTS/DTB entry should be named "chosen" but it was "choosen" with "oo" in the git master. Have a look to the commits. My bad! got it. diff --git a/arch/arm/dts/vf610-twr.dts

Re: [U-Boot] [U-Boot,v2] ARM: DRA7xx: Enable NFS boot command

2016-03-18 Thread Tom Rini
On Fri, Mar 11, 2016 at 03:22:20PM -0600, Andrew F. Davis wrote: > NFS loading works on DRA7 variants, remove the undefinition. > > Signed-off-by: Andrew F. Davis > Reviewed-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description:

Re: [U-Boot] buildman: arm: undefined reference to `__aeabi_ldivmod'

2016-03-18 Thread Jagan Teki
On 14 March 2016 at 23:44, Stephen Warren wrote: > On 03/14/2016 11:32 AM, Jagan Teki wrote: >> >> Hi Simon, >> >> On 12 March 2016 at 06:02, Simon Glass wrote: >>> >>> +Stephen >>> >>> Hi Jagan, >>> >>> On 11 March 2016 at 01:00, Jagan Teki

[U-Boot] [PATCH 1/3] sunxi: Fix clock_twi_onoff for sun6i

2016-03-18 Thread Hans de Goede
The clock_sun6i.c implementation was not deasserting the reset for the regular i2c controllers, this commit fixes this. Signed-off-by: Hans de Goede --- arch/arm/cpu/armv7/sunxi/clock_sun6i.c | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git

Re: [U-Boot] [U-Boot, 08/10] k2g: configs: Add support to save env in MMC

2016-03-18 Thread Tom Rini
On Wed, Mar 09, 2016 at 03:39:37PM +0530, Lokesh Vutla wrote: > Adding support to save env in MMC on k2g platforms, as it is the > preferred peripheral in saving env. > > Signed-off-by: Lokesh Vutla > Reviewed-by: Tom Rini Applied to u-boot/master,

Re: [U-Boot] [PATCH v3 07/10] x86: Support a chained-boot development flow

2016-03-18 Thread Bin Meng
On Wed, Mar 16, 2016 at 9:44 PM, Simon Glass wrote: > Sometimes it is useful to jump into U-Boot directly from coreboot or UEFI > without any 16-bit init. This can help during development by allowing U-Boot > to avoid doing all the init required by the platform. > > U-Boot

Re: [U-Boot] [PATCH 02/14] mkimage: Correct file being closed twice in fit_import_data()

2016-03-18 Thread Tom Rini
On Wed, Mar 16, 2016 at 07:45:32AM -0600, Simon Glass wrote: > The code flows through to the end of the function, so we don't need another > close() before this. Remove it. > > Reported-by: Coverity (CID: 138504) > > Signed-off-by: Simon Glass Reviewed-by: Tom Rini

[U-Boot] [PATCH] fastboot: allow retrieving fastboot variables from env

2016-03-18 Thread Boris Brezillon
From: Rob Herring Some boards need to expose device specific variable through fastboot (to adpat the flashing script depending on hardware revision for example). Provide a way to expose custom fastboot variables. Note that all variables meant to be exposed through

Re: [U-Boot] [U-Boot, v5, 13/30] include/efi_api.h: Add more detailed API definitions

2016-03-18 Thread Tom Rini
On Fri, Mar 04, 2016 at 01:09:57AM +0100, Alexander Graf wrote: > The EFI API header is great, but missing a good chunk of function prototype, > GUID defines and enum declarations. > > This patch extends it to cover more of the EFI API. It's still not 100% > complete, but sufficient enough for

Re: [U-Boot] [PATCH 12/14] mkimage: Ensure file is closed in fdt_property_file()

2016-03-18 Thread Tom Rini
On Wed, Mar 16, 2016 at 07:45:42AM -0600, Simon Glass wrote: > The file that is opened is not closed in all cases. Fix it. > > Reported-by: Coverity (CID: 138490) > Signed-off-by: Simon Glass Reviewed-by: Tom Rini -- Tom signature.asc Description:

[U-Boot] U-Boot broken for LS2080

2016-03-18 Thread york sun
Alison and Prabhakar, Heads up, U-Boot is broken for LS2080 boards. Git bisects to this commit 7985cdf74b280f86a1c7440298a84f1fb2876fd9 arm64: Remove non-full-va map code Please take a deeper look at the MMU tables. York ___ U-Boot mailing list

Re: [U-Boot] [PATCH] Add CONFIG_GMAC_TX_DELAY=4 for OlinuXino Lime2

2016-03-18 Thread Michael Haas
On 03/18/2016 08:02 PM, Karsten Merker wrote: > The installer supports a number of systems that can only load images > of limited size, therefore the installer includes only an > installation-related subset of all the kernel modules and i2c-mv64xxx > currently isn't among those. This hasn't been a

[U-Boot] [PATCH V2] serial: add BCM283x mini UART driver

2016-03-18 Thread Stephen Warren
The RPi3 typically uses the regular UART for high-speed communication with the Bluetooth device, leaving us the mini UART to use for the serial console. Add support for this UART so we can use it. Signed-off-by: Stephen Warren --- v2: Add clock and skip_init fields to

Re: [U-Boot] [RFC PATCH 1/2] add block device cache

2016-03-18 Thread Stephen Warren
On 03/16/2016 03:40 PM, Eric Nelson wrote: Signed-off-by: Eric Nelson A patch description would be useful here; the cover letter wouldn't be checked in. diff --git a/drivers/block/cache_block.c b/drivers/block/cache_block.c +static int cache_iftype = -1; +static int

[U-Boot] [PATCH 08/13] ARM: uniphier: enable DDR PHY parameter dump commands by default

2016-03-18 Thread Masahiro Yamada
These commands are not necessarily needed for usual operations (they are useful in case of DDR memory trouble), but enabling them by default would be nice in terms of the compilation test coverage. They are small enough, so limited impact on the memory footprint. Signed-off-by: Masahiro Yamada

Re: [U-Boot] [PATCH v3 09/10] x86: Add missing pci.h header in me_common.h

2016-03-18 Thread Bin Meng
On Wed, Mar 16, 2016 at 9:44 PM, Simon Glass wrote: > This uses PCI so should include the header. > > Signed-off-by: Simon Glass > --- > > Changes in v3: > - Add new patch top include missing pci.h header in me_common.c > > Changes in v2: None > >

Re: [U-Boot] [U-Boot, 25/27] input: TWL6030 input support for power button, USB and charger

2016-03-18 Thread Tom Rini
On Sat, Feb 27, 2016 at 07:19:13PM +0100, Paul Kocialkowski wrote: > This adds support for detecting a few inputs exported by the TWL6030. > Currently-supported inputs are the power button, USB and charger presence. > > Signed-off-by: Paul Kocialkowski Applied to

Re: [U-Boot] [U-Boot,v5,16/30] efi_loader: Add console interface

2016-03-18 Thread Tom Rini
On Fri, Mar 04, 2016 at 01:10:00AM +0100, Alexander Graf wrote: > One of the basic EFI interfaces is the console interface. Using it an EFI > application can interface with the user. This patch implements an EFI console > interface using getc() and putc(). > > Today, we only implement text based

Re: [U-Boot] [PATCH v4 08/14] armv8 : ls2080: Add config for endianess of CCSR GUR

2016-03-18 Thread york sun
On 02/08/2016 09:27 PM, Saksham Jain wrote: > The GUR (DCFG) registers in CCSR space are in LE format > for ls2080/ls2085. Defined a config CONFIG_SYS_FSL_CCSR_GUR_LE in Since ls2085 is a variation of ls2080, you don't need to mention ls2085 if not specifically dealing with it. York

[U-Boot] [PATCH 3/4] dts: add dts file for Atmel sama5d2 xplained board

2016-03-18 Thread Cyrille Pitchen
Signed-off-by: Cyrille Pitchen --- arch/arm/dts/Makefile | 3 +++ arch/arm/dts/at91-sama5d2_xplained.dts | 33 + arch/arm/dts/sama5d2.dtsi | 19 +++ 3 files changed, 55 insertions(+) create

Re: [U-Boot] [PATCH 00/18] sf: fix support of QSPI memories and controllers

2016-03-18 Thread Albert ARIBAUD
Hello Jagan, On Wed, 16 Mar 2016 22:04:23 +0530, Jagan Teki wrote: > Hi Albert, > > On Wednesday 16 March 2016 09:53 PM, Albert ARIBAUD wrote: > > Hello Jagan, > > > > On Wed, 16 Mar 2016 19:44:26 +0530, Jagan Teki > > wrote: > >> On Wednesday 16 March

Re: [U-Boot] [PATCH 00/18] sf: fix support of QSPI memories and controllers

2016-03-18 Thread Cyrille Pitchen
Hi Stefan, Le 18/03/2016 14:48, Stefan Roese a écrit : > Hi All, > > please excuse the late reply to this thread. But I'm very interested > in QSPI, as one of my customers uses Micron QSPI NOR and really wants > to take full advantage of the device (quad access) to speed up the > overall boot

[U-Boot] Problems with D-cache invalidation in Freescale eSDHC driver

2016-03-18 Thread mario . six
Hello, I've been working on a QorIQ P1022 board (controlcenterd) to run the newest U-Boot on it, and I encountered some strange behavior. During boot, we get these error messages " ERROR: Cannot import environment: errno = 12 at common/env_common.c:221/env_import() *** Warning - import

[U-Boot] [PATCH 07/14] mkimage: Close the file when unable to get its size

2016-03-18 Thread Simon Glass
There is a missing close() on the error path. Add it. Reported-by: Coverity (CID: 138496) Signed-off-by: Simon Glass --- tools/imagetool.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/imagetool.c b/tools/imagetool.c index 351211c..916ab96 100644 ---

Re: [U-Boot] [U-Boot, v5, 30/30] efi_loader: Pass proper device path in on boot

2016-03-18 Thread Tom Rini
On Fri, Mar 04, 2016 at 01:10:14AM +0100, Alexander Graf wrote: > EFI payloads can query for the device they were booted from. Because > we have a disconnect between loading binaries and running binaries, > we passed in a dummy device path so far. > > Unfortunately that breaks grub2's logic to

Re: [U-Boot] [PATCH 1/3] Fix typo in chosen parameter in vf610-twr.dts

2016-03-18 Thread Bin Meng
On Thu, Mar 17, 2016 at 10:44 PM, Alexander Merkle wrote: > Fix typo "choosen" instead of "chosen" in vf610-twr.dts. > Fixes boot process and terminal output for Vybrid series. > > Signed-off-by: Alexander Merkle > --- > >

[U-Boot] [PATCH 06/14] part_efi: Drop NULL check in part_get_info_efi()

2016-03-18 Thread Simon Glass
This cannot be NULL since part_get_info() calls this function and requires it to be non-NULL. Reported-by: Coverity (CID: 138497) Signed-off-by: Simon Glass --- disk/part_efi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disk/part_efi.c

Re: [U-Boot] [U-Boot, 26/27] kc1: Power off when the power on reason is not a valid one

2016-03-18 Thread Tom Rini
On Sat, Feb 27, 2016 at 07:19:14PM +0100, Paul Kocialkowski wrote: > Some power on reasons are not desirable (e.g. too short press on the power > button), battery plug. Thus, power off the device when one of those occurs. > > Signed-off-by: Paul Kocialkowski Applied to

Re: [U-Boot] [PATCH] sun7i: Add support for the Itead Core EVB

2016-03-18 Thread Code Kipper
Please ignoreforgot that I'd added all the relevant emails to my git config. CK On 17 March 2016 at 14:33, wrote: > From: Marcus Cooper > > --- > arch/arm/dts/Makefile | 1 + > arch/arm/dts/sun7i-a20-itead-core-evb.dts |

Re: [U-Boot] Problems with D-cache invalidation in Freescale eSDHC driver

2016-03-18 Thread Peng Fan
Hi Mario, On Fri, Mar 18, 2016 at 09:16:48AM +0100, mario@gdsys.cc wrote: > >Hello, > >I've been working on a QorIQ P1022 board (controlcenterd) to run the newest >U-Boot on it, and I encountered some strange behavior. > >During boot, we get these error messages > >" >ERROR: Cannot import

[U-Boot] [PATCH] image-fit: Change FIT prefix for configurations

2016-03-18 Thread Sáreník Ján
Instead of `bootm ${loadaddr}#conf@1` one uses `bootm ${loadaddr}_conf@1` This fixes the bug with using just `bootm #conf@2` without $loadaddr where text starting with # is interpreted as a comment. --- cmd/bootm.c | 2 +- common/image-fit.c

[U-Boot] [PATCH 08/14] mkimage: Add a missing free() to fit_import_data()

2016-03-18 Thread Simon Glass
The space allocated to fdt is not freed on error. Fix it. Reported-by: Coverity (CID: 138494) Signed-off-by: Simon Glass --- tools/fit_image.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/fit_image.c b/tools/fit_image.c index 8a93ea3..8d58370 100644 ---

Re: [U-Boot] [PATCH 1/2] dm: gpio: mxc: fix mxc_gpio_bank_get_value

2016-03-18 Thread Peng Fan
On Wed, Mar 16, 2016 at 09:48:24AM -0300, Fabio Estevam wrote: >Hi Peng, > >On Tue, Mar 15, 2016 at 10:27 PM, Peng Fan wrote: > >> If set the SION bit, we need to change the pinmux settings in device tree, >> however device tree are introduced from linux kernel. I would not

Re: [U-Boot] [PATCH 2/3] ARM: keystone2: Convert BOOT_READ_BITFIELD into static inline function

2016-03-18 Thread Tom Rini
On Tue, Mar 15, 2016 at 10:25:52AM -0500, Nishanth Menon wrote: > BOOT_READ_BITFIELD can easily be a static inline function and be a > little more readable with the same functionality. > > Reported-by: Tom Rini > Signed-off-by: Nishanth Menon Reviewed-by: Tom

[U-Boot] [PATCH 1/2] efi_stub: Move carriage return before line feed in putc()

2016-03-18 Thread Bin Meng
A carriage return needs to execute before a line feed. Signed-off-by: Bin Meng --- lib/efi/efi_stub.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/efi/efi_stub.c b/lib/efi/efi_stub.c index e138709..8b4bb4e 100644 --- a/lib/efi/efi_stub.c +++

[U-Boot] Please pull u-boot-x86

2016-03-18 Thread Bin Meng
Hi Tom, The following changes since commit f8a4826383860318d90079bf40402447d369ad87: spl: arm: Make sure to include all of the u_boot_list entries (2016-03-16 15:27:55 -0400) are available in the git repository at: git://git.denx.de/u-boot-x86.git master for you to fetch changes up to

[U-Boot] [PATCH v4 2/4] drivers: remove writes{b, w, l, q} and reads{b, w, l, q}.

2016-03-18 Thread Purna Chandra Mandal
Definition of writes{bwlq}, reads{bwlq} are now added into arch specific asm/io.h. So removing them from drivers to fix re-definition error Signed-off-by: Purna Chandra Mandal --- Changes in v4: None Changes in v3: None Changes in v2: None

[U-Boot] [PATCH v3 1/2] flash: add device ID for Microchip PIC32 internal flash.

2016-03-18 Thread Purna Chandra Mandal
Microchip PIC32 has internal parallel flash (non-CFI compliant). These flash devices do not support any identifier command so no standard IDs. Added unique IDs to seperate these flash devices from others supported by U-Boot. Signed-off-by: Purna Chandra Mandal ---

Re: [U-Boot] [PATCH 2/2] armv8/ls1043aqds: use configuarable clock for non-QSPI boot

2016-03-18 Thread Qianyu Gong
Hi York, 在 2016年3月19日,上午12:53,york sun > 写道: On 03/14/2016 03:06 AM, Gong Qianyu wrote: For QSPI boot and SD boot with QSPI, we could only read from FPGA through I2C to get the system clock and DDR clock info. However in U-Boot booting flow, I2C is not