From: Peng Fan <peng.fan@oss.nxp.com>
To: Frank Li <Frank.li@nxp.com>
Cc: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
devicetree@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, Peng Fan <peng.fan@nxp.com>
Subject: Re: [PATCH 2/2] nvmem: imx-ocotp-ele: Support accessing controller for i.MX9
Date: Fri, 13 Dec 2024 12:11:00 +0800 [thread overview]
Message-ID: <20241213041100.GA6948@localhost.localdomain> (raw)
In-Reply-To: <Z1shTD5QLRXB1wAk@lizhi-Precision-Tower-5810>
On Thu, Dec 12, 2024 at 12:45:48PM -0500, Frank Li wrote:
>On Thu, Dec 12, 2024 at 04:24:42PM +0800, Peng Fan (OSS) wrote:
>> From: Peng Fan <peng.fan@nxp.com>
>>
>> i.MX9 OCOTP supports a specific peripheral or function being fused
>> which means disabled, so
>> - Introduce ocotp_access_gates to be container of efuse gate info
>> - Iterate each node under '/soc' to check accessing permission. If not
>> allowed to be accessed, detach the node
>>
>> Signed-off-by: Peng Fan <peng.fan@nxp.com>
>> ---
>> drivers/nvmem/imx-ocotp-ele.c | 187 +++++++++++++++++++++++++++++++++++++++++-
>> 1 file changed, 186 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/nvmem/imx-ocotp-ele.c b/drivers/nvmem/imx-ocotp-ele.c
>> index ca6dd71d8a2e29888c6e556aaea116c1a967cb5f..542539b86efd2d38be2903c1d0ea72f918ff5b75 100644
>> --- a/drivers/nvmem/imx-ocotp-ele.c
>> +++ b/drivers/nvmem/imx-ocotp-ele.c
>> @@ -5,6 +5,8 @@
>> * Copyright 2023 NXP
>> */
>>
>> +#include <dt-bindings/nvmem/fsl,imx93-ocotp.h>
>> +#include <dt-bindings/nvmem/fsl,imx95-ocotp.h>
>> #include <linux/device.h>
>> #include <linux/io.h>
>> #include <linux/module.h>
>> @@ -27,6 +29,7 @@ struct ocotp_map_entry {
>> };
>>
>> struct ocotp_devtype_data {
>> + const struct ocotp_access_gates *access_gates;
>> u32 reg_off;
>> char *name;
>> u32 size;
>> @@ -36,11 +39,26 @@ struct ocotp_devtype_data {
>> struct ocotp_map_entry entry[];
>> };
>>
>> +#define OCOTP_MAX_NUM_GATE_WORDS 4
>> +#define IMX93_OCOTP_NUM_GATES 17
>> +#define IMX95_OCOTP_NUM_GATES 36
>> +
>> +struct ocotp_access_gates {
>> + u32 num_words;
>> + u32 words[OCOTP_MAX_NUM_GATE_WORDS];
>> + u32 num_gates;
>> + struct access_gate {
>> + u32 word;
>> + u32 mask;
>> + } gates[];
>> +};
>> +
>> struct imx_ocotp_priv {
>> struct device *dev;
>> void __iomem *base;
>> struct nvmem_config config;
>> struct mutex lock;
>> + u32 value[OCOTP_MAX_NUM_GATE_WORDS];
>> const struct ocotp_devtype_data *data;
>> };
>>
>> @@ -131,6 +149,100 @@ static void imx_ocotp_fixup_dt_cell_info(struct nvmem_device *nvmem,
>> cell->read_post_process = imx_ocotp_cell_pp;
>> }
>>
>> +static int imx_ele_ocotp_check_access(struct platform_device *pdev, u32 id)
>> +{
>> + struct imx_ocotp_priv *priv = platform_get_drvdata(pdev);
>> + const struct ocotp_access_gates *access_gates = priv->data->access_gates;
>> + u32 word, mask;
>> +
>> + if (id >= access_gates->num_gates) {
>> + dev_err(&pdev->dev, "Index %d too large\n", id);
>> + return -EACCES;
>> + }
>> +
>> + word = access_gates->gates[id].word;
>> + mask = access_gates->gates[id].mask;
>> +
>> + dev_dbg(&pdev->dev, "id:%d word:%d mask:0x%08x\n", id, word, mask);
>> + /* true means not allow access */
>> + if (priv->value[word] & mask)
>> + return -EACCES;
>> +
>> + return 0;
>> +}
>> +
>> +static int imx_ele_ocotp_grant_access(struct platform_device *pdev, struct device_node *parent)
>> +{
>> + struct device_node *child;
>> + struct device *dev = &pdev->dev;
>> +
>> + for_each_available_child_of_node(parent, child) {
>> + struct of_phandle_iterator it;
>> + int err;
>> + u32 id;
>> +
>> + of_for_each_phandle(&it, err, child, "access-controllers",
>> + "#access-controller-cells", 0) {
>> + struct of_phandle_args provider_args;
>> + struct device_node *provider = it.node;
>> +
>> + if (err) {
>> + dev_err(dev, "Unable to get access-controllers property for node %s\n, err: %d",
>> + child->full_name, err);
>> + of_node_put(provider);
>> + return err;
>> + }
>> +
>> + /* Only support one cell */
>> + if (of_phandle_iterator_args(&it, provider_args.args, 1) != 1) {
>> + dev_err(dev, "wrong args count\n");
>> + return -EINVAL;
>> + }
>> +
>> + id = provider_args.args[0];
>> +
>> + dev_dbg(dev, "Checking node: %s gate: %d\n", child->full_name, id);
>> +
>> + if (imx_ele_ocotp_check_access(pdev, id)) {
>> + of_detach_node(child);
>> + dev_err(dev, "%s: Not granted, device driver will not be probed\n",
>> + child->full_name);
>> + }
>> + }
>> +
>> + imx_ele_ocotp_grant_access(pdev, child);
>> + }
>
>Does it mean ocopt driver have to probe before other driver probe?
Yes. devlink could make sure ocotp being probed before other drivers which
needs access control check.
Regards,
Peng.
>
>Frank
>
next prev parent reply other threads:[~2024-12-13 3:05 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-12 8:24 [PATCH 0/2] Make i.MX9 OCOTP work as accessing controller Peng Fan (OSS)
2024-12-12 8:24 ` [PATCH 1/2] dt-bindings: nvmem: imx-ocotp: Introduce #access-controller-cells Peng Fan (OSS)
2024-12-12 17:39 ` Frank Li
2024-12-12 8:24 ` [PATCH 2/2] nvmem: imx-ocotp-ele: Support accessing controller for i.MX9 Peng Fan (OSS)
2024-12-12 17:45 ` Frank Li
2024-12-13 4:11 ` Peng Fan [this message]
2024-12-13 7:52 ` Krzysztof Kozlowski
2024-12-13 19:11 ` Frank Li
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=20241213041100.GA6948@localhost.localdomain \
--to=peng.fan@oss.nxp.com \
--cc=Frank.li@nxp.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=peng.fan@nxp.com \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=srinivas.kandagatla@linaro.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.