9ef4546cbd
ST's platforms currently support a maximum of 5 Mailboxes, one for each of the supported co-processors situated on the platform. Each Mailbox is divided up into 4 instances which consist of 32 channels. Messages are passed between the application and co-processors using shared memory areas. It is the Client's responsibility to manage these areas. Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
18 lines
351 B
Makefile
18 lines
351 B
Makefile
# Generic MAILBOX API
|
|
|
|
obj-$(CONFIG_MAILBOX) += mailbox.o
|
|
|
|
obj-$(CONFIG_ARM_MHU) += arm_mhu.o
|
|
|
|
obj-$(CONFIG_PL320_MBOX) += pl320-ipc.o
|
|
|
|
obj-$(CONFIG_OMAP2PLUS_MBOX) += omap-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
|