All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dario Binacchi <dario.binacchi@amarulasolutions.com>
To: linux-kernel@vger.kernel.org
Cc: tommaso.merciai@amarulasolutions.com,
	linux-amarula@amarulasolutions.com,
	Chen-Yu Tsai <wenst@chromium.org>,
	jagan@amarulasolutions.com, angelo@amarulasolutions.com,
	anthony@amarulasolutions.com, michael@amarulasolutions.com,
	Dario Binacchi <dario.binacchi@amarulasolutions.com>,
	Abel Vesa <abelvesa@kernel.org>,
	Fabio Estevam <festevam@gmail.com>,
	Michael Turquette <mturquette@baylibre.com>,
	NXP Linux Team <linux-imx@nxp.com>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Shawn Guo <shawnguo@kernel.org>, Stephen Boyd <sboyd@kernel.org>,
	linux-arm-kernel@lists.infradead.org, linux-clk@vger.kernel.org
Subject: [RFC PATCH 01/11] clk: imx: add structure to extend register accesses
Date: Sat, 31 Dec 2022 11:47:26 +0100	[thread overview]
Message-ID: <20221231104736.12635-2-dario.binacchi@amarulasolutions.com> (raw)
In-Reply-To: <20221231104736.12635-1-dario.binacchi@amarulasolutions.com>

The imx_clk_reg structure allows accessing both registers that belong to
specific modules and those that are registered in syscon through the use
of the regmap API.
This is a preparation patch for the upcoming support to setup clocks
directly from the device tree.

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---

 drivers/clk/imx/clk.h | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h
index 689b3ad927c0..86538c990a0d 100644
--- a/drivers/clk/imx/clk.h
+++ b/drivers/clk/imx/clk.h
@@ -89,6 +89,18 @@ struct imx_fracn_gppll_clk {
 	int flags;
 };
 
+/**
+ * struct imx_clk_reg - imx register declaration
+ * @base: the register base address
+ * @regmap: the register map
+ * @offset: the offset within @base or @regmap
+ */
+struct imx_clk_reg {
+	void __iomem *base;
+	struct regmap *regmap;
+	u16 offset;
+};
+
 struct clk_hw *imx_clk_fracn_gppll(const char *name, const char *parent_name, void __iomem *base,
 				   const struct imx_fracn_gppll_clk *pll_clk);
 
-- 
2.32.0


WARNING: multiple messages have this Message-ID (diff)
From: Dario Binacchi <dario.binacchi@amarulasolutions.com>
To: linux-kernel@vger.kernel.org
Cc: tommaso.merciai@amarulasolutions.com,
	linux-amarula@amarulasolutions.com,
	Chen-Yu Tsai <wenst@chromium.org>,
	jagan@amarulasolutions.com, angelo@amarulasolutions.com,
	anthony@amarulasolutions.com, michael@amarulasolutions.com,
	Dario Binacchi <dario.binacchi@amarulasolutions.com>,
	Abel Vesa <abelvesa@kernel.org>,
	Fabio Estevam <festevam@gmail.com>,
	Michael Turquette <mturquette@baylibre.com>,
	NXP Linux Team <linux-imx@nxp.com>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Shawn Guo <shawnguo@kernel.org>, Stephen Boyd <sboyd@kernel.org>,
	linux-arm-kernel@lists.infradead.org, linux-clk@vger.kernel.org
Subject: [RFC PATCH 01/11] clk: imx: add structure to extend register accesses
Date: Sat, 31 Dec 2022 11:47:26 +0100	[thread overview]
Message-ID: <20221231104736.12635-2-dario.binacchi@amarulasolutions.com> (raw)
In-Reply-To: <20221231104736.12635-1-dario.binacchi@amarulasolutions.com>

The imx_clk_reg structure allows accessing both registers that belong to
specific modules and those that are registered in syscon through the use
of the regmap API.
This is a preparation patch for the upcoming support to setup clocks
directly from the device tree.

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---

 drivers/clk/imx/clk.h | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h
index 689b3ad927c0..86538c990a0d 100644
--- a/drivers/clk/imx/clk.h
+++ b/drivers/clk/imx/clk.h
@@ -89,6 +89,18 @@ struct imx_fracn_gppll_clk {
 	int flags;
 };
 
+/**
+ * struct imx_clk_reg - imx register declaration
+ * @base: the register base address
+ * @regmap: the register map
+ * @offset: the offset within @base or @regmap
+ */
+struct imx_clk_reg {
+	void __iomem *base;
+	struct regmap *regmap;
+	u16 offset;
+};
+
 struct clk_hw *imx_clk_fracn_gppll(const char *name, const char *parent_name, void __iomem *base,
 				   const struct imx_fracn_gppll_clk *pll_clk);
 
-- 
2.32.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2022-12-31 10:48 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-31 10:47 [RFC PATCH 00/11] clk: imx8mn: setup clocks from the device tree Dario Binacchi
2022-12-31 10:47 ` Dario Binacchi
2022-12-31 10:47 ` Dario Binacchi [this message]
2022-12-31 10:47   ` [RFC PATCH 01/11] clk: imx: add structure to extend register accesses Dario Binacchi
2022-12-31 10:47 ` [RFC PATCH 02/11] clk: imx: add clk_hw based API imx_get_clk_hw_from_dt() Dario Binacchi
2022-12-31 10:47   ` Dario Binacchi
2022-12-31 10:47 ` [RFC PATCH 03/11] clk: imx8mn: add gate driver Dario Binacchi
2022-12-31 10:47   ` Dario Binacchi
2022-12-31 10:47 ` [RFC PATCH 04/11] clk: imx8mn: add mux driver Dario Binacchi
2022-12-31 10:47   ` Dario Binacchi
2022-12-31 10:47 ` [RFC PATCH 05/11] clk: imx8mn: add divider driver Dario Binacchi
2022-12-31 10:47   ` Dario Binacchi
2022-12-31 10:47 ` [RFC PATCH 06/11] clk: imx: pll14xx: add device tree support Dario Binacchi
2022-12-31 10:47   ` Dario Binacchi
2022-12-31 10:47 ` [RFC PATCH 07/11] clk: imx: composite-8m: " Dario Binacchi
2022-12-31 10:47   ` Dario Binacchi
2022-12-31 12:22   ` kernel test robot
2022-12-31 10:47 ` [RFC PATCH 08/11] clk: imx: gate2: " Dario Binacchi
2022-12-31 10:47   ` Dario Binacchi
2022-12-31 10:47 ` [RFC PATCH 09/11] clk: imx: cpu: " Dario Binacchi
2022-12-31 10:47   ` Dario Binacchi
2022-12-31 10:47 ` [RFC PATCH 10/11] arm64: dts: imx8mn: add dumy clock Dario Binacchi
2022-12-31 10:47   ` Dario Binacchi
2022-12-31 10:47 ` [RFC PATCH 11/11] arm64: dts: imx8mn: add clocks description Dario Binacchi

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=20221231104736.12635-2-dario.binacchi@amarulasolutions.com \
    --to=dario.binacchi@amarulasolutions.com \
    --cc=abelvesa@kernel.org \
    --cc=angelo@amarulasolutions.com \
    --cc=anthony@amarulasolutions.com \
    --cc=festevam@gmail.com \
    --cc=jagan@amarulasolutions.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-amarula@amarulasolutions.com \
    --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=michael@amarulasolutions.com \
    --cc=mturquette@baylibre.com \
    --cc=s.hauer@pengutronix.de \
    --cc=sboyd@kernel.org \
    --cc=shawnguo@kernel.org \
    --cc=tommaso.merciai@amarulasolutions.com \
    --cc=wenst@chromium.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.