Re: [PATCH] configs: socfpga: fix building Stratix10 and Agilex

2019-12-12 Thread Simon Goldschmidt
On Fri, Dec 13, 2019 at 1:59 AM Marek Vasut wrote: > > On 12/12/19 12:29 PM, simon.k.r.goldschm...@gmail.com wrote: > > From: Simon Goldschmidt > > > > This fixes a merge error that accidentally left CONFIG_MTD_DEVICE > > active by removing it from the config file. > > > > Signed-off-by: Simon

[PATCH v3 8/8] virtio: rng: Add a random number generator(rng) driver

2019-12-12 Thread Sughosh Ganu
Add a driver for the virtio-rng device on the qemu platform. The device uses pci as a transport medium. The driver can be enabled with the following configs CONFIG_VIRTIO CONFIG_DM_RNG CONFIG_VIRTIO_PCI CONFIG_VIRTIO_RNG Signed-off-by: Sughosh Ganu --- drivers/virtio/Kconfig | 6

[PATCH v3 3/8] stm32mp1: rng: Add a driver for random number generator(rng) device

2019-12-12 Thread Sughosh Ganu
Add a driver for the rng device found on stm32mp1 platforms. The driver provides a routine for reading the random number seed from the hardware device. Signed-off-by: Sughosh Ganu Reviewed-by: Patrice Chotard --- drivers/rng/Kconfig| 7 ++ drivers/rng/Makefile | 1 +

[PATCH v3 4/8] configs: stm32mp15: Enable random number generator(rng) device

2019-12-12 Thread Sughosh Ganu
Enable support for the rng device on the stm32mp15 configs. Signed-off-by: Sughosh Ganu Reviewed-by: Patrice Chotard --- configs/stm32mp15_basic_defconfig | 2 ++ configs/stm32mp15_optee_defconfig | 2 ++ configs/stm32mp15_trusted_defconfig | 2 ++ 3 files changed, 6 insertions(+) diff

[PATCH v3 6/8] configs: sandbox: Enable random number generator(rng) device

2019-12-12 Thread Sughosh Ganu
Enable support for random number generator on sandbox configs. This is aimed primarily at adding unit test support for rng uclass. Signed-off-by: Sughosh Ganu Reviewed-by: Patrice Chotard --- configs/sandbox64_defconfig | 2 ++ configs/sandbox_defconfig | 2 ++ 2 files changed, 4

[PATCH v3 7/8] test: rng: Add basic test for random number generator(rng) uclass

2019-12-12 Thread Sughosh Ganu
Add a unit test for testing the rng uclass functionality using the sandbox rng driver. Signed-off-by: Sughosh Ganu Reviewed-by: Patrice Chotard --- test/dm/Makefile | 1 + test/dm/rng.c| 26 ++ 2 files changed, 27 insertions(+) create mode 100644 test/dm/rng.c

[PATCH v3 5/8] sandbox: rng: Add a random number generator(rng) driver

2019-12-12 Thread Sughosh Ganu
Add a sandbox driver for random number generation. Mostly aimed at providing a unit test for rng uclass. Signed-off-by: Sughosh Ganu Reviewed-by: Patrice Chotard --- arch/sandbox/dts/test.dts | 4 drivers/rng/Kconfig | 7 +++ drivers/rng/Makefile | 1 +

[PATCH v3 2/8] clk: stm32mp1: Add a clock entry for RNG1 device

2019-12-12 Thread Sughosh Ganu
Add an entry for allowing clock enablement for the random number generator peripheral, RNG1. Signed-off-by: Sughosh Ganu Reviewed-by: Patrice Chotard --- drivers/clk/clk_stm32mp1.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/clk_stm32mp1.c b/drivers/clk/clk_stm32mp1.c index

[PATCH v3 1/8] dm: rng: Add random number generator(rng) uclass

2019-12-12 Thread Sughosh Ganu
Add a uclass for reading a random number seed from a random number generator device. Signed-off-by: Sughosh Ganu Reviewed-by: Patrice Chotard --- drivers/Kconfig | 2 ++ drivers/Makefile | 1 + drivers/rng/Kconfig | 7 +++ drivers/rng/Makefile | 6 ++

[PATCH v3 0/8] Add a random number generator uclass

2019-12-12 Thread Sughosh Ganu
Add a random number generator(rng) uclass to facilitate adding drivers for rng devices. I plan to add an implementation of the EFI_RNG_PROTOCOL, which would get the random number from the rng uclass -- the protocol would be used by the efi stub for getting a random number for the kaslr feature.

[PATCH] dts: am335x-brsmarc1/xre1: insert phy_id again

2019-12-12 Thread Hannes Schmelzer
commit 3b3e8a37d36e ("arm: dts: am335x: sync cpsw/mdio/phy with latest linux - drop phy_id") did sync with recent linux kernel and replaced therefore the 'phy_id' property with a phy-handle pointing to the mdio. This is OK for linux, but introduces trouble with the already running vxWorks on

[PATCH v1 2/3] enable ls1088ardb usb network card

2019-12-12 Thread Yinbo Zhu
enable ls1088ardb usb network card r8152_eth AX88179 and AX8817X driver Signed-off-by: Yinbo Zhu --- configs/ls1088ardb_tfa_defconfig | 4 1 file changed, 4 insertions(+) diff --git a/configs/ls1088ardb_tfa_defconfig b/configs/ls1088ardb_tfa_defconfig index 4532d85..27d7ff7 100644 ---

[PATCH v1 3/3] enable ls1046afwry usb network card

2019-12-12 Thread Yinbo Zhu
enable ls1046afwry usb network card r8152_eth AX88179 and AX8817X driver Signed-off-by: Yinbo Zhu --- configs/ls1012afrwy_tfa_defconfig | 4 1 file changed, 4 insertions(+) diff --git a/configs/ls1012afrwy_tfa_defconfig b/configs/ls1012afrwy_tfa_defconfig index 65ed34e..5ae7ae9 100644

[PATCH v1 1/3] enable ls1046afwry usb network card

2019-12-12 Thread Yinbo Zhu
enable ls1046afwry usb network card r8152_eth AX88179 and AX8817X driver Signed-off-by: Yinbo Zhu --- configs/ls1046afrwy_tfa_defconfig | 4 1 file changed, 4 insertions(+) diff --git a/configs/ls1046afrwy_tfa_defconfig b/configs/ls1046afrwy_tfa_defconfig index 1d27408..550e521 100644

Re: [PATCH v2] cosmetic: Fix spelling and whitespace errors

2019-12-12 Thread Kever Yang
Hi Thomas,     Could you add commit message for patch and split the patch into multi patches base on the module? Thanks, - Kever On 2019/11/14 上午10:18, Thomas Hebb wrote: Signed-off-by: Thomas Hebb --- Makefile| 2 +- README

Re: [PATCH v2 3/3] rockchip: mkimage: fix wrong range of rc4 encoding for boot image

2019-12-12 Thread Kever Yang
On 2019/12/5 下午6:58, Jeffy Chen wrote: The rc4 encoding should cover spl header as well, and the file_size contains spl header too. Signed-off-by: Jeffy Chen Reviewed-by: Kever Yang Thanks, - Kever --- Changes in v2: None tools/rkimage.c | 2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH v2 2/3] doc: rockchip: document packing second level loader with mkimage

2019-12-12 Thread Kever Yang
On 2019/12/5 下午6:58, Jeffy Chen wrote: Add documentation about packing optional second level boot-loader with mkimage tool. Signed-off-by: Jeffy Chen Reviewed-by: Kever Yang Thanks, - Kever --- Changes in v2: None doc/README.rockchip | 11 +++ 1 file changed, 11

Re: rk3328-firefly ddr4 tpl init【请注意,邮件由linux-rockchip-bounces+kever.yang=rock-chips....@lists.infradead.org代发】

2019-12-12 Thread Kever Yang
Hi Peter, On 2019/12/5 上午10:19, Peter Geis wrote: Good Evening, I am trying to get TPL/SPL working on the rk3328-firefly ddr4 4gb board. I've pulled the ddr4 dtsi from the rockchip u-boot repository [0]. Unfortunately I cannot get the ddr4 to detect correctly. Yes, the ddr4 support for

[PATCH] rockchip: firefly-px30: Fix the MACRO for CONFIG_DEBUG_UART2_CHANNEL

2019-12-12 Thread Kever Yang
The Macro has update without update the defconfig, update the defconfig to make Mcaro correct. Fixes: ec4fafdf1f ("rockchip: px30: Rename CONFIG_DEBUG_UART2_CHANNEL to...") Signed-off-by: Kever Yang --- configs/firefly-px30_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [PATCH v8 02/17] i2c: designware: Add Apollo Lake support

2019-12-12 Thread Simon Glass
Hi Bin, On Tue, 10 Dec 2019 at 21:28, Simon Glass wrote: > > For Apollo Lake we need to take the I2C bus controller out of reset before > using this. Add this functionality to the driver. > > Signed-off-by: Simon Glass > Reviewed-by: Heiko Schocher > Reviewed-by: Bin Meng > --- > > Changes in

Re: [PATCH] configs: socfpga: fix building Stratix10 and Agilex

2019-12-12 Thread Marek Vasut
On 12/12/19 12:29 PM, simon.k.r.goldschm...@gmail.com wrote: > From: Simon Goldschmidt > > This fixes a merge error that accidentally left CONFIG_MTD_DEVICE > active by removing it from the config file. > > Signed-off-by: Simon Goldschmidt > --- > > include/configs/socfpga_soc64_common.h | 1

Re: [PATCH 0/2] amlogic: add Khadas VIM3L support

2019-12-12 Thread Kevin Hilman
Christian Hewitt writes: > Khadas VIM3L is a new revision of the VIM3 board that swaps the premium > A311D chip for Amlogic's mid-range S905D3 chip. Tested-by: Kevin Hilman

Re: [PATCH] clk: uclass: clk_get_by_name() must not be available if CONFIG_OF_PLATDATA is enabled

2019-12-12 Thread Giulio Benetti
Hi Lukasz, On 12/12/19 11:53 PM, Giulio Benetti wrote: clk_get_by_name() requires clk_get_by_id() that is not available if CONFIG_OF_PLATDATA is defined, so move clk_get_by_name() into #else condition of #if CONFIG_IS_ENABLED(OF_PLATDATA). Signed-off-by: Giulio Benetti I've already

[PATCH] clk: uclass: clk_get_by_name() must not be available if CONFIG_OF_PLATDATA is enabled

2019-12-12 Thread Giulio Benetti
clk_get_by_name() requires clk_get_by_id() that is not available if CONFIG_OF_PLATDATA is defined, so move clk_get_by_name() into #else condition of #if CONFIG_IS_ENABLED(OF_PLATDATA). Signed-off-by: Giulio Benetti --- drivers/clk/clk-uclass.c | 2 +- 1 file changed, 1 insertion(+), 1

Re: i.MX8MM-EVK Boot failure

2019-12-12 Thread Ricardo Salveti
Hi, On Wed, Dec 11, 2019 at 12:05 AM Peng Fan wrote: > > > Subject: Re: i.MX8MM-EVK Boot failure > > > > Hi Peng, > > > > On Tue, Dec 10, 2019 at 10:48 PM Peng Fan wrote: > > > > > What you modified? It boots well with Tom's tree. > > > > Does imx8mq-evk also boot for you? > > > > I followed

Re: Boot from different partitions based on some condition

2019-12-12 Thread Harald Seiler
Hello Mats, On Thu, 2019-12-12 at 16:49 +0100, Mats Jansson wrote: > Hi, > > I want to set up for an upgrade of our embedded system, using a > special kernel for the upgrade. The standard will be to load the > system from mtd3 (kernel), mtd4 (devicetree) and mtd5 (rootfs). > > When an update is

Re: [U-Boot-Board-Maintainers] Raspberry pi 4 - u-boot - genet / scb

2019-12-12 Thread Florian Fainelli
On 12/12/19 10:38 AM, Andre Przywara wrote: > On Thu, 12 Dec 2019 10:13:27 -0800 > Florian Fainelli wrote: > > Hi Florian, > > thanks for chiming in! > >> On 12/12/19 3:59 AM, Matthias Brugger wrote: >>> >>> >>> On 12/12/2019 11:41, Andre Przywara wrote: On Wed, 11 Dec 2019 10:23:16

Re: [U-Boot-Board-Maintainers] Raspberry pi 4 - u-boot - genet / scb

2019-12-12 Thread Andre Przywara
On Thu, 12 Dec 2019 10:13:27 -0800 Florian Fainelli wrote: Hi Florian, thanks for chiming in! > On 12/12/19 3:59 AM, Matthias Brugger wrote: > > > > > > On 12/12/2019 11:41, Andre Przywara wrote: > >> On Wed, 11 Dec 2019 10:23:16 +0100 > >> Matthias Brugger wrote: > >> > >> Hi, > >> >

Boot from different partitions based on some condition

2019-12-12 Thread Mats Jansson
Hi, I want to set up for an upgrade of our embedded system, using a special kernel for the upgrade. The standard will be to load the system from mtd3 (kernel), mtd4 (devicetree) and mtd5 (rootfs). When an update is to take place I want to run the upgrade system from mtd0. So basically I need to

Re: Please pull u-boot-dm/next to next branch

2019-12-12 Thread Tom Rini
On Wed, Dec 11, 2019 at 12:16:35PM -0700, Simon Glass wrote: > Hi Tom, > > This is my first attempt at sending a -next pull request. > > https://gitlab.denx.de/u-boot/custodians/u-boot-dm/pipelines/1608 > > > > The following changes since commit 520f9559020894950d4e962aba52220c8a1d6bfe: > >

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

2019-12-12 Thread Fabio Estevam
Hi Sherry, On Fri, Aug 9, 2019 at 3:21 AM Sherry Sun wrote: > Yes, I have not used imx8mq-evk yet. I will try to test it later. Have you managed to make any progress with regards to implementing UMS support on imx8mq-evk? Thanks

Re: [U-Boot-Board-Maintainers] Raspberry pi 4 - u-boot - genet / scb

2019-12-12 Thread Florian Fainelli
On 12/12/19 3:59 AM, Matthias Brugger wrote: > > > On 12/12/2019 11:41, Andre Przywara wrote: >> On Wed, 11 Dec 2019 10:23:16 +0100 >> Matthias Brugger wrote: >> >> Hi, >> >>> On 09/12/2019 14:33, Sascha Dewald wrote: Hello Amit, no problem. Is there some git feature

s5p4418: friendlyarm nanopi2: add support

2019-12-12 Thread pm.stefan
Hello, I just finished the migration of the friendlyARM U-Boot from https://github.com/friendlyarm/u-boot/tree/nanopi2-v2016.01 (for boards with s5p4418 SoC) to the current (official) U-Boot version because of a private project. For v2016.01 I have also made a working SPL (FriendlyARM U-Boot is

[PATCH 1/1] mailmap: Update mail address for Boris Brezillon

2019-12-12 Thread Heinrich Schuchardt
Boris' email address has changed. Copy two entries from the Linux .mailmap file. Boris confirmed the new email address: https://lists.denx.de/pipermail/u-boot/2019-December/393774.html Cc: Boris Brezillon Signed-off-by: Heinrich Schuchardt --- .mailmap | 2 ++ 1 file changed, 2 insertions(+)

Re: [PATCH] doc: really get rid of Documentation/ directory

2019-12-12 Thread Simon Goldschmidt
On Thu, Dec 12, 2019 at 3:38 PM Rasmus Villemoes wrote: > > Commit 656d8da9d2 (doc: Remove duplicated documentation directory) got > rid of most of Documentation/. But there's still an obviously useless > .gitignore left behind. > > Also, there's a copy of the linux kernel's net/ethernet.txt

[PATCH] doc: really get rid of Documentation/ directory

2019-12-12 Thread Rasmus Villemoes
Commit 656d8da9d2 (doc: Remove duplicated documentation directory) got rid of most of Documentation/. But there's still an obviously useless .gitignore left behind. Also, there's a copy of the linux kernel's net/ethernet.txt binding imported from v5.0, while the existing one in doc/ is from

Aw: [U-boot,v2,08/10] Add support for MT7622 reference board

2019-12-12 Thread Frank Wunderlich
Hi, I have tested v2 on my R64 1.1 > + memory@4000 { > + device_type = "memory"; > + reg = <0x4000 0x1000>; > + }; for r64 this should be modified (maybe separate dts) to reg = <0x4000 0x4000>; hint for users: you need 64bit ATF file like

Re: [PATCH 25/35] image: Rename load_addr, save_addr, save_size

2019-12-12 Thread Tom Rini
On Wed, Dec 11, 2019 at 05:47:44PM -0700, Simon Glass wrote: > These global variables are quite short and generic. In fact the same name > is more often used locally for struct members and function arguments. > > Add a image_ prefix to make them easier to distinguish. I'm not so sure about this

Re: [PATCH v2] drivers: net: fsl_enetc: Pass on primary MAC address to Linux

2019-12-12 Thread Alexandru Marginean
On 12/12/2019 1:12 PM, Michael Walle wrote: Hi Alex, Am 2019-12-11 22:01, schrieb Alexandru Marginean: Hi Michael, On 12/11/2019 6:03 PM, Michael Walle wrote: Hi Alex, Am 2019-12-11 16:37, schrieb Alexandru Marginean: On 12/11/2019 2:16 PM, Michael Walle wrote: Hi Vladimir, Am 2019-12-11

Re: [PATCH 07/35] common: Move functions for loading from fat/ext2 to fs.h

2019-12-12 Thread Tom Rini
On Thu, Dec 12, 2019 at 09:31:08AM +0100, Heinrich Schuchardt wrote: > On 12/12/19 1:47 AM, Simon Glass wrote: > > These are filesystem functions and belong in the filesystem header file. > > Move them. > > I am not very fond of having any file system dependencies outside of > disk/ and part/. >

Re: [PATCH 33/35] common: Move and rename CONFIG_SYS_SUPPORT_64BIT_DATA

2019-12-12 Thread Tom Rini
On Wed, Dec 11, 2019 at 05:47:52PM -0700, Simon Glass wrote: > This is not really a CONFIG since it is not intended to be set by boards. > Move it into the compiler header with other similar defines, and rename > it. > > Signed-off-by: Simon Glass Applied to u-boot/next, thanks! -- Tom

Re: [PATCH 14/35] common: Drop CONFIG_HAS_POST

2019-12-12 Thread Tom Rini
On Wed, Dec 11, 2019 at 05:47:33PM -0700, Simon Glass wrote: > This only exists to control whether the post/ directory is build. It is > just as easy to check this in the Makefile. Remove CONFIG_HAS_POST and use > an ifdef in the Makefile instead. > > Signed-off-by: Simon Glass > --- > >

Re: [PATCH v2] drivers: net: fsl_enetc: Pass on primary MAC address to Linux

2019-12-12 Thread Michael Walle
Hi Alex, Am 2019-12-11 22:01, schrieb Alexandru Marginean: Hi Michael, On 12/11/2019 6:03 PM, Michael Walle wrote: Hi Alex, Am 2019-12-11 16:37, schrieb Alexandru Marginean: On 12/11/2019 2:16 PM, Michael Walle wrote: Hi Vladimir, Am 2019-12-11 13:46, schrieb Vladimir Oltean: Hi Michael,

Re: [U-Boot-Board-Maintainers] Raspberry pi 4 - u-boot - genet / scb

2019-12-12 Thread Matthias Brugger
On 12/12/2019 11:41, Andre Przywara wrote: > On Wed, 11 Dec 2019 10:23:16 +0100 > Matthias Brugger wrote: > > Hi, > >> On 09/12/2019 14:33, Sascha Dewald wrote: >>> Hello Amit, >>> >>> no problem. >>> >>> Is there some git feature branch, to have a look ? >> >> Yes I'd love to have a look

Re: [PATCH] configs: socfpga: fix building Stratix10 and Agilex

2019-12-12 Thread Simon Goldschmidt
Marek, On Thu, Dec 12, 2019 at 12:29 PM wrote: > > From: Simon Goldschmidt > > This fixes a merge error that accidentally left CONFIG_MTD_DEVICE > active by removing it from the config file. > > Signed-off-by: Simon Goldschmidt This applies to and fixes u-boot-socfpga/next. Regards, Simon >

[PATCH] configs: socfpga: fix building Stratix10 and Agilex

2019-12-12 Thread simon . k . r . goldschmidt
From: Simon Goldschmidt This fixes a merge error that accidentally left CONFIG_MTD_DEVICE active by removing it from the config file. Signed-off-by: Simon Goldschmidt --- include/configs/socfpga_soc64_common.h | 1 - 1 file changed, 1 deletion(-) diff --git

RE: [EXT] Re: [PATCH 0/8] Transition of fsl qspi driver to spi-mem framework

2019-12-12 Thread Kuldeep Singh
Hi Frieder, > -Original Message- > From: Schrempf Frieder > Sent: Wednesday, December 11, 2019 6:56 PM > To: Kuldeep Singh ; u-boot@lists.denx.de; > ja...@amarulasolutions.com > Cc: Priyanka Jain ; s...@denx.de; Ashish Kumar > ; Ye Li > Subject: Re: [EXT] Re: [PATCH 0/8] Transition of

Re: [U-Boot-Board-Maintainers] Raspberry pi 4 - u-boot - genet / scb

2019-12-12 Thread Andre Przywara
On Wed, 11 Dec 2019 10:23:16 +0100 Matthias Brugger wrote: Hi, > On 09/12/2019 14:33, Sascha Dewald wrote: > > Hello Amit, > > > > no problem. > > > > Is there some git feature branch, to have a look ? > > Yes I'd love to have a look as well :) We will send an RFC later this week, Amit is

Re: [U-Boot] [PATCH v4 1/6] lib: rsa: decouple rsa from FIT image verification

2019-12-12 Thread AKASHI Takahiro
Tom, Simon, On Fri, Dec 06, 2019 at 07:25:47PM -0500, Tom Rini wrote: > On Thu, Nov 21, 2019 at 09:11:16AM +0900, AKASHI Takahiro wrote: > > > Introduce new configuration, CONFIG_RSA_VERIFY which will decouple building > > RSA functions from FIT verification and allow for adding a RSA-based > >

Re: [PATCH 09/20] clk: imx: pllv3: add support for PLLV3_AV type

2019-12-12 Thread Lukasz Majewski
Hi Giulio, > On 12/10/19 1:07 AM, Lukasz Majewski wrote: > > On Mon, 9 Dec 2019 18:13:04 +0100 > > Giulio Benetti wrote: > > > >> Hi Lukasz, > >> > >> On 12/8/19 4:05 PM, Lukasz Majewski wrote: > >>> On Wed, 4 Dec 2019 18:44:28 +0100 > >>> Giulio Benetti wrote: > >>> > Add

Re: email address of Boris Brezillon

2019-12-12 Thread Boris Brezillon
On Thu, 12 Dec 2019 10:00:06 +0100 Heinrich Schuchardt wrote: > On 12/12/19 9:32 AM, Simon Goldschmidt wrote: > > Kind of off-topic, but Boris's address at Bootlin doesn't exist anymore and > > I > > keep getting mail delivery error responses. > > > > Do we have any kind of marking such

[PATCH v2 15/19] configs: T208x: enable CONFIG_DM_USB support

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. configs/T2080RDB_NAND_defconfig | 1 + configs/T2080RDB_SDCARD_defconfig | 1 + configs/T2080RDB_SPIFLASH_defconfig | 1 + configs/T2080RDB_SRIO_PCIE_BOOT_defconfig | 1 + configs/T2080RDB_defconfig

[PATCH v2 14/19] configs: T104x: enable CONFIG_DM_USB support

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. configs/T1040D4RDB_NAND_defconfig | 1 + configs/T1040D4RDB_SDCARD_defconfig| 1 + configs/T1040D4RDB_SPIFLASH_defconfig | 1 + configs/T1040D4RDB_defconfig | 1 + configs/T1040QDS_DDR4_defconfig| 1 +

[PATCH v2 19/19] configs: P5040: enable CONFIG_DM_USB support

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. configs/P5040DS_NAND_defconfig | 1 + configs/P5040DS_SDCARD_defconfig | 1 + configs/P5040DS_SPIFLASH_defconfig | 1 + configs/P5040DS_defconfig | 1 + 4 files changed, 4 insertions(+) diff --git

[PATCH v2 18/19] arch: powerpc: add usb nodes to P5040 dts

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. arch/powerpc/dts/p5040.dtsi | 12 1 file changed, 12 insertions(+) diff --git a/arch/powerpc/dts/p5040.dtsi b/arch/powerpc/dts/p5040.dtsi index 7101924..67a62a7 100644 --- a/arch/powerpc/dts/p5040.dtsi +++

[PATCH v2 13/19] arch: powerpc: add usb nodes to T104x dts

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. arch/powerpc/dts/t104x.dtsi | 12 1 file changed, 12 insertions(+) diff --git a/arch/powerpc/dts/t104x.dtsi b/arch/powerpc/dts/t104x.dtsi index 0828f73..093aaab 100644 --- a/arch/powerpc/dts/t104x.dtsi +++

[PATCH v2 17/19] configs: T4240: enable CONFIG_DM_USB support

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. configs/T4240QDS_NAND_defconfig | 1 + configs/T4240QDS_SDCARD_defconfig | 1 + configs/T4240QDS_SRIO_PCIE_BOOT_defconfig | 1 + configs/T4240QDS_defconfig| 1 + configs/T4240RDB_SDCARD_defconfig

[PATCH v2 16/19] arch: powerpc: add usb nodes to T4240 dts

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. arch/powerpc/dts/t4240.dtsi | 12 1 file changed, 12 insertions(+) diff --git a/arch/powerpc/dts/t4240.dtsi b/arch/powerpc/dts/t4240.dtsi index 5170083..43f98cd 100644 --- a/arch/powerpc/dts/t4240.dtsi +++

[PATCH v2 12/19] configs: T102x: enable CONFIG_DM_USB support

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. configs/T1023RDB_NAND_defconfig | 1 + configs/T1023RDB_SDCARD_defconfig | 1 + configs/T1023RDB_SPIFLASH_defconfig | 1 + configs/T1023RDB_defconfig | 1 + configs/T1024QDS_DDR4_defconfig | 1 +

[PATCH v2 11/19] powerpc: add usb nodes to T102x dts

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. arch/powerpc/dts/t102x.dtsi | 12 1 file changed, 12 insertions(+) diff --git a/arch/powerpc/dts/t102x.dtsi b/arch/powerpc/dts/t102x.dtsi index 0bc1d80..a6b821a 100644 --- a/arch/powerpc/dts/t102x.dtsi +++

[PATCH v2 08/19] configs: P2041: enable CONFIG_DM_USB support

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. configs/P2041RDB_NAND_defconfig | 1 + configs/P2041RDB_SDCARD_defconfig | 1 + configs/P2041RDB_SPIFLASH_defconfig | 1 + configs/P2041RDB_SRIO_PCIE_BOOT_defconfig | 1 + configs/P2041RDB_defconfig

[PATCH v2 10/19] configs: P4080: enable CONFIG_DM_USB support

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. configs/P4080DS_SDCARD_defconfig | 1 + configs/P4080DS_SPIFLASH_defconfig | 1 + configs/P4080DS_SRIO_PCIE_BOOT_defconfig | 1 + configs/P4080DS_defconfig| 1 + 4 files changed, 4 insertions(+) diff

[PATCH v2 05/19] arch: powerpc: add usb node to p2020 dts

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. arch/powerpc/dts/p2020-post.dtsi | 6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/powerpc/dts/p2020-post.dtsi b/arch/powerpc/dts/p2020-post.dtsi index c07ed66..5bbd5c5 100644 --- a/arch/powerpc/dts/p2020-post.dtsi +++

[PATCH v2 04/19] configs: p1020: enable CONFIG_DM_USB support

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. configs/P1020MBG-PC_36BIT_SDCARD_defconfig | 1 + configs/P1020MBG-PC_36BIT_defconfig | 1 + configs/P1020MBG-PC_SDCARD_defconfig | 1 + configs/P1020MBG-PC_defconfig| 1 +

[PATCH v2 07/19] arch: powerpc: add usb node to p2041 dts

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. arch/powerpc/dts/p2041.dtsi | 12 1 file changed, 12 insertions(+) diff --git a/arch/powerpc/dts/p2041.dtsi b/arch/powerpc/dts/p2041.dtsi index 223052a..0f5e7db 100644 --- a/arch/powerpc/dts/p2041.dtsi +++

[PATCH v2 09/19] arch: powerpc: add usb nodes to P4080 dts

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. arch/powerpc/dts/p4080.dtsi | 12 1 file changed, 12 insertions(+) diff --git a/arch/powerpc/dts/p4080.dtsi b/arch/powerpc/dts/p4080.dtsi index 08ac26d..02f39fb 100644 --- a/arch/powerpc/dts/p4080.dtsi +++

[PATCH v2 06/19] configs: P2020: enable CONFIG_DM_USB support

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. configs/P2020RDB-PC_36BIT_NAND_defconfig | 1 + configs/P2020RDB-PC_36BIT_SDCARD_defconfig | 1 + configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig | 1 + configs/P2020RDB-PC_36BIT_defconfig | 1 +

[PATCH v2 03/19] arch: powerpc: add usb nodes to P1020 dts

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. arch/powerpc/dts/p1020-post.dtsi | 13 + 1 file changed, 13 insertions(+) diff --git a/arch/powerpc/dts/p1020-post.dtsi b/arch/powerpc/dts/p1020-post.dtsi index fb3b203..1c77702 100644 ---

[PATCH v2 01/19] arch: powerpc: add usb node in p3041 dts

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. arch/powerpc/dts/p3041.dtsi | 12 1 file changed, 12 insertions(+) diff --git a/arch/powerpc/dts/p3041.dtsi b/arch/powerpc/dts/p3041.dtsi index e873db2..6736d00 100644 --- a/arch/powerpc/dts/p3041.dtsi +++

[PATCH v2 02/19] configs: p3041ds: enable CONFIG_DM_USB support

2019-12-12 Thread Ran Wang
Signed-off-by: Ran Wang --- Change in v2: - Rebase. configs/P3041DS_NAND_defconfig | 1 + configs/P3041DS_SDCARD_defconfig | 1 + configs/P3041DS_SPIFLASH_defconfig | 1 + configs/P3041DS_SRIO_PCIE_BOOT_defconfig | 1 + configs/P3041DS_defconfig|

[PATCH] mpc83xx: set MPC83XX_GPIO_CTRLRS to 2 for MPC8309

2019-12-12 Thread Rasmus Villemoes
The MPC8309 has two gpio controllers (which is already correctly reflected in its struct immap definition). Signed-off-by: Rasmus Villemoes --- arch/powerpc/include/asm/arch-mpc83xx/gpio.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH] configs: ls1012ardb: Enable CONFIG_SYS_RELOC_GD_ENV_ADDR

2019-12-12 Thread Kuldeep Singh
Enable the config for ls1012ardb as the entry got missed earlier. Fixes: 8d8ee47e03 ("env: Add CONFIG_SYS_RELOC_GD_ENV_ADDR symbol") Signed-off-by: Kuldeep Singh --- configs/ls1012ardb_qspi_SECURE_BOOT_defconfig | 1 + configs/ls1012ardb_qspi_defconfig | 1 +

Re: email address of Boris Brezillon

2019-12-12 Thread Heinrich Schuchardt
On 12/12/19 9:32 AM, Simon Goldschmidt wrote: Kind of off-topic, but Boris's address at Bootlin doesn't exist anymore and I keep getting mail delivery error responses. Do we have any kind of marking such addresses as "don't use" to patman so this won't happen in the future? File .mailmap

Re: [PATCH 09/35] common: Move jumptable_init() out of common.h

2019-12-12 Thread Heinrich Schuchardt
On 12/12/19 1:47 AM, Simon Glass wrote: This function is defined in exports.c so move it to its header file. Signed-off-by: Simon Glass Reviewed-by: Heinrich Schuchardt

[PATCH] mpc83xx: immap_83xx: add spi8xxx_t in immap for mpc8309

2019-12-12 Thread Rasmus Villemoes
Allow drivers/spi/mpc8xxx_spi.c to be built for an mpc8309 target. Signed-off-by: Rasmus Villemoes --- arch/powerpc/include/asm/immap_83xx.h | 3 +-- arch/powerpc/include/asm/mpc8xxx_spi.h | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [PATCH 02/35] common: Move main_loop() to init.h

2019-12-12 Thread Simon Goldschmidt
Kind of off-topic, but Boris's address at Bootlin doesn't exist anymore and I keep getting mail delivery error responses. Do we have any kind of marking such addresses as "don't use" to patman so this won't happen in the future? Regards, Simon On Thu, Dec 12, 2019 at 1:48 AM Simon Glass wrote:

Re: [PATCH 07/35] common: Move functions for loading from fat/ext2 to fs.h

2019-12-12 Thread Heinrich Schuchardt
On 12/12/19 1:47 AM, Simon Glass wrote: These are filesystem functions and belong in the filesystem header file. Move them. I am not very fond of having any file system dependencies outside of disk/ and part/. Do we need the functions do_ext2load() and do_fat_fsload() at all? What is the

Re: Pull request: socfpga-next

2019-12-12 Thread Marek Vasut
On 12/12/19 8:43 AM, Tan, Ley Foon wrote: [...] >>> Rebase this on socfpga/next please, so the fix is visible and I don't >>> have to rewrite the branch. >> >> The thing is, I did something wrong in the 2nd newest commit >> ("configs: socfpga: Move Stratix10 and Agilex common CONFIGs"). >> >> So

Re: [PATCH 02/35] common: Move main_loop() to init.h

2019-12-12 Thread Simon Goldschmidt
On Thu, Dec 12, 2019 at 1:48 AM Simon Glass wrote: > > Move this function out of common.h and into a better place. > > Signed-off-by: Simon Glass Reviewed-by: Simon Goldschmidt > --- > > common/board_r.c | 1 + > common/main.c| 1 + > include/common.h | 3 --- > include/init.h | 7

Re: [PATCH 16/35] common: Move type declarations to linux/types.h

2019-12-12 Thread Heinrich Schuchardt
On 12/12/19 1:47 AM, Simon Glass wrote: This file already has lots of type declarations so it seems better to put all of them there. It seems you missed these patches: merged patch: https://lists.denx.de/pipermail/u-boot/2019-December/393191.html linux/types.h: fix typo unchar reviewed but

[PATCH] powerpc: mpc83xx: convert CONFIG_FSL_ELBC to Kconfig

2019-12-12 Thread Rasmus Villemoes
This complements commit 068789773d0 which did the conversion for mpc85xx. Signed-off-by: Rasmus Villemoes --- arch/powerpc/cpu/mpc83xx/Kconfig | 7 +++ include/configs/MPC8313ERDB_NAND.h | 1 - include/configs/MPC8313ERDB_NOR.h | 1 - include/configs/MPC8315ERDB.h | 2 --

Re: [PATCH 01/35] common: Drop mdm_init()

2019-12-12 Thread Simon Goldschmidt
On Thu, Dec 12, 2019 at 1:48 AM Simon Glass wrote: > > This is not used in U-Boot. Drop it. > > Signed-off-by: Simon Glass Reviewed-by: Simon Goldschmidt > --- > > include/common.h | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/include/common.h b/include/common.h > index