Kconfig 575 B

12345678910111213141516171819202122232425262728
  1. # Generic register map support. There are no user servicable options here,
  2. # this is an API intended to be used by other kernel subsystems. These
  3. # subsystems should select the appropriate symbols.
  4. config REGMAP
  5. default y if (REGMAP_I2C || REGMAP_SPI || REGMAP_SPMI || REGMAP_MMIO || REGMAP_IRQ)
  6. select LZO_COMPRESS
  7. select LZO_DECOMPRESS
  8. select IRQ_DOMAIN if REGMAP_IRQ
  9. bool
  10. config REGMAP_I2C
  11. tristate
  12. depends on I2C
  13. config REGMAP_SPI
  14. tristate
  15. depends on SPI
  16. config REGMAP_SPMI
  17. tristate
  18. depends on SPMI
  19. config REGMAP_MMIO
  20. tristate
  21. config REGMAP_IRQ
  22. bool