Received: by 2002:a25:7ec1:0:0:0:0:0 with SMTP id z184csp8187911ybc; Fri, 29 Nov 2019 06:47:52 -0800 (PST) X-Google-Smtp-Source: APXvYqyzcEw7HcgAK5lrHK88p7Sknm5LOxhhW6rmOfdCyqsE0ZwzrXrqv+tq2RPWkcXWnOyU8poM X-Received: by 2002:a05:6402:305b:: with SMTP id bu27mr46436064edb.191.1575038872414; Fri, 29 Nov 2019 06:47:52 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1575038872; cv=none; d=google.com; s=arc-20160816; b=0O95mFc4FJ+Dwr2XVqYbykz5WoeRuQwrj7whQFRYedbqDqpR13zS7ilhwFSJaYwbnF VZvMVAMNBB3hX8AjTCIBVf6Za+kx2fEuweUoaeSpKv3n3jsKEWKX1ohab1/QgW1Lk9xs GV7U6Fqybt2Bl1W5BGXgMZIBzXY1Sdn89oS26r0lCph53uU4tehEneAJAwruKCOzbW0v mZGF/TVtSAIB4tmX8DAjW0AwVtgbAedx9fxM0vvRlEbnMKNF9lL1aGbt95NLpUNqtoRi qf/F+RFtLlwJvw8za31SHYgJDxZJE4OrwdqEis4l8uRr0xsWxsC3EleTFeCk3krgs79e YcBA== 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=of7EGVKVAEN3HSvvpBQz5RfiE5y9yoNDwzfcWNHhmfc=; b=FTT7g4NQUls+gXqiGxUYtofJyFDYaIA6zOfpHq1U7+qPLcGadOgQH5dP9et4+goP8p WCb4kLgrXl+ssQKs6orCV2gS1yEKyj/yJWffe23Wi5f/TdsYCPHw+hpMOWvIQm56Pcm/ Q1Eb6YE+6MI8TxlJi+7kC6qN9RdRQmnPgU5ZgGfJ+OCPRc7m2n+WVEPnUZHqibGGEvtA N3YjBaTM9rhcbGZZzJ96UD485ayzAWhpNOCHWIE4Fqa+RX8wvcTMeqOlC6Wpnef5BsBf TpTaAfR65q8m9K8f+xtvZDeR+AQwWFsULq9+Et/qANP16aPgw85HzwbG2QYjwIPXoh9u pIrA== 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 o22si15005043edv.175.2019.11.29.06.47.28; Fri, 29 Nov 2019 06:47:52 -0800 (PST) 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 S1727047AbfK2OqX (ORCPT + 99 others); Fri, 29 Nov 2019 09:46:23 -0500 Received: from mail-sz.amlogic.com ([211.162.65.117]:43435 "EHLO mail-sz.amlogic.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727005AbfK2OqW (ORCPT ); Fri, 29 Nov 2019 09:46:22 -0500 Received: from droid15-sz.amlogic.com (10.28.8.25) by mail-sz.amlogic.com (10.28.11.5) with Microsoft SMTP Server id 15.1.1591.10; Fri, 29 Nov 2019 22:46:36 +0800 From: Jian Hu To: Jerome Brunet , Neil Armstrong CC: Jian Hu , Kevin Hilman , Rob Herring , Martin Blumenstingl , Michael Turquette , Stephen Boyd , Qiufang Dai , Jianxin Pan , Victor Wan , Chandle Zou , , , , , Subject: [PATCH v3 1/7] dt-bindings: clock: meson: add A1 PLL clock controller bindings Date: Fri, 29 Nov 2019 22:45:59 +0800 Message-ID: <20191129144605.182774-2-jian.hu@amlogic.com> X-Mailer: git-send-email 2.24.0 In-Reply-To: <20191129144605.182774-1-jian.hu@amlogic.com> References: <20191129144605.182774-1-jian.hu@amlogic.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.28.8.25] Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add the documentation to support Amlogic A1 PLL clock driver, and add A1 PLL clock controller bindings. Signed-off-by: Jian Hu --- .../bindings/clock/amlogic,a1-pll-clkc.yaml | 56 +++++++++++++++++++ include/dt-bindings/clock/a1-pll-clkc.h | 16 ++++++ 2 files changed, 72 insertions(+) create mode 100644 Documentation/devicetree/bindings/clock/amlogic,a1-pll-clkc.yaml create mode 100644 include/dt-bindings/clock/a1-pll-clkc.h diff --git a/Documentation/devicetree/bindings/clock/amlogic,a1-pll-clkc.yaml b/Documentation/devicetree/bindings/clock/amlogic,a1-pll-clkc.yaml new file mode 100644 index 000000000000..d008bfeb3c3a --- /dev/null +++ b/Documentation/devicetree/bindings/clock/amlogic,a1-pll-clkc.yaml @@ -0,0 +1,56 @@ +/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */ +/* + * Copyright (c) 2019 Amlogic, Inc. All rights reserved. + */ +%YAML 1.2 +--- +$id: "http://devicetree.org/schemas/clock/amlogic,a1-pll-clkc.yaml#" +$schema: "http://devicetree.org/meta-schemas/core.yaml#" + +title: Amlogic Meson A/C serials PLL Clock Control Unit Device Tree Bindings + +maintainers: + - Neil Armstrong + - Jerome Brunet + - Jian Hu + +properties: + compatible: + - enum: + - amlogic,a1-pll-clkc + "#clock-cells": + const: 1 + + reg: + maxItems: 1 + +clocks: + minItems: 2 + maxItems: 2 + items: + - description: Input xtal_fixpll + - description: Input xtal_hifipll + +clock-names: + minItems: 2 + maxItems: 2 + items: + - const: xtal_fixpll + - const: xtal_hifipll + +required: + - compatible + - "#clock-cells" + - reg + - clocks + - clock-names + +additionalProperties: false + +examples: + - | + clkc_pll: pll-clock-controller { + compatible = "amlogic,a1-pll-clkc"; + reg = <0 0x7c80 0 0x18c>; + #clock-cells = <1>; + }; diff --git a/include/dt-bindings/clock/a1-pll-clkc.h b/include/dt-bindings/clock/a1-pll-clkc.h new file mode 100644 index 000000000000..58eae237e503 --- /dev/null +++ b/include/dt-bindings/clock/a1-pll-clkc.h @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */ +/* + * Copyright (c) 2019 Amlogic, Inc. All rights reserved. + */ + +#ifndef __A1_PLL_CLKC_H +#define __A1_PLL_CLKC_H + +#define CLKID_FIXED_PLL 1 +#define CLKID_FCLK_DIV2 6 +#define CLKID_FCLK_DIV3 7 +#define CLKID_FCLK_DIV5 8 +#define CLKID_FCLK_DIV7 9 +#define CLKID_HIFI_PLL 10 + +#endif /* __A1_PLL_CLKC_H */ -- 2.24.0