nvmem: imx-ocotp: Add i.MX6 OCOTP driver
[firefly-linux-kernel-4.4.55.git] / drivers / nvmem / Kconfig
1 menuconfig NVMEM
2         tristate "NVMEM Support"
3         select REGMAP
4         help
5           Support for NVMEM(Non Volatile Memory) devices like EEPROM, EFUSES...
6
7           This framework is designed to provide a generic interface to NVMEM
8           from both the Linux Kernel and the userspace.
9
10           This driver can also be built as a module. If so, the module
11           will be called nvmem_core.
12
13           If unsure, say no.
14
15 if NVMEM
16
17 config NVMEM_IMX_OCOTP
18         tristate "i.MX6 On-Chip OTP Controller support"
19         depends on SOC_IMX6
20         help
21           This is a driver for the On-Chip OTP Controller (OCOTP) available on
22           i.MX6 SoCs, providing access to 4 Kbits of one-time programmable
23           eFuses.
24
25           This driver can also be built as a module. If so, the module
26           will be called nvmem-imx-ocotp.
27
28 config QCOM_QFPROM
29         tristate "QCOM QFPROM Support"
30         depends on ARCH_QCOM || COMPILE_TEST
31         select REGMAP_MMIO
32         help
33           Say y here to enable QFPROM support. The QFPROM provides access
34           functions for QFPROM data to rest of the drivers via nvmem interface.
35
36           This driver can also be built as a module. If so, the module
37           will be called nvmem_qfprom.
38
39 config NVMEM_SUNXI_SID
40         tristate "Allwinner SoCs SID support"
41         depends on ARCH_SUNXI
42         select REGMAP_MMIO
43         help
44           This is a driver for the 'security ID' available on various Allwinner
45           devices.
46
47           This driver can also be built as a module. If so, the module
48           will be called nvmem_sunxi_sid.
49
50 config NVMEM_VF610_OCOTP
51         tristate "VF610 SoC OCOTP support"
52         depends on SOC_VF610 || COMPILE_TEST
53         help
54           This is a driver for the 'OCOTP' peripheral available on Vybrid
55           devices like VF5xx and VF6xx.
56
57           This driver can also be build as a module. If so, the module will
58           be called nvmem-vf610-ocotp.
59
60 endif