Commits

Peng Fan committed dfbf42df5f7
MLK-16204-1 nvmem: add imx-scu-ocotp driver Add imx-scu-ocotp driver to support i.MX8QM/QXP. The usage, add an entry in ocotp node, such as the test_1 entry: ocotp: ocotp { #address-cells = <1>; #size-cells = <1>; compatible = "fsl,imx8qm-ocotp", "syscon"; test_1: test_1@40 { reg = <0x41 0x8>; bits = <4 40>; }; }; Then in your device node, add this: node: node { ..... nvmem-cells = <&test_1>; nvmem-cell-names = "test_1"; }; Then in your driver, using the following piece code: +#include <linux/nvmem-consumer.h> struct nvmem_cell *cell; u8 *val; size_t len; int i; cell = devm_nvmem_cell_get(&pdev->dev, "test_1"); if (IS_ERR(cell)) { if (PTR_ERR(cell) == -EPROBE_DEFER) return -EPROBE_DEFER; } val = nvmem_cell_read(cell, &len); The val points the contents that you need. After shutdown or driver remove, use this: devm_nvmem_cell_put(&pdev->dev, cell); Note: we not reuse the imx-ocotp driver, because mix scu api with legacy code will cost many maintenance efforts. When we have common api support, we could merge the two. Signed-off-by: Peng Fan <peng.fan@nxp.com>