This driver implements a simple MBOX device which supports a single instance, two channels (one for each direction), and only signalling mode with no data transfer. Signalling to another core is achieved by taking and giving two hardware semaphores, similar to the STM32 HSEM IPM driver. Signed-off-by: Celina Sophie Kalus <hello@celinakalus.de>
8 lines
253 B
Text
8 lines
253 B
Text
# Copyright (c) 2024 Celina Sophie Kalus <hello@celinakalus.de>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config MBOX_STM32_HSEM
|
|
bool "MBOX STM32 HSEM driver"
|
|
depends on DT_HAS_ST_MBOX_STM32_HSEM_ENABLED
|
|
help
|
|
MBOX Driver for STM32 hardware semaphore
|