diff options
author | Stephen Warren | 2016-06-17 09:43:57 -0600 |
---|---|---|
committer | Simon Glass | 2016-06-19 17:05:55 -0600 |
commit | 0f67e2395be44db2c1bef17b6ada2e46221908ed (patch) | |
tree | 51733116f48f2b63eb690c5d6debdaa14f554490 /drivers/mailbox/Makefile | |
parent | 769d52ef0f04812fd65ef2f3ab921ad2e8562ab1 (diff) |
mailbox: add Tegra186 HSP driver
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>
Diffstat (limited to 'drivers/mailbox/Makefile')
-rw-r--r-- | drivers/mailbox/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mailbox/Makefile b/drivers/mailbox/Makefile index bbae4def6d4..155dbeb0994 100644 --- a/drivers/mailbox/Makefile +++ b/drivers/mailbox/Makefile @@ -5,3 +5,4 @@ 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 |