Kconfig 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. menu "EEPROM support"
  2. config EEPROM_AT24
  3. tristate "I2C EEPROMs / RAMs / ROMs from most vendors"
  4. depends on I2C && SYSFS
  5. help
  6. Enable this driver to get read/write support to most I2C EEPROMs
  7. and compatible devices like FRAMs, SRAMs, ROMs etc. After you
  8. configure the driver to know about each chip on your target
  9. board. Use these generic chip names, instead of vendor-specific
  10. ones like at24c64, 24lc02 or fm24c04:
  11. 24c00, 24c01, 24c02, spd (readonly 24c02), 24c04, 24c08,
  12. 24c16, 24c32, 24c64, 24c128, 24c256, 24c512, 24c1024
  13. Unless you like data loss puzzles, always be sure that any chip
  14. you configure as a 24c32 (32 kbit) or larger is NOT really a
  15. 24c16 (16 kbit) or smaller, and vice versa. Marking the chip
  16. as read-only won't help recover from this. Also, if your chip
  17. has any software write-protect mechanism you may want to review the
  18. code to make sure this driver won't turn it on by accident.
  19. If you use this with an SMBus adapter instead of an I2C adapter,
  20. full functionality is not available. Only smaller devices are
  21. supported (24c16 and below, max 4 kByte).
  22. This driver can also be built as a module. If so, the module
  23. will be called at24.
  24. config EEPROM_AT25
  25. tristate "SPI EEPROMs from most vendors"
  26. depends on SPI && SYSFS
  27. help
  28. Enable this driver to get read/write support to most SPI EEPROMs,
  29. after you configure the board init code to know about each eeprom
  30. on your target board.
  31. This driver can also be built as a module. If so, the module
  32. will be called at25.
  33. config EEPROM_LEGACY
  34. tristate "Old I2C EEPROM reader"
  35. depends on I2C && SYSFS
  36. help
  37. If you say yes here you get read-only access to the EEPROM data
  38. available on modern memory DIMMs and Sony Vaio laptops via I2C. Such
  39. EEPROMs could theoretically be available on other devices as well.
  40. This driver can also be built as a module. If so, the module
  41. will be called eeprom.
  42. config EEPROM_MAX6875
  43. tristate "Maxim MAX6874/5 power supply supervisor"
  44. depends on I2C
  45. help
  46. If you say yes here you get read-only support for the user EEPROM of
  47. the Maxim MAX6874/5 EEPROM-programmable, quad power-supply
  48. sequencer/supervisor.
  49. All other features of this chip should be accessed via i2c-dev.
  50. This driver can also be built as a module. If so, the module
  51. will be called max6875.
  52. config EEPROM_93CX6
  53. tristate "EEPROM 93CX6 support"
  54. help
  55. This is a driver for the EEPROM chipsets 93c46 and 93c66.
  56. The driver supports both read as well as write commands.
  57. If unsure, say N.
  58. config EEPROM_93XX46
  59. tristate "Microwire EEPROM 93XX46 support"
  60. depends on SPI && SYSFS
  61. help
  62. Driver for the microwire EEPROM chipsets 93xx46x. The driver
  63. supports both read and write commands and also the command to
  64. erase the whole EEPROM.
  65. This driver can also be built as a module. If so, the module
  66. will be called eeprom_93xx46.
  67. If unsure, say N.
  68. config EEPROM_DIGSY_MTC_CFG
  69. bool "DigsyMTC display configuration EEPROMs device"
  70. depends on GPIO_MPC5200 && SPI_GPIO
  71. help
  72. This option enables access to display configuration EEPROMs
  73. on digsy_mtc board. You have to additionally select Microwire
  74. EEPROM 93XX46 driver. sysfs entries will be created for that
  75. EEPROM allowing to read/write the configuration data or to
  76. erase the whole EEPROM.
  77. If unsure, say N.
  78. endmenu