[U-Boot] [PATCH v4 2/9] cmd: efitool: add devices command

2019-01-14 Thread AKASHI Takahiro
"devices" command prints all the uefi variables on the system. => efi devices Scanning disk ahci_scsi.id0lun0... Scanning disk ahci_scsi.id1lun0... Found 4 disks D e vDevice Path 7ef3bfa0 /VenHw(e61d73b9-a384-4acc-aeab-82e828f3628b)

[U-Boot] [PATCH v4 6/9] cmd: efitool: add images command

2019-01-14 Thread AKASHI Takahiro
"images" command prints loaded images-related information. Signed-off-by: AKASHI Takahiro --- cmd/efitool.c | 13 - 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/cmd/efitool.c b/cmd/efitool.c index 4bd6367b4bd9..e77273fc6e1e 100644 --- a/cmd/efitool.c +++

Re: [U-Boot] [PATCH v4 3/9] efi_driver: add name to driver binding protocol

2019-01-14 Thread Heinrich Schuchardt
On 1/15/19 3:55 AM, AKASHI Takahiro wrote: > This new field will be shown as a driver's name in "efitool drivers" > command. We can have drivers supplied by U-Boot and drivers supplied by an EFI binary that we recently installed via the bootefi command. A driver installed via the bootefi command

Re: [U-Boot] [PATCH v4 5/9] cmd: efitool: add dh command

2019-01-14 Thread Heinrich Schuchardt
On 1/15/19 3:55 AM, AKASHI Takahiro wrote: > "dh" command prints all the uefi handles used in the system. > > => efi dh > 7ef3bfa0: Device Path, Device Path To Text, Device Path Utilities, > Unicode Collation 2 > 7ef31d30: Driver Binding > 7ef31da0: Simple

Re: [U-Boot] [PATCH 2/2] lib: fdtdec: fixup fdtdec_get_addr_size

2019-01-14 Thread J, KEERTHY
On 1/15/2019 6:23 AM, Simon Glass wrote: Hi Keerthy, On Thu, 3 Jan 2019 at 21:39, Keerthy wrote: On Thursday 03 January 2019 11:44 PM, s...@google.com wrote: On 12/21/18 9:24 AM, Keerthy wrote: fix up fdtdec_get_addr_size to use fdtdec_get_addr_size_auto_noparent so that the address

Re: [U-Boot] rk3288: firefly: flashing emmc from maskrom using USB

2019-01-14 Thread Kever Yang
HI Jack, On 01/15/2019 01:28 AM, Jack Mitchell wrote: > I'm having issues flashing the emmc on my firefly board using USB. For > some reason it seems as though trying to write to the emmc flash sector > 0x40 for uboot spl+proper from the Maskrom/Loader doesn't work. Can > anyone elaborate on

[U-Boot] [PATCH v4 0/9] cmd: add efitool for efi environment

2019-01-14 Thread AKASHI Takahiro
This patch set is a collection of patches to enhance efi user interfaces /commands. It will help improve user experience on efi boot and make it more usable *without* edk2's shell utility. Let's see how it works: => efitool boot add 1 SHELL mmc 0:1 /Shell.efi "" => efitool boot add 2 HELLO mmc

[U-Boot] [PATCH v4 3/9] efi_driver: add name to driver binding protocol

2019-01-14 Thread AKASHI Takahiro
This new field will be shown as a driver's name in "efitool drivers" command. Signed-off-by: AKASHI Takahiro --- include/efi_driver.h| 1 + lib/efi_driver/efi_uclass.c | 1 + 2 files changed, 2 insertions(+) diff --git a/include/efi_driver.h b/include/efi_driver.h index

[U-Boot] [PATCH v4 1/9] cmd: add efitool command

2019-01-14 Thread AKASHI Takahiro
Currently, there is no easy way to add or modify UEFI variables. In particular, bootmgr supports BootOrder/Boot variables, it is quite hard to define them as u-boot variables because they are represented in a complicated and encoded format. The new command, efitool, helps address these issues

[U-Boot] [PATCH v2 5/5] cmd: run: add "-e" option to run an EFI application

2019-01-14 Thread AKASHI Takahiro
"run -e" allows for executing EFI application with a specific "Boot" variable. If no "Boot" is specified or "BootOrder" is specified, it tries to run an EFI application specified in the order of "bootOrder." Signed-off-by: AKASHI Takahiro --- cmd/bootefi.c | 31

[U-Boot] [PATCH v2 4/5] cmd: bootefi: run an EFI application of a specific load option

2019-01-14 Thread AKASHI Takahiro
With this patch applied, we will be able to selectively execute an EFI application by specifying a load option, say "1" for Boot0001, "2" for Boot0002 and so on. => bootefi bootmgr 1, or bootefi bootmgr - 1 Please note that Boot need not be included in "BootOrder". Signed-off-by:

[U-Boot] [PATCH v2 1/5] efi_loader: bootmgr: support BootNext and BootCurrent variable behavior

2019-01-14 Thread AKASHI Takahiro
See UEFI v2.7, section 3.1.2 for details of the specification. With my efitool command, you can try as the following: => efi boot add 1 SHELL ... => efi boot add 2 HELLO ... => efi boot order 1 2 => efi bootmgr (starting SHELL ...) => efi boot next 2 => efi bootmgr (starting

[U-Boot] [PATCH v2 2/5] efi_loader: bootmgr: allow for running a given load option

2019-01-14 Thread AKASHI Takahiro
With an extra argument, efi_bootmgr_load() can now load an efi binary based on a "Boot" variable specified. Signed-off-by: AKASHI Takahiro --- cmd/bootefi.c| 3 ++- include/efi_loader.h | 5 - lib/efi_loader/efi_bootmgr.c | 9 - 3 files changed, 14

[U-Boot] [PATCH 1/4] .travis.yml: Support nds32 prebuilt toolchain

2019-01-14 Thread Andes
From: Rick Chen Download nds32 prebuild toolchain from github which is base on gcc 8.0.1 version for regression. Signed-off-by: Rick Chen Cc: Greentime Hu --- .travis.yml | 9 + 1 file changed, 9 insertions(+) diff --git a/.travis.yml b/.travis.yml index 321fd79..4b7c696 100644 ---

[U-Boot] [PATCH 2/4] nds32: Remove gcc unused option

2019-01-14 Thread Andes
From: Rick Chen -G0 is an old option, not support now, So remove it. It can help to fix compile error when build with nds32 pre-build toolchain. Signed-off-by: Rick Chen Cc: Greentime Hu --- arch/nds32/config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[U-Boot] [PATCH 3/4] nds32: Generate SW fpu instruction.

2019-01-14 Thread Andes
From: Rick Chen Force it to generate SW fup instruction. It help to avoid bugs when running on no-HW-fpu board, but compile with v3f which support HW fpu instruction. Signed-off-by: Rick Chen Cc: Greentime Hu --- arch/nds32/config.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

[U-Boot] [PATCH 4/4] nds32: Fix boot fail issue when build with elf-mculib.

2019-01-14 Thread Andes
From: Rick Chen Add -mcmodel=large can let elf-mculib have the same default behavior just like linux-glibc. And it help to pass U-Boot booting sequence. Signed-off-by: Rick Chen Cc: Greentime Hu --- arch/nds32/config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[U-Boot] [PATCH 1/1] efi_loader: remove duplicate GUID definition

2019-01-14 Thread Heinrich Schuchardt
Remove duplicate definition o EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID. Signed-off-by: Heinrich Schuchardt --- include/efi_api.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/efi_api.h b/include/efi_api.h index aef77b6319..9f63bf2487 100644 --- a/include/efi_api.h +++

Re: [U-Boot] [PATCH v4 6/9] cmd: efitool: add images command

2019-01-14 Thread Heinrich Schuchardt
On 1/15/19 3:55 AM, AKASHI Takahiro wrote: > "images" command prints loaded images-related information. > > Signed-off-by: AKASHI Takahiro > --- > cmd/efitool.c | 13 - > 1 file changed, 12 insertions(+), 1 deletion(-) > > diff --git a/cmd/efitool.c b/cmd/efitool.c > index

Re: [U-Boot] booting optee via SPL on imx6q

2019-01-14 Thread Kever Yang
Hi Shyam, On 01/04/2019 07:46 PM, Shyam Saini wrote: > Hi Kever, > > I've been trying to boot optee via SPL on my imx6 board. > > I see you added booting optee via SPL support in this commit. > http://git.denx.de/?p=u-boot.git;a=commit;h=70fe2876352939194ccd9091379453a5ddb64ddb > > I used fit

[U-Boot] [PATCH v4 9/9] cmd: env: add "-e" option for handling UEFI variables

2019-01-14 Thread AKASHI Takahiro
"env [print|set] -e" allows for handling uefi variables without knowing details about mapping to corresponding u-boot variables. Signed-off-by: AKASHI Takahiro --- cmd/nvedit.c | 61 ++-- 1 file changed, 59 insertions(+), 2 deletions(-) diff

Re: [U-Boot] [PATCH v4 4/9] cmd: efitool: add drivers command

2019-01-14 Thread Heinrich Schuchardt
On 1/15/19 3:55 AM, AKASHI Takahiro wrote: > "drivers" command prints all the uefi drivers on the system. > > => efi drivers > D > r > vDriver Name Image Path > == > 7ef31d30 EFI block driver > > Signed-off-by:

Re: [U-Boot] [PATCH v4 9/9] cmd: env: add "-e" option for handling UEFI variables

2019-01-14 Thread Heinrich Schuchardt
On 1/15/19 3:55 AM, AKASHI Takahiro wrote: > "env [print|set] -e" allows for handling uefi variables without > knowing details about mapping to corresponding u-boot variables. Why do we need two alternative ways to achieve the same result? We already have 'efitool setvar' and 'efitool dumpvar'.

Re: [U-Boot] [PATCH v4 2/9] cmd: efitool: add devices command

2019-01-14 Thread Heinrich Schuchardt
On 1/15/19 3:55 AM, AKASHI Takahiro wrote: > "devices" command prints all the uefi variables on the system. > > => efi devices > Scanning disk ahci_scsi.id0lun0... > Scanning disk ahci_scsi.id1lun0... > Found 4 disks > D > e > vDevice Path > >

Re: [U-Boot] [PATCH v10 00/10] Fix CVE-2018-18440 and CVE-2018-18439

2019-01-14 Thread Simon Goldschmidt
Am Mo., 14. Jan. 2019, 23:55 hat Tom Rini geschrieben: > On Mon, Jan 14, 2019 at 10:38:13PM +0100, Simon Goldschmidt wrote: > > > This series fixes CVE-2018-18440 ("insufficient boundary checks in > > filesystem image load") by adding restrictions to the 'load' > > command and fixes

Re: [U-Boot] [PATCH 09/10] video: Kconfig: spelling fixes

2019-01-14 Thread Chris Packham
On Mon, Jan 14, 2019 at 11:00 PM Philipp Tomsich wrote: > > > > > On 13.01.2019, at 10:13, Chris Packham wrote: > > > > Signed-off-by: Chris Packham > > Reviewed-by: Philipp Tomsich > > Strictly speaking the “commit message” (i.e. anything beyond the summary > line) is > missing, even as this

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

2019-01-14 Thread uboot
Hi Tom, Please pull some riscv updates: 1. Improve cache implementation. 2. Fix and improve standalone applications https://travis-ci.org/rickchen36/u-boot-riscv/builds/479684449 Thanks Rick The following changes since commit d3689267f92c5956e09cc7d1baa4700141662bff: Prepare v2019.01

Re: [U-Boot] [PATCH v1 01/21] ARM: DTS: vybrid: Add vf-u-boot.dtsi to set 'u-boot, dm-pre-reloc' in soc

2019-01-14 Thread Lukasz Majewski
Hi Tom, > On Mon, Jan 14, 2019 at 03:17:20PM +0100, Lukasz Majewski wrote: > > > This property is necessary to allow pinctrl configuration before > > relocation (uart, DDR pins). > > > > Separate file will facilitate updating vf.dtsi from the Linux > > kernel. > > > > Signed-off-by: Lukasz

Re: [U-Boot] [PATCH 2/2] travis: Wire Xilinx Versal Virt platform

2019-01-14 Thread Michal Simek
On 07. 01. 19 23:59, Tom Rini wrote: > On Mon, Jan 07, 2019 at 09:15:17PM +0100, Alexander Graf wrote: >> >> >> On 07.01.19 18:13, Tom Rini wrote: >>> On Mon, Jan 07, 2019 at 05:57:10PM +0100, Alexander Graf wrote: On 01/07/2019 01:46 PM, Michal Simek wrote: > On 07. 01. 19 13:28, Tom

[U-Boot] [PATCH] arm64: versal: Setup DM_ETH/MMC if NET/MMC is enabled

2019-01-14 Thread Michal Simek
Setup proper ETH/MMC dependency for the whole platform. Signed-off-by: Michal Simek --- arch/arm/Kconfig | 2 ++ configs/xilinx_versal_virt_defconfig | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index

Re: [U-Boot] [PATCH v4 8/9] cmd: efitool: export uefi variable helper functions

2019-01-14 Thread Heinrich Schuchardt
On 1/15/19 3:55 AM, AKASHI Takahiro wrote: > Those function will be used for integration with 'env' command > so as to handle uefi variables. > > Signed-off-by: AKASHI Takahiro > --- > cmd/efitool.c | 38 ++ > include/command.h | 4 > 2 files

[U-Boot] [PATCH] nds32: dts: Fix mmc node compatible string

2019-01-14 Thread Andes
From: Rick Chen In the two commits: cf3922dddc44a968685b535f2af195f1e51f4a7b mmc: ftsdc010_mci: Sync compatible with DT mmc node c14e90e8445e7b1c3531b4bdeb778c47bd6570eb riscv: dts: Sync DT with Linux Kernel ftsdc010_mci's compatible has been modified as "andestech,atfsdc010" for RISC-V

Re: [U-Boot] [PATCH v1 1/4] arm: socfpga: imply SPL config instead of select

2019-01-14 Thread Simon Goldschmidt
On Mon, Jan 14, 2019 at 11:26 PM Dinh Nguyen wrote: > > > > On 1/14/19 10:05 AM, Simon Goldschmidt wrote: > > Hi Dinh, > > > > Am 14.01.2019 um 16:58 schrieb Dinh Nguyen: > >> Hi Simon, > >> > >> On 1/14/19 9:50 AM, Simon Goldschmidt wrote: > >>> Am 11.01.2019 um 23:02 schrieb Marek Vasut: >

Re: [U-Boot] [PATCH 1/2] ARM: dts: sun8i: Update A80 dts(i) from Linux-v4.18-rc3

2019-01-14 Thread Chen-Yu Tsai
On Sat, Jan 12, 2019 at 12:08 AM Jagan Teki wrote: > > Chen-Yu and Rask, > > On Fri, Jan 11, 2019 at 4:46 PM Jagan Teki wrote: > > > > Update all A80 devicetree dtsi and dtsi files from > > Linux-v4.18-rc3 with below commits. > > > > arch/arm/boot/dts/sun9i-a80*: > > > > commit

Re: [U-Boot] [PATCH 09/10] video: Kconfig: spelling fixes

2019-01-14 Thread Anatolij Gustschin
On Sun, 13 Jan 2019 22:13:27 +1300 Chris Packham judge.pack...@gmail.com wrote: > Signed-off-by: Chris Packham Reviewed-by: Anatolij Gustschin -- Anatolij ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH v2 1/1] avb: add support for named persistent values

2019-01-14 Thread Jens Wiklander
Hi Igor, Some comments below. On Fri, Dec 14, 2018 at 07:45:03PM +0200, Igor Opaniuk wrote: > AVB version 1.1 introduces support for named persistent values > that must be tamper evident and allows AVB to store arbitrary key-value > pairs [1]. > > Introduce implementation of two additional AVB

Re: [U-Boot] [PATCH 0/7] mmc: sunxi: Enable DM_MMC

2019-01-14 Thread Priit Laes
On Fri, Jan 11, 2019 at 11:34:07PM +0530, Jagan Teki wrote: > I thought of waiting this till CLK framework gets Mainline, > but migration deadline for DM_MMC and BLK seems expiring in > next release. So instead of doing so huddle and make some last > minute changes, I have managed to add CLK,

Re: [U-Boot] [PATCH 09/10] video: Kconfig: spelling fixes

2019-01-14 Thread Philipp Tomsich
> On 13.01.2019, at 10:13, Chris Packham wrote: > > Signed-off-by: Chris Packham Reviewed-by: Philipp Tomsich Strictly speaking the “commit message” (i.e. anything beyond the summary line) is missing, even as this is a trivial fix… ___ U-Boot

Re: [U-Boot] [PATCH 0/7] mmc: sunxi: Enable DM_MMC

2019-01-14 Thread Jagan Teki
On Mon, Jan 14, 2019 at 3:05 PM Priit Laes wrote: > > On Fri, Jan 11, 2019 at 11:34:07PM +0530, Jagan Teki wrote: > > I thought of waiting this till CLK framework gets Mainline, > > but migration deadline for DM_MMC and BLK seems expiring in > > next release. So instead of doing so huddle and

Re: [U-Boot] [linux-sunxi] Re: [PATCH 0/7] mmc: sunxi: Enable DM_MMC

2019-01-14 Thread Jagan Teki
On Mon 14 Jan, 2019, 3:53 PM Priit Laes On Mon, Jan 14, 2019 at 03:40:37PM +0530, Jagan Teki wrote: > > On Mon, Jan 14, 2019 at 3:05 PM Priit Laes wrote: > > > > > > On Fri, Jan 11, 2019 at 11:34:07PM +0530, Jagan Teki wrote: > > > > I thought of waiting this till CLK framework gets Mainline, >

[U-Boot] [PATCH v2 2/9] arm: actions: Add owl memory map regions

2019-01-14 Thread Amit Singh Tomar
This adds memory regions needed to setup MMU for actions S900 and S700 SoCs. Signed-off-by: Amit Singh Tomar --- Changes since v1: * compile sysmap-owl.c against CONFIG_ARM64 now. --- arch/arm/mach-owl/Makefile | 3 ++- arch/arm/mach-owl/sysmap-owl.c | 32

Re: [U-Boot] [PATCH] mmc: hi6220_dw_mmc: add driver model support

2019-01-14 Thread Shawn Guo
On Mon, Dec 17, 2018 at 05:02:31PM +0800, Shawn Guo wrote: > As requested by driver model migration plan, it adds driver model > support, i.e. CONFIG_DM_MMC, for hi6220_dw_mmc driver. > > Signed-off-by: Shawn Guo Hi Jaehoon, Any comment on this patch? Shawn

[U-Boot] [PATCH v2 5/9] arm: actions: add S700 SoC device tree

2019-01-14 Thread Amit Singh Tomar
This patch adds .dtsi file(sync with Linux 4.20) and required binding for S700 SoC that is a 64-bit Quad-core ARM Cortex-A53 cores. Signed-off-by: Amit Singh Tomar --- Changes since v1: * Moved the u-boot specific changes to s700-u-boot.dtsi, now s700.dtsi is in complete sync

[U-Boot] [PATCH v2 9/9] actions: add Cubieboard7 README

2019-01-14 Thread Amit Singh Tomar
Signed-off-by: Amit Singh Tomar --- Changes since v1: * No changes. --- arch/arm/mach-owl/README.cubieboard7 | 88 1 file changed, 88 insertions(+) create mode 100644 arch/arm/mach-owl/README.cubieboard7 diff --git

[U-Boot] [PATCH v2 1/9] arm: actions: Add common framework for Actions Semi SoCs

2019-01-14 Thread Amit Singh Tomar
This adds common arch owl support that can drive, 64-bits SoCs from Actions Semi. It also removes the Bubblegum specific board files. Signed-off-by: Amit Singh Tomar --- Changes since v1: * Moved S700 specific changes to patch 4 of 9. * Moved couple of symbols from defconfig to

[U-Boot] [PATCH v3 3/9] clk: actions: Add common clock driver

2019-01-14 Thread Amit Singh Tomar
CMU block on most of the actions SoC seems to be identical(at-least, S900 and S700). This patch converts S900 clock driver to something common that can be used for other SoCs, for instance S700(most of clk registres are same). Signed-off-by: Amit Singh Tomar --- Changes since v1: *

[U-Boot] [PATCH v2 6/9] arm: add Cubieboard7 board support

2019-01-14 Thread Amit Singh Tomar
The Cubieboard is a single board computer containing a Actions S700 SoC(with 4 ARMv8 Cortex-A53 cores). This patch adds respective defconfig alongwith device tree(sync with Linux 4.20). Signed-off-by: Amit Singh Tomar --- Changes since v1: * No changes. ---

[U-Boot] [PATCH v2 7/9] actions:s700: add u-boot specific dts file

2019-01-14 Thread Amit Singh Tomar
Devices like uart and clk are needed to be enabled before relocation. this patch adds u-boot.dtsi file that mark these device as dm-pre-reloc. Signed-off-by: Amit Singh Tomar --- Changes since v1: * This is newly added file that was *not* present in v1 and contains u-boot

Re: [U-Boot] poplar: save environment at a different offset

2019-01-14 Thread Tom Rini
On Tue, Dec 18, 2018 at 11:08:18AM +0800, Shawn Guo wrote: > From: Alex Elder > > Change CONFIG_ENV_OFFSET for Poplar to be 1MB further into the eMMC > than before. This puts it immediately prior to the space we are > reserving offset 0x20-0x40 for UEFI to save its persistent > data.

Re: [U-Boot] [PATCH 0/2] Enable fastboot support for Poplar board

2019-01-14 Thread Tom Rini
On Mon, Jan 14, 2019 at 05:23:22PM +0800, Shawn Guo wrote: > On Tue, Dec 18, 2018 at 05:52:05PM +0800, Shawn Guo wrote: > > It enables DWC2 OTG gadget driver and fastboot support for Poplar > > board. > > > > Shawn Guo (2): > > poplar: add DWC2 OTG gadget support > > poplar_defconfig: enable

Re: [U-Boot] [linux-sunxi] Re: [PATCH 0/7] mmc: sunxi: Enable DM_MMC

2019-01-14 Thread Priit Laes
On Mon, Jan 14, 2019 at 04:00:44PM +0530, Jagan Teki wrote: > On Mon 14 Jan, 2019, 3:53 PM Priit Laes > > On Mon, Jan 14, 2019 at 03:40:37PM +0530, Jagan Teki wrote: > > > On Mon, Jan 14, 2019 at 3:05 PM Priit Laes wrote: > > > > > > > > On Fri, Jan 11, 2019 at 11:34:07PM +0530, Jagan Teki

Re: [U-Boot] [PATCH 0/2] Enable fastboot support for Poplar board

2019-01-14 Thread Shawn Guo
On Tue, Dec 18, 2018 at 05:52:05PM +0800, Shawn Guo wrote: > It enables DWC2 OTG gadget driver and fastboot support for Poplar > board. > > Shawn Guo (2): > poplar: add DWC2 OTG gadget support > poplar_defconfig: enable fastboot support Hi Tom, Are you okay with these two patches? Shawn

Re: [U-Boot] [PATCH] poplar: save environment at a different offset

2019-01-14 Thread Shawn Guo
Hi Tom, Can you please help apply the patch if it looks fine? Shawn On Tue, Dec 18, 2018 at 11:08:18AM +0800, Shawn Guo wrote: > From: Alex Elder > > Change CONFIG_ENV_OFFSET for Poplar to be 1MB further into the eMMC > than before. This puts it immediately prior to the space we are >

Re: [U-Boot] [PATCH v2 2/9] ARM: rockchip: rk3188: Remove the pinctrl setup and enable uart at SPL

2019-01-14 Thread David Wu
Hi Heiko, 在 2019/1/6 上午1:17, Heiko Stuebner 写道: diff --git a/arch/arm/mach-rockchip/rk3188-board-spl.c b/arch/arm/mach-rockchip/rk3188-board-spl.c index 3c6c3d3c09..a5e4d39cb7 100644 --- a/arch/arm/mach-rockchip/rk3188-board-spl.c +++ b/arch/arm/mach-rockchip/rk3188-board-spl.c @@ -120,7

Re: [U-Boot] [linux-sunxi] Re: [PATCH 0/7] mmc: sunxi: Enable DM_MMC

2019-01-14 Thread Priit Laes
On Mon, Jan 14, 2019 at 03:40:37PM +0530, Jagan Teki wrote: > On Mon, Jan 14, 2019 at 3:05 PM Priit Laes wrote: > > > > On Fri, Jan 11, 2019 at 11:34:07PM +0530, Jagan Teki wrote: > > > I thought of waiting this till CLK framework gets Mainline, > > > but migration deadline for DM_MMC and BLK

Re: [U-Boot] [linux-sunxi] Re: [PATCH 0/7] mmc: sunxi: Enable DM_MMC

2019-01-14 Thread Priit Laes
On Mon, Jan 14, 2019 at 10:39:37AM +, Priit Laes wrote: > On Mon, Jan 14, 2019 at 04:00:44PM +0530, Jagan Teki wrote: > > On Mon 14 Jan, 2019, 3:53 PM Priit Laes > > > > On Mon, Jan 14, 2019 at 03:40:37PM +0530, Jagan Teki wrote: > > > > On Mon, Jan 14, 2019 at 3:05 PM Priit Laes wrote: > >

[U-Boot] [PATCH v2 8/9] serial: actions: add uart support for s700

2019-01-14 Thread Amit Singh Tomar
UART controller present on S700 is compatible with existing S900 controller, this patch simply adds a proper compatible string so that owl uart driver can be reused for S700. Signed-off-by: Amit Singh Tomar --- Changes since v1: * No changes. --- drivers/serial/serial_owl.c | 1 + 1

[U-Boot] [PATCH v2 4/9] arm: add support Actions Semi S700

2019-01-14 Thread Amit Singh Tomar
This patch adds basic support for Actions Semi based S700 SoC, which is driven by common owl framework. Signed-off-by: Amit Singh Tomar --- Changes since v1: * S700 specific changes are factored out here from patch 1 of 9. --- arch/arm/mach-owl/Kconfig | 6 ++

[U-Boot] [RESEND PATCH v2] env: add spi_flash_read_env function

2019-01-14 Thread Horatiu Vultur
The spi_flash_read_env function is a wrapper over spi_flash_read, which enables the env to read multiple flash page size from flash until '\0\0' is read or the end of env partition is reached. Instead of reading the entire env size. When it reads '\0\0', it stops reading further the env and

Re: [U-Boot] [PATCH] serial: Get rid of CONFIG_DW_SERIAL

2019-01-14 Thread Alexey Brodkin
Hi Simon, Tom, > -Original Message- > From: Simon Glass [mailto:s...@chromium.org] > Sent: Thursday, January 10, 2019 3:57 PM > To: Alexey Brodkin > Cc: U-Boot Mailing List ; uboot-snps-...@synopsys.com; > Tom Rini > ; Adam Ford ; Mario Six > ; Tuomas Tynkkynen > ; Alex Kiernan ; Jörg

<    1   2