[U-Boot] [PATCH 1/2] ARM: dts: uniphier: sync with Linux 5.1-rc4

2019-04-12 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- arch/arm/dts/uniphier-ld11.dtsi| 4 +- arch/arm/dts/uniphier-ld20.dtsi| 66 +- arch/arm/dts/uniphier-ld4.dtsi | 14 +++ arch/arm/dts/uniphier-pro4.dtsi| 16 arch/arm/dts/uniphier-pxs2.dtsi| 6 ++-

[U-Boot] [PATCH 2/2] ARM: uniphier_v8: enable CONFIG_SUPPORT_EMMC_RPMB

2019-04-12 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- configs/uniphier_v8_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/uniphier_v8_defconfig b/configs/uniphier_v8_defconfig index 08dfa240c1..e0e4dbd507 100644 --- a/configs/uniphier_v8_defconfig +++ b/configs/uniphier_v8_defconfig @@ -33,6

[U-Boot] [PATCH] mtd: spi-nor-ids: Add Gigadevice gd25lq128 ID

2019-04-12 Thread Neil Armstrong
This adds support for the Gigadevice gd25lq128 ID needed on the upcoming libretech-ac board. SPI_NOR_QUAD_READ is not set since it has not been tested in Quad mode. Signed-off-by: Neil Armstrong --- drivers/mtd/spi/spi-nor-ids.c | 5 + 1 file changed, 5 insertions(+) diff --git

Re: [U-Boot] [PATCH 1/4 v4] watchdog: Implement generic watchdog_reset() version

2019-04-12 Thread Michal Simek
On 12. 04. 19 10:32, Stefan Roese wrote: > On 12.04.19 10:22, Michal Simek wrote: >> On 11. 04. 19 15:58, Stefan Roese wrote: >>> This patch tries to implement a generic watchdog_reset() function that >>> can be used by all boards that want to service the watchdog device in >>> U-Boot. This

[U-Boot] [PATCH 1/1] common: fdt_support: Check mtdparts cell size

2019-04-12 Thread Stefan Mavrodiev
When using fdt_fixup_mtdparts() offset and length cell sizes are limited to 4 bytes (1 cell). However if the mtd device is bigger then 4GiB, then #address-cells and #size-cells are 8 bytes (2 cells) [1]. This patch read #size-cells and uses either fdt32_t or fdt64_t cell size. The default is

[U-Boot] [PATCH v3 2/2] env: mmc: add erase-function

2019-04-12 Thread Frank Wunderlich
Signed-off-by: Frank Wunderlich --- env/mmc.c | 28 1 file changed, 28 insertions(+) diff --git a/env/mmc.c b/env/mmc.c index c3cf35d01b..f387a53970 100644 --- a/env/mmc.c +++ b/env/mmc.c @@ -242,6 +242,33 @@ fini: fini_mmc_for_env(mmc); return ret;

[U-Boot] [PATCH v3 1/2] env: register erase command

2019-04-12 Thread Frank Wunderlich
Signed-off-by: Frank Wunderlich --- cmd/nvedit.c | 13 + env/env.c | 30 ++ include/environment.h | 17 + 3 files changed, 60 insertions(+) diff --git a/cmd/nvedit.c b/cmd/nvedit.c index 24a6cf7824..3b5c62d629 100644

[U-Boot] [PATCH v3 0/2] add env erase

2019-04-12 Thread Frank Wunderlich
sometimes it is needed to erase the non-volatile environment e.g. for boot-up with builtin-environment or after resizing env this series add basic functionality for erasing environment from storage as a first storage-driver mmc is introduced, other needs to be added later changes since v2: -

Re: [U-Boot] [PATCH 1/1] colibri_imx6: use UUID for rootfs

2019-04-12 Thread Marcel Ziswiler
Hi Igor Thanks for cleaning that up. On Fri, 2019-04-05 at 15:51 +0200, Igor Opaniuk wrote: > Replace usage of "/dev/mmcblk*p*" with a proper UUID of rootfs > partition. > This fixes the issue, when MMC controllers are probed in a different > order > in U-boot and Linux kernel. Basically a

Re: [U-Boot] [linux-sunxi] [PATCH] phy: sun4i-usb: Fix PHY0 routing and passby configuration for MUSB

2019-04-12 Thread Jagan Teki
On Thu, Mar 14, 2019 at 4:08 PM Paul Kocialkowski wrote: > > Recent Allwinner platforms (starting with the H3) only use the MUSB > controller for peripheral mode and use HCI for host mode. As a result, > extra steps need to be taken to properly route USB signals to one or > the other. More

Re: [U-Boot] Migration to KConfig

2019-04-12 Thread Marcel Ziswiler
Sali Pascal On Fri, 2019-04-12 at 07:52 +, Linder Pascal wrote: > Hello everyone, > > > My task is to migrate a board from a U-Boot of version v2016.01 to > the latest state of the mainline. So first of all, I am analyzing the > configuration system KConfig that has changed in the meantime.

Re: [U-Boot] [PATCH v2 1/1] video: backlight: Parse PWM polarity cell

2019-04-12 Thread Anatolij Gustschin
On Fri, 12 Apr 2019 08:56:27 +0300 Stefan Mavrodiev ste...@olimex.com wrote: > This patch enables the reading of the polarity cell from a PWM > phandle and calls pwm_set_invert(). > > Not all platforms have polarity cell, so skip if it's not pressent. > > Signed-off-by: Stefan Mavrodiev

Re: [U-Boot] [RFC v2 09/11] cmd: bootefi: carve out do_boot_efi() from do_bootefi()

2019-04-12 Thread Heinrich Schuchardt
On 4/12/19 9:22 AM, AKASHI Takahiro wrote: > On Fri, Apr 12, 2019 at 07:59:51AM +0200, Heinrich Schuchardt wrote: >> On 3/27/19 5:40 AM, AKASHI Takahiro wrote: >>> This is a preparatory patch for reworking do_bootefi() in later patch. >>> All the non-boot-manager-based (that is, bootefi ) code

Re: [U-Boot] [RFC v2 08/11] cmd: bootefi: carve out bootmgr code from do_bootefi()

2019-04-12 Thread Heinrich Schuchardt
On 4/12/19 9:06 AM, AKASHI Takahiro wrote: > On Fri, Apr 12, 2019 at 07:55:16AM +0200, Heinrich Schuchardt wrote: >> On 3/27/19 5:40 AM, AKASHI Takahiro wrote: >>> This is a preparatory patch for reworking do_bootefi() in later patch. >>> do_bootmgr_exec() is renamed to do_efibootmgr() as we put

Re: [U-Boot] [RFC v2 10/11] efi_loader: rework bootmgr/bootefi using load_image API

2019-04-12 Thread Heinrich Schuchardt
On 4/12/19 10:38 AM, AKASHI Takahiro wrote: > On Fri, Apr 12, 2019 at 07:53:25AM +0200, Heinrich Schuchardt wrote: >> On 3/27/19 5:40 AM, AKASHI Takahiro wrote: >>> In the current implementation, bootefi command and EFI boot manager >>> don't use load_image API, instead, use more primitive and

Re: [U-Boot] [RFC v2 10/11] efi_loader: rework bootmgr/bootefi using load_image API

2019-04-12 Thread AKASHI Takahiro
On Fri, Apr 12, 2019 at 07:53:25AM +0200, Heinrich Schuchardt wrote: > On 3/27/19 5:40 AM, AKASHI Takahiro wrote: > >In the current implementation, bootefi command and EFI boot manager > >don't use load_image API, instead, use more primitive and internal > >functions. This will introduce

Re: [U-Boot] [PATCH 1/4 v4] watchdog: Implement generic watchdog_reset() version

2019-04-12 Thread Stefan Roese
On 12.04.19 10:22, Michal Simek wrote: On 11. 04. 19 15:58, Stefan Roese wrote: This patch tries to implement a generic watchdog_reset() function that can be used by all boards that want to service the watchdog device in U-Boot. This watchdog servicing is enabled via CONFIG_WATCHDOG. Without

Re: [U-Boot] [PATCH 1/4 v4] watchdog: Implement generic watchdog_reset() version

2019-04-12 Thread Michal Simek
On 11. 04. 19 15:58, Stefan Roese wrote: > This patch tries to implement a generic watchdog_reset() function that > can be used by all boards that want to service the watchdog device in > U-Boot. This watchdog servicing is enabled via CONFIG_WATCHDOG. > > Without this approach, new boards or

Re: [U-Boot] [PATCH 2/4 v4] watchdog: cadence: Remove driver specific "timeout-sec" handling

2019-04-12 Thread Michal Simek
On 11. 04. 19 15:58, Stefan Roese wrote: > Now that we have a generic DT property "timeout-sec" handling, the > driver specific implementation can be dropped. > > This patch also changes the timeout restriction to the min and max > values (clipping). Before this patch, the value provided via >

[U-Boot] [PATCH 8/8] imx8: mek: move HUSH_PARSER to defconfig

2019-04-12 Thread Peng Fan
Move HUSH_PARSER to defconfig, otherwise meet " => run netboot Booting from net ... Unknown command 'if' - try 'help' Unknown command 'then' - try 'help' Unknown command 'else' - try 'help' Unknown command 'fi' - try 'help' Unknown command '0x8028' - try 'help' Unknown command 'if' - try

[U-Boot] [PATCH 7/8] imx: imx8dx/qxp: enable thermal

2019-04-12 Thread Peng Fan
Add thermal dts node Enable thermal in defconfig Signed-off-by: Peng Fan --- arch/arm/dts/fsl-imx8dx.dtsi | 56 +++ configs/imx8qxp_mek_defconfig | 2 ++ 2 files changed, 58 insertions(+) diff --git a/arch/arm/dts/fsl-imx8dx.dtsi

[U-Boot] [PATCH 6/8] imx8: cpu: get temperature when print cpu desc

2019-04-12 Thread Peng Fan
Read the temperature when print cpu inforation. Signed-off-by: Peng Fan --- arch/arm/mach-imx/imx8/cpu.c | 35 +-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-imx/imx8/cpu.c b/arch/arm/mach-imx/imx8/cpu.c index

[U-Boot] [PATCH 4/8] misc: imx8: add sc_misc_get_temp

2019-04-12 Thread Peng Fan
Add sc_misc_get_temp to support get temperature Signed-off-by: Peng Fan --- arch/arm/include/asm/arch-imx8/sci/sci.h | 2 ++ arch/arm/include/asm/arch-imx8/sci/svc/misc/api.h | 1 + drivers/misc/imx8/scu_api.c | 28 +++ 3 files changed, 31

[U-Boot] [PATCH 5/8] thermal: add i.MX8 thermal driver

2019-04-12 Thread Peng Fan
Add i.MX8 thermal driver to support get temperature from SCU. Signed-off-by: Peng Fan --- drivers/thermal/Kconfig | 9 ++ drivers/thermal/Makefile | 1 + drivers/thermal/imx_scu_thermal.c | 203 ++ 3 files changed, 213 insertions(+)

[U-Boot] [PATCH 3/8] imx8qxp: mek: Enable CMD_FUSE

2019-04-12 Thread Peng Fan
Enable CMD_FUSE for i.MX8QXP MEK Signed-off-by: Peng Fan --- configs/imx8qxp_mek_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/imx8qxp_mek_defconfig b/configs/imx8qxp_mek_defconfig index a94998b8b5..14e9da386a 100644 --- a/configs/imx8qxp_mek_defconfig +++

[U-Boot] [PATCH 1/8] imx: sip: add call_imx_sip_ret2

2019-04-12 Thread Peng Fan
This function will be used by i.MX8 fuse driver. Signed-off-by: Peng Fan --- arch/arm/include/asm/mach-imx/sys_proto.h | 3 +++ arch/arm/mach-imx/sip.c | 22 ++ 2 files changed, 25 insertions(+) diff --git a/arch/arm/include/asm/mach-imx/sys_proto.h

[U-Boot] [PATCH 2/8] imx8: fuse: add fuse driver

2019-04-12 Thread Peng Fan
Add fuse write for i.MX8 Signed-off-by: Peng Fan --- drivers/misc/imx8/Makefile | 1 + drivers/misc/imx8/fuse.c | 86 ++ 2 files changed, 87 insertions(+) create mode 100644 drivers/misc/imx8/fuse.c diff --git a/drivers/misc/imx8/Makefile

[U-Boot] Migration to KConfig

2019-04-12 Thread Linder Pascal
Hello everyone, My task is to migrate a board from a U-Boot of version v2016.01 to the latest state of the mainline. So first of all, I am analyzing the configuration system KConfig that has changed in the meantime. I do not really understand what has changed with KConfig. Is it just the

Re: [U-Boot] [PATCH v2] lib: decode_timing_property should return -NOENT when proprty is not found

2019-04-12 Thread Ondřej Jirman
Hello Simon, On Thu, Apr 11, 2019 at 08:12:00PM -0600, Simon Glass wrote: > Hi, > > On Wed, 20 Feb 2019 at 18:47, Simon Glass wrote: > > > > Hi, > > > > On Wed, 13 Feb 2019 at 10:50, wrote: > > > > > > From: Ondrej Jirman > > > > > > Length may be unitialized when fdt_getprop fails. Return

Re: [U-Boot] [PATCH] mtd: spi: Improve data write functionality

2019-04-12 Thread Vignesh Raghavendra
On 05/04/19 2:24 PM, Rajat Srivastava wrote: > Incorporate write enable and status check in the write data > function itself. > > Formerly, Write data function used to break the data to be > written into smaller chunks and used to send the smaller > chunks without write enable or status check

Re: [U-Boot] [PATCH v4 00/25] MTD defconfigs/Kconfigs/Makefiles heavy cleanup

2019-04-12 Thread Miquel Raynal
Hi Jagan, Jagan Teki wrote on Fri, 12 Apr 2019 11:13:21 +0530: > On Sun, Dec 9, 2018 at 11:38 PM Miquel Raynal > wrote: > > > > Hello, > > > > During my last project about SPI-NAND support in U-Boot, I discovered > > when modifying Makefiles a confusing organization where: > > *

Re: [U-Boot] [RFC v2 09/11] cmd: bootefi: carve out do_boot_efi() from do_bootefi()

2019-04-12 Thread AKASHI Takahiro
On Fri, Apr 12, 2019 at 07:59:51AM +0200, Heinrich Schuchardt wrote: > On 3/27/19 5:40 AM, AKASHI Takahiro wrote: > >This is a preparatory patch for reworking do_bootefi() in later patch. > >All the non-boot-manager-based (that is, bootefi ) code is put > >into one function, do_boot_efi(). > > >

Re: [U-Boot] [PATCH 1/3] arm: kirkwood: dts: Add openrd-* dtb makefile build targets

2019-04-12 Thread Chris Packham
On Thu, 11 Apr 2019, 10:33 PM Stefan Roese, wrote: > The following Kirkwood dtb build targets are currently missing: > > kirkwood-openrd-base.dtb > kirkwood-openrd-client.dtb > kirkwood-openrd-ultimate.dtb > > This patch adds them to the Makefile to fix the build error. > > Signed-off-by: Stefan

Re: [U-Boot] [PATCH 3/3] arm: kirkwood: openrd: Increase U-Boot size in flash to make it fit

2019-04-12 Thread Chris Packham
On Thu, 11 Apr 2019, 10:33 PM Stefan Roese, wrote: > We have run now multiple times into size issues with the openrd > board port. To finally fix this, this patch now moves the U-Boot size > from 0x6. to 0x8., giving enough space for the next time. > > This also changes the environment

Re: [U-Boot] [RFC v2 08/11] cmd: bootefi: carve out bootmgr code from do_bootefi()

2019-04-12 Thread AKASHI Takahiro
On Fri, Apr 12, 2019 at 07:55:16AM +0200, Heinrich Schuchardt wrote: > On 3/27/19 5:40 AM, AKASHI Takahiro wrote: > >This is a preparatory patch for reworking do_bootefi() in later patch. > >do_bootmgr_exec() is renamed to do_efibootmgr() as we put all the necessary > >code into this function. > >

Re: [U-Boot] [PATCH 2/3] arm: kirkwood: openrd: Remove superfluous CONFIG_ENV_ADDR

2019-04-12 Thread Chris Packham
On Thu, 11 Apr 2019, 10:33 PM Stefan Roese, wrote: > Remove the superfluous CONFIG_ENV_ADDR definition. Its not needed > as CONFIG_ENV_OFFSET is also set to the same value. > > Signed-off-by: Stefan Roese > Cc: Chris Packham > Reviewed-by: Chris Packham > --- > include/configs/openrd.h | 1

Re: [U-Boot] [PATCH 1/1] efi_loader: fix setting PlatformLang

2019-04-12 Thread AKASHI Takahiro
One more comment. On Fri, Apr 12, 2019 at 01:43:23PM +0900, AKASHI Takahiro wrote: > On Fri, Apr 12, 2019 at 06:20:47AM +0200, Heinrich Schuchardt wrote: > > On 4/12/19 4:49 AM, AKASHI Takahiro wrote: > > >On Thu, Apr 11, 2019 at 07:23:54PM +0200, Heinrich Schuchardt wrote: > > >>The UEFI

Re: [U-Boot] [PATCH] mtd: spi: Improve data write functionality

2019-04-12 Thread Jagan Teki
On Fri, Apr 5, 2019 at 2:24 PM Rajat Srivastava wrote: > > Incorporate write enable and status check in the write data > function itself. > > Formerly, Write data function used to break the data to be > written into smaller chunks and used to send the smaller > chunks without write enable or

[U-Boot] [PATCH v3] board: atmel: add SAMA5D2 ICP board

2019-04-12 Thread Eugen.Hristev
From: Eugen Hristev The SAMA5D2 ICP Board features the SAMA5D27 SoC, together with QSPI Flash, Wilc3000 wireless device and EtherCat support. Signed-off-by: Eugen Hristev --- Changes in v3: - Added CONFIG_SPL_RAM_DEVICE=y to fix build warning Changes in v2: - created

[U-Boot] [PATCH 5/6] arm: mach-omap2: am33xx: ddr: update value for ext_phy_ctrl_36

2019-04-12 Thread Keerthy
From: Brad Griffis for suspend/resume robustness update value for ext_phy_ctrl_36 for suspend/resume robustness with hardware leveling enabled. Match recommended values from EMIF Tools app note: http://www.ti.com/lit/an/sprac70/sprac70.pdf Signed-off-by: Brad Griffis Signed-off-by: Keerthy

[U-Boot] [PATCH 6/6] board: ti: am43xx: Enable hardware leveling

2019-04-12 Thread Keerthy
From: Brad Griffis Remove the RDLVL_MASK, RDLVLGATE_MASK, WRLVL_MASK & enable PHY_INVERT_CLKOUT to enable Hardware leveling for am437x as recommended by EMIF Tools app note: http://www.ti.com/sprac70 Signed-off-by: Brad Griffis Signed-off-by: Keerthy --- board/ti/am43xx/board.c | 2 +- 1

[U-Boot] [PATCH 4/6] arm: mach-omap2: am33xx: Disable EMIF_DEVOFF immediately before hw leveling

2019-04-12 Thread Keerthy
From: Brad Griffis In case of RTC+DDR resume, need to restore EMIF context before initiating hardware leveling. Signed-off-by: Brad Griffis Signed-off-by: Keerthy --- arch/arm/mach-omap2/am33xx/board.c | 3 --- arch/arm/mach-omap2/am33xx/ddr.c | 10 ++ 2 files changed, 10

[U-Boot] [PATCH 2/6] arm: mach-omap2: am33xx: ddr: Add 1ms delay to avoid L3 error

2019-04-12 Thread Keerthy
From: Brad Griffis Add 1ms delay to avoid L3 timeout error during suspend resume. Signed-off-by: Brad Griffis Signed-off-by: Keerthy --- arch/arm/mach-omap2/am33xx/ddr.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm/mach-omap2/am33xx/ddr.c b/arch/arm/mach-omap2/am33xx/ddr.c

[U-Boot] [PATCH 3/6] arm: mach-omap2: am33xx: Enable HW Leveling in the rtc+ddr path

2019-04-12 Thread Keerthy
From: Brad Griffis Enable HW leveling in RTC+DDR path. The mandate is to enable HW leveling bit and then wait for 1 ms before accessing any register. Signed-off-by: Brad Griffis Signed-off-by: Keerthy --- arch/arm/mach-omap2/am33xx/board.c | 30 +- 1 file changed,

[U-Boot] [PATCH 1/6] arm: mach-omap2: am33xx: ddr: programming of EXT_PHY_CTRL1 and EXT_PHY_CTRL1_SHADOW

2019-04-12 Thread Keerthy
From: Brad Griffis Adjust DQS skew in case where invert_clkout=1 is used. Match recommended values from EMIF Tools app note: http://www.ti.com/lit/an/sprac70/sprac70.pdf Signed-off-by: Brad Griffis Signed-off-by: Keerthy --- arch/arm/mach-omap2/am33xx/ddr.c | 12 ++-- 1 file

[U-Boot] [PATCH 0/6] board: ti: am43xx: Enable hardware leveling

2019-04-12 Thread Keerthy
The series adds the support for hardware leveling. This needs the kernel to be patched with hardware leveling support and the kernel support is already in linux-next: https://patchwork.kernel.org/project/linux-omap/list/?series=100273 Match recommended values from EMIF Tools app note:

Re: [U-Boot] [PATCH v2] sunxi: Fix build when CONFIG_CMD_PXE or CONFIG_CMD_DHCP are disabled

2019-04-12 Thread Jagan Teki
On Wed, Feb 13, 2019 at 11:20 PM wrote: > > From: Ondrej Jirman > > Fixes a compilation failure with disabled PXE or DHCP command when using > sunxi platform. > > Signed-off-by: Ondřej Jirman > --- Reviewed-by: Jagan Teki ___ U-Boot mailing list

Re: [U-Boot] [linux-sunxi] [PATCH] ARM: HYP/non-sec: Don't enable ARMV7_LPAE for old sunxi kernels

2019-04-12 Thread Jagan Teki
On Fri, Mar 22, 2019 at 2:31 AM Jonathan Liu wrote: > > Hi Jagan, > > On Fri., 22 Mar. 2019 at 4:05 am, Jagan Teki > wrote: >> >> On Tue, Mar 19, 2019 at 11:09 AM Jonathan Liu wrote: >> > >> > Old sunxi kernels fail to boot with ARMV7_LPAE enabled. >> >> Any idea why? I don't have relevant

Re: [U-Boot] [PATCH v1 1/1] spi: fsl_dspi fix to stop extra transmissions

2019-04-12 Thread Jagan Teki
On Fri, Apr 12, 2019 at 11:23 AM Jagan Teki wrote: > > On Fri, Mar 22, 2019 at 8:59 PM wrote: > > > > From: Jared Bents > > > > Update to prevent a byte of zeros being transmitted between > > each byte in the tx buffer when providing both a tx buffer > > and a rx buffer. > > > > Signed-off-by:

Re: [U-Boot] [PATCH v4] dm: spi: Read default speed and mode values from DT

2019-04-12 Thread Jagan Teki
On Wed, Feb 27, 2019 at 8:06 PM Patrick Delaunay wrote: > > This patch update the behavior introduced by > commit 96907c0fe50a ("dm: spi: Read default speed and mode values from DT") > > In case of DT boot, don't read default speed and mode for SPI from > CONFIG_* but instead read from DT node.

Re: [U-Boot] [RFC v2 00/11] efi_loader: rework bootefi/bootmgr

2019-04-12 Thread AKASHI Takahiro
On Fri, Apr 12, 2019 at 08:11:04AM +0200, Heinrich Schuchardt wrote: > On 4/12/19 3:18 AM, AKASHI Takahiro wrote: > >Heinrich, > > > >Can you kindly review this series of patches, in particular, patch#10? > >I would like to push it for v2019.07. > > > >-Takahiro Akashi > > > The first two

Re: [U-Boot] [PATCH] mtd: spi: Improve data write functionality

2019-04-12 Thread Ashish Kumar
> -Original Message- > From: Rajat Srivastava > Sent: Friday, April 5, 2019 2:24 PM > To: u-boot@lists.denx.de; vigne...@ti.com; tr...@konsulko.com; > marek.va...@gmail.com; marek.vasut+rene...@gmail.com; > ja...@openedev.com > Cc: Ashish Kumar ; Rajat Srivastava > > Subject: [PATCH]

Re: [U-Boot] [PATCH v2 1/1] mtd: added missing GigaDevice chips

2019-04-12 Thread Jagan Teki
On Thu, Feb 21, 2019 at 3:05 AM Jiri Kastner wrote: > > On Wed, 20 Feb 2019 10:03:39 +0530, Vignesh R wrote: > > > Hi, > > > > Have you tested Quad mode on this device? I see gd25q256 uses > > macronix_quad_enable() and kernel handles this by .quad_enable() > > callback which isnt supported in

Re: [U-Boot] [PATCH] mtd: spi: Replace ad-hoc default implementation with spi_mem_op

2019-04-12 Thread Jagan Teki
On Fri, Apr 12, 2019 at 11:39 AM Vignesh Raghavendra wrote: > > > > On 12/04/19 10:46 AM, Jagan Teki wrote: > > > On 02/04/19 6:22 AM, Marek Vasut wrote: > > Replace the ad-hoc erase operation implementation with a simple > > spi_mem_op implementation of the same functionality.

Re: [U-Boot] [PATCH] arm: timer: sunxi: fix a64 spurious timeout issues

2019-04-12 Thread Jagan Teki
On Fri, Mar 22, 2019 at 1:55 AM Oskari Lemmelä wrote: > > On 3/17/19 11:14 PM, André Przywara wrote: > > On 17/03/2019 18:41, Oskari Lemmelä wrote: > >> On 3/17/19 6:04 PM, Peter Robinson wrote: > >>> On Sun, Mar 17, 2019 at 2:56 PM Oskari Lemmela > >>> wrote: > Fixes spurious timeouts

Re: [U-Boot] [RFC v2 00/11] efi_loader: rework bootefi/bootmgr

2019-04-12 Thread Heinrich Schuchardt
On 4/12/19 3:18 AM, AKASHI Takahiro wrote: Heinrich, Can you kindly review this series of patches, in particular, patch#10? I would like to push it for v2019.07. -Takahiro Akashi The first two patches have been merged by Tom Rini. You should have comments for all of the remaining patches.

Re: [U-Boot] [PATCH] mtd: spi: Replace ad-hoc default implementation with spi_mem_op

2019-04-12 Thread Vignesh Raghavendra
On 12/04/19 10:46 AM, Jagan Teki wrote: On 02/04/19 6:22 AM, Marek Vasut wrote: > Replace the ad-hoc erase operation implementation with a simple > spi_mem_op implementation of the same functionality. This is a minor > optimization and removal of the ad-hoc code. >

Re: [U-Boot] [PATCH] env: add support to sunxi save env to spi

2019-04-12 Thread Jagan Teki
On Mon, Mar 18, 2019 at 12:19 AM Oskari Lemmela wrote: > > CONFIG_ENV_SECT_SIZE value is defined via Kconfig. > Would be great if we have a detailed information flash layout, so-that we can find where will env resides. ___ U-Boot mailing list

Re: [U-Boot] [RFC v2 09/11] cmd: bootefi: carve out do_boot_efi() from do_bootefi()

2019-04-12 Thread Heinrich Schuchardt
On 3/27/19 5:40 AM, AKASHI Takahiro wrote: This is a preparatory patch for reworking do_bootefi() in later patch. All the non-boot-manager-based (that is, bootefi ) code is put into one function, do_boot_efi(). Signed-off-by: AKASHI Takahiro --- cmd/bootefi.c | 122

<    1   2   3