Re: [PATCH 3/3] arm: mvebu: helios-4: add defconfig for spi booting

2024-01-14 Thread Josua Mayer
Hi Tim, Am 13.01.24 um 18:22 schrieb Tom Rini: > On Sat, Jan 13, 2024 at 05:36:57PM +0100, Josua Mayer wrote: > >> Add a new defconfig based on existing helios4_config file to support >> booting from spi flash. >> >> Settings for environment location are based on vendor u-boot: >> https://github.c

[PATCH v1 0/1] bootmenu: rename U-Boot console to Exit

2024-01-14 Thread Svyatoslav Ryhel
It seems that the U-Boot console entry of the bootmenu has lost its original meaning. Now, even if it is chosen, the probability that you will enter the actual U-Boot console is quite low. Boot env, bootflow, bootcommand script may appear, but not the actual console. Hense, let's remove ambiguity a

[PATCH v1 1/1] cmd: bootmenu: rename U-Boot console to Exit

2024-01-14 Thread Svyatoslav Ryhel
It seems that the U-Boot console entry of the bootmenu has lost its original meaning. Now, even if it is chosen, the probability that you will enter the actual U-Boot console is quite low. Boot env, bootflow, bootcommand script may appear, but not the actual console. Hense, let's remove ambiguity a

Re: [PATCH v4 2/4] efi_loader: rename BOOTEFI_BOOTMGR to EFI_BOOTMGR

2024-01-14 Thread Heinrich Schuchardt
On 1/10/24 02:16, AKASHI Takahiro wrote: At this point, EFI boot manager interfaces is fully independent from bootefi command. So just rename the configuration parameter. Signed-off-by: AKASHI Takahiro Reviewed-by: Simon Glass This patch breaks the 'bootefi hello' command in qemu-riscv64_smo

[PATCH 0/5] doc: update requirements.txt

2024-01-14 Thread Heinrich Schuchardt
Update all Python requirements to there newest version. Update the CSS overrides from Linux. Apply prerequisite changes: * convert Sphinx paths to str (patch copied from Linux) * add sphinx_rtd_theme to the array of extensions instead of setting html_theme_path * include Sphinx theme.css and p

[PATCH 2/5] doc: add sphinx_rtd_theme extension

2024-01-14 Thread Heinrich Schuchardt
Newer versions of sphinx_rtd_theme require to add sphinx_rtd_theme to the list of extensions. Cf. https://github.com/readthedocs/readthedocs.org/pull/9654 Signed-off-by: Heinrich Schuchardt --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf

[PATCH 1/5] docs/sphinx: Explicitly convert Sphinx paths to str

2024-01-14 Thread Heinrich Schuchardt
From: Oliver Faso Sphinx 7.2+ is switching to using pathlib.Path instead of str to represent paths. This fixes the current deprecation warnings and eventual breakage. This conversion will be a no-op when using older Sphinx versions. Signed-off-by: Oliver Faso Tested-by: Akira Yokosawa Signed-o

[PATCH 3/5] doc: update theme_overrides.css

2024-01-14 Thread Heinrich Schuchardt
Update theme_overrides.css from Linux v6.7. Signed-off-by: Heinrich Schuchardt --- doc/sphinx-static/theme_overrides.css | 44 --- 1 file changed, 40 insertions(+), 4 deletions(-) diff --git a/doc/sphinx-static/theme_overrides.css b/doc/sphinx-static/theme_overrides.css

[PATCH 5/5] doc: update requirements.txt

2024-01-14 Thread Heinrich Schuchardt
Update requirements.txt to most current packages as produced by python3 -m pip install six sphinx-rtd-theme sphinx-prompt python3 -m pip freeze Signed-off-by: Heinrich Schuchardt --- doc/sphinx/requirements.txt | 43 ++--- 1 file changed, 21 insertions(+),

[PATCH 4/5] doc: import Sphinx theme.css and pygments.css

2024-01-14 Thread Heinrich Schuchardt
We want to override the Sphinx theme only partially. So we need to import the Sphinx theme.css. Cf. https://docs.readthedocs.io/en/stable/guides/adding-custom-css.html We also need to import the pygments.css for syntax highlighing. Use sans-serif for body. Signed-off-by: Heinrich Schuchardt ---

[PATCH 1/1] doc: create index entries for commands

2024-01-14 Thread Heinrich Schuchardt
Add the description of CLI commands to the generated index. Signed-off-by: Heinrich Schuchardt --- doc/usage/cmd/acpi.rst| 3 +++ doc/usage/cmd/addrmap.rst | 3 +++ doc/usage/cmd/armffa.rst | 3 +++ doc/usage/cmd/askenv.rst | 3 +++ doc/usage/cmd/base.rst| 3 +++ do

[PATCH] doc: add generated index to table of contents

2024-01-14 Thread Heinrich Schuchardt
Show the index in the navigation sidebar. Signed-off-by: Heinrich Schuchardt --- doc/index.rst | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/index.rst b/doc/index.rst index 57b42c68e4..43398627d8 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -99,4 +99,7 @@ Chrom

Pull request efi-2024-04-rc1

2024-01-14 Thread Heinrich Schuchardt
Dear Tom, The following changes since commit 547d3dd28a46a18d59e00a153c8becca8d4e8cf9: Merge branch '2024-01-12-assorted-fixes' (2024-01-12 08:34:50 -0500) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2024-04-rc1 for you to fetch

Re: [PATCH 3/3] arm: mvebu: helios-4: add defconfig for spi booting

2024-01-14 Thread Tom Rini
On Sun, Jan 14, 2024 at 09:47:31AM +, Josua Mayer wrote: > Hi Tim, > > Am 13.01.24 um 18:22 schrieb Tom Rini: > > On Sat, Jan 13, 2024 at 05:36:57PM +0100, Josua Mayer wrote: > > > >> Add a new defconfig based on existing helios4_config file to support > >> booting from spi flash. > >> > >> Se

Re: [PATCH 5/5] doc: update requirements.txt

2024-01-14 Thread Tom Rini
On Sun, Jan 14, 2024 at 02:18:23PM +0100, Heinrich Schuchardt wrote: > Update requirements.txt to most current packages as produced by > >python3 -m pip install six sphinx-rtd-theme sphinx-prompt >python3 -m pip freeze > > Signed-off-by: Heinrich Schuchardt Note that this will also fix

Re: [PATCH v1 1/1] cmd: bootmenu: rename U-Boot console to Exit

2024-01-14 Thread Peter Robinson
On Sun, 14 Jan 2024 at 10:23, Svyatoslav Ryhel wrote: > > It seems that the U-Boot console entry of the bootmenu has lost > its original meaning. Now, even if it is chosen, the probability > that you will enter the actual U-Boot console is quite low. > Boot env, bootflow, bootcommand script may ap

Re: [PATCH] arm: sunxi: Reduce inrush current on Olimex A20-OLinuXino_MICRO

2024-01-14 Thread Philippe Coval
On 1/12/24 5:01 PM, Andre Przywara wrote: On Sat, 6 Jan 2024 23:21:34 +0100 Philippe Coval wrote: (...) thanks for taking care of upstreaming this! yea I should have done this earlier ! This change fix reboot, it was tested on debian-12 So I am wondering why this only comes up now. Was

Re: [PATCH v1 1/1] cmd: bootmenu: rename U-Boot console to Exit

2024-01-14 Thread Svyatoslav
14 січня 2024 р. 16:41:40 GMT+02:00, Peter Robinson написав(-ла): >On Sun, 14 Jan 2024 at 10:23, Svyatoslav Ryhel wrote: >> >> It seems that the U-Boot console entry of the bootmenu has lost >> its original meaning. Now, even if it is chosen, the probability >> that you will enter the actual

[PATCH v2 0/3] riscv: sophgo: milkv_duo: add support for Milk-V Duo board

2024-01-14 Thread Kongyang Liu
The Milk-V Duo board is built upon Sophgo's CV1800B SoC, featuring two XuanTie C906 CPUs running at 1.0GHz and 700MHz, respectively. This series introduces fundamental support for the Milk-V Duo board, encompassing UART, CPU, and PLIC support. This ensures that U-Boot can operate in serial console

[PATCH v2 1/3] riscv: sophgo: milkv_duo: initial support added

2024-01-14 Thread Kongyang Liu
Add support for Sophgo's Milk-V Duo board, only minimal device tree and serial console are enabled, and it can boot via vendor first stage bootloader. Signed-off-by: Kongyang Liu --- Changes in v2: - Fold the defconfig patch to first patch - Remove unnecessary environment settings of consoledev

[PATCH v2 2/3] riscv: dts: sophgo: Add basic device tree for Milk-V Duo board

2024-01-14 Thread Kongyang Liu
Import device tree from Linux kernel to add basic support for CPU, PLIC, UART and Timer. The name cv1800b in the filename represent the chip used on Milk-V Duo board. Signed-off-by: Kongyang Liu --- (no changes since v1) arch/riscv/dts/Makefile | 1 + arch/riscv/dts/cv1800b-milk

[PATCH v2 3/3] doc: sophgo: milkv_duo: document Milk-V Duo board

2024-01-14 Thread Kongyang Liu
Add document for Milk-V Duo board which based on Sophgo's CV1800B SoC. Signed-off-by: Kongyang Liu --- (no changes since v1) doc/board/index.rst| 1 + doc/board/sophgo/index.rst | 8 ++ doc/board/sophgo/milkv_duo.rst | 50 ++ 3 files change

Re: Pull request efi-2024-04-rc1

2024-01-14 Thread Tom Rini
On Sun, Jan 14, 2024 at 03:14:12PM +0100, Heinrich Schuchardt wrote: > Dear Tom, > > The following changes since commit 547d3dd28a46a18d59e00a153c8becca8d4e8cf9: > > Merge branch '2024-01-12-assorted-fixes' (2024-01-12 08:34:50 -0500) > > are available in the Git repository at: > > https:/

[PATCH v2 1/2] doc: add generated index to table of contents

2024-01-14 Thread Heinrich Schuchardt
Show the index in the navigation sidebar. doc/genindex.rst is needed to create the navigation sidebar entry. output/genindex.html will only contain the generated content. Signed-off-by: Heinrich Schuchardt --- v2: Provide doc/genindex.rst --- doc/genindex.rst | 4 doc/index.rst

Re: [PATCH v2 3/3] doc: sophgo: milkv_duo: document Milk-V Duo board

2024-01-14 Thread Heinrich Schuchardt
On 1/14/24 19:07, Kongyang Liu wrote: Add document for Milk-V Duo board which based on Sophgo's CV1800B SoC. Signed-off-by: Kongyang Liu --- (no changes since v1) doc/board/index.rst| 1 + doc/board/sophgo/index.rst | 8 ++ doc/board/sophgo/milkv_duo.rst | 50 +++

Re: [PATCH v2 1/3] riscv: sophgo: milkv_duo: initial support added

2024-01-14 Thread Heinrich Schuchardt
On 1/14/24 19:07, Kongyang Liu wrote: Add support for Sophgo's Milk-V Duo board, only minimal device tree and serial console are enabled, and it can boot via vendor first stage bootloader. Signed-off-by: Kongyang Liu The sequence of patches seems to be wrong. We expect that after each single

[PULL] u-boot-sh/master-sync-dts-663

2024-01-14 Thread Marek Vasut
The following changes since commit 817fdce324cac70fb4216ba42976f7b9c2ba9f99: Merge tag 'efi-2024-04-rc1' of https://source.denx.de/u-boot/custodians/u-boot-efi (2024-01-14 09:34:14 -0500) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-sh.git master-s

Re: [PULL] u-boot-sh/master-sync-dts-663

2024-01-14 Thread Tom Rini
On Sun, Jan 14, 2024 at 11:46:02PM +0100, Marek Vasut wrote: > The following changes since commit 817fdce324cac70fb4216ba42976f7b9c2ba9f99: > > Merge tag 'efi-2024-04-rc1' of > https://source.denx.de/u-boot/custodians/u-boot-efi (2024-01-14 09:34:14 > -0500) > > are available in the Git repo

Re: [PATCH v4 2/4] efi_loader: rename BOOTEFI_BOOTMGR to EFI_BOOTMGR

2024-01-14 Thread AKASHI Takahiro
On Sun, Jan 14, 2024 at 01:46:45PM +0100, Heinrich Schuchardt wrote: > On 1/10/24 02:16, AKASHI Takahiro wrote: > > At this point, EFI boot manager interfaces is fully independent from > > bootefi command. So just rename the configuration parameter. > > > > Signed-off-by: AKASHI Takahiro > > Revi

Re: [PATCH v2] mtd: rawnand: Meson NAND controller support

2024-01-14 Thread Arseniy Krasnov
Hi, thanks for review! Two questions below... On 09.01.2024 11:42, Michael Nazzareno Trimarchi wrote: > Hi Arseniy > > > On Fri, Dec 15, 2023 at 1:32 PM Arseniy Krasnov > wrote: >> >> Basic support for Amlogic Meson NAND controller on AXG. >> >> Based on Linux version 6.7.0-rc4. >> >> Signed-of

Re: [RFC][PATCH] ARM: imx: verdin-imx8mm: Set CAN oscillator frequency based on model

2024-01-14 Thread Marcel Ziswiler
Hi Guys On Sat, 2024-01-13 at 21:45 +0100, Francesco Dolcini wrote: > On Sat, Jan 13, 2024 at 06:40:19PM +, Marcel Ziswiler wrote: > > Hi Marek > > > > Thanks, seems like a decent idea. I guess we just did not do it as those > > previous revisions were just > > samples > > but with this chan