From patchwork Mon Sep 2 02:28:48 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 1156398 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.de Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 46MDYM2HWlz9sDB for ; Mon, 2 Sep 2019 12:29:09 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 7CBD2C21D72; Mon, 2 Sep 2019 02:29:04 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 3F2A9C21C8B; Mon, 2 Sep 2019 02:29:03 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 6E4C0C21C57; Mon, 2 Sep 2019 02:29:02 +0000 (UTC) Received: from mx1.suse.de (mx2.suse.de [195.135.220.15]) by lists.denx.de (Postfix) with ESMTPS id 1FEDCC21BE5 for ; Mon, 2 Sep 2019 02:29:02 +0000 (UTC) X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 98AF1AE37; Mon, 2 Sep 2019 02:29:01 +0000 (UTC) From: =?utf-8?q?Andreas_F=C3=A4rber?= To: u-boot@lists.denx.de Date: Mon, 2 Sep 2019 04:28:48 +0200 Message-Id: <20190902022851.9228-1-afaerber@suse.de> X-Mailer: git-send-email 2.16.4 MIME-Version: 1.0 Cc: =?utf-8?q?Andreas_F=C3=A4rber?= , u-boot-amlogic@groups.io Subject: [U-Boot] [PATCH 0/2] amlogic: Add Khadas VIM3 support X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Hi, This mini-series adds initial support for Amlogic A311D based Khadas VIM3. Regards, Andreas Cc: Neil Armstrong Andreas Färber (2): arm: dts: Import and update DT for Khadas VIM3 configs: Add Khadas VIM3 defconfig arch/arm/dts/Makefile | 3 +- arch/arm/dts/meson-g12-common.dtsi | 2435 ++++++++++++++++++++ arch/arm/dts/meson-g12b-a311d-khadas-vim3.dts | 15 + arch/arm/dts/meson-g12b-a311d.dtsi | 149 ++ arch/arm/dts/meson-g12b-khadas-vim3.dtsi | 544 +++++ arch/arm/dts/meson-g12b.dtsi | 39 +- board/amlogic/w400/MAINTAINERS | 1 + board/amlogic/w400/README.khadas-vim3 | 132 ++ configs/khadas-vim3_defconfig | 54 + include/dt-bindings/clock/g12a-clkc.h | 6 + include/dt-bindings/power/meson-g12a-power.h | 13 + .../reset/amlogic,meson-g12a-audio-reset.h | 38 + 12 files changed, 3425 insertions(+), 4 deletions(-) create mode 100644 arch/arm/dts/meson-g12-common.dtsi create mode 100644 arch/arm/dts/meson-g12b-a311d-khadas-vim3.dts create mode 100644 arch/arm/dts/meson-g12b-a311d.dtsi create mode 100644 arch/arm/dts/meson-g12b-khadas-vim3.dtsi create mode 100644 board/amlogic/w400/README.khadas-vim3 create mode 100644 configs/khadas-vim3_defconfig create mode 100644 include/dt-bindings/power/meson-g12a-power.h create mode 100644 include/dt-bindings/reset/amlogic,meson-g12a-audio-reset.h