From patchwork Sat Sep 2 09:57:26 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergej Sawazki X-Patchwork-Id: 9935489 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id D697260216 for ; Sat, 2 Sep 2017 09:58:59 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CA065285C2 for ; Sat, 2 Sep 2017 09:58:59 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id BED89285DC; Sat, 2 Sep 2017 09:58:59 +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=-6.9 required=2.0 tests=BAYES_00,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 42535285C2 for ; Sat, 2 Sep 2017 09:58:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751366AbdIBJ67 (ORCPT ); Sat, 2 Sep 2017 05:58:59 -0400 Received: from s62.goserver.host ([37.17.224.62]:46540 "EHLO s62.goserver.host" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751033AbdIBJ66 (ORCPT ); Sat, 2 Sep 2017 05:58:58 -0400 Received: from duke.fritz.box (p5B23AE5C.dip0.t-ipconnect.de [91.35.174.92]) by s62.goserver.host (Postfix) with ESMTPSA id 62078BD00B1D; Sat, 2 Sep 2017 11:58:57 +0200 (CEST) From: Sergej Sawazki To: sboyd@codeaurora.org, mturquette@baylibre.com, linux@armlinux.org.uk, sebastian.hesselbarth@gmail.com Cc: rabeeh@solid-run.com, linux-clk@vger.kernel.org, Sergej Sawazki Subject: [RESEND PATCH 3/3] clk: si5351: Add a debug message for PLL reset Date: Sat, 2 Sep 2017 11:57:26 +0200 Message-Id: <1504346246-4730-4-git-send-email-sergej@taudac.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1504346246-4730-1-git-send-email-sergej@taudac.com> References: <1504346246-4730-1-git-send-email-sergej@taudac.com> 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 Print a debug message when resetting a PLL. It is useful to figure out what PLL is resetted and when. Cc: Sebastian Hesselbarth Cc: Rabeeh Khoury Signed-off-by: Sergej Sawazki --- drivers/clk/clk-si5351.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/clk/clk-si5351.c b/drivers/clk/clk-si5351.c index aa8d8d9..7a122c7 100644 --- a/drivers/clk/clk-si5351.c +++ b/drivers/clk/clk-si5351.c @@ -917,6 +917,10 @@ void _si5351_clkout_reset_pll(struct si5351_driver_data *drvdata, int num) si5351_reg_write(drvdata, SI5351_PLL_RESET, (val & SI5351_CLK_PLL_SELECT) ? SI5351_PLL_RESET_B : SI5351_PLL_RESET_A); + + dev_dbg(&drvdata->client->dev, "%s - %s: pll = %d\n", + __func__, clk_hw_get_name(&drvdata->clkout[num].hw), + (val & SI5351_CLK_PLL_SELECT) ? 1 : 0); } static int si5351_clkout_prepare(struct clk_hw *hw)