mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
Merge branch '2024-05-29-assorted-small-fixes'
- A few maintainer updates, bump a python package version, TI K3-AM62P fix
This commit is contained in:
5
.mailmap
5
.mailmap
@@ -42,6 +42,7 @@ Eugen Hristev <eugen.hristev@collabora.com> <eugen.hristev@microchip.com>
|
||||
Fabio Estevam <fabio.estevam@nxp.com>
|
||||
Harini Katakam <harini.katakam@amd.com> <harini.katakam@xilinx.com>
|
||||
Harsha <harsha.harsha@amd.com> <harsha.harsha@xilinx.com>
|
||||
Heiko Stuebner <heiko.stuebner@cherry.de> <heiko.stuebner@theobroma-systems.com>
|
||||
Heinrich Schuchardt <xypron.glpk@gmx.de> <heinrich.schuchardt@canonical.com>
|
||||
Heinrich Schuchardt <xypron.glpk@gmx.de> xypron.glpk@gmx.de <xypron.glpk@gmx.de>
|
||||
Ibai Erkiaga <ibai.erkiaga-elorza@amd.com> <ibai.erkiaga-elorza@xilinx.com>
|
||||
@@ -53,12 +54,14 @@ Jagan Teki <jaganna@gmail.com>
|
||||
Jagan Teki <jaganna@xilinx.com>
|
||||
Jagan Teki <jagannadh.teki@gmail.com>
|
||||
Jagan Teki <jagannadha.sutradharudu-teki@xilinx.com>
|
||||
Jakob Unterwurzacher <jakob.unterwurzacher@cherry.de> <jakob.unterwurzacher@theobroma-systems.com>
|
||||
Jay Buddhabhatti <jay.buddhabhatti@amd.com> <jay.buddhabhatti@xilinx.com>
|
||||
Jernej Skrabec <jernej.skrabec@gmail.com> <jernej.skrabec@siol.net>
|
||||
John Linn <john.linn@amd.com> <john.linn@xilinx.com>
|
||||
Jyotheeswar Reddy Mutthareddyvari <jyotheeswar.reddy.mutthareddyvari@amd.com> <jyothee@xilinx.com>
|
||||
Jyotheeswar Reddy Mutthareddyvari <jyotheeswar.reddy.mutthareddyvari@amd.com> <jyotheeswar.reddy.mutthareddyvari@xilinx.com>
|
||||
Kalyani Akula <kalyani.akula@amd.com> <kalyani.akula@xilinx.com>
|
||||
Klaus Goger <klaus.goger@cherry.de> <klaus.goger@theobroma-systems.com>
|
||||
Masahisa Kojima <kojima.masahisa@socionext.com> <masahisa.kojima@linaro.org>
|
||||
Love Kumar <love.kumar@amd.com> <love.kumar@xilinx.com>
|
||||
Lukasz Majewski <lukma@denx.de>
|
||||
@@ -88,9 +91,11 @@ This contributor prefers not to receive mails <noreply@example.com> <pali.rohar@
|
||||
Patrice Chotard <patrice.chotard@foss.st.com> <patrice.chotard@st.com>
|
||||
Patrick Delaunay <patrick.delaunay@foss.st.com> <patrick.delaunay@st.com>
|
||||
Paul Burton <paul.burton@mips.com> <paul.burton@imgtec.com>
|
||||
Philipp Tomsich <philipp.tomsich@vrull.eu> <philipp.tomsich@theobroma-systems.com>
|
||||
Piyush Mehta <piyush.mehta@amd.com> <piyush.mehta@xilinx.com>
|
||||
Prabhakar Kushwaha <prabhakar@freescale.com>
|
||||
Punnaiah Choudary Kalluri <punnaiah.choudary.kalluri@amd.com> <punnaiah.choudary.kalluri@xilinx.com>
|
||||
Quentin Schulz <quentin.schulz@cherry.de> <quentin.schulz@theobroma-systems.com>
|
||||
Radhey Shyam Pandey <radhey.shyam.pandey@amd.com> <radhey.shyam.pandey@xilinx.com>
|
||||
Rajeshwari Shinde <rajeshwari.s@samsung.com>
|
||||
Raju Kumar Pothuraju <rajukumar.pothuraju@amd.com> <raju.kumar-pothuraju@xilinx.com>
|
||||
|
||||
@@ -13,6 +13,7 @@ obj-$(CONFIG_SOC_K3_J721S2) += j721s2_fdt.o
|
||||
obj-$(CONFIG_SOC_K3_AM625) += am625_fdt.o
|
||||
obj-$(CONFIG_SOC_K3_AM62A7) += am62a7_fdt.o
|
||||
obj-$(CONFIG_SOC_K3_J784S4) += j784s4_fdt.o
|
||||
obj-$(CONFIG_SOC_K3_AM62P5) += am62p5_fdt.o
|
||||
endif
|
||||
ifeq ($(CONFIG_SPL_BUILD),y)
|
||||
obj-$(CONFIG_SOC_K3_AM654) += am654_init.o
|
||||
|
||||
16
arch/arm/mach-k3/am62p5_fdt.c
Normal file
16
arch/arm/mach-k3/am62p5_fdt.c
Normal file
@@ -0,0 +1,16 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
/*
|
||||
* Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
|
||||
*/
|
||||
|
||||
#include <asm/hardware.h>
|
||||
#include "common_fdt.h"
|
||||
#include <fdt_support.h>
|
||||
|
||||
int ft_system_setup(void *blob, struct bd_info *bd)
|
||||
{
|
||||
fdt_fixup_reserved(blob, "tfa", CONFIG_K3_ATF_LOAD_ADDR, 0x80000);
|
||||
fdt_fixup_reserved(blob, "optee", CONFIG_K3_OPTEE_LOAD_ADDR, 0x1800000);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -13,6 +13,7 @@ config TARGET_AM62P5_A53_EVM
|
||||
bool "TI K3 based AM62P5 EVM running on A53"
|
||||
select ARM64
|
||||
select BINMAN
|
||||
select OF_SYSTEM_SETUP
|
||||
|
||||
config TARGET_AM62P5_R5_EVM
|
||||
bool "TI K3 based AM62P5 EVM running on R5"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
VERSATILE EXPRESS BOARDS
|
||||
M: Kristian Amlie <kristian.amlie@northern.tech>
|
||||
M: Josef Holzmayr <josef.holzmayr@northern.tech>
|
||||
S: Maintained
|
||||
F: board/armltd/vexpress/
|
||||
F: include/configs/vexpress_ca9x4.h
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
GO2
|
||||
M: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
|
||||
M: Heiko Stuebner <heiko.stuebner@cherry.de>
|
||||
S: Maintained
|
||||
F: board/hardkernel/odroid_go2/
|
||||
F: include/configs/odroid_go2.h
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
JAGUAR-RK3588 (SBC-RK3588-AMR Single Board Computer)
|
||||
M: Klaus Goger <klaus.goger@theobroma-systems.com>
|
||||
M: Quentin Schulz <quentin.schulz@theobroma-systems.com>
|
||||
M: Klaus Goger <klaus.goger@cherry.de>
|
||||
M: Quentin Schulz <quentin.schulz@cherry.de>
|
||||
M: Heiko Stuebner <heiko.stuebner@cherry.de>
|
||||
S: Maintained
|
||||
F: board/theobroma-systems/jaguar_rk3588
|
||||
@@ -9,5 +9,5 @@ F: doc/board/theobroma-systems/
|
||||
F: include/configs/jaguar_rk3588.h
|
||||
F: arch/arm/dts/rk3588-jaguar*
|
||||
F: configs/jaguar-rk3588_defconfig
|
||||
W: https://theobroma-systems.com/product/jaguar-sbc-rk3588/
|
||||
T: git git://git.theobroma-systems.com/jaguar-u-boot.git
|
||||
W: https://embedded.cherry.de/product/jaguar-sbc-rk3588/
|
||||
T: git git://git.embedded.cherry.de/jaguar-u-boot.git
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
LION-RK3368 (RK3368-uQ7 system-on-module)
|
||||
M: Quentin Schulz <quentin.schulz@theobroma-systems.com>
|
||||
M: Klaus Goger <klaus.goger@theobroma-systems.com>
|
||||
M: Quentin Schulz <quentin.schulz@cherry.de>
|
||||
M: Klaus Goger <klaus.goger@cherry.de>
|
||||
S: Maintained
|
||||
F: board/theobroma-systems/lion_rk3368
|
||||
F: include/configs/lion_rk3368.h
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
PUMA-RK3399
|
||||
M: Quentin Schulz <quentin.schulz@theobroma-systems.com>
|
||||
M: Klaus Goger <klaus.goger@theobroma-systems.com>
|
||||
M: Quentin Schulz <quentin.schulz@cherry.de>
|
||||
M: Klaus Goger <klaus.goger@cherry.de>
|
||||
S: Maintained
|
||||
F: board/theobroma-systems/puma_rk3399
|
||||
F: board/theobroma-systems/common
|
||||
@@ -8,5 +8,5 @@ F: doc/board/theobroma-systems
|
||||
F: include/configs/puma_rk3399.h
|
||||
F: arch/arm/dts/rk3399-puma*
|
||||
F: configs/puma-rk3399_defconfig
|
||||
W: https://www.theobroma-systems.com/rk3399-q7/tech-specs
|
||||
T: git git://git.theobroma-systems.com/puma-u-boot.git
|
||||
W: https://embedded.cherry.de/product/puma-som-rk3399-q7/
|
||||
T: git git://git.embedded.cherry.de/puma-u-boot.git
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
RINGNECK-PX30
|
||||
M: Quentin Schulz <quentin.schulz@theobroma-systems.com>
|
||||
M: Klaus Goger <klaus.goger@theobroma-systems.com>
|
||||
M: Quentin Schulz <quentin.schulz@cherry.de>
|
||||
M: Klaus Goger <klaus.goger@cherry.de>
|
||||
S: Maintained
|
||||
F: board/theobroma-systems/ringneck_px30
|
||||
F: board/theobroma-systems/common
|
||||
@@ -8,4 +8,5 @@ F: doc/board/theobroma-systems/
|
||||
F: include/configs/ringneck_px30.h
|
||||
F: arch/arm/dts/px30-ringneck*
|
||||
F: configs/ringneck-px30_defconfig
|
||||
W: https://theobroma-systems.com/product/ringneck-som-px30-uq7/
|
||||
W: https://embedded.cherry.de/product/ringneck-som-px30-uq7/
|
||||
T: git git://git.embedded.cherry.de/ringneck-u-boot.git
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Apalis iMX8
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
W: http://developer.toradex.com/software/linux/linux-software
|
||||
S: Maintained
|
||||
F: arch/arm/dts/fsl-imx8qm-apalis.dts
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Apalis TK1
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
S: Maintained
|
||||
F: board/toradex/apalis-tk1/
|
||||
F: board/toradex/common/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Apalis iMX6
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
W: http://developer.toradex.com/software/linux/linux-software
|
||||
W: https://www.toradex.com/community
|
||||
S: Maintained
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Apalis T30
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
S: Maintained
|
||||
F: board/toradex/apalis_t30/
|
||||
F: board/toradex/common/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Colibri iMX6ULL
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
W: http://developer.toradex.com/software/linux/linux-software
|
||||
W: https://www.toradex.com/community
|
||||
S: Maintained
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Colibri iMX8X
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
W: http://developer.toradex.com/software/linux/linux-software
|
||||
S: Maintained
|
||||
F: arch/arm/dts/fsl-imx8x-colibri.dts
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Colibri iMX6
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
W: http://developer.toradex.com/software/linux/linux-software
|
||||
W: https://www.toradex.com/community
|
||||
S: Maintained
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Colibri iMX7
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
W: http://developer.toradex.com/software/linux/linux-software
|
||||
W: https://www.toradex.com/community
|
||||
S: Maintained
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
COLIBRI_T20
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
S: Maintained
|
||||
F: board/toradex/colibri_t20/
|
||||
F: board/toradex/common/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Colibri T30
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
S: Maintained
|
||||
F: board/toradex/colibri_t30/
|
||||
F: board/toradex/common/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Colibri VFxx
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
W: http://developer.toradex.com/software/linux/linux-software
|
||||
W: https://www.toradex.com/community
|
||||
S: Maintained
|
||||
|
||||
@@ -8,6 +8,6 @@ F: configs/verdin-am62_a53_defconfig
|
||||
F: configs/verdin-am62_r5_defconfig
|
||||
F: doc/board/toradex/verdin-am62.rst
|
||||
F: include/configs/verdin-am62.h
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
S: Maintained
|
||||
W: https://www.toradex.com/computer-on-modules/verdin-arm-family/ti-am-62
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Verdin iMX8M Mini
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
W: https://www.toradex.com/computer-on-modules/verdin-arm-family/nxp-imx-8m-mini
|
||||
S: Maintained
|
||||
F: arch/arm/dts/imx8mm-verdin-wifi-dev-u-boot.dtsi
|
||||
|
||||
@@ -5,6 +5,6 @@ F: board/toradex/common/
|
||||
F: configs/verdin-imx8mp_defconfig
|
||||
F: doc/board/toradex/verdin-imx8mp.rst
|
||||
F: include/configs/verdin-imx8mp.h
|
||||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
M: Francesco Dolcini <francesco.dolcini@toradex.com>
|
||||
S: Maintained
|
||||
W: https://www.toradex.com/computer-on-modules/verdin-arm-family/nxp-imx-8m-plus
|
||||
|
||||
Reference in New Issue
Block a user