Files
opensbi/lib/utils/regmap/Kconfig
Anup Patel f21d8f7d59 lib: utils/regmap: Add simple FDT based syscon regmap driver
Let us add a simple FDT based system regmap driver which follows the
device tree bindings already defined in the Linux kernel.

Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Reviewed-by: Xiang W <wxjstz@126.com>
2023-07-31 14:09:13 +05:30

23 lines
306 B
Plaintext

# SPDX-License-Identifier: BSD-2-Clause
menu "Regmap Support"
config FDT_REGMAP
bool "FDT based regmap drivers"
depends on FDT
select REGMAP
default n
if FDT_REGMAP
config FDT_REGMAP_SYSCON
bool "Syscon regmap FDT driver"
default n
endif
config REGMAP
bool "Regmap support"
default n
endmenu