Lines Matching refs:otp
43 struct lpc18xx_otp *otp = context;
53 *buf++ = readl(otp->base + i * LPC18XX_OTP_WORD_SIZE);
59 .name = "lpc18xx-otp",
69 struct lpc18xx_otp *otp;
71 otp = devm_kzalloc(&pdev->dev, sizeof(*otp), GFP_KERNEL);
72 if (!otp)
75 otp->base = devm_platform_ioremap_resource(pdev, 0);
76 if (IS_ERR(otp->base))
77 return PTR_ERR(otp->base);
81 lpc18xx_otp_nvmem_config.priv = otp;
89 { .compatible = "nxp,lpc1850-otp" },