c675ee9b14c3e4708457fdcb0bcd450e10f315f3
[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 NVMEM_MXS_OCOTP
29         tristate "Freescale MXS On-Chip OTP Memory Support"
30         depends on ARCH_MXS || COMPILE_TEST
31         depends on HAS_IOMEM
32         help
33           If you say Y here, you will get readonly access to the
34           One Time Programmable memory pages that are stored
35           on the Freescale i.MX23/i.MX28 processor.
36
37           This driver can also be built as a module. If so, the module
38           will be called nvmem-mxs-ocotp.
39
40 config QCOM_QFPROM
41         tristate "QCOM QFPROM Support"
42         depends on ARCH_QCOM || COMPILE_TEST
43         depends on HAS_IOMEM
44         select REGMAP_MMIO
45         help
46           Say y here to enable QFPROM support. The QFPROM provides access
47           functions for QFPROM data to rest of the drivers via nvmem interface.
48
49           This driver can also be built as a module. If so, the module
50           will be called nvmem_qfprom.
51
52 config ROCKCHIP_EFUSE
53         tristate "Rockchip eFuse Support"
54         depends on ARCH_ROCKCHIP || COMPILE_TEST
55         depends on HAS_IOMEM
56         help
57           This is a simple drive to dump specified values of Rockchip SoC
58           from eFuse, such as cpu-leakage.
59
60           This driver can also be built as a module. If so, the module
61           will be called nvmem_rockchip_efuse.
62
63 config NVMEM_SUNXI_SID
64         tristate "Allwinner SoCs SID support"
65         depends on ARCH_SUNXI
66         select REGMAP_MMIO
67         help
68           This is a driver for the 'security ID' available on various Allwinner
69           devices.
70
71           This driver can also be built as a module. If so, the module
72           will be called nvmem_sunxi_sid.
73
74 config NVMEM_VF610_OCOTP
75         tristate "VF610 SoC OCOTP support"
76         depends on SOC_VF610 || COMPILE_TEST
77         depends on HAS_IOMEM
78         help
79           This is a driver for the 'OCOTP' peripheral available on Vybrid
80           devices like VF5xx and VF6xx.
81
82           This driver can also be build as a module. If so, the module will
83           be called nvmem-vf610-ocotp.
84
85 endif