From patchwork Wed Oct 3 10:02:05 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Loic Devulder X-Patchwork-Id: 978153 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 42QBR763BTz9s8J for ; Wed, 3 Oct 2018 20:02:56 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 92A5DC22047; Wed, 3 Oct 2018 10:02:47 +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 0D3E5C21FCA; Wed, 3 Oct 2018 10:02:45 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 5CD23C22011; Wed, 3 Oct 2018 10:02:43 +0000 (UTC) Received: from mx1.suse.de (mx2.suse.de [195.135.220.15]) by lists.denx.de (Postfix) with ESMTPS id 09411C21FCA for ; Wed, 3 Oct 2018 10:02:43 +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 7AB30AF57 for ; Wed, 3 Oct 2018 10:02:42 +0000 (UTC) From: Loic Devulder To: u-boot@lists.denx.de Date: Wed, 3 Oct 2018 12:02:05 +0200 Message-Id: <20181003100207.3514-1-ldevulder@suse.de> X-Mailer: git-send-email 2.16.4 Subject: [U-Boot] [PATCH 0/2] Add Khadas VIM2 board 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: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This adds platform code for the Khadas VIM2 board based on a Meson GXM (S912) SoC with the Meson GXM configuration. This initial submission supports UART, MMC/SDCard and Ethernet. USB is partially supported. All the code is from Neil Armstrong! I just rebased the code, do some cleanup and tested on my board. Loic Devulder (2): ARM: meson: Add Khadas VIM2 board DT ARM: meson: Add Khadas VIM2 board support arch/arm/dts/Makefile | 3 +- arch/arm/dts/meson-gxm-khadas-vim2.dts | 412 ++++++++++++++++++++++++++++++++ arch/arm/dts/meson-gxm.dtsi | 119 +++++++++ arch/arm/mach-meson/Kconfig | 23 ++ board/amlogic/khadas-vim2/Kconfig | 12 + board/amlogic/khadas-vim2/MAINTAINERS | 6 + board/amlogic/khadas-vim2/Makefile | 6 + board/amlogic/khadas-vim2/README | 103 ++++++++ board/amlogic/khadas-vim2/khadas-vim2.c | 62 +++++ configs/khadas-vim2_defconfig | 51 ++++ include/configs/khadas-vim2.h | 18 ++ 11 files changed, 814 insertions(+), 1 deletion(-) create mode 100644 arch/arm/dts/meson-gxm-khadas-vim2.dts create mode 100644 arch/arm/dts/meson-gxm.dtsi create mode 100644 board/amlogic/khadas-vim2/Kconfig create mode 100644 board/amlogic/khadas-vim2/MAINTAINERS create mode 100644 board/amlogic/khadas-vim2/Makefile create mode 100644 board/amlogic/khadas-vim2/README create mode 100644 board/amlogic/khadas-vim2/khadas-vim2.c create mode 100644 configs/khadas-vim2_defconfig create mode 100644 include/configs/khadas-vim2.h