diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2008-04-24 20:04:56 -0400 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-04-24 20:04:56 -0400 |
commit | 2dc63a84b2db23b9680646aff93917211613bf1a (patch) | |
tree | fd516a3c22df034140e1c2022476ad8086b62d38 /drivers/char/Kconfig | |
parent | 0a2784233785226fe5882c8af15118476f89e98e (diff) |
Blackfin char driver for Blackfin on-chip OTP memory (v3)
initial char driver for otp memory
(only read supported atm ... needs real examples/docs for write support)
v2-v3:
- fixup __initdata with __initconst, as we are heading for 2.6.26
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Acked-by: Jiri Slaby <jirislaby@gmail.com>
Diffstat (limited to 'drivers/char/Kconfig')
-rw-r--r-- | drivers/char/Kconfig | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index a87b89db08e9..2906ee7bd298 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig | |||
@@ -481,6 +481,34 @@ config BRIQ_PANEL | |||
481 | 481 | ||
482 | It's safe to say N here. | 482 | It's safe to say N here. |
483 | 483 | ||
484 | config BFIN_OTP | ||
485 | tristate "Blackfin On-Chip OTP Memory Support" | ||
486 | depends on BLACKFIN && (BF52x || BF54x) | ||
487 | default y | ||
488 | help | ||
489 | If you say Y here, you will get support for a character device | ||
490 | interface into the One Time Programmable memory pages that are | ||
491 | stored on the Blackfin processor. This will not get you access | ||
492 | to the secure memory pages however. You will need to write your | ||
493 | own secure code and reader for that. | ||
494 | |||
495 | To compile this driver as a module, choose M here: the module | ||
496 | will be called bfin-otp. | ||
497 | |||
498 | If unsure, it is safe to say Y. | ||
499 | |||
500 | config BFIN_OTP_WRITE_ENABLE | ||
501 | bool "Enable writing support of OTP pages" | ||
502 | depends on BFIN_OTP | ||
503 | default n | ||
504 | help | ||
505 | If you say Y here, you will enable support for writing of the | ||
506 | OTP pages. This is dangerous by nature as you can only program | ||
507 | the pages once, so only enable this option when you actually | ||
508 | need it so as to not inadvertently clobber data. | ||
509 | |||
510 | If unsure, say N. | ||
511 | |||
484 | config PRINTER | 512 | config PRINTER |
485 | tristate "Parallel printer support" | 513 | tristate "Parallel printer support" |
486 | depends on PARPORT | 514 | depends on PARPORT |