Re: [U-Boot] boot a bios/uefi with x86_64, without grub

2018-07-31 Thread Thierry Gayet
forget my last question 'cos i have found the solution by adding a Startup.nsh juste beside the efi boot app : echo -off if exist .\u-boot-payload.efi then goto FOUNDTOOL endif if exist fs0:\u-boot-payload.efi then fs0: goto FOUNDTOOL endif if exist fs1:\u-boot-payload.efi then fs1: goto

Re: [U-Boot] [PATCH 1/2] spi: kirkwood: Get drvdata in .ofdata_to_platdata

2018-07-31 Thread Jagan Teki
On Thu, Mar 15, 2018 at 5:03 PM, Jagan Teki wrote: > Get the is_errata_50mhz_ac in .ofdata_to_platdata, and > reuse it in .set_mode this can eventually initialized > dt code at once and adding room to add platdata. > > Signed-off-by: Jagan Teki > --- Applied to u-boot-spi/master

Re: [U-Boot] [PATCH] spi: kirkwood: add orion-spi compatible string

2018-07-31 Thread Jagan Teki
On Tue, May 8, 2018 at 10:47 AM, Jagan Teki wrote: > On Tue, May 8, 2018 at 4:24 AM, Chris Packham wrote: >> This matches the compatible string used by the Linux kernel. This will >> allow u-boot to use the same device tree files. >> >> Signed-off-by: Chris Packham >> --- >> This applies on top

Re: [U-Boot] boot a bios/uefi with x86_64, without grub

2018-07-31 Thread Thierry Gayet
hi, Well, all i want it to launch my u-boot-efi (payload mode) directly by the bios/uefi. For now, for my tests, i have used an usbkey that have a partition with a "EFI FAT 12/16/32" type. Inside, i have copying my uboot app efi inside this directory. This is the way i am using for creating an U

Re: [U-Boot] [PATCH 4/4] scsi: ceva: add ls1021a soc support.

2018-07-31 Thread Michal Simek
On 1.8.2018 08:15, Peng Ma wrote: > Add ahci compatible support for ls1021a soc. > > Signed-off-by: Peng Ma > --- > drivers/ata/sata_ceva.c | 24 > 1 files changed, 24 insertions(+), 0 deletions(-) > > diff --git a/drivers/ata/sata_ceva.c b/drivers/ata/sata_ceva.c > i

Re: [U-Boot] [PATCH v5 00/27] SPI-NAND support

2018-07-31 Thread Jagan Teki
On Wed, Aug 1, 2018 at 12:55 AM, Boris Brezillon wrote: > Hi Jagan, > > On Tue, 31 Jul 2018 20:03:47 +0530 > Jagan Teki wrote: > >> > Applied to u-boot-spi/master >> >> Look like we have some build issues [1]? > > Yep, I reproduced the issue. Looks like u-boot Makefile hierarchy is a > bit differ

[U-Boot] [PATCH 4/4] scsi: ceva: add ls1021a soc support.

2018-07-31 Thread Peng Ma
Add ahci compatible support for ls1021a soc. Signed-off-by: Peng Ma --- drivers/ata/sata_ceva.c | 24 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/drivers/ata/sata_ceva.c b/drivers/ata/sata_ceva.c index aa31515..e45679b 100644 --- a/drivers/ata/sata_

[U-Boot] [PATCH 3/4] arm: ls1021atwr: enable DM support for sata

2018-07-31 Thread Peng Ma
Enable related configs to support sata DM feature. Signed-off-by: Peng Ma --- configs/ls1021atwr_nor_defconfig |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/configs/ls1021atwr_nor_defconfig b/configs/ls1021atwr_nor_defconfig index f4f7998..ffee644 100644 --- a/conf

[U-Boot] [PATCH 2/4] armv7: dts: fsl-ls1021a: add sata node support enable sata for ls1021a-qds and ls1021a-twr

2018-07-31 Thread Peng Ma
Add sata node to support this feature. Signed-off-by: Peng Ma --- arch/arm/dts/ls1021a-qds.dtsi |4 arch/arm/dts/ls1021a-twr.dtsi |4 arch/arm/dts/ls1021a.dtsi |7 +++ 3 files changed, 15 insertions(+), 0 deletions(-) diff --git a/arch/arm/dts/ls1021a-qds.dtsi b/ar

[U-Boot] [PATCH 1/4] armv7: fsl: remove sata support

2018-07-31 Thread Peng Ma
Remove the old implementation in order to enable DM for sata Signed-off-by: Peng Ma --- arch/arm/cpu/armv7/ls102xa/Makefile |1 - arch/arm/cpu/armv7/ls102xa/ls102xa_sata.c | 41 - arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h | 27 ---

Re: [U-Boot] xyz-modem: Change getc timeout loop waiting

2018-07-31 Thread Tomas Melin
Hi, On 08/01/2018 08:54 AM, Alexander Sverdlin wrote: Is the timeout a watchdog timeout or some communication freeze? I suppose, it reports false-positive timeout back to ymodem code. Because all it does is terminating communication gracefully (with 'C' and a bunch of CANs). If you are using om

Re: [U-Boot] [PATCH] efi_loader: don't allocate unusable RAM

2018-07-31 Thread Heinrich Schuchardt
On 07/31/2018 09:44 PM, Stephen Warren wrote: > From: Stephen Warren > > Some boards define a maximum usable RAM top that's more restrictive than > the ranges defined by U-Boot's memory bank definitions[1]. In this case, > the unusable RAM isn't mapped in the page tables, and so the EFI code must

Re: [U-Boot] xyz-modem: Change getc timeout loop waiting

2018-07-31 Thread Tomas Melin
Hi, On 08/01/2018 03:15 AM, Alexander Sverdlin wrote: This commit breaks YMODEM SPL->U-Boot boot on Beagle Bone, transfer is aborted (because of timeout) after 497kb (u-boot.img is around 570kb). Reverting the commit repairs YMODEM boot. Is the timeout a watchdog timeout or some communication

[U-Boot] [PATCH 2/2] sandbox: Enable bitrev library build

2018-07-31 Thread Bin Meng
Turn on CONFIG_BITREVERSE for all sandbox builds. Signed-off-by: Bin Meng --- configs/sandbox64_defconfig| 1 + configs/sandbox_defconfig | 1 + configs/sandbox_flattree_defconfig | 1 + configs/sandbox_noblk_defconfig| 1 + configs/sandbox_spl_defconfig | 1 + 5 files

[U-Boot] [PATCH 1/2] lib: bitrev: Sync with Linux kernel v4.17

2018-07-31 Thread Bin Meng
Signed-off-by: Bin Meng --- include/linux/bitrev.h | 102 - lib/bitrev.c | 28 -- 2 files changed, 101 insertions(+), 29 deletions(-) diff --git a/include/linux/bitrev.h b/include/linux/bitrev.h index cc5abd7..50fb0de 100644

[U-Boot] [PATCH 2/3,v2] scsi: ceva: add ls1043a soc support

2018-07-31 Thread Peng Ma
Add ahci compatible support for ls1043a soc. Signed-off-by: Peng Ma --- v2: -move compatible to orginal position -rebase from master drivers/ata/sata_ceva.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/ata/sata_ceva.c b/drivers/ata/sata_ceva

[U-Boot] [PATCH 1/3, v2] armv8: dts: fsl-ls1043a: add sata node support

2018-07-31 Thread Peng Ma
Add sata node to support ls1043a. Signed-off-by: Peng Ma --- v2: -no changes arch/arm/dts/fsl-ls1043a-qds.dtsi |4 arch/arm/dts/fsl-ls1043a.dtsi |8 2 files changed, 12 insertions(+), 0 deletions(-) diff --git a/arch/arm/dts/fsl-ls1043a-qds.dtsi b/arch/arm/dt

[U-Boot] [PATCH 3/3, v2] arm64: ls1043aqds: enable DM support for sata

2018-07-31 Thread Peng Ma
Enable related configs to support sata DM feature. Signed-off-by: Peng Ma --- v2: -no changes configs/ls1043aqds_defconfig |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/configs/ls1043aqds_defconfig b/configs/ls1043aqds_defconfig index 73f7f8a..5510509 1006

Re: [U-Boot] [PATCH v6 8/8] armv8: ls1046a: setup SEC ICIDs and fix up device tree

2018-07-31 Thread Bharat Bhushan
> -Original Message- > From: Horia Geanta > Sent: Tuesday, July 31, 2018 9:49 PM > To: Laurentiu Tudor ; u-boot@lists.denx.de; > Prabhakar Kushwaha ; York Sun > > Cc: Bharat Bhushan > Subject: Re: [PATCH v6 8/8] armv8: ls1046a: setup SEC ICIDs and fix up device > tree > > On 7/31/2018

Re: [U-Boot] [PATCH v6 7/8] armv8: ls1046a: setup fman ports ICIDs and device tree

2018-07-31 Thread Bharat Bhushan
> -Original Message- > From: laurentiu.tu...@nxp.com [mailto:laurentiu.tu...@nxp.com] > Sent: Tuesday, July 31, 2018 8:22 PM > To: u-boot@lists.denx.de; Prabhakar Kushwaha > ; York Sun > Cc: Bharat Bhushan ; Horia Geanta > ; Laurentiu Tudor > Subject: [PATCH v6 7/8] armv8: ls1046a: setu

Re: [U-Boot] [PATCH v6 5/8] armv8: ls1046a: initial icid setup support

2018-07-31 Thread Bharat Bhushan
> -Original Message- > From: laurentiu.tu...@nxp.com [mailto:laurentiu.tu...@nxp.com] > Sent: Tuesday, July 31, 2018 8:22 PM > To: u-boot@lists.denx.de; Prabhakar Kushwaha > ; York Sun > Cc: Bharat Bhushan ; Horia Geanta > ; Laurentiu Tudor > Subject: [PATCH v6 5/8] armv8: ls1046a: init

Re: [U-Boot] [PATCH v6 6/8] armv8: ls1046a: add icid setup for qman portals

2018-07-31 Thread Bharat Bhushan
> -Original Message- > From: laurentiu.tu...@nxp.com [mailto:laurentiu.tu...@nxp.com] > Sent: Tuesday, July 31, 2018 8:22 PM > To: u-boot@lists.denx.de; Prabhakar Kushwaha > ; York Sun > Cc: Bharat Bhushan ; Horia Geanta > ; Laurentiu Tudor > Subject: [PATCH v6 6/8] armv8: ls1046a: add

Re: [U-Boot] [PATCH v6 4/8] armv8: fsl-layerscape: add missing debug stream ID

2018-07-31 Thread Bharat Bhushan
> -Original Message- > From: laurentiu.tu...@nxp.com [mailto:laurentiu.tu...@nxp.com] > Sent: Tuesday, July 31, 2018 8:22 PM > To: u-boot@lists.denx.de; Prabhakar Kushwaha > ; York Sun > Cc: Bharat Bhushan ; Horia Geanta > ; Laurentiu Tudor > Subject: [PATCH v6 4/8] armv8: fsl-layerscap

Re: [U-Boot] [PATCH v6 3/8] misc: fsl_portals: setup QMAN_BAR{E} also on ARM platforms

2018-07-31 Thread Bharat Bhushan
> -Original Message- > From: laurentiu.tu...@nxp.com [mailto:laurentiu.tu...@nxp.com] > Sent: Tuesday, July 31, 2018 8:22 PM > To: u-boot@lists.denx.de; Prabhakar Kushwaha > ; York Sun > Cc: Bharat Bhushan ; Horia Geanta > ; Laurentiu Tudor > Subject: [PATCH v6 3/8] misc: fsl_portals: s

Re: [U-Boot] [PATCH v6 2/8] armv8: ls1046a: advertise QMan v3 in configuration

2018-07-31 Thread Bharat Bhushan
> -Original Message- > From: laurentiu.tu...@nxp.com [mailto:laurentiu.tu...@nxp.com] > Sent: Tuesday, July 31, 2018 8:22 PM > To: u-boot@lists.denx.de; Prabhakar Kushwaha > ; York Sun > Cc: Bharat Bhushan ; Horia Geanta > ; Laurentiu Tudor > Subject: [PATCH v6 2/8] armv8: ls1046a: adve

Re: [U-Boot] [PATCH v6 1/8] armv8: fsl-layerscape: add missing register blocks base address defines

2018-07-31 Thread Bharat Bhushan
> -Original Message- > From: laurentiu.tu...@nxp.com [mailto:laurentiu.tu...@nxp.com] > Sent: Tuesday, July 31, 2018 8:22 PM > To: u-boot@lists.denx.de; Prabhakar Kushwaha > ; York Sun > Cc: Bharat Bhushan ; Horia Geanta > ; Laurentiu Tudor > Subject: [PATCH v6 1/8] armv8: fsl-layerscap

Re: [U-Boot] [PATCH 2/3] scsi: ceva: add ls1043a soc support

2018-07-31 Thread Peng Ma
Hi York: It's My fault, I could misunderstood your suggest, I will send v2 patch to fix this issue. Thanks Peng -Original Message- From: York Sun Sent: 2018年8月1日 1:38 To: Peng Ma Cc: albert.u.b...@aribaud.net; Mingkai Hu ; Pankaj Bansal ; Fabio Estevam ; Yinbo Zhu ; s...@chromium.o

Re: [U-Boot] [PATCH 2/3] scsi: ceva: add ls1043a soc support

2018-07-31 Thread York Sun
On 07/31/2018 07:36 PM, Peng Ma wrote: > > > -Original Message- > From: York Sun > Sent: 2018年8月1日 1:38 > To: Peng Ma > Cc: albert.u.b...@aribaud.net; Mingkai Hu ; Pankaj Bansal > ; Fabio Estevam ; Yinbo Zhu > ; s...@chromium.org; bmeng...@gmail.com; > michal.si...@xilinx.com; Andy T

[U-Boot] [PATCH 1/1] elf: Add support for PPC64 ELF V1 ABI in bootelf

2018-07-31 Thread Rob Bracero
This update adds PPC64 ELF V1 ABI support to bootelf for both the program header and section header options. Elf64 support was already present for the program header option, but it was not handling the PPC64 ELF V1 ABI case. For the PPC64 ELF V1 ABI, the e_entry field of the elf header must be trea

Re: [U-Boot] [PATCH 2/3] scsi: ceva: add ls1043a soc support

2018-07-31 Thread Peng Ma
-Original Message- From: York Sun Sent: 2018年8月1日 1:38 To: Peng Ma Cc: albert.u.b...@aribaud.net; Mingkai Hu ; Pankaj Bansal ; Fabio Estevam ; Yinbo Zhu ; s...@chromium.org; bmeng...@gmail.com; michal.si...@xilinx.com; Andy Tang ; u-boot@lists.denx.de Subject: Re: [PATCH 2/3] scsi: c

Re: [U-Boot] boot a bios/uefi with x86_64, without grub

2018-07-31 Thread Bin Meng
On Wed, Aug 1, 2018 at 2:32 AM, Thierry Gayet wrote: > hi bin, > > Thanks for your reply. > > Yes, you are totaly right because my uboot efi app didn't start due to my > architecture x86_64. > > Then i have try with a uboot efi payload (x86_64) and it start from efi > shell. > > I have tested with

Re: [U-Boot] xyz-modem: Change getc timeout loop waiting

2018-07-31 Thread Alexander Sverdlin
Hello! On Mon, 21 Nov 2016 10:18:51 +0200 Tomas Melin wrote: > This fixes the loop delay when using a hw watchdog. > > In case a watchdog is used that accesses CPU registers, > the defined delay of 20us in a tight loop will cause a > huge delay in the actual timeout seen. This is caused > by th

[U-Boot] [PATCH 1/1] arm: zynq: Fix device tree for Avnet Picozed boards

2018-07-31 Thread Andreas Galauner
This change adds the necessary /chosen/stdout-path to the device tree for the Avnet Picozed boards. This node is mandatory for the SPL. Without it the board resets in a loop without any output. The change also adds the USB, QSPI and Ethernet MAC nodes of the corresponding devices present on the boa

Re: [U-Boot] [PATCH] .travis.yml: Exclude openrd platforms

2018-07-31 Thread Tom Rini
On Tue, Jul 31, 2018 at 07:56:38PM -0400, Tom Rini wrote: > The openrd platforms are currently orphaned, and are constantly on-edge > or overflowing their binary limit. Exclude them from travis for now. > > Cc: Vagrant Cascadian > Cc: Chris Packham > Signed-off-by: Tom Rini Applied to u-boot

Re: [U-Boot] [PATCH] .travis.yml: Exclude kirkwood machines from the arm926ejs job

2018-07-31 Thread Tom Rini
On Tue, Jul 31, 2018 at 02:49:22PM -0400, Tom Rini wrote: > We have a specific job for kirkwood platforms so exclude them from this > job. > > Signed-off-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature __

Re: [U-Boot] [PATCH] ls1046ardb: Add qspi_spl variant to the MAINTAINERS file

2018-07-31 Thread Tom Rini
On Tue, Jul 31, 2018 at 08:50:04AM -0400, Tom Rini wrote: > Signed-off-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH] pico-pi: Add Otavio as maintainer

2018-07-31 Thread Tom Rini
On Tue, Jul 31, 2018 at 08:49:33AM -0400, Tom Rini wrote: > Update the MAINTAINERS file to list Otavio Salvador as the maintainer > for this board. > > Cc: Otavio Salvador > Signed-off-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature __

Re: [U-Boot] [PATCH] dm: Fix CMD_DM enabling

2018-07-31 Thread Tom Rini
On Tue, Jul 31, 2018 at 08:11:28AM +0200, Michal Simek wrote: > The patch "dm: Change CMD_DM enabling" > (sha1: 08a00cba06a7e608ae65e3d7ea225cf8c639429d) was incorrectly updated > and PICO_IMX7D is missing imply CMD_DM and WARP7 has it twice. > This patch is fixing it. > > Signed-off-by: Michal S

[U-Boot] [PATCH] .travis.yml: Exclude openrd platforms

2018-07-31 Thread Tom Rini
The openrd platforms are currently orphaned, and are constantly on-edge or overflowing their binary limit. Exclude them from travis for now. Cc: Vagrant Cascadian Cc: Chris Packham Signed-off-by: Tom Rini --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tra

Re: [U-Boot] [PATCH v2] armv8: layerscape: Enable EHCI access for LS1012A

2018-07-31 Thread York Sun
On 07/26/2018 07:38 PM, Ran Wang wrote: > Program Central Security Unit (CSU) to grant access > permission for USB 2.0 controller, otherwiase EHCI funciton will down. > > Signed-off-by: Ran Wang > --- > Change in v2: > - Add EL checking code to make sure related programming only happen >

Re: [U-Boot] [PATCH] efi_loader: don't allocate unusable RAM

2018-07-31 Thread Alexander Graf
On 31.07.18 22:20, Stephen Warren wrote: > On 07/31/2018 02:15 PM, Alexander Graf wrote: >> >> >>> Am 31.07.2018 um 22:04 schrieb Stephen Warren : >>> >>> On 07/31/2018 02:03 PM, Alexander Graf wrote: > Am 31.07.2018 um 21:44 schrieb Stephen Warren : > > From: Stephen Warren > >>

Re: [U-Boot] [PATCH v2 1/8] armv8: ls1088a: fix sd boot config compile issue

2018-07-31 Thread York Sun
On 07/17/2018 08:03 PM, Yinbo Zhu wrote: > This patch is to fix sd boot config compile issue for ls1088a. > > Signed-off-by: Yinbo Zhu > --- > Change in v2: > Changed this patch's order > > include/mmc.h |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git

Re: [U-Boot] [PATCH] efi_loader: don't allocate unusable RAM

2018-07-31 Thread Stephen Warren
On 07/31/2018 02:15 PM, Alexander Graf wrote: Am 31.07.2018 um 22:04 schrieb Stephen Warren : On 07/31/2018 02:03 PM, Alexander Graf wrote: Am 31.07.2018 um 21:44 schrieb Stephen Warren : From: Stephen Warren Some boards define a maximum usable RAM top that's more restrictive than the ran

Re: [U-Boot] [PATCH] efi_loader: don't allocate unusable RAM

2018-07-31 Thread Alexander Graf
> Am 31.07.2018 um 22:04 schrieb Stephen Warren : > > On 07/31/2018 02:03 PM, Alexander Graf wrote: >>> Am 31.07.2018 um 21:44 schrieb Stephen Warren : >>> >>> From: Stephen Warren >>> >>> Some boards define a maximum usable RAM top that's more restrictive than >>> the ranges defined by U-Boo

Re: [U-Boot] [PATCH] efi_loader: don't allocate unusable RAM

2018-07-31 Thread Stephen Warren
On 07/31/2018 02:03 PM, Alexander Graf wrote: Am 31.07.2018 um 21:44 schrieb Stephen Warren : From: Stephen Warren Some boards define a maximum usable RAM top that's more restrictive than the ranges defined by U-Boot's memory bank definitions[1]. In this case, the unusable RAM isn't mapped

Re: [U-Boot] [PATCH] efi_loader: don't allocate unusable RAM

2018-07-31 Thread Alexander Graf
> Am 31.07.2018 um 21:44 schrieb Stephen Warren : > > From: Stephen Warren > > Some boards define a maximum usable RAM top that's more restrictive than > the ranges defined by U-Boot's memory bank definitions[1]. In this case, > the unusable RAM isn't mapped in the page tables, and so the EFI

Re: [U-Boot] [PATCH v5 00/27] SPI-NAND support

2018-07-31 Thread Boris Brezillon
On Tue, 31 Jul 2018 21:25:53 +0200 Boris Brezillon wrote: > Hi Jagan, > > On Tue, 31 Jul 2018 20:03:47 +0530 > Jagan Teki wrote: > > > > Applied to u-boot-spi/master > > > > Look like we have some build issues [1]? > > Yep, I reproduced the issue. Looks like u-boot Makefile hierarchy i

[U-Boot] [PATCH] efi_loader: don't allocate unusable RAM

2018-07-31 Thread Stephen Warren
From: Stephen Warren Some boards define a maximum usable RAM top that's more restrictive than the ranges defined by U-Boot's memory bank definitions[1]. In this case, the unusable RAM isn't mapped in the page tables, and so the EFI code must not attempt to allocate RAM from outside the usable reg

Re: [U-Boot] [PATCH v5 00/27] SPI-NAND support

2018-07-31 Thread Boris Brezillon
Hi Jagan, On Tue, 31 Jul 2018 20:03:47 +0530 Jagan Teki wrote: > > Applied to u-boot-spi/master > > Look like we have some build issues [1]? Yep, I reproduced the issue. Looks like u-boot Makefile hierarchy is a bit different from Linux one, and patch is breaking raw/parallel NAND build. I f

[U-Boot] Regression due to "efi_loader: efi_allocate_pages is too restrictive"

2018-07-31 Thread Stephen Warren
Commit aa909462d018 "efi_loader: efi_allocate_pages is too restrictive" causes a failure (synchronous abort) in the command "dhcp zImage" on board p2371-2180 (Jetson TX1). Reverting this commit alone solves the problem. According to the exception dump, elr/pc is in efi_allocate_pages(), which m

[U-Boot] [PATCH] .travis.yml: Exclude kirkwood machines from the arm926ejs job

2018-07-31 Thread Tom Rini
We have a specific job for kirkwood platforms so exclude them from this job. Signed-off-by: Tom Rini --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7b0eb6e4f6b5..9c53c4fe219d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -153,7

[U-Boot] [PATCH] openrd: Mark as Orphaned

2018-07-31 Thread Tom Rini
After talking with Albert, mark these boards as orphaned as he no longer has one. Cc: Albert ARIBAUD Cc: Vagrant Cascadian Cc: Chris Packham Signed-off-by: Tom Rini --- board/Marvell/openrd/MAINTAINERS | 10 +++--- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/board/Marvel

[U-Boot] [PATCH] ARM: tegra: avoid more operations in non-secure world

2018-07-31 Thread Stephen Warren
From: Stephen Warren A secure monitor that runs before U-Boot, and hence causes U-Boot to run in non-secure world, must implement a few operations that U-Boot otherwise implements when running in secure world. Fix U-Boot to skip these operations when running in non-secure world. In particular: -

[U-Boot] [PATCH] ARM: tegra: align carveout size

2018-07-31 Thread Stephen Warren
From: Stephen Warren Align the size of the carveout region to 2M. This ensures that the size can be accurately represented by an LPAE page table that uses sections. This solves a bug (hang at boot time soon after printing the DRAM size) that only shows up when the following two commits are merge

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

2018-07-31 Thread Jagan Teki
Hi Tom, Please pull this PR. thanks, Jagan. The following changes since commit 5a0007d481c0fcd2d422dd48b2a129dd8e8a272a: Prepare v2017.09-rc1 (2018-07-30 21:47:29 -0400) are available in the Git repository at: git://git.denx.de/u-boot-sunxi.git master for you to fetch changes up to 89a89

Re: [U-Boot] [PATCH v1 9/9] ARM: Odroid XU3: Modify Odroid XU3 config to boot by default from SD card

2018-07-31 Thread Anand Moon
Hi Lukasz, On 27 July 2018 at 15:26, Lukasz Majewski wrote: > On Fri, 27 Jul 2018 14:42:32 +0530 > Anand Moon wrote: > >> Hi Lukasz, >> >> On 27 July 2018 at 13:54, Lukasz Majewski wrote: >> > On Fri, 27 Jul 2018 08:34:15 +0530 >> > Anand Moon wrote: >> > >> >> Hi Lukasz, >> >> >> >> On 26 Jul

Re: [U-Boot] [PATCH] pico-pi: Add Otavio as maintainer

2018-07-31 Thread Otavio Salvador
On Tue, Jul 31, 2018 at 9:49 AM, Tom Rini wrote: > Update the MAINTAINERS file to list Otavio Salvador as the maintainer > for this board. > > Cc: Otavio Salvador > Signed-off-by: Tom Rini Acked-by: Otavio Salvador -- Otavio Salvador O.S. Systems http://www.ossyst

Re: [U-Boot] [PATCH 2/3] scsi: ceva: add ls1043a soc support

2018-07-31 Thread York Sun
On 07/09/2018 03:42 AM, peng...@nxp.com wrote: > From: Peng Ma > > Add ahci compatible support for ls1043a soc. > > Signed-off-by: Peng Ma > --- > depend on: > patchwork.ozlabs.org/patch/924896/ > > drivers/ata/sata_ceva.c | 16 +--- > 1 files changed, 9 insertions(+), 7 d

Re: [U-Boot] [PATCH v2 1/8] Enable CONFIG_BLK and CONFIG_DM_MMC to Kconfig

2018-07-31 Thread York Sun
On 07/26/2018 12:09 AM, Yinbo Zhu wrote: >> >> Thanks your feedback! And the patch 1 is applied then that it reported some >> compiled error, so add patch > >> 2 to fix compile error, and I will only put the patch 3 in front of patch 1, >> Do you think that's okay? > >> Every single patch mus

Re: [U-Boot] [PATCH 4/6] mvebu: select boot device at SoC level

2018-07-31 Thread Dennis Gilmore
Hi Baruch, this patch needs to be rebased on git master as it does not apply. Thanks Dennis El lun, 18-06-2018 a las 21:56 +0300, Baruch Siach escribió: > Move the gdsys Controlcenter DC specific build time kwbimage.cfg > generation code into the mach-mvebu/ directory to be shared by all > 32bit

[U-Boot] Please pull u-boot-mpc85xx master

2018-07-31 Thread York Sun
Tom, The following changes since commit 2547e91dc15e5203e15d4ebde9172174743b14a7: tegra: Indicate that binman makes all three output files (2018-07-26 15:49:40 -0400) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git for you to fetch changes up to 9dcb9d763d328da

Re: [U-Boot] Please pull u-boot-mpc85xx master

2018-07-31 Thread York Sun
Scratch that. I realized I didn't fix the commit messages. Will push another one. York On 07/31/2018 10:12 AM, York Sun wrote: > Tom, > > The following changes since commit 2547e91dc15e5203e15d4ebde9172174743b14a7: > > tegra: Indicate that binman makes all three output files (2018-07-26 > 15:

Re: [U-Boot] [PATCH 2/2] Revert "powerpc/T104xRDB: Fix endian access issue on EHCI intinalization"

2018-07-31 Thread York Sun
On 06/13/2018 07:46 PM, Ran Wang wrote: > There was an EHCI endian accessor issue. Now it's fixed by > commit 9829ce2ff25c ("usb: ehci: Fix accessors for big-endian platforms and > descriptors") > Revert commit e6a727fffec7b2002e ("powerpc/T104xRDB: Fix endian access issue > on EHCI intinalizatio

Re: [U-Boot] [PATCH 1/2] Revert "powerpc/p1_p2_rdb_pc: Fix endian access issue on EHCI intinalization"

2018-07-31 Thread York Sun
On 06/13/2018 07:46 PM, Ran Wang wrote: > There was an EHCI endian accessor issue. Now it's fixed by > commit 9829ce2ff25c ("usb: ehci: Fix accessors for big-endian platforms and > descriptors"). > Revert commit 0f2296bab141 ("powerpc/p1_p2_rdb_pc: Fix endian access issue on > EHCI intinalization

[U-Boot] Please pull u-boot-mpc85xx master

2018-07-31 Thread York Sun
Tom, The following changes since commit 2547e91dc15e5203e15d4ebde9172174743b14a7: tegra: Indicate that binman makes all three output files (2018-07-26 15:49:40 -0400) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git for you to fetch changes up to 7c176ce687bb35c

Re: [U-Boot] Latest u-boot-spi.git master branch build breaks

2018-07-31 Thread Jagan Teki
On Tue, Jul 31, 2018 at 10:15 PM, Stephen Warren wrote: > On 07/31/2018 10:34 AM, Jagan Teki wrote: >> >> On Tue, Jul 31, 2018 at 9:51 PM, Stephen Warren >> wrote: >>> >>> Jagan, >>> >>> The following Tegra/sandbox builds fail with the latest u-boot-spi.git >>> master branch: >>> >>> sandbox: >>>

Re: [U-Boot] Latest u-boot-spi.git master branch build breaks

2018-07-31 Thread Stephen Warren
On 07/31/2018 10:34 AM, Jagan Teki wrote: On Tue, Jul 31, 2018 at 9:51 PM, Stephen Warren wrote: Jagan, The following Tegra/sandbox builds fail with the latest u-boot-spi.git master branch: sandbox: drivers/mtd/spi/spi_flash_ids.c:113:2: error: expected ‘}’ before ‘{’ token {"s25fl256s_2

Re: [U-Boot] Latest u-boot-spi.git master branch build breaks

2018-07-31 Thread Jagan Teki
On Tue, Jul 31, 2018 at 9:51 PM, Stephen Warren wrote: > Jagan, > > The following Tegra/sandbox builds fail with the latest u-boot-spi.git > master branch: > > sandbox: >> >> drivers/mtd/spi/spi_flash_ids.c:113:2: error: expected ‘}’ before ‘{’ >> token >> {"s25fl256s_256k", INFO(0x010219, 0x4d0

[U-Boot] Latest u-boot-spi.git master branch build breaks

2018-07-31 Thread Stephen Warren
Jagan, The following Tegra/sandbox builds fail with the latest u-boot-spi.git master branch: sandbox: drivers/mtd/spi/spi_flash_ids.c:113:2: error: expected ‘}’ before ‘{’ token {"s25fl256s_256k", INFO(0x010219, 0x4d00, 256 * 1024, 128, RD_FULL | WR_QPP) }, ^ plutux: medcom-wide: har

Re: [U-Boot] [PATCH v6 8/8] armv8: ls1046a: setup SEC ICIDs and fix up device tree

2018-07-31 Thread Horia Geanta
On 7/31/2018 5:53 PM, laurentiu.tu...@nxp.com wrote: > From: Laurentiu Tudor > > Add support for SEC ICID configuration and apply it for ls1046a. > Also add code to make the necessary device tree fixups. > > Signed-off-by: Laurentiu Tudor Reviewed-by: Horia Geantă [snip] > +#define SET_SEC_RT

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-07-31 Thread Calvin Johnson
Hi York, > -Original Message- > From: York Sun > Sent: Tuesday, July 31, 2018 8:37 PM > To: Calvin Johnson ; Scott Wood > ; Calvin Johnson > Cc: Jagdish Gediya ; U-Boot Mailing List b...@lists.denx.de> > Subject: Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to > switch

Re: [U-Boot] [PATCH] board: sun50i: h6: Add OrangePi One Plus initial support

2018-07-31 Thread Jagan Teki
On Mon, Jul 30, 2018 at 2:31 PM, Maxime Ripard wrote: > On Sun, Jul 29, 2018 at 12:03:31AM +0530, Jagan Teki wrote: >> OrangePi One Plus is Allwinner H6 based open-source SBC, >> which support: >> - Allwinner H6 Quad-core 64-bit ARM Cortex-A53 >> - GPU Mali-T720 >> - 1GB LPDDR3 RAM >> - AXP805 PMI

Re: [U-Boot] [PATCH 1/2] mtd: nand: nand_base: Convert EINVAL into ENOTSUPP

2018-07-31 Thread Jagan Teki
On Fri, Jul 13, 2018 at 9:40 PM, Mylène Josserand wrote: > Convert the EINVAL error into ENOTSUPP when the GET/SET_FEATURES > is not supported. > > Signed-off-by: Mylène Josserand > --- Applied both. ___ U-Boot mailing list U-Boot@lists.denx.de https:/

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-07-31 Thread York Sun
On 04/19/2018 06:53 PM, Calvin Johnson wrote: >> >>> would be better. What this patch currently does can be done with >>> simple env vars, like : >>> >>> setenv boot_bank_1 'i2c mw 0x24 0x7 0xfc; i2c mw 0x24 0x3 0xf5' >>> setenv boot_bank_2 'i2c mw 0x24 0x7 0xfc; i2c mw 0x24 0x3 0xf4' >> >> ...if t

Re: [U-Boot] boot a bios/uefi with x86_64, without grub

2018-07-31 Thread Bin Meng
Hi Thierry, On Tue, Jul 31, 2018 at 6:18 PM, Thierry Gayet wrote: > Hi, > > I am working with a board called "up board" ( > http://www.aaeon.com/en/p/up-board-computer-board-for-professional-makers) > from aaeon. > > This card is as tiny as a credit card or a raspberry pi running with a > x86_64

[U-Boot] [PATCH v6 8/8] armv8: ls1046a: setup SEC ICIDs and fix up device tree

2018-07-31 Thread laurentiu . tudor
From: Laurentiu Tudor Add support for SEC ICID configuration and apply it for ls1046a. Also add code to make the necessary device tree fixups. Signed-off-by: Laurentiu Tudor --- .../arm/cpu/armv8/fsl-layerscape/ls1046_ids.c | 14 +++ .../asm/arch-fsl-layerscape/fsl_icid.h| 25 +

[U-Boot] [PATCH v6 7/8] armv8: ls1046a: setup fman ports ICIDs and device tree

2018-07-31 Thread laurentiu . tudor
From: Laurentiu Tudor Add support for ICID setting of fman ports and the required device tree fixups. Signed-off-by: Laurentiu Tudor --- arch/arm/cpu/armv8/fsl-layerscape/icid.c | 82 +++ .../arm/cpu/armv8/fsl-layerscape/ls1046_ids.c | 30 +++ .../asm/arch-fsl-layersca

[U-Boot] [PATCH v6 6/8] armv8: ls1046a: add icid setup for qman portals

2018-07-31 Thread laurentiu . tudor
From: Laurentiu Tudor Add support for ICID setting of qman portals and the required device tree fixups. Also fix an endiness issue in portal setup code. Signed-off-by: Laurentiu Tudor --- .../arm/cpu/armv8/fsl-layerscape/ls1046_ids.c | 16 +++ .../asm/arch-fsl-layerscape/fsl_portals.h

[U-Boot] [PATCH v6 4/8] armv8: fsl-layerscape: add missing debug stream ID

2018-07-31 Thread laurentiu . tudor
From: Laurentiu Tudor Add a define with a value for the missing debug stream ID. Signed-off-by: Laurentiu Tudor --- arch/arm/include/asm/arch-fsl-layerscape/stream_id_lsch2.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-fsl-layerscape/stream_id_lsch2.h b/arch/

[U-Boot] [PATCH v6 5/8] armv8: ls1046a: initial icid setup support

2018-07-31 Thread laurentiu . tudor
From: Laurentiu Tudor Add infrastructure for ICID setup and device tree fixup on ARM platforms. This include basic ICID setup for several devices. Signed-off-by: Laurentiu Tudor --- arch/arm/cpu/armv8/fsl-layerscape/Makefile| 1 + arch/arm/cpu/armv8/fsl-layerscape/icid.c | 110 +

[U-Boot] [PATCH v6 2/8] armv8: ls1046a: advertise QMan v3 in configuration

2018-07-31 Thread laurentiu . tudor
From: Laurentiu Tudor The QMan IP block in this SoC is version 3.2 so advertise this in the SoC configuration header. Signed-off-by: Laurentiu Tudor --- arch/arm/include/asm/arch-fsl-layerscape/config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-fsl-layerscap

[U-Boot] [PATCH v6 3/8] misc: fsl_portals: setup QMAN_BAR{E} also on ARM platforms

2018-07-31 Thread laurentiu . tudor
From: Laurentiu Tudor QMAN_BAR{E} register setup was disabled on ARM platforms, however the register does need to be set. Enable the code also on ARMs and fix the CONFIG_SYS_QMAN_MEM_PHYS define to the correct value so that the newly enabled code works. Signed-off-by: Laurentiu Tudor --- arch/

[U-Boot] [PATCH v6 1/8] armv8: fsl-layerscape: add missing register blocks base address defines

2018-07-31 Thread laurentiu . tudor
From: Laurentiu Tudor Add defines for the edma and qdma register block base addresses. Signed-off-by: Laurentiu Tudor --- arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h | 4 1 file changed, 4 insertions(+) diff --git a/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h b/arc

[U-Boot] [PATCH v6 0/8] NXP LS1046A SMMU enabling patches

2018-07-31 Thread laurentiu . tudor
From: Laurentiu Tudor This patch series adds the required devices setup and device tree fixups for SMMU enablement on NXP LS1046A chips. The approach taken tries to mimic the implementation of PAMU LIODN setup on booke powerpc. First 4 patches contain some fixes and add some missing bits & piece

Re: [U-Boot] [PATCH v5 00/27] SPI-NAND support

2018-07-31 Thread Jagan Teki
On Tue, Jul 31, 2018 at 12:59 PM, Jagan Teki wrote: > On Mon, Jul 30, 2018 at 9:16 PM, Miquel Raynal > wrote: >> During the last months, Boris Brezillon shared his work to support >> serial flashes within Linux. First, he delivered (and merged) a new >> layer called spi-mem. He also initiated in

Re: [U-Boot] [PATCH] dm: Fix CMD_DM enabling

2018-07-31 Thread Joe Hershberger
On Tue, Jul 31, 2018 at 1:11 AM, Michal Simek wrote: > The patch "dm: Change CMD_DM enabling" > (sha1: 08a00cba06a7e608ae65e3d7ea225cf8c639429d) was incorrectly updated > and PICO_IMX7D is missing imply CMD_DM and WARP7 has it twice. > This patch is fixing it. > > Signed-off-by: Michal Simek Rev

Re: [U-Boot] [PATCH v1 1/2] dm: serial: Replace setparity by setconfig

2018-07-31 Thread Patrice CHOTARD
Hi Simon On 07/31/2018 01:52 PM, Simon Glass wrote: > Hi Patrice, > > On 30 July 2018 at 09:23, Patrice Chotard wrote: >> From: Patrick Delaunay >> >> Replace setparity by more generic setconfig ops >> to allow uart parity, bits word length and stop bits >> number change. >> >> Adds SERIAL_GET_

Re: [U-Boot] [PATCH 1/3] arm: exynos4: fix warning of dts

2018-07-31 Thread Tom Rini
On Tue, Jul 31, 2018 at 04:12:42PM +0900, Minkyu Kang wrote: > remove this warning: avoid_unnecessary_addr_size > > Signed-off-by: Minkyu Kang > --- > arch/arm/dts/exynos4210-pinctrl-uboot.dtsi | 4 > arch/arm/dts/exynos4210-universal_c210.dts | 2 -- > arch/arm/dts/exynos4x12-pinctrl-uboo

[U-Boot] [PATCH] ls1046ardb: Add qspi_spl variant to the MAINTAINERS file

2018-07-31 Thread Tom Rini
Signed-off-by: Tom Rini --- board/freescale/ls1046ardb/MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/board/freescale/ls1046ardb/MAINTAINERS b/board/freescale/ls1046ardb/MAINTAINERS index 79a2290974f4..e4312c7cb2fd 100644 --- a/board/freescale/ls1046ardb/MAINTAINERS +++ b/board/

[U-Boot] [PATCH] pico-pi: Add Otavio as maintainer

2018-07-31 Thread Tom Rini
Update the MAINTAINERS file to list Otavio Salvador as the maintainer for this board. Cc: Otavio Salvador Signed-off-by: Tom Rini --- board/technexion/pico-imx7d/MAINTAINERS | 5 + 1 file changed, 5 insertions(+) diff --git a/board/technexion/pico-imx7d/MAINTAINERS b/board/technexion/pico

Re: [U-Boot] Please pull u-boot-dm

2018-07-31 Thread Tom Rini
On Mon, Jul 30, 2018 at 02:10:44PM -0600, Simon Glass wrote: > Hi Tom, > > Here are the binman changes, with the rename of the 'pos' property to > 'offset'. > > > The following changes since commit 0e8a8a311020d317fcfcf594e8e3fb1598134593: > > Merge git://git.denx.de/u-boot-fsl-qoriq (2018-

[U-Boot] [PATCH] common: fdt: Make fdt_del_subnodes/fdt_del_partition static

2018-07-31 Thread Michal Simek
These functions are only called in this file that's why make them static to keep static analysers happy. Signed-off-by: Michal Simek --- common/fdt_support.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/fdt_support.c b/common/fdt_support.c index 1bdd03fddab1..3

[U-Boot] [PATCH v4 4/4] misc: Add gdsys_ioep driver

2018-07-31 Thread Mario Six
Add driver for the IHS IO endpoint on IHS FPGAs. Signed-off-by: Mario Six --- v3 -> v4: * Fixed style violations * Added full documentation * Added binding file * Made res/ret variable names consistent * Improved error checking and error debug output v2 -> v3: No changes v1 -> v2: * Switched

[U-Boot] [PATCH v4 3/4] test: Add tests for misc uclass

2018-07-31 Thread Mario Six
Add a set of tests for the misc uclass. Signed-off-by: Mario Six --- v3 -> v4: New in v4 --- arch/sandbox/dts/test.dts | 4 ++ drivers/misc/Makefile | 2 +- drivers/misc/misc_sandbox.c | 133 test/dm/Makefile| 1 + test/dm/

[U-Boot] [PATCH v4 2/4] misc: uclass: Add enable/disable function

2018-07-31 Thread Mario Six
Add generic enable/disable function to the misc uclass. Reviewed-by: Simon Glass Signed-off-by: Mario Six --- v3 -> v4: No changes v2 -> v3: * Now return old state from misc_set_enabled v1 -> v2: * Merged the two functions into one function * Explained the semantics of enabling/disabling more

[U-Boot] [PATCH v4 1/4] misc: docs: Fix comments in misc.h

2018-07-31 Thread Mario Six
The comments in misc.h are not in kernel-doc format. Correct the format. Signed-off-by: Mario Six --- v3 -> v4: No changes v2 -> v3: New in v3 --- include/misc.h | 84 ++ 1 file changed, 44 insertions(+), 40 deletions(-) diff --git a/in

Re: [U-Boot] [ANN] U-Boot v2018.09-rc1 released

2018-07-31 Thread Tom Rini
On Tue, Jul 31, 2018 at 12:48:03PM +0200, Michal Simek wrote: > Hi Tom, > > On 31.7.2018 03:49, Tom Rini wrote: > > Hey all, > > > > So it's release day and I've put up v2018.09-rc1. The merge window is > > now closed and I've updated git and the tarballs are also up now. > > > > That said, the

Re: [U-Boot] [PATCH 2/2] smbios: fix checkstyle warning

2018-07-31 Thread Simon Glass
On 30 July 2018 at 05:22, Christian Gmeiner wrote: > Fixes the following checkstyle warning: > > WARNING: Missing a blank line after declarations > + int tmp = smbios_write_funcs[i]((ulong *)&addr, handle++); > + max_struct_size = max(max_struct_size, tmp); > > Signed-o

Re: [U-Boot] [PATCH] sata: fix sata_Probe return value check

2018-07-31 Thread Simon Glass
On 27 July 2018 at 17:45, Troy Kisky wrote: > > sata_probe returns 1 for failure, so don't checkout for < 0 > > fixes: f19f1ecb6025 dm: sata: Support driver model with the 'sata' command > > Signed-off-by: Troy Kisky > Thanks! Reviewed-by: Simon Glass __

Re: [U-Boot] [PATCH v1 2/2] serial: stm32: Replace setparity by setconfig

2018-07-31 Thread Simon Glass
Hi Patrice, On 30 July 2018 at 09:23, Patrice Chotard wrote: > Replace stm32_serial_setparity by stm32_serial_setconfig > which allows to set serial bits number, parity and stop > bits number. > Only parity setting is implemented. > > Signed-off-by: Patrick Delaunay > Signed-off-by: Patrice Chot

  1   2   >