From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Hewitt Date: Fri, 18 Dec 2020 08:45:40 +0000 Subject: [PATCH 0/5] board: amlogic: add Beelink GT-King/Pro support Message-ID: <20201218084545.29135-1-christianshewitt@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This patchset adds support for the Beelink GT-King and GT-King Pro boxes based on the Amlogic S922X (G12B/W400) SoC. Patches are based on the u-boot-amlogic-next branch in the custodians tree. Christian Hewitt (5): ARM: dts: import Beelink GT-King/Pro DTs from Linux 5.10 boards: amlogic: add Beelink S922X board family support boards: amlogic: add Beelink GT-King defconfig boards: amlogic: add Beelink GT-King Pro defconfig boards: amlogic: update documentation for Beelink GT-King/Pro arch/arm/dts/Makefile | 2 + arch/arm/dts/meson-g12b-gtking-pro.dts | 125 ++++++ arch/arm/dts/meson-g12b-gtking.dts | 145 +++++++ arch/arm/dts/meson-g12b-w400.dtsi | 425 ++++++++++++++++++++ board/amlogic/beelink-s922x/MAINTAINERS | 9 + board/amlogic/beelink-s922x/Makefile | 6 + board/amlogic/beelink-s922x/beelink-s922x.c | 54 +++ configs/beelink-gtking_defconfig | 71 ++++ configs/beelink-gtkingpro_defconfig | 71 ++++ doc/board/amlogic/beelink-gtking.rst | 115 ++++++ doc/board/amlogic/beelink-gtkingpro.rst | 116 ++++++ doc/board/amlogic/index.rst | 4 +- 12 files changed, 1142 insertions(+), 1 deletion(-) create mode 100644 arch/arm/dts/meson-g12b-gtking-pro.dts create mode 100644 arch/arm/dts/meson-g12b-gtking.dts create mode 100644 arch/arm/dts/meson-g12b-w400.dtsi create mode 100644 board/amlogic/beelink-s922x/MAINTAINERS create mode 100644 board/amlogic/beelink-s922x/Makefile create mode 100644 board/amlogic/beelink-s922x/beelink-s922x.c create mode 100644 configs/beelink-gtking_defconfig create mode 100644 configs/beelink-gtkingpro_defconfig create mode 100644 doc/board/amlogic/beelink-gtking.rst create mode 100644 doc/board/amlogic/beelink-gtkingpro.rst -- 2.17.1