`if (!strncmp(dev->name, name, strlen(name)))` might find out
the wrong device, it might find out `dram_pll_ref_sel`, when name is
`dram_pll`. So use strcmp to avoid such issue.
Signed-off-by: Peng Fan
Reviewed-by: Simon Glass
---
V2:
None
drivers/core/uclass.c | 2 +-
1 file changed, 1 inse
"adc" is not the real device name, "adc@0" is.
Signed-off-by: Peng Fan
---
V2:
new
test/dm/adc.c | 16
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/test/dm/adc.c b/test/dm/adc.c
index 1f82304f41..da7bd4bf1f 100644
--- a/test/dm/adc.c
+++ b/test/dm/adc.c
@@ -2
"keyb" is not the real device name, "keyb@3" is.
Signed-off-by: Peng Fan
---
V2:
New
test/dm/usb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/dm/usb.c b/test/dm/usb.c
index 3493617544..ef454b0ae5 100644
--- a/test/dm/usb.c
+++ b/test/dm/usb.c
@@ -125,7 +125,7 @@
in 1000 Mbps mode. With a 10/100 Mbps connection it just fails to do
any network communication.
This adds a new GEMGXL clock driver to adjust the clock settings per
the connection speed so that 10/100 Mbps works.
Changes in v2:
- rename driver name to "sifive-gemgxl-mgmt"
- add a comment for gett
This adds a clock driver to support the GEMGXL management IP block
found in FU540 SoCs to control GEM TX clock operation mode for
10/100/1000 Mbps.
Signed-off-by: Bin Meng
Reviewed-by: Lukas Auer
Tested-by: Lukas Auer
---
Changes in v2:
- rename driver name to "sifive-gemgxl-mgmt"
drivers/c
Enable the new GEMGXL MGMT driver so that GEM 10/100 Mbps works now.
Signed-off-by: Bin Meng
Reviewed-by: Lukas Auer
Tested-by: Lukas Auer
---
Changes in v2: None
board/sifive/fu540/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/board/sifive/fu540/Kconfig b/board/sifive/fu540/K
At present the link speed change callback is a nop. According to
macb device tree bindings, an optional "tx_clk" is used to clock
the ethernet controller's TX_CLK under different link speed.
In 10/100 MII mode, transmit logic must be clocked from a free
running clock generated by the external PHY.
Hi Simon,
> Subject: Re: [PATCH] drivers: core: use strcmp when find device by name
>
> Hi Peng,
>
> On Wed, 15 May 2019 at 05:57, Peng Fan wrote:
> >
> > Hi Simon,
> >
> > > Subject: Re: [PATCH] drivers: core: use strcmp when find device by
> > > name
> > >
> > > On Sun, 28 Apr 2019 at 03:43,
This updates DM version macb_linkspd_cb() signature for future
expansion, eg: adding an implementation for link speed changes.
Signed-off-by: Bin Meng
Reviewed-by: Lukas Auer
---
Changes in v2: None
drivers/net/macb.c | 22 +-
1 file changed, 21 insertions(+), 1 deletion(-
Hi Simon,
Thanks for the review. Would you please reply to my questions below?
On Tue, May 21, 2019 at 06:53:29PM -0600, Simon Glass wrote:
> Hi Eugeniu,
>
> On Fri, 17 May 2019 at 08:46, Eugeniu Rosca wrote:
> >
> >
> > [1] https://android.googlesource.com/platform/bootable/recovery
> > [2] ht
Hi Chuanhua,
> Because i2c driver does not generate a stop bit when reading registers
> of pcf2127
The change (in the common i2c code) is rather large when considering the
description above.
Could you write a more detailed patch description? Is this only the
problem with i2c in DM?
Is the same
>
> > > > > > > Subject: Re: [U-Boot] [PATCH 4/6] spl: mmc: support loading
> > > > > > > i.MX container format file
> > > > > > >
> > > > > > > On 5/21/19 4:55 AM, Peng Fan wrote:
> > > > > > > [...]
> > > > > > >
> > > > > > > > I do not know how other SoC vendor did FIT hardware
> > > > > >
Hi Peng,
> >
> > > > > > > > Subject: Re: [U-Boot] [PATCH 4/6] spl: mmc: support
> > > > > > > > loading i.MX container format file
> > > > > > > >
> > > > > > > > On 5/21/19 4:55 AM, Peng Fan wrote:
> > > > > > > > [...]
> > > > > > > >
> > > > > > > > > I do not know how other SoC vendo
On Wed, May 22, 2019 at 3:08 PM Peng Fan wrote:
>
> "adc" is not the real device name, "adc@0" is.
>
> Signed-off-by: Peng Fan
> ---
>
> V2:
> new
>
> test/dm/adc.c | 16
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
Reviewed-by: Bin Meng
___
On Wed, May 22, 2019 at 3:09 PM Peng Fan wrote:
>
> "keyb" is not the real device name, "keyb@3" is.
>
> Signed-off-by: Peng Fan
> ---
>
> V2:
> New
>
> test/dm/usb.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
Reviewed-by: Bin Meng
__
On Wed, May 22, 2019 at 3:08 PM Peng Fan wrote:
>
> `if (!strncmp(dev->name, name, strlen(name)))` might find out
> the wrong device, it might find out `dram_pll_ref_sel`, when name is
> `dram_pll`. So use strcmp to avoid such issue.
>
> Signed-off-by: Peng Fan
> Reviewed-by: Simon Glass
> ---
>
On Wed, May 22, 2019 at 2:53 AM Simon Glass wrote:
>
> Hi Andreas,
>
> On Tue, 21 May 2019 at 15:01, Andreas Dannenberg wrote:
> >
> > Hi Simon (Glass),
> >
> > On Sat, May 18, 2019 at 10:08:19AM -0600, Simon Glass wrote:
> > > Hi Andreas,
> > >
> > > On Mon, 6 May 2019 at 22:49, Andreas Dannenbe
Hi Bin,
> -Original Message-
> From: Bin Meng [mailto:bmeng...@gmail.com]
> Sent: Tuesday, May 21, 2019 3:56 PM
> To: Eric Te-Sheng Lin(林德晟)
> Cc: U-Boot Mailing List; Lukas Auer; Anup Patel; Rick Jian-Zhi Chen(陳建志);
> Greentime Ying-Han Hu(胡英漢); dslin1...@gmail.com
> Subject: Re: [PATCH]
When using the coreboot target CONFIG_DM_SCSI gets set to y. This has the effect
that the current 'enable bus mastering' logic gets not compiled in. This change
fixes ahci problems I am seeing on an Intel Apollolake device.
Signed-off-by: Christian Gmeiner
---
drivers/ata/ahci.c | 6 ++
1 fi
Hi Chuanhua,
> > -Original Message-
> > From: Lukasz Majewski
> > Sent: 2019年5月22日 15:16
> > To: Chuanhua Han
> > Cc: h...@denx.de; u-boot@lists.denx.de; Biwen Li ;
> > s...@chromium.org
> > Subject: [EXT] Re: [PATCH] i2c: pcf2127: fix bug that read wrong
> > time
> >
> > Hi Chuanhua,
>
On Tue, May 21, 2019 at 10:22 PM Marek Vasut wrote:
>
> On 5/21/19 10:03 PM, Simon Goldschmidt wrote:
> > commit 1b898ffc040b ("gpio: dwapb_gpio: convert to livetree") introduced
> > a bug in that dev->node of the gpio chip was accidentally set to the
> > of_node of its bank subnode.
> >
> > What
Hi Eric,
On Wed, May 22, 2019 at 4:23 PM wrote:
>
> Hi Bin,
>
> > -Original Message-
> > From: Bin Meng [mailto:bmeng...@gmail.com]
> > Sent: Tuesday, May 21, 2019 3:56 PM
> > To: Eric Te-Sheng Lin(林德晟)
> > Cc: U-Boot Mailing List; Lukas Auer; Anup Patel; Rick Jian-Zhi Chen(陳建志);
> > Gree
Hi Bin,
-Original Message-
From: Bin Meng
Sent: 2019年5月17日 10:31
To: Xiaowei Bao ; Ramon Fried ;
Simon Glass
Cc: M.h. Lian ; Z.q. Hou ; Mingkai
Hu ; Hongbo Wang ; York Sun
; u-boot@lists.denx.de; Jiafei Pan
Subject: Re: [EXT] Re: [U-Boot] [PATCHv2 1/2] PCI: layerscape: Add Support f
On 10. 05. 19 10:15, Luca Ceresoli wrote:
> Avnet UltraZed-EV Starter Kit is composed by the UltraZed-EV SoM and the
> only publicly-available compatible carrier card. The SoM is based on the EV
> version of the Xilinx ZynqMP SoC+FPGA.
>
> The psu_init_gpl.c file has been generated from the board
Hi Sam,
On Tue, May 21, 2019 at 07:46:22PM +0300, Sam Protsenko wrote:
> On Tue, May 21, 2019 at 2:20 PM Eugeniu Rosca wrote:
[..]
> > Agreed. In my queue.
>
> Just to be clear: can we expect it to be sent in v3, or it will be
> separate patch-set?
We'll have a v3 for fixing Simon's review comm
On Tue, 21 May 2019 13:43:54 +0200
Stefan Roese wrote:
> (Added Simon & Bin to Cc)
>
> On 21.05.19 12:04, Marek Behún wrote:
> > Use the uclass_first_device_check and uclass_next_device_check
> > functions instead of uclass_first_device and uclass_next_device in
> > pci_init. This ensures that a
On 10. 05. 19 10:15, Luca Ceresoli wrote:
> This script transforms a pair of psu_init_gpl.c and .h files produced by
> the Xilinx Vivado tool for ZynqMP into a smaller psu_init_gpl.c file that
> is checkpatch compliant.
>
> Based on a script by Michal Simek.
>
> Signed-off-by: Luca Ceresoli
> --
Signed-off-by: Kuldeep Singh
---
drivers/mtd/spi/spi-nor-ids.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c
index af0b3a6488..a143fba265 100644
--- a/drivers/mtd/spi/spi-nor-ids.c
+++ b/drivers/mtd/spi/spi-nor-id
On 10. 05. 19 10:15, Luca Ceresoli wrote:
> Fixes chekcpatch warnings when building zynqmp defconfigs:
it is not checkpatch who reports this. It is sparse.
> ./board/xilinx/zynqmp/xil_io.h:12:6: warning: symbol 'Xil_Out32' was not
> declared. Should it be static?
> ./board/xilinx/zynqmp/xil_
Hi Simon,
Am Samstag, 18. Mai 2019, 18:08:58 CEST schrieb Simon Glass:
> On Tue, 7 May 2019 at 09:59, Christoph Muellner
> wrote:
> >
> > From: Christoph Müllner
> >
> > Some machines have limited DMA engines, which cannot deal
> > with arbitrary addresses. This patch introduces a function
> > t
On 21. 05. 19 18:06, Luca Ceresoli wrote:
> Hi,
>
> here's a minor improvement to 2/2 over v4. 1/1 is unchanged.
>
> This patchset aims at solving a long-standing issue in the ZynqMP users
> community: loading a PMU firmware configuration object when U-Boot SPL is
> used.
>
> The Platform Manage
On Wed, 22 May 2019 09:31:35 +
Chuanhua Han wrote:
> > -Original Message-
> > From: Lukasz Majewski
> > Sent: 2019年5月22日 16:41
> > To: Chuanhua Han
> > Cc: h...@denx.de; u-boot@lists.denx.de; Biwen Li ;
> > s...@chromium.org; Stefano Babic
> > Subject: Re: [EXT] Re: [PATCH] i2c: pc
On 5/22/19 9:34 AM, Lukasz Majewski wrote:
[...]
>>> By using above approach we do have the NXP's "container"
>>> format only seen in the SPL (which is OK, as for example
>>> Samsung does similar thing with FBL/BL1). When SPL is
>>> "trused" we may use available facilities.
>>
On 5/22/19 10:46 AM, Simon Goldschmidt wrote:
> On Tue, May 21, 2019 at 10:22 PM Marek Vasut wrote:
>>
>> On 5/21/19 10:03 PM, Simon Goldschmidt wrote:
>>> commit 1b898ffc040b ("gpio: dwapb_gpio: convert to livetree") introduced
>>> a bug in that dev->node of the gpio chip was accidentally set to
This patchset adds an STM32 remoteproc driver.
The two first patches add the xxx_translate_dma_address() API which is
the equivalent of the xxx_translate_address() relying on the "dma-ranges"
property instead of the "ranges" property.
The patches 3 & 4 add the support of the ELF image loading (th
Because i2c driver does not generate a stop bit when reading registers
of pcf2127
Signed-off-by: Biwen Li
Signed-off-by: Chuanhua Han
---
drivers/i2c/i2c-uclass.c | 2 ++
drivers/i2c/mxc_i2c.c| 70 +++-
drivers/rtc/pcf2127.c| 18 ++-
include/
This patch introduces da_to_pa function to allow translation
between device address (remote processor view) and physical
address (main processor view).
Signed-off-by: Loic Pallardy
Signed-off-by: Fabien Dessenne
---
include/remoteproc.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/inc
Add the fdt_translate_dma_address() function to translate DMA address to
CPU address.
This function works the same way as fdt_translate_address(), with the
difference that the translation relies on the "dma-ranges" property
instead of the "ranges" property.
Signed-off-by: Fabien Dessenne
---
com
Activate the remote processor support for stm32mp15 configs.
Signed-off-by: Fabien Dessenne
---
configs/stm32mp15_basic_defconfig | 2 ++
configs/stm32mp15_trusted_defconfig | 2 ++
2 files changed, 4 insertions(+)
diff --git a/configs/stm32mp15_basic_defconfig
b/configs/stm32mp15_basic_defc
This patch introduces support of Cortex-M4 remote processor for STM32
MCU and MPU families.
Signed-off-by: Loic Pallardy
Signed-off-by: Fabien Dessenne
---
drivers/remoteproc/Kconfig | 10 ++
drivers/remoteproc/Makefile | 1 +
drivers/remoteproc/stm32_copro.c | 257 +++
The current implementation supports only binary file load.
Add helpers to support ELF format (check validity, sanity check, and
load).
Note that since an ELF image is built for the remote processor, the load
function uses the da_to_pa ops to translate the addresses.
Signed-off-by: Loic Pallardy
S
Signed-off-by: Fabien Dessenne
---
MAINTAINERS | 1 +
1 file changed, 1 insertion(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index 33fd465..5c505d9 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -309,6 +309,7 @@ F: drivers/power/pmic/stpmic1.c
F: drivers/power/regulator/stm32-vrefbuf.c
F:
> -Original Message-
> From: Lukasz Majewski
> Sent: 2019年5月22日 15:16
> To: Chuanhua Han
> Cc: h...@denx.de; u-boot@lists.denx.de; Biwen Li ;
> s...@chromium.org
> Subject: [EXT] Re: [PATCH] i2c: pcf2127: fix bug that read wrong time
>
> Hi Chuanhua,
>
> > Because i2c driver does not
> -Original Message-
> From: Lukasz Majewski
> Sent: 2019年5月22日 16:41
> To: Chuanhua Han
> Cc: h...@denx.de; u-boot@lists.denx.de; Biwen Li ;
> s...@chromium.org; Stefano Babic
> Subject: Re: [EXT] Re: [PATCH] i2c: pcf2127: fix bug that read wrong time
>
> Hi Chuanhua,
>
> > > -O
Add the following functions to translate DMA address to CPU address:
- dev_translate_dma_address()
- ofnode_translate_dma_address()
- of_translate_dma_address()
These functions work the same way as xxx_translate_address(), with the
difference that the translation relies on the "dma-ranges" property
ACK
-Original Message-
From: Pankaj Bansal
Sent: Tuesday, May 21, 2019 2:16 PM
To: Pankaj Bansal ; Prabhakar Kushwaha
; Cristi Sovaiala
Cc: u-boot@lists.denx.de
Subject: RE: [PATCH] board/fsl/layerscape: Modify the aliases names
+ Cristi,
Hi Cristi,
Can you please review this patch?
Hi Tom,
The following changes since commit e1a2ed7180adeefb6164239a18249dca5701319d:
Merge git://git.denx.de/u-boot-mpc83xx (2019-05-21 07:13:35 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-fsl-qoriq.git HEAD
for you to fetch changes up to e50663e85d74c4f8015d515
> -Original Message-
> From: Kuldeep Singh
> Sent: Monday, April 8, 2019 11:33 AM
> To: u-boot@lists.denx.de
> Cc: Prabhakar Kushwaha ; Mingkai Hu
> ; Jagdish Gediya ; Ashish
> Kumar ; Kuldeep Singh
> Subject: [PATCH v4] configs: ls1046: Update mtd-id for QSPI nor in mtdparts
> variable
>
> -Original Message-
> From: Z.q. Hou
> Sent: Monday, April 8, 2019 3:45 PM
> To: u-boot@lists.denx.de; albert.u.b...@aribaud.net; Priyanka Jain
> ; York Sun ;
> sriram.d...@nxp.com; yamada.masah...@socionext.com; Prabhakar
> Kushwaha ; Mingkai Hu
> ; M.h. Lian ;
> bmeng...@gmail.com
> Cc:
> -Original Message-
> From: Udit Agarwal
> Sent: Tuesday, April 23, 2019 11:36 AM
> To: u-boot@lists.denx.de
> Cc: Prabhakar Kushwaha ; Ruchika Gupta
> ; Jagdish Gediya ; Udit
> Agarwal
> Subject: [Patch v3] armv8: fsl-layerscape: Set env_loc to ENVL_NOWHERE with
> CONFIG_ENV_IS_NOWHERE.
> -Original Message-
> From: Yuantian Tang
> Sent: Wednesday, April 10, 2019 2:14 PM
> To: Prabhakar Kushwaha
> Cc: albert.u.b...@aribaud.net; Sudhanshu Gupta
> ; Harninder Rai ; Rajesh
> Bhagat ; Bhaskar Upadhaya
> ; Ran Wang ; u-
> b...@lists.denx.de; Andy Tang
> Subject: [PATCH 1/3 v
> -Original Message-
> From: Yuantian Tang
> Sent: Wednesday, April 10, 2019 2:14 PM
> To: Prabhakar Kushwaha
> Cc: albert.u.b...@aribaud.net; Sudhanshu Gupta
> ; Harninder Rai ; Rajesh
> Bhagat ; Bhaskar Upadhaya
> ; Ran Wang ; u-
> b...@lists.denx.de; Andy Tang
> Subject: [PATCH 2/3 v
> -Original Message-
> From: Yuantian Tang
> Sent: Wednesday, April 10, 2019 2:14 PM
> To: Prabhakar Kushwaha
> Cc: albert.u.b...@aribaud.net; Sudhanshu Gupta
> ; Harninder Rai ; Rajesh
> Bhagat ; Bhaskar Upadhaya
> ; Ran Wang ; u-
> b...@lists.denx.de; Andy Tang
> Subject: [PATCH 3/3 v
> -Original Message-
> From: Chuanhua Han
> Sent: Wednesday, April 17, 2019 2:32 PM
> To: Prabhakar Kushwaha ; Priyanka Jain
>
> Cc: u-boot@lists.denx.de; Chuanhua Han
> Subject: [PATCH] Enable CONFIG_SPI_FLASH to Kconfig for non-TFA
>
> This enables the folowing to Kconfig:
>
> -Original Message-
> From: U-Boot On Behalf Of Qiang Zhao
> Sent: Monday, April 29, 2019 1:55 PM
> To: York Sun
> Cc: u-boot@lists.denx.de
> Subject: [U-Boot] [PATCH 0/3] add new wdt driver for sp805
>
> changes for v2:
> - modify the driver to DM
>
> Zhao Qiang (3):
> watchd
> -Original Message-
> From: Peng Ma
> Sent: Wednesday, April 17, 2019 1:19 PM
> To: albert.u.b...@aribaud.net; s...@chromium.org; Fabio Estevam
> ; York Sun ; Prabhakar
> Kushwaha
> Cc: Andy Tang ; Yinbo Zhu ;
> michal.si...@xilinx.com; u-boot@lists.denx.de; Peng Ma
>
> Subject: [v2 1/
> -Original Message-
> From: U-Boot On Behalf Of Florin Chiculita
> Sent: Monday, April 22, 2019 2:28 PM
> To: u-boot@lists.denx.de
> Subject: [EXT] [U-Boot] [PATCH] armv8: lx2160ardb: invert AQR107 pins polarity
>
> WARNING: This email was created outside of NXP. DO NOT CLICK links or
>
> -Original Message-
> From: Rajat Srivastava
> Sent: Wednesday, April 24, 2019 6:15 PM
> To: u-boot@lists.denx.de; Prabhakar Kushwaha
>
> Cc: Ashish Kumar ; Rajat Srivastava
>
> Subject: [PATCH 1/3] configs: Unset CONFIG_SPI_BAR for all LS1088A defconfigs
>
> From: Ashish Kumar
>
>
> -Original Message-
> From: Rajat Srivastava
> Sent: Wednesday, April 24, 2019 6:15 PM
> To: u-boot@lists.denx.de; Prabhakar Kushwaha
>
> Cc: Rajat Srivastava
> Subject: [PATCH 3/3] configs: Unset CONFIG_SPI_BAR for all LS2080A/LS2081A
> defconfigs
>
> Signed-off-by: Rajat Srivastava
> -Original Message-
> From: Rajat Srivastava
> Sent: Wednesday, April 24, 2019 6:15 PM
> To: u-boot@lists.denx.de; Prabhakar Kushwaha
>
> Cc: Rajat Srivastava
> Subject: [PATCH 2/3] configs: Unset CONFIG_SPI_BAR for all LS1046A defconfigs
>
> Signed-off-by: Rajat Srivastava
> ---
>
> -Original Message-
> From: Peng Ma
> Sent: Wednesday, April 17, 2019 1:19 PM
> To: albert.u.b...@aribaud.net; s...@chromium.org; Fabio Estevam
> ; York Sun ; Prabhakar
> Kushwaha
> Cc: Andy Tang ; Yinbo Zhu ;
> michal.si...@xilinx.com; u-boot@lists.denx.de; Peng Ma
>
> Subject: [v2 2/
> -Original Message-
> From: Udit Agarwal
> Sent: Tuesday, April 23, 2019 11:22 AM
> To: u-boot@lists.denx.de
> Cc: Prabhakar Kushwaha ; Ruchika Gupta
> ; Jagdish Gediya ; Vinitha
> V Pillai ; Udit Agarwal
> Subject: [Patch v2] armv8: Secure Boot: Modify boot_a_script definition
>
> From
> -Original Message-
> From: Rajat Srivastava
> Sent: Wednesday, April 24, 2019 6:15 PM
> To: u-boot@lists.denx.de; Prabhakar Kushwaha
>
> Cc: Rajat Srivastava
> Subject: [PATCH 2/3] configs: Unset CONFIG_SPI_BAR for all LS1046A defconfigs
>
> Signed-off-by: Rajat Srivastava
> ---
>
> -Original Message-
> From: Andy Shevchenko
> Sent: Monday, May 13, 2019 7:35 PM
> To: u-boot@lists.denx.de
> Cc: Andy Shevchenko ; Priyanka Jain
> ; Peng Ma ; Prabhakar
> Kushwaha
> Subject: [PATCH v1] armv8: lx2160: Drop useless CONFIG_CMDLINE_EDITING
> from config.h
>
> The commit
>
> -Original Message-
> From: Yuantian Tang
> Sent: Tuesday, May 14, 2019 2:24 PM
> To: Prabhakar Kushwaha ; Sudhanshu Gupta
> ; Harninder Rai ; Rajesh
> Bhagat
> Cc: u-boot@lists.denx.de; Andy Tang
> Subject: [PATCH] armv8: ls1028ardb: Add sd and emmc related environments
>
> Add SD an
> -Original Message-
> From: Lukasz Majewski
> Sent: 2019年5月22日 19:32
> To: Chuanhua Han
> Cc: h...@denx.de; u-boot@lists.denx.de; Biwen Li ;
> s...@chromium.org; Stefano Babic
> Subject: Re: [EXT] Re: [PATCH] i2c: pcf2127: fix bug that read wrong time
>
> On Wed, 22 May 2019 09:31:35
Hi Tom,
Results here:
https://travis-ci.org/sglass68/u-boot/builds/535552345
The following changes since commit e1a2ed7180adeefb6164239a18249dca5701319d:
Merge git://git.denx.de/u-boot-mpc83xx (2019-05-21 07:13:35 -0400)
are available in the Git repository at:
git://git.denx.de/u-boot-dm.
On Sat, 18 May 2019 at 12:00, Simon Glass wrote:
>
> Some libraries build by U-Boot may include stdint.h. This is not used by
> U-Boot itself and causes conflicts with the types defined in
> linux/types.h. To work around this, add an empty file with this name so
> that it will be used in preferenc
On Mon, 20 May 2019 at 10:05, Thierry Reding wrote:
>
> From: Thierry Reding
>
> U-Boot already defines the {upper,lower}_32_bits() macros that have the
> same purpose. Use the existing macros instead of defining new APIs.
>
> Signed-off-by: Thierry Reding
> ---
> include/fdtdec.h | 24 ---
On Thu, 31 Jan 2019 at 02:39, Jean-Jacques Hiblot wrote:
>
>
> On 31/01/2019 03:57, Simon Glass wrote:
> > Hi Jean-Jacques,
> >
> > On Tue, 20 Nov 2018 at 06:49, Jean-Jacques Hiblot wrote:
> >> Hi Simon,
> >>
> >> On 18/11/2018 16:14, Simon Glass wrote:
> >>> In some cases it is necessary to read
On Wed, 24 Apr 2019 at 17:59, Simon Glass wrote:
>
> On Wed, 24 Apr 2019 at 05:49, Keerthy wrote:
> >
> > Add ofnode_get_addr_size_index function to fetch the address
> > and size of the reg space based on index.
> >
> > Signed-off-by: Keerthy
> > ---
> >
> > Previous discussion can be found he
On Wed, 24 Apr 2019 at 09:18, Simon Glass wrote:
>
> On Tue, 23 Apr 2019 at 23:32, Stefan Mavrodiev wrote:
> >
> > When using fdt_fixup_mtdparts() offset and length cell sizes
> > are limited to 4 bytes (1 cell). However if the mtd device is
> > bigger then 4GiB, then #address-cells and #size-cel
On Wed, 15 May 2019 at 02:26, Bin Meng wrote:
>
> On Wed, May 15, 2019 at 4:07 PM Patrice Chotard
> wrote:
> >
> > This function takes an argument, blob,
>
> nits: there are 2 spaces between "function" and "takes"
>
> > but never uses it, instead uses gd->fdt_blob directly.
> >
> > Fixes: e81c9
On Fri, 26 Apr 2019 at 19:02, Simon Glass wrote:
>
> The 'done' files created by buildman may end up being empty if buildman
> runs out of disk space while writing them. At present buildman dies with
> an exception when using -s to check the build status. Fix this.
>
> Seriesl-cc: trini
>
> Signed
On Fri, 10 May 2019 at 11:48, Trent Piepho wrote:
>
> It was returning an int, which doesn't work if the u32 it is reading,
> or the default value, will overflow a signed int.
>
> While it could be made to work, when using a C standard/compiler where
> casting negative signed values to unsigned ha
Hi Tom,
On Mon, 1 Apr 2019 at 14:38, Simon Glass wrote:
>
> This series adds sound support for Nyan. It allows simple beeps to be
> generated in U-Boot. This requires the addition of an I2S driver, an
> audio hub driver and a sound driver to pull things together. An existing
> audio codec (MAX980
cc: Yamada-san
I dream of a (Kconfig/Kbuild-assisted) bloaty-like output [1] which
would point out the culprit configs. This is hardly achievable, but
looks good on the paper!
CONFIG FILE SIZE
--
CONFIG_FEATURE_A10.7Mi 37.1%
CONFIG_FEATURE
On Tue, May 21, 2019 at 11:34 PM Tom Rini wrote:
> As came up in another thread, CONFIG_MMC_TINY may be more widely useable
> and should help with space.
How it can be used exactly?
I tried it like this:
--- a/configs/mx6sabresd_defconfig
+++ b/configs/mx6sabresd_defconfig
@@ -6,7 +6,6 @@ CONF
> -Original Message-
> From: Prabhakar Kushwaha
> Sent: 2019年5月22日 20:33
> To: Z.q. Hou ; u-boot@lists.denx.de;
> albert.u.b...@aribaud.net; Priyanka Jain ; York Sun
> ; sriram.d...@nxp.com;
> yamada.masah...@socionext.com; Mingkai Hu ; M.h.
> Lian ; bmeng...@gmail.com
> Subject: RE: [PATC
On Wed, May 22, 2019 at 04:15:47PM +0200, Eugeniu Rosca wrote:
> cc: Yamada-san
>
> I dream of a (Kconfig/Kbuild-assisted) bloaty-like output [1] which
> would point out the culprit configs. This is hardly achievable, but
> looks good on the paper!
>
> CONFIG FILE SIZE
> ---
On Wed, May 22, 2019 at 11:23:11AM -0300, Fabio Estevam wrote:
> On Tue, May 21, 2019 at 11:34 PM Tom Rini wrote:
>
> > As came up in another thread, CONFIG_MMC_TINY may be more widely useable
> > and should help with space.
>
> How it can be used exactly?
>
> I tried it like this:
>
> --- a/c
On 5/22/19 5:15 PM, Tom Rini wrote:
> On Wed, May 22, 2019 at 11:23:11AM -0300, Fabio Estevam wrote:
>> On Tue, May 21, 2019 at 11:34 PM Tom Rini wrote:
>>
>>> As came up in another thread, CONFIG_MMC_TINY may be more widely useable
>>> and should help with space.
>>
>> How it can be used exactly?
Simon,
-Original Message-
From: Simon Glass
Sent: Wednesday, May 22, 2019 6:25 AM
To: U-Boot Mailing List
Cc: Jonathan Hunter ; Stephen Warren
; Stephen Warren ; Tom Warren
Subject: Re: [PATCH v2 0/7] sound: Add sound support for Nyan
Hi Tom,
On Mon, 1 Apr 2019 at 14:38, Simon Glas
Enable I2C via driver model as well as the associated set of U-Boot
commands to allow us interacting with various I2C slave devices.
Signed-off-by: Andreas Dannenberg
Signed-off-by: Vignesh R
Reviewed-by: Lokesh Vutla
---
configs/am65x_evm_a53_defconfig | 4
configs/am65x_evm_r5_defconfig
This series adds the pieces needed to fully configure the TI AM654x EVM
and its associated (optional) daughtercards using a GPIO-based card
presence detection scheme.
Changes since initial submission:
- Re-based onto latest 'master' branch
- Collected all review tags
- Re-tested
Andreas Dannenber
This will allow for downloading and applying overlays from an MMC/SD
boot media based on the overlay_files ENV variable containing a list
of overlay files.
Signed-off-by: Andreas Dannenberg
Reviewed-by: Lokesh Vutla
---
configs/am65x_hs_evm_a53_defconfig | 3 ++-
1 file changed, 2 insertions(+)
From: Vignesh R
K3 devices have I2C IP that is same as OMAP2+ family. Allow driver to be
compiled for ARCH_K3.
Signed-off-by: Vignesh R
Signed-off-by: Andreas Dannenberg
Reviewed-by: Heiko Schocher
Reviewed-by: Lokesh Vutla
---
drivers/i2c/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 d
The AM654x EVM based on the TI K3 family of SoCs have an updated board
detection EEPROM structure, now comprising variable-sized TLV-type
records, containing a superset of what is already being provided on
earlier platforms such as DRA7. Add basic support for parsing the new
data structures contain
Add I2C DT nodes
Signed-off-by: Vignesh R
Reviewed-by: Lokesh Vutla
---
arch/arm/dts/k3-am65-main.dtsi | 44
arch/arm/dts/k3-am65-mcu.dtsi| 11
arch/arm/dts/k3-am65-wakeup.dtsi | 11
arch/arm/dts/k3-am65.dtsi| 6 +
4 files ch
The malloc pool used before relocation is getting tight leading to
out of memory errors doing certain DM-related calls. Since we are
running the A53 SPL out of DDR let's just go ahead and bump its size
as used in U-Boot proper as well as SPL (via Kconfig default value)
from 8KB to 32KB.
Signed-off
The malloc pool used before relocation is getting tight leading to
out of memory errors doing certain DM-related calls. Since we are
running the A53 SPL out of DDR let's just go ahead and bump its size
as used in U-Boot proper as well as SPL (via Kconfig default value)
from 8KB to 32KB.
Signed-off
Enable GPIO driver for PCA953X-compatible I2C-based I/O expander
which includes support for the TCA9554/PCA9554-type expander found
on the AM654 EVM base board.
Signed-off-by: Andreas Dannenberg
Reviewed-by: Lokesh Vutla
---
configs/am65x_evm_a53_defconfig | 2 ++
1 file changed, 2 insertions(+
Enable I2C via driver model as well as the associated set of U-Boot
commands to allow us interacting with various I2C slave devices.
Signed-off-by: Andreas Dannenberg
Reviewed-by: Lokesh Vutla
Acked-by: Andrew F. Davis
---
configs/am65x_hs_evm_a53_defconfig | 4
configs/am65x_hs_evm_r5_de
Only U-Boot specifc DT properties or overrides, must be in -u-boot.dtsi.
Pinctrl nodes does not belong here. Now that pinctrl nodes are in kernel
DT, there is no reason to be keep these in -u-boot.dtsi. Move them to
proper places so that it would ease copying DT entries from kernel DT.
Signed-off-
Enable GPIO driver for PCA953X-compatible I2C-based I/O expander
which includes support for the TCA9554/PCA9554-type expander found
on the AM654 EVM base board.
Signed-off-by: Andreas Dannenberg
Reviewed-by: Lokesh Vutla
Acked-by: Andrew F. Davis
---
configs/am65x_hs_evm_a53_defconfig | 2 ++
To enable the use of an EEPROM-based board detection scheme we need to
be able to access the I2C bus associated with the EEPROMs across all
3 stages of U-Boot: R5 SPL, A53 SPL, and A53 U-Boot (proper). So go
ahead and add/update the wkup_i2c0 peripheral module DTS definitions
and its associated pin
This will allow for downloading and applying overlays from an MMC/SD
boot media based on the overlay_files ENV variable containing a list
of overlay files.
Signed-off-by: Andreas Dannenberg
Reviewed-by: Lokesh Vutla
---
configs/am65x_evm_a53_defconfig | 3 ++-
include/configs/am65x_evm.h |
The AM654 base board has a TCA9554/PCA9554-type GPIO expander on the
wkup_i2c0 bus at address 0x38 that is used to detect the presence of
daughter cards. Add a respective DTS description of this expander
to enable its use.
Signed-off-by: Andreas Dannenberg
Reviewed-by: Lokesh Vutla
---
arch/ar
The board detection scheme employed on various TI EVMs makes use of
SRAM scratch space to share data read from an on-board EEPROM between
the different bootloading stages. Map the associated definition that's
used to locate this data into the SRAM scratch space we use on AM654x.
Signed-off-by: And
The AM654x EVM based on the TI K3 family of SoCs has an updated board
detection EEPROM structure that contains a TLV record of dedicated MAC
addresses rather than a range of MAC addresses as it was used on earlier
platforms such as DRA7. Add a basic function that allows us setting up
Ethernet MAC a
1 - 100 of 177 matches
Mail list logo