Re: [RESEND][PATCH 2/7] nvmem: imx-ocotp: Pass parameters via a struct

From: Philipp Zabel
Date: Thu Oct 05 2017 - 06:32:01 EST


Hi Bryan,

a few small nitpicks below.

On Wed, 2017-10-04 at 23:25 +0100, Bryan O'Donoghue wrote:
> It will be useful in later patches to know the register access mode
> and bit-shift to apply to a given input offset.
>
> Fixes: 0642bac7da42 ("nvmem: imx-ocotp: add write support")
>
> Signed-off-by: Bryan O'Donoghue <pure.logic@xxxxxxxxxxxxxxxxx>
> ---
> Âdrivers/nvmem/imx-ocotp.c | 32 ++++++++++++++++++++++----------
> Â1 file changed, 22 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/nvmem/imx-ocotp.c b/drivers/nvmem/imx-ocotp.c
> index 17d160f..fed76a4 100644
> --- a/drivers/nvmem/imx-ocotp.c
> +++ b/drivers/nvmem/imx-ocotp.c
> @@ -53,11 +53,15 @@
> Â
> Âstatic DEFINE_MUTEX(ocotp_mutex);
> Â
> +struct octp_params {

Should this struct be called "ocotp_params"?

> + unsigned int nregs;
> +};
> +
> Âstruct ocotp_priv {
> Â struct device *dev;
> Â struct clk *clk;
> Â void __iomem *base;
> - unsigned int nregs;
> + struct octp_params *params;
> Â struct nvmem_config *config;
> Â};
> Â
> @@ -121,8 +125,8 @@ static int imx_ocotp_read(void *context, unsigned
> int offset,
> Â index = offset >> 2;
> Â count = bytes >> 2;
> Â
> - if (count > (priv->nregs - index))
> - count = priv->nregs - index;
> + if (count > (priv->params->nregs - index))
> + count = priv->params->nregs - index;
> Â
> Â mutex_lock(&ocotp_mutex);
> Â
> @@ -308,12 +312,20 @@ static struct nvmem_config
> imx_ocotp_nvmem_config = {
> Â .reg_write = imx_ocotp_write,
> Â};
> Â
> +static const struct octp_params params[] = {
> + { .nregs = 128},

Missing whitespace.

> + { .nregs = 64},
> + { .nregs = 128},
> + { .nregs = 128},
> + { .nregs = 64},
> +};
> +
> Âstatic const struct of_device_id imx_ocotp_dt_ids[] = {
> - { .compatible = "fsl,imx6q-ocotp",ÂÂ(void *)128 },
> - { .compatible = "fsl,imx6sl-ocotp", (void *)64 },
> - { .compatible = "fsl,imx6sx-ocotp", (void *)128 },
> - { .compatible = "fsl,imx6ul-ocotp", (void *)128 },
> - { .compatible = "fsl,imx7d-ocotp", (void *)64 },
> + { .compatible = "fsl,imx6q-ocotp",ÂÂ(void *)&params[0] },

The (void *) cast is superfluous with this change, I'd also add the
missing ".data =":

{ .compatible = "fsl,imx6q-ocotp",ÂÂ.data = &params[0] },


> + { .compatible = "fsl,imx6sl-ocotp", (void *)&params[1] },
> + { .compatible = "fsl,imx6sx-ocotp", (void *)&params[2] },
> + { .compatible = "fsl,imx6ul-ocotp", (void *)&params[3] },
> + { .compatible = "fsl,imx7d-ocotp", (void *)&params[4] },
> Â { },
> Â};
> ÂMODULE_DEVICE_TABLE(of, imx_ocotp_dt_ids);
> @@ -342,8 +354,8 @@ static int imx_ocotp_probe(struct platform_device
> *pdev)
> Â return PTR_ERR(priv->clk);
> Â
> Â of_id = of_match_device(imx_ocotp_dt_ids, dev);
> - priv->nregs = (unsigned long)of_id->data;
> - imx_ocotp_nvmem_config.size = 4 * priv->nregs;
> + priv->params = (struct octp_params *)of_id->data;
> + imx_ocotp_nvmem_config.size = 4 * priv->params->nregs;

This would be a good opportunity to switch to of_device_get_match_data.

> Â imx_ocotp_nvmem_config.dev = dev;
> Â imx_ocotp_nvmem_config.priv = priv;
> Â priv->config = &imx_ocotp_nvmem_config;

regards
Philipp