From: Philipp Zabel <p.zabel@pengutronix.de>
To: Abel Vesa <abel.vesa@nxp.com>,
Mike Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh@kernel.org>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <kernel@pengutronix.de>,
Fabio Estevam <fabio.estevam@nxp.com>,
Anson Huang <anson.huang@nxp.com>, Jacky Bai <ping.bai@nxp.com>,
Peng Fan <peng.fan@nxp.com>, Dong Aisheng <aisheng.dong@nxp.com>,
Fugang Duan <fugang.duan@nxp.com>,
devicetree@vger.kernel.org
Cc: NXP Linux Team <linux-imx@nxp.com>,
linux-arm-kernel@lists.infradead.org,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
linux-clk@vger.kernel.org
Subject: Re: [PATCH v2 11/17] clk: imx: Add blk_ctrl combo driver
Date: Tue, 25 Aug 2020 12:48:41 +0200 [thread overview]
Message-ID: <ea2563fcb456830b37b0031455e5054d6b81c680.camel@pengutronix.de> (raw)
In-Reply-To: <1597406966-13740-12-git-send-email-abel.vesa@nxp.com>
On Fri, 2020-08-14 at 15:09 +0300, Abel Vesa wrote:
> On i.MX8MP, there is a new type of IP which is called BLK_CTRL in
> RM and usually is comprised of some GPRs that are considered too
> generic to be part of any dedicated IP from that specific subsystem.
>
> In general, some of the GPRs have some clock bits, some have reset bits,
> so in order to be able to use the imx clock API, this needs to be
> in a clock driver. From there it can use the reset controller API and
> leave the rest to the syscon.
>
> This driver is intended to work with the following BLK_CTRL IPs found in
> i.MX8MP (but it might be reused by the future i.MX platforms that
> have this kind of IP in their design):
> - Audio
> - Media
> - HDMI
>
> Signed-off-by: Abel Vesa <abel.vesa@nxp.com>
> ---
> drivers/clk/imx/Makefile | 2 +-
> drivers/clk/imx/clk-blk-ctrl.c | 327 +++++++++++++++++++++++++++++++++++++++++
> drivers/clk/imx/clk-blk-ctrl.h | 81 ++++++++++
> 3 files changed, 409 insertions(+), 1 deletion(-)
> create mode 100644 drivers/clk/imx/clk-blk-ctrl.c
> create mode 100644 drivers/clk/imx/clk-blk-ctrl.h
>
> diff --git a/drivers/clk/imx/Makefile b/drivers/clk/imx/Makefile
> index 928f874c..7afe1df 100644
> --- a/drivers/clk/imx/Makefile
> +++ b/drivers/clk/imx/Makefile
> @@ -27,7 +27,7 @@ obj-$(CONFIG_MXC_CLK_SCU) += \
>
> obj-$(CONFIG_CLK_IMX8MM) += clk-imx8mm.o
> obj-$(CONFIG_CLK_IMX8MN) += clk-imx8mn.o
> -obj-$(CONFIG_CLK_IMX8MP) += clk-imx8mp.o
> +obj-$(CONFIG_CLK_IMX8MP) += clk-imx8mp.o clk-blk-ctrl.o
> obj-$(CONFIG_CLK_IMX8MQ) += clk-imx8mq.o
> obj-$(CONFIG_CLK_IMX8QXP) += clk-imx8qxp.o clk-imx8qxp-lpcg.o
>
> diff --git a/drivers/clk/imx/clk-blk-ctrl.c b/drivers/clk/imx/clk-blk-ctrl.c
> new file mode 100644
> index 00000000..1672646
> --- /dev/null
> +++ b/drivers/clk/imx/clk-blk-ctrl.c
> @@ -0,0 +1,327 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * Copyright 2020 NXP.
> + */
> +
> +#include <linux/clk.h>
> +#include <linux/reset-controller.h>
> +#include <linux/err.h>
> +#include <linux/io.h>
> +#include <linux/module.h>
> +#include <linux/of.h>
> +#include <linux/of_address.h>
> +#include <linux/of_device.h>
> +#include <linux/platform_device.h>
> +#include <linux/pm_runtime.h>
> +#include <linux/slab.h>
> +#include <linux/string.h>
> +#include <linux/types.h>
> +
> +#include "clk.h"
> +#include "clk-blk-ctrl.h"
> +
> +struct reset_hw {
> + u32 offset;
> + u32 shift;
> + u32 mask;
> + bool asserted;
> +};
> +
> +struct pm_safekeep_info {
> + uint32_t *regs_values;
> + uint32_t *regs_offsets;
> + uint32_t regs_num;
> +};
> +
> +struct imx_blk_ctrl_drvdata {
> + void __iomem *base;
> + struct reset_controller_dev rcdev;
> + struct reset_hw *rst_hws;
> + struct pm_safekeep_info pm_info;
> +
> + spinlock_t lock;
> +};
> +
> +static int imx_blk_ctrl_reset_set(struct reset_controller_dev *rcdev,
> + unsigned long id, bool assert)
> +{
> + struct imx_blk_ctrl_drvdata *drvdata = container_of(rcdev,
> + struct imx_blk_ctrl_drvdata, rcdev);
> + unsigned int offset = drvdata->rst_hws[id].offset;
> + unsigned int shift = drvdata->rst_hws[id].shift;
> + unsigned int mask = drvdata->rst_hws[id].mask;
> + void __iomem *reg_addr = drvdata->base + offset;
> + unsigned long flags;
> + unsigned int asserted_before = 0, asserted_after = 0;
> + u32 reg;
> + int i;
> +
> + spin_lock_irqsave(&drvdata->lock, flags);
> +
> + for (i = 0; i < drvdata->rcdev.nr_resets; i++)
> + if (drvdata->rst_hws[i].asserted)
> + asserted_before++;
> +
> + if (asserted_before == 0 && assert)
> + pm_runtime_get(rcdev->dev);
Shouldn't that be pm_runtime_get_sync() ?
I would do that unconditionally before locking drvdata->lock and then
drop unnecessary refcounts afterwards.
> +
> + if (assert) {
> + reg = readl(reg_addr);
> + writel(reg & ~(mask << shift), reg_addr);
> + drvdata->rst_hws[id].asserted = true;
> + } else {
> + reg = readl(reg_addr);
> + writel(reg | (mask << shift), reg_addr);
> + drvdata->rst_hws[id].asserted = false;
> + }
> +
> + for (i = 0; i < drvdata->rcdev.nr_resets; i++)
> + if (drvdata->rst_hws[i].asserted)
> + asserted_after++;
> +
> + if (asserted_before == 1 && asserted_after == 0)
> + pm_runtime_put(rcdev->dev);
> +
> + spin_unlock_irqrestore(&drvdata->lock, flags);
> +
> + return 0;
> +}
regards
Philipp
next prev parent reply other threads:[~2020-08-25 10:49 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-14 12:09 [PATCH v2 00/17] Add BLK_CTRL support for i.MX8MP Abel Vesa
2020-08-14 12:09 ` [PATCH v2 01/17] dt-bindings: clocks: imx8mp: Rename audiomix ids clocks to audio_blk_ctrl Abel Vesa
2020-08-17 7:44 ` Dong Aisheng
2020-08-25 2:12 ` Rob Herring
2020-08-14 12:09 ` [PATCH v2 02/17] dt-bindings: reset: imx8mp: Add audio blk_ctrl reset IDs Abel Vesa
2020-08-17 7:45 ` Dong Aisheng
2020-08-25 2:13 ` Rob Herring
2020-08-14 12:09 ` [PATCH v2 03/17] dt-bindings: clock: imx8mp: Add ids for the audio shared gate Abel Vesa
2020-08-17 7:45 ` Dong Aisheng
2020-08-14 12:09 ` [PATCH v2 04/17] dt-bindings: clock: imx8mp: Add media blk_ctrl clock IDs Abel Vesa
2020-08-17 7:46 ` Dong Aisheng
2020-08-14 12:09 ` [PATCH v2 05/17] dt-bindings: reset: imx8mp: Add media blk_ctrl reset IDs Abel Vesa
2020-08-17 7:47 ` Dong Aisheng
2020-08-14 12:09 ` [PATCH v2 06/17] dt-bindings: clock: imx8mp: Add hdmi blk_ctrl clock IDs Abel Vesa
2020-08-14 12:09 ` [PATCH v2 07/17] dt-bindings: reset: imx8mp: Add hdmi blk_ctrl reset IDs Abel Vesa
2020-08-17 7:47 ` Dong Aisheng
2020-08-14 12:09 ` [PATCH v2 08/17] clk: imx8mp: Add audio shared gate Abel Vesa
2020-08-17 7:48 ` Dong Aisheng
2020-08-14 12:09 ` [PATCH v2 09/17] arm64: dts: Remove imx-hdmimix-reset header file Abel Vesa
2020-08-17 7:51 ` Dong Aisheng
2020-08-19 20:09 ` Abel Vesa
2020-08-14 12:09 ` [PATCH v2 10/17] Documentation: bindings: clk: Add bindings for i.MX BLK_CTRL Abel Vesa
2020-08-17 8:07 ` Dong Aisheng
2020-08-25 2:14 ` Rob Herring
2020-08-14 12:09 ` [PATCH v2 11/17] clk: imx: Add blk_ctrl combo driver Abel Vesa
2020-08-18 11:27 ` Dong Aisheng
2020-08-19 20:31 ` Abel Vesa
2020-08-20 1:40 ` Dong Aisheng
2020-08-25 10:48 ` Philipp Zabel [this message]
2020-08-25 11:24 ` Abel Vesa
2020-08-25 12:07 ` Philipp Zabel
2020-08-25 14:11 ` Abel Vesa
2020-08-25 18:30 ` Abel Vesa
2020-08-26 7:46 ` Philipp Zabel
2020-08-14 12:09 ` [PATCH v2 12/17] clk: imx8mp: Add audio blk_ctrl clocks and resets Abel Vesa
2020-08-18 11:29 ` Dong Aisheng
2020-08-19 20:33 ` Abel Vesa
2020-08-14 12:09 ` [PATCH v2 13/17] clk: imx8mp: Add hdmi " Abel Vesa
2020-08-14 12:09 ` [PATCH v2 14/17] clk: imx8mp: Add media " Abel Vesa
2020-08-14 12:09 ` [PATCH v2 15/17] arm64: dts: imx8mp: Add audio_blk_ctrl node Abel Vesa
2020-08-18 11:32 ` Dong Aisheng
2020-08-19 20:33 ` Abel Vesa
2020-08-14 12:09 ` [PATCH v2 16/17] arm64: dts: imx8mp: Add media_blk_ctrl node Abel Vesa
2020-08-18 11:34 ` Dong Aisheng
2020-08-19 20:37 ` Abel Vesa
2020-08-20 1:31 ` Dong Aisheng
2020-09-07 9:11 ` Abel Vesa
2020-08-14 12:09 ` [PATCH v2 17/17] arm64: dts: imx8mp: Add hdmi_blk_ctrl node Abel Vesa
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ea2563fcb456830b37b0031455e5054d6b81c680.camel@pengutronix.de \
--to=p.zabel@pengutronix.de \
--cc=abel.vesa@nxp.com \
--cc=aisheng.dong@nxp.com \
--cc=anson.huang@nxp.com \
--cc=devicetree@vger.kernel.org \
--cc=fabio.estevam@nxp.com \
--cc=fugang.duan@nxp.com \
--cc=kernel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=peng.fan@nxp.com \
--cc=ping.bai@nxp.com \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=shawnguo@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).