diff options
| author | Tom Rini <[email protected]> | 2025-07-28 08:08:16 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-07-28 08:08:16 -0600 |
| commit | 14dd807a48cfc3e7a4b106e228a6dc5b6c296d48 (patch) | |
| tree | d4f749d516ca4a907123ccdb40ba246c13ee8885 /include | |
| parent | 4c3b5fcd810081bd7f3c51859fe1b5f0c159803c (diff) | |
| parent | 0199794b30431fbf52ef2607c950de233e45b19e (diff) | |
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-sunxi
These patches add support for the new Allwinner A523/A527/T527 SoC (all
same die), alongside with defconfigs for three boards using one of those
SoCs.
The patches are the usual combination of refactoring (of the SPL clock
code this time), tweaks to existing drivers to support peripherals in
their A523 versions, and new drivers for pincontrol and clocks. A big
chunk is of course the DRAM controller init routines, many thanks to
Jernej and Mikhail for providing this code, after a big reverse
engineering effort.
Since the DTs for the three supported boards have been merged into the
kernel repo recently, this is concluded by cherry-picks of those
patches, and the defconfig files to finally enable booting those boards.
The patches have been sitting around for a while, and folks are already
using them, so it's now time to get them into the tree.
Gitlab CI passed, and I booted that briefly on those three boards, plus
on some other SoCs to spot potential regressions.
Diffstat (limited to 'include')
| -rw-r--r-- | include/axp_pmic.h | 1 | ||||
| -rw-r--r-- | include/configs/sun55i.h | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/axp_pmic.h b/include/axp_pmic.h index ae62ef0d76d..1806a7270a0 100644 --- a/include/axp_pmic.h +++ b/include/axp_pmic.h @@ -33,6 +33,7 @@ enum { AXP221_ID, AXP223_ID, AXP313_ID, + AXP323_ID, AXP717_ID, AXP803_ID, AXP806_ID, diff --git a/include/configs/sun55i.h b/include/configs/sun55i.h new file mode 100644 index 00000000000..70649366c1c --- /dev/null +++ b/include/configs/sun55i.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Placeholder wrapper to allow addressing Allwinner devices with Cortex-A55 + * cores separately. Please do not add anything in here. + */ +#ifndef __CONFIG_H +#define __CONFIG_H + +#include <configs/sunxi-common.h> + +#endif /* __CONFIG_H */ |
