Kconfig 3.4 KB

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