mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
aace66b170
Support for TI Message Manager Module. This hardware block manages a bunch of hardware queues meant for communication between processor entities. Clients sitting on top of this would manage the required protocol for communicating with the counterpart entities. For more details on TI Message Manager hardware block, see documentation that will is available here: http://www.ti.com/lit/ug/spruhy8/spruhy8.pdf Chapter 8.1(Message Manager) Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
28 lines
605 B
Makefile
28 lines
605 B
Makefile
# Generic MAILBOX API
|
|
|
|
obj-$(CONFIG_MAILBOX) += mailbox.o
|
|
|
|
obj-$(CONFIG_MAILBOX_TEST) += mailbox-test.o
|
|
|
|
obj-$(CONFIG_ARM_MHU) += arm_mhu.o
|
|
|
|
obj-$(CONFIG_PL320_MBOX) += pl320-ipc.o
|
|
|
|
obj-$(CONFIG_OMAP2PLUS_MBOX) += omap-mailbox.o
|
|
|
|
obj-$(CONFIG_ROCKCHIP_MBOX) += rockchip-mailbox.o
|
|
|
|
obj-$(CONFIG_PCC) += pcc.o
|
|
|
|
obj-$(CONFIG_ALTERA_MBOX) += mailbox-altera.o
|
|
|
|
obj-$(CONFIG_BCM2835_MBOX) += bcm2835-mailbox.o
|
|
|
|
obj-$(CONFIG_STI_MBOX) += mailbox-sti.o
|
|
|
|
obj-$(CONFIG_TI_MESSAGE_MANAGER) += ti-msgmgr.o
|
|
|
|
obj-$(CONFIG_XGENE_SLIMPRO_MBOX) += mailbox-xgene-slimpro.o
|
|
|
|
obj-$(CONFIG_HI6220_MBOX) += hi6220-mailbox.o
|