diff options
author | Huang Shijie <b32955@freescale.com> | 2010-08-30 09:57:17 +0800 |
---|---|---|
committer | Justin Waters <justin.waters@timesys.com> | 2010-12-13 16:09:49 -0500 |
commit | 421f3c394dc9d5648c588c79a48d81702c66ea59 (patch) | |
tree | b5c5f8d765cd12584d105c43785f6ab94a84fef7 /drivers/char | |
parent | abd7fe73e8989f8ba9097bb71cc6fbbb83798473 (diff) |
ENGR00126721-4 OCOTP: add the Kconfig and Makefile
add the ocotp module for Kconfig and Makefile.
Signed-off-by: Huang Shijie <b32955@freescale.com>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/Kconfig | 16 | ||||
-rw-r--r-- | drivers/char/Makefile | 1 |
2 files changed, 17 insertions, 0 deletions
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 552f45c6a7b5..1ec263f676a6 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -559,6 +559,22 @@ config BFIN_OTP_WRITE_ENABLE If unsure, say N. +config FSL_OTP + tristate "Freescale On-Chip OTP Memory Support" + depends on (ARCH_MX23 || ARCH_MX28 || ARCH_MX50) + default n + help + If you say Y here, you will get support for a character device + interface into the One Time Programmable memory pages that are + stored on the iMX23/28/50 processor. This will not get you access + to the secure memory pages however. You will need to write your + own secure code and reader for that. + + To compile this driver as a module, choose M here: the module + will be called fsl_otp. + + If unsure, it is safe to say Y. + config PRINTER tristate "Parallel printer support" depends on PARPORT diff --git a/drivers/char/Makefile b/drivers/char/Makefile index 4d2551bf742c..310e11bcda19 100644 --- a/drivers/char/Makefile +++ b/drivers/char/Makefile @@ -70,6 +70,7 @@ obj-$(CONFIG_IBM_BSR) += bsr.o obj-$(CONFIG_SGI_MBCS) += mbcs.o obj-$(CONFIG_BRIQ_PANEL) += briq_panel.o obj-$(CONFIG_BFIN_OTP) += bfin-otp.o +obj-$(CONFIG_FSL_OTP) += fsl_otp.o obj-$(CONFIG_PRINTER) += lp.o |