mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 23:41:23 +01:00

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>
23 lines
306 B
Plaintext
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
|