Re: [U-Boot] [PATCH 11/30] riscv: fix use of incorrectly sized variables

2018-10-22 Thread Rick Chen
> > -static void _exit_trap(int code, uint epc, struct pt_regs *regs) > > +static void _exit_trap(ulong code, ulong epc, struct pt_regs *regs) > > { > > static const char * const exception_code[] = { > > "Instruction address misaligned", > > @@ -70,6 +70,6 @@ static void

Re: [U-Boot] [PATCH v3] sf: Add auto detection of 4-byte mode (vs standard 3-byte mode)

2018-10-22 Thread Rajat Srivastava
Hi Stefan > -Original Message- > From: Stefan Roese [mailto:s...@denx.de] > Sent: Monday, October 22, 2018 12:45 PM > To: Rajat Srivastava ; ja...@openedev.com; > simon.k.r.goldschm...@gmail.com > Cc: Ashish Kumar ; u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH v3] sf: Add auto

Re: [U-Boot] [PATCH 3/4] x86: theadorable-x86: Generate and pass root=PARTUUID instead of /dev/sdaX

2018-10-22 Thread Bin Meng
On Mon, Oct 22, 2018 at 8:08 PM Stefan Roese wrote: > > To enable the root device selection (kernel cmd-line) via PARTUUID, this > patch enables CMD_PART on all missing theadorable-x86 boards and > changes the default environment to generate the root=PARTUUID string > automatically. > > This

Re: [U-Boot] [PATCH 2/4] x86: theadorable-x86-common: Change pci hotplug cmdline parameters (again)

2018-10-22 Thread Bin Meng
On Mon, Oct 22, 2018 at 8:08 PM Stefan Roese wrote: > > This is needed for the PCIe hotplug to work correctly on some boards > with the newer Linux kernel versions. > > Signed-off-by: Stefan Roese > Cc: Bin Meng > --- > include/configs/theadorable-x86-common.h | 3 +-- > 1 file changed, 1

Re: [U-Boot] [PATCH 4/4] x86: theadorable-x86-xxx_defconfig: Move VGA BIOS to make room for U-Boot

2018-10-22 Thread Bin Meng
On Mon, Oct 22, 2018 at 8:09 PM Stefan Roese wrote: > > The build breaks because its not fitting the U-Boot binary into the ROM > image. So lets move VGA BIOS a bit to make room for the grown U-Boot > binary. > > Signed-off-by: Stefan Roese > --- >

Re: [U-Boot] [PATCH 1/4] x86: BayTrail: southcluster.asl: Change PCI 64 bit address range / region

2018-10-22 Thread Bin Meng
On Mon, Oct 22, 2018 at 8:08 PM Stefan Roese wrote: > > To allow bigger 64 bit prefetchable PCI regions in Linux, this patch > changes the base address and range of the ACPI area passed to Linux. > BayTrail can only physically access 36 bit of PCI address space. So > just chaning the range

Re: [U-Boot] [PATCH] x86: make X86IRQ per Kconfig switchable

2018-10-22 Thread Bin Meng
Hi Hannes, On Tue, Oct 23, 2018 at 5:12 AM Hannes Schmelzer wrote: > > This commit creates the freedom for boards to do nothing with the whole > IRQ stuff on x86 during u-boot. > > This is especially important on older systems which have many legacy irq > and no ACPI support within BIOS, they

Re: [U-Boot] [PATCH 6/6] efi_loader: bootmgr: run an EFI application of a given load option

2018-10-22 Thread AKASHI Takahiro
On Mon, Oct 22, 2018 at 07:58:29AM +0100, Alexander Graf wrote: > > > On 22.10.18 06:37, AKASHI Takahiro wrote: > > On Thu, Oct 18, 2018 at 10:46:36AM +0200, Alexander Graf wrote: > >> > >> > >> On 18.10.18 07:48, AKASHI Takahiro wrote: > >>> On Wed, Oct 17, 2018 at 10:43:22AM +0200, Alexander

Re: [U-Boot] [PATCH 09/30] riscv: move target selection into separate file

2018-10-22 Thread Rick Chen
> > Subject: Re: [PATCH 09/30] riscv: move target selection into separate file > > > > Hi Lukas, > > > > On Sat, Oct 20, 2018 at 6:10 AM Lukas Auer > > wrote: > > > > > > Move the target selection into a separate file (Kconfig.board) to > > > avoid clutter once we support more boards. > > > > > >

Re: [U-Boot] [PATCH 10/30] riscv: enable -fdata-sections

2018-10-22 Thread Rick Chen
> > On Sat, Oct 20, 2018 at 6:10 AM Lukas Auer > > wrote: > > > > > > Enable the -fdata-sections compiler option for RISC-V. Buildman > > > reports the binary size decrease from this as 8365.3 bytes. > > > > > > Signed-off-by: Lukas Auer > > > --- > > > > > > arch/riscv/config.mk | 3 ++- > > >

Re: [U-Boot] [PATCH v2 1/3] efi_loader: rework fdt handling in distro boot script

2018-10-22 Thread AKASHI Takahiro
On Mon, Oct 22, 2018 at 08:42:32AM +0100, Alexander Graf wrote: > > > On 22.10.18 08:22, AKASHI Takahiro wrote: > > On Mon, Oct 22, 2018 at 01:40:05PM +0900, AKASHI Takahiro wrote: > >> The current scenario for default UEFI booting, scan_dev_for_efi, has > >> several issues: > >> * load dtb

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

2018-10-22 Thread Tom Rini
On Tue, Oct 23, 2018 at 09:26:29AM +0800, Bin Meng wrote: > Hi Tom, > > On Tue, Oct 23, 2018 at 1:47 AM Tom Rini wrote: > > > > On Mon, Oct 22, 2018 at 10:17:18PM +0800, Bin Meng wrote: > > > > > Hi Tom, > > > > > > This fixed the QEMU x86_64 support which has been broken here and > > > here,

Re: [U-Boot] [PATCH 05/30] riscv: select CONFIG_PHYS_64BIT on RV64I systems

2018-10-22 Thread Rick Chen
> > On Sat, Oct 20, 2018 at 6:09 AM Lukas Auer > > wrote: > > > > > > CONFIG_PHYS_64BIT should be enabled on RV64I systems. Select it. > > > > > > Signed-off-by: Lukas Auer > > > --- > > > > > > arch/riscv/Kconfig | 1 + > > > 1 file changed, 1 insertion(+) > > > > > > > Reviewed-by: Bin Meng

Re: [U-Boot] [PATCH 04/30] riscv: rename CPU_RISCV_32/64 to match architecture names ARCH_RV32I/64I

2018-10-22 Thread Rick Chen
> > Hi Lukas, > > > > On Sat, Oct 20, 2018 at 6:09 AM Lukas Auer > > wrote: > > > > > > RISC-V defines the base integer instruction sets as RV32I and RV64I. > > > Rename CPU_RISCV_32 and CPU_RISCV_64 to ARCH_RV32I and ARCH_64I to > > > match > > > > ARCH_RV64I > > > > > this convention. > > > > >

Re: [U-Boot] FW: [PATCH 02/30] riscv: ignore device tree binaries

2018-10-22 Thread Rick Chen
> From: Bin Meng [mailto:bmeng...@gmail.com] > Sent: Monday, October 22, 2018 2:16 PM > To: Lukas Auer > Cc: U-Boot Mailing List; Rick Jian-Zhi Chen(陳建志) > Subject: Re: [PATCH 02/30] riscv: ignore device tree binaries > > Hi Lukas, > > On Sat, Oct 20, 2018 at 6:08 AM Lukas Auer > wrote: > > > >

Re: [U-Boot] FW: [PATCH 03/30] dts: riscv: update makefile to also clean the RISC-V dts directory

2018-10-22 Thread Rick Chen
> From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Lukas Auer > Sent: Saturday, October 20, 2018 6:07 AM > To: u-boot@lists.denx.de > Subject: [U-Boot] [PATCH 03/30] dts: riscv: update makefile to also clean the > RISC-V dts directory > > Signed-off-by: Lukas Auer > --- > >

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

2018-10-22 Thread Bin Meng
Hi Tom, On Tue, Oct 23, 2018 at 1:47 AM Tom Rini wrote: > > On Mon, Oct 22, 2018 at 10:17:18PM +0800, Bin Meng wrote: > > > Hi Tom, > > > > This fixed the QEMU x86_64 support which has been broken here and > > here, e.g.: built with newer version GCC compiler, EFI loader > > relocation, TSC as

Re: [U-Boot] FW: [PATCH 01/30] tools: .gitignore: add prelink-riscv

2018-10-22 Thread Rick Chen
> From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Lukas Auer > Sent: Saturday, October 20, 2018 6:07 AM > To: u-boot@lists.denx.de > Cc: Heinrich Schuchardt; Alexander Graf > Subject: [U-Boot] [PATCH 01/30] tools: .gitignore: add prelink-riscv > > Ignore tools/prelink-riscv. > >

Re: [U-Boot] latest kwboot

2018-10-22 Thread Chris Packham
On Tue, 23 Oct 2018, 10:33 AM Balanga Bar, wrote: > I'm trying to build kwboot on FreeBSD but the latest source I found is not > posix compliant, containing various Linuxisms... I did find an old version > here > https://github.com/LeMaker/u-boot/raw/master/tools/kwboot.c > > that I was able

Re: [U-Boot] [PATCH 05/27] virtio: Add net driver support

2018-10-22 Thread Joe Hershberger
On Sun, Sep 23, 2018 at 8:48 AM Bin Meng wrote: > > From: Tuomas Tynkkynen > > This adds virtio net device driver support. > > Signed-off-by: Tuomas Tynkkynen > Signed-off-by: Bin Meng > --- > > drivers/virtio/Kconfig | 7 ++ > drivers/virtio/Makefile | 1 + >

Re: [U-Boot] [PATCH 3/3] net: phy: aquantia: autodetect if firmware needs to be loaded

2018-10-22 Thread Joe Hershberger
On Tue, Sep 18, 2018 at 4:53 PM Jeremy Gebben wrote: > > If the phy reports a valid firmware version and doesn't indicate > a fault, skip loading the firmware. This allows the same image > to be used on boards that have firmware storage and those that do not. > > Signed-off-by: Jeremy Gebben

Re: [U-Boot] [PATCH 2/3] net: phy: aquantia: add firmware loading support

2018-10-22 Thread Joe Hershberger
On Tue, Sep 18, 2018 at 4:52 PM Jeremy Gebben wrote: > > Aquantia phys have firmware that can be loaded automatically > from storage directly attached to the phy or via MDIO commands. > Add support for loading firmware from either a file or a > raw location on an MMC device. > > Signed-off-by:

Re: [U-Boot] [PATCH 1/3] configs: migrate CONFIG_PHY_AQUANTIA to Kconfig

2018-10-22 Thread Joe Hershberger
On Tue, Sep 18, 2018 at 4:52 PM Jeremy Gebben wrote: > > The aquantia driver requires both CONFIG_PHY_GIGE and CONFIG_PHYLIB_10G. > > Signed-off-by: Jeremy Gebben Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] socfpga cyclone5 dts

2018-10-22 Thread Dalon L Westergreen
On Mon, 2018-10-22 at 22:48 +0200, Simon Goldschmidt wrote: > On 18.10.2018 23:04, Marek Vasut wrote: > > On 10/18/2018 10:20 PM, Simon Goldschmidt wrote: > > > Marek Vasut mailto:marek.va...@gmail.com>> > schrieb am Do., 18. Okt. 2018, 22:15: > > On 10/18/2018 09:28 PM, Simon Goldschmidt

Re: [U-Boot] [PATCH] net: fec_mxc: add support for i.MX8X

2018-10-22 Thread Joe Hershberger
On Mon, Oct 22, 2018 at 5:08 PM Fabio Estevam wrote: > > Hi Joe, > > On Mon, Oct 22, 2018 at 6:07 PM Joe Hershberger > wrote: > > > > On Thu, Oct 18, 2018 at 9:15 AM Anatolij Gustschin wrote: > > > > > > Add compatible property and enable the FEC ipg clock when probing > > > on i.MX8X. Add

Re: [U-Boot] [PATCH 3/3] net: phy: mscc: add support for VSC8574 PHY

2018-10-22 Thread Joe Hershberger
On Fri, Sep 14, 2018 at 7:51 AM Quentin Schulz wrote: > > The VSC8574 PHY is a 4-port PHY that is 10/100/1000BASE-T, 100BASE-FX, > 1000BASE-X and triple-speed copper SFP capable, can communicate with > the MAC via SGMII, QSGMII or 1000BASE-X, supports WOL, downshifting and > can set the blinking

Re: [U-Boot] [PATCH 2/3] net: phy: mscc: factorize part of config function for VSC8584

2018-10-22 Thread Joe Hershberger
On Fri, Sep 14, 2018 at 7:50 AM Quentin Schulz wrote: > > Part of the config is common between the VSC8584 and the VSC8574, so to > prepare for the upcoming support of VSC8574, use the phy_device.priv > pointer that will keep the function that holds code that is PHY-specific > and that should be

Re: [U-Boot] [PATCH] net: fec_mxc: add support for i.MX8X

2018-10-22 Thread Fabio Estevam
Hi Joe, On Mon, Oct 22, 2018 at 6:07 PM Joe Hershberger wrote: > > On Thu, Oct 18, 2018 at 9:15 AM Anatolij Gustschin wrote: > > > > Add compatible property and enable the FEC ipg clock when probing > > on i.MX8X. Add specific function for reading FEC clock rate via > > clock driver when

Re: [U-Boot] [PATCH 1/3] net: phy: mscc: add support for VSC8584 PHY

2018-10-22 Thread Joe Hershberger
On Fri, Sep 14, 2018 at 7:50 AM Quentin Schulz wrote: > > The VSC8584 PHY is a 4-port PHY that is 10/100/1000BASE-T, 100BASE-FX, > 1000BASE-X and triple-speed copper SFP capable, can communicate with the > MAC via SGMII, QSGMII or 1000BASE-X, supports downshifting and can set > the blinking

[U-Boot] latest kwboot

2018-10-22 Thread Balanga Bar
I'm trying to build kwboot on FreeBSD but the latest source I found is not posix compliant, containing various Linuxisms... I did find an old version here https://github.com/LeMaker/u-boot/raw/master/tools/kwboot.c that I was able to compile. Is there anything newer? Alternatively is anyone

[U-Boot] [NOT-FOR-MERGE-PATCH v6 5/5] net: ethernet: ti: introduce am654 gigabit eth switch subsystem driver

2018-10-22 Thread Grygorii Strashko
Add new driver for the TI AM65x SoC Gigabit Ethernet Switch subsystem (CPSW NUSS). It has two ports (internal and one external) and provides Ethernet packet communication for the device. CPSW NUSS features: the Reduced Gigabit Media Independent Interface (RGMII), Reduced Media Independent

[U-Boot] [PATCH v6 2/5] dma: add channels support

2018-10-22 Thread Grygorii Strashko
From: Álvaro Fernández Rojas This adds channels support for dma controllers that have multiple channels which can transfer data to/from different devices (enet, usb...). DMA channel API: dma_get_by_index() dma_get_by_name() dma_request() dma_free() dma_enable() dma_disable()

[U-Boot] [PATCH v6 3/5] sandbox: dma: add dma-uclass test

2018-10-22 Thread Grygorii Strashko
Add a sandbox DMA driver implementation (provider) and corresponding DM test. Signed-off-by: Grygorii Strashko --- arch/sandbox/dts/test.dts | 8 ++ configs/sandbox_defconfig | 3 + drivers/dma/Kconfig| 7 + drivers/dma/Makefile | 1 +

[U-Boot] [NOT-FOR-MERGE-PATCH v6 4/5] dma: ti: add driver to K3 UDMA

2018-10-22 Thread Grygorii Strashko
From: Vignesh R Add support for K3 AM65x UDMA with only support pktmode MEM_TO_MEM transfers and DEV_TO_MEM/MEM_TO_DEV through DMA channels. Signed-off-by: Peter Ujfalusi Signed-off-by: Vignesh R Signed-off-by: Grygorii Strashko --- drivers/dma/Kconfig |2 +

[U-Boot] [PATCH v6 0/5] dma: add channels support

2018-10-22 Thread Grygorii Strashko
Hi All, This series is the next try to add DMA channels support for DMA controllers which last version was posted by Álvaro Fernández Rojas [1]. i've kept version numbering. Comparing to the original post I've added few changes: - added possibility to pass DMA driver/channel's specific data per

[U-Boot] [PATCH v6 1/5] dma: move dma_ops to dma-uclass.h

2018-10-22 Thread Grygorii Strashko
From: Álvaro Fernández Rojas Move dma_ops to a separate header file, following other uclass implementations. While doing so, this patch also improves dma_ops documentation. Reviewed-by: Simon Glass Signed-off-by: Álvaro Fernández Rojas --- drivers/dma/dma-uclass.c | 2 +-

[U-Boot] [PATCH 1/1] efi_selftest: rename setup_ok

2018-10-22 Thread Heinrich Schuchardt
The variable name setup_ok might suggest a boolean with true indicating OK. Let's avoid the misleading name. %s/setup_ok/setup_status/g Suggested-by: Simon Glass Signed-off-by: Heinrich Schuchardt --- lib/efi_selftest/efi_selftest.c | 8 1 file changed, 4 insertions(+), 4

Re: [U-Boot] [PATCH 1/1] efi_selftest: do not write to linker generated array

2018-10-22 Thread Heinrich Schuchardt
On 10/22/2018 07:49 PM, Simon Glass wrote: > Hi Heinrich, > > On 18 October 2018 at 23:51, Heinrich Schuchardt wrote: >> Linker generated arrays may be stored in code sections of memory that are >> not writable. So let's allocate setup_ok as an array at runtime. >> >> This avoids an illegal

[U-Boot] [PATCH] x86: make X86IRQ per Kconfig switchable

2018-10-22 Thread Hannes Schmelzer
This commit creates the freedom for boards to do nothing with the whole IRQ stuff on x86 during u-boot. This is especially important on older systems which have many legacy irq and no ACPI support within BIOS, they get in trouble if, for example, u-boot does mask all the interrupts on a PIC.

Re: [U-Boot] [PATCH] net: fec_mxc: fix phy-reset-gpios logic

2018-10-22 Thread Anatolij Gustschin
Hi Joe, On Mon, 22 Oct 2018 21:02:22 + Joe Hershberger joe.hershber...@ni.com wrote: ... > This is already covered in https://patchwork.ozlabs.org/patch/979099/ > and https://patchwork.ozlabs.org/patch/979101/ Okay, thanks! -- Anatolij ___ U-Boot

Re: [U-Boot] [PATCH] net: fec_mxc: add support for i.MX8X

2018-10-22 Thread Joe Hershberger
On Thu, Oct 18, 2018 at 9:15 AM Anatolij Gustschin wrote: > > Add compatible property and enable the FEC ipg clock when probing > on i.MX8X. Add specific function for reading FEC clock rate via > clock driver when configuring MII speed register. Allow FEC_MXC > selection for i.MX8. > >

Re: [U-Boot] [PATCH] net: fec_mxc: fix phy-reset-gpios logic

2018-10-22 Thread Joe Hershberger
Hi Anatolij, On Thu, Oct 18, 2018 at 9:15 AM Anatolij Gustschin wrote: > > 'phy-reset-gpios' property is optional, don't return error when > it is missing. Read 'phy-reset-duration' property only if > 'phy-reset-gpios' exists. The binding defines the duration value > in milliseconds, so use

Re: [U-Boot] [PATCH 4/4] net: dm: fec: Obtain the transceiver type from the DT

2018-10-22 Thread Joe Hershberger
On Thu, Oct 4, 2018 at 1:03 PM Martin Fuzzey wrote: > > The DT property "phy-mode" already provides the transceiver type. > Use it so that we do not have to also set CONFIG_FEC_XCV_TYPE > > Signed-off-by: Martin Fuzzey Acked-by: Joe Hershberger ___

Re: [U-Boot] [U-Boot, 27/45] binman: Add a test for Intel reference code

2018-10-22 Thread Tom Rini
On Mon, Oct 01, 2018 at 12:22:31PM -0600, Simon Glass wrote: > Unfortunately the test was not included in the original implementation. > Add one. > > Signed-off-by: Simon Glass > Signed-off-by: Simon Glass Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [U-Boot] [PATCH 2/4] net: dm: fec: Fix phy-reset-duration clamping and defaults

2018-10-22 Thread Joe Hershberger
On Thu, Oct 4, 2018 at 1:02 PM Martin Fuzzey wrote: > > The DT binding says: > - phy-reset-duration : Reset duration in milliseconds. Should present > only if property "phy-reset-gpios" is available. Missing the property > will have the duration be 1 millisecond. Numbers greater than 1000

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

2018-10-22 Thread Tom Rini
On Mon, Oct 22, 2018 at 10:17:18PM +0800, Bin Meng wrote: > Hi Tom, > > This fixed the QEMU x86_64 support which has been broken here and > here, e.g.: built with newer version GCC compiler, EFI loader > relocation, TSC as early timer. Now all issues have been addressed and > we can finally turn

Re: [U-Boot] [PATCH 1/4] net: dm: fec: Fix time unit error in phy-reset-duration

2018-10-22 Thread Joe Hershberger
On Thu, Oct 4, 2018 at 1:02 PM Martin Fuzzey wrote: > > The DT binding says that phy-reset-duration is in ms, but the driver > currently uses udelay(). > > Switch to mdelay() to fix this. > > Signed-off-by: Martin Fuzzey Acked-by: Joe Hershberger ___

Re: [U-Boot] [PATCH 3/4] net: dm: fec: Support the phy-supply binding

2018-10-22 Thread Joe Hershberger
On Thu, Oct 4, 2018 at 1:03 PM Martin Fuzzey wrote: > > Configure the phy regulator if defined by the "phy-supply" DT phandle. > > Signed-off-by: Martin Fuzzey Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] socfpga cyclone5 dts

2018-10-22 Thread Simon Goldschmidt
On 18.10.2018 23:04, Marek Vasut wrote: On 10/18/2018 10:20 PM, Simon Goldschmidt wrote: Marek Vasut mailto:marek.va...@gmail.com>> schrieb am Do., 18. Okt. 2018, 22:15: On 10/18/2018 09:28 PM, Simon Goldschmidt wrote: > Hi Marek, Hi, > I was playing with updating the

Re: [U-Boot] [PATCH] miiphy: Add function to retrieve MDIO bus list head

2018-10-22 Thread Joe Hershberger
On Mon, Sep 17, 2018 at 11:45 PM Pankaj Bansal wrote: > > In upcoming freescale board LX2160AQDS, the MDIO bus is muxed. > i.e. same MDIO bus can be routed to eight different slots depending > on mux register settings. > > To support this mdio mux behavior, we add each MDIO bus mux as a >

Re: [U-Boot] [PATCH] cmd: mii: don't check address for 'device' subcommand

2018-10-22 Thread Joe Hershberger
On Fri, Aug 17, 2018 at 6:11 AM Hector Palacios wrote: > > All mii operations require a valid PHY address except the 'device' > command, which expects the PHY name rather than the address. > > Signed-off-by: Hector Palacios Acked-by: Joe Hershberger

Re: [U-Boot] [PATCH v2] net: phy: add TSE PCS support to dwmac-socfpga

2018-10-22 Thread Joe Hershberger
On Wed, Oct 17, 2018 at 4:46 AM Ooi, Joyce wrote: > > This adds support for TSE PCS (Triple Speed Ethernet Physical Coding > Sublayer) that uses SGMII adapter when the phy-mode in device tree is > set to sgmii. > > Signed-off-by: Ooi, Joyce > --- > arch/arm/mach-socfpga/include/mach/misc.h |

Re: [U-Boot] [PATCH v4 03/13] net: ftgmac100: convert to driver model

2018-10-22 Thread Joe Hershberger
On Tue, Oct 16, 2018 at 4:31 AM Cédric Le Goater wrote: > > The driver is based on the previous one and the code is only adapted > to fit the driver model. The support for the Faraday ftgmac100 > controller is the same with MAC and MDIO bus support for RGMII/RMII > modes. > > Configuration is

Re: [U-Boot] [PATCH v4 11/13] aspeed: Update ast2500 SoC DTS file to Linux v4.17-rc6 level

2018-10-22 Thread Joe Hershberger
On Tue, Oct 16, 2018 at 4:35 AM Cédric Le Goater wrote: > > This is a large update of the AST2500 SoC DTS file bringing it to the > level of commit 927c2fc2db19 : > > Author: Joel Stanley > Date:Sat Jun 2 01:18:53 2018 -0700 > > ARM: dts: aspeed: Fix hwrng register address

Re: [U-Boot] [PATCH] ARM: mvebu: dts: add Clearfog GT-8K

2018-10-22 Thread Chris Packham
On Fri, 19 Oct 2018, 12:55 AM Baruch Siach, wrote: > From: Rabeeh Khoury > > The SolidRun Clearfog GT-8K is based on Armada 8040. > > https://wiki.solid-run.com/doku.php?id=products:a8040:clearfoggt8k > > Signed-off-by: Rabeeh Khoury > Signed-off-by: Baruch Siach > --- >

Re: [U-Boot] socfpga cyclone5 dts

2018-10-22 Thread Simon Goldschmidt
On 18.10.2018 23:04, Marek Vasut wrote: On 10/18/2018 10:20 PM, Simon Goldschmidt wrote: Marek Vasut mailto:marek.va...@gmail.com>> schrieb am Do., 18. Okt. 2018, 22:15: On 10/18/2018 09:28 PM, Simon Goldschmidt wrote: > Hi Marek, Hi, > I was playing with updating the

Re: [U-Boot] [PATCH v4 07/13] net: ftgmac100: handle timeouts when transmitting

2018-10-22 Thread Joe Hershberger
Hi Cedric, On Tue, Oct 16, 2018 at 4:32 AM Cédric Le Goater wrote: > > Signed-off-by: Cédric Le Goater > Reviewed-by: Joel Stanley > --- > > Changes since v3 : > > - introduced a ftgmac100_wait_for_txdone() function similar to the >wait_for_bit_*() macros. > > drivers/net/ftgmac100.c |

Re: [U-Boot] [PATCH 1/4] nfs: convert supported_nfs_versions bitfield to an enum

2018-10-22 Thread Simon Goldschmidt
On 22.10.2018 20:53, Joe Hershberger wrote: Hi Christian, On Mon, Oct 1, 2018 at 8:57 AM Christian Gmeiner wrote: Hi Wolfgang In message <20181001094646.11539-1-christian.gmei...@gmail.com> you wrote: From: Thomas RIENOESSL Prep. work to support nfs v1. Hm... as you are putting efforts

Re: [U-Boot] [PATCH v2] net: Add MT76xx ethernet driver

2018-10-22 Thread Joe Hershberger
On Mon, Oct 22, 2018 at 9:31 AM Stefan Roese wrote: > > Hi Joe, > > On 15.10.18 23:45, Joe Hershberger wrote: > > On Mon, Oct 8, 2018 at 8:50 AM Stefan Roese wrote: > >> > >> This patch adds ethernet support for the Mediatek MT76xx SoC, including > >> a minimum setup of the integrated switch.

Re: [U-Boot] driver: net: fsl-mc: Modify the dpmac link detection method

2018-10-22 Thread Joe Hershberger
Hi Pankaj, https://patchwork.ozlabs.org/patch/981670/ was applied to http://git.denx.de/?p=u-boot/u-boot-net.git Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] driver: net: fsl-mc: Add support of multiple phys for dpmac

2018-10-22 Thread Joe Hershberger
Hi Pankaj, https://patchwork.ozlabs.org/patch/981671/ was applied to http://git.denx.de/?p=u-boot/u-boot-net.git Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] driver: net: fsl-mc: fix error handing in init_phy

2018-10-22 Thread Joe Hershberger
Hi Pankaj, https://patchwork.ozlabs.org/patch/981669/ was applied to http://git.denx.de/?p=u-boot/u-boot-net.git Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] driver: net: fsl-mc: initialize dpmac irrespective of phy

2018-10-22 Thread Joe Hershberger
Hi Pankaj, https://patchwork.ozlabs.org/patch/981672/ was applied to http://git.denx.de/?p=u-boot/u-boot-net.git Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] driver: net: fsl-mc: remove unused strcture elements

2018-10-22 Thread Joe Hershberger
Hi Pankaj, https://patchwork.ozlabs.org/patch/981668/ was applied to http://git.denx.de/?p=u-boot/u-boot-net.git Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] driver: net: fsl-mc: modify the label name

2018-10-22 Thread Joe Hershberger
Hi Pankaj, https://patchwork.ozlabs.org/patch/981665/ was applied to http://git.denx.de/?p=u-boot/u-boot-net.git Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] [PATCH] x86: make the LAPIC / IOAPIC construct switchable with Kconfig

2018-10-22 Thread Hannes Schmelzer
There are still systems running which do not have any LAPIC or even IOAPIC, furthermore the MSRs for that aren't existing and the systems are crashing on trying setup LAPIC. So this commit makes the APIC stuff able to switch off for those boards which dont' have a LAPIC / IOAPIC. Signed-off-by:

Re: [U-Boot] [RFC] fit: include uncompression into fit_image_load

2018-10-22 Thread Simon Goldschmidt
On 22.10.2018 19:49, Simon Glass wrote: Hi Simon, On 19 October 2018 at 00:33, Simon Goldschmidt wrote: On 19.10.2018 05:25, Simon Glass wrote: Hi Simon, On 17 October 2018 at 03:41, Simon Goldschmidt wrote: On Wed, Oct 17, 2018 at 8:54 AM Alexander Graf wrote: On 16.10.18 21:33,

Re: [U-Boot] [PATCH 1/4] nfs: convert supported_nfs_versions bitfield to an enum

2018-10-22 Thread Joe Hershberger
Hi Christian, On Mon, Oct 1, 2018 at 8:57 AM Christian Gmeiner wrote: > > Hi Wolfgang > > > > > In message <20181001094646.11539-1-christian.gmei...@gmail.com> you wrote: > > > From: Thomas RIENOESSL > > > > > > Prep. work to support nfs v1. > > > > Hm... as you are putting efforts into NFS

Re: [U-Boot] Pull request: u-boot-staging

2018-10-22 Thread Anatolij Gustschin
Hi Jagan, On Mon, 22 Oct 2018 23:56:14 +0530 Jagan Teki ja...@openedev.com wrote: >On 21/10/18 1:50 AM, Anatolij Gustschin wrote: >> On Sat, 20 Oct 2018 15:43:48 -0400 >> Tom Rini tr...@konsulko.com wrote: >> ... >>> These all look like things that should go via the sunxi tree, and Jagan >>>

Re: [U-Boot] [PATCH 3/3] pwm: sunxi: choose best prescaler to improve PWM resolution

2018-10-22 Thread Vasily Khoruzhick
On Mon, Oct 22, 2018 at 11:29 AM Jagan Teki wrote: > > On Wed, Oct 17, 2018 at 10:28 AM Vasily Khoruzhick wrote: > > > > Choose best prescaler to improve PWM resolution. Without this change > > driver chooses first prescaler that gives us period value within > > range, but it could be not the

Re: [U-Boot] [PATCH v11 3/6] sandbox: smbios: Update to support sandbox

2018-10-22 Thread Alexander Graf
> Am 22.10.2018 um 18:49 schrieb Simon Glass : > > Hi Alex, > >> On 19 October 2018 at 01:27, Alexander Graf wrote: >> >> >>> On 19.10.18 05:25, Simon Glass wrote: >>> Hi Alex, >>> On 16 October 2018 at 06:55, Alexander Graf wrote: > On 15.10.18 16:17, Simon Glass

Re: [U-Boot] [PATCH 3/3] pwm: sunxi: choose best prescaler to improve PWM resolution

2018-10-22 Thread Jagan Teki
On Wed, Oct 17, 2018 at 10:28 AM Vasily Khoruzhick wrote: > > Choose best prescaler to improve PWM resolution. Without this change > driver chooses first prescaler that gives us period value within > range, but it could be not the best one. This commit need to elaborate about the real issue, ie

Re: [U-Boot] Pull request: u-boot-staging

2018-10-22 Thread Jagan Teki
On 21/10/18 1:50 AM, Anatolij Gustschin wrote: On Sat, 20 Oct 2018 15:43:48 -0400 Tom Rini tr...@konsulko.com wrote: ... These all look like things that should go via the sunxi tree, and Jagan is fairly active. I'm curious, why did you pick these up presently? I got this series on Tuesday

Re: [U-Boot] [PATCH v3 3/5] sunxi: DT: A64: update device tree file for Allwinner A64 SoC

2018-10-22 Thread Jagan Teki
On Thu, Oct 18, 2018 at 11:30 AM Vasily Khoruzhick wrote: > > Updates the device tree file from the the Linux tree as of v4.19-rc4, > exactly Linux commit: > > commit 7876320f8880 (tag: v4.19-rc4) > Author: Linus Torvalds > Date: Sun Sep 16 11:52:37 2018 -0700 > > Linux 4.19-rc4 > >

Re: [U-Boot] [PATCH] syscon: reset node list syscon_list after relocation

2018-10-22 Thread Patrick DELAUNAY
Hi Simon, > From: s...@google.com On Behalf Of Simon Glass > Sent: vendredi 19 octobre 2018 05:25 > > Hi Patrick, > > On 12 October 2018 at 09:26, Patrick Delaunay > wrote: > > Reset the list head after the reallocation because the list > > syscon_list use allocated pointer and they are no

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

2018-10-22 Thread Tom Rini
On Mon, Oct 22, 2018 at 11:49:36AM -0600, Simon Glass wrote: > Hi Tom, > > On 22 October 2018 at 11:47, Tom Rini wrote: > > > > On Mon, Oct 22, 2018 at 10:17:18PM +0800, Bin Meng wrote: > > > > > Hi Tom, > > > > > > This fixed the QEMU x86_64 support which has been broken here and > > > here,

Re: [U-Boot] [PATCH 1/1] efi_selftest: do not write to linker generated array

2018-10-22 Thread Simon Glass
Hi Heinrich, On 18 October 2018 at 23:51, Heinrich Schuchardt wrote: > Linker generated arrays may be stored in code sections of memory that are > not writable. So let's allocate setup_ok as an array at runtime. > > This avoids an illegal memory access observed in the sandbox. > > Reported-by:

Re: [U-Boot] [PATCH v11 3/6] sandbox: smbios: Update to support sandbox

2018-10-22 Thread Simon Glass
Hi Alex, On 19 October 2018 at 01:27, Alexander Graf wrote: > > > On 19.10.18 05:25, Simon Glass wrote: >> Hi Alex, >> >> On 16 October 2018 at 06:55, Alexander Graf wrote: >>> >>> >>> On 15.10.18 16:17, Simon Glass wrote: At present this code casts addresses to pointers so cannot be used

Re: [U-Boot] [RFC] fit: include uncompression into fit_image_load

2018-10-22 Thread Simon Glass
Hi Simon, On 19 October 2018 at 00:33, Simon Goldschmidt wrote: > On 19.10.2018 05:25, Simon Glass wrote: >> >> Hi Simon, >> >> On 17 October 2018 at 03:41, Simon Goldschmidt >> wrote: >>> >>> On Wed, Oct 17, 2018 at 8:54 AM Alexander Graf wrote: On 16.10.18 21:33, Simon

Re: [U-Boot] [PATCH 2/4] cmd: adc: add info on channel mask

2018-10-22 Thread Simon Glass
Hi Fabrice, On 19 October 2018 at 01:40, Fabrice Gasnier wrote: > > On 10/19/2018 05:25 AM, Simon Glass wrote: > > Hi Fabrice, > > > > On 11 October 2018 at 10:00, Fabrice Gasnier wrote: > >> Enhance adc info command to report also the channel mask. > >> > >> Signed-off-by: Fabrice Gasnier >

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

2018-10-22 Thread Simon Glass
Hi Tom, On 22 October 2018 at 11:47, Tom Rini wrote: > > On Mon, Oct 22, 2018 at 10:17:18PM +0800, Bin Meng wrote: > > > Hi Tom, > > > > This fixed the QEMU x86_64 support which has been broken here and > > here, e.g.: built with newer version GCC compiler, EFI loader > > relocation, TSC as

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

2018-10-22 Thread Tom Rini
On Mon, Oct 22, 2018 at 10:17:18PM +0800, Bin Meng wrote: > Hi Tom, > > This fixed the QEMU x86_64 support which has been broken here and > here, e.g.: built with newer version GCC compiler, EFI loader > relocation, TSC as early timer. Now all issues have been addressed and > we can finally turn

Re: [U-Boot] [U-Boot, 1/2] configs: sama5d2_ptc_ek: add default bootargs for NAND defconfig

2018-10-22 Thread Tom Rini
On Mon, Oct 08, 2018 at 10:36:59AM +0300, Eugen Hristev wrote: > Add the default kernel bootargs according to our NAND flash demo layout: > http://www.at91.com/linux4sam/bin/view/Linux4SAM/Sama5d2PtcEKMainPage#NAND_Flash_demo_Memory_map > > Signed-off-by: Eugen Hristev Applied to

Re: [U-Boot] arm: udoo: Convert to distro config

2018-10-22 Thread Tom Rini
On Sat, Oct 13, 2018 at 12:54:01PM +, Meul, Dirk wrote: > Instead of keeping a custom environment, use a more generic approach > by switching to distro config. > > Signed-off-by: Dirk Meul > Reviewed-by: Fabio Estevam Applied to u-boot/master, thanks! -- Tom signature.asc Description:

Re: [U-Boot] [U-Boot, 2/2] configs: sama5d2_ptc_ek: add default bootargs for MMC defconfig

2018-10-22 Thread Tom Rini
On Mon, Oct 08, 2018 at 10:37:00AM +0300, Eugen Hristev wrote: > Add default bootargs for the MMC defconfig to use SD-Card as rootfs > > Signed-off-by: Eugen Hristev Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [U-Boot] arm: ti: boot: Remove environment partition

2018-10-22 Thread Tom Rini
On Thu, Oct 18, 2018 at 10:47:17PM +0300, Sam Protsenko wrote: > Remove "environment" partition and do not read it when booting Android > from eMMC. We don't use this partition anymore, so this is just an > unintentional leftover. > > Earlier we were reading dtb file from "environment" partition

Re: [U-Boot] ARM: omap3_logic: Add NOR Flash Support for SOM-LV

2018-10-22 Thread Tom Rini
On Sun, Oct 14, 2018 at 03:53:17PM -0500, Adam Ford wrote: > The DM37 and OMAP35 SOM-LV SOM-LV products both support a NOR > flash part connected to CS2 in addition to the NAND part on CS0. > This patch setups the GPMC timings for the MT28 NOR Flash and > enables the CFI-Flash driver now that the

Re: [U-Boot] configs: sama5d27_som1_ek: enable w1 and overlay for mmc1 defconfig

2018-10-22 Thread Tom Rini
On Mon, Oct 08, 2018 at 10:12:56AM +0300, Eugen Hristev wrote: > Enable onewire support and commands, fdt overlay for the mmc1 defconfig. > > Signed-off-by: Eugen Hristev Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [U-Boot] [U-Boot,1/1] test: overlay: add missing include

2018-10-22 Thread Tom Rini
On Thu, Oct 11, 2018 at 02:16:46AM +0200, Heinrich Schuchardt wrote: > Compiling the overlay unit test fails with odroid-c2_defconfig showing > errors like: > > test/overlay/cmd_ut_overlay.c:29:8: > error: unknown type name ‘fdt32_t’ > > Add the missing include. > > Signed-off-by:

Re: [U-Boot] configs: at91: sam9x5: added FIT and iminfo support

2018-10-22 Thread Tom Rini
On Mon, Oct 08, 2018 at 09:55:19AM +0300, Eugen Hristev wrote: > Enabled FIT image support and iminfo command for FIT information. > > Signed-off-by: Eugen Hristev Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [U-Boot] configs: at91: sama5: enable CMD_IMI

2018-10-22 Thread Tom Rini
On Mon, Oct 08, 2018 at 10:03:01AM +0300, Eugen Hristev wrote: > Enable iminfo command with CONFIG_CMD_IMI > > Signed-off-by: Eugen Hristev Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature ___ U-Boot mailing list

Re: [U-Boot] ARM: omap3logic: Specify DM serial driver as omap_serial

2018-10-22 Thread Tom Rini
On Sun, Oct 07, 2018 at 05:42:42PM -0500, Adam Ford wrote: > With the new omap_serial driver, this patch uses this instead > from the former ns16550_serial driver. Even though the > omap_serial driver is essentially the same. > > Signed-off-by: Adam Ford > > diff --git

Re: [U-Boot] ARM: omap3logic: Fix MMC name

2018-10-22 Thread Tom Rini
On Sun, Oct 07, 2018 at 05:47:50PM -0500, Adam Ford wrote: > In my haste to migrate SPL to DM, I copied the wrong name. > While it really doesn't matter, I'd prefer the name to match > the board, so am335x_mmc0 is now called omap3_logic_mmc0 > > Signed-off-by: Adam Ford > > diff --git

Re: [U-Boot] configs: sama5d2_xplained: enable w1 and overlay for emmc defconfig

2018-10-22 Thread Tom Rini
On Mon, Oct 08, 2018 at 10:20:04AM +0300, Eugen Hristev wrote: > Enable onewire support and commands, fdt overlay for the emmc defconfig. > > Signed-off-by: Eugen Hristev Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [U-Boot] watchdog: aspeed: restore default value of reset_mask

2018-10-22 Thread Tom Rini
On Tue, Oct 16, 2018 at 01:57:11PM +0200, Cédric Le Goater wrote: > This is required for the current Linux kernel to reboot. It should also > probably be fixed in Linux. > > Signed-off-by: Cédric Le Goater > Reviewed-by: Simon Glass Applied to u-boot/master, thanks! -- Tom signature.asc

Re: [U-Boot] nand: atmel: Initialize pmecc smu with correct size

2018-10-22 Thread Tom Rini
On Mon, Oct 08, 2018 at 02:27:44AM -0700, Bin Meng wrote: > Currently in pmecc_get_sigma(), the code tries to clear the memory > pointed by smu with wrong size 'sizeof(int16_t) * ARRAY_SIZE(smu)'. > Since smu is actually a pointer, not an array, so ARRAY_SIZE(smu) > does not generate correct size

Re: [U-Boot] board: at91sam9x5: add environment var for cpu type

2018-10-22 Thread Tom Rini
On Mon, Oct 08, 2018 at 09:54:27AM +0300, Eugen Hristev wrote: > When booting and CPU is detected from cpuid, we also need an environment > variable that will be used in boot commands to load the proper devicetree. > > Signed-off-by: Eugen Hristev Applied to u-boot/master, thanks! -- Tom

Re: [U-Boot] ARM: omap3logic: Encapsulate the MUSB functions in check for DM

2018-10-22 Thread Tom Rini
On Sun, Oct 07, 2018 at 05:39:29PM -0500, Adam Ford wrote: > With the DM_USB working for USB host features, encapsulate the > USB gadget initialization in a precomiler check. If DM is enabled, > we don't need to manually initialize the MUSB driver. > > Signed-off-by: Adam Ford > > diff --git

Re: [U-Boot] ARM: omap3_logic.c: Optimize DDR timings based on OMAP35 or 36/37

2018-10-22 Thread Tom Rini
On Sun, Oct 07, 2018 at 09:20:45AM -0500, Adam Ford wrote: > The default timings are assumming an OMAP36 / AM37 / DM37, but > the OMAP35 controller is a bit slower, so DDR may operate out of > spec when under stress. This patch checks the processor type and > sets the DDR timings according to

Re: [U-Boot] [U-Boot, V2] ARM: da850evm_direct_nor: Remove DM_I2C_COMPAT

2018-10-22 Thread Tom Rini
On Sun, Oct 07, 2018 at 08:39:21AM -0500, Adam Ford wrote: > The da850evm does not need this enabled, so this removes a > notice that appears during compile time that says > "Please remove" > > Signed-off-by: Adam Ford Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP

  1   2   3   >