Hi, Andreas,
> -Original Message-
> From: Andreas Färber [mailto:afaer...@suse.de]
> Sent: Saturday, January 20, 2018 14:35
> To: Kostya Porotchkin; u-boot@lists.denx.de
> Cc: Stefan Roese; Marek Behún; Tomas Hlavacek
> Subject: mrvl_uart.sh and Turris Omnia (was: [EXT] Re: [U-Boot] [PATCH
> -Original Message-
> From: Andreas Färber [mailto:afaer...@suse.de]
> Sent: Saturday, January 20, 2018 14:19
> To: u-boot@lists.denx.de
> Cc: Andreas Färber; Kostya Porotchkin; Stefan Roese; Igal Liberman
> Subject: [PATCH] tools/mrvl_uart.sh: Tidy script output
>
> Fix a typo in help
> -Original Message-
> From: Andreas Färber [mailto:afaer...@suse.de]
> Sent: Saturday, January 20, 2018 14:07
> To: u-boot@lists.denx.de
> Cc: Andreas Färber; Kostya Porotchkin; Stefan Roese; Igal Liberman
> Subject: [PATCH] tools/mrvl_uart.sh: Fix minicom baudrate
>
> minicom doesn't i
All of these host tools are apparently written for Python2,
not Python3.
Use 'python2' in the shebang line according to PEP 394
(https://www.python.org/dev/peps/pep-0394/).
Signed-off-by: Masahiro Yamada
---
I sent some time before figuring out why Patman does not work
on my machine.
If 'pytho
I do not remember why, but this is apparently a file-copy mistake.
The file name is libfdt.h, but its content is that of libfdt_env.h
Re-import it from upstream Linux.
Signed-off-by: Masahiro Yamada
Reviewed-by: Simon Glass
---
Changes in v3:
- Re-import from linux-next
include/linux/libfd
libfdt_env.h exists to contain system-dependent defines:
- typedef of fdt*_t
- fdt*_to_cpu(), cpu_to_fdt*
working_fdt and FDT_RAMDISK_OVERHEAD are unrelated to the environment,
so they must get out of this header.
Signed-off-by: Masahiro Yamada
Reviewed-by: Simon Glass
---
Changes in v3:
There is tons of code duplication between lib/libfdt/libfdt.h and
scripts/dtc/libfdt/libfdt.h. Evacuate the U-Boot own code to
include/libfdt.h and remove lib/libfdt/libfdt.h.
For host tools, should include scripts/dtc/libfdt/libfdt.h,
which is already suitable for user-space.
For compiling U-B
libfdt_env.h is supposed to provide system-dependent defines.
scripts/dtc/libfdt/libfdt_env.h from upstream DTC is suitable
for user-space, so we should use this for USE_HOSTCC case.
For compiling U-Boot, we need to override such system-dependent
defines, so use imported from Linux.
selects a
Several host-tools use "bool" type without including .
This relies on the crappy header inclusion chain.
tools/Makefile has the following line:
HOST_EXTRACFLAGS += -include $(srctree)/include/libfdt_env.h \
All host-tools are forced to include libfdt_env.h even if they are
totally unrelated to
The only difference between scripts/dtc/libfdt/fdt_rw.c and
lib/libfdt/fdt_rw.c is fdt_remove_unused_strings().
It is only used by fdtgrep, so we do not need to compile it for U-Boot
image. Move it to tools/libfdt/fdw_rw.c so that lib/libfdt/fdt_rw.c
can be a wrapper of scripts/dtc/libfdt/fdt_rw.
Hello all,
It should be [PATCH 1/1]. This is not part of any patch set
Regards
Ashish
> -Original Message-
> From: Ashish Kumar [mailto:ashish.ku...@nxp.com]
> Sent: Friday, January 19, 2018 3:54 PM
> To: u-boot@lists.denx.de
> Cc: York Sun ; Ashish Kumar
> Subject: [PATCH 4/4] armv8: l
Hi Alex
> -Original Message-
> From: Alexander Graf [mailto:ag...@suse.de]
> Sent: Tuesday, January 16, 2018 7:52 PM
> To: Udit Kumar ; Heinrich Schuchardt
>
> Cc: u-boot@lists.denx.de
> Subject: Re: UEFI on u-boot
>
>
>
> On 16.01.18 09:35, Udit Kumar wrote:
> >
> >
> >> -Original
Add entries that will be used for tuning control.
The whole layout not changed, just expand reserved3[84] and
rename other reservedx in sequence.
Signed-off-by: Peng Fan
Cc: Stefano Babic
Cc: Fabio Estevam
Cc: Jaehoon Chung
---
drivers/mmc/fsl_esdhc.c | 20
1 file changed
The pinmux and tuning settings are from
https://source.codeaurora.org/external/imx/linux-imx/tree/arch/
arm/boot/dts/imx7s.dtsi?h=imx_4.9.11_1.0.0_ga
https://source.codeaurora.org/external/imx/linux-imx/tree/arch/
arm/boot/dts/imx7d-sdb.dts?h=imx_4.9.11_1.0.0_ga
To support HS200 and SDR104, we nee
Enable UHS and HS200 for mx7dsabresd.
Read Speed improvement:
Kingston SD10VG2/16GB SDHC 3.0 card
22.2MB/s -> 73.7MB/s
eMMC5.0 MTFC8GACAEAM:
68MB/s -> 87MB/s
Signed-off-by: Peng Fan
Cc: Stefano Babic
Cc: Fabio Estevam
Cc: Jaehoon Chung
---
configs/mx7dsabresd_defconfig| 3 +++
config
Introduce SDR104 and HS200 support
The implementation takes linux kernel sdhci.c and sdhci-esdhc-imx.c
as reference.
- Implement esdhc_change_pinstate to dynamically change pad settings
- Implement esdhc_set_timing
- Implement esdhc_set_voltage to switch voltage
- Implement fsl_esdhc_execute_tu
Thanks Alex and Heinrich
I guess function efi_add_memory_map will do, what I was looking for
Regards
Udit
> -Original Message-
> From: Udit Kumar
> Sent: Sunday, January 21, 2018 4:13 PM
> To: 'Alexander Graf' ; Heinrich Schuchardt
>
> Cc: u-boot@lists.denx.de
> Subject: RE: UEFI on u-
Hi,
Am 20.01.2018 um 15:32 schrieb Sean Nyekjær:
> On 20 January 2018 10:07:57 CET, Stefan Roese wrote:
>> On 20.01.2018 03:30, Andreas Färber wrote:
>>> Am 20.01.2018 um 02:40 schrieb Andreas Färber:
Am 18.01.2018 um 18:20 schrieb Stefan Roese:
> On 17.01.2018 16:52, Andreas Färber wrot
Hi
On 21 January 2018 13:39:15 CET, "Andreas Färber" wrote:
>Hi,
>
>Am 20.01.2018 um 15:32 schrieb Sean Nyekjær:
>> On 20 January 2018 10:07:57 CET, Stefan Roese wrote:
>>> On 20.01.2018 03:30, Andreas Färber wrote:
Am 20.01.2018 um 02:40 schrieb Andreas Färber:
> Am 18.01.2018 um 18:20
Hi Mario,
after applying these patches and running them through Travis, I'm
getting a few errors.
Here some MIPS related errors:
configs/socfpga_de0_nano_soc_defconfig: /tmp/tmphcvND0:40: warning: overriding
the value of CMD_PART. Old value: "y", new value: "y".
configs/evb-rk3288_defconfig: /t
On 10/01/2018 06:20, Peng Fan wrote:
> Add i.MX8M into Kconfig, create a new folder mx8m
> dedicated for i.MX8M.
>
> Signed-off-by: Peng Fan
> Reviewed-by: Fabio Estevam
> Cc: Stefano Babic
> ---
> arch/arm/Kconfig | 14 +++---
> arch/arm/Makefile | 4 ++--
On 10/01/2018 06:20, Peng Fan wrote:
> Add pin header file for i.MX8M
>
> Signed-off-by: Peng Fan
> Reviewed-by: Fabio Estevam
> Cc: Stefano Babic
> ---
> arch/arm/include/asm/arch-mx8m/mx8mq_pins.h | 623
>
> 1 file changed, 623 insertions(+)
> create mode 100
On 10/01/2018 06:20, Peng Fan wrote:
> Add register definition header file for i.MX8M
>
> Signed-off-by: Peng Fan
> Reviewed-by: Fabio Estevam
> Cc: Stefano Babic
> ---
> arch/arm/include/asm/arch-mx8m/imx-regs.h | 468
> ++
> 1 file changed, 468 insertions(+)
>
On 01/15/2018 11:02 AM, Mario Six wrote:
> Signed-off-by: Mario Six
Actual commit message in all those patches would be real nice to have.
--
Best regards,
Marek Vasut
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot
CONFIG_WALNUT was dropped in June 2017 in:
commit 98f705c9cefdfd ("powerpc: remove 4xx support")
While at it, the related CONFIG_MACH_SPECIFIC and the have_of
and _machine variables are unused as well, so drop them too.
Signed-off-by: Tuomas Tynkkynen
---
arch/powerpc/include/asm/processor.h |
Hi Peng,
On 10/01/2018 06:20, Peng Fan wrote:
> Add clock driver to support i.MX8M.
>
> There are two kind PLLs, FRAC pll and SSCG pll. ROM already
> configured SYS PLL1/2, we only need to configure the output.
> ocotp/i2c/pll decoding and configuration/usdhc/lcdif/dram pll/
> enet clock are conf
On 10/01/2018 06:20, Peng Fan wrote:
> Update get_reset_cause to reflect i.MX8M
> Compile out get_ahb_clk and set_chipselect_size for i.MX8M
>
> Signed-off-by: Peng Fan
> Reviewed-by: Stefano Babic
> Reviewed-by: Fabio Estevam
> ---
> arch/arm/mach-imx/cpu.c | 11 ++-
> 1 file change
On 10/01/2018 06:20, Peng Fan wrote:
> Implement spl_boot_device for i.MX8M.
>
> Signed-off-by: Peng Fan
> Reviewed-by: Fabio Estevam
> Cc: Stefano Babic
> ---
> arch/arm/mach-imx/spl.c | 10 +++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/mach-imx/spl
On 10/01/2018 06:20, Peng Fan wrote:
> Add pad settings bit definition for i.MX8M.
>
> Signed-off-by: Peng Fan
> Reviewed-by: Fabio Estevam
> Cc: Stefano Babic
> ---
> arch/arm/include/asm/mach-imx/iomux-v3.h | 22 +-
> 1 file changed, 21 insertions(+), 1 deletion(-)
>
>
On 10/01/2018 06:20, Peng Fan wrote:
> Add i.MX8MQ SoC Revision
> Add is_mx8m helper
> The 7ULP is a dummy number, so use 0xEx.
>
> Signed-off-by: Peng Fan
> Reviewed-by: Fabio Estevam
> Cc: Stefano Babic
> ---
> arch/arm/include/asm/arch-imx/cpu.h | 6 --
> arch/arm/include/asm/ma
On 10/01/2018 06:20, Peng Fan wrote:
> The i.MX7 cpu speed/temp code could be reused on i.MX8M,
> so move them to common cpu code.
>
> Signed-off-by: Peng Fan
> Cc: Stefano Babic
> Cc: Fabio Estevam
> ---
> arch/arm/mach-imx/cpu.c | 73
> +
>
On 10/01/2018 06:20, Peng Fan wrote:
> Move imx_get_mac_from_fuse to a new mac.c for i.MX6/7.
> Since fuse regs structure are different for i.MX6/7, use mac
> address offset in code and define a new local struture
> imx_mac_fuse.
>
> Also sort the config order.
>
> Signed-off-by: Peng Fan
> Cc
On 10/01/2018 06:20, Peng Fan wrote:
> Use more general enum types for speed grade.
> Refine get_cpu_speed_grade_hz to support i.MX8M.
>
> Signed-off-by: Peng Fan
> Cc: Stefano Babic
> Cc: Fabio Estevam
> ---
> arch/arm/mach-imx/cpu.c | 27 +++
> 1 file changed, 15 in
On 10/01/2018 06:20, Peng Fan wrote:
> Enable get_boot_device for i.MX8M, it supports boot type USB.
>
> Signed-off-by: Peng Fan
> Cc: Stefano Babic
> Cc: Fabio Estevam
> ---
> arch/arm/mach-imx/cpu.c | 7 ++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/ma
On 10/01/2018 06:20, Peng Fan wrote:
> The MIB RAM and FIFO receive start register does not exist on
> i.MX8M. Accessing these register will cause system hang.
>
> Signed-off-by: Peng Fan
> Acked-by: Joe Hershberger
> Reviewed-by: Stefano Babic
> Reviewed-by: Fabio Estevam
> ---
> drivers/n
On 10/01/2018 06:20, Peng Fan wrote:
> Move get_boot_device to cpu.c to prepare adding i.MX8M support,
> because i.MX8M share same code with i.MX7.
>
> Signed-off-by: Peng Fan
> Cc: Stefano Babic
> Cc: Fabio Estevam
> ---
> arch/arm/include/asm/arch-mx7/imx-regs.h | 8 ---
> arch/arm/i
On 10/01/2018 06:20, Peng Fan wrote:
> Add i.MX8M GPIO support.
> There are 4 GPIO banks on i.MX8M.
>
> Signed-off-by: Peng Fan
> Reviewed-by: Fabio Estevam
> Cc: Stefano Babic
> ---
> drivers/gpio/mxc_gpio.c | 22 +++---
> 1 file changed, 15 insertions(+), 7 deletions(-)
>
On 20.01.2018 14:16, Álvaro Fernández Rojas wrote:
> Signed-off-by: Álvaro Fernández Rojas
> ---
> v2: Remove board Kconfig
>
> arch/mips/dts/brcm,bcm6368.dtsi | 168
> ++
> arch/mips/mach-bmips/Kconfig | 12 +++
> include/configs/bmips_bcm
On 20.01.2018 14:16, Álvaro Fernández Rojas wrote:
> Signed-off-by: Álvaro Fernández Rojas
> ---
> v2: no changes
>
> drivers/cpu/bmips_cpu.c | 36
> 1 file changed, 36 insertions(+)
>
Reviewed-by: Daniel Schwierzeck
--
- Daniel
signature.asc
Descri
On 20.01.2018 14:16, Álvaro Fernández Rojas wrote:
> Signed-off-by: Álvaro Fernández Rojas
> ---
> v2: Add board Kconfig and clean defconfig
>
> arch/mips/dts/Makefile | 1 +
> arch/mips/dts/comtrend,wap-5813n.dts| 65
> +
> arch/mips/mac
On 20.01.2018 19:16, Álvaro Fernández Rojas wrote:
> Signed-off-by: Álvaro Fernández Rojas
> ---
> v2: no changes
>
> drivers/ram/bmips_ram.c | 19 +++
> 1 file changed, 19 insertions(+)
> Reviewed-by: Daniel Schwierzeck
--
- Daniel
signature.asc
Description: OpenPGP dig
On 20.01.2018 19:16, Álvaro Fernández Rojas wrote:
> Signed-off-by: Álvaro Fernández Rojas
> ---
> v2: fix bcm6318 typo
>
> drivers/cpu/bmips_cpu.c | 35 +++
> 1 file changed, 35 insertions(+)
> Reviewed-by: Daniel Schwierzeck
--
- Daniel
signature.asc
De
On 20.01.2018 19:16, Álvaro Fernández Rojas wrote:
> Signed-off-by: Álvaro Fernández Rojas
> ---
> v2: no changes
>
> arch/mips/dts/Makefile | 1 +
> arch/mips/dts/comtrend,ar-5315u.dts| 85
> ++
> arch/mips/mach-bmips/Kconfig |
On 20.01.2018 19:16, Álvaro Fernández Rojas wrote:
> Signed-off-by: Álvaro Fernández Rojas
> ---
> v2: add missing ngpios
>
> arch/mips/dts/brcm,bcm6318.dtsi| 157
> +
> arch/mips/mach-bmips/Kconfig | 12 ++
> include/configs/bmi
On 20.01.2018 11:45, Álvaro Fernández Rojas wrote:
> This prevents the following ENOMEM:
> Error binding driver 'bmips_cpu': -12
>
> Signed-off-by: Álvaro Fernández Rojas
> ---
> arch/mips/mach-bmips/Kconfig | 3 +++
> 1 file changed, 3 insertions(+)
>
Reviewed-by: Daniel Schwierzeck
Applie
On 01/20/2018 09:37 AM, Gustavo A. R. Silva wrote:
> Bool initializations should use true and false.
>
> This issue was detected with the help of Coccinelle.
>
> Signed-off-by: Gustavo A. R. Silva
> Cc: Bin Meng
> Cc: Marek Vasut
Applied, thanks
> ---
> drivers/usb/host/xhci-ring.c | 2 +-
>
On 20.01.2018 19:16, Álvaro Fernández Rojas wrote:
> Signed-off-by: Álvaro Fernández Rojas
> ---
> v2: no changes
>
> drivers/ram/bmips_ram.c | 19 +++
> 1 file changed, 19 insertions(+)
>
Reviewed-by: Daniel Schwierzeck
--
- Daniel
signature.asc
Description: OpenPGP d
On 20.01.2018 19:16, Álvaro Fernández Rojas wrote:
> Signed-off-by: Álvaro Fernández Rojas
> ---
> v2: fix bcm6318 typo
>
> drivers/cpu/bmips_cpu.c | 35 +++
> 1 file changed, 35 insertions(+)
>
Reviewed-by: Daniel Schwierzeck
--
- Daniel
signature.asc
From: Fabio Estevam
The original text is from the time that the config options were not
converted to Kconfig.
After the conversion to Kconfig only CONFIG_SECURE_BOOT and
CONFIG_CMD_DEKBLOB need to be selected by the user.
The other config options are automatically selected by the Kconfig
logic.
With this patch series an EFI application or driver can supply
a block device which in turn can be used to download an image.
E.g. we can load iPXE, connect iSCSI drives, download grub from the
SAN and afterwards with grub download and run an EFI application.
Booting Linux from an iSCSI drive was
This test checks the driver for block IO devices.
A disk image is created in memory.
A handle is created for the new block IO device.
The block I/O protocol is installed on the handle.
ConnectController is used to setup partitions and to install the simple
file protocol.
A known file is read from t
This patch provides
* a uclass for EFI drivers
* a EFI driver for block devices
For each EFI driver the uclass
* creates a handle
* adds the driver binding protocol
The uclass provides the bind, start, and stop entry points for the driver
binding protocol.
In bind() and stop() it checks if the c
The output of the minicapps lacks a line feed.
Signed-off-by: Heinrich Schuchardt
---
lib/efi_selftest/efi_selftest_miniapp_exit.c | 2 +-
lib/efi_selftest/efi_selftest_miniapp_return.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/efi_selftest/efi_selftest_miniapp
Hi Heinrich,
On 17 January 2018 at 19:42, Heinrich Schuchardt wrote:
>
> Support special rendition code 0 - reset attributes.
> Support special rendition code 1 - increased intensity (bold).
> Get RGB sequence in pixels right (swap blue and red).
> Do not set reserved bits.
> Use u32 instead of u
Hi Simon,
On 18 January 2018 at 01:15, Simon Goldschmidt
wrote:
> When the device tree is missing a correct spi slave description below
> the bus, the 'set_speed' callback can be called with 'speed' == 0 Hz.
> At least with cadence qspi, this leads to a division by zero.
>
> Prevent this by initi
Hi Maxime,
On 18 January 2018 at 10:21, Maxime Ripard
wrote:
> Hi Simon,
>
> On Wed, Jan 17, 2018 at 03:07:58PM -0700, Simon Glass wrote:
>> On 16 January 2018 at 01:16, Maxime Ripard
>> wrote:
>> > Allow boards and architectures to override the default environment lookup
>> > code by overriding
Hi Ryan,
On 19 January 2018 at 06:21, Ryan Harkin wrote:
> Hi Stefan,
>
> Thanks for looking so quickly.
>
> On 19 January 2018 at 12:23, Stefan Agner wrote:
>>
>> Hi Ryan,
>>
>>
>> On 19.01.2018 10:53, Ryan Harkin wrote:
>> > Add DTE mode support via Kconfig on the MXC uart.
>>
>> Make use of t
Hi Heinrich,
On 19 January 2018 at 00:41, Heinrich Schuchardt wrote:
> On 01/19/2018 12:00 AM, Simon Glass wrote:
>>
>> Hi Heinrich,
>>
>> On 17 January 2018 at 11:15, Heinrich Schuchardt
>> wrote:
>>>
>>> With this patch series an EFI application or driver can supply
>>> a block device which in
On 20 January 2018 at 10:49, Heinrich Schuchardt wrote:
> The EFI implementation does not fit into any of the existing categories.
>
> Provide LOGC_EFI so that EFI related message can be filtered.
>
> Signed-off-by: Heinrich Schuchardt
> ---
> doc/README.log | 1 +
> include/log.h | 1 +
> 2 fi
From: Marcus Cooper
The Beelink X2 is an STB based on the Allwinner H3 SoC with a uSD slot,
2 USB ports( 1 * USB-2 Host, 1 USB OTG), a 10/100M ethernet port using
the SoC's integrated PHY, Wifi via an sdio wifi chip, HDMI, a dual
colour LED, an IR receiver and an optical S/PDIF connector.
Signed
On 19 December 2017 at 08:42, Simon Glass wrote:
> On 17 December 2017 at 10:19, Heinrich Schuchardt wrote:
>> %s/falback/fallback/g
>>
>> Signed-off-by: Heinrich Schuchardt
>> ---
>> include/dm/uclass.h | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> Reviewed-by: Simon Glass
On 20 December 2017 at 08:45, Stephen Warren wrote:
> On 12/20/2017 01:52 AM, Mario Six wrote:
>>
>> The function dev_read_addr calls ofnode_get_addr_index in the live tree
>> case, which does not apply bus translations to the address read from the
>> device tree. This results in illegal addresses
On 7 January 2018 at 21:52, Simon Glass wrote:
> +masahiro
>
> On 4 January 2018 at 23:05, Peng Fan wrote:
>> Sync with Linux commit 30a7acd573899fd8b("Linux 4.15-rc6")
>> to use enum pin_config_param.
>>
>> Signed-off-by: Peng Fan
>> ---
>> include/dm/pinctrl.h | 112
>> ++
On 3 January 2018 at 09:42, Simon Glass wrote:
> On 31 December 2017 at 15:21, Stefan Brüns
> wrote:
>> get_maintainer.pl quotes names which it considers unsafe, i.e. anything
>> containing [^a-zA-Z0-9_ \-]. This confuses patman, it will duplicate
>> addresses which are also in Series-to/cc. Str
On 15 January 2018 at 03:06, Mario Six wrote:
> The Makefile entries in the clk driver directory were not alphabetically
> sorted. Correct this.
>
> Reviewed-by: Simon Glass
> Signed-off-by: Mario Six
> ---
>
> v1 -> v2:
> None
>
> ---
> drivers/clk/Makefile | 20 ++--
> 1 file
On 15 January 2018 at 03:06, Mario Six wrote:
> The clk uclass was converted to support a live device tree recently,
> hence the global data pointer declarations are no longer needed.
>
> Reviewed-by: Simon Glass
> Signed-off-by: Mario Six
> ---
>
> v1 -> v2:
> None
>
> ---
> drivers/clk/clk-uc
On 15 January 2018 at 03:07, Mario Six wrote:
> Reviewed-by: Simon Glass
> Signed-off-by: Mario Six
> ---
>
> v1 -> v2:
> None
>
> ---
> drivers/core/ofnode.c | 8
> drivers/core/read.c | 5 +
> include/dm/ofnode.h | 13 +
> include/dm/read.h | 17
On 15 January 2018 at 03:07, Mario Six wrote:
> There are some style violations in ofnode.c; fix those.
>
> Reviewed-by: Simon Glass
> Signed-off-by: Mario Six
> ---
>
> v1 -> v2:
> None
>
> ---
> drivers/core/ofnode.c | 18 ++
> 1 file changed, 10 insertions(+), 8 deletions(-)
On 15 January 2018 at 06:05, Tom Rini wrote:
> On Mon, Jan 15, 2018 at 11:44:46AM +0100, Mario Six wrote:
>> On Mon, Jan 15, 2018 at 11:19 AM, Dr. Philipp Tomsich
>> wrote:
>> > Tom,
>> >
>> >> On 15 Jan 2018, at 11:06, Mario Six wrote:
>> >>
>> >> Fix a mis-indented function call in clk_fixed_r
On 15 January 2018 at 03:06, Mario Six wrote:
> checkpatch.pl complains that the clk_ops structures used in clk-uclass.c
> ought to be const, so we mark them as const.
>
> Reviewed-by: Simon Glass
> Signed-off-by: Mario Six
>
> ---
>
> v1 -> v2:
> * Changed commit message and text to used the co
On 15 January 2018 at 03:07, Mario Six wrote:
> Judging from its name and parameters, device_is_compatible looks like it
> is compatible with a live device tree, but it actually isn't.
>
> Make it compatible with a live device tree.
>
> Reviewed-by: Simon Glass
> Signed-off-by: Mario Six
> ---
>
On 15 January 2018 at 03:07, Mario Six wrote:
> Fix some style violations in fdtdec.c, and reduce the scope of some
> variables.
>
> Reviewed-by: Simon Glass
> Signed-off-by: Mario Six
> ---
>
> v1 -> v2:
> None
>
> ---
> lib/fdtdec.c | 29 +++--
> 1 file changed, 15 ins
On 15 January 2018 at 03:07, Mario Six wrote:
> Fix some whitespace-related style violations in fdtdec.c.
>
> Reviewed-by: Simon Glass
> Signed-off-by: Mario Six
> ---
>
> v1 -> v2:
> None
>
> ---
> lib/fdtdec.c | 56 ++--
> 1 file changed, 30
On 15 January 2018 at 03:07, Mario Six wrote:
> There are some whitespace-related style violations in read.c; fix those.
>
> Reviewed-by: Simon Glass
> Signed-off-by: Mario Six
> ---
>
> v1 -> v2:
> None
>
> ---
> drivers/core/read.c | 9 -
> 1 file changed, 4 insertions(+), 5 deletions
Hi Tom.
The following changes since commit 557767ed29968af0294e3aae48433e5d5a298e0b:
Merge git://git.denx.de/u-boot-marvell (2018-01-20 08:39:47 -0500)
are available in the Git repository at:
git://git.denx.de/u-boot-dm.git
for you to fetch changes up to b79221a7d9132fd7bfd81cad9ebdc37acb3
Quoting Marek Vasut :
On 01/20/2018 09:37 AM, Gustavo A. R. Silva wrote:
Bool initializations should use true and false.
This issue was detected with the help of Coccinelle.
Signed-off-by: Gustavo A. R. Silva
Cc: Bin Meng
Cc: Marek Vasut
Applied, thanks
Thank you, Marek. This is my v
Hi,
On 01/02/2018 01:25 PM, Jun Nie wrote:
> Poll for broken card detection case instead of return
> no card detected.
Sorry for late. i didn't see this patch in my mailbox.
Does it need to add the new config?
Best Regards,
Jaehoon Chung
>
> Signed-off-by: Jun Nie
> ---
> drivers/mmc/Kconfi
On Thursday 18 January 2018 01:45 PM, Simon Goldschmidt wrote:
> When the device tree is missing a correct spi slave description below
> the bus, the 'set_speed' callback can be called with 'speed' == 0 Hz.
> At least with cadence qspi, this leads to a division by zero.
>
> Prevent this by initi
On Sat, Jan 20, 2018 at 6:41 AM, Álvaro Fernández Rojas
wrote:
> BCM63xx SPI controller is a bit tricky since it doesn't allow keeping CS
> active between transfers, so I had to modify the spi_flash driver in order
> to allow limiting reads.
>
> v9: Introduce changes suggested by Simon Glass:
> -
On 12/30/2017 02:00 AM, Masahiro Yamada wrote:
> This series can be cleanly applied to u-boot-mmc/next.
>
> I really hope the HS200 support will be pulled in the next MW.
>
Applied this series to u-boot-mmc with "[PATCH v2] mmc: sdhci-cadence: add
HS200 support".
Thanks!
Best Regards,
Jaehoon
On Sat, Jan 20, 2018 at 6:43 AM, Álvaro Fernández Rojas
wrote:
> BCM63xx HSSPI controller has the same issue as BCM63xx SPI controller: it
> doesn't allow keeping CS active between transfers.
> However, this controller allows changing CS polarities, which is used in the
> linux upstream driver to
On 01/17/2018 07:36 PM, Jaehoon Chung wrote:
> When power is off, clock is not disabling.
> Because it's passed to 1, mmc->clock should be set to f_min value.
> Some drivers can't initialize the eMMC/SD card with current status.
>
> This patch is to fix the disabling clock value to 0.
>
> Fixes:
On 01/17/2018 06:44 AM, Benoît Thébaudeau wrote:
> Commit 4f425280fa71 ("mmc: fsl_esdhc: Allow all supported prescaler
> values") made it possible to set SYSCTL.SDCLKFS to 0 in SDR mode on
> i.MX, thus bypassing the SD clock frequency prescaler, in order to be
> able to get higher SD clock frequenc
On 01/21/2018 08:00 PM, Peng Fan wrote:
> Add entries that will be used for tuning control.
> The whole layout not changed, just expand reserved3[84] and
> rename other reservedx in sequence.
>
> Signed-off-by: Peng Fan
> Cc: Stefano Babic
> Cc: Fabio Estevam
> Cc: Jaehoon Chung
Reviewed-by:
On 01/21/2018 08:00 PM, Peng Fan wrote:
> Introduce SDR104 and HS200 support
> The implementation takes linux kernel sdhci.c and sdhci-esdhc-imx.c
> as reference.
> - Implement esdhc_change_pinstate to dynamically change pad settings
> - Implement esdhc_set_timing
> - Implement esdhc_set_voltage
Hi Tom,
Please pull this PR.
thanks!
Jagan.
The following changes since commit 98691a60abffb44303d7dae6e9e699d0daded930:
Merge git://git.denx.de/u-boot-rockchip (2018-01-09 13:28:51 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-spi.git master
for you to fetch ch
On Thu, Jan 18, 2018 at 1:45 PM, Simon Goldschmidt
wrote:
> When the device tree is missing a correct spi slave description below
> the bus, the 'set_speed' callback can be called with 'speed' == 0 Hz.
> At least with cadence qspi, this leads to a division by zero.
>
> Prevent this by initializing
On Thu, 2018-01-18 at 08:18 -0500, Tom Rini wrote:
> On Thu, Jan 18, 2018 at 03:42:14AM +, Chee, Tien Fong wrote:
> >
> > On Tue, 2018-01-16 at 09:35 -0500, Tom Rini wrote:
> > >
> > > On Tue, Jan 16, 2018 at 07:58:00AM +, Chee, Tien Fong wrote:
> > > >
> > > >
> > > > On Mon, 2018-01-1
On Mon, Jan 15, 2018 at 3:38 PM, Mario Six wrote:
> This patch fixes a printf specifier style violation, reduces the scope
> of a variable, and turns a void pointer that is used with pointer
> arithmetic into a u8 pointer.
>
> Signed-off-by: Mario Six
> ---
Reviewed-by: Jagan Teki
Applied to u
On Mon, Jan 15, 2018 at 3:38 PM, Mario Six wrote:
> 0efc024 ("spi_flash: Add spi_flash_probe_fdt() to locate SPI by FDT
> node") added a helper function spi_base_setup_slave_fdt to to set up a
> SPI slave from a given FDT blob. The only user was the exynos SPI
> driver.
>
> But commit 73186c9 ("dm
On Mon, Jan 15, 2018 at 3:38 PM, Mario Six wrote:
> spi_flash_probe_tail is now only called from spi_flash_probe, hence we
> can merge its body into spi_flash_probe.
>
> Reviewed-by: Simon Glass
> Signed-off-by: Mario Six
> ---
Applied all 8 patches to u-boot-spi/master, thanks!
___
On Thu, 2018-01-18 at 12:12 +0100, Marek Vasut wrote:
> On 01/18/2018 05:33 AM, Chee, Tien Fong wrote:
> >
> > On Tue, 2018-01-16 at 15:41 +0100, Marek Vasut wrote:
> > >
> > > On 12/27/2017 06:04 AM, tien.fong.c...@intel.com wrote:
> > >
> > > Whoa, this improved substantially since last time I
Hi
On 2018-01-21 13:39, Andreas Färber wrote:
Hi,
Am 20.01.2018 um 15:32 schrieb Sean Nyekjær:
On 20 January 2018 10:07:57 CET, Stefan Roese wrote:
On 20.01.2018 03:30, Andreas Färber wrote:
Am 20.01.2018 um 02:40 schrieb Andreas Färber:
Am 18.01.2018 um 18:20 schrieb Stefan Roese:
On 17.
93 matches
Mail list logo