diff options
author | Lokesh Vutla | 2018-08-27 15:57:49 +0530 |
---|---|---|
committer | Tom Rini | 2018-09-11 08:32:55 -0400 |
commit | 880274192cfdcec83b32b15ae47e7cbfc2edc1df (patch) | |
tree | a5ef8b51607c02d89b4ad6b411223198f4a09988 /common | |
parent | f9aa41023bd9f684d5d2ad8385efbb92a39b3c07 (diff) |
spl: Allow mailbox drivers to be used within SPL
Add an option for building mailbox drivers within SPL.
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index e5a5188de8f..cccd551acab 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -430,6 +430,14 @@ config SPL_LIBGENERIC_SUPPORT boards. Enable this option to build the code in lib/ as part of an SPL build. +config SPL_DM_MAILBOX + bool "Support Mailbox" + help + Enable support for Mailbox within SPL. This enable the inter + processor communication protocols tobe used within SPL. Enable + this option to build the drivers in drivers/mailbox as part of + SPL build. + config SPL_MMC_SUPPORT bool "Support MMC" depends on MMC |