mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
0f67e2395b
Tegra186's HSP module implements doorbells, mailboxes, semaphores, and shared interrupts. This patch provides a driver for HSP, and hooks it into the mailbox API. Currently, only doorbells are supported. Signed-off-by: Stephen Warren <swarren@nvidia.com> Reviewed-by: Simon Glass <sjg@chromium.org> Acked-by: Simon Glass <sjg@chromium.org>
8 lines
259 B
Makefile
8 lines
259 B
Makefile
# Copyright (c) 2016, NVIDIA CORPORATION.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_DM_MAILBOX) += mailbox-uclass.o
|
|
obj-$(CONFIG_SANDBOX_MBOX) += sandbox-mbox.o
|
|
obj-$(CONFIG_SANDBOX_MBOX) += sandbox-mbox-test.o
|
|
obj-$(CONFIG_TEGRA_HSP) += tegra-hsp.o
|