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=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 0437AC2D0DB for ; Fri, 24 Jan 2020 11:14:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C6E7620663 for ; Fri, 24 Jan 2020 11:14:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579864477; bh=jxDIskhWmGSLBPmXNhnoajzCfCH+NOcmxyk1AIzm8QQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=JuR9DJ4MS2NbeuCXIeB0F7hCcLIkznNErQcKg6W0LowOi/lhrHqqQ6kVlIPiqpqLs guLmPVdS/w/Dl7CPa7NBturR0Rf1p+6vpVPZ1YQRiO+NqMsFHtGRiVfuir/eoJTwMF V6OaB0CWMtKPDgfVByfGK14uDJtA7r46CxBwXt7o= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390225AbgAXLOh (ORCPT ); Fri, 24 Jan 2020 06:14:37 -0500 Received: from mail.kernel.org ([198.145.29.99]:50902 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2390141AbgAXLO3 (ORCPT ); Fri, 24 Jan 2020 06:14:29 -0500 Received: from localhost (ip-213-127-102-57.ip.prioritytelecom.net [213.127.102.57]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9961820663; Fri, 24 Jan 2020 11:14:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579864469; bh=jxDIskhWmGSLBPmXNhnoajzCfCH+NOcmxyk1AIzm8QQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mjQS7dUEhSYL8dTc3I7Udra6yQbg8fVQTLl37hb94AP4HZ6bm9NfGn8BqLDAcu9nw SXf9oMg/E/NbFOF7pcSudngqddURj4YWU3ro+lKTv1sowm5yxfG1P76PuG9tT9XU7w LxAsHGmFEWWS+AEBKh6won7FMStNr5Ka0+5BYt9Y= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Chen-Yu Tsai , Maxime Ripard , Sasha Levin Subject: [PATCH 4.19 274/639] arm64: dts: allwinner: a64: Add missing PIO clocks Date: Fri, 24 Jan 2020 10:27:24 +0100 Message-Id: <20200124093121.070004228@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200124093047.008739095@linuxfoundation.org> References: <20200124093047.008739095@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Maxime Ripard [ Upstream commit 562bf19611c000cb7219431c3cc78aa60c2b371e ] The pinctrl binding mandates that we have the three clocks fed into the PIO described. Even though the old case is still supported for backward compatibility, we should update our DTs to fix this. Fixes: 6bc37fac30cf ("arm64: dts: add Allwinner A64 SoC .dtsi") Acked-by: Chen-Yu Tsai Signed-off-by: Maxime Ripard Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi b/arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi index d3daf90a8715c..7abc4ea305410 100644 --- a/arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi +++ b/arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi @@ -366,7 +366,8 @@ interrupts = , , ; - clocks = <&ccu 58>; + clocks = <&ccu 58>, <&osc24M>, <&rtc 0>; + clock-names = "apb", "hosc", "losc"; gpio-controller; #gpio-cells = <3>; interrupt-controller; -- 2.20.1