From patchwork Wed Oct 10 14:51:36 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 10634691 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 8C1B269B4 for ; Wed, 10 Oct 2018 14:52:37 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6086A2A50D for ; Wed, 10 Oct 2018 14:52:37 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 542C82A54A; Wed, 10 Oct 2018 14:52:37 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 09C8C2A553 for ; Wed, 10 Oct 2018 14:52:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727233AbeJJWOx (ORCPT ); Wed, 10 Oct 2018 18:14:53 -0400 Received: from mail.kernel.org ([198.145.29.99]:40364 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726649AbeJJWOx (ORCPT ); Wed, 10 Oct 2018 18:14:53 -0400 Received: from localhost.localdomain (unknown [171.76.86.221]) (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 3EC5A2087A; Wed, 10 Oct 2018 14:52:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1539183141; bh=hdVUSfkIIpCQk91Rpj6W5n+wZqwd/sDigokYzCyAzj4=; h=From:To:Cc:Subject:Date:From; b=nwb7f9Hq6Y6twtO1G5dus8GRiU6x3FzYcZc+0jBhJecaKuui+jwu5zxhgeZ+x2iRn S1ANPoFmgiR6sxp4hujMYptWdr5TZTDjHWTFXxVL00EACJos2dk7U0j0dL0n8Bsk88 9Y2WIP3V3k2pdx5bVgz1D02y1tTrjb5ayUzNSlr0= From: Vinod Koul To: Michael Turquette , Stephen Boyd Cc: Vinod Koul , Shefali Jain , Rob Herring , Mark Rutland , Andy Gross , David Brown , Bjorn Andersson , Anu Ramanathan , Taniya Das , "open list:COMMON CLK FRAMEWORK" , "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" , open list , "open list:ARM/QUALCOMM SUPPORT" , "open list:ARM/QUALCOMM SUPPORT" Subject: [PATCH v2 0/2] clk: qcom: Add support for QCS404 Date: Wed, 10 Oct 2018 20:21:36 +0530 Message-Id: <20181010145138.17185-1-vkoul@kernel.org> X-Mailer: git-send-email 2.14.4 Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add the clock driver for QCS404 SoC. This needs to export clk_alpha_pll_configure() so first patch does that Changes in v2: - Fix comments provided by Stephen & Taniya Bjorn Andersson (1): clk: qcom: Export clk_alpha_pll_configure() Shefali Jain (1): clk: qcom: gcc: Add global clock controller driver for QCS404 .../devicetree/bindings/clock/qcom,gcc.txt | 1 + drivers/clk/qcom/Kconfig | 8 + drivers/clk/qcom/Makefile | 1 + drivers/clk/qcom/clk-alpha-pll.c | 1 + drivers/clk/qcom/gcc-qcs404.c | 2744 ++++++++++++++++++++ include/dt-bindings/clock/qcom,gcc-qcs404.h | 165 ++ 6 files changed, 2920 insertions(+) create mode 100644 drivers/clk/qcom/gcc-qcs404.c create mode 100644 include/dt-bindings/clock/qcom,gcc-qcs404.h