TI OMAP mailbox is the inter-processor mailbox IP found in TI K3 devices (AM62X, AM64X, J721E .etc). The mailbox hardware uses a queued mailbox interrupt mechanism that provides a communication channel between processors through a set of registers and their associated interrupt signals by sending and receiving messages. The interrupt/bank associated with each processor entity is found through the usr_id property from device tree. Signed-off-by: Vaishnav Achath <vaishnav.a@ti.com>
9 lines
238 B
Text
9 lines
238 B
Text
# Copyright 2024 Texas Instruments Incorporated.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config MBOX_TI_OMAP_MAILBOX
|
|
bool "TI OMAP Mailbox driver"
|
|
default y
|
|
depends on DT_HAS_TI_OMAP_MAILBOX_ENABLED
|
|
help
|
|
Driver for TI OMAP Mailbox.
|