i.MX8M OCOTP supports a specific peripheral or function being fused
which means disabled, so
- Introduce disable_fuse for a list of possible fused peripherals.
- Iterate all nodes to check accessing permission. If not
allowed to be accessed, detach the node
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
---
drivers/nvmem/Kconfig | 3 ++
drivers/nvmem/imx-ocotp.c | 105 +++++++++++++++++++++++++++++++++++++-
2 files changed, 107 insertions(+), 1 deletion(-)
diff --git a/drivers/nvmem/Kconfig b/drivers/nvmem/Kconfig
index 8671b7c974b93..ba5c928cab520 100644
--- a/drivers/nvmem/Kconfig
+++ b/drivers/nvmem/Kconfig
@@ -84,6 +84,9 @@ config NVMEM_IMX_OCOTP
This driver can also be built as a module. If so, the module
will be called nvmem-imx-ocotp.
+ If built as modules, any other driver relying on this working
+ as access controller also needs to be a module as well.
+
config NVMEM_IMX_OCOTP_ELE
tristate "i.MX On-Chip OTP Controller support"
depends on ARCH_MXC || COMPILE_TEST
diff --git a/drivers/nvmem/imx-ocotp.c b/drivers/nvmem/imx-ocotp.c
index c5086a16450ac..e3ea026a37d0d 100644
--- a/drivers/nvmem/imx-ocotp.c
+++ b/drivers/nvmem/imx-ocotp.c
@@ -23,6 +23,7 @@
#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
+#include <dt-bindings/nvmem/fsl,imx8mn-ocotp.h>
#define IMX_OCOTP_OFFSET_B0W0 0x400 /* Offset from base address of the
* OTP Bank0 Word0
@@ -91,11 +92,20 @@ struct ocotp_ctrl_reg {
u32 bm_rel_shadows;
};
+#define OCOTP_MAX_NUM_GATE_WORDS 4
+
+struct disable_fuse {
+ u32 fuse_addr;
+ u32 mask;
+};
+
struct ocotp_params {
unsigned int nregs;
unsigned int bank_address_words;
void (*set_timing)(struct ocotp_priv *priv);
struct ocotp_ctrl_reg ctrl;
+ u32 num_disables;
+ struct disable_fuse *disables;
};
static int imx_ocotp_wait_for_busy(struct ocotp_priv *priv, u32 flags)
@@ -552,11 +562,25 @@ static const struct ocotp_params imx8mm_params = {
.ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,
};
+struct disable_fuse imx8mn_disable_fuse[] = {
+ [IMX8MN_OCOTP_M7_DISABLE] = { .fuse_addr = 20, .mask = BIT(8) },
+ [IMX8MN_OCOTP_M7_MPU_DISABLE] = { .fuse_addr = 20, .mask = BIT(9) },
+ [IMX8MN_OCOTP_M7_FPU_DISABLE] = { .fuse_addr = 20, .mask = BIT(10) },
+ [IMX8MN_OCOTP_USB_OTG1_DISABLE] = { .fuse_addr = 20, .mask = BIT(11) },
+ [IMX8MN_OCOTP_GPU3D_DISABLE] = { .fuse_addr = 20, .mask = BIT(24) },
+ [IMX8MN_OCOTP_MIPI_DSI_DISABLE] = { .fuse_addr = 20, .mask = BIT(28) },
+ [IMX8MN_OCOTP_ENET_DISABLE] = { .fuse_addr = 20, .mask = BIT(29) },
+ [IMX8MN_OCOTP_MIPI_CSI_DISABLE] = { .fuse_addr = 20, .mask = BIT(30) },
+ [IMX8MN_OCOTP_ASRC_DISABLE] = { .fuse_addr = 20, .mask = BIT(31) },
+};
+
static const struct ocotp_params imx8mn_params = {
.nregs = 256,
.bank_address_words = 0,
.set_timing = imx_ocotp_set_imx6_timing,
.ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,
+ .num_disables = ARRAY_SIZE(imx8mn_disable_fuse),
+ .disables = imx8mn_disable_fuse,
};
static const struct ocotp_params imx8mp_params = {
@@ -589,6 +613,81 @@ static void imx_ocotp_fixup_dt_cell_info(struct nvmem_device *nvmem,
cell->read_post_process = imx_ocotp_cell_pp;
}
+static int imx_ocotp_check_access(struct ocotp_priv *priv, u32 id)
+{
+ u32 addr, mask, ret, val;
+
+ if (id >= priv->params->num_disables) {
+ dev_err(priv->dev, "Index %d too large\n", id);
+ return -EACCES;
+ }
+
+ addr = priv->params->disables[id].fuse_addr;
+ mask = priv->params->disables[id].mask;
+
+ ret = imx_ocotp_read(priv, addr, &val, sizeof(val));
+ if (ret)
+ return ret;
+
+ dev_dbg(priv->dev, "id:%d addr:%#x mask:0x%08x\n", id, addr, mask);
+ /* true means disabled */
+ if (val & mask)
+ return -EACCES;
+
+ return 0;
+}
+
+static int imx_ocotp_grant_access(struct ocotp_priv *priv, struct device_node *parent)
+{
+ struct device *dev = priv->dev;
+
+ for_each_available_child_of_node_scoped(parent, child) {
+ struct of_phandle_args args;
+ u32 id, idx = 0;
+
+ while (!of_parse_phandle_with_args(child, "access-controllers",
+ "#access-controller-cells",
+ idx++, &args)) {
+ of_node_put(args.np);
+ if (args.np != dev->of_node)
+ continue;
+
+ /* Only support one cell */
+ if (args.args_count != 1) {
+ dev_err(dev, "wrong args count\n");
+ continue;
+ }
+
+ id = args.args[0];
+
+ dev_dbg(dev, "Checking node: %pOF disable ID: %d\n", child, id);
+
+ if (imx_ocotp_check_access(priv, id)) {
+ of_detach_node(child);
+ dev_info(dev, "%pOF: disabled by fuse, device driver will not be probed\n",
+ child);
+ }
+ }
+
+ imx_ocotp_grant_access(priv, child);
+ }
+
+ return 0;
+}
+
+static int imx_ocotp_access_control(struct ocotp_priv *priv)
+{
+ struct device_node *root __free(device_node) = of_find_node_by_path("/");
+
+ if (!priv->params->disables)
+ return 0;
+
+ if (WARN_ON(!root))
+ return -EINVAL;
+
+ return imx_ocotp_grant_access(priv, root);
+}
+
static int imx_ocotp_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
@@ -622,9 +721,13 @@ static int imx_ocotp_probe(struct platform_device *pdev)
imx_ocotp_clr_err_if_set(priv);
clk_disable_unprepare(priv->clk);
+ platform_set_drvdata(pdev, priv);
+
nvmem = devm_nvmem_register(dev, &imx_ocotp_nvmem_config);
+ if (IS_ERR(nvmem))
+ return PTR_ERR(nvmem);
- return PTR_ERR_OR_ZERO(nvmem);
+ return imx_ocotp_access_control(priv);
}
static struct platform_driver imx_ocotp_driver = {
--
2.34.1
On 30/01/2025 14:01, Alexander Stein wrote:
> +
> +static int imx_ocotp_grant_access(struct ocotp_priv *priv, struct device_node *parent)
> +{
> + struct device *dev = priv->dev;
> +
> + for_each_available_child_of_node_scoped(parent, child) {
> + struct of_phandle_args args;
> + u32 id, idx = 0;
> +
> + while (!of_parse_phandle_with_args(child, "access-controllers",
> + "#access-controller-cells",
> + idx++, &args)) {
> + of_node_put(args.np);
> + if (args.np != dev->of_node)
You are using args.np after dropping the reference.
> + continue;
> +
> + /* Only support one cell */
> + if (args.args_count != 1) {
> + dev_err(dev, "wrong args count\n");
> + continue;
> + }
> +
Best regards,
Krzysztof
Hi,
Am Freitag, 31. Januar 2025, 08:20:40 CET schrieb Krzysztof Kozlowski:
> On 30/01/2025 14:01, Alexander Stein wrote:
> > +
> > +static int imx_ocotp_grant_access(struct ocotp_priv *priv, struct device_node *parent)
> > +{
> > + struct device *dev = priv->dev;
> > +
> > + for_each_available_child_of_node_scoped(parent, child) {
> > + struct of_phandle_args args;
> > + u32 id, idx = 0;
> > +
> > + while (!of_parse_phandle_with_args(child, "access-controllers",
> > + "#access-controller-cells",
> > + idx++, &args)) {
> > + of_node_put(args.np);
> > + if (args.np != dev->of_node)
>
> You are using args.np after dropping the reference.
Indeed, but is it really a problem? The args.np pointer is still the same.
So the comparison is unaffected.
Both branches need to drop the reference, no?
But the following looks awefull as well.
> if (args.np != dev->of_node) {
> of_node_put(args.np);
> continue;
> }
> of_node_put(args.np);
Best regards,
Alexander
>
> > + continue;
> > +
> > + /* Only support one cell */
> > + if (args.args_count != 1) {
> > + dev_err(dev, "wrong args count\n");
> > + continue;
> > + }
> > +
>
>
> Best regards,
> Krzysztof
>
--
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/
On 31/01/2025 14:50, Alexander Stein wrote:
>>> +
>>> + while (!of_parse_phandle_with_args(child, "access-controllers",
>>> + "#access-controller-cells",
>>> + idx++, &args)) {
>>> + of_node_put(args.np);
>>> + if (args.np != dev->of_node)
>>
>> You are using args.np after dropping the reference.
>
> Indeed, but is it really a problem? The args.np pointer is still the same.
> So the comparison is unaffected.
>
> Both branches need to drop the reference, no?
Ah, indeed, you do not use the reference except pointer comparison. It's
fine, maybe a bit less usual, but as you mentioned other alternative
also does not look good, so fine for me.
> But the following looks awefull as well.
>> if (args.np != dev->of_node) {
>> of_node_put(args.np);
>> continue;
>> }
>> of_node_put(args.np);
>
Best regards,
Krzysztof
On Thu, Jan 30, 2025 at 02:01:00PM +0100, Alexander Stein wrote:
> i.MX8M OCOTP supports a specific peripheral or function being fused
> which means disabled, so
> - Introduce disable_fuse for a list of possible fused peripherals.
> - Iterate all nodes to check accessing permission. If not
> allowed to be accessed, detach the node
>
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> ---
> drivers/nvmem/Kconfig | 3 ++
> drivers/nvmem/imx-ocotp.c | 105 +++++++++++++++++++++++++++++++++++++-
> 2 files changed, 107 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/nvmem/Kconfig b/drivers/nvmem/Kconfig
> index 8671b7c974b93..ba5c928cab520 100644
> --- a/drivers/nvmem/Kconfig
> +++ b/drivers/nvmem/Kconfig
> @@ -84,6 +84,9 @@ config NVMEM_IMX_OCOTP
> This driver can also be built as a module. If so, the module
> will be called nvmem-imx-ocotp.
>
> + If built as modules, any other driver relying on this working
> + as access controller also needs to be a module as well.
> +
> config NVMEM_IMX_OCOTP_ELE
> tristate "i.MX On-Chip OTP Controller support"
> depends on ARCH_MXC || COMPILE_TEST
> diff --git a/drivers/nvmem/imx-ocotp.c b/drivers/nvmem/imx-ocotp.c
> index c5086a16450ac..e3ea026a37d0d 100644
> --- a/drivers/nvmem/imx-ocotp.c
> +++ b/drivers/nvmem/imx-ocotp.c
> @@ -23,6 +23,7 @@
> #include <linux/of.h>
> #include <linux/platform_device.h>
> #include <linux/slab.h>
> +#include <dt-bindings/nvmem/fsl,imx8mn-ocotp.h>
>
> #define IMX_OCOTP_OFFSET_B0W0 0x400 /* Offset from base address of the
> * OTP Bank0 Word0
> @@ -91,11 +92,20 @@ struct ocotp_ctrl_reg {
> u32 bm_rel_shadows;
> };
>
> +#define OCOTP_MAX_NUM_GATE_WORDS 4
> +
> +struct disable_fuse {
> + u32 fuse_addr;
> + u32 mask;
> +};
> +
> struct ocotp_params {
> unsigned int nregs;
> unsigned int bank_address_words;
> void (*set_timing)(struct ocotp_priv *priv);
> struct ocotp_ctrl_reg ctrl;
> + u32 num_disables;
> + struct disable_fuse *disables;
> };
>
> static int imx_ocotp_wait_for_busy(struct ocotp_priv *priv, u32 flags)
> @@ -552,11 +562,25 @@ static const struct ocotp_params imx8mm_params = {
> .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,
> };
>
> +struct disable_fuse imx8mn_disable_fuse[] = {
> + [IMX8MN_OCOTP_M7_DISABLE] = { .fuse_addr = 20, .mask = BIT(8) },
> + [IMX8MN_OCOTP_M7_MPU_DISABLE] = { .fuse_addr = 20, .mask = BIT(9) },
> + [IMX8MN_OCOTP_M7_FPU_DISABLE] = { .fuse_addr = 20, .mask = BIT(10) },
> + [IMX8MN_OCOTP_USB_OTG1_DISABLE] = { .fuse_addr = 20, .mask = BIT(11) },
> + [IMX8MN_OCOTP_GPU3D_DISABLE] = { .fuse_addr = 20, .mask = BIT(24) },
> + [IMX8MN_OCOTP_MIPI_DSI_DISABLE] = { .fuse_addr = 20, .mask = BIT(28) },
> + [IMX8MN_OCOTP_ENET_DISABLE] = { .fuse_addr = 20, .mask = BIT(29) },
> + [IMX8MN_OCOTP_MIPI_CSI_DISABLE] = { .fuse_addr = 20, .mask = BIT(30) },
> + [IMX8MN_OCOTP_ASRC_DISABLE] = { .fuse_addr = 20, .mask = BIT(31) },
> +};
Can we direct define IMX8MN_OCOTP_M7_DISABLE as BIT(8), so avoid this
map data?
> +
> static const struct ocotp_params imx8mn_params = {
> .nregs = 256,
> .bank_address_words = 0,
> .set_timing = imx_ocotp_set_imx6_timing,
> .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,
> + .num_disables = ARRAY_SIZE(imx8mn_disable_fuse),
> + .disables = imx8mn_disable_fuse,
> };
>
> static const struct ocotp_params imx8mp_params = {
> @@ -589,6 +613,81 @@ static void imx_ocotp_fixup_dt_cell_info(struct nvmem_device *nvmem,
> cell->read_post_process = imx_ocotp_cell_pp;
> }
>
> +static int imx_ocotp_check_access(struct ocotp_priv *priv, u32 id)
> +{
> + u32 addr, mask, ret, val;
> +
> + if (id >= priv->params->num_disables) {
> + dev_err(priv->dev, "Index %d too large\n", id);
> + return -EACCES;
> + }
> +
> + addr = priv->params->disables[id].fuse_addr;
> + mask = priv->params->disables[id].mask;
> +
> + ret = imx_ocotp_read(priv, addr, &val, sizeof(val));
> + if (ret)
> + return ret;
> +
> + dev_dbg(priv->dev, "id:%d addr:%#x mask:0x%08x\n", id, addr, mask);
> + /* true means disabled */
> + if (val & mask)
> + return -EACCES;
> +
> + return 0;
> +}
> +
> +static int imx_ocotp_grant_access(struct ocotp_priv *priv, struct device_node *parent)
> +{
> + struct device *dev = priv->dev;
> +
> + for_each_available_child_of_node_scoped(parent, child) {
> + struct of_phandle_args args;
> + u32 id, idx = 0;
> +
> + while (!of_parse_phandle_with_args(child, "access-controllers",
> + "#access-controller-cells",
> + idx++, &args)) {
> + of_node_put(args.np);
> + if (args.np != dev->of_node)
> + continue;
> +
> + /* Only support one cell */
> + if (args.args_count != 1) {
> + dev_err(dev, "wrong args count\n");
> + continue;
> + }
> +
> + id = args.args[0];
> +
> + dev_dbg(dev, "Checking node: %pOF disable ID: %d\n", child, id);
> +
> + if (imx_ocotp_check_access(priv, id)) {
> + of_detach_node(child);
> + dev_info(dev, "%pOF: disabled by fuse, device driver will not be probed\n",
> + child);
> + }
> + }
> +
> + imx_ocotp_grant_access(priv, child);
> + }
> +
> + return 0;
> +}
Can we have one method to share above code logic to avoid copy-paste to
every ocotp driver? Anyway, we can improve that later.
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> +
> +static int imx_ocotp_access_control(struct ocotp_priv *priv)
> +{
> + struct device_node *root __free(device_node) = of_find_node_by_path("/");
> +
> + if (!priv->params->disables)
> + return 0;
> +
> + if (WARN_ON(!root))
> + return -EINVAL;
> +
> + return imx_ocotp_grant_access(priv, root);
> +}
> +
> static int imx_ocotp_probe(struct platform_device *pdev)
> {
> struct device *dev = &pdev->dev;
> @@ -622,9 +721,13 @@ static int imx_ocotp_probe(struct platform_device *pdev)
> imx_ocotp_clr_err_if_set(priv);
> clk_disable_unprepare(priv->clk);
>
> + platform_set_drvdata(pdev, priv);
> +
> nvmem = devm_nvmem_register(dev, &imx_ocotp_nvmem_config);
> + if (IS_ERR(nvmem))
> + return PTR_ERR(nvmem);
>
> - return PTR_ERR_OR_ZERO(nvmem);
> + return imx_ocotp_access_control(priv);
> }
>
> static struct platform_driver imx_ocotp_driver = {
> --
> 2.34.1
>
Hi,
Am Donnerstag, 30. Januar 2025, 17:42:32 CET schrieb Frank Li:
> On Thu, Jan 30, 2025 at 02:01:00PM +0100, Alexander Stein wrote:
> > i.MX8M OCOTP supports a specific peripheral or function being fused
> > which means disabled, so
> > - Introduce disable_fuse for a list of possible fused peripherals.
> > - Iterate all nodes to check accessing permission. If not
> > allowed to be accessed, detach the node
> >
> > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> > ---
> > drivers/nvmem/Kconfig | 3 ++
> > drivers/nvmem/imx-ocotp.c | 105 +++++++++++++++++++++++++++++++++++++-
> > 2 files changed, 107 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/nvmem/Kconfig b/drivers/nvmem/Kconfig
> > index 8671b7c974b93..ba5c928cab520 100644
> > --- a/drivers/nvmem/Kconfig
> > +++ b/drivers/nvmem/Kconfig
> > @@ -84,6 +84,9 @@ config NVMEM_IMX_OCOTP
> > This driver can also be built as a module. If so, the module
> > will be called nvmem-imx-ocotp.
> >
> > + If built as modules, any other driver relying on this working
> > + as access controller also needs to be a module as well.
> > +
> > config NVMEM_IMX_OCOTP_ELE
> > tristate "i.MX On-Chip OTP Controller support"
> > depends on ARCH_MXC || COMPILE_TEST
> > diff --git a/drivers/nvmem/imx-ocotp.c b/drivers/nvmem/imx-ocotp.c
> > index c5086a16450ac..e3ea026a37d0d 100644
> > --- a/drivers/nvmem/imx-ocotp.c
> > +++ b/drivers/nvmem/imx-ocotp.c
> > @@ -23,6 +23,7 @@
> > #include <linux/of.h>
> > #include <linux/platform_device.h>
> > #include <linux/slab.h>
> > +#include <dt-bindings/nvmem/fsl,imx8mn-ocotp.h>
> >
> > #define IMX_OCOTP_OFFSET_B0W0 0x400 /* Offset from base address of the
> > * OTP Bank0 Word0
> > @@ -91,11 +92,20 @@ struct ocotp_ctrl_reg {
> > u32 bm_rel_shadows;
> > };
> >
> > +#define OCOTP_MAX_NUM_GATE_WORDS 4
> > +
> > +struct disable_fuse {
> > + u32 fuse_addr;
> > + u32 mask;
> > +};
> > +
> > struct ocotp_params {
> > unsigned int nregs;
> > unsigned int bank_address_words;
> > void (*set_timing)(struct ocotp_priv *priv);
> > struct ocotp_ctrl_reg ctrl;
> > + u32 num_disables;
> > + struct disable_fuse *disables;
> > };
> >
> > static int imx_ocotp_wait_for_busy(struct ocotp_priv *priv, u32 flags)
> > @@ -552,11 +562,25 @@ static const struct ocotp_params imx8mm_params = {
> > .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,
> > };
> >
> > +struct disable_fuse imx8mn_disable_fuse[] = {
> > + [IMX8MN_OCOTP_M7_DISABLE] = { .fuse_addr = 20, .mask = BIT(8) },
> > + [IMX8MN_OCOTP_M7_MPU_DISABLE] = { .fuse_addr = 20, .mask = BIT(9) },
> > + [IMX8MN_OCOTP_M7_FPU_DISABLE] = { .fuse_addr = 20, .mask = BIT(10) },
> > + [IMX8MN_OCOTP_USB_OTG1_DISABLE] = { .fuse_addr = 20, .mask = BIT(11) },
> > + [IMX8MN_OCOTP_GPU3D_DISABLE] = { .fuse_addr = 20, .mask = BIT(24) },
> > + [IMX8MN_OCOTP_MIPI_DSI_DISABLE] = { .fuse_addr = 20, .mask = BIT(28) },
> > + [IMX8MN_OCOTP_ENET_DISABLE] = { .fuse_addr = 20, .mask = BIT(29) },
> > + [IMX8MN_OCOTP_MIPI_CSI_DISABLE] = { .fuse_addr = 20, .mask = BIT(30) },
> > + [IMX8MN_OCOTP_ASRC_DISABLE] = { .fuse_addr = 20, .mask = BIT(31) },
> > +};
>
> Can we direct define IMX8MN_OCOTP_M7_DISABLE as BIT(8), so avoid this
> map data?
This would be possible for imx8mn, but not for imx8mp which uses
multiples fuses for disables. This is an excerpt from imx8mp WIP
> struct disable_fuse imx8mp_disable_fuse[] = {
> [IMX8MP_OCOTP_CAN_DISABLE] = { .fuse_addr = 16, .mask = BIT(28) },
> [IMX8MP_OCOTP_CAN_FD_DISABLE] = { .fuse_addr = 16, .mask = BIT(29) },
> [IMX8MP_OCOTP_VPU_VC8000E_DISABLE] = { .fuse_addr = 16, .mask = BIT(30) },
> [IMX8MP_OCOTP_IMG_ISP1_DISABLE] = { .fuse_addr = 20, .mask = BIT(0) },
> [IMX8MP_OCOTP_IMG_ISP2_DISABLE] = { .fuse_addr = 20, .mask = BIT(1) },
> [IMX8MP_OCOTP_IMG_DEWARP_DISABLE] = { .fuse_addr = 20, .mask = BIT(2) },
> };
Notice the fuse_addr of 16 and 20.
> > +
> > static const struct ocotp_params imx8mn_params = {
> > .nregs = 256,
> > .bank_address_words = 0,
> > .set_timing = imx_ocotp_set_imx6_timing,
> > .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,
> > + .num_disables = ARRAY_SIZE(imx8mn_disable_fuse),
> > + .disables = imx8mn_disable_fuse,
> > };
> >
> > static const struct ocotp_params imx8mp_params = {
> > @@ -589,6 +613,81 @@ static void imx_ocotp_fixup_dt_cell_info(struct nvmem_device *nvmem,
> > cell->read_post_process = imx_ocotp_cell_pp;
> > }
> >
> > +static int imx_ocotp_check_access(struct ocotp_priv *priv, u32 id)
> > +{
> > + u32 addr, mask, ret, val;
> > +
> > + if (id >= priv->params->num_disables) {
> > + dev_err(priv->dev, "Index %d too large\n", id);
> > + return -EACCES;
> > + }
> > +
> > + addr = priv->params->disables[id].fuse_addr;
> > + mask = priv->params->disables[id].mask;
> > +
> > + ret = imx_ocotp_read(priv, addr, &val, sizeof(val));
> > + if (ret)
> > + return ret;
> > +
> > + dev_dbg(priv->dev, "id:%d addr:%#x mask:0x%08x\n", id, addr, mask);
> > + /* true means disabled */
> > + if (val & mask)
> > + return -EACCES;
> > +
> > + return 0;
> > +}
> > +
> > +static int imx_ocotp_grant_access(struct ocotp_priv *priv, struct device_node *parent)
> > +{
> > + struct device *dev = priv->dev;
> > +
> > + for_each_available_child_of_node_scoped(parent, child) {
> > + struct of_phandle_args args;
> > + u32 id, idx = 0;
> > +
> > + while (!of_parse_phandle_with_args(child, "access-controllers",
> > + "#access-controller-cells",
> > + idx++, &args)) {
> > + of_node_put(args.np);
> > + if (args.np != dev->of_node)
> > + continue;
> > +
> > + /* Only support one cell */
> > + if (args.args_count != 1) {
> > + dev_err(dev, "wrong args count\n");
> > + continue;
> > + }
> > +
> > + id = args.args[0];
> > +
> > + dev_dbg(dev, "Checking node: %pOF disable ID: %d\n", child, id);
> > +
> > + if (imx_ocotp_check_access(priv, id)) {
> > + of_detach_node(child);
> > + dev_info(dev, "%pOF: disabled by fuse, device driver will not be probed\n",
> > + child);
> > + }
> > + }
> > +
> > + imx_ocotp_grant_access(priv, child);
> > + }
> > +
> > + return 0;
> > +}
>
> Can we have one method to share above code logic to avoid copy-paste to
> every ocotp driver? Anyway, we can improve that later.
I need to check with STM32 implementation. The imx-ocotp-ele might use the
same function as here.
Best regards,
Alexander
> Reviewed-by: Frank Li <Frank.Li@nxp.com>
>
>
> > +
> > +static int imx_ocotp_access_control(struct ocotp_priv *priv)
> > +{
> > + struct device_node *root __free(device_node) = of_find_node_by_path("/");
> > +
> > + if (!priv->params->disables)
> > + return 0;
> > +
> > + if (WARN_ON(!root))
> > + return -EINVAL;
> > +
> > + return imx_ocotp_grant_access(priv, root);
> > +}
> > +
> > static int imx_ocotp_probe(struct platform_device *pdev)
> > {
> > struct device *dev = &pdev->dev;
> > @@ -622,9 +721,13 @@ static int imx_ocotp_probe(struct platform_device *pdev)
> > imx_ocotp_clr_err_if_set(priv);
> > clk_disable_unprepare(priv->clk);
> >
> > + platform_set_drvdata(pdev, priv);
> > +
> > nvmem = devm_nvmem_register(dev, &imx_ocotp_nvmem_config);
> > + if (IS_ERR(nvmem))
> > + return PTR_ERR(nvmem);
> >
> > - return PTR_ERR_OR_ZERO(nvmem);
> > + return imx_ocotp_access_control(priv);
> > }
> >
> > static struct platform_driver imx_ocotp_driver = {
> > --
> > 2.34.1
> >
>
--
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/
On Fri, Jan 31, 2025 at 02:54:06PM +0100, Alexander Stein wrote:
> Hi,
>
> Am Donnerstag, 30. Januar 2025, 17:42:32 CET schrieb Frank Li:
> > On Thu, Jan 30, 2025 at 02:01:00PM +0100, Alexander Stein wrote:
> > > i.MX8M OCOTP supports a specific peripheral or function being fused
> > > which means disabled, so
> > > - Introduce disable_fuse for a list of possible fused peripherals.
> > > - Iterate all nodes to check accessing permission. If not
> > > allowed to be accessed, detach the node
> > >
> > > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> > > ---
> > > drivers/nvmem/Kconfig | 3 ++
> > > drivers/nvmem/imx-ocotp.c | 105 +++++++++++++++++++++++++++++++++++++-
> > > 2 files changed, 107 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/nvmem/Kconfig b/drivers/nvmem/Kconfig
> > > index 8671b7c974b93..ba5c928cab520 100644
> > > --- a/drivers/nvmem/Kconfig
> > > +++ b/drivers/nvmem/Kconfig
> > > @@ -84,6 +84,9 @@ config NVMEM_IMX_OCOTP
> > > This driver can also be built as a module. If so, the module
> > > will be called nvmem-imx-ocotp.
> > >
> > > + If built as modules, any other driver relying on this working
> > > + as access controller also needs to be a module as well.
> > > +
> > > config NVMEM_IMX_OCOTP_ELE
> > > tristate "i.MX On-Chip OTP Controller support"
> > > depends on ARCH_MXC || COMPILE_TEST
> > > diff --git a/drivers/nvmem/imx-ocotp.c b/drivers/nvmem/imx-ocotp.c
> > > index c5086a16450ac..e3ea026a37d0d 100644
> > > --- a/drivers/nvmem/imx-ocotp.c
> > > +++ b/drivers/nvmem/imx-ocotp.c
> > > @@ -23,6 +23,7 @@
> > > #include <linux/of.h>
> > > #include <linux/platform_device.h>
> > > #include <linux/slab.h>
> > > +#include <dt-bindings/nvmem/fsl,imx8mn-ocotp.h>
> > >
> > > #define IMX_OCOTP_OFFSET_B0W0 0x400 /* Offset from base address of the
> > > * OTP Bank0 Word0
> > > @@ -91,11 +92,20 @@ struct ocotp_ctrl_reg {
> > > u32 bm_rel_shadows;
> > > };
> > >
> > > +#define OCOTP_MAX_NUM_GATE_WORDS 4
> > > +
> > > +struct disable_fuse {
> > > + u32 fuse_addr;
> > > + u32 mask;
> > > +};
> > > +
> > > struct ocotp_params {
> > > unsigned int nregs;
> > > unsigned int bank_address_words;
> > > void (*set_timing)(struct ocotp_priv *priv);
> > > struct ocotp_ctrl_reg ctrl;
> > > + u32 num_disables;
> > > + struct disable_fuse *disables;
> > > };
> > >
> > > static int imx_ocotp_wait_for_busy(struct ocotp_priv *priv, u32 flags)
> > > @@ -552,11 +562,25 @@ static const struct ocotp_params imx8mm_params = {
> > > .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,
> > > };
> > >
> > > +struct disable_fuse imx8mn_disable_fuse[] = {
> > > + [IMX8MN_OCOTP_M7_DISABLE] = { .fuse_addr = 20, .mask = BIT(8) },
> > > + [IMX8MN_OCOTP_M7_MPU_DISABLE] = { .fuse_addr = 20, .mask = BIT(9) },
> > > + [IMX8MN_OCOTP_M7_FPU_DISABLE] = { .fuse_addr = 20, .mask = BIT(10) },
> > > + [IMX8MN_OCOTP_USB_OTG1_DISABLE] = { .fuse_addr = 20, .mask = BIT(11) },
> > > + [IMX8MN_OCOTP_GPU3D_DISABLE] = { .fuse_addr = 20, .mask = BIT(24) },
> > > + [IMX8MN_OCOTP_MIPI_DSI_DISABLE] = { .fuse_addr = 20, .mask = BIT(28) },
> > > + [IMX8MN_OCOTP_ENET_DISABLE] = { .fuse_addr = 20, .mask = BIT(29) },
> > > + [IMX8MN_OCOTP_MIPI_CSI_DISABLE] = { .fuse_addr = 20, .mask = BIT(30) },
> > > + [IMX8MN_OCOTP_ASRC_DISABLE] = { .fuse_addr = 20, .mask = BIT(31) },
> > > +};
> >
> > Can we direct define IMX8MN_OCOTP_M7_DISABLE as BIT(8), so avoid this
> > map data?
>
> This would be possible for imx8mn, but not for imx8mp which uses
> multiples fuses for disables. This is an excerpt from imx8mp WIP
> > struct disable_fuse imx8mp_disable_fuse[] = {
> > [IMX8MP_OCOTP_CAN_DISABLE] = { .fuse_addr = 16, .mask = BIT(28) },
> > [IMX8MP_OCOTP_CAN_FD_DISABLE] = { .fuse_addr = 16, .mask = BIT(29) },
> > [IMX8MP_OCOTP_VPU_VC8000E_DISABLE] = { .fuse_addr = 16, .mask = BIT(30) },
> > [IMX8MP_OCOTP_IMG_ISP1_DISABLE] = { .fuse_addr = 20, .mask = BIT(0) },
> > [IMX8MP_OCOTP_IMG_ISP2_DISABLE] = { .fuse_addr = 20, .mask = BIT(1) },
> > [IMX8MP_OCOTP_IMG_DEWARP_DISABLE] = { .fuse_addr = 20, .mask = BIT(2) },
> > };
>
> Notice the fuse_addr of 16 and 20.
Yes, I am not sure if it good idea to encode fuse_addr to IMX8MP_OCOTP_CAN_DISABLE
like
#define IMX8MP_OCOTP_CAN_DISABLE 16 << 16 | BIT(28)
So dt-bindings/nvmem/fsl,imx8mn-ocotp.h can be moved to dts directory.
Frank
>
> > > +
> > > static const struct ocotp_params imx8mn_params = {
> > > .nregs = 256,
> > > .bank_address_words = 0,
> > > .set_timing = imx_ocotp_set_imx6_timing,
> > > .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,
> > > + .num_disables = ARRAY_SIZE(imx8mn_disable_fuse),
> > > + .disables = imx8mn_disable_fuse,
> > > };
> > >
> > > static const struct ocotp_params imx8mp_params = {
> > > @@ -589,6 +613,81 @@ static void imx_ocotp_fixup_dt_cell_info(struct nvmem_device *nvmem,
> > > cell->read_post_process = imx_ocotp_cell_pp;
> > > }
> > >
> > > +static int imx_ocotp_check_access(struct ocotp_priv *priv, u32 id)
> > > +{
> > > + u32 addr, mask, ret, val;
> > > +
> > > + if (id >= priv->params->num_disables) {
> > > + dev_err(priv->dev, "Index %d too large\n", id);
> > > + return -EACCES;
> > > + }
> > > +
> > > + addr = priv->params->disables[id].fuse_addr;
> > > + mask = priv->params->disables[id].mask;
> > > +
> > > + ret = imx_ocotp_read(priv, addr, &val, sizeof(val));
> > > + if (ret)
> > > + return ret;
> > > +
> > > + dev_dbg(priv->dev, "id:%d addr:%#x mask:0x%08x\n", id, addr, mask);
> > > + /* true means disabled */
> > > + if (val & mask)
> > > + return -EACCES;
> > > +
> > > + return 0;
> > > +}
> > > +
> > > +static int imx_ocotp_grant_access(struct ocotp_priv *priv, struct device_node *parent)
> > > +{
> > > + struct device *dev = priv->dev;
> > > +
> > > + for_each_available_child_of_node_scoped(parent, child) {
> > > + struct of_phandle_args args;
> > > + u32 id, idx = 0;
> > > +
> > > + while (!of_parse_phandle_with_args(child, "access-controllers",
> > > + "#access-controller-cells",
> > > + idx++, &args)) {
> > > + of_node_put(args.np);
> > > + if (args.np != dev->of_node)
> > > + continue;
> > > +
> > > + /* Only support one cell */
> > > + if (args.args_count != 1) {
> > > + dev_err(dev, "wrong args count\n");
> > > + continue;
> > > + }
> > > +
> > > + id = args.args[0];
> > > +
> > > + dev_dbg(dev, "Checking node: %pOF disable ID: %d\n", child, id);
> > > +
> > > + if (imx_ocotp_check_access(priv, id)) {
> > > + of_detach_node(child);
> > > + dev_info(dev, "%pOF: disabled by fuse, device driver will not be probed\n",
> > > + child);
> > > + }
> > > + }
> > > +
> > > + imx_ocotp_grant_access(priv, child);
> > > + }
> > > +
> > > + return 0;
> > > +}
> >
> > Can we have one method to share above code logic to avoid copy-paste to
> > every ocotp driver? Anyway, we can improve that later.
>
> I need to check with STM32 implementation. The imx-ocotp-ele might use the
> same function as here.
>
> Best regards,
> Alexander
>
> > Reviewed-by: Frank Li <Frank.Li@nxp.com>
> >
> >
> > > +
> > > +static int imx_ocotp_access_control(struct ocotp_priv *priv)
> > > +{
> > > + struct device_node *root __free(device_node) = of_find_node_by_path("/");
> > > +
> > > + if (!priv->params->disables)
> > > + return 0;
> > > +
> > > + if (WARN_ON(!root))
> > > + return -EINVAL;
> > > +
> > > + return imx_ocotp_grant_access(priv, root);
> > > +}
> > > +
> > > static int imx_ocotp_probe(struct platform_device *pdev)
> > > {
> > > struct device *dev = &pdev->dev;
> > > @@ -622,9 +721,13 @@ static int imx_ocotp_probe(struct platform_device *pdev)
> > > imx_ocotp_clr_err_if_set(priv);
> > > clk_disable_unprepare(priv->clk);
> > >
> > > + platform_set_drvdata(pdev, priv);
> > > +
> > > nvmem = devm_nvmem_register(dev, &imx_ocotp_nvmem_config);
> > > + if (IS_ERR(nvmem))
> > > + return PTR_ERR(nvmem);
> > >
> > > - return PTR_ERR_OR_ZERO(nvmem);
> > > + return imx_ocotp_access_control(priv);
> > > }
> > >
> > > static struct platform_driver imx_ocotp_driver = {
> > > --
> > > 2.34.1
> > >
> >
>
>
> --
> TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
> Amtsgericht München, HRB 105018
> Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
> http://www.tq-group.com/
>
>
Am Freitag, 31. Januar 2025, 17:06:23 CET schrieb Frank Li:
> On Fri, Jan 31, 2025 at 02:54:06PM +0100, Alexander Stein wrote:
> > Hi,
> >
> > Am Donnerstag, 30. Januar 2025, 17:42:32 CET schrieb Frank Li:
> > > On Thu, Jan 30, 2025 at 02:01:00PM +0100, Alexander Stein wrote:
> > > > i.MX8M OCOTP supports a specific peripheral or function being fused
> > > > which means disabled, so
> > > > - Introduce disable_fuse for a list of possible fused peripherals.
> > > > - Iterate all nodes to check accessing permission. If not
> > > > allowed to be accessed, detach the node
> > > >
> > > > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> > > > ---
> > > > drivers/nvmem/Kconfig | 3 ++
> > > > drivers/nvmem/imx-ocotp.c | 105 +++++++++++++++++++++++++++++++++++++-
> > > > 2 files changed, 107 insertions(+), 1 deletion(-)
> > > >
> > > > diff --git a/drivers/nvmem/Kconfig b/drivers/nvmem/Kconfig
> > > > index 8671b7c974b93..ba5c928cab520 100644
> > > > --- a/drivers/nvmem/Kconfig
> > > > +++ b/drivers/nvmem/Kconfig
> > > > @@ -84,6 +84,9 @@ config NVMEM_IMX_OCOTP
> > > > This driver can also be built as a module. If so, the module
> > > > will be called nvmem-imx-ocotp.
> > > >
> > > > + If built as modules, any other driver relying on this working
> > > > + as access controller also needs to be a module as well.
> > > > +
> > > > config NVMEM_IMX_OCOTP_ELE
> > > > tristate "i.MX On-Chip OTP Controller support"
> > > > depends on ARCH_MXC || COMPILE_TEST
> > > > diff --git a/drivers/nvmem/imx-ocotp.c b/drivers/nvmem/imx-ocotp.c
> > > > index c5086a16450ac..e3ea026a37d0d 100644
> > > > --- a/drivers/nvmem/imx-ocotp.c
> > > > +++ b/drivers/nvmem/imx-ocotp.c
> > > > @@ -23,6 +23,7 @@
> > > > #include <linux/of.h>
> > > > #include <linux/platform_device.h>
> > > > #include <linux/slab.h>
> > > > +#include <dt-bindings/nvmem/fsl,imx8mn-ocotp.h>
> > > >
> > > > #define IMX_OCOTP_OFFSET_B0W0 0x400 /* Offset from base address of the
> > > > * OTP Bank0 Word0
> > > > @@ -91,11 +92,20 @@ struct ocotp_ctrl_reg {
> > > > u32 bm_rel_shadows;
> > > > };
> > > >
> > > > +#define OCOTP_MAX_NUM_GATE_WORDS 4
> > > > +
> > > > +struct disable_fuse {
> > > > + u32 fuse_addr;
> > > > + u32 mask;
> > > > +};
> > > > +
> > > > struct ocotp_params {
> > > > unsigned int nregs;
> > > > unsigned int bank_address_words;
> > > > void (*set_timing)(struct ocotp_priv *priv);
> > > > struct ocotp_ctrl_reg ctrl;
> > > > + u32 num_disables;
> > > > + struct disable_fuse *disables;
> > > > };
> > > >
> > > > static int imx_ocotp_wait_for_busy(struct ocotp_priv *priv, u32 flags)
> > > > @@ -552,11 +562,25 @@ static const struct ocotp_params imx8mm_params = {
> > > > .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT,
> > > > };
> > > >
> > > > +struct disable_fuse imx8mn_disable_fuse[] = {
> > > > + [IMX8MN_OCOTP_M7_DISABLE] = { .fuse_addr = 20, .mask = BIT(8) },
> > > > + [IMX8MN_OCOTP_M7_MPU_DISABLE] = { .fuse_addr = 20, .mask = BIT(9) },
> > > > + [IMX8MN_OCOTP_M7_FPU_DISABLE] = { .fuse_addr = 20, .mask = BIT(10) },
> > > > + [IMX8MN_OCOTP_USB_OTG1_DISABLE] = { .fuse_addr = 20, .mask = BIT(11) },
> > > > + [IMX8MN_OCOTP_GPU3D_DISABLE] = { .fuse_addr = 20, .mask = BIT(24) },
> > > > + [IMX8MN_OCOTP_MIPI_DSI_DISABLE] = { .fuse_addr = 20, .mask = BIT(28) },
> > > > + [IMX8MN_OCOTP_ENET_DISABLE] = { .fuse_addr = 20, .mask = BIT(29) },
> > > > + [IMX8MN_OCOTP_MIPI_CSI_DISABLE] = { .fuse_addr = 20, .mask = BIT(30) },
> > > > + [IMX8MN_OCOTP_ASRC_DISABLE] = { .fuse_addr = 20, .mask = BIT(31) },
> > > > +};
> > >
> > > Can we direct define IMX8MN_OCOTP_M7_DISABLE as BIT(8), so avoid this
> > > map data?
> >
> > This would be possible for imx8mn, but not for imx8mp which uses
> > multiples fuses for disables. This is an excerpt from imx8mp WIP
> > > struct disable_fuse imx8mp_disable_fuse[] = {
> > > [IMX8MP_OCOTP_CAN_DISABLE] = { .fuse_addr = 16, .mask = BIT(28) },
> > > [IMX8MP_OCOTP_CAN_FD_DISABLE] = { .fuse_addr = 16, .mask = BIT(29) },
> > > [IMX8MP_OCOTP_VPU_VC8000E_DISABLE] = { .fuse_addr = 16, .mask = BIT(30) },
> > > [IMX8MP_OCOTP_IMG_ISP1_DISABLE] = { .fuse_addr = 20, .mask = BIT(0) },
> > > [IMX8MP_OCOTP_IMG_ISP2_DISABLE] = { .fuse_addr = 20, .mask = BIT(1) },
> > > [IMX8MP_OCOTP_IMG_DEWARP_DISABLE] = { .fuse_addr = 20, .mask = BIT(2) },
> > > };
> >
> > Notice the fuse_addr of 16 and 20.
>
> Yes, I am not sure if it good idea to encode fuse_addr to IMX8MP_OCOTP_CAN_DISABLE
>
> like
>
> #define IMX8MP_OCOTP_CAN_DISABLE 16 << 16 | BIT(28)
>
> So dt-bindings/nvmem/fsl,imx8mn-ocotp.h can be moved to dts directory.
Mh, I personally don't like encoding offsets into bits. How about using
> '#access-controller-cells = <2>'
and using the defines like this
> #define IMX8MP_OCOTP_CAN_DISABLE 16 0x10000000
DT stays the same:
> access-controllers = <&ocotp IMX8MP_OCOTP_CAN_DISABLE>;
Note: It seems BIT(x) is not usable in DT.
Best regards,
Alexander
--
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/
On Wed, Feb 05, 2025 at 07:51:23AM +0100, Alexander Stein wrote:
> Am Freitag, 31. Januar 2025, 17:06:23 CET schrieb Frank Li:
> > On Fri, Jan 31, 2025 at 02:54:06PM +0100, Alexander Stein wrote:
> > > Hi,
> > >
> > > Am Donnerstag, 30. Januar 2025, 17:42:32 CET schrieb Frank Li:
> > > > On Thu, Jan 30, 2025 at 02:01:00PM +0100, Alexander Stein wrote:
> > > > > i.MX8M OCOTP supports a specific peripheral or function being fused
> > > > > which means disabled, so
> > > > > - Introduce disable_fuse for a list of possible fused peripherals.
> > > > > - Iterate all nodes to check accessing permission. If not
> > > > > allowed to be accessed, detach the node
> > > > >
> > > > > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> > > > > ---
> > > > > drivers/nvmem/Kconfig | 3 ++
> > > > > drivers/nvmem/imx-ocotp.c | 105 +++++++++++++++++++++++++++++++++++++-
> > > > > 2 files changed, 107 insertions(+), 1 deletion(-)
> > > > >
...
> > > multiples fuses for disables. This is an excerpt from imx8mp WIP
> > > > struct disable_fuse imx8mp_disable_fuse[] = {
> > > > [IMX8MP_OCOTP_CAN_DISABLE] = { .fuse_addr = 16, .mask = BIT(28) },
> > > > [IMX8MP_OCOTP_CAN_FD_DISABLE] = { .fuse_addr = 16, .mask = BIT(29) },
> > > > [IMX8MP_OCOTP_VPU_VC8000E_DISABLE] = { .fuse_addr = 16, .mask = BIT(30) },
> > > > [IMX8MP_OCOTP_IMG_ISP1_DISABLE] = { .fuse_addr = 20, .mask = BIT(0) },
> > > > [IMX8MP_OCOTP_IMG_ISP2_DISABLE] = { .fuse_addr = 20, .mask = BIT(1) },
> > > > [IMX8MP_OCOTP_IMG_DEWARP_DISABLE] = { .fuse_addr = 20, .mask = BIT(2) },
> > > > };
> > >
> > > Notice the fuse_addr of 16 and 20.
> >
> > Yes, I am not sure if it good idea to encode fuse_addr to IMX8MP_OCOTP_CAN_DISABLE
> >
> > like
> >
> > #define IMX8MP_OCOTP_CAN_DISABLE 16 << 16 | BIT(28)
> >
> > So dt-bindings/nvmem/fsl,imx8mn-ocotp.h can be moved to dts directory.
>
> Mh, I personally don't like encoding offsets into bits. How about using
> > '#access-controller-cells = <2>'
> and using the defines like this
> > #define IMX8MP_OCOTP_CAN_DISABLE 16 0x10000000
I think it is good. better told peng fan to align this!
Frank
>
> DT stays the same:
> > access-controllers = <&ocotp IMX8MP_OCOTP_CAN_DISABLE>;
>
> Note: It seems BIT(x) is not usable in DT.
>
> Best regards,
> Alexander
> --
> TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
> Amtsgericht München, HRB 105018
> Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
> http://www.tq-group.com/
>
>
On Wed, Feb 05, 2025 at 11:43:22AM -0500, Frank Li wrote:
> On Wed, Feb 05, 2025 at 07:51:23AM +0100, Alexander Stein wrote:
> > Am Freitag, 31. Januar 2025, 17:06:23 CET schrieb Frank Li:
> > > On Fri, Jan 31, 2025 at 02:54:06PM +0100, Alexander Stein wrote:
> > > > Hi,
> > > >
> > > > Am Donnerstag, 30. Januar 2025, 17:42:32 CET schrieb Frank Li:
> > > > > On Thu, Jan 30, 2025 at 02:01:00PM +0100, Alexander Stein wrote:
> > > > > > i.MX8M OCOTP supports a specific peripheral or function being fused
> > > > > > which means disabled, so
> > > > > > - Introduce disable_fuse for a list of possible fused peripherals.
> > > > > > - Iterate all nodes to check accessing permission. If not
> > > > > > allowed to be accessed, detach the node
> > > > > >
> > > > > > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> > > > > > ---
> > > > > > drivers/nvmem/Kconfig | 3 ++
> > > > > > drivers/nvmem/imx-ocotp.c | 105 +++++++++++++++++++++++++++++++++++++-
> > > > > > 2 files changed, 107 insertions(+), 1 deletion(-)
> > > > > >
> ...
> > > > multiples fuses for disables. This is an excerpt from imx8mp WIP
> > > > > struct disable_fuse imx8mp_disable_fuse[] = {
> > > > > [IMX8MP_OCOTP_CAN_DISABLE] = { .fuse_addr = 16, .mask = BIT(28) },
> > > > > [IMX8MP_OCOTP_CAN_FD_DISABLE] = { .fuse_addr = 16, .mask = BIT(29) },
> > > > > [IMX8MP_OCOTP_VPU_VC8000E_DISABLE] = { .fuse_addr = 16, .mask = BIT(30) },
> > > > > [IMX8MP_OCOTP_IMG_ISP1_DISABLE] = { .fuse_addr = 20, .mask = BIT(0) },
> > > > > [IMX8MP_OCOTP_IMG_ISP2_DISABLE] = { .fuse_addr = 20, .mask = BIT(1) },
> > > > > [IMX8MP_OCOTP_IMG_DEWARP_DISABLE] = { .fuse_addr = 20, .mask = BIT(2) },
> > > > > };
> > > >
> > > > Notice the fuse_addr of 16 and 20.
> > >
> > > Yes, I am not sure if it good idea to encode fuse_addr to IMX8MP_OCOTP_CAN_DISABLE
> > >
> > > like
> > >
> > > #define IMX8MP_OCOTP_CAN_DISABLE 16 << 16 | BIT(28)
> > >
> > > So dt-bindings/nvmem/fsl,imx8mn-ocotp.h can be moved to dts directory.
> >
> > Mh, I personally don't like encoding offsets into bits. How about using
> > > '#access-controller-cells = <2>'
> > and using the defines like this
> > > #define IMX8MP_OCOTP_CAN_DISABLE 16 0x10000000
>
> I think it is good. better told peng fan to align this!
It'd better use bit offset directly. such as
#define IMX8MP_OCOTP_CAN_DISABLE 16 28
So binding doc easy to limit it to 0..31.
Frank
>
> Frank
>
> >
> > DT stays the same:
> > > access-controllers = <&ocotp IMX8MP_OCOTP_CAN_DISABLE>;
> >
> > Note: It seems BIT(x) is not usable in DT.
> >
> > Best regards,
> > Alexander
> > --
> > TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
> > Amtsgericht München, HRB 105018
> > Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
> > http://www.tq-group.com/
> >
> >
© 2016 - 2026 Red Hat, Inc.