blob: 6ff1b5051ae16f9dadfe442803b196eccd92c3a9 [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
Ariel D'Alessandrof02f8ae2015-12-07 10:57:39 +000028config NVMEM_LPC18XX_EEPROM
29 tristate "NXP LPC18XX EEPROM Memory Support"
30 depends on ARCH_LPC18XX || COMPILE_TEST
31 help
32 Say Y here to include support for NXP LPC18xx EEPROM memory found in
33 NXP LPC185x/3x and LPC435x/3x/2x/1x devices.
34 To compile this driver as a module, choose M here: the module
35 will be called nvmem_lpc18xx_eeprom.
36
Stefan Wahrenc01e9a12015-09-30 13:56:27 +010037config NVMEM_MXS_OCOTP
38 tristate "Freescale MXS On-Chip OTP Memory Support"
39 depends on ARCH_MXS || COMPILE_TEST
40 help
41 If you say Y here, you will get readonly access to the
42 One Time Programmable memory pages that are stored
43 on the Freescale i.MX23/i.MX28 processor.
44
45 This driver can also be built as a module. If so, the module
46 will be called nvmem-mxs-ocotp.
47
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010048config QCOM_QFPROM
49 tristate "QCOM QFPROM Support"
50 depends on ARCH_QCOM || COMPILE_TEST
51 select REGMAP_MMIO
52 help
53 Say y here to enable QFPROM support. The QFPROM provides access
54 functions for QFPROM data to rest of the drivers via nvmem interface.
55
56 This driver can also be built as a module. If so, the module
57 will be called nvmem_qfprom.
58
ZhengShunQian03a69562015-09-30 13:56:44 +010059config ROCKCHIP_EFUSE
60 tristate "Rockchip eFuse Support"
61 depends on ARCH_ROCKCHIP || COMPILE_TEST
62 help
63 This is a simple drive to dump specified values of Rockchip SoC
64 from eFuse, such as cpu-leakage.
65
66 This driver can also be built as a module. If so, the module
67 will be called nvmem_rockchip_efuse.
68
Maxime Ripard3d0b16a2015-07-27 12:17:09 +010069config NVMEM_SUNXI_SID
70 tristate "Allwinner SoCs SID support"
71 depends on ARCH_SUNXI
72 select REGMAP_MMIO
73 help
74 This is a driver for the 'security ID' available on various Allwinner
75 devices.
76
77 This driver can also be built as a module. If so, the module
78 will be called nvmem_sunxi_sid.
79
Sanchayan Maity22dbdb72015-09-30 13:54:59 +010080config NVMEM_VF610_OCOTP
81 tristate "VF610 SoC OCOTP support"
82 depends on SOC_VF610 || COMPILE_TEST
83 help
84 This is a driver for the 'OCOTP' peripheral available on Vybrid
85 devices like VF5xx and VF6xx.
86
87 This driver can also be build as a module. If so, the module will
88 be called nvmem-vf610-ocotp.
89
Srinivas Kandagatla4ab11992015-07-27 12:15:00 +010090endif