# Generic register map support.  There are no user servicable options here,
# this is an API intended to be used by other kernel subsystems.  These
# subsystems should select the appropriate symbols.

config REGMAP
	select LZO_COMPRESS
	select LZO_DECOMPRESS
	select IRQ_DOMAIN if REGMAP_IRQ
	tristate "Regmap"

config REGMAP_AC97
	select REGMAP
	tristate

config REGMAP_I2C
	tristate "Regmap I2C"
	select REGMAP
	depends on I2C

config REGMAP_SPI
	tristate "Regmap SPI"
	select REGMAP
	depends on SPI_MASTER
	depends on SPI

config REGMAP_SPMI
	select REGMAP
	tristate
	depends on SPMI

config REGMAP_MMIO
	tristate "Regmap MMIO"
	select REGMAP

config REGMAP_IRQ
	select REGMAP
	bool

config REGMAP_ALLOW_WRITE_DEBUGFS
	depends on REGMAP && DEBUG_FS
	bool "Allow REGMAP debugfs write"
