Re: [U-Boot] [PATCH v2 01/11] imx: tpc70: config: Add script commands to update u-boot and OE's wic

2019-08-09 Thread Peng Fan
> Subject: [PATCH v2 01/11] imx: tpc70: config: Add script commands to update > u-boot and OE's wic > > Signed-off-by: Lukasz Majewski > --- > > include/configs/kp_imx6q_tpc.h | 21 + > 1 file changed, 21 insertions(+) > > diff --git a/include/configs/kp_imx6q_tpc.h

Re: [U-Boot] [PATCH V2 2/4] clk: imx: add pll14xx driver

2019-08-09 Thread Ye Li
Hi Peng, > Add pll14xx driver > > Signed-off-by: Peng Fan > --- > drivers/clk/imx/clk-pll14xx.c | 371 > ++ > drivers/clk/imx/clk.h | 25 +++ > 2 files changed, 396 insertions(+) > create mode 100644 drivers/clk/imx/clk-pll14xx.c > > diff

Re: [U-Boot] [PATCH v2 07/11] imx: tpc70: dts: Add TPC70 board (imx6q based) device tree description

2019-08-09 Thread Peng Fan
> Subject: [PATCH v2 07/11] imx: tpc70: dts: Add TPC70 board (imx6q based) > device tree description > > This commit defines the TPC70 imx6q board with device tree description. Is the imx6q-kp.dtsi usable for this board from Linux kernel? Regards, Peng. > > Signed-off-by: Lukasz Majewski >

Re: [U-Boot] [PATCH v2 10/11] imx: spl: tpc70: Do not remove clock related properties from DTS

2019-08-09 Thread Peng Fan
> Subject: [PATCH v2 10/11] imx: spl: tpc70: Do not remove clock related > properties from DTS > > Those properties will be reused in the SPL to provide proper clock setting. > > Signed-off-by: Lukasz Majewski > --- > > configs/kp_imx6q_tpc_defconfig | 2 +- > 1 file changed, 1 insertion(+),

[U-Boot] [PATCH V3 2/4] clk: imx: add pll14xx driver

2019-08-09 Thread Peng Fan
Add pll14xx driver Signed-off-by: Peng Fan --- drivers/clk/imx/clk-pll14xx.c | 381 ++ drivers/clk/imx/clk.h | 25 +++ 2 files changed, 406 insertions(+) create mode 100644 drivers/clk/imx/clk-pll14xx.c diff --git

[U-Boot] [PATCH V3 3/4] clk: imx: add i.MX8M composite clk support

2019-08-09 Thread Peng Fan
Import i.MX8M composite clk from Linux Kernel 5.3.0-rc2 Signed-off-by: Peng Fan --- drivers/clk/imx/clk-composite-8m.c | 170 + 1 file changed, 170 insertions(+) create mode 100644 drivers/clk/imx/clk-composite-8m.c diff --git

[U-Boot] [PATCH V3 4/4] clk: imx: add i.MX8MM clk driver

2019-08-09 Thread Peng Fan
Add i.MX8MM clk driver support. Signed-off-by: Peng Fan --- drivers/clk/imx/Makefile | 2 + drivers/clk/imx/clk-imx8mm.c | 415 +++ 2 files changed, 417 insertions(+) create mode 100644 drivers/clk/imx/clk-imx8mm.c diff --git

[U-Boot] [PATCH V3 0/4] Prepare i.MX8MM clk

2019-08-09 Thread Peng Fan
V3: 2/4: Fix RST/BYPASS seq issue to avoid glitch 4/4: ARM clk not use 24M for switch, use pll2_500m Add R-b/A-b tag Fix pll gate shift bit. V2: 2/4: fix MASK/SHIFT usage This is to support i.MX8MM clk driver. i.MX8MM use similar clock design as i.MX7D, but it has use different PLL, so

[U-Boot] [PATCH V3 1/4] clk: imx: add Kconfig entry for i.MX8MM

2019-08-09 Thread Peng Fan
Add Kconfig entry for i.MX8MM Signed-off-by: Peng Fan --- drivers/clk/Kconfig | 4 ++-- drivers/clk/imx/Kconfig | 16 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index a3f0171b45..fce595b4b3 100644 ---

Re: [U-Boot] [PATCH V3 2/4] clk: imx: add pll14xx driver

2019-08-09 Thread Ye Li
> Add pll14xx driver > > Signed-off-by: Peng Fan > --- > drivers/clk/imx/clk-pll14xx.c | 381 > ++ > drivers/clk/imx/clk.h | 25 +++ > 2 files changed, 406 insertions(+) > create mode 100644 drivers/clk/imx/clk-pll14xx.c > > diff --git

Re: [U-Boot] [PATCH 0/3] Intel FPGA PCIe fixes

2019-08-09 Thread Ley Foon Tan
On Tue, Jun 11, 2019 at 8:30 AM Ley Foon Tan wrote: > > On Fri, May 24, 2019 at 10:30 AM Ley Foon Tan wrote: > > > > This patchset fix issues in Intel FPGA PCIe driver. > > - Fix TLP polling timeout > > - Fix enumerating mult-function PCIe device issue > > - Fix PCIe switch read config register

[U-Boot] RFC: Migration target date for DM_ETH

2019-08-09 Thread Heinrich Schuchardt
Currently dozens of boards still do not use the driver model for the network devices. This makes integration between devices in the UEFI sub-system with the U-Boot devices complicated. See: https://travis-ci.org/xypron2/u-boot/builds/569675547 In doc/driver-model/migration.rst I am missing a

Re: [U-Boot] [PATCH v2 06/11] imx: tpc70: led: Enable LED default state

2019-08-09 Thread Peng Fan
> Subject: [PATCH v2 06/11] imx: tpc70: led: Enable LED default state > > This change sets the default state of LEDs on TPC70. > > Signed-off-by: Lukasz Majewski > --- > > board/k+p/kp_imx6q_tpc/kp_imx6q_tpc.c | 4 > 1 file changed, 4 insertions(+) > > diff --git

Re: [U-Boot] [PATCH v2 04/11] imx: tpc70: DTS: Explicitly add imx6q-kp.dtb to Makefile for DTB compilation

2019-08-09 Thread Peng Fan
> Subject: [PATCH v2 04/11] imx: tpc70: DTS: Explicitly add imx6q-kp.dtb to > Makefile for DTB compilation > > This commit is necessary to fix following error: > > Device Tree Source is not correctly specified. > Please define 'CONFIG_DEFAULT_DEVICE_TREE' > or build with 'DEVICE_TREE=' argument

[U-Boot] [PATCH] board: ls1028a: set up integrated PCI stream IDs and cache attributes

2019-08-09 Thread Alex Marginean
Configure stream IDs for integrated PCI devices. There are hardware defaults but unfortunately they are outside the acceptable range for SMMU, so we need to tune them down. Use values based on Linux device tree iommu-map or, if missing, start from HW base value shifted down by 4. Signed-off-by:

Re: [U-Boot] [PATCH v2 4/5] imx: add i.MX6ULZ cpu type

2019-08-09 Thread Ye Li
> Add i.MX6ULZ cpu type and helper. > > Signed-off-by: Peng Fan > --- > > V2: > None > > arch/arm/include/asm/arch-imx/cpu.h | 1 + > arch/arm/include/asm/mach-imx/sys_proto.h | 1 + > arch/arm/mach-imx/cpu.c | 2 ++ > arch/arm/mach-imx/mx6/soc.c | 4

Re: [U-Boot] [PATCH u-boot-marvell 1/1] pci: pci_mvebu: set BAR0 after memory space is set

2019-08-09 Thread Stefan Roese
On 07.08.19 15:01, Marek Behún wrote: The non-DM version of this driver used to set BAR0 register after the calls to pci_set_region. I found out that for some strange reason the ath10k driver in kernel fails to work if this is done the other way around. I know that Linux's driver should not

Re: [U-Boot] [PATCH V3 3/4] clk: imx: add i.MX8M composite clk support

2019-08-09 Thread Ye Li
> Import i.MX8M composite clk from Linux Kernel 5.3.0-rc2 > > Signed-off-by: Peng Fan > --- > drivers/clk/imx/clk-composite-8m.c | 170 > + > 1 file changed, 170 insertions(+) > create mode 100644 drivers/clk/imx/clk-composite-8m.c > > diff --git

Re: [U-Boot] [PATCH] mmc: Select SPL_HS200_SUPPORT if SPL_HS400_SUPPORT is selected

2019-08-09 Thread Peng Fan
> Subject: [PATCH] mmc: Select SPL_HS200_SUPPORT if SPL_HS400_SUPPORT > is selected > > Select SPL_HS200_SUPPORT if SPL_HS400_SUPPORT is selected as is being > done for the U-boot case. > > Signed-off-by: Faiz Abbas > --- > drivers/mmc/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff

Re: [U-Boot] [PATCH] mmc: zynq_sdhci: fix uninitialized pointer deref on probe

2019-08-09 Thread Peng Fan
> Subject: [PATCH] mmc: zynq_sdhci: fix uninitialized pointer deref on probe > > Since commit 3d296365e4e8 ("mmc: sdhci: Add support for > sdhci-caps-mask") sdhci_setup_cfg() expects a valid sdhci_host mmc field. > Move the mmc field initialization before sdhci_setup_cfg() call to avoid crash >

Re: [U-Boot] [PATCH V2 4/4] clk: imx: add i.MX8MM clk driver

2019-08-09 Thread Ye Li
Hi Peng, > Add i.MX8MM clk driver support. > > Signed-off-by: Peng Fan > --- > drivers/clk/imx/Makefile | 2 + > drivers/clk/imx/clk-imx8mm.c | 414 > +++ > 2 files changed, 416 insertions(+) > create mode 100644 drivers/clk/imx/clk-imx8mm.c > >

Re: [U-Boot] [PATCH v2 02/11] imx: tpc70: config: Update TPC70 config to support eMMC's boot0 SPL update

2019-08-09 Thread Peng Fan
> Subject: [PATCH v2 02/11] imx: tpc70: config: Update TPC70 config to support > eMMC's boot0 SPL update > > The TPC70 can boot from eMMC's boot0. This patch allows it to update this > HW partition's SPL. > > Signed-off-by: Lukasz Majewski > --- > > include/configs/kp_imx6q_tpc.h | 5 + >

Re: [U-Boot] [PATCH v2 03/11] imx: tpc70: Add board_boot_order() to distinguish between eMMC and SD boot

2019-08-09 Thread Peng Fan
> Subject: [PATCH v2 03/11] imx: tpc70: Add board_boot_order() to distinguish > between eMMC and SD boot > > The TPC70 can boot from SD card (debug/development) and eMMC > (production). > The board_boot_order() function provides a run time check for the device > from which one wants to boot (it

Re: [U-Boot] [PATCH] board: ls1028a: set up integrated PCI stream IDs and cache attributes

2019-08-09 Thread Bin Meng
Hi Alex, On Fri, Aug 9, 2019 at 3:59 PM Alex Marginean wrote: > > Configure stream IDs for integrated PCI devices. There are hardware > defaults but unfortunately they are outside the acceptable range for > SMMU, so we need to tune them down. Use values based on Linux device tree > iommu-map

[U-Boot] 答复: 答复: 答复: [PATCH 0/4] Make some changes to SDP

2019-08-09 Thread Sherry Sun
Hi Angus, Hi Sherry, On Aug. 8, 2019 2:38 a.m., Sherry Sun mailto:sherry@nxp.com>> wrote: Hi Angus, Sorry for the late reply. > -邮件原件- > 发件人: Angus Ainslie mailto:an...@akkea.ca>> > 发送时间: 2019年8月2日 10:30 > 收件人: Peng Fan mailto:peng@nxp.com>> > 抄送: Sherry Sun

Re: [U-Boot] [PATCH 1/7] mmc: atmel_sdhci: fix uninitialized pointer deref on probe

2019-08-09 Thread Peng Fan
> Subject: [PATCH 1/7] mmc: atmel_sdhci: fix uninitialized pointer deref on > probe > > Commit 3d296365e4e8 ("mmc: sdhci: Add support for > sdhci-caps-mask") sdhci_setup_cfg() expects a valid sdhci_host mmc field. > > Fixes: 3d296365e4e8 ("mmc: sdhci: Add support for sdhci-caps-mask") > Cc: Faiz

Re: [U-Boot] [PATCH] test/py: Fix MMC/SD block write test dependency

2019-08-09 Thread Peng Fan
> Subject: [PATCH] test/py: Fix MMC/SD block write test dependency > > Test is using random command which has own Kconfig symbol CMD_RANDOM > which already depends on CMD_MEMORY. That's why replace cmd_memory > by cmd_random. > > Fixes: 09da18deab8b ("test/py: add MMC/SD block write test") >

[U-Boot] Please pull u-boot-mmc-20190809

2019-08-09 Thread Peng Fan
Hi Tom, Please pull u-boot-mmc tree, update: mmc test fix sdhci driver fix CI: https://travis-ci.org/MrVan/u-boot/builds/569664807 Thanks, Peng. The following changes since commit fef408679b2f634ebfd6298d9fc99db99e60fb1d: Merge https://gitlab.denx.de/u-boot/custodians/u-boot-marvell

Re: [U-Boot] GitLab: make pipeline status public

2019-08-09 Thread Heinrich Schuchardt
On 8/8/19 1:21 PM, Harald Seiler wrote: Hi Heinrich, On Wed, 2019-08-07 at 21:26 +0200, Heinrich Schuchardt wrote: Hello Harald, Tom suggested you could help on this issue. I suggest that the pipeline status should be public on all custodian gits, e.g. page

Re: [U-Boot] [PATCH v2 05/11] imx: tpc70: cosmetic: Replace magic numbers when setting ENET clock

2019-08-09 Thread Peng Fan
> Subject: [PATCH v2 05/11] imx: tpc70: cosmetic: Replace magic numbers > when setting ENET clock > > This is a cosmetic change, just to use proper define instead of magic numbers. > > Signed-off-by: Lukasz Majewski > --- > > board/k+p/kp_imx6q_tpc/kp_imx6q_tpc.c | 3 ++- > 1 file changed, 2

[U-Boot] Pull request: u-boot-rockchip-20190809

2019-08-09 Thread Kever Yang
/567879982 Thanks, - Kever The following changes since commit d0d07ba86afc8074d79e436b1ba4478fa0f0c1b5: Prepare v2019.10-rc1 (2019-07-29 21:16:16 -0400) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip.git tags/u-boot-rockchip-20190809

Re: [U-Boot] [PATCH v2 2/5] arm: dts: sync dts for i.MX6ULL

2019-08-09 Thread Ye Li
> Sync kernel dts for i.MX6ULL from > commit <0a8ad0ffa4d8> ("Merge tag 'for-linus-5.3-ofs1' of > git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux") > > Signed-off-by: Peng Fan > --- > > V2: > None > > arch/arm/dts/imx6ull-14x14-evk.dts | 523 +--- >

Re: [U-Boot] [PATCH v2 3/5] arm: dts: import dts for i.MX6ULZ

2019-08-09 Thread Ye Li
> Import kernel dts for i.MX6ULZ from > commit <0a8ad0ffa4d8> ("Merge tag 'for-linus-5.3-ofs1' of > git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux") > > Signed-off-by: Peng Fan > --- > > V2: > None > > arch/arm/dts/Makefile | 3 ++- > arch/arm/dts/imx6ulz.dtsi | 37

Re: [U-Boot] [PATCH v2 5/5] imx: add i.MX6ULZ board

2019-08-09 Thread Ye Li
> Add i.MX6ULZ board support. the i.MX6ULZ is SW compatible > with i.MX6ULL. so most code of i.MX6ULL can be reused > by i.MX6ULZ. > > Signed-off-by: Peng Fan > --- > > V2: > Add entry in MAINTAINERS > > arch/arm/dts/imx6ulz-14x14-evk.dts| 22 ++ >

Re: [U-Boot] [PATCH V3 1/4] clk: imx: add Kconfig entry for i.MX8MM

2019-08-09 Thread Ye Li
> Add Kconfig entry for i.MX8MM > > Signed-off-by: Peng Fan > --- > drivers/clk/Kconfig | 4 ++-- > drivers/clk/imx/Kconfig | 16 > 2 files changed, 18 insertions(+), 2 deletions(-) > > diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig > index a3f0171b45..fce595b4b3

Re: [U-Boot] [PATCH V3 4/4] clk: imx: add i.MX8MM clk driver

2019-08-09 Thread Ye Li
> Add i.MX8MM clk driver support. > > Signed-off-by: Peng Fan > --- > drivers/clk/imx/Makefile | 2 + > drivers/clk/imx/clk-imx8mm.c | 415 > +++ > 2 files changed, 417 insertions(+) > create mode 100644 drivers/clk/imx/clk-imx8mm.c > > diff

Re: [U-Boot] [PATCH 06/11] drivers: net: aquantia: set MDI reversal based on DT property

2019-08-09 Thread Alex Marginean
On 8/8/2019 7:45 PM, Alex Marginean wrote: MDI pins up to the RJ45 connector may be reversed on the board and the default PHY configuration applied by firmware may or may not match that. Add an optional DT property to configure MDI reversal for this case. Signed-off-by: Alex Marginean ---

Re: [U-Boot] [PATCH] board: ls1028a: set up integrated PCI stream IDs and cache attributes

2019-08-09 Thread Alex Marginean
On 8/9/2019 4:27 PM, Bin Meng wrote: Hi Alex, On Fri, Aug 9, 2019 at 9:15 PM Alex Marginean wrote: Hi Bin, On 8/9/2019 12:58 PM, Bin Meng wrote: Hi Alex, On Fri, Aug 9, 2019 at 3:59 PM Alex Marginean wrote: Configure stream IDs for integrated PCI devices. There are hardware defaults

Re: [U-Boot] [PATCH] board: ls1028a: set up integrated PCI stream IDs and cache attributes

2019-08-09 Thread Alex Marginean
Hi Bin, On 8/9/2019 12:58 PM, Bin Meng wrote: Hi Alex, On Fri, Aug 9, 2019 at 3:59 PM Alex Marginean wrote: Configure stream IDs for integrated PCI devices. There are hardware defaults but unfortunately they are outside the acceptable range for SMMU, so we need to tune them down. Use

Re: [U-Boot] [PATCH] board: ls1028a: set up integrated PCI stream IDs and cache attributes

2019-08-09 Thread Bin Meng
Hi Alex, On Fri, Aug 9, 2019 at 9:15 PM Alex Marginean wrote: > > Hi Bin, > > On 8/9/2019 12:58 PM, Bin Meng wrote: > > Hi Alex, > > > > On Fri, Aug 9, 2019 at 3:59 PM Alex Marginean > > wrote: > >> > >> Configure stream IDs for integrated PCI devices. There are hardware > >> defaults but

Re: [U-Boot] GitLab: make pipeline status public

2019-08-09 Thread Bin Meng
Hi Harald, On Thu, Aug 8, 2019 at 7:21 PM Harald Seiler wrote: > > Hi Heinrich, > > On Wed, 2019-08-07 at 21:26 +0200, Heinrich Schuchardt wrote: > > Hello Harald, > > > > Tom suggested you could help on this issue. > > > > I suggest that the pipeline status should be public on all custodian > >

[U-Boot] [PATCH] cmd: avb: Support A/B slots

2019-08-09 Thread Sam Protsenko
Add optional parameter to 'avb verify' sub-command, so that user is able to specify which slot to use, in case when user's partitions are slotted. If that parameter is omitted, the behavior of 'avb verify' will be the same as before, so user API is content. Signed-off-by: Sam Protsenko ---

Re: [U-Boot] GitLab: make pipeline status public

2019-08-09 Thread Heinrich Schuchardt
On 8/9/19 12:20 PM, Bin Meng wrote: Hi Harald, On Thu, Aug 8, 2019 at 7:21 PM Harald Seiler wrote: Hi Heinrich, On Wed, 2019-08-07 at 21:26 +0200, Heinrich Schuchardt wrote: Hello Harald, Tom suggested you could help on this issue. I suggest that the pipeline status should be public on

[U-Boot] [PATCH v1] apalis-tk1: support v1.2 hardware revision

2019-08-09 Thread Igor Opaniuk
From: Marcel Ziswiler Support the V1.2 hardware revision with the following pin muxing changes: Ddc_scl_pv4 and ddc_sda_pv5 previously used as Apalis GPIO3 and GPIO4 are now used as DDC pins. Gen2_i2c_scl_pt5 and gen2_i2c_sda_pt6 previously used as DDC pins are now used as USB power enable

[U-Boot] [PATCH] image: android: Fix possible build errors

2019-08-09 Thread Sam Protsenko
As android_image.h uses types like u32, we need to include corresponding headers in place. Otherwise the user will be forced to include those in C file, or next build error can occur: include/android_image.h:32:5: error: unknown type name 'u32' u32 kernel_size; /* size in bytes */

Re: [U-Boot] [PATCH v1] apalis-tk1: support v1.2 hardware revision

2019-08-09 Thread Igor Opaniuk
Hi Tom, On Fri, Aug 9, 2019 at 1:22 PM Igor Opaniuk wrote: > > From: Marcel Ziswiler > > Support the V1.2 hardware revision with the following pin muxing > changes: > > Ddc_scl_pv4 and ddc_sda_pv5 previously used as Apalis GPIO3 and GPIO4 > are now used as DDC pins. > > Gen2_i2c_scl_pt5 and

Re: [U-Boot] [PATCH v2 1/5] arm: dts: sync dts for i.MX6UL

2019-08-09 Thread Ye Li
> Sync kernel dts for i.MX6UL from > commit <0a8ad0ffa4d8> ("Merge tag 'for-linus-5.3-ofs1' of > git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux") > > Signed-off-by: Peng Fan > --- > > V2: > None > > arch/arm/dts/imx6ul-14x14-evk.dts| 422 +--- >

Re: [U-Boot] [PATCH 0/3] Intel FPGA PCIe fixes

2019-08-09 Thread Tom Rini
On Fri, Aug 09, 2019 at 05:04:43PM +0800, Ley Foon Tan wrote: > On Tue, Jun 11, 2019 at 8:30 AM Ley Foon Tan wrote: > > > > On Fri, May 24, 2019 at 10:30 AM Ley Foon Tan > > wrote: > > > > > > This patchset fix issues in Intel FPGA PCIe driver. > > > - Fix TLP polling timeout > > > - Fix

Re: [U-Boot] Pull request: u-boot-rockchip-20190809

2019-08-09 Thread Tom Rini
:16 -0400) > > are available in the Git repository at: > > https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip.git > tags/u-boot-rockchip-20190809 > > for you to fetch changes up to 6a452e5bd33cf8f4e851445f29ab94b66485700a: > > doc: rockchip: Adapt Pine64 Rock64

[U-Boot] [PATCH] cmd: avb: Fix requested partitions list

2019-08-09 Thread Sam Protsenko
The requested_partitions[] array should contain only boot partitions. Usually it's only 'boot' partition, as can be seen in [1]. Also, seems like the requested_partitions[] are only used when there is no 'vbmeta' partition [2], which is not a regular use-case. Make requested_partitions[] contain

[U-Boot] Booting Linux kernel on x86_64

2019-08-09 Thread Ryan Wilkins
Hello, I’m trying to get u-boot 2019.04 to execute the Linux 4.19.55 kernel from u-boot on a generic Core i5 with 8 GB RAM and having issues. The kernel that I’m trying to boot will boot fine from GRUB so I know it works but starting from u-boot just shows “Starting kernel” and the system

[U-Boot] [PATCH] cmd: pxe: Use internal FDT if FDT file isn't found in FDTDIR

2019-08-09 Thread Антон Леонтьев
Original commit c61d94d86035 ("pxe: implement fdtdir extlinux.conf tag") states, that if FDT file cannot be retrieved then FDT packaged in firmware should be used. If FDT file cannot be retrieved and it is specified explicitly using FDT keyword then the label is skipped. If it cannot be found in

Re: [U-Boot] Booting Linux kernel on x86_64

2019-08-09 Thread Bin Meng
+Simon, Andy, Hi Ryan, On Fri, Aug 9, 2019 at 11:52 PM Ryan Wilkins wrote: > > Hello, > > I’m trying to get u-boot 2019.04 to execute the Linux 4.19.55 kernel from > u-boot on a generic Core i5 with 8 GB RAM and having issues. The kernel that > I’m trying to boot will boot fine from GRUB so

Re: [U-Boot] Please pull u-boot-mmc-20190809

2019-08-09 Thread Tom Rini
On Fri, Aug 09, 2019 at 09:38:21AM +, Peng Fan wrote: > Hi Tom, > > Please pull u-boot-mmc tree, update: > mmc test fix > sdhci driver fix > > CI: https://travis-ci.org/MrVan/u-boot/builds/569664807 > > Thanks, > Peng. > > The following changes since commit

Re: [U-Boot] [PATCH v2 3/5] arm: dts: import dts for i.MX6ULZ

2019-08-09 Thread Fabio Estevam
On Thu, Aug 8, 2019 at 6:55 AM Peng Fan wrote: > > Import kernel dts for i.MX6ULZ from > commit <0a8ad0ffa4d8> ("Merge tag 'for-linus-5.3-ofs1' of > git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux") > > Signed-off-by: Peng Fan Reviewed-by: Fabio Estevam

Re: [U-Boot] [PATCH v2 5/5] imx: add i.MX6ULZ board

2019-08-09 Thread Fabio Estevam
On Thu, Aug 8, 2019 at 6:55 AM Peng Fan wrote: > > Add i.MX6ULZ board support. the i.MX6ULZ is SW compatible > with i.MX6ULL. so most code of i.MX6ULL can be reused > by i.MX6ULZ. > > Signed-off-by: Peng Fan Reviewed-by: Fabio Estevam ___ U-Boot

Re: [U-Boot] [PATCH v2 4/5] imx: add i.MX6ULZ cpu type

2019-08-09 Thread Fabio Estevam
On Thu, Aug 8, 2019 at 6:55 AM Peng Fan wrote: > > Add i.MX6ULZ cpu type and helper. > > Signed-off-by: Peng Fan Reviewed-by: Fabio Estevam ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH v2 2/5] arm: dts: sync dts for i.MX6ULL

2019-08-09 Thread Fabio Estevam
On Thu, Aug 8, 2019 at 6:55 AM Peng Fan wrote: > > Sync kernel dts for i.MX6ULL from > commit <0a8ad0ffa4d8> ("Merge tag 'for-linus-5.3-ofs1' of > git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux") > > Signed-off-by: Peng Fan Reviewed-by: Fabio Estevam

Re: [U-Boot] [PATCH v2 1/5] arm: dts: sync dts for i.MX6UL

2019-08-09 Thread Fabio Estevam
On Thu, Aug 8, 2019 at 6:55 AM Peng Fan wrote: > > Sync kernel dts for i.MX6UL from > commit <0a8ad0ffa4d8> ("Merge tag 'for-linus-5.3-ofs1' of > git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux") Just a nit: I find it more readable when the version is stated like 5.2.8, 5.3-rc3, etc.

Re: [U-Boot] drivers: net: driver for MDIO muxes controlled over I2C

2019-08-09 Thread Joe Hershberger
On Thu, Aug 8, 2019 at 3:16 PM Alex Marginean wrote: > > Hi Joe, > > On 7/25/2019 9:41 PM, Joe Hershberger wrote: > > Hi Alex, > > > > https://patchwork.ozlabs.org/patch/1132514/ was applied to > > http://git.denx.de/?p=u-boot/u-boot-net.git > > can you please check this commit (d9a9174), I

Re: [U-Boot] [PATCH V3 1/4] clk: imx: add Kconfig entry for i.MX8MM

2019-08-09 Thread Fabio Estevam
Hi Peng, On Fri, Aug 9, 2019 at 5:02 AM Peng Fan wrote: > > Add Kconfig entry for i.MX8MM > > Signed-off-by: Peng Fan > --- > drivers/clk/Kconfig | 4 ++-- > drivers/clk/imx/Kconfig | 16 > 2 files changed, 18 insertions(+), 2 deletions(-) > > diff --git

Re: [U-Boot] [PATCH V3 2/4] clk: imx: add pll14xx driver

2019-08-09 Thread Fabio Estevam
On Fri, Aug 9, 2019 at 5:02 AM Peng Fan wrote: > > Add pll14xx driver Please expand this commit log a bit by adding in which SoC it is used, where this driver comes from (Linux, internal U-Boot tree, etc). ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH V3 3/4] clk: imx: add i.MX8M composite clk support

2019-08-09 Thread Fabio Estevam
On Fri, Aug 9, 2019 at 5:02 AM Peng Fan wrote: > + * The clk are not binded to a dev, because it is part of composite clk s/binded/bound > + * use composite clk to get dev > + */ > +static ulong imx8m_clk_composite_divider_set_rate(struct clk *clk, > +

Re: [U-Boot] [PATCH] board_f: reserve noncached space below malloc area

2019-08-09 Thread Simon Glass
Hi Vikas, On Thu, 8 Aug 2019 at 18:24, Vikas Manocha wrote: > > Noncached area at present is being initialized to random space after malloc > area. It works in most the cases as it goes to stack area & stack is not > overwriting it being far from it. Please can you add a motivation for this

Re: [U-Boot] RFC: Migration target date for DM_ETH

2019-08-09 Thread Simon Glass
Hi Heinrich, On Fri, 9 Aug 2019 at 00:31, Heinrich Schuchardt wrote: > > Currently dozens of boards still do not use the driver model for the > network devices. This makes integration between devices in the UEFI > sub-system with the U-Boot devices complicated. > > See:

Re: [U-Boot] [PATCH v1] apalis-tk1: support v1.2 hardware revision

2019-08-09 Thread Tom Warren
Igor, -Original Message- From: Igor Opaniuk Sent: Friday, August 9, 2019 3:38 AM To: Tom Warren Cc: Marcel Ziswiler ; Philippe Schenker ; Oleksandr Suvorov ; Dominik Sliwa ; Igor Opaniuk ; Albert Aribaud ; Thierry Reding ; U-Boot Mailing List Subject: Re: [PATCH v1] apalis-tk1:

[U-Boot] Pull request, u-boot-tegra/master

2019-08-09 Thread Tom Warren
Tom, Please pull u-boot-tegra/master into U-Boot/master. Thanks! All Tegra builds are OK on my system, and Igor has verified the Apalis patches. The following changes since commit 163bc1e4da425015000dd3f8f128aec994da9586: Merge tag 'mmc-8-9' of

Re: [U-Boot] [PATCH] board_f: reserve noncached space below malloc area

2019-08-09 Thread Vikas MANOCHA
Hi Simon, > -Original Message- > From: Simon Glass > Sent: Friday, August 9, 2019 10:00 AM > To: Vikas MANOCHA > Cc: U-Boot Mailing List ; Bin Meng > ; CITOOLS revi...@lists.codex.cro.st.com>; Mario Six ; Patrick > DELAUNAY > Subject: Re: [PATCH] board_f: reserve noncached space below

[U-Boot] [RFC] enforce CONFIG_DM=y

2019-08-09 Thread Heinrich Schuchardt
The time lines set force in doc/driver-model/migration.rst for different subsystems to move to the driver model have been passed. I ran a test on Travis CI https://travis-ci.org/xypron2/u-boot/builds/569776600 that showed only 8 boards remain that cannot be built with CONFIG_DM=y. H2200 * h2200

[U-Boot] [PATCH v2 5/7] ARM: dts: renesas: Add R8A77980 V3H DTs and headers

2019-08-09 Thread Marek Vasut
Import R8A77980 V3H DTs and headers from Linux 5.2.7 , commit 5697a9d3d55f. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- V2: Use DTs from Linux 5.2.y --- arch/arm/dts/r8a77980-u-boot.dtsi | 24 + arch/arm/dts/r8a77980.dtsi| 1605 +

[U-Boot] [PATCH v2 4/7] clk: renesas: Add R8A77980 V3H clock tables

2019-08-09 Thread Marek Vasut
Import R8A77980 V3H clock tables from Linux 5.2.7 , commit 5697a9d3d55f. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- V2: Use tables from Linux 5.2.y --- drivers/clk/renesas/Kconfig | 6 + drivers/clk/renesas/Makefile| 1 +

[U-Boot] [PATCH v2 2/7] net: sh_eth: Fix 64bit build warnings

2019-08-09 Thread Marek Vasut
Fix various type warnings when building this driver for 64bit machine. Signed-off-by: Marek Vasut Cc: Joe Hershberger Cc: Nobuhiro Iwamatsu --- V2: No change --- drivers/net/sh_eth.c | 24 drivers/net/sh_eth.h | 8 2 files changed, 16 insertions(+), 16

[U-Boot] [PATCH v2 1/7] net: sh_eth: Add R8A77980 V3H gether support

2019-08-09 Thread Marek Vasut
The R8A77980 V3H gether needs a few minor adjustments to the sh_eth driver, add them to support ethernet on R8A77980. Signed-off-by: Marek Vasut Cc: Joe Hershberger Cc: Nobuhiro Iwamatsu --- V2: No change --- drivers/net/sh_eth.c | 15 +++ drivers/net/sh_eth.h | 6 +- 2 files

Re: [U-Boot] [PATCH V3 4/4] clk: imx: add i.MX8MM clk driver

2019-08-09 Thread Fabio Estevam
On Fri, Aug 9, 2019 at 5:02 AM Peng Fan wrote: > > Add i.MX8MM clk driver support. > > Signed-off-by: Peng Fan > --- > drivers/clk/imx/Makefile | 2 + > drivers/clk/imx/clk-imx8mm.c | 415 > +++ > 2 files changed, 417 insertions(+) > create mode

Re: [U-Boot] RFC: Migration target date for DM_ETH

2019-08-09 Thread Heinrich Schuchardt
On 8/9/19 7:02 PM, Simon Glass wrote: Hi Heinrich, On Fri, 9 Aug 2019 at 00:31, Heinrich Schuchardt wrote: Currently dozens of boards still do not use the driver model for the network devices. This makes integration between devices in the UEFI sub-system with the U-Boot devices complicated.

[U-Boot] [PATCH 1/1] network: set timeline for CONFIG_DM_ETH conversion

2019-08-09 Thread Heinrich Schuchardt
The driver model has been supported for network drivers since 2015. It is time to convert the remaining boards. Set July 2020 as a timeline. Signed-off-by: Heinrich Schuchardt --- Makefile | 11 +++ doc/driver-model/migration.rst | 8 2 files changed, 19

Re: [U-Boot] Booting Linux kernel on x86_64

2019-08-09 Thread Ryan Wilkins
> On Aug 9, 2019, at 12:00 PM, Bin Meng wrote: > > +Simon, Andy, > > Hi Ryan, > >> On Fri, Aug 9, 2019 at 11:52 PM Ryan Wilkins >> wrote: >> >> Hello, >> >> I’m trying to get u-boot 2019.04 to execute the Linux 4.19.55 kernel from >> u-boot on a generic Core i5 with 8 GB RAM and having

[U-Boot] [PATCH] sunxi: video: HDMI: Fix LCD clock divider

2019-08-09 Thread Mark Kettenis
Currently we may end up with an LCD clock divider that differs from the HDMI PHY clock divider if we can't exactly match the pixel clock. Fix this by using DIV_ROUND_UP to calculate the divider. This works since the PLL is chosen such that the resulting pixel clock is never higher than the

[U-Boot] [PATCH 1/1] cmd/bdinfo: sandbox: print the relocation offset

2019-08-09 Thread Heinrich Schuchardt
On the sandbox provide the relocation offset. This value can be used for debugging with GDB using the `add-symbol-file u-boot ' command. Signed-off-by: Heinrich Schuchardt --- cmd/bdinfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index

[U-Boot] [PATCH v2 3/7] pinctrl: renesas: Add R8A77980 V3H PFC tables

2019-08-09 Thread Marek Vasut
Import R8A77980 V3H PFC tables from Linux 5.2.7 , commit 5697a9d3d55f. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- V2: Use tables from Linux 5.2.y --- drivers/pinctrl/renesas/Kconfig| 10 + drivers/pinctrl/renesas/Makefile |1 +

[U-Boot] [PATCH v2 7/7] ARM: renesas: Add R8A77980 V3H Condor board code

2019-08-09 Thread Marek Vasut
Add board code for the R8A77980 V3H Condor board. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- V2: Use DTs from Linux 5.2.y --- arch/arm/dts/Makefile | 1 + arch/arm/dts/r8a77980-condor-u-boot.dts | 34 +++ arch/arm/dts/r8a77980-condor.dts| 292

[U-Boot] [PATCH v2 6/7] ARM: renesas: Add R8A77980 V3H platform code

2019-08-09 Thread Marek Vasut
Add a few bits of platform code to support R8A77980 V3H SoC. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- V2: No change --- arch/arm/mach-rmobile/Kconfig.64 | 5 + arch/arm/mach-rmobile/cpu_info.c | 1 + arch/arm/mach-rmobile/include/mach/rmobile.h | 1 + 3

Re: [U-Boot] [PATCH 1/2] usb: kbd: simplify coding for arrow keys

2019-08-09 Thread Heinrich Schuchardt
On 6/24/19 8:49 PM, Simon Glass wrote: Hi Heinrich, On Mon, 24 Jun 2019 at 11:36, Heinrich Schuchardt wrote: On 6/24/19 3:56 PM, Simon Glass wrote: On Sun, 16 Jun 2019 at 22:44, Heinrich Schuchardt wrote: Avoid duplicate translation of arrow key codes. Signed-off-by: Heinrich Schuchardt

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

2019-08-09 Thread Bin Meng
Hi Tom, This PR includes the following changes to x86: - Enable SD slot on Intel Edison - Populate CSRT ACPI table for shared DMA controller on Intel Tangier - Convert Intel ICH-SPI driver to use new spi-mem ops - Enable config_distro_bootcmd for QEMU x86 - Support U-Boot as a payload for Intel