[PATCH v1 01/12] nvmem: microchip-otpc: Avoid writing a write-only register
claudiu beznea
claudiu.beznea at tuxon.dev
Sat Aug 24 08:51:59 PDT 2024
Hi, ALexander,
On 21.08.2024 13:59, Alexander Dahl wrote:
> The OTPC Control Register (OTPC_CR) has just write-only members.
> Reading from that register leads to a warning in OTPC Write Protection
> Status Register (OTPC_WPSR) in field Software Error Type (SWETYP) of
> type READ_WO (A write-only register has been read (warning).)
>
> Just create the register write content from scratch is sufficient here.
>
> Signed-off-by: Alexander Dahl <ada at thorsis.com>
Maybe worth a Fixes tag here.
> ---
> drivers/nvmem/microchip-otpc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/nvmem/microchip-otpc.c b/drivers/nvmem/microchip-otpc.c
> index 7cf81738a3e0..03e60b99f2c9 100644
> --- a/drivers/nvmem/microchip-otpc.c
> +++ b/drivers/nvmem/microchip-otpc.c
> @@ -82,7 +82,7 @@ static int mchp_otpc_prepare_read(struct mchp_otpc *otpc,
> writel_relaxed(tmp, otpc->base + MCHP_OTPC_MR);
>
> /* Set read. */
> - tmp = readl_relaxed(otpc->base + MCHP_OTPC_CR);
> + tmp = 0;
> tmp |= MCHP_OTPC_CR_READ;
> writel_relaxed(tmp, otpc->base + MCHP_OTPC_CR);
writel_relaxed(MCHP_OTPC_CR_READ, otpc->base + MCHP_OTPC_CR);
should be enough here.
Thank you,
Claudiu Beznea
>
More information about the linux-arm-kernel
mailing list