Received: by 2002:a25:ab43:0:0:0:0:0 with SMTP id u61csp4480296ybi; Tue, 11 Jun 2019 07:20:35 -0700 (PDT) X-Google-Smtp-Source: APXvYqwBuuJR2ioKQiGJZqUxhx0SarFSaY4BiGG+mp9wS+dH4NGXyahmWlT6uReLLxzWAK/pJDmw X-Received: by 2002:a63:1a59:: with SMTP id a25mr13325531pgm.173.1560262835463; Tue, 11 Jun 2019 07:20:35 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1560262835; cv=none; d=google.com; s=arc-20160816; b=vyWYzZRBQ896QqiNDQe3lXFic7D0AmIMwpzHiftOT4fTfQQWhz1r+BSHyZHsWzhvBj 3bzzyhwLMVZAz0VL6FaKds0yqewGiLVTQLfgSUJrDyCi5Mi3UqN9cr2J6dhj3NOofdNU XaV23zxQUBCYQNLTRlnhfaPdKb/QFrFCrp7oEt6bqSnKD4D+Z1wAay94vG2IvKQ7pWfT 6p82jlhS5Y+x+cl9tXPo8UkjKp/nIcKiBo0np6CqGCL3D7/viax/yjfd2VrHfdVF3Uz/ BCYP+9mrA0po+uX7xvqvRyaNElFU4MKBrTRi1VEgmEHUQnvnc16zA452VWz95Z9Tc+ap f0Zw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=8XCd0Apv8hq5GWZQ9WICGdrIlpdSVIPUy2/3VE/MYJQ=; b=HglZv6pDDGMgmW3WsijBow4hUzrihkMFS9ftvdlI6054x2Yzv9eOZKhQq+LK/43qeS nvfG6/lXRiOR0zxec20BIllnaM7kosput4dtQOy6qfn1tTAtN0exZ3WVboUGE4k8njj2 yqgAMk9cng4fShKNOv6Xd86kjL7Vl0dsqwbFbzrKlygeT3AzrJkb+qZIlUvy4QmtoEEA i9xgy9bZcOFanNv4GdBRLnWX+rLIOgPLLEFTw0cx2Xs1/LNOkHvAn0VgHSYYOULM4BiD u0tkb6/RlBSckXqKqXu6OHelTMPCgtK4Ya+OwhQhAuAlJWZFWGWLq8i/pkEXjVHQWhE8 xQog== 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 z34si7631628pgl.240.2019.06.11.07.20.17; Tue, 11 Jun 2019 07:20:35 -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 S2391155AbfFKOUB (ORCPT + 99 others); Tue, 11 Jun 2019 10:20:01 -0400 Received: from hermes.aosc.io ([199.195.250.187]:33452 "EHLO hermes.aosc.io" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389908AbfFKOTn (ORCPT ); Tue, 11 Jun 2019 10:19:43 -0400 Received: from localhost (localhost [127.0.0.1]) (Authenticated sender: icenowy@aosc.io) by hermes.aosc.io (Postfix) with ESMTPSA id ED21C82291; Tue, 11 Jun 2019 14:11:31 +0000 (UTC) From: Icenowy Zheng To: Rob Herring , Maxime Ripard , Chen-Yu Tsai , Linus Walleij Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, linux-gpio@vger.kernel.org, linux-sunxi@googlegroups.com, Icenowy Zheng , Rob Herring Subject: [PATCH v2 05/11] dt-bindings: clk: sunxi-ccu: add compatible string for V3 CCU Date: Tue, 11 Jun 2019 22:09:34 +0800 Message-Id: <20190611140940.14357-6-icenowy@aosc.io> In-Reply-To: <20190611140940.14357-1-icenowy@aosc.io> References: <20190611140940.14357-1-icenowy@aosc.io> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Despite Allwinner V3 and V3s shares the same die, one peripheral (I2S) is only available on V3, and thus the clocks is not declared for V3s CCU. Add a V3 CCU compatible string to the binding to prepare for a CCU driver that provide I2S clock on V3, but not on V3s. Signed-off-by: Icenowy Zheng Reviewed-by: Rob Herring --- Changes in v2: - Adapt to YAML binding document in linux-next. .../devicetree/bindings/clock/allwinner,sun4i-a10-ccu.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/clock/allwinner,sun4i-a10-ccu.yaml b/Documentation/devicetree/bindings/clock/allwinner,sun4i-a10-ccu.yaml index c935405458fe..1bde87fc94c5 100644 --- a/Documentation/devicetree/bindings/clock/allwinner,sun4i-a10-ccu.yaml +++ b/Documentation/devicetree/bindings/clock/allwinner,sun4i-a10-ccu.yaml @@ -31,6 +31,7 @@ properties: - allwinner,sun8i-h3-ccu - allwinner,sun8i-h3-r-ccu - allwinner,sun8i-r40-ccu + - allwinner,sun8i-v3-ccu - allwinner,sun8i-v3s-ccu - allwinner,sun9i-a80-ccu - allwinner,sun50i-a64-ccu -- 2.21.0