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=-3.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=no 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 47E66C32767 for ; Fri, 3 Jan 2020 11:26:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1ED2322522 for ; Fri, 3 Jan 2020 11:26:02 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="key not found in DNS" (0-bit key) header.d=mg.codeaurora.org header.i=@mg.codeaurora.org header.b="Bzh68sST" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727521AbgACL0B (ORCPT ); Fri, 3 Jan 2020 06:26:01 -0500 Received: from mail26.static.mailgun.info ([104.130.122.26]:13212 "EHLO mail26.static.mailgun.info" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727494AbgACL0A (ORCPT ); Fri, 3 Jan 2020 06:26:00 -0500 DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=mg.codeaurora.org; q=dns/txt; s=smtp; t=1578050759; h=Content-Transfer-Encoding: Content-Type: MIME-Version: Message-Id: Date: Subject: To: From: Sender; bh=WE57pxSUJyR+L5tsiqVz5w7Z/BAF2j86LaPJYplaCc0=; b=Bzh68sSTdZpEuEMty18/wKGYJn8NYa03a3WRJrD2zWDkXSdvRKUurlMOL1hcLZgzjmyC51Ou 852/kiKCqMwrxDQB3DC/BLBmwF7bmWS18UVhbdtKVnOuv2QVnL1H89scwPj3cYR5S7dJA04l Fh/wGEHakanS2tbdulfQsWmUOQw= X-Mailgun-Sending-Ip: 104.130.122.26 X-Mailgun-Sid: WyI1MzIzYiIsICJsaW51eC1hcm0tbXNtQHZnZXIua2VybmVsLm9yZyIsICJiZTllNGEiXQ== Received: from smtp.codeaurora.org (ec2-35-166-182-171.us-west-2.compute.amazonaws.com [35.166.182.171]) by mxa.mailgun.org with ESMTP id 5e0f24c3.7f4dc728f378-smtp-out-n02; Fri, 03 Jan 2020 11:25:55 -0000 (UTC) Received: by smtp.codeaurora.org (Postfix, from userid 1001) id EF909C447AE; Fri, 3 Jan 2020 11:25:54 +0000 (UTC) Received: from srichara-linux.qualcomm.com (blr-c-bdr-fw-01_GlobalNAT_AllZones-Outside.qualcomm.com [103.229.19.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: sricharan) by smtp.codeaurora.org (Postfix) with ESMTPSA id 980C9C447B2; Fri, 3 Jan 2020 11:25:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 980C9C447B2 Authentication-Results: aws-us-west-2-caf-mail-1.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: aws-us-west-2-caf-mail-1.web.codeaurora.org; spf=none smtp.mailfrom=sricharan@codeaurora.org From: Sricharan R To: sricharan@codeaurora.org, agross@kernel.org, devicetree@vger.kernel.org, linus.walleij@linaro.org, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org, linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org, linux-soc@vger.kernel.org, robh+dt@kernel.org, sboyd@kernel.org, sivaprak@codeaurora.org Subject: [PATCH 0/2] Add Global clock controller support for IPQ6018 Date: Fri, 3 Jan 2020 16:55:42 +0530 Message-Id: <1578050744-3761-1-git-send-email-sricharan@codeaurora.org> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org The IPQ6018 is Qualcomm’s 802.11ax SoC for Routers, Gateways and Access Points. This series adds Global clock controller support for ipq6018. The patches were a part of https://patchwork.kernel.org/cover/11303075/, now moved it outside based on Stephen's suggestion. Sricharan R (2): clk: qcom: Add DT bindings for ipq6018 gcc clock controller clk: qcom: Add ipq6018 Global Clock Controller support .../devicetree/bindings/clock/qcom,gcc.yaml | 3 +- drivers/clk/qcom/Kconfig | 8 + drivers/clk/qcom/Makefile | 1 + drivers/clk/qcom/gcc-ipq6018.c | 4643 ++++++++++++++++++++ include/dt-bindings/clock/qcom,gcc-ipq6018.h | 262 ++ include/dt-bindings/reset/qcom,gcc-ipq6018.h | 157 + 6 files changed, 5073 insertions(+), 1 deletion(-) create mode 100644 drivers/clk/qcom/gcc-ipq6018.c create mode 100644 include/dt-bindings/clock/qcom,gcc-ipq6018.h create mode 100644 include/dt-bindings/reset/qcom,gcc-ipq6018.h -- 1.9.1 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=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=no 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 728C6C2D0CE for ; Fri, 3 Jan 2020 11:26:09 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 486AF22B48 for ; Fri, 3 Jan 2020 11:26:09 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="OsYtAk53"; dkim=fail reason="key not found in DNS" (0-bit key) header.d=mg.codeaurora.org header.i=@mg.codeaurora.org header.b="VrEOfYxA" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 486AF22B48 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To :From:Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=Q20nJp5vWt22uScvZXEbKTRgTDIwsPlUUOdc0Q6d+NI=; b=OsYtAk532NDcWG iaGXk2iJh//dyI7yUyaDICYAbBTwHUNKeGqUpEqaVl8A0Sk38iRuL4SO+rowOS0Zbj9kGB8XqqAdT OWguDkzXhQ6JRvjJxRXpPm6XT12g/E+QTFKsRlPNC2volGLI+oZZGiUpWzA0Z4OrvJSDgH7A1Pje+ 7xzUoowNZF7fTv2a/q9uJPP01mNP+aXtXKkQL56oYKJwPd01db6nUhl74nfAPPCGWaJP/EvsW4UGY FCN4CfzwcUkwOozRtfwSg36BpToa07eycJe6xIRc0bPEoV5FCs401cENYmIflZCm1Asn8E6Pu0rML MbkTADG/Pfvugms3TKGg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1inL5d-00008U-4c; Fri, 03 Jan 2020 11:26:01 +0000 Received: from mail26.static.mailgun.info ([104.130.122.26]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1inL5Z-000085-N0 for linux-arm-kernel@lists.infradead.org; Fri, 03 Jan 2020 11:25:59 +0000 DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=mg.codeaurora.org; q=dns/txt; s=smtp; t=1578050757; h=Content-Transfer-Encoding: Content-Type: MIME-Version: Message-Id: Date: Subject: To: From: Sender; bh=WE57pxSUJyR+L5tsiqVz5w7Z/BAF2j86LaPJYplaCc0=; b=VrEOfYxAzVUo6v70tLqZX2jsEC8/KT5F+GaZVSQnVIBrfoDCono2uMvWNk2vjfKag8MC8idQ pFpV9NImfT71SmrgeTEFhVl932uu+KuInRsHy4ErWTF0H1/TgWNeI+/OouGIUwOobjOxRyYk bk1cOoLEfOn2ajsg28kPYQ5rmxk= X-Mailgun-Sending-Ip: 104.130.122.26 X-Mailgun-Sid: WyJiYzAxZiIsICJsaW51eC1hcm0ta2VybmVsQGxpc3RzLmluZnJhZGVhZC5vcmciLCAiYmU5ZTRhIl0= Received: from smtp.codeaurora.org (ec2-35-166-182-171.us-west-2.compute.amazonaws.com [35.166.182.171]) by mxa.mailgun.org with ESMTP id 5e0f24c3.7f77e9164e68-smtp-out-n02; Fri, 03 Jan 2020 11:25:55 -0000 (UTC) Received: by smtp.codeaurora.org (Postfix, from userid 1001) id 01A1CC447B4; Fri, 3 Jan 2020 11:25:54 +0000 (UTC) Received: from srichara-linux.qualcomm.com (blr-c-bdr-fw-01_GlobalNAT_AllZones-Outside.qualcomm.com [103.229.19.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: sricharan) by smtp.codeaurora.org (Postfix) with ESMTPSA id 980C9C447B2; Fri, 3 Jan 2020 11:25:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 980C9C447B2 Authentication-Results: aws-us-west-2-caf-mail-1.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: aws-us-west-2-caf-mail-1.web.codeaurora.org; spf=none smtp.mailfrom=sricharan@codeaurora.org From: Sricharan R To: sricharan@codeaurora.org, agross@kernel.org, devicetree@vger.kernel.org, linus.walleij@linaro.org, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org, linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org, linux-soc@vger.kernel.org, robh+dt@kernel.org, sboyd@kernel.org, sivaprak@codeaurora.org Subject: [PATCH 0/2] Add Global clock controller support for IPQ6018 Date: Fri, 3 Jan 2020 16:55:42 +0530 Message-Id: <1578050744-3761-1-git-send-email-sricharan@codeaurora.org> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200103_032557_815090_E0D02D77 X-CRM114-Status: GOOD ( 10.43 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org VGhlIElQUTYwMTggaXMgUXVhbGNvbW3igJlzIDgwMi4xMWF4IFNvQyBmb3IgUm91dGVycywKR2F0 ZXdheXMgYW5kIEFjY2VzcyBQb2ludHMuCgpUaGlzIHNlcmllcyBhZGRzIEdsb2JhbCBjbG9jayBj b250cm9sbGVyIHN1cHBvcnQgZm9yIGlwcTYwMTguCgpUaGUgcGF0Y2hlcyB3ZXJlIGEgcGFydCBv ZiBodHRwczovL3BhdGNod29yay5rZXJuZWwub3JnL2NvdmVyLzExMzAzMDc1LywKbm93IG1vdmVk IGl0IG91dHNpZGUgYmFzZWQgb24gU3RlcGhlbidzIHN1Z2dlc3Rpb24uCgpTcmljaGFyYW4gUiAo Mik6CiAgY2xrOiBxY29tOiBBZGQgRFQgYmluZGluZ3MgZm9yIGlwcTYwMTggZ2NjIGNsb2NrIGNv bnRyb2xsZXIKICBjbGs6IHFjb206IEFkZCBpcHE2MDE4IEdsb2JhbCBDbG9jayBDb250cm9sbGVy IHN1cHBvcnQKCiAuLi4vZGV2aWNldHJlZS9iaW5kaW5ncy9jbG9jay9xY29tLGdjYy55YW1sICAg ICAgICB8ICAgIDMgKy0KIGRyaXZlcnMvY2xrL3Fjb20vS2NvbmZpZyAgICAgICAgICAgICAgICAg ICAgICAgICAgIHwgICAgOCArCiBkcml2ZXJzL2Nsay9xY29tL01ha2VmaWxlICAgICAgICAgICAg ICAgICAgICAgICAgICB8ICAgIDEgKwogZHJpdmVycy9jbGsvcWNvbS9nY2MtaXBxNjAxOC5jICAg ICAgICAgICAgICAgICAgICAgfCA0NjQzICsrKysrKysrKysrKysrKysrKysrCiBpbmNsdWRlL2R0 LWJpbmRpbmdzL2Nsb2NrL3Fjb20sZ2NjLWlwcTYwMTguaCAgICAgICB8ICAyNjIgKysKIGluY2x1 ZGUvZHQtYmluZGluZ3MvcmVzZXQvcWNvbSxnY2MtaXBxNjAxOC5oICAgICAgIHwgIDE1NyArCiA2 IGZpbGVzIGNoYW5nZWQsIDUwNzMgaW5zZXJ0aW9ucygrKSwgMSBkZWxldGlvbigtKQogY3JlYXRl IG1vZGUgMTAwNjQ0IGRyaXZlcnMvY2xrL3Fjb20vZ2NjLWlwcTYwMTguYwogY3JlYXRlIG1vZGUg MTAwNjQ0IGluY2x1ZGUvZHQtYmluZGluZ3MvY2xvY2svcWNvbSxnY2MtaXBxNjAxOC5oCiBjcmVh dGUgbW9kZSAxMDA2NDQgaW5jbHVkZS9kdC1iaW5kaW5ncy9yZXNldC9xY29tLGdjYy1pcHE2MDE4 LmgKCi0tIAoxLjkuMQoKX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX18KbGludXgtYXJtLWtlcm5lbCBtYWlsaW5nIGxpc3QKbGludXgtYXJtLWtlcm5lbEBsaXN0 cy5pbmZyYWRlYWQub3JnCmh0dHA6Ly9saXN0cy5pbmZyYWRlYWQub3JnL21haWxtYW4vbGlzdGlu Zm8vbGludXgtYXJtLWtlcm5lbAo=