From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 51563C6FD1D for ; Fri, 7 Apr 2023 21:26:54 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A7A8785757; Fri, 7 Apr 2023 23:26:51 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=fw-web.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (1024-bit key; unprotected) header.d=mailerdienst.de header.i=@mailerdienst.de header.b="pHaiJtyp"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id D294E85A36; Fri, 7 Apr 2023 23:26:48 +0200 (CEST) Received: from mxout3.routing.net (mxout3.routing.net [IPv6:2a03:2900:1:a::8]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 09061809A5 for ; Fri, 7 Apr 2023 23:26:45 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=fw-web.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=linux@fw-web.de Received: from mxbox3.masterlogin.de (unknown [192.168.10.78]) by mxout3.routing.net (Postfix) with ESMTP id 49D0C604C0; Fri, 7 Apr 2023 21:26:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mailerdienst.de; s=20200217; t=1680902805; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=QZIX7B9nIlVhLLeePBrUyOkiyhdjLplA4qJK0v9e2Iw=; b=pHaiJtypJBHXE8+9j3VfHsm4C8R78LL0fiVJ1hG0hdck+uieRcpvzlJMA7nSCf8zJViuhc E8l49PIhsmGXCtu+EUKsaYeKTYcey03/hTDvd2v1nrWtRNnAKllgrClXA12pCDhqHE069n KVmQ6dXdYBLxIcHMqyqhKfj3N22IPyk= Received: from frank-G5.. (fttx-pool-217.61.149.193.bambit.de [217.61.149.193]) by mxbox3.masterlogin.de (Postfix) with ESMTPSA id 548BF36019F; Fri, 7 Apr 2023 21:26:44 +0000 (UTC) From: Frank Wunderlich To: u-boot@lists.denx.de Cc: Frank Wunderlich , Sam Shih , William Zhang , Philippe Reynes , Marek Vasut , Fabio Estevam , Marcel Ziswiler , Samuel Holland , =?UTF-8?q?Pali=20Roh=C3=A1r?= , Daniel Golle , Simon Glass , Weijie Gao Subject: [v1 0/2] Add DTS for BPI-R3 Date: Fri, 7 Apr 2023 23:26:26 +0200 Message-Id: <20230407212628.77111-1-linux@fw-web.de> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Mail-ID: ca902804-91bf-471e-98f3-a06f49d196b6 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean From: Frank Wunderlich Add board specific devicetree for BananaPi R3. It is taken from openwrt https://git.openwrt.org/?p=openwrt/openwrt.git;a=blob;f=package/boot/uboot-mediatek/patches/430-add-bpi-r3.patch;hb=HEAD only enabled the factory button which was disabled because a HW-bug in rev 1.0 of r3. Daniel Golle (1): board: mediatek: add Bananapi-R3 devicetree Frank Wunderlich (1): configs: change bpi-r3 to board specific dts and change prompt arch/arm/dts/Makefile | 2 + arch/arm/dts/mt7986a-bpi-r3-emmc.dts | 32 ++++ arch/arm/dts/mt7986a-bpi-r3-sd.dts | 268 +++++++++++++++++++++++++++ configs/mt7986a_bpir3_emmc_defconfig | 6 +- configs/mt7986a_bpir3_sd_defconfig | 6 +- 5 files changed, 308 insertions(+), 6 deletions(-) create mode 100644 arch/arm/dts/mt7986a-bpi-r3-emmc.dts create mode 100644 arch/arm/dts/mt7986a-bpi-r3-sd.dts -- 2.34.1