Kconfig 620 B

1234567891011121314151617181920212223242526272829303132
  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_AC97 || REGMAP_MMIO || REGMAP_IRQ)
  6. select LZO_COMPRESS
  7. select LZO_DECOMPRESS
  8. select IRQ_DOMAIN if REGMAP_IRQ
  9. bool
  10. config REGMAP_AC97
  11. tristate
  12. config REGMAP_I2C
  13. tristate
  14. depends on I2C
  15. config REGMAP_SPI
  16. tristate
  17. depends on SPI
  18. config REGMAP_SPMI
  19. tristate
  20. depends on SPMI
  21. config REGMAP_MMIO
  22. tristate
  23. config REGMAP_IRQ
  24. bool