From patchwork Sat Dec 8 00:03:14 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Boyd X-Patchwork-Id: 10719031 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 8DAD4109C for ; Sat, 8 Dec 2018 00:03:17 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7CDF22D81D for ; Sat, 8 Dec 2018 00:03:17 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6FC5B2E984; Sat, 8 Dec 2018 00:03:17 +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=ham 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 1E47E2D81D for ; Sat, 8 Dec 2018 00:03:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726047AbeLHADQ (ORCPT ); Fri, 7 Dec 2018 19:03:16 -0500 Received: from mail.kernel.org ([198.145.29.99]:60784 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726041AbeLHADQ (ORCPT ); Fri, 7 Dec 2018 19:03:16 -0500 Received: from mail.kernel.org (unknown [104.132.0.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 417552054F; Sat, 8 Dec 2018 00:03:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1544227395; bh=jBTDkw51DkUqeutehCqzibEpVANKtvX3W7HAKjj6dsQ=; h=From:To:Cc:Subject:Date:From; b=v7iSXbtFF/Ed9eSxglTCuWYLREbQwtUJPkrRJS98wJGve2yTyMrU67Bzn88/lTR38 w2fNfOUwp6+GyoIx0+k+PeUbE8SWNo34PF0ZcW0qm36ROVEAzv2Nv0m0UXBuJuWDT0 LdF8Fecby605Bwf3SstmO/1817kcPrtLkta2V4jA= From: Stephen Boyd To: Linus Torvalds Cc: Michael Turquette , linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] clk fixes for v4.20-rc6 Date: Fri, 7 Dec 2018 16:03:14 -0800 Message-Id: <20181208000314.180968-1-sboyd@kernel.org> X-Mailer: git-send-email 2.20.0.rc2.403.gdbc3b29805-goog MIME-Version: 1.0 Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The following changes since commit 1aefa98b010e9cc7a07046cbcb1237ddad85b708: clk: qcom: gcc: Fix board clock node name (2018-11-09 14:13:55 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git tags/clk-fixes-for-linus for you to fetch changes up to 9a43be9cedd516f188e6333d3b43402386723eff: clk: zynqmp: Off by one in zynqmp_is_valid_clock() (2018-12-03 09:54:48 -0800) ---------------------------------------------------------------- A few clk driver fixes this time: - Introduce protected-clock DT binding to fix breakage on qcom sdm845-mtp boards where the qspi clks introduced this merge window cause the firmware on those boards to take down the system if we try to read the clk registers - Fix a couple off-by-one errors found by Dan Carpenter - Handle failure in zynq fixed factor clk driver to avoid using uninitialized data ---------------------------------------------------------------- Bjorn Andersson (1): arm64: dts: qcom: sdm845-mtp: Mark protected gcc clocks Dan Carpenter (3): clk: mvebu: Off by one bugs in cp110_of_clk_get() clk: mmp: Off by one in mmp_clk_add() clk: zynqmp: Off by one in zynqmp_is_valid_clock() Rajan Vaja (1): clk: zynqmp: handle fixed factor param query error Stephen Boyd (3): dt-bindings: clk: Introduce 'protected-clocks' property clk: qcom: Support 'protected-clocks' property Merge branch 'clk-protected-binding' into clk-fixes .../devicetree/bindings/clock/clock-bindings.txt | 16 ++++++++++++++++ arch/arm64/boot/dts/qcom/sdm845-mtp.dts | 6 ++++++ drivers/clk/mmp/clk.c | 2 +- drivers/clk/mvebu/cp110-system-controller.c | 4 ++-- drivers/clk/qcom/common.c | 18 ++++++++++++++++++ drivers/clk/zynqmp/clkc.c | 5 ++++- 6 files changed, 47 insertions(+), 4 deletions(-)