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=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,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 823DEC35242 for ; Tue, 11 Feb 2020 19:01:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 658002168B for ; Tue, 11 Feb 2020 19:01:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731545AbgBKTBV (ORCPT ); Tue, 11 Feb 2020 14:01:21 -0500 Received: from mailoutvs14.siol.net ([185.57.226.205]:37669 "EHLO mail.siol.net" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1731521AbgBKTBU (ORCPT ); Tue, 11 Feb 2020 14:01:20 -0500 Received: from localhost (localhost [127.0.0.1]) by mail.siol.net (Postfix) with ESMTP id 90D61522179; Tue, 11 Feb 2020 20:01:17 +0100 (CET) X-Virus-Scanned: amavisd-new at psrvmta11.zcs-production.pri Received: from mail.siol.net ([127.0.0.1]) by localhost (psrvmta11.zcs-production.pri [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id 1TvOaAe7n2Fg; Tue, 11 Feb 2020 20:01:17 +0100 (CET) Received: from mail.siol.net (localhost [127.0.0.1]) by mail.siol.net (Postfix) with ESMTPS id 43AC252069B; Tue, 11 Feb 2020 20:01:17 +0100 (CET) Received: from localhost.localdomain (cpe-194-152-20-232.static.triera.net [194.152.20.232]) (Authenticated sender: 031275009) by mail.siol.net (Postfix) with ESMTPSA id CDB785215CF; Tue, 11 Feb 2020 20:01:14 +0100 (CET) From: Jernej Skrabec To: mripard@kernel.org, wens@csie.org Cc: mturquette@baylibre.com, sboyd@kernel.org, icenowy@aosc.io, jernej.skrabec@siol.net, linux-arm-kernel@lists.infradead.org, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2 6/7] clk: sunxi-ng: sun8i-de2: Add R40 specific quirks Date: Tue, 11 Feb 2020 19:59:35 +0100 Message-Id: <20200211185936.245174-7-jernej.skrabec@siol.net> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200211185936.245174-1-jernej.skrabec@siol.net> References: <20200211185936.245174-1-jernej.skrabec@siol.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org R40 is actually very similar to A64, but it doesn't have mixer1 reset. This means it's clocks and resets combination is unique and R40 specific quirks are needed. Signed-off-by: Jernej Skrabec --- drivers/clk/sunxi-ng/ccu-sun8i-de2.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/drivers/clk/sunxi-ng/ccu-sun8i-de2.c b/drivers/clk/sunxi-ng/= ccu-sun8i-de2.c index 9656553c01f3..5a278c391f1d 100644 --- a/drivers/clk/sunxi-ng/ccu-sun8i-de2.c +++ b/drivers/clk/sunxi-ng/ccu-sun8i-de2.c @@ -238,6 +238,16 @@ static const struct sunxi_ccu_desc sun8i_h3_de2_clk_= desc =3D { .num_resets =3D ARRAY_SIZE(sun8i_h3_de2_resets), }; =20 +static const struct sunxi_ccu_desc sun8i_r40_de2_clk_desc =3D { + .ccu_clks =3D sun50i_a64_de2_clks, + .num_ccu_clks =3D ARRAY_SIZE(sun50i_a64_de2_clks), + + .hw_clks =3D &sun50i_a64_de2_hw_clks, + + .resets =3D sun8i_a83t_de2_resets, + .num_resets =3D ARRAY_SIZE(sun8i_a83t_de2_resets), +}; + static const struct sunxi_ccu_desc sun50i_a64_de2_clk_desc =3D { .ccu_clks =3D sun50i_a64_de2_clks, .num_ccu_clks =3D ARRAY_SIZE(sun50i_a64_de2_clks), @@ -356,6 +366,10 @@ static const struct of_device_id sunxi_de2_clk_ids[]= =3D { .compatible =3D "allwinner,sun8i-h3-de2-clk", .data =3D &sun8i_h3_de2_clk_desc, }, + { + .compatible =3D "allwinner,sun8i-r40-de2-clk", + .data =3D &sun8i_r40_de2_clk_desc, + }, { .compatible =3D "allwinner,sun8i-v3s-de2-clk", .data =3D &sun8i_v3s_de2_clk_desc, --=20 2.25.0