forked from Mirrors/opensbi

The supervisor software can directly receive most of the system MSIs except P2A doorbell and MSIs preferred to be handled in M-mode. Add MPXY RPMI mailbox client driver for the System MSI service group. Signed-off-by: Anup Patel <apatel@ventanamicro.com>
28 lines
482 B
Plaintext
28 lines
482 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
|
|
|
|
config FDT_MPXY_RPMI_SYSMSI
|
|
bool "MPXY driver for RPMI system MSI service group"
|
|
default n
|
|
|
|
endif
|
|
|
|
endmenu
|