Skip to content

Commit

Permalink
mailbox: Introduce framework for mailbox
Browse files Browse the repository at this point in the history
Introduce common framework for client/protocol drivers and
controller drivers of Inter-Processor-Communication (IPC).

Client driver developers should have a look at
 include/linux/mailbox_client.h to understand the part of
the API exposed to client drivers.
Similarly controller driver developers should have a look
at include/linux/mailbox_controller.h

Reviewed-by: Mark Brown <broonie@linaro.org>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
  • Loading branch information
Jassi Brar committed Oct 8, 2014
1 parent f2fc42b commit 2b6d83e
Show file tree
Hide file tree
Showing 5 changed files with 656 additions and 0 deletions.
8 changes: 8 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -5740,6 +5740,14 @@ S: Maintained
F: drivers/net/macvlan.c
F: include/linux/if_macvlan.h

MAILBOX API
M: Jassi Brar <jassisinghbrar@gmail.com>
L: linux-kernel@vger.kernel.org
S: Maintained
F: drivers/mailbox/
F: include/linux/mailbox_client.h
F: include/linux/mailbox_controller.h

MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
M: Michael Kerrisk <mtk.manpages@gmail.com>
W: http://www.kernel.org/doc/man-pages
Expand Down
4 changes: 4 additions & 0 deletions drivers/mailbox/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Generic MAILBOX API

obj-$(CONFIG_MAILBOX) += mailbox.o

obj-$(CONFIG_PL320_MBOX) += pl320-ipc.o

obj-$(CONFIG_OMAP2PLUS_MBOX) += omap-mailbox.o
Loading

0 comments on commit 2b6d83e

Please sign in to comment.