[PATCH] powerpc: Kconfig: fix reference to unknown symbol

2023-05-11 Thread Antony Pavlov
In Kconfig files, the symbols don't have a CONFIG_ prefix. Fix an unknown Kconfig symbol introduced in d3b8a88d34 ("treewide: rename CONFIG_HAS_ARCH_SJLJ to CONFIG_ARCH_HAS_SJLJ"). Signed-off-by: Antony Pavlov --- arch/powerpc/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -

Re: [RFC PATCH 01/11] scripts: Add Allwinner eGON image support

2023-05-11 Thread Jules Maselbas
On Thu, May 11, 2023 at 09:25:12AM +0200, Sascha Hauer wrote: > On Thu, May 11, 2023 at 01:37:01AM +0200, Jules Maselbas wrote: > > On power-up Allwinner SoC starts in boot ROM, aka BROM, which will search > > for an eGON image: first from the SD card, then from eMMC. If no image is > > found then

Re: [PATCH] video: bochs: fix IOMEM usage

2023-05-11 Thread Ahmad Fatoum
On 11.05.23 14:47, Denis Orlov wrote: > For the PCI version of the driver, we end up calling IOMEM() twice on > both the fb_map and mmio pointers. This happens because we first use > pci_iomap() on PCI resources in the bochs_pci_probe() and then > explicitly call IOMEM() in the bochs_hw_probe(). Ho

[PATCH] video: bochs: fix IOMEM usage

2023-05-11 Thread Denis Orlov
For the PCI version of the driver, we end up calling IOMEM() twice on both the fb_map and mmio pointers. This happens because we first use pci_iomap() on PCI resources in the bochs_pci_probe() and then explicitly call IOMEM() in the bochs_hw_probe(). However, judging from the parameters of the latt

[RFT][PATCH 3/3] ARM: i.MX6: TQMa6x: make tqma6x_env_init reusable

2023-05-11 Thread Roland Hieber
The SPI flash and eMMC are hard-wired on the TQMa6x SoM, so this function is not specific for the mba6x baseboard but can be used on other boards with a TQMa6x SoM too. tqma6x_enet_init is specific to the mba6x board, so rename it to reflect that fact. Signed-off-by: Roland Hieber --- arch/arm/

[RFT][PATCH 0/3] TQMa6x cleanup

2023-05-11 Thread Roland Hieber
Hi, I came across this when working on a similar board, but I don't have a TQ MBa6x to test these changes, so if someone has one and could try these patches, that would be great! - Roland Roland Hieber (3): ARM: i.MX6: tqma6x: make use of ENTRY_FUNCTION_WITHSTACK ARM: i.MX: TQMa6x: migrate

[RFT][PATCH 2/3] ARM: i.MX: TQMa6x: migrate flash partitions to device tree

2023-05-11 Thread Roland Hieber
This way the partitions are easier to adapt, and the board code becomes more generic. Signed-off-by: Roland Hieber --- arch/arm/boards/tqma6x/board.c | 2 -- arch/arm/dts/imx6dl-mba6x.dts | 13 + arch/arm/dts/imx6q-mba6x.dts | 13 + 3 files changed, 26 insertions(+),

[RFT][PATCH 1/3] ARM: i.MX6: tqma6x: make use of ENTRY_FUNCTION_WITHSTACK

2023-05-11 Thread Roland Hieber
Signed-off-by: Roland Hieber --- arch/arm/boards/tqma6x/lowlevel.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/arch/arm/boards/tqma6x/lowlevel.c b/arch/arm/boards/tqma6x/lowlevel.c index 9283e3f009f8..6e9c9bed0bf8 100644 --- a/arch/arm/boards/tqma6x/lowlevel.c +++

Re: [RFC PATCH 09/11] arm: sunxi: Add sun50i SDRAM init

2023-05-11 Thread Sascha Hauer
On Thu, May 11, 2023 at 01:37:09AM +0200, Jules Maselbas wrote: > diff --git a/arch/arm/mach-sunxi/sun50i-a64-ddr3-init.c > b/arch/arm/mach-sunxi/sun50i-a64-ddr3-init.c > new file mode 100644 > index 00..4c54588556 > --- /dev/null > +++ b/arch/arm/mach-sunxi/sun50i-a64-ddr3-init.c > @@ -0,

Re: [RFC PATCH 02/11] sunxi: introduce mach-sunxi

2023-05-11 Thread Sascha Hauer
On Thu, May 11, 2023 at 01:37:02AM +0200, Jules Maselbas wrote: > Add kbuild boilerplate and some early init functions > --- > arch/arm/Kconfig | 12 ++ > arch/arm/Makefile | 1 + > arch/arm/mach-sunxi/Kconfig| 16 + > arch/arm/mach-s

Re: [RFC PATCH 01/11] scripts: Add Allwinner eGON image support

2023-05-11 Thread Sascha Hauer
On Thu, May 11, 2023 at 01:37:01AM +0200, Jules Maselbas wrote: > On power-up Allwinner SoC starts in boot ROM, aka BROM, which will search > for an eGON image: first from the SD card, then from eMMC. If no image is > found then the BROM will enter into FEL mode that can be used for initial > progr