Re: [U-Boot] [PATCH 1/1] arm: sunxi: Add NULL pointer check

2018-12-16 Thread André Przywara
On 05/12/2018 15:46, Maxime Ripard wrote: Hi, > On Wed, Dec 05, 2018 at 02:27:57PM +0200, Stefan Mavrodiev wrote: >> Current driver doesn't check if the destination pointer is NULL. >> This cause the data from the FIFO to be stored inside the internal >> SDRAM ( address 0 ). >> >> The patch add

[U-Boot] [PATCH v4 02/12] m68k: architecture changes to support fdt

2018-12-16 Thread Angelo Dureghello
This patch adds fdt support to the m68k architecture. Reviewed-by: Simon Glass Signed-off-by: Angelo Dureghello --- Changes for v2: - add OF_CONTROL, DM and DM_SERIAL as default config options for all cpu families Changes for v3: - none Changes for v4: - bisectability, moved

[U-Boot] [PATCH v4 03/12] m68k: add initial dts files for all m68k boards

2018-12-16 Thread Angelo Dureghello
This patch adds basic dts files for all the m68k boards. Reviewed-by: Simon Glass Signed-off-by: Angelo Dureghello --- Changes for v2: - new patch Changes for v3: - none Changes for v4: - none --- arch/m68k/dts/M5208EVBE.dts | 22 +++ arch/m68k/dts/M52277EVB.dts

Re: [U-Boot] [PATCH v4 6/7] MSCC: add board support for the Luton based evaluation board

2018-12-16 Thread Gregory CLEMENT
Hi Daniel, On sam., déc. 15 2018, Daniel Schwierzeck wrote: > Am 14.12.18 um 16:16 schrieb Gregory CLEMENT: >> Adding the support for the Luton boards PCB91 which share common code with >> the Ocelots boards, including board code, device tree and configuration. >> >> Signed-off-by: Gregory

Re: [U-Boot] [PATCH 1/1] efi_loader: efi_guid_t must be 64-bit aligned

2018-12-16 Thread Ard Biesheuvel
On Sat, 15 Dec 2018 at 22:40, Heinrich Schuchardt wrote: > > The UEFI Specification Version 2.7 Errata A defines: > > "EFI_GUID > 128-bit buffer containing a unique identifier value. > Unless otherwise specified, aligned on a 64-bit boundary." > > Before this patch efi_guid_t was 8-bit aligned. >

[U-Boot] [PATCH v2 1/1] efi_loader: efi_guid_t must be 64-bit aligned

2018-12-16 Thread Heinrich Schuchardt
The UEFI Specification Version 2.7 Errata A defines: "EFI_GUID 128-bit buffer containing a unique identifier value. Unless otherwise specified, aligned on a 64-bit boundary." Before this patch efi_guid_t was 8-bit aligned. Signed-off-by: Heinrich Schuchardt Acked-by: Ard Biesheuvel --- v2

[U-Boot] [PATCH v4 01/12] m68k: add basic set of devicetrees

2018-12-16 Thread Angelo Dureghello
This patch adds a basic group of devicetrees, one for each cpu family, including actually just uart and dspi devices, since these are the drivers supporting devicetree (support added in this patch-set). Acked-by: Jagan Teki Signed-off-by: Angelo Dureghello --- Changes for v2: - add mcf54xx.dtsi

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

2018-12-16 Thread Philipp Tomsich
at: git://git.denx.de/u-boot-rockchip.git tags/for-master-20181216 for you to fetch changes up to e11ef3d26eff8d14a11f89b9bdc20471b425d2d7: ARM: rockchip: Add rv1108-elgin-r1 board support (2018-12-16 01:30:11 +0100) Improvements

[U-Boot] [PATCH v4 06/12] drivers: spi: cf_spi: add Kconfig option

2018-12-16 Thread Angelo Dureghello
This patch adds cf_spi DM Kconfig option. Reviewed-by: Simon Glass Signed-off-by: Angelo Dureghello --- Changes for v2: - new patch Changes for v3: - re-put SOFT_SPI in place, options are out of alphabetical order Changes for v4: - none --- drivers/spi/Kconfig | 6 ++ 1 file changed, 6

[U-Boot] [PATCH v4 07/12] drivers: spi: cf_spi: convert to driver model

2018-12-16 Thread Angelo Dureghello
Converting to driver model and removes non-dm code. Reviewed-by: Simon Glass Signed-off-by: Angelo Dureghello --- Changes for v2: - removed non DM code part - add default setup of CTAR registers - add DT CTAR register setup support Changes for v3: - changed commit head - removed spi_slave

[U-Boot] [PATCH v4 10/12] configs: remove CONFIG_SYS_DSPI_XX references

2018-12-16 Thread Angelo Dureghello
This patch removes CONFIG_SYS_DSPI_XX options from include/configs "m68k" .h board files, since CTAR registers are now set with default values in the cf_spi driver initialization, and configurable by devicetree. Note, these options cannot be totally removed from the whitelist, since still used

[U-Boot] [PATCH 2/2] dm: video: lcd: MIGRATION: Add migration plan for video

2018-12-16 Thread Simon Glass
Add a migration plan for video which is an important subsystem in U-Boot. Signed-off-by: Simon Glass --- Makefile | 10 ++ doc/driver-model/MIGRATION.txt | 8 2 files changed, 18 insertions(+) diff --git a/Makefile b/Makefile index

[U-Boot] [PATCH 1/2] dm: pci: MIGRATION: Add migration plan for PCI

2018-12-16 Thread Simon Glass
Add a migration plan for PCI which is an important subsystem in U-Boot. Signed-off-by: Simon Glass --- Makefile | 10 ++ doc/driver-model/MIGRATION.txt | 10 ++ 2 files changed, 20 insertions(+) diff --git a/Makefile b/Makefile index

Re: [U-Boot] ARM: rockchip: Add rv1108-elgin-r1 board support

2018-12-16 Thread Philipp Tomsich
> Add the initial support for Elgin R1 board, which is based on the > RV1108 SoC and has the following features currently supported in > U-Boot: > > - UART > - eMMC > - USB > > Signed-off-by: Otavio Salvador > Reviewed-by: Philipp Tomsich > --- > > arch/arm/dts/Makefile |

Re: [U-Boot] [U-Boot, v3] rockchip: rk3288-evb: dts: remove 'vmmc' from emmc node

2018-12-16 Thread Philipp Tomsich
> This is a sync with kernel mainline dts. > > The U-Boot eMMC does not need to care about the power for Rockchip > SoCs, because if the board is using eMMC, the power will default on > (for bootrom), so the 'vmmc', 'vqmmc' is only useful for SD in U-Boot. > > Signed-off-by: Kever Yang >

[U-Boot] [PATCH v4 12/12] m68k: move dspi bus control functions into cf_spi.c driver

2018-12-16 Thread Angelo Dureghello
This patches move dspi bus-related operations into more proper location, to avoid the driver to declares them as externs. Signed-off-by: Angelo Dureghello --- Changes for v4: - new patch --- arch/m68k/cpu/mcf5227x/cpu_init.c | 65 +++--- arch/m68k/cpu/mcf5445x/cpu_init.c | 142

[U-Boot] [PATCH v4 09/12] drivers: serial: mcfuart: add DT support

2018-12-16 Thread Angelo Dureghello
This patch adds devicetree support to the mcfuart.c driver and removes non DM code. Reviewed-by: Simon Glass Signed-off-by: Angelo Dureghello --- Changes for v2: - remove non DM code Changes for v3: - none Changes for v4: - none --- drivers/serial/Kconfig | 8 +++ drivers/serial/mcfuart.c

[U-Boot] [PATCH v4 05/12] configs: enable use of DT for all m68k boards

2018-12-16 Thread Angelo Dureghello
Enable DT usage for all m68k boards. To provide a working single binary, the dts has been kept as embedded. Signed-off-by: Angelo Dureghello --- Changes for v2: - new patch Changes for v3: - none Changes for v4: - remove CONFIG_OF_EMBED=y --- configs/M5208EVBE_defconfig | 1 +

Re: [U-Boot] [U-Boot, v1] rockchip: rk3399-puma: Remove obsolete DTS node 'vcc5v0_host'.

2018-12-16 Thread Philipp Tomsich
> vcc5v0_host and usbhub_enable share gpio4 RK_PA3, > which is a problem during probing (the second probe > will trigger a -EBUSY, when trying to get the gpio handle). > > An analysis of the situation shows, that both regulators > are actually describing the same supply. > > This patch removes

Re: [U-Boot] [PATCH 2/2] dm: video: lcd: MIGRATION: Add migration plan for video

2018-12-16 Thread Simon Goldschmidt
On Sun, Dec 16, 2018 at 9:30 PM Simon Glass wrote: > > Add a migration plan for video which is an important subsystem in U-Boot. > > Signed-off-by: Simon Glass > --- > > Makefile | 10 ++ > doc/driver-model/MIGRATION.txt | 8 > 2 files changed, 18

[U-Boot] [PATCH v4] zynq-gem: Use appropriate cache flush/invalidate for RX and TX

2018-12-16 Thread Stefan Theil
The cache was only flushed before *transmitting* packets, but not when receiving them, leading to an issue where new packets were handed to the receive handler with old contents in cache. This only happens when a lot of packets are received without sending packages every now and then. Also

Re: [U-Boot] [PATCH v2 0/2] SiFive UART support

2018-12-16 Thread Rick Chen
Hi Anup Anup Patel 於 2018年12月17日 週一 下午12:15寫道: > > On Mon, Dec 17, 2018 at 7:21 AM Rick Chen wrote: > > > > Hi Anup > > > > > > From: Anup Patel [mailto:a...@brainfault.org] > > > > Sent: Friday, December 14, 2018 5:23 PM > > > > To: Rick Jian-Zhi Chen(陳建志); Bin Meng; Lukas Auer > > > > Cc:

Re: [U-Boot] [PATCH v5 0/4] Stratix10 FPGA reconfiguration support

2018-12-16 Thread Ang, Chee Hong
On Thu, 2018-11-29 at 12:25 +0100, Marek Vasut wrote: > On 11/29/2018 10:40 AM, chee.hong@intel.com wrote: > > > > From: "Ang, Chee Hong" > > > > Summary of v5 changes: > > - Patch 1/4, 2/4 and 4/4 are unchanged > > - Patch 3/4: > >   - add arch/arm/mach-socfpga/fpga_device.c for

Re: [U-Boot] [PATCH 1/1] arm: sunxi: Add NULL pointer check

2018-12-16 Thread Stefan Mavrodiev
On 12/14/18 5:55 PM, Maxime Ripard wrote: On Fri, Dec 14, 2018 at 04:14:31PM +0200, Stefan Mavrodiev wrote: On 12/14/18 11:25 AM, Maxime Ripard wrote: On Thu, Dec 13, 2018 at 09:12:57AM +0200, Stefan Mavrodiev wrote: On 12/6/18 8:41 AM, Stefan Mavrodiev wrote: On 12/5/18 5:46 PM, Maxime

Re: [U-Boot] [PATCH v4] zynq-gem: Use appropriate cache flush/invalidate for RX and TX

2018-12-16 Thread Bin Meng
Hi Stefan, On Mon, Dec 17, 2018 at 3:49 PM Stefan Theil wrote: > > The cache was only flushed before *transmitting* packets, but not > when receiving them, leading to an issue where new packets were > handed to the receive handler with old contents in cache. This > only happens when a lot of

Re: [U-Boot] [PATCH v2 08/11] samsung: Drop board_enable_audio_codec()

2018-12-16 Thread Lukasz Majewski
On Sun, 16 Dec 2018 19:36:35 -0700 Simon Glass wrote: > This function is not needed now since the audio codecs have been > converted to proper drivers. The codec-enable GPIO is handled there. > > Signed-off-by: Simon Glass > --- > > Changes in v2: None > > board/samsung/common/exynos5-dt.c

Re: [U-Boot] [PATCH v5 3/4] arm: socfpga: stratix10: Add Stratix10 FPGA into FPGA device table

2018-12-16 Thread Ang, Chee Hong
On Thu, 2018-11-29 at 12:28 +0100, Marek Vasut wrote: > On 11/29/2018 10:40 AM, chee.hong@intel.com wrote: > > > > From: "Ang, Chee Hong" > > > > Enable 'fpga' command in u-boot. User will be able to use the FPGA > > command to program the FPGA on Stratix10 SoC. > > > > Signed-off-by: Ang,

Re: [U-Boot] [PATCH v2 01/11] odroid: Resync defconfigs

2018-12-16 Thread Lukasz Majewski
On Sun, 16 Dec 2018 19:36:28 -0700 Simon Glass wrote: > Sync defconfigs again since USB_STORAGE is the default on these > boards. > > Signed-off-by: Simon Glass > --- > > Changes in v2: > - Add new patch to resync defconfigs for odroid > > configs/odroid-xu3_defconfig | 1 - >

Re: [U-Boot] [PATCH v2 02/11] Convert CONFIG_BOARD_TYPES to Kconfig

2018-12-16 Thread Lukasz Majewski
On Sun, 16 Dec 2018 19:36:29 -0700 Simon Glass wrote: > This converts the following to Kconfig: >CONFIG_BOARD_TYPES > > Signed-off-by: Simon Glass > --- > > Changes in v2: > - Remove stranded comments in the header files > > common/Kconfig | 8 >

Re: [U-Boot] [PATCH v2 10/11] fdt: samsung: Drop unused fdt_compat_id values

2018-12-16 Thread Lukasz Majewski
On Sun, 16 Dec 2018 19:36:37 -0700 Simon Glass wrote: > This enum still exists but we can shrink it a little based on recent > driver-model conversions with samsung. Update it to remove unused > items. > > Signed-off-by: Simon Glass > --- > > Changes in v2: None > > include/fdtdec.h | 6

Re: [U-Boot] [PATCH v2 11/11] fdt: tegra: Drop COMPAT_AMS_AS3722

2018-12-16 Thread Lukasz Majewski
On Sun, 16 Dec 2018 19:36:38 -0700 Simon Glass wrote: > This is no-longer used. Drop it. > > Signed-off-by: Simon Glass > --- > > Changes in v2: > - Add new patches as per the cover letter > > include/fdtdec.h | 1 - > lib/fdtdec.c | 1 - > 2 files changed, 2 deletions(-) > > diff

Re: [U-Boot] [PATCH v2 09/11] samsung: mmc: Drop old MMC init code

2018-12-16 Thread Lukasz Majewski
On Sun, 16 Dec 2018 19:36:36 -0700 Simon Glass wrote: > Now that these boards use driver model we can drop the old code. At > present s5p_mmc_init() is still used by goni and smdkv310 so cannot be > removed unless we remove those boards. > > Signed-off-by: Simon Glass > --- > > Changes in v2:

[U-Boot] [PATCH v4 11/12] m68k: add OF control support to m68k

2018-12-16 Thread Angelo Dureghello
Add SUPPORT_OF_CONTROL at this stage, to avoid to break build bisectability. Signed-off-by: Angelo Dureghello --- Changes for v4: - new patch --- arch/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/Kconfig b/arch/Kconfig index 35e2712fce..a8393b86e9 100644 --- a/arch/Kconfig

[U-Boot] [PATCH v4 04/12] m68k: enabling long jumps on mcf54x5 SoCs

2018-12-16 Thread Angelo Dureghello
Growing of binary size asks for long assembly jumps. Reviewed-by: Simon Glass Signed-off-by: Angelo Dureghello --- Changes for v2: - new patch Changes for v3: - none Changes for v4: - none --- arch/m68k/cpu/mcf547x_8x/start.S | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff

Re: [U-Boot] [PATCH v2 03/11] exynos: Drop duplicate 'model' line

2018-12-16 Thread Lukasz Majewski
On Sun, 16 Dec 2018 19:36:30 -0700 Simon Glass wrote: > At present the model is shown twice, once in the generic code and once > in the exynos code. Drop the latter. > > Signed-off-by: Simon Glass > --- > > Changes in v2: None > > board/samsung/common/board.c | 14 ++ >

Re: [U-Boot] [PATCH v2 04/11] exynos: Convert to use CONFIG_BLK

2018-12-16 Thread Lukasz Majewski
On Sun, 16 Dec 2018 19:36:31 -0700 Simon Glass wrote: > Move all exynos boards over to use CONFIG_BLK. > > This converts s5p_goni also, but adding dummy functions for pinmux and > peripheral ID. This will not function correctly, but gives the > maintainer more time to convert the board if

Re: [U-Boot] [PATCH v4] zynq-gem: Use appropriate cache flush/invalidate for RX and TX

2018-12-16 Thread Stefan Theil
> -Ursprüngliche Nachricht- > Von: Bin Meng [mailto:bmeng...@gmail.com] > Gesendet: Montag, 17. Dezember 2018 08:52 > An: Stefan Theil > Cc: U-Boot Mailing List; Michal Simek > Betreff: Re: [PATCH v4] zynq-gem: Use appropriate cache flush/invalidate for > RX and TX > > Hi Stefan, > > On

Re: [U-Boot] [PATCH v1 1/2] dm: usb: udc: Use SEQ_ALIAS to index the USB gadget ports

2018-12-16 Thread Lukasz Majewski
Hi Marek, Jean-Jacques, > On 12/15/2018 05:43 PM, Jean-Jacques Hiblot wrote: > > dfu, fastbot and other usb gadget commands take the USB port index > > as a > > fastboot. > > Looks good to me, I expect Lukasz to pick it, test it and send me a > PR. > > > parameter. Currently this index is

[U-Boot] [PATCH v4 08/12] configs: add DM_SPI config option

2018-12-16 Thread Angelo Dureghello
This patch adds CONFIG_DM_SPI for all m68k boards using the cf_spi.c driver (DSPI module). Reviewed-by: Simon Glass Signed-off-by: Angelo Dureghello --- Changes for v2: - new patch Changes for v3: - none Changes for v4: - none --- configs/M52277EVB_defconfig | 1 +

Re: [U-Boot] U-Boot 2019.01-rc1-00337-g42cc2cf partition table issues on imx6

2018-12-16 Thread Petr Štetiar
Petr Štetiar [2018-12-16 01:20:07]: > U-Boot 2019.01-rc1-00337-g42cc2cf (Dec 16 2018 - 01:02:22 +0100) > Model: Toradex Apalis iMX6 Quad 2GB IT V1.1A, Serial# 04875944 > > # mmc dev 0 > switch to partitions #0, OK > mmc0(part 0) is current device > > # load

Re: [U-Boot] [PATCH v2] imx6: apalis: Make the boot process more generic

2018-12-16 Thread Otavio Salvador
Hello Petr, On Sun, Dec 16, 2018 at 7:31 PM Petr Štetiar wrote: > I'm preparing support for Apalis imx6 boards in OpenWrt and I've ended > up with quite huge patchset against upstream U-Boot 2018.03, so I'm > trying to propose more generic way of boot process handling. > > In OpenWrt we usually

[U-Boot] [PATCH v3 5/5] mips: jz47xx: Add Creator CI20 platform

2018-12-16 Thread Ezequiel Garcia
From: Paul Burton Add support for the Creator CI20 platform based on the JZ4780 SoC. Cc: Daniel Schwierzeck Signed-off-by: Paul Burton Signed-off-by: Marek Vasut Signed-off-by: Ezequiel Garcia --- arch/mips/dts/Makefile| 1 + arch/mips/dts/ci20.dts| 120 +++

[U-Boot] [PATCH v3 2/5] mmc: Add JZ47xx SD/MMC controller driver

2018-12-16 Thread Ezequiel Garcia
From: Paul Burton Add driver for the JZ47xx MSC controller. Cc: Daniel Schwierzeck Signed-off-by: Paul Burton Signed-off-by: Marek Vasut Signed-off-by: Ezequiel Garcia --- drivers/mmc/Kconfig | 6 + drivers/mmc/Makefile | 1 + drivers/mmc/jz_mmc. | 0 drivers/mmc/jz_mmc.c | 489

[U-Boot] [PATCH v3 1/5] misc: Add JZ47xx efuse driver

2018-12-16 Thread Ezequiel Garcia
From: Paul Burton Add driver for the efuse block in the JZ47xx SOC. Cc: Daniel Schwierzeck Signed-off-by: Paul Burton Signed-off-by: Marek Vasut Signed-off-by: Ezequiel Garcia --- drivers/misc/Kconfig| 6 +++ drivers/misc/Makefile | 1 + drivers/misc/jz4780_efuse.c | 104

[U-Boot] [PATCH v3 3/5] mips: Add SPL header

2018-12-16 Thread Ezequiel Garcia
From: Paul Burton Add header with SPL boot mode and type definitions. Cc: Daniel Schwierzeck Signed-off-by: Paul Burton Signed-off-by: Marek Vasut --- arch/mips/include/asm/spl.h | 35 +++ 1 file changed, 35 insertions(+) create mode 100644

[U-Boot] [PATCH v3 0/5] Add support for MIPS Creator CI20

2018-12-16 Thread Ezequiel Garcia
A new round, addressing feedback from Daniel. Daniel: do you think this is acceptable as a first submission? v3: * Cleanup SoC reset logic. * Move gpio driver to SoC specific code, to be used by SPL. A proper dm gpio driver will be added later. * Cleaned up SPDX. * Added myself as JZ4780

Re: [U-Boot] [RESEND PATCH v2 2/6] efi_loader: Initial HII database protocols

2018-12-16 Thread AKASHI Takahiro
On Sat, Dec 15, 2018 at 09:48:19PM +0100, Heinrich Schuchardt wrote: > On 12/14/18 11:10 AM, AKASHI Takahiro wrote: > > From: Leif Lindholm > > > > This patch provides enough implementation of the following protocols to > > run EDKII's Shell.efi and UEFI SCT: > > > > * EfiHiiDatabaseProtocol

[U-Boot] [PATCH v2 10/11] fdt: samsung: Drop unused fdt_compat_id values

2018-12-16 Thread Simon Glass
This enum still exists but we can shrink it a little based on recent driver-model conversions with samsung. Update it to remove unused items. Signed-off-by: Simon Glass --- Changes in v2: None include/fdtdec.h | 6 -- lib/fdtdec.c | 6 -- 2 files changed, 12 deletions(-) diff

[U-Boot] [PATCH v2 09/11] samsung: mmc: Drop old MMC init code

2018-12-16 Thread Simon Glass
Now that these boards use driver model we can drop the old code. At present s5p_mmc_init() is still used by goni and smdkv310 so cannot be removed unless we remove those boards. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/mach-exynos/include/mach/mmc.h | 2 -

[U-Boot] [PATCH v2 06/11] spring: Update sound to use max98088 codec

2018-12-16 Thread Simon Glass
Update the spring settings to use this codec, which is what it actually shipped with. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/dts/exynos5250-spring.dts | 36 +++--- configs/spring_defconfig | 1 + 2 files changed, 19 insertions(+), 18

[U-Boot] [PATCH v2 05/11] sound: Add a driver for max98088

2018-12-16 Thread Simon Glass
This chip is used by spring. Add a driver for it and update the samsung_sound driver to pick it up. Signed-off-by: Simon Glass --- Changes in v2: None drivers/sound/Kconfig | 8 + drivers/sound/Makefile| 1 + drivers/sound/max98088.c | 431

[U-Boot] [PATCH v2 11/11] fdt: tegra: Drop COMPAT_AMS_AS3722

2018-12-16 Thread Simon Glass
This is no-longer used. Drop it. Signed-off-by: Simon Glass --- Changes in v2: - Add new patches as per the cover letter include/fdtdec.h | 1 - lib/fdtdec.c | 1 - 2 files changed, 2 deletions(-) diff --git a/include/fdtdec.h b/include/fdtdec.h index de7dd63b5a4..2a8ad960260 100644 ---

[U-Boot] [PATCH v2] riscv: configs: Rename ax25-ae350 defconfig

2018-12-16 Thread Andes
From: Rick Chen Remove cpu name from the defconfig naming. Because other cpus maybe run on AE350 platform. So only use platfrom name in defconfig naming will be better. Signed-off-by: Rick Chen Cc: Greentime Hu --- Changes since v1: Use git format-patch �VM to show delta when rename. ---

[U-Boot] [PATCH v2] imx6: apalis: Make the boot process more generic

2018-12-16 Thread Petr Štetiar
I'm preparing support for Apalis imx6 boards in OpenWrt and I've ended up with quite huge patchset against upstream U-Boot 2018.03, so I'm trying to propose more generic way of boot process handling. In OpenWrt we usually have kernel, dtbs and U-Boot boot script in boot partition with ext4fs, so

[U-Boot] [PATCH v3 4/5] mips: jz47xx: Add JZ4780 SoC support

2018-12-16 Thread Ezequiel Garcia
From: Paul Burton Add initial support for the Ingenic JZ47xx MIPS SoC. Cc: Daniel Schwierzeck Signed-off-by: Paul Burton Signed-off-by: Marek Vasut Signed-off-by: Ezequiel Garcia --- MAINTAINERS | 6 + arch/mips/Kconfig | 7

[U-Boot] [PATCH v2 00/11] samsung: Tidy up sound, DM_MMC drop dead code

2018-12-16 Thread Simon Glass
This series was previously sent as a v1 without a cover letter. Since then I have added a few more patches: - Support for spring's audio codec - Dropping unused MMC and audio code - Removing unused fdt_compat_id values Changes in v2: - Add new patch to resync defconfigs for odroid - Remove

Re: [U-Boot] [PATCH v2] riscv: configs: Rename ax25-ae350 defconfig

2018-12-16 Thread Bin Meng
On Mon, Dec 17, 2018 at 12:29 PM Andes wrote: > > From: Rick Chen > > Remove cpu name from the defconfig naming. > Because other cpus maybe run on AE350 platform. > So only use platfrom name in defconfig naming > will be better. > > Signed-off-by: Rick Chen > Cc: Greentime Hu > --- > Changes

Re: [U-Boot] [RESEND PATCH v2 2/6] efi_loader: Initial HII database protocols

2018-12-16 Thread Heinrich Schuchardt
On 12/14/18 11:10 AM, AKASHI Takahiro wrote: > From: Leif Lindholm > > This patch provides enough implementation of the following protocols to > run EDKII's Shell.efi and UEFI SCT: > > * EfiHiiDatabaseProtocol > * EfiHiiStringProtocol > > Not implemented are: > * ExportPackageLists() >

Re: [U-Boot] [PATCH v2 0/2] SiFive UART support

2018-12-16 Thread Rick Chen
Hi Anup > > From: Anup Patel [mailto:a...@brainfault.org] > > Sent: Friday, December 14, 2018 5:23 PM > > To: Rick Jian-Zhi Chen(陳建志); Bin Meng; Lukas Auer > > Cc: Alexander Graf; Palmer Dabbelt; Atish Patra; Christoph Hellwig; U-Boot > > Mailing List > > Subject: Re: [PATCH v2 0/2] SiFive UART

[U-Boot] [PATCH] riscv: configs: Rename ax25-ae350 defconfig

2018-12-16 Thread Andes
From: Rick Chen Remove cpu name from the defconfig naming. Because other cpus maybe run on AE350 platform. So only use platfrom name in defconfig naming will be better. Signed-off-by: Rick Chen Cc: Greentime Hu --- configs/a25-ae350_32_defconfig | 36

Re: [U-Boot] [PATCH] riscv: configs: Rename ax25-ae350 defconfig

2018-12-16 Thread Bin Meng
Hi Rick, On Mon, Dec 17, 2018 at 11:21 AM Andes wrote: > > From: Rick Chen > > Remove cpu name from the defconfig naming. > Because other cpus maybe run on AE350 platform. > So only use platfrom name in defconfig naming > will be better. > > Signed-off-by: Rick Chen > Cc: Greentime Hu > --- >

[U-Boot] [PATCH] net: macb: fix mapping of registers

2018-12-16 Thread Ramon Fried
Some architectures (MIPS) needs mapping to access IOMEM. Fix that. Fixes: f1dcc19b213d ("net: macb: Convert to driver model") Signed-off-by: Ramon Fried --- drivers/net/macb.c | 12 +++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/drivers/net/macb.c

Re: [U-Boot] [RESEND PATCH v2 2/6] efi_loader: Initial HII database protocols

2018-12-16 Thread AKASHI Takahiro
On Sun, Dec 16, 2018 at 09:36:38PM +0100, Heinrich Schuchardt wrote: > On 12/14/18 11:10 AM, AKASHI Takahiro wrote: > > From: Leif Lindholm > > > > This patch provides enough implementation of the following protocols to > > run EDKII's Shell.efi and UEFI SCT: > > > > * EfiHiiDatabaseProtocol

[U-Boot] [PATCH v2 04/11] exynos: Convert to use CONFIG_BLK

2018-12-16 Thread Simon Glass
Move all exynos boards over to use CONFIG_BLK. This converts s5p_goni also, but adding dummy functions for pinmux and peripheral ID. This will not function correctly, but gives the maintainer more time to convert the board if desired. Signed-off-by: Simon Glass --- Changes in v2: - Update to

[U-Boot] [PATCH v2 03/11] exynos: Drop duplicate 'model' line

2018-12-16 Thread Simon Glass
At present the model is shown twice, once in the generic code and once in the exynos code. Drop the latter. Signed-off-by: Simon Glass --- Changes in v2: None board/samsung/common/board.c | 14 ++ include/samsung/misc.h | 2 -- 2 files changed, 6 insertions(+), 10

[U-Boot] [PATCH v2 02/11] Convert CONFIG_BOARD_TYPES to Kconfig

2018-12-16 Thread Simon Glass
This converts the following to Kconfig: CONFIG_BOARD_TYPES Signed-off-by: Simon Glass --- Changes in v2: - Remove stranded comments in the header files common/Kconfig | 8 configs/axs101_defconfig | 1 + configs/axs103_defconfig | 1 +

[U-Boot] [PATCH v2 01/11] odroid: Resync defconfigs

2018-12-16 Thread Simon Glass
Sync defconfigs again since USB_STORAGE is the default on these boards. Signed-off-by: Simon Glass --- Changes in v2: - Add new patch to resync defconfigs for odroid configs/odroid-xu3_defconfig | 1 - configs/odroid_defconfig | 1 - 2 files changed, 2 deletions(-) diff --git

Re: [U-Boot] [PULL] Please pull u-boot-imx: u-boot-imx-20181214

2018-12-16 Thread Lukasz Majewski
Dear Stefano, > On Fri, Dec 14, 2018 at 02:39:04PM +0100, Stefano Babic wrote: > > > Hi Tom, > > > > please pull from u-boot-imx, thanks ! > > > > > > The following changes since commit > > c49aff3e66b930aa06936afee401cf5e19377958: > > > > Merge branch 'master' of

[U-Boot] [PATCH v2 07/11] spring: Update flashmap details

2018-12-16 Thread Simon Glass
Update the flashmap so that this board can be started over USB A-A. It is slightly different from snow. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/dts/exynos5250-spring.dts | 41 -- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH v2 08/11] samsung: Drop board_enable_audio_codec()

2018-12-16 Thread Simon Glass
This function is not needed now since the audio codecs have been converted to proper drivers. The codec-enable GPIO is handled there. Signed-off-by: Simon Glass --- Changes in v2: None board/samsung/common/exynos5-dt.c | 29 - 1 file changed, 29 deletions(-) diff

Re: [U-Boot] [PATCH] riscv: configs: Rename ax25-ae350 defconfig

2018-12-16 Thread Rick Chen
Hi Bin Bin Meng 於 2018年12月17日 週一 上午11:32寫道: > > Hi Rick, > > On Mon, Dec 17, 2018 at 11:21 AM Andes wrote: > > > > From: Rick Chen > > > > Remove cpu name from the defconfig naming. > > Because other cpus maybe run on AE350 platform. > > So only use platfrom name in defconfig naming > > will

Re: [U-Boot] [PATCH v2 0/2] SiFive UART support

2018-12-16 Thread Anup Patel
On Mon, Dec 17, 2018 at 7:21 AM Rick Chen wrote: > > Hi Anup > > > > From: Anup Patel [mailto:a...@brainfault.org] > > > Sent: Friday, December 14, 2018 5:23 PM > > > To: Rick Jian-Zhi Chen(陳建志); Bin Meng; Lukas Auer > > > Cc: Alexander Graf; Palmer Dabbelt; Atish Patra; Christoph Hellwig; U-Boot