Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752944AbbBRQPT (ORCPT ); Wed, 18 Feb 2015 11:15:19 -0500 Received: from mail-wi0-f177.google.com ([209.85.212.177]:58539 "EHLO mail-wi0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752831AbbBRQPN (ORCPT ); Wed, 18 Feb 2015 11:15:13 -0500 From: Lee Jones To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: lee.jones@linaro.org, kernel@stlinux.com, mturquette@linaro.org, sboyd@codeaurora.org, devicetree@vger.kernel.org Subject: [PATCH v2 3/4] clk: Provide an always-on clock domain framework Date: Wed, 18 Feb 2015 16:15:00 +0000 Message-Id: <1424276101-30137-4-git-send-email-lee.jones@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1424276101-30137-1-git-send-email-lee.jones@linaro.org> References: <1424276101-30137-1-git-send-email-lee.jones@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3134 Lines: 102 Much h/w contain clocks which if turned off would prove fatal. The only way to recover is to restart the board(s). This driver takes references to clocks which are required to be always-on in order to prevent the common clk framework from trying to turn them off during the clk_disabled_unused() procedure. Signed-off-by: Lee Jones --- drivers/clk/Makefile | 1 + drivers/clk/clkdomain.c | 63 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 drivers/clk/clkdomain.c diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index d5fba5b..d9e2718 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile @@ -3,6 +3,7 @@ obj-$(CONFIG_HAVE_CLK) += clk-devres.o obj-$(CONFIG_CLKDEV_LOOKUP) += clkdev.o obj-$(CONFIG_COMMON_CLK) += clk.o obj-$(CONFIG_COMMON_CLK) += clk-divider.o +obj-$(CONFIG_COMMON_CLK) += clkdomain.o obj-$(CONFIG_COMMON_CLK) += clk-fixed-factor.o obj-$(CONFIG_COMMON_CLK) += clk-fixed-rate.o obj-$(CONFIG_COMMON_CLK) += clk-gate.o diff --git a/drivers/clk/clkdomain.c b/drivers/clk/clkdomain.c new file mode 100644 index 0000000..8c83f99 --- /dev/null +++ b/drivers/clk/clkdomain.c @@ -0,0 +1,63 @@ +/* + * ST Clock Domain + * + * Copyright (C) 2015 STMicroelectronics – All Rights Reserved + * + * Author: Lee Jones + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ + +#include +#include +#include +#include +#include + +static void ao_clock_domain_hog_clock(struct platform_device *pdev, int index) +{ + struct device_node *np = pdev->dev.of_node; + struct clk *clk; + int ret; + + clk = of_clk_get(np, index); + if (IS_ERR(clk)) { + dev_warn(&pdev->dev, "Failed get clock %s[%d]: %li\n", + np->full_name, index, PTR_ERR(clk)); + return; + } + + ret = clk_prepare_enable(clk); + if (ret) + dev_warn(&pdev->dev, "Failed to enable clock: %s\n", clk->name); +} + +static int ao_clock_domain_probe(struct platform_device *pdev) +{ + struct device_node *np = pdev->dev.of_node; + int nclks, i; + + nclks = of_count_phandle_with_args(np, "clocks", "#clock-cells"); + + for (i = 0; i < nclks; i++) + ao_clock_domain_hog_clock(pdev, i); + + return 0; +} + +static const struct of_device_id ao_clock_domain_match[] = { + { .compatible = "always-on-clk-domain" }, + { }, +}; + +static struct platform_driver ao_clock_domain_driver = { + .probe = ao_clock_domain_probe, + .driver = { + .name = "always-on-clk-domain", + .of_match_table = ao_clock_domain_match, + }, +}; +module_platform_driver(ao_clock_domain_driver); -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/