Received: by 2002:ac0:a581:0:0:0:0:0 with SMTP id m1-v6csp813634imm; Fri, 22 Jun 2018 05:50:18 -0700 (PDT) X-Google-Smtp-Source: ADUXVKKxQZECNsKclpIXK4plfkYWbadtvgkakdDc14a+/i2tHllhx+p95J8KzZ7iSGz6waPREAqO X-Received: by 2002:a63:7886:: with SMTP id t128-v6mr1304831pgc.429.1529671818108; Fri, 22 Jun 2018 05:50:18 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1529671818; cv=none; d=google.com; s=arc-20160816; b=gZXu2h8dwv7Bi3CxWonEbBTUKCwR6UxOazyLYR/XJgnNpHi68s8Ry4CgK0r38Zl/gF sqjCTqh3h2tR78w39NWGHCopsslc/gqv768xt9sjvOfqFTSdTrVAdnoNu2jtEGDXMm9d 3YGi1/97LPS5qbtFV+PIrjhG5rfQ1dfX8QDEw1bXurLn73/Dm86APA7EguKm8WMs0eLc HqWKb9jNP4dh81gGzxeJ2TyH3qz+Flu/rgoIKU6f6WWF6kV/rm7yXDaKJH9JBEF/gt3R a3rOBWQ/ndrwgwGOICKDASfXShS5pEldeva8HkLysuAdu8IBMFg2ax4s0prEAs+heqkT fMQg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=eHf35TlgGdRjX1Oqoil64JORl0kgTo/cj84ciZrS/bQ=; b=L6dnbiMijbXOPIlrPUPGCi82uaRfj4qc1/u/Bk4hHixFnOmhldr0WdrnQb/VoWaOwj z8Q9jska/aqFnHCA/6jXv/WYNJMIB5Mo4159IpTJORa4LaXGphyQJ/OyRStk/ol7sdi0 uJI2VBHhJTwoQWjGGwWQeTN81prD/n7nRmlazGHmPdAr5veaZ8JTiW4VkK842I2plMPL mhva1HKO0T2u/Xa0w3RJr6pRi3VmPUq5MU4B6RvQa3FEAOKZi0weilmdQxLAkqcWcC51 zGVCUNJ7UVMmStbACyQU3XaSIC2drfjhS5DRXx2d9oYHphJoVsD90EcU15aHHV0LELD8 yp5w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d24-v6si7331187plr.302.2018.06.22.05.49.54; Fri, 22 Jun 2018 05:50:18 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751385AbeFVMtE (ORCPT + 99 others); Fri, 22 Jun 2018 08:49:04 -0400 Received: from hermes.aosc.io ([199.195.250.187]:57234 "EHLO hermes.aosc.io" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751256AbeFVMtC (ORCPT ); Fri, 22 Jun 2018 08:49:02 -0400 Received: from localhost (localhost [127.0.0.1]) (Authenticated sender: icenowy@aosc.io) by hermes.aosc.io (Postfix) with ESMTPSA id 911B7630E4; Fri, 22 Jun 2018 12:48:05 +0000 (UTC) From: Icenowy Zheng To: Rob Herring , Maxime Ripard , Chen-Yu Tsai , Jagan Teki , Jernej Skrabec Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, linux-sunxi@googlegroups.com, Icenowy Zheng Subject: [PATCH v2 4/7] clk: sunxi-ng: add A64 compatible string Date: Fri, 22 Jun 2018 20:45:37 +0800 Message-Id: <20180622124540.56203-3-icenowy@aosc.io> In-Reply-To: <20180622124540.56203-1-icenowy@aosc.io> References: <20180622124540.56203-1-icenowy@aosc.io> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org As claiming Allwinner A64 SRAM C is a prerequisite for all sub-blocks of the A64 DE2, not only the CCU sub-block, a bus driver is then written for enabling the access to the whole DE2 part by claiming the SRAM. In this situation, the A64 compatible string will be just added with no other requirments, as they're processed by the parent bus driver. Signed-off-by: Icenowy Zheng --- No changes since v1. drivers/clk/sunxi-ng/ccu-sun8i-de2.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/clk/sunxi-ng/ccu-sun8i-de2.c b/drivers/clk/sunxi-ng/ccu-sun8i-de2.c index 468d1abaf0ee..8df7cd93453e 100644 --- a/drivers/clk/sunxi-ng/ccu-sun8i-de2.c +++ b/drivers/clk/sunxi-ng/ccu-sun8i-de2.c @@ -292,13 +292,10 @@ static const struct of_device_id sunxi_de2_clk_ids[] = { .compatible = "allwinner,sun50i-h5-de2-clk", .data = &sun50i_a64_de2_clk_desc, }, - /* - * The Allwinner A64 SoC needs some bit to be poke in syscon to make - * DE2 really working. - * So there's currently no A64 compatible here. - * H5 shares the same reset line with A64, so here H5 is using the - * clock description of A64. - */ + { + .compatible = "allwinner,sun50i-a64-de2-clk", + .data = &sun50i_a64_de2_clk_desc, + }, { } }; -- 2.17.1