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

Instead of having one common FDT MPXY RPMI mailbox client drivers for various RPMI service groups, split this driver into two parts: 1) Common MPXY RPMI mailbox client library 2) MPXY driver for RPMI clock service group The above split enables having a separate MPXY driver for each RPMI clock service group and #1 (above) will allow code sharing between various MPXY RPMI drivers. Signed-off-by: Anup Patel <apatel@ventanamicro.com>
24 lines
388 B
Plaintext
24 lines
388 B
Plaintext
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
menu "MPXY Device Support"
|
|
|
|
config FDT_MPXY
|
|
bool "FDT based MPXY drivers"
|
|
depends on FDT
|
|
default n
|
|
|
|
config FDT_MPXY_RPMI_MBOX
|
|
bool "MPXY drivers as RPMI mailbox client"
|
|
depends on FDT_MAILBOX && FDT_MPXY
|
|
default n
|
|
|
|
if FDT_MPXY_RPMI_MBOX
|
|
|
|
config FDT_MPXY_RPMI_CLOCK
|
|
bool "MPXY driver for RPMI clock service group"
|
|
default n
|
|
|
|
endif
|
|
|
|
endmenu
|