blob: 208a1cb6e4bf9d4f0181e10413f429d2ddd9811e [file] [log] [blame]
Srinivas Kandagatlaeace75c2015-07-27 12:13:19 +01001menuconfig 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.
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010014
15if NVMEM
16
Philipp Zabel3edba6b2015-09-30 13:55:47 +010017config 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
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010028config 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
Maxime Ripard3d0b16a2015-07-27 12:17:09 +010039config 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
Sanchayan Maity22dbdb72015-09-30 13:54:59 +010050config 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
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010060endif