mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 20:05:22 +00:00
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>
10 lines
238 B
Plaintext
10 lines
238 B
Plaintext
# 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.
|