Files
opensbi/lib/utils/mailbox/Kconfig
Anup Patel 2244a34f0d lib: utils/mailbox: Add simple FDT based mailbox framework
Add a simple FDT based mailbox framework which is built on top of the generic
mailbox library. The phandle of FDT mailbox DT node is treated as the unique
mailbox controller ID which is required by the generic mailbox library. The
FDT based mailbox drivers will be probed on-demand from fdt_mailbox_request_chan()
called by the mailbox client drivers.

Signed-off-by: Anup Patel <apatel@ventanamicro.com>
2024-12-06 09:26:19 +05:30

16 lines
221 B
Plaintext

# SPDX-License-Identifier: BSD-2-Clause
menu "Mailbox Support"
config FDT_MAILBOX
bool "FDT based mailbox drivers"
depends on FDT
select MAILBOX
default n
config MAILBOX
bool "Mailbox support"
default n
endmenu