Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# 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 CONFIG_REGMAP
	default y if (CONFIG_REGMAP_I2C || CONFIG_REGMAP_SPI || CONFIG_REGMAP_SPMI || CONFIG_REGMAP_AC97 || CONFIG_REGMAP_MMIO || CONFIG_REGMAP_IRQ)
	select CONFIG_LZO_COMPRESS
	select CONFIG_LZO_DECOMPRESS
	select CONFIG_IRQ_DOMAIN if CONFIG_REGMAP_IRQ
	bool

config CONFIG_REGMAP_AC97
	tristate

config CONFIG_REGMAP_I2C
	tristate
	depends on CONFIG_I2C

config CONFIG_REGMAP_SPI
	tristate
	depends on CONFIG_SPI

config CONFIG_REGMAP_SPMI
	tristate
	depends on CONFIG_SPMI

config CONFIG_REGMAP_MMIO
	tristate

config CONFIG_REGMAP_IRQ
	bool