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 X-Spam-Level: X-Spam-Status: No, score=-3.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 41D2BC10F0E for ; Thu, 18 Apr 2019 16:18:31 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 11521206B6 for ; Thu, 18 Apr 2019 16:18:30 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="EwZ23PMW" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 11521206B6 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=68QA0s/DjKSOEAtvXDVL5snvs992sUikJHpioz3fXgI=; b=EwZ23PMWmvs7ix OhwQJSN4la+KUIQV7D6MRHI5zwsCKTINIO8SlopigHzlhTQWH1tf4SYZ5x9ucqlbR7Sd2zX73/U8L RoID2vy+5XytGL4S+PWgi4TOTWErZQDFy0pyKVdcsn5lTTUnB1vkNoq9Bz5t9V6QMVwLVS1YKQxOY xzsh3fZ+DCWlwp8dqQowV4ikdIrZJwKSOviTDxrgV+8gBqfqGoSWbDyJ3gwC1ZKkLfEYuu0PN+4Wz hJze36LLXfEZA4fmLLl1xln1kiTiczhUV9laeJe+jE0u8reyYkQ8rsHC/0X4uDkpz4odafG2AYpXk nGWhqn3RSbdNHV4v6E0A==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1hH9jw-0006Ah-LY; Thu, 18 Apr 2019 16:18:20 +0000 Received: from mirror2.csie.ntu.edu.tw ([140.112.30.76] helo=wens.csie.org) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1hH9jn-00062E-Ro for linux-arm-kernel@lists.infradead.org; Thu, 18 Apr 2019 16:18:13 +0000 Received: by wens.csie.org (Postfix, from userid 1000) id 478295FDF9; Fri, 19 Apr 2019 00:18:05 +0800 (CST) From: Chen-Yu Tsai To: Maxime Ripard , Lee Jones Subject: [PATCH 0/3] arm64: allwinner: Enable AXP803's USB power supply Date: Fri, 19 Apr 2019 00:18:01 +0800 Message-Id: <20190418161804.17723-1-wens@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190418_091812_121235_A576FBDF X-CRM114-Status: UNSURE ( 8.85 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: devicetree@vger.kernel.org, Chen-Yu Tsai , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Chen-Yu Tsai Hi everyone, This series follows up on the A83T USB OTG series. The USB power supply portion of the AXP803, the PMIC used with the A64, is identical to the part in the AXP813/AXP818, used with the A83T. This series enables the USB power supply in the AXP803 using the AXP813's compatible string as a fallback. The per-model compatible string is still added as a contigency. Patch 1 adds an mfd cell for the USB power supply, to the AXP803. Patch 2 adds a device node for the USB power supply. Patch 3 enables the USB power supply on the Bananapi M64. Unfortunately the original Pine64 does not wire up the USB power supply, and I don't have any other A64 boards. The mfd patch can go in through the mfd tree. There are no compile-time dependencies. We, sunxi, can take the DT patches. Please have a look. Regards ChenYu Chen-Yu Tsai (3): mfd: axp20x: add USB power supply mfd cell to AXP803 arm64: dts: allwinner: axp803: add USB power supply node arm64: dts: allwinner: a64: bananapi-m64: Enable PMIC USB power supply arch/arm64/boot/dts/allwinner/axp803.dtsi | 6 ++++++ arch/arm64/boot/dts/allwinner/sun50i-a64-bananapi-m64.dts | 5 +++++ drivers/mfd/axp20x.c | 5 +++++ 3 files changed, 16 insertions(+) -- 2.20.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel