Hi Zong,
> From: Leo Yu-Chi Liang(梁育齊)
> Sent: Monday, February 06, 2023 3:58 PM
> To: Simon Glass
> Cc: U-Boot Mailing List ; Rick Jian-Zhi Chen(陳建志)
> ; zong...@sifive.com; vincent.c...@sifive.com
> Subject: Re: Docs for RISC-V
>
> Hi Simon,
>
> On Thu, Feb 02, 2023 at 10:25:36AM -0700, Simon
Hi Jaehoon,
On Mon, 6 Feb 2023 at 06:05, Jaehoon Chung wrote:
>
> Hi,
>
> > -Original Message-
> > From: Loic Poulain
> > Sent: Thursday, January 26, 2023 6:24 PM
> > To: s...@chromium.org; peng@nxp.com; jh80.ch...@samsung.com
> > Cc: u-boot@lists.denx.de; Loic Poulain
> > Subject:
On Fri, 27 Jan 2023 at 15:30, Simon Glass wrote:
>
> Hi Loic,
>
> On Thu, 26 Jan 2023 at 02:24, Loic Poulain wrote:
> >
> > Verify that erasing blocks does not impact adjacent ones.
> > - Write four blocks [0 1 2 3]
> > - Erase two blocks [ 1 2 ]
> > - Verify [0 1 2 3 ]
> >
> > Signed-off-by: Loi
On Tue, 2023-02-07 at 11:39 -0700, Simon Glass wrote:
> Hi Jan,
>
> On Tue, 7 Feb 2023 at 08:39, Jan Lübbe wrote:
> >
> > On Tue, 2023-02-07 at 06:38 -0700, Simon Glass wrote:
> > > Hi Jan,
> > >
> > > On Tue, 7 Feb 2023 at 04:56, Jan Lübbe wrote:
> > >
[snip]
> > > Thanks for the pointer. I
The Linux kernel device tree already specifies the device to be used for
boot console output with a stdout-path property under /chosen.
Commit 36b661dc919da ("Merge branch 'next'") re-added the console
setting that commit bede82f750752 ("configs: imx8mn_bsh_smm_s2: remove
console from bootargs") h
On Tue, 07 Feb 2023 17:18:27 +,
Paul Liu wrote:
>
> Hi Marc,
>
> I think you are the author. I'm just making some minor fixes and
> then upstreaming to the mailing list. What is the correct way to
> make the Signed-off-by list?
In general, and unless you have completely rewritten the patch
Am 2023-02-08 08:38, schrieb Oliver Graute:
if the rtc button cell is on low voltage this can result in a permanent
bootloop in u-boot because V2F Register is permanent set.
### Warning: temperature compensation has stopped
### Warning: Voltage low, data is invalid
resetting ...
With this patch
On Wed, Feb 8, 2023 at 4:07 PM Rick Chen wrote:
>
> Hi Zong,
>
> > From: Leo Yu-Chi Liang(梁育齊)
> > Sent: Monday, February 06, 2023 3:58 PM
> > To: Simon Glass
> > Cc: U-Boot Mailing List ; Rick Jian-Zhi Chen(陳建志)
> > ; zong...@sifive.com; vincent.c...@sifive.com
> > Subject: Re: Docs for RISC-V
On lun., févr. 06, 2023 at 00:50, Safae Ouajih wrote:
> Update the Android documentation to describe version 3 and 4 of boot
> image header.
>
> Signed-off-by: Safae Ouajih
> ---
Reviewed-by: Mattijs Korpershoek
> doc/android/boot-image.rst | 13 -
> 1 file changed, 12 insertions
On 2/7/23 15:50, Tom Rini wrote:
On Tue, Feb 07, 2023 at 08:39:38AM +0100, Heinrich Schuchardt wrote:
On 2/7/23 01:00, Tom Rini wrote:
On Tue, Feb 07, 2023 at 12:54:03AM +0100, Heinrich Schuchardt wrote:
On 2/6/23 01:53, Simon Glass wrote:
This converts 3 usages of this option to the non-
Hi Loic,
> -Original Message-
> From: Loic Poulain
> Sent: Wednesday, February 8, 2023 5:09 PM
> To: Jaehoon Chung
> Cc: s...@chromium.org; peng@nxp.com; u-boot@lists.denx.de
> Subject: Re: [PATCH v2 2/3] mmc: erase: Use TRIM erase when available
>
> Hi Jaehoon,
>
> On Mon, 6 Feb 2
This series achieves refactoring of dwc3-generic.
First, dwc3-generic allows DT controller nodes to be children of glue nodes,
but outside of glue nodes.
To achieve this goal, define a glue-specific function to get controller node,
look up more reference clocks in the controller node, and initial
The most of devicetree has the following USB node structure.
The controller node is placed as a child node of the glue node.
Current dwc3-generic driver works on this premise.
glue {
/* glue node */
usb {
/* controller node */
};
};
However, UniPhier or
From: Marek Vasut
There are currently four disparate placement possibilities of DWC3
reference clock phandle in SoC DTs:
- in top level glue node, with generic subnode without clock (ZynqMP)
- in top level generic node, with no subnode (i.MX8MQ)
- in generic subnode, with other clock in top level
Same as the reset cotnrol, should add a clock initialization in child DT
node, if the glue node doesn't have any clocks.
Signed-off-by: Kunihiko Hayashi
Reviewed-by: Marek Vasut
---
drivers/usb/dwc3/dwc3-generic.c | 6 ++
1 file changed, 6 insertions(+)
diff --git a/drivers/usb/dwc3/dwc3-g
The USB SS-PHY needs its own clock, however, some clocks don't have
clock gates. Define missing clock entries for the PHY as reference
clock.
Signed-off-by: Kunihiko Hayashi
---
drivers/clk/uniphier/clk-uniphier-sys.c | 5 +
1 file changed, 5 insertions(+)
diff --git a/drivers/clk/uniphier/
Add reset control support in USB glue logic. This needs to control
the external clocks and resets for the logic before accessing the
glue logic.
The USB dm tree when using dwc3-generic is the following:
USB glue
+-- controller (need controller-reset)
+-- controller-reset (need
In order to allow external SoC-dependent glue drivers to use dwc3-generic
functions, push the glue structures and export the functions to a header
file.
The exported structures and functions are:
- struct dwc3_glue_data
- struct dwc3_glue_ops
- dwc3_glue_bind()
- dwc3_glue_probe()
- dwc3_glue_rem
dwc3-uniphier depends on xhci-dwc3 framework, however, it is preferable
to use dwc3-generic.
This driver calls the exported dwc3-generic functions and redefine
the SoC-dependent operations to fit dwc3-generic.
Signed-off-by: Kunihiko Hayashi
Reviewed-by: Marek Vasut
---
drivers/usb/dwc3/Kconfi
Add the size of regs property to the glue structure to correctly
specify the register region to map.
Signed-off-by: Kunihiko Hayashi
Reviewed-by: Marek Vasut
---
drivers/usb/dwc3/dwc3-generic.c | 2 +-
drivers/usb/dwc3/dwc3-generic.h | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff
Replacing with dwc3-generic, no need USB_XHCI_DWC3 anymore.
Signed-off-by: Kunihiko Hayashi
Reviewed-by: Marek Vasut
---
configs/uniphier_v7_defconfig | 1 -
configs/uniphier_v8_defconfig | 1 -
2 files changed, 2 deletions(-)
diff --git a/configs/uniphier_v7_defconfig b/configs/uniphier_v7_de
Add USB3 PHY driver support to control clocks and resets for the phy.
Signed-off-by: Kunihiko Hayashi
---
drivers/phy/socionext/Kconfig | 8 ++
drivers/phy/socionext/Makefile| 1 +
drivers/phy/socionext/phy-uniphier-usb3.c | 93 +++
3 files changed,
> Am 08.02.2023 um 09:32 schrieb Michael Walle :
>
> Am 2023-02-08 08:38, schrieb Oliver Graute:
>> if the rtc button cell is on low voltage this can result in a permanent
>> bootloop in u-boot because V2F Register is permanent set.
>> ### Warning: temperature compensation has stopped
>> ### Warn
Consistently use 'if (CONFIG_IS_ENABLED(PARTITION_TYPE_GUID))' instead of
mix of ifdef and IS_ENABLED. This deals with xPL variants of the config
option and trims ifdeffery.
Signed-off-by: Marek Vasut
---
Cc: Patrice Chotard
Cc: Patrick Delaunay
Cc: Tom Rini
---
env/mmc.c | 6 ++
1 file c
Apply the GPT U-Boot environment GUID type look up only on eMMC user
HW partition, do not apply the look up on eMMC boot HW partitions as
mmc_offset_try_partition() assumes either SD partitions or eMMC user
HW partition.
This fixes environment operation on systems where CONFIG_SYS_MMC_ENV_PART
is
Add support for Data Modul i.MX8M Plus eDM SBC board. This is an
evaluation board for various custom display units. Currently
supported are serial console, ethernet, eMMC, SD, SPI NOR, USB.
Signed-off-by: Marek Vasut
---
Cc: Fabio Estevam
Cc: Peng Fan
Cc: Stefano Babic
---
V2: Rebase on curren
Am 2023-02-08 12:29, schrieb Oliver Graute:
Am 08.02.2023 um 09:32 schrieb Michael Walle :
Am 2023-02-08 08:38, schrieb Oliver Graute:
if the rtc button cell is on low voltage this can result in a
permanent
bootloop in u-boot because V2F Register is permanent set.
### Warning: temperature comp
On 2/5/23 17:30, Simon Glass wrote:
Talks are a great way to learn about U-Boot and have been lost now that
the Denx Wiki has gone away.
These are stored at elinux.org so link to that .
Signed-off-by: Simon Glass
---
doc/index.rst | 1 +
doc/learn/index.rst | 9 +
doc/lear
The eficonfig command invokes functions implemented in common/menu.c like
* menu_default_set()
* menu_get_choice()
* menu_destroy()
* menu_item_add()
Fixes: 87d791423ac6 ("eficonfig: menu-driven addition of UEFI boot option")
Signed-off-by: Heinrich Schuchardt
---
cmd/Kconfig | 1 +
1 file chan
Hi Tom,
We currently face an issue on our apalis-imx8 machine, that is not able
to boot with a ramdisk. What happens is that there are all 8 of 8 LMBs
reserved and fdt tries to allocate one more, probably for relocation.
I now stumbled on this recent patch and noticed that in my understanding
thi
On 2023/2/8 01:27, Jonas Karlman wrote:
Newer DRAM initialization blobs from vendor can encode sdram info in a
new version 3 format. The new format makes use of more bits in sys_reg3
compared to the version 2 format.
Add basic support for detecting the version 3 format and decoding the
high bi
On 2023/2/8 01:27, Jonas Karlman wrote:
Add a second dram bank of usable memory beyond the blob of space for
peripheral near 4GB. Any memory that exists beyond the 4GB mark is added
to the second bank.
Signed-off-by: Jonas Karlman
Reviewed-by: Kever Yang
Thanks,
- Kever
---
v2:
- Change C
Hi Simon,
On 2023-02-07 05:02, Simon Glass wrote:
> Hi Jonas,
>
> On Sun, 5 Feb 2023 at 13:21, Jonas Karlman wrote:
>>
>> Rockchip SoCs typically use U-Boot TPL to initialize DRAM, then jumps
>> back to boot-rom to load the next stage of the boot flow, U-Boot SPL.
>>
>> For RK356x there is curre
On Wed, Feb 08, 2023 at 02:33:58PM +, Philippe Schenker wrote:
> Hi Tom,
>
> We currently face an issue on our apalis-imx8 machine, that is not able
> to boot with a ramdisk. What happens is that there are all 8 of 8 LMBs
> reserved and fdt tries to allocate one more, probably for relocation.
On Wed, Feb 08, 2023 at 08:37:15AM +0100, Sjoerd Simons wrote:
> On Mon, 2023-02-06 at 13:04 -0500, Tom Rini wrote:
> > On Thu, Jan 19, 2023 at 09:38:19AM +0100, Sjoerd Simons wrote:
> >
> > > In various cases logical memory blocks are coalesced; As a result
> > > doing
> > > a strict check whethe
On Wed, 2023-02-08 at 09:54 -0500, Tom Rini wrote:
> On Wed, Feb 08, 2023 at 02:33:58PM +, Philippe Schenker wrote:
>
> > Hi Tom,
> >
> > We currently face an issue on our apalis-imx8 machine, that is not
> > able
> > to boot with a ramdisk. What happens is that there are all 8 of 8
> > LMBs
On Wed, Feb 08, 2023 at 03:13:31PM +, Philippe Schenker wrote:
> On Wed, 2023-02-08 at 09:54 -0500, Tom Rini wrote:
> > On Wed, Feb 08, 2023 at 02:33:58PM +, Philippe Schenker wrote:
> >
> > > Hi Tom,
> > >
> > > We currently face an issue on our apalis-imx8 machine, that is not
> > > abl
As explained by Philippe Schenker, I was misinterpreting what happened
in the case where we do not set LMB_USE_MAX_REGIONS and so had
re-introduced the problem I was attempting to more widely resolve.
This reverts commit 007ae5d108a37564905ea1588cb279f3a522cc3d.
Reported-by: Philippe Schenker
Si
On Wed, Feb 08, 2023 at 12:32:43PM +0100, Marek Vasut wrote:
> Consistently use 'if (CONFIG_IS_ENABLED(PARTITION_TYPE_GUID))' instead of
> mix of ifdef and IS_ENABLED. This deals with xPL variants of the config
> option and trims ifdeffery.
>
> Signed-off-by: Marek Vasut
> ---
> Cc: Patrice Chota
Hi Quentin,
On 2023/2/6 19:26, Quentin Schulz wrote:
Hi Jonas,
On 2/5/23 21:21, Jonas Karlman wrote:
Rockchip SoCs typically use U-Boot TPL to initialize DRAM, then jumps
back to boot-rom to load the next stage of the boot flow, U-Boot SPL.
For RK356x there is currently no support to initiali
Hi Kever,
On 2/8/23 16:41, Kever Yang wrote:
Hi Quentin,
On 2023/2/6 19:26, Quentin Schulz wrote:
Hi Jonas,
On 2/5/23 21:21, Jonas Karlman wrote:
Rockchip SoCs typically use U-Boot TPL to initialize DRAM, then jumps
back to boot-rom to load the next stage of the boot flow, U-Boot SPL.
For R
From: Frieder Schrempf
There was a conflict between the following two commits, that wasn't
resolved correctly. Fix this.
a93985ddfcc3 ("doc: sl-mx8mm: Update the NXP TF-A source reference")
f0f461287eff ("imx: Suggest the NXP ATF github repo")
Signed-off-by: Frieder Schrempf
Cc: Heinrich Schuc
On Wed, 8 Feb 2023 at 06:02, Heinrich Schuchardt
wrote:
>
> The eficonfig command invokes functions implemented in common/menu.c like
>
> * menu_default_set()
> * menu_get_choice()
> * menu_destroy()
> * menu_item_add()
>
> Fixes: 87d791423ac6 ("eficonfig: menu-driven addition of UEFI boot option"
On Wed, 8 Feb 2023 at 08:19, Tom Rini wrote:
>
> As explained by Philippe Schenker, I was misinterpreting what happened
> in the case where we do not set LMB_USE_MAX_REGIONS and so had
> re-introduced the problem I was attempting to more widely resolve.
>
> This reverts commit 007ae5d108a37564905e
On 08/02/2023 13:20, Frieder Schrempf wrote:
From: Frieder Schrempf
There was a conflict between the following two commits, that wasn't
resolved correctly. Fix this.
a93985ddfcc3 ("doc: sl-mx8mm: Update the NXP TF-A source reference")
f0f461287eff ("imx: Suggest the NXP ATF github repo")
Sign
Hello,
On Fri, Jan 27, 2023 at 08:54:55AM -0500, Tom Rini wrote:
> On Fri, Jan 27, 2023 at 02:00:12PM +0100, Michal Suchanek wrote:
> > It is reported that in some configurations it is not possible to boot
> > because u-boot runs out of lmbs.
> >
> > commit 06d514d77c ("lmb: consider EFI memory m
On Wed, Feb 08, 2023 at 07:24:25PM +0100, Francesco Dolcini wrote:
> Hello,
>
> On Fri, Jan 27, 2023 at 08:54:55AM -0500, Tom Rini wrote:
> > On Fri, Jan 27, 2023 at 02:00:12PM +0100, Michal Suchanek wrote:
> > > It is reported that in some configurations it is not possible to boot
> > > because u
On Fri, Jan 27, 2023 at 02:00:12PM +0100, Michal Suchanek wrote:
> It is reported that in some configurations it is not possible to boot
> because u-boot runs out of lmbs.
>
> commit 06d514d77c ("lmb: consider EFI memory map") increases lmb usage,
> hence is likely the cause of the lmb overflow.
Hi Filip,
On Wed, 18 Jan 2023 at 09:03, Filip Žaludek wrote:
>
>
>
> Hi Michal,
>
> thanks for testing! Do you consider keyboard as working once it is detected
> without
> 'usb_kbd usb_kbd: Timeout poll on interrupt endpoint', or judging from
> subsequent
> typing? Note that issue is reproduc
Hi Tom,
On Tue, 7 Feb 2023 at 17:10, Tom Rini wrote:
>
> On Tue, Feb 07, 2023 at 03:25:16PM -0700, Simon Glass wrote:
> > Hi Loic,
> >
> > On Tue, 7 Feb 2023 at 14:47, Loic Poulain wrote:
> > >
> > > Hi Simon,
> > >
> > > On Tue, 7 Feb 2023 at 05:05, Simon Glass wrote:
> > > >
> > > > Hi Loic,
Hi Tom,
On Tue, 7 Feb 2023 at 18:37, Tom Rini wrote:
>
> On Wed, Feb 01, 2023 at 01:19:12PM -0700, Simon Glass wrote:
>
> > Sometimes the Makefile rules or source code refers to Kconfig options
> > which don't exist. Update the moveconfig tool to check this and produce
> > a series of reports abo
On Wed, Feb 08, 2023 at 11:28:22AM -0700, Simon Glass wrote:
> Hi Tom,
>
> On Tue, 7 Feb 2023 at 18:37, Tom Rini wrote:
> >
> > On Wed, Feb 01, 2023 at 01:19:12PM -0700, Simon Glass wrote:
> >
> > > Sometimes the Makefile rules or source code refers to Kconfig options
> > > which don't exist. Upd
On Wed, Feb 08, 2023 at 11:28:21AM -0700, Simon Glass wrote:
> Hi Tom,
>
> On Tue, 7 Feb 2023 at 17:10, Tom Rini wrote:
> >
> > On Tue, Feb 07, 2023 at 03:25:16PM -0700, Simon Glass wrote:
> > > Hi Loic,
> > >
> > > On Tue, 7 Feb 2023 at 14:47, Loic Poulain wrote:
> > > >
> > > > Hi Simon,
> > >
First, this test depends on CONFIG_LMB_USE_MAX_REGIONS, so add that as a
test before building. Second, instead of using a hard-coded value of 8,
which is the default of CONFIG_LMB_USE_MAX_REGIONS previously, use that
directly and update the comments. The only trick here is that one part
of the test
Hello,
On Wed, Jan 18, 2023 at 05:01:12PM +0100, Filip Žaludek wrote:
>
>
> Hi Michal,
>
> thanks for testing! Do you consider keyboard as working once it is detected
> without
> 'usb_kbd usb_kbd: Timeout poll on interrupt endpoint', or judging from
> subsequent
> typing? Note that issue is
> Date: Wed, 8 Feb 2023 19:45:36 +0100
> From: Michal Suchánek
>
> Hello,
>
> On Wed, Jan 18, 2023 at 05:01:12PM +0100, Filip Žaludek wrote:
> >
> >
> > Hi Michal,
> >
> > thanks for testing! Do you consider keyboard as working once it is
> > detected without
> > 'usb_kbd usb_kbd: Timeout p
Hi,
Patch 1 fixes issue reported in [1], which happens on odroid-u2 and
probably other devices in that family. Re-adding this quirk was
discussed already by Jaehoon and Andy in the patch that
(re-)introduced this issue [2], but I do not think a patch was sent
for it.
Patch 2 fixes issue reported
This reverts commit a034ec06ff1d558bbe11d5ee05edbb4de3ee2215.
Commit 4a3ea75de4c5 ("Revert "mmc: sdhci: set to INT_DATA_END when
there are data"") reverted the alternative fix that was added for
Exynos 4 devices, causing an error when trying to boot from an sdcard:
<...>
Loading Environme
Otherwise non-ChromeOS samsung devices, like the odroid boards, are
stuck in a bootloop if CONFIG_CROS_EC is not enabled:
<...>
MMC: SAMSUNG SDHCI: 2, EXYNOS DWMMC: 0
Loading Environment from MMC... *** Warning - bad CRC, using default
environment
cros-ec communications failure -
Hi Tom,
On Wed, 8 Feb 2023 at 11:35, Tom Rini wrote:
>
> On Wed, Feb 08, 2023 at 11:28:22AM -0700, Simon Glass wrote:
> > Hi Tom,
> >
> > On Tue, 7 Feb 2023 at 18:37, Tom Rini wrote:
> > >
> > > On Wed, Feb 01, 2023 at 01:19:12PM -0700, Simon Glass wrote:
> > >
> > > > Sometimes the Makefile rul
On Wed, 8 Feb 2023 at 11:39, Tom Rini wrote:
>
> First, this test depends on CONFIG_LMB_USE_MAX_REGIONS, so add that as a
> test before building. Second, instead of using a hard-coded value of 8,
> which is the default of CONFIG_LMB_USE_MAX_REGIONS previously, use that
> directly and update the co
On Wed, Feb 08, 2023 at 12:07:00PM -0700, Simon Glass wrote:
> On Wed, 8 Feb 2023 at 11:39, Tom Rini wrote:
> >
> > First, this test depends on CONFIG_LMB_USE_MAX_REGIONS, so add that as a
> > test before building. Second, instead of using a hard-coded value of 8,
> > which is the default of CONFI
Hello,
On Wed, Feb 08, 2023 at 01:25:50PM -0500, Tom Rini wrote:
> On Wed, Feb 08, 2023 at 07:24:25PM +0100, Francesco Dolcini wrote:
> > Hello,
> >
> > On Fri, Jan 27, 2023 at 08:54:55AM -0500, Tom Rini wrote:
> > > On Fri, Jan 27, 2023 at 02:00:12PM +0100, Michal Suchanek wrote:
> > > > It is r
I missed CC:ing MMC maintainer Peng Fan (CC:ed here), apologies for
this.
Best regards,
Henrik Grimler
On Wed, Feb 08, 2023 at 08:04:19PM +0100, Henrik Grimler wrote:
> Hi,
>
> Patch 1 fixes issue reported in [1], which happens on odroid-u2 and
> probably other devices in that family. Re-adding
On Wed, Feb 08, 2023 at 08:11:34PM +0100, Michal Suchánek wrote:
> Hello,
>
> On Wed, Feb 08, 2023 at 01:25:50PM -0500, Tom Rini wrote:
> > On Wed, Feb 08, 2023 at 07:24:25PM +0100, Francesco Dolcini wrote:
> > > Hello,
> > >
> > > On Fri, Jan 27, 2023 at 08:54:55AM -0500, Tom Rini wrote:
> > > >
On Thu, Jan 19, 2023 at 09:38:17AM +0100, Sjoerd Simons wrote:
> Since commit 06d514d77c37 ("lmb: consider EFI memory map") the EFI regions
> are also pushed into the lmb if EFI_LOADER is enabled (which is by
> default on most system). Which can cause the number of entries to go
> over the maximum
On Wed, Feb 08, 2023 at 01:39:18PM -0500, Tom Rini wrote:
> First, this test depends on CONFIG_LMB_USE_MAX_REGIONS, so add that as a
> test before building. Second, instead of using a hard-coded value of 8,
> which is the default of CONFIG_LMB_USE_MAX_REGIONS previously, use that
> directly and up
On Wed, Feb 08, 2023 at 10:19:19AM -0500, Tom Rini wrote:
> As explained by Philippe Schenker, I was misinterpreting what happened
> in the case where we do not set LMB_USE_MAX_REGIONS and so had
> re-introduced the problem I was attempting to more widely resolve.
>
> This reverts commit 007ae5d1
Exposing set/way cache maintenance to a virtual machine is unsafe, not
least because the instructions are not permission-checked but also
because they are not broadcast between CPUs. Consequently, KVM traps and
emulates such maintenance in the host kernel using by-VA operations and
looping over the
From: Marc Zyngier
Exposing set/way cache maintenance to a virtual machine is unsafe, not
least because the instructions are not permission-checked but also
because they are not broadcast between CPUs. Consequently, KVM traps and
emulates such maintenance in the host kernel using by-VA operations
From: Pierre-Clément Tosi
Memory used to hold the page tables is allocated from the top of RAM
with no prior initialization and could therefore hold invalid data. As
invalidate_dcache_all() will be called before the MMU has been
initialized and as that function relies indirectly on the page table
On Wed, Feb 8, 2023 at 20:04, Henrik Grimler wrote:
Hi,
Hi Henrik,
Thanks for picking this up.
Patch 1 fixes issue reported in [1], which happens on odroid-u2 and
probably other devices in that family. Re-adding this quirk was
discussed already by Jaehoon and Andy in the patch that
(re-
On Sun, Feb 05, 2023 at 03:40:33PM -0700, Simon Glass wrote:
> This converts 1 usage of this option to the non-SPL form, since there is
> no SPL_PHY_CADENCE_TORRENT defined in Kconfig
>
> Signed-off-by: Simon Glass
> ---
>
> (no changes since v1)
>
> drivers/phy/cadence/Makefile | 2 +-
> 1 f
On Sun, Feb 05, 2023 at 03:39:37PM -0700, Simon Glass wrote:
> This converts 1 usage of this option to the non-SPL form, since there is
> no SPL_DM_RNG defined in Kconfig
>
> Signed-off-by: Simon Glass
> ---
>
> (no changes since v1)
>
> boot/vbe_request.c | 2 +-
> 1 file changed, 1 insertio
On Wed, 8 Feb 2023 at 12:04, Henrik Grimler wrote:
>
> Otherwise non-ChromeOS samsung devices, like the odroid boards, are
> stuck in a bootloop if CONFIG_CROS_EC is not enabled:
>
> <...>
> MMC: SAMSUNG SDHCI: 2, EXYNOS DWMMC: 0
> Loading Environment from MMC... *** Warning - bad CRC,
Hi Tom,
On Wed, 8 Feb 2023 at 17:40, Tom Rini wrote:
>
> On Sun, Feb 05, 2023 at 03:39:37PM -0700, Simon Glass wrote:
>
> > This converts 1 usage of this option to the non-SPL form, since there is
> > no SPL_DM_RNG defined in Kconfig
> >
> > Signed-off-by: Simon Glass
> > ---
> >
> > (no changes
On Sun, Feb 05, 2023 at 03:40:00PM -0700, Simon Glass wrote:
> This converts 9 usages of this option to the non-SPL form, since there is
> no SPL_FSL_ISBC_KEY_EXT defined in Kconfig
>
> Signed-off-by: Simon Glass
This is used to avoid including things in SPL that aren't required,
in commit 3a58
On Wed, Feb 08, 2023 at 06:08:11PM -0700, Simon Glass wrote:
> Hi Tom,
>
> On Wed, 8 Feb 2023 at 17:40, Tom Rini wrote:
> >
> > On Sun, Feb 05, 2023 at 03:39:37PM -0700, Simon Glass wrote:
> >
> > > This converts 1 usage of this option to the non-SPL form, since there is
> > > no SPL_DM_RNG defin
On Sun, Feb 05, 2023 at 05:55:04PM -0700, Simon Glass wrote:
> This converts 2 usages of this option to the non-SPL form, since there is
> no SPL_SEC_FIRMWARE_ARMV8_PSCI defined in Kconfig
>
> Signed-off-by: Simon Glass
This usage avoids adding the fixup for arch_fixup_fdt to SPL where we
don't
On Sun, Feb 05, 2023 at 05:55:08PM -0700, Simon Glass wrote:
> This converts 1 usage of this option to the non-SPL form, since there is
> no SPL_SPI_FLASH_BAR defined in Kconfig
>
> Signed-off-by: Simon Glass
This is used to avoid unused code on at least xilinx_zynqmp_virt.
--
Tom
signature
On Sun, Feb 05, 2023 at 03:40:05PM -0700, Simon Glass wrote:
> This converts 2 usages of this option to the non-SPL form, since there is
> no SPL_GMAC_ROCKCHIP defined in Kconfig
>
> Signed-off-by: Simon Glass
This is used to avoid code in SPL/TPL on these platforms.
--
Tom
signature.asc
De
> From: U-Boot On Behalf Of Sergei Antonov
> Sent: Saturday, February 04, 2023 3:09 AM
> To: u-boot@lists.denx.de; rfried@gmail.com; joe.hershber...@ni.com
> Cc: Sergei Antonov
> Subject: [PATCH v3 1/3] net: ftmac100: change driver name from nds32_mac to
> ftmac100
>
> So it will be named si
On Sun, Feb 05, 2023 at 03:40:21PM -0700, Simon Glass wrote:
> This converts 2 usages of this option to the non-SPL form, since there is
> no SPL_NXP_FSPI defined in Kconfig
>
> Signed-off-by: Simon Glass
This is used to avoid code in SPL.
--
Tom
signature.asc
Description: PGP signature
Hi all,
I'm using U-boot 2022.07 from Yocto Langdale distribution, with the
following NVMe related kconfigs manually enabled through menuconfig:
CONFIG_NVME
CONFIG_NVME_PCI
CONFIG_CMD_NVME
and logging turned into max
The SSD is Kioxia SSD, and it works with Pi 4 bootloader as I can boot
Raspber
On Sun, Feb 05, 2023 at 03:40:12PM -0700, Simon Glass wrote:
> This converts 2 usages of this option to the non-SPL form, since there is
> no SPL_IMX_RDC defined in Kconfig
>
> Signed-off-by: Simon Glass
This is used to avoid the code in SPL in some cases.
--
Tom
signature.asc
Description:
On Sun, Feb 05, 2023 at 03:40:04PM -0700, Simon Glass wrote:
> This converts 1 usage of this option to the non-SPL form, since there is
> no SPL_GENERATE_SMBIOS_TABLE defined in Kconfig
>
> Signed-off-by: Simon Glass
This is used to avoid increasing the size of SPL in some cases.
--
Tom
sig
> From: U-Boot On Behalf Of Sergei Antonov
> Sent: Saturday, February 04, 2023 3:09 AM
> To: u-boot@lists.denx.de; rfried@gmail.com; joe.hershber...@ni.com
> Cc: Sergei Antonov
> Subject: [PATCH v3 2/3] net: ftmac100: simplify priv->iobase casting
>
> Replace 'phys_addr_t iobase' with 'struct
> From: U-Boot On Behalf Of Sergei Antonov
> Sent: Saturday, February 04, 2023 3:09 AM
> To: u-boot@lists.denx.de; rfried@gmail.com; joe.hershber...@ni.com
> Cc: Sergei Antonov
> Subject: [PATCH v3 3/3] net: ftmac100: add mii read and write callbacks
>
> Register mii_bus with read and write c
Hi Stefan,
On Fri, Feb 3, 2023 at 4:11 PM Tony Dinh wrote:
>
> Hi Pali,
>
> On Fri, Feb 3, 2023 at 2:05 PM Pali Rohár wrote:
> >
> > On Thursday 02 February 2023 19:04:45 Pali Rohár wrote:
> > > On Wednesday 01 February 2023 13:13:16 Tony Dinh wrote:
> > > > Hi all,
> > > >
> > > > On Wed, Feb 1
Hi Tony,
On 2/9/23 04:17, Tony Dinh wrote:
Hi Stefan,
On Fri, Feb 3, 2023 at 4:11 PM Tony Dinh wrote:
Hi Pali,
On Fri, Feb 3, 2023 at 2:05 PM Pali Rohár wrote:
On Thursday 02 February 2023 19:04:45 Pali Rohár wrote:
On Wednesday 01 February 2023 13:13:16 Tony Dinh wrote:
Hi all,
On We
90 matches
Mail list logo