Re: [U-Boot] [PATCH 4/4] sunxi: board: fixup the BT address for Orange Pi 3

2019-11-22 Thread Andre Heider
On 23/11/2019 04:24, Chen-Yu Tsai wrote: On Fri, Nov 22, 2019 at 9:05 PM Andre Heider wrote: The BCM4345C5 of the Orange Pi 3 ships with the controller default address. Fix it up so it can function properly. The used address is "ethaddr" with the LSB flipped. Signed-off-by: Andre Heider ---

Re: [U-Boot] [PATCH 4/4] sunxi: board: fixup the BT address for Orange Pi 3

2019-11-22 Thread Chen-Yu Tsai
On Fri, Nov 22, 2019 at 9:05 PM Andre Heider wrote: > > The BCM4345C5 of the Orange Pi 3 ships with the controller default > address. Fix it up so it can function properly. > > The used address is "ethaddr" with the LSB flipped. > > Signed-off-by: Andre Heider > --- > > NOTE: > "local-bd-address

Re: [U-Boot] [RFC/RFT PATCH v4 3/3] image: Add compressed Image parsing support in booti.

2019-11-22 Thread Atish Patra
On Wed, 2019-11-13 at 11:47 -0800, Atish Patra wrote: > On Wed, 2019-11-13 at 15:36 +0200, David Abdurachmanov wrote: > > On Sat, Nov 9, 2019 at 2:14 AM Atish Patra > > wrote: > > > Add compressed Image parsing support so that booti can parse both > > > flat and compressed Image to boot Linux. Cur

Re: [U-Boot] [PATCH 2/2] drivers: usb: host: Add BRCM xHCI driver

2019-11-22 Thread Marek Vasut
On 11/23/19 12:31 AM, Vladimir Olovyannikov wrote: [...] > +#define USBAXI_AWCACHE 0xF > +#define USBAXI_ARCACHE 0xF > +#define USBAXI_AWPROT0x8 > +#define USBAXI_ARPROT0x8 > +#define USBAXIWR_SA_VAL ((USBAXI_AWCACHE << 4 | U

[U-Boot] [PATCH 1/2] dt-bindings: Documentation on BRCM xHCI controller

2019-11-22 Thread Vladimir Olovyannikov
From: Bharat Kumar Reddy Gooty DT bindings document for Broadcom xHCI controller. Signed-off-by: Bharat Kumar Reddy Gooty Signed-off-by: Vladimir Olovyannikov --- .../devicetree/bindings/usb/brcm,generic-xhci.txt| 12 1 file changed, 12 insertions(+) create mode 100644 Docum

[U-Boot] [PATCH 2/2] drivers: usb: host: Add BRCM xHCI driver

2019-11-22 Thread Vladimir Olovyannikov
From: Bharat Kumar Reddy Gooty Base driver for Broadcom xHCI controllers Signed-off-by: Bharat Kumar Reddy Gooty Signed-off-by: Vladimir Olovyannikov --- drivers/usb/host/Kconfig | 8 +++ drivers/usb/host/Makefile| 1 + drivers/usb/host/xhci-brcm.c | 103 ++

[U-Boot] [PATCH 0/2] Add Broadcom XHCI driver for iproc platforms

2019-11-22 Thread Vladimir Olovyannikov
This patchset adds Broadcom XHCI driver for iproc platforms This USB controller is based on the Broadcom USB3 IP Core. Supports USB2/3 functionality. Bharat Kumar Reddy Gooty (2): dt-bindings: Documentation on BRCM xHCI controller drivers: usb: host: Add BRCM xHCI driver .../bindings/usb/brc

[U-Boot] [PATCH 1/2] dt-bindings: documentation on sp805(DM) iproc driver

2019-11-22 Thread Vladimir Olovyannikov
From: Pramod Kumar DT documentation for sp805 DM wdt Broadcom iproc driver used by iproc-based socs. Signed-off-by: Pramod Kumar Signed-off-by: Vladimir Olovyannikov --- .../devicetree/bindings/watchdog/sp805-wdt_dm.txt | 15 +++ 1 file changed, 15 insertions(+) create mode 10064

[U-Boot] [PATCH 2/2] drivers: watchdog: Add brcm iproc sp805 watchdog driver

2019-11-22 Thread Vladimir Olovyannikov
From: Pramod Kumar Add sp805 watchdog driver for Broadcom iproc socs (DM). Signed-off-by: Pramod Kumar Signed-off-by: Vladimir Olovyannikov --- drivers/watchdog/Kconfig| 10 ++ drivers/watchdog/Makefile | 1 + drivers/watchdog/sp805_wdt_dm.c | 181

[U-Boot] [PATCH 0/2] Add SP805 driver for iproc platforms (DM)

2019-11-22 Thread Vladimir Olovyannikov
This patchset adds driver-model based SP805 watchdog driver for Broadcom iProc platforms Pramod Kumar (2): dt-bindings: documentation on sp805(DM) iproc driver drivers: watchdog: Add brcm iproc sp805 watchdog driver .../bindings/watchdog/sp805-wdt_dm.txt| 15 ++ drivers/watchdog/Kco

[U-Boot] [PATCH 1/1] drivers: mmc: rpmb: Use R1 response

2019-11-22 Thread Vladimir Olovyannikov
From: Bharat Kumar Reddy Gooty If the host has Broken R1B, use only R1 response type. Signed-off-by: Bharat Kumar Reddy Gooty Signed-off-by: Vladimir Olovyannikov --- drivers/mmc/rpmb.c | 5 + 1 file changed, 5 insertions(+) diff --git a/drivers/mmc/rpmb.c b/drivers/mmc/rpmb.c index 3337

[U-Boot] [PATCH 1/2] drivers: spi: Add commands for Micron SPI

2019-11-22 Thread Vladimir Olovyannikov
Add commands for dual and quad SPI transfers on Micon SPI. Signed-off-by: Corneliu Doban Signed-off-by: Vladimir Olovyannikov --- include/spi.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/spi.h b/include/spi.h index 6fbb4336ce..ae36835e95 100644 --- a/include/spi.h +++ b/i

[U-Boot] [PATCH 2/2] drivers: spi: Add brcm iproc spi driver

2019-11-22 Thread Vladimir Olovyannikov
From: Shreesha Rajashekar Add iproc spi/qspi driver for Broadcom iproc architecture based soc's. Signed-off-by: Shreesha Rajashekar Signed-off-by: Bharat Kumar Reddy Gooty Signed-off-by: Rayagonda Kokatanur Signed-off-by: Vladimir Olovyannikov --- drivers/spi/Kconfig | 26 + drivers/

[U-Boot] [PATCH 0/2] Add Broadcom SPI driver

2019-11-22 Thread Vladimir Olovyannikov
This patchset: - adds Broadcom SPI driver for iproc-based platforms and - extends Micron SPI commands for dual and quad SPI transfers on Micon SPI. Shreesha Rajashekar (1): drivers: spi: Add brcm iproc spi driver Corneliu Doban (1): drivers: spi: Add commands for Micron SPI drivers/spi/Kco

[U-Boot] [PATCH 1/1] arm: cpu: armv8: add support for arm psci reset2.

2019-11-22 Thread Vladimir Olovyannikov
From: Rajesh Ravi Current U-Boot has only support for psci reset. Adding support for arm psci reset2 allows passing of reset level and other platform sepcific parameters like strap settings to lowlevel psci implementation. Signed-off-by: Rajesh Ravi Signed-off-by: Vladimir Olovyannikov --- ar

[U-Boot] [PATCH 2/3] pinctrl: pinctrl-single: Add request api

2019-11-22 Thread Vladimir Olovyannikov
From: Rayagonda Kokatanur Add pinctrl_ops->request api to configure pctrl pad register to configure in gpio mode. Signed-off-by: Rayagonda Kokatanur Signed-off-by: Vladimir Olovyannikov --- drivers/pinctrl/pinctrl-single.c | 30 ++ 1 file changed, 30 insertions(+)

[U-Boot] [PATCH 1/3] pinctrl: pinctrl-single: Handle different register width

2019-11-22 Thread Vladimir Olovyannikov
From: Rayagonda Kokatanur Add support to use different register read/write api's based on register width. Signed-off-by: Rayagonda Kokatanur Signed-off-by: Vladimir Olovyannikov --- drivers/pinctrl/pinctrl-single.c | 111 ++- 1 file changed, 80 insertions(+), 31 de

[U-Boot] [PATCH 3/3] pinctrl: pinctrl-single: Parse gpio details from dt

2019-11-22 Thread Vladimir Olovyannikov
From: Rayagonda Kokatanur Parse different gpio properties from dt as part of probe function. This detail is required to enable pinctrl pad. Signed-off-by: Rayagonda Kokatanur Signed-off-by: Vladimir Olovyannikov --- drivers/pinctrl/pinctrl-single.c | 61 +++- 1 fil

[U-Boot] [PATCH 0/3] Extend pinctrl-single driver with APIs

2019-11-22 Thread Vladimir Olovyannikov
This patch set adds APIs for pinctrl-single driver. 1. Support to use different register read/write api's based on register width. 2. pinctrl_ops->request api to configure pctrl pad register in gpio mode. 3. Parse different gpio properties from dt as part of the probe function. This

[U-Boot] [PATCH 1/3] drivers: pci: Fix Host bridge bus number issue

2019-11-22 Thread Vladimir Olovyannikov
From: Srinath Mannam Add changes to fix bus number of host bridge is set with device sequence number issue. All devices are managed using device sequence number. For PCIe, devices enabled in DTS are added under PCIE_CLASS with consecutive device sequence numbers to scan all pcie devices in sequen

[U-Boot] [PATCH 3/3] drivers: pci: pci-uclass: Get PCI dma regions support

2019-11-22 Thread Vladimir Olovyannikov
From: Srinath Mannam Add API to parse dma-regions given in PCIe host controller DT node. Signed-off-by: Srinath Mannam Signed-off-by: Vladimir Olovyannikov --- drivers/pci/pci-uclass.c | 41 include/pci.h| 2 ++ 2 files changed, 43 inserti

[U-Boot] [PATCH 0/3] Introduce APIs for multi PCIe host controller platforms

2019-11-22 Thread Vladimir Olovyannikov
This patch set contains proposed API changes to the pci uclass for multi PCIe host controller platforms. 1. Add changes to fix bus number of a host bridge Differentiate bus numbers hierarchy for root bridges. All bus numbers are device sequence numbers minus root bridge sequence number.

[U-Boot] [PATCH 2/3] drivers: core: uclass: Get next device fail with driver probe fail

2019-11-22 Thread Vladimir Olovyannikov
From: Srinath Mannam Add changes to fix get next device failed if driver probe failed issue. In Multi PCIe host controller platforms, if one PCIe host driver probe failed with any reason then it stops to find next PCIe host controller device pointer to call its driver probe. Signed-off-by: Srina

Re: [U-Boot] [PULL] u-boot-sh/master

2019-11-22 Thread Tom Rini
On Fri, Nov 22, 2019 at 01:39:39PM +0100, Marek Vasut wrote: > The following changes since commit 3ff1ff3ff76c15efe0451309af084ee6c096c583: > > Merge branch '2019-11-12-migrate-SYS_REDUNDAND_ENVIRONMENT' > (2019-11-12 13:40:58 -0500) > > are available in the Git repository at: > > git://git

Re: [U-Boot] [PULL] u-boot-socfpga/master

2019-11-22 Thread Tom Rini
On Fri, Nov 22, 2019 at 01:41:09PM +0100, Marek Vasut wrote: > The following changes since commit 8d8ee47e03ef23b0d0e842ea455a30bf0d2023b9: > > env: Add CONFIG_SYS_RELOC_GD_ENV_ADDR symbol (2019-11-20 12:24:50 -0500) > > are available in the Git repository at: > > git://git.denx.de/u-boot-s

Re: [U-Boot] [PULL] u-boot-usb/master

2019-11-22 Thread Tom Rini
On Fri, Nov 22, 2019 at 01:39:05PM +0100, Marek Vasut wrote: > The following changes since commit d4a31e8ee5592072d8d5208b3e950cba2d89b6bd: > > Prepare v2020.01-rc3 (2019-11-18 21:31:49 -0500) > > are available in the Git repository at: > > git://git.denx.de/u-boot-usb.git master > > for y

[U-Boot] [PATCH 1/1] drivers: pcie: Add Broadcom IPROC PCIe driver

2019-11-22 Thread Vladimir Olovyannikov
From: Srinath Mannam Add support of IPROC PCIe driver for Broadcom Iproc SoCs. Signed-off-by: Srinath Mannam Signed-off-by: Vladimir Olovyannikov --- drivers/pci/Kconfig |6 + drivers/pci/Makefile |1 + drivers/pci/pcie_iproc.c | 1238 ++ 3

[U-Boot] [PATCH] usb: Make USB_MUSB_PIO_ONLY conditional on USB_MUSB_{HOST, GADGET}

2019-11-22 Thread Samuel Dionne-Riel
This ensures the USB_MUSB_PIO_ONLY config is set to an apppropriate default values from the changes enabling USB_MUSB_GADGET does. Namely, USB_MUSB_PIO_ONLY default to =y on USB_MUSB_SUNXI being y. Since USB_MUSB_SUNXI is behind the conditional, the option does not exist when using make ..._defcon

[U-Boot] [PATCH 1/1] cmd: gpt: Enumerate partitions and save info into an U-Boot variable

2019-11-22 Thread Vladimir Olovyannikov
From: Corneliu Doban Add enumeration of gpt partitions and saving this information into U-Boot variables. Signed-off-by: Corneliu Doban Signed-off-by: Vladimir Olovyannikov --- cmd/gpt.c | 95 +++ 1 file changed, 95 insertions(+) diff --git

Re: [U-Boot] [PATCH v4 1/5] net: phy: mv88e61xx: rework to enable detection of 88E6071 devices

2019-11-22 Thread Joe Hershberger
On Sat, Oct 26, 2019 at 6:17 PM Anatolij Gustschin wrote: > > Extend the driver to init switch register offsets from variables > instead of compile time macros and enable detection of 88E6071 and > compatible devices. Ethernet transfer (e.g. tftp) does not work yet, > so enable the registration of

Re: [U-Boot] Using kernelCI infrastructure for firmware testing

2019-11-22 Thread Kevin Hilman
"Patrick Rudolph" writes: > Hi folks, > this is an attempt to improve firmware testing by using the > infrastructure and knowledge of the kernelci community. If you think > this is not the right place, please point me in the right direction. > > I'm a coreboot[1] developer trying to make sure tha

Re: [U-Boot] [PATCH v4 0/5] Extend mv88e61xx driver to support 88E6071

2019-11-22 Thread Anatolij Gustschin
Hi Joe, On Sun, 27 Oct 2019 01:14:36 +0200 Anatolij Gustschin ag...@denx.de wrote: > This series adds support for 88E6071 and compatible switches in the > mv88e61xx driver. Ping. Is there a chance to queue this for merging in v2020.01 ? Thanks, Anatolij

[U-Boot] [PATCH 1/1] drivers: i2c: Add brcm iproc I2C driver support

2019-11-22 Thread Vladimir Olovyannikov
From: Arjun Jyothi Add I2C driver support for Broadcom iproc-based socs. Signed-off-by: Arjun Jyothi Signed-off-by: Rayagonda Kokatanur Signed-off-by: Sheetal Tigadoli Signed-off-by: Vladimir Olovyannikov --- drivers/i2c/Kconfig | 623 drivers/i2c/Makefi

Re: [U-Boot] [PATCH v4 013/100] RFC: sandbox: net: Suppress the MAC-address warnings

2019-11-22 Thread Joe Hershberger
Hi Simon, On Thu, Nov 21, 2019 at 10:40 PM Simon Glass wrote: > > These warnings appear every thing sandbox is run (see below) and dwarf the > actual useful output. Suppress them in two ways: > > 1. For the mismatch warnings, only set the ethaddr environment > variables when running tests. > > 2.

Re: [U-Boot] Maximum size of u-boot.imx for TBS2910 board

2019-11-22 Thread Marek Vasut
On 11/22/19 4:44 PM, Tom Rini wrote: > On Fri, Nov 22, 2019 at 04:58:29AM +0100, Marek Vasut wrote: >> On 11/22/19 4:41 AM, Tom Rini wrote: >> [...] >>> I believe >>> the specific changes in question that once again push this board >>> over >>> fall in to that grey

Re: [U-Boot] [PATCH v2 1/2] usb: composite: fix possible alignment issues

2019-11-22 Thread Marek Vasut
On 11/22/19 6:32 PM, Heinrich Schuchardt wrote: > On 11/22/19 1:14 PM, Marek Vasut wrote: >> On 11/22/19 12:58 PM, Heinrich Schuchardt wrote: >>> On 11/22/19 8:47 AM, Simon Goldschmidt wrote: On Fri, Nov 22, 2019 at 7:50 AM Heinrich Schuchardt wrote: > > On 11/22/19 1:25 AM, Mare

Re: [U-Boot] [PATCH v2 1/2] usb: composite: fix possible alignment issues

2019-11-22 Thread Tom Rini
On Fri, Nov 22, 2019 at 06:32:13PM +0100, Heinrich Schuchardt wrote: > On 11/22/19 1:14 PM, Marek Vasut wrote: > > On 11/22/19 12:58 PM, Heinrich Schuchardt wrote: > > > On 11/22/19 8:47 AM, Simon Goldschmidt wrote: > > > > On Fri, Nov 22, 2019 at 7:50 AM Heinrich Schuchardt > > > > wrote: > > > >

[U-Boot] [PATCH 1/1] drivers: gpio: Add common Broadcom iproc gpio driver

2019-11-22 Thread Vladimir Olovyannikov
From: Sheetal Tigadoli Add common iproc gpio driver for Broadcom's iProc based SoCs Signed-off-by: Sheetal Tigadoli Signed-off-by: Vladimir Olovyannikov --- drivers/gpio/Kconfig | 10 ++ drivers/gpio/Makefile | 1 + drivers/gpio/iproc_gpio.c | 258 +

Re: [U-Boot] [PATCH v2 1/2] usb: composite: fix possible alignment issues

2019-11-22 Thread Heinrich Schuchardt
On 11/22/19 1:14 PM, Marek Vasut wrote: On 11/22/19 12:58 PM, Heinrich Schuchardt wrote: On 11/22/19 8:47 AM, Simon Goldschmidt wrote: On Fri, Nov 22, 2019 at 7:50 AM Heinrich Schuchardt wrote: On 11/22/19 1:25 AM, Marek Vasut wrote: On 11/21/19 10:15 PM, Simon Goldschmidt wrote: Since upg

[U-Boot] [PATCH] board: ti: am43xx: remove net platform code

2019-11-22 Thread Grygorii Strashko
The TI AM43xx platform has DM_ETH and OF_CONTROL enabled, so remove networking platform code. Signed-off-by: Grygorii Strashko --- board/ti/am43xx/board.c | 106 +--- 1 file changed, 1 insertion(+), 105 deletions(-) diff --git a/board/ti/am43xx/board.c b/boar

[U-Boot] [PATCH] board: ti: dra7-evm: remove net platform code

2019-11-22 Thread Grygorii Strashko
The DRA7 has DM_ETH and OF_CONTROL enabled, so remove networking platform code. Signed-off-by: Grygorii Strashko --- board/ti/dra7xx/evm.c | 106 +- 1 file changed, 1 insertion(+), 105 deletions(-) diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.

Re: [U-Boot] Maximum size of u-boot.imx for TBS2910 board

2019-11-22 Thread Tom Rini
On Fri, Nov 22, 2019 at 04:58:29AM +0100, Marek Vasut wrote: > On 11/22/19 4:41 AM, Tom Rini wrote: > [...] > > I believe > > the specific changes in question that once again push this board > > over > > fall in to that grey area. Whatever size-trimming the board

Re: [U-Boot] [PATCH 4/4] sunxi: board: fixup the BT address for Orange Pi 3

2019-11-22 Thread Andre Heider
Hey Ondřej, On 22/11/2019 15:23, Ondřej Jirman wrote: Hello, On Fri, Nov 22, 2019 at 02:04:00PM +0100, Andre Heider wrote: The BCM4345C5 of the Orange Pi 3 ships with the controller default address. Fix it up so it can function properly. This is very nice! The used address is "ethaddr" wit

[U-Boot] [PATCH] poweroff: add poweroff for mt6323 pmic

2019-11-22 Thread Frank Wunderlich
this adds poweroff to bananapi r2 / mt7623 / mt6323 pmic Signed-off-by: Frank Wunderlich --- drivers/power/Kconfig | 7 +++ drivers/power/Makefile | 1 + drivers/power/mt6323.c | 37 + 3 files changed, 45 insertions(+) create mode 100644 drivers/power/

Re: [U-Boot] [PATCH 4/4] sunxi: board: fixup the BT address for Orange Pi 3

2019-11-22 Thread Ondřej Jirman
Hello, On Fri, Nov 22, 2019 at 02:04:00PM +0100, Andre Heider wrote: > The BCM4345C5 of the Orange Pi 3 ships with the controller default > address. Fix it up so it can function properly. This is very nice! > The used address is "ethaddr" with the LSB flipped. > > Signed-off-by: Andre Heider >

Re: [U-Boot] [GIT PULL] Raspberry Pi updates for v2020.01

2019-11-22 Thread Marek Szyprowski
Hi Matthias, On 20.11.2019 10:10, Matthias Brugger wrote: > Hi Tom, > > On 20/11/2019 02:57, Tom Rini wrote: >> On Tue, Nov 19, 2019 at 05:02:34PM +0100, Matthias Brugger wrote: >> >>> Hi Tom, >>> >>> Please have a look at the below patches. >>> Travis-ci can be found here: >>> https://travis-ci.o

[U-Boot] [PATCH 3/4] sunxi: board: Use eth_env_set_enetaddr_by_index()

2019-11-22 Thread Andre Heider
That helper takes care of assembling the correct name and doesn't allow overwriting existing env vars, so drop the checks here. Signed-off-by: Andre Heider --- board/sunxi/board.c | 10 +- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/board/sunxi/board.c b/board/sunxi/boar

[U-Boot] [PATCH 2/4] arm64: dts: sun50i: Add support for Orange Pi 3

2019-11-22 Thread Andre Heider
The dts is taken from kernel tag v5.4-rc8. Signed-off-by: Andre Heider --- arch/arm/dts/Makefile | 1 + arch/arm/dts/sun50i-h6-orangepi-3.dts | 287 ++ board/sunxi/MAINTAINERS | 5 + configs/orangepi_3_defconfig | 17 ++ 4 files

[U-Boot] [PATCH 4/4] sunxi: board: fixup the BT address for Orange Pi 3

2019-11-22 Thread Andre Heider
The BCM4345C5 of the Orange Pi 3 ships with the controller default address. Fix it up so it can function properly. The used address is "ethaddr" with the LSB flipped. Signed-off-by: Andre Heider --- NOTE: "local-bd-address" is a universal property, the kernel patch for btbcm to use that is in

[U-Boot] [PATCH 1/4] arm64: dts: sync Allwinner H6 files

2019-11-22 Thread Andre Heider
Taken from the kernel tag v5.4-rc8. Drop the /omit-if-no-ref/ keyword as it's not supported by u-boot. Signed-off-by: Andre Heider --- arch/arm/dts/sun50i-h6-beelink-gs1.dts | 27 + arch/arm/dts/sun50i-h6-orangepi.dtsi | 4 + arch/arm/dts/sun50i-h6-pine-h64.dts| 4 + arch/arm/dts/

Re: [U-Boot] [PATCH 1/1] efi_loader: default EFI_LOADER=n on ARM11

2019-11-22 Thread Linus Walleij
On Wed, Nov 20, 2019 at 7:04 PM Heinrich Schuchardt wrote: > Some of the ARM11 boards have tight limits on the size of U-Boots. Hence > use EFI_LOADER=n as default on ARM11. > > Set EFI_LOADER=y for the Raspberry Pi and Raspberry Pi Zero as these boards > have sufficient storage on the SD card. >

[U-Boot] [PULL] u-boot-socfpga/master

2019-11-22 Thread Marek Vasut
The following changes since commit 8d8ee47e03ef23b0d0e842ea455a30bf0d2023b9: env: Add CONFIG_SYS_RELOC_GD_ENV_ADDR symbol (2019-11-20 12:24:50 -0500) are available in the Git repository at: git://git.denx.de/u-boot-socfpga.git master for you to fetch changes up to 0c14bb5ad3311de2c26e66e88f

[U-Boot] [PULL] u-boot-sh/master

2019-11-22 Thread Marek Vasut
The following changes since commit 3ff1ff3ff76c15efe0451309af084ee6c096c583: Merge branch '2019-11-12-migrate-SYS_REDUNDAND_ENVIRONMENT' (2019-11-12 13:40:58 -0500) are available in the Git repository at: git://git.denx.de/u-boot-sh.git master for you to fetch changes up to 8cdb1ff33caa4b2b

[U-Boot] [PULL] u-boot-usb/master

2019-11-22 Thread Marek Vasut
The following changes since commit d4a31e8ee5592072d8d5208b3e950cba2d89b6bd: Prepare v2020.01-rc3 (2019-11-18 21:31:49 -0500) are available in the Git repository at: git://git.denx.de/u-boot-usb.git master for you to fetch changes up to 7dc0ac6015718f5fb66bb79bf53df19f64fbfeee: usb: dwc2

Re: [U-Boot] [PATCH v2 1/2] usb: composite: fix possible alignment issues

2019-11-22 Thread Marek Vasut
On 11/22/19 12:58 PM, Heinrich Schuchardt wrote: > On 11/22/19 8:47 AM, Simon Goldschmidt wrote: >> On Fri, Nov 22, 2019 at 7:50 AM Heinrich Schuchardt >> wrote: >>> >>> On 11/22/19 1:25 AM, Marek Vasut wrote: On 11/21/19 10:15 PM, Simon Goldschmidt wrote: > Since upgrading to gcc9, warni

Re: [U-Boot] Maximum size of u-boot.imx for TBS2910 board

2019-11-22 Thread Marek Vasut
On 11/22/19 11:29 AM, Soeren Moch wrote: > > > On 22.11.19 04:58, Marek Vasut wrote: >> On 11/22/19 4:41 AM, Tom Rini wrote: >> [...] >>> I believe >>> the specific changes in question that once again push this board >>> over >>> fall in to that grey area. Whatev

Re: [U-Boot] Maximum size of u-boot.imx for TBS2910 board

2019-11-22 Thread Tom Rini
On Fri, Nov 22, 2019 at 12:42:49PM +0100, Heinrich Schuchardt wrote: > On 11/22/19 11:29 AM, Soeren Moch wrote: > > > > > > On 22.11.19 04:58, Marek Vasut wrote: > > > On 11/22/19 4:41 AM, Tom Rini wrote: > > > [...] > > > > > > > > > > > > I believe > > > > > > > > > > > > the specific changes i

Re: [U-Boot] [PATCH v4 000/100] x86: Add initial support for apollolake

2019-11-22 Thread Simon Glass
Hi Bin, On Thu, 21 Nov 2019 at 21:19, Simon Glass wrote: > > Apollo Lake is an Intel SoC generation aimed at relatively low-end > embedded systems. It was released in 2016 but has become more popular > recently with some embedded boards using it. > > This series adds support for Apollo Lake. As a

Re: [U-Boot] [PATCH v2 1/2] usb: composite: fix possible alignment issues

2019-11-22 Thread Heinrich Schuchardt
On 11/22/19 8:47 AM, Simon Goldschmidt wrote: On Fri, Nov 22, 2019 at 7:50 AM Heinrich Schuchardt wrote: On 11/22/19 1:25 AM, Marek Vasut wrote: On 11/21/19 10:15 PM, Simon Goldschmidt wrote: Since upgrading to gcc9, warnings are issued: "taking address of packed member of ‘...’ may result i

Re: [U-Boot] Maximum size of u-boot.imx for TBS2910 board

2019-11-22 Thread Heinrich Schuchardt
On 11/22/19 11:29 AM, Soeren Moch wrote: On 22.11.19 04:58, Marek Vasut wrote: On 11/22/19 4:41 AM, Tom Rini wrote: [...] I believe the specific changes in question that once again push this board over fall in to that grey area. Whatever size-trimming the board maintainer is fine with next i

Re: [U-Boot] [PATCH 0/6] Introduce DSA Ethernet switch class and Felix driver

2019-11-22 Thread Vladimir Oltean
On Fri, 22 Nov 2019 at 03:37, Alex Marginean wrote: > > DSA stands for Distributed Switch Architecture and it is a subsystem > introduced > in the Linux kernel to support switches that: > - have an Ethernet link up to the CPU > - use some form of tagging to identify the source/destination port fo

Re: [U-Boot] Maximum size of u-boot.imx for TBS2910 board

2019-11-22 Thread Soeren Moch
On 22.11.19 04:58, Marek Vasut wrote: > On 11/22/19 4:41 AM, Tom Rini wrote: > [...] >> I believe >> the specific changes in question that once again push this board over >> fall in to that grey area. Whatever size-trimming the board >> maintainer >> is f

[U-Boot] [PATCH v3] travis: rework NXP layerscape jobs

2019-11-22 Thread Heiko Schocher
remove from NXP arm32 all layerscape boards and build them instead in already existing layerscape jobs (which now not only build aarch64 boards) Signed-off-by: Heiko Schocher --- travis build: https://travis-ci.org/hsdenx/u-boot-test/builds/615388594 https://dev.azure.com/hs0298/hs/_build/r

[U-Boot] [PATCH v2] configs: ls1028a: enable CMD_DM

2019-11-22 Thread Alex Marginean
Since at least some of the drivers relevant to LS1028A are now following DM, it's useful to have dm command enabled by default. Signed-off-by: Alex Marginean --- Changes in v2: fixed checkpatch warning configs/ls1028aqds_tfa_SECURE_BOOT_defconfig | 1 + configs/ls1028aqds_tfa_defconfig

Re: [U-Boot] [PATCH v4 4/5] doc: bindings: add mdio-handle property to ethernet nodes

2019-11-22 Thread Alexandru Marginean
On 11/21/2019 1:30 PM, Grygorii Strashko wrote: Some thought, which i think might help. - u-boot allows phy node not to have "reg" property. - phy_connect() will return first PHY discovered on the MDIO bus if addr<=0 So, if MDIO assignment per ethernet interface/slot is fixed DT can look l

Re: [U-Boot] [PATCH 1/1] arm: fix -march for ARM11

2019-11-22 Thread Linus Walleij
On Tue, Nov 19, 2019 at 11:16 PM Heinrich Schuchardt wrote: > -march v5 is invalid for GCC 9.2.1. ARM11 is an armv6 implementation. So > change the architecture flag for the compiler to armv6. > Cf. https://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html > > Suggested-by: Fabio Estevam > Signed-off-