> -Original Message-
> From: Luca Ellero
> Sent: 2023年3月22日 0:01
> To: u-boot@lists.denx.de; sba...@denx.de; feste...@gmail.com; dl-uboot-imx
> ; luca.ell...@brickedbrain.com; Ye Li ;
> Peng Fan ; Bough Chen
> Cc: Luca Ellero
> Subject: [PATCH 1/3] dm: adc: add iMX93 ADC support
>
> Thi
Hi Andy,
On 3/15/23 14:26, andy...@sony.com wrote:
> Hi Jaehoon
>
>> commit 4a3ea75de4c5b3053eac326bf1c753ed65df8cb9
>> Author: yuezhang...@sony.com
>> Date: Wed Mar 17 06:44:37 2021 +
>>
>> Revert "mmc: sdhci: set to INT_DATA_END when there are data"
>>
>> This reverts commit 17ea
On Wed, 22 Mar 2023 at 09:36, Masahisa Kojima
wrote:
>
> On Tue, 21 Mar 2023 at 15:42, Heinrich Schuchardt wrote:
> >
> > On 3/20/23 06:54, Masahisa Kojima wrote:
> > > The FMP Payload Header which EDK2 capsule generation scripts
> > > insert contains lowest supported version.
> > > This commit r
On Thu, Mar 09, 2023 at 11:22:11AM -0500, Tom Rini wrote:
> Here we implement usb_gadget_handle_interrupts() but did not include
> so did not have the declaration correct. Fix this
> and add the missing include.
>
> Signed-off-by: Tom Rini
Applied to u-boot/next, thanks!
--
Tom
signature.a
On Thu, Mar 09, 2023 at 11:22:09AM -0500, Tom Rini wrote:
> If we're building U-Boot with LTO, we don't want to use that for
> examples as it's more work than required.
>
> Signed-off-by: Tom Rini
> Reviewed-by: Simon Glass
Applied to u-boot/next, thanks!
--
Tom
signature.asc
Description:
On Thu, Mar 09, 2023 at 11:22:08AM -0500, Tom Rini wrote:
> We did not add a prototype for spl_mmc_get_uboot_raw_sector to
> include/spl.h before, so add and document one now. Correct the incorrect
> prototype in board/advantech/imx8mp_rsb3720a1/imx8mp_rsb3720a1.c and
> ensure that we have spl.h w
On Thu, Mar 09, 2023 at 11:22:07AM -0500, Tom Rini wrote:
> Some platforms were not including which sets the prototype
> for reset_cpu, and in turn had it set wrong. Correct these cases.
>
> Signed-off-by: Tom Rini
Applied to u-boot/next, thanks!
--
Tom
signature.asc
Description: PGP signa
On Mon, Feb 27, 2023 at 05:08:38PM -0500, Tom Rini wrote:
> With clang-15 we now get reported that in the make_flame_tree function,
> neither the missing_count nor depth variables are used, only
> incremenete/decremented. Remove these.
>
> Signed-off-by: Tom Rini
> Reviewed-by: Simon Glass
App
On Mon, Feb 27, 2023 at 05:08:37PM -0500, Tom Rini wrote:
> With clang-15, it is now reported that cont_img_count is unused. This is
> true as the code will increment / reset this counter, but never
> functionally use it. Remove it.
>
> Signed-off-by: Tom Rini
> Reviewed-by: Simon Glass
> Revie
On Mon, Feb 27, 2023 at 05:08:36PM -0500, Tom Rini wrote:
> With clang-15 we now will get warnings such as:
>
> warning: a function declaration without a prototype is deprecated in all
> versions of C [-Wstrict-prototypes]
>
> And it is easy enough to address this warning here, even if we would
On Mon, Feb 27, 2023 at 05:08:35PM -0500, Tom Rini wrote:
> With clang-15 we now will get warnings such as:
>
> warning: a function declaration without a prototype is deprecated in all
> versions of C [-Wstrict-prototypes]
>
> And it is easy enough to address this warning here, as we aren't
> co
On Mon, Feb 27, 2023 at 05:08:34PM -0500, Tom Rini wrote:
> With clang-15 we now will get warnings such as:
>
> warning: a function declaration without a prototype is deprecated in all
> versions of C [-Wstrict-prototypes]
>
> And it is easy enough to address this warning here, as we aren't
> co
On Mon, Feb 27, 2023 at 05:08:33PM -0500, Tom Rini wrote:
> We have a number of places in the code which use the following syntax:
>
> void func(a, b, c)
> int a; /* Does a */
> something_t *b; /* Pointer to b */
> int c; /* Does c */
> {
> ...
> }
>
> Which while not what we documen
Hi All,
When running the sandbox tests, I want to know how to enable eth1 in order to
be able to test network features.
The following command is used to run sandbox tests.
./test/py/test.py -k testname.py
I am specifically interested in running the network tests.
./test/py/test.py -k test_net.py
T
Add M5208EVBE board to CI. This does not use default config due to
limitations of QEMU emulation, instead the timer is switched from
DMA timer to PIT timer and RAMBAR accesses are inhibited.
Local QEMU launch command is as follows:
$ qemu-system-m68k -nographic -machine mcf5208evb -cpu m5208 -bios
The current shell prompt '->' interferes with CI matching on 'bdinfo'
output. When CI test.py attempts to locate memory information in the
'bdinfo' output, it matches on '->' prefix which is identical to the
shell prefix. Switch the prompt to default '=>' one to avoid this
interference.
Suggested-
The QEMU emulation of m68k does not support DMA timer, the only
timer that is supported is the PIT timer. Implement trivial PIT
timer support for m68k.
Signed-off-by: Marek Vasut
---
Cc: Angelo Dureghello
Cc: Huan Wang
Cc: Marek Vasut
Cc: Simon Glass
Cc: Stefan Roese
Cc: Tom Rini
---
V2: Re
The QEMU emulation of m68k does not support RAMBAR accesses,
add Kconfig option which inhibits those accesses, so that
U-Boot can be started in m68k QEMU for CI testing purpopses
until QEMU emulation improves.
Signed-off-by: Marek Vasut
---
Cc: Angelo Dureghello
Cc: Huan Wang
Cc: Marek Vasut
C
There is an existing CONFIG_MCFTMR Kconfig symbol,
use it and drop all other instances of CFG_MCFTMR.
This duality is likely a result of bogus conversion
to Kconfig.
Fixes: 7ff7b46e6ce ("m68k: rename CONFIG_MCFTMR to CFG_MCFTMR")
Signed-off-by: Marek Vasut
---
Cc: Angelo Dureghello
Cc: Huan Wang
On Tue, Feb 21, 2023 at 03:33:20PM -0800, Aditya Kumar wrote:
> The variable gets dropped by clang compiler in an optimized builds.
> Adding attribute((used)) allows the symbol to be preserved. Similar
> changes have been proposed in the past e.g.,
> 569524741a01e1a96fc2b75dd7e5d12e41ce6c2b for ll
On Thu, Mar 16, 2023 at 10:53:29AM +0800, Yanhong Wang wrote:
> Add initial device tree for the JH7110 RISC-V SoC.
>
> Signed-off-by: Yanhong Wang
> Tested-by: Conor Dooley
> + S7_0: cpu@0 {
> + compatible = "sifive,s7", "riscv";
> + reg = <0>
Hi Tom,
On Wed, Mar 22, 2023 at 5:12 PM Tom Rini wrote:
> Is this for master? If so, OK, we'll pick it up. If not, NAK, these are
> all bootph- properties now, and need to go upstream too.
Yes, this is for master as it is a regression.
Thanks.
On Wed, Mar 22, 2023 at 04:59:31PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam
>
> After the conversion to DM_SERIAL in commit 01f372d8d62b ("udoo_neo:
> Select DM_SERIAL and drop iomux board level init") the SPL log is gone
> and the U-Boot proper log becomes incomplete:
>
> Core: 80 de
Numeric return values may cause strange errors line:
exit not allowed from main input shell.
Signed-off-by: Pali Rohár
---
Rename r to ret.
---
cmd/mmc.c | 18 +-
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/cmd/mmc.c b/cmd/mmc.c
index c79d9407986d..539d3e0bf768
From: Fabio Estevam
After the conversion to DM_SERIAL in commit 01f372d8d62b ("udoo_neo:
Select DM_SERIAL and drop iomux board level init") the SPL log is gone
and the U-Boot proper log becomes incomplete:
Core: 80 devices, 18 uclasses, devicetree: separate
MMC: FSL_SDHC: 1, FSL_SDHC: 2
Loadi
Given the number of jobs in CI we have which use python and pip install
packages, we should do this once in the Dockerfile, in order to populate
the cache. We let each job continue to create and use the virtual
environments they need to facilitate making updates to these
environments easier.
Signe
Signed-off-by: Tom Rini
---
.azure-pipelines.yml | 2 +-
.gitlab-ci.yml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 5594a67d6b52..71b6ba4bcf01 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -2,7 +2
Hi
On 3/22/23 12:26, haibo.c...@nxp.com wrote:
From: Haibo Chen
dm_gpio_set_dir_flags() will clear GPIOD_MASK_DIR and set new flags.
But there are cases like i2c_deblock_gpio_loop() will do like this:
-first conifg GPIO(SDA) output with GPIOD_ACTIVE_LOW
dm_gpio_set_dir_flags(pin, GPIOD_IS_OUT
On Wednesday 22 March 2023 18:59:45 Pali Rohár wrote:
> On Wednesday 22 March 2023 13:45:56 Martin Rowe wrote:
> > On Wed, 22 Mar 2023 at 12:38, Martin Rowe wrote:
> > >
> > > On Tue, 21 Mar 2023 at 08:08, Pali Rohár wrote:
> > >>
> > >> On Tuesday 21 March 2023 08:01:16 Martin Rowe wrote:
> > >>
Remove test on CONFIG_LMB_MEMORY_REGIONS introduced by commit
7c1860fce4e3 ("lmb: Fix lmb property's defination under struct lmb").
This code in lmb_init() is strange, because if CONFIG_LMB_USE_MAX_REGIONS
and CONFIG_LMB_MEMORY_REGIONS are not defined, the implicit #else is empty
and the required
Add the max number of region in lmb dump; this patch allows to
check the limit for usage of the LMB regions, memory or reserved.
Result on STM32MP157C-DK2:
STM32MP> bdinfo
.
lmb_dump_all:
memory.cnt = 0x1 / max = 0x2
memory[0] [0xc000-0xdfff], 0x2000 bytes flags: 0
reserve
On Wednesday 22 March 2023 11:14:42 Martin Rowe wrote:
> On Tue, 21 Mar 2023 at 17:26, Pali Rohár wrote:
>
> > On Tuesday 21 March 2023 08:34:24 Martin Rowe wrote:
> > > On Mon, 20 Mar 2023 at 21:33, Pali Rohár wrote:
> > >
> > > > On Monday 20 March 2023 18:45:01 Pali Rohár wrote:
> > > > > On
On Tue, Mar 14, 2023 at 05:24:26PM -0700, Tony Dinh wrote:
> To make sure the panic and the reset messages will go out, console flush()
> should be used.
> Sleep periods do not work in early u-boot phase when timer driver is not
> initialized yet.
>
> Reference: https://lists.denx.de/pipermail/
On Mon, Mar 13, 2023 at 02:27:15PM +0530, Annam Sai Manisha wrote:
> From: annsai01
>
> Remapping console logs from soc uart2 (s1 terminal)
> to css non-secure (uart_ap terminal)
>
> Change-Id: I554f3ab6eb8439c54f5568c47e48f1543ac67b44
> Signed-off-by: Annam Sai Manisha
Applied to u-boot/mast
On Fri, Mar 10, 2023 at 02:52:30PM +0100, Sebastian Andrzej Siewior wrote:
> Binary files, which are committed to a private fork of this repository,
> will be subject to line feed substitution unless marked as binary.
>
> Mark .bin files as binary.
>
> Signed-off-by: Sebastian Andrzej Siewior
On Wed, Mar 08, 2023 at 09:49:54AM +0100, Patrick Delaunay wrote:
> No need to mount a too small partition to handle a EXT4 file system.
>
> This patch add a test on partition size before to read the
> SUPERBLOCK_SIZE buffer and avoid error latter in fs_devread() function.
>
> Signed-off-by: Pat
On Thu, Jan 12, 2023 at 10:04:46PM -0300, Fabio Estevam wrote:
> As explained in the text at the bottom of the page
> https://source.codeaurora.org/external/qoriq/qoriq-yocto-sdk/boot-format:
>
> "QUIC repositories on this site will not receive any updates after
> March 31, 2022, and will be del
On Sat, Mar 11, 2023 at 09:24:23PM +0530, Nikhil M Jain wrote:
> Setting sf default mode to 0x3 breaks sf update when we do SF read
> through u-boot console.
>
> This issue arises when we do a splash image through OSPI flash media,
> to fix this set the default mode to 0x0.
>
> Fixes: 04150400c9
On Wed, Mar 08, 2023 at 09:42:57AM +0530, Vignesh Raghavendra wrote:
> Setting RX flow error handling will stall the channel until descriptors
> are available to move RX data. Setting this bit causes issues when
> tearing down ethernet DMA channel at the end of TFTP transfer as
> unrelated network
On Thu, Mar 02, 2023 at 07:40:47PM +0530, kaml...@ti.com wrote:
> From: Kamlesh Gurudasani
>
> On high security devices, ROM enables firewalls to protect the OCSRAM
> region access during bootup. Only after TIFS has started (and had
> time to disable the OCSRAM firewall region) will we have writ
On Thu, Mar 02, 2023 at 07:40:46PM +0530, kaml...@ti.com wrote:
> From: Kamlesh Gurudasani
>
> On high security devices, ROM enables firewalls to protect the OCSRAM
> region access during bootup. Only after TIFS has started (and had
> time to disable the OCSRAM firewall region) will we have writ
On Wednesday 22 March 2023 13:45:56 Martin Rowe wrote:
> On Wed, 22 Mar 2023 at 12:38, Martin Rowe wrote:
> >
> > On Tue, 21 Mar 2023 at 08:08, Pali Rohár wrote:
> >>
> >> On Tuesday 21 March 2023 08:01:16 Martin Rowe wrote:
> >> > On Mon, 20 Mar 2023 at 17:33, Pali Rohár wrote:
> >> >
> >> > >
Hi
>
> Hi,
>
> On Tue, Mar 21, 2023 at 08:57:18AM +0100, Christian Gmeiner wrote:
> > Am So., 4. Dez. 2022 um 22:22 Uhr schrieb Pierre-Clément Tosi
> > :
> > >
> > > Hi,
> > >
> > > On Fri, Dec 02, 2022 at 08:38:37PM +0100, s...@geanix.com wrote:
> > > >
> > > > Quoting Pierre-Clément Tosi :
> > >
> > When U-Boot is the second-stage bootloader, PCI is already set up. We
> > cannot read the regions from the device tree. There is no point anyway,
> > since PCI devices have already been allocated according to the regions
> > and it is not safe for U-Boot to make any changes.
> >
> > Signed-off-
In order for i2c_num==4 and 5 to stay invalid for non-imx8mp SOCs, the
i2c_ccgr[] array must be sized by the number of initializers present,
not with a hard-coded 6 which would implicitly initialize the last two
elements with zeroes.
Also, the bounds check is off-by-one.
Fixes: c92c3a4453b8 "ARM:
On Tue, Mar 21, 2023 at 03:31:43PM -0400, Tom Rini wrote:
> Update to using the latest "Jammy" tag as our base.
>
> Signed-off-by: Tom Rini
Applied to u-boot/next, thanks!
--
Tom
signature.asc
Description: PGP signature
On Tue, Mar 21, 2023 at 03:31:42PM -0400, Tom Rini wrote:
> Given efforts to add an m68k target to CI, build qemu for it.
>
> Signed-off-by: Tom Rini
> Reviewed-by: Marek Vasut
Applied to u-boot/next, thanks!
--
Tom
signature.asc
Description: PGP signature
On Fri, Mar 10, 2023 at 09:53:03AM +, Peter Hoyes wrote:
> From: Peter Hoyes
>
> To conserve bandwidth and potentially avoid rate limits, allow a local
> mirror of Docker Hub to be specified globally. The default value is
> unchanged.
>
> Signed-off-by: Peter Hoyes
> Reviewed-by: Simon Gla
On Fri, Mar 10, 2023 at 09:53:02AM +, Peter Hoyes wrote:
> From: Peter Hoyes
>
> The default behavior of Gitlab runners is to only run jobs which match
> the configured tag, although there is an option to run untagged jobs
> [1].
>
> To support running the CI in more complex environments wh
On Fri, Mar 03, 2023 at 02:22:25AM +0100, Marek Vasut wrote:
> Copy build artifacts for all test.py tests, so they show up in
> artifacts storage for later inspection. The test.py tests output
> in CI is basically useless, but it is far more useful in the html
> output for analysis and debugging.
On Tue, Feb 28, 2023 at 03:28:49PM -0500, Tom Rini wrote:
> The default pytest cache directory is in a read-only directory in Azure,
> which results in a warning on the build page. Use the pytest command
> line option to set the cache dir to somewhere writable.
>
> Signed-off-by: Tom Rini
> Revi
On Tue, Feb 28, 2023 at 03:28:48PM -0500, Tom Rini wrote:
> Enable use of the python-azurepipelines package which provides automatic
> formatting and uploading of the pytest output.
>
> Signed-off-by: Tom Rini
> Reviewed-by: Simon Glass
Applied to u-boot/next, thanks!
--
Tom
signature.asc
Hi,
On Mon, 20 Mar 2023 11:45:36 +, Christian Hewitt wrote:
> Amlogic documentation spans U-Boot support from 2015-current resulting
> in older content being harder to follow. And due to many international
> contributors the docs also contain grammar quirks.
>
> This series reworks all board
On Wed, 22 Mar 2023 at 12:38, Martin Rowe wrote:
>
> On Tue, 21 Mar 2023 at 08:08, Pali Rohár wrote:
>>
>> On Tuesday 21 March 2023 08:01:16 Martin Rowe wrote:
>> > On Mon, 20 Mar 2023 at 17:33, Pali Rohár wrote:
>> >
>> > > On Monday 20 March 2023 11:48:59 Martin Rowe wrote:
>> > > > On Sun, 19
eil
>
> The following changes since commit 88e08fc5f6e508eac46cd1dfb0379b11ae032c0a:
>
> Prepare v2023.04-rc4 (2023-03-13 20:52:48 -0400)
>
> are available in the Git repository at:
>
> https://source.denx.de/u-boot/custodians/u-boot-amlogic.git
> tags/u-
On Wed, Mar 22, 2023 at 09:51:32AM +0100, Stefan Herbrechtsmeier wrote:
> Am 21.03.2023 um 16:54 schrieb Tom Rini:
> > On Tue, Mar 21, 2023 at 04:53:22PM +0100, Stefan Herbrechtsmeier wrote:
> > > Am 21.03.2023 um 16:35 schrieb Tom Rini:
> > > > On Tue, Mar 21, 2023 at 08:43:07AM +0100, Stefan Herb
Hi,
On Tue, Mar 21, 2023 at 08:57:18AM +0100, Christian Gmeiner wrote:
> Am So., 4. Dez. 2022 um 22:22 Uhr schrieb Pierre-Clément Tosi
> :
> >
> > Hi,
> >
> > On Fri, Dec 02, 2022 at 08:38:37PM +0100, s...@geanix.com wrote:
> > >
> > > Quoting Pierre-Clément Tosi :
> > >
> > > > Add a check for ca
On Tue, 21 Mar 2023 at 08:08, Pali Rohár wrote:
> On Tuesday 21 March 2023 08:01:16 Martin Rowe wrote:
> > On Mon, 20 Mar 2023 at 17:33, Pali Rohár wrote:
> >
> > > On Monday 20 March 2023 11:48:59 Martin Rowe wrote:
> > > > On Sun, 19 Mar 2023 at 16:22, Pali Rohár wrote:
> > > >
> > > > > On S
Reviewed-by: Alexander Kochetkov
> 22 марта 2023 г., в 14:26, haibo.c...@nxp.com написал(а):
>
> From: Haibo Chen
>
> dm_gpio_set_dir_flags() will clear GPIOD_MASK_DIR and set new flags.
> But there are cases like i2c_deblock_gpio_loop() will do like this:
>
> -first conifg GPIO(SDA) output w
From: Haibo Chen
dm_gpio_set_dir_flags() will clear GPIOD_MASK_DIR and set new flags.
But there are cases like i2c_deblock_gpio_loop() will do like this:
-first conifg GPIO(SDA) output with GPIOD_ACTIVE_LOW
dm_gpio_set_dir_flags(pin, GPIOD_IS_OUT |
GPIOD_ACTIVE_LOW |
On Tue, 21 Mar 2023 at 17:26, Pali Rohár wrote:
> On Tuesday 21 March 2023 08:34:24 Martin Rowe wrote:
> > On Mon, 20 Mar 2023 at 21:33, Pali Rohár wrote:
> >
> > > On Monday 20 March 2023 18:45:01 Pali Rohár wrote:
> > > > On Monday 20 March 2023 12:01:03 Martin Rowe wrote:
> > > > > On Sun, 19
-13 20:52:48 -0400)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-amlogic.git
tags/u-boot-amlogic-20230322
for you to fetch changes up to de58694f0d5431627d7389f50a6b2034a682ba24:
ARM: meson: odroid-go-ultra: setup PMIC regulators are board init
On 22 March 2023 01:37:53 GMT, yanhong wang
wrote:
>
>
>On 2023/3/21 5:25, Conor Dooley wrote:
>> On Thu, Mar 16, 2023 at 10:53:31AM +0800, Yanhong Wang wrote:
>>> Add initial device tree for StarFive VisionFive v2 board.
>>>
>>> Signed-off-by: Yanhong Wang
>>> Tested-by: Conor Dooley
>>
>
Am 21.03.2023 um 16:54 schrieb Tom Rini:
On Tue, Mar 21, 2023 at 04:53:22PM +0100, Stefan Herbrechtsmeier wrote:
Am 21.03.2023 um 16:35 schrieb Tom Rini:
On Tue, Mar 21, 2023 at 08:43:07AM +0100, Stefan Herbrechtsmeier wrote:
Am 20.03.2023 um 18:01 schrieb Tom Rini:
On Fri, Mar 17, 2023 at 01
From: Stefan Herbrechtsmeier
Ensure that a freshly written fat file with a lower case filename which
fits into the upper case 8.3 short filename is not mangeled with a tilde
and number.
Signed-off-by: Stefan Herbrechtsmeier
---
test/py/tests/test_fs/test_ext.py | 36 ++
From: Stefan Herbrechtsmeier
Read the phy mode of the external phy from the device tree if available
and check that it is a RGMII variant.
Signed-off-by: Stefan Herbrechtsmeier
---
Changes in v2:
- Check that the external phy mode is a RGMII variant
drivers/net/phy/xilinx_gmii2rgmii.c | 9 +
On 3/20/23 16:55, Stefan Herbrechtsmeier wrote:
From: Stefan Herbrechtsmeier
Read the phy mode of the external phy from the device tree if available.
Signed-off-by: Stefan Herbrechtsmeier
---
drivers/net/phy/xilinx_gmii2rgmii.c | 5 -
1 file changed, 4 insertions(+), 1 deletion(-)
67 matches
Mail list logo