linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/9] drivers: mailbox: framework creation
@ 2012-12-18 13:10 Loic Pallardy
  2012-12-18 13:10 ` [PATCH 1/9] mailbox: OMAP: introduce mailbox framework Loic Pallardy
                   ` (9 more replies)
  0 siblings, 10 replies; 31+ messages in thread
From: Loic Pallardy @ 2012-12-18 13:10 UTC (permalink / raw)
  To: linux-arm-kernel

OMAP and ST-Ericsson platforms are both using mailbox to communicate
with some coprocessors.
Based on OMAP existing mailbox framework, this series proposes a
generic framework, living under drivers/mailbox.

This series:
- moves omap-mailbox framework to a newly drivers/mailbox folder
  (part of plat-omap code cleaning)
- creates API header file
- replaces "omap" prefix by "mailbox"
- opens interface and make framework independent from omap HW
- adapts existing omap1 and omap2 drivers to new changes
- creates dbx500 mailbox driver for ST-Ericsson platforms

Signed-off-by: Omar Ramirez Luna <omar.luna@linaro.org>
Signed-off-by: Loic Pallardy <loic.pallardy@st.com>

Based on 3.7-rc7.

Loic Pallardy (9):
  mailbox: OMAP: introduce mailbox framework
  mailbox: split internal header from API header
  mailbox: rename omap_mbox in mailbox
  mailbox: create opened message type
  mailbox: change protection mechanisms
  mailbox: add shared memory mailbox type
  mailbox: add IRQF_NO_SUSPEND flag
  mailbox: add no_irq send message
  mailbox: create dbx500 mailbox driver

 arch/arm/configs/omap1_defconfig                   |   3 +-
 arch/arm/mach-omap1/Makefile                       |   4 -
 arch/arm/mach-omap1/mailbox.c                      | 199 -------
 arch/arm/mach-omap2/Makefile                       |   3 -
 arch/arm/mach-omap2/devices.c                      |   4 +-
 arch/arm/plat-omap/Kconfig                         |  16 -
 arch/arm/plat-omap/Makefile                        |   3 -
 arch/arm/plat-omap/include/plat/mailbox.h          | 105 ----
 arch/arm/plat-omap/mailbox.c                       | 435 ---------------
 drivers/Kconfig                                    |   2 +
 drivers/Makefile                                   |   1 +
 drivers/mailbox/Kconfig                            |  51 ++
 drivers/mailbox/Makefile                           |   5 +
 drivers/mailbox/mailbox-dbx500.c                   | 601 +++++++++++++++++++++
 drivers/mailbox/mailbox-omap1.c                    | 222 ++++++++
 .../mailbox.c => drivers/mailbox/mailbox-omap2.c   | 230 ++++----
 drivers/mailbox/mailbox.c                          | 551 +++++++++++++++++++
 drivers/mailbox/mailbox.h                          |  66 +++
 include/linux/mailbox.h                            |  36 ++
 include/linux/platform_data/mailbox-dbx500.h       |  13 +
 20 files changed, 1672 insertions(+), 878 deletions(-)
 delete mode 100644 arch/arm/mach-omap1/mailbox.c
 delete mode 100644 arch/arm/plat-omap/include/plat/mailbox.h
 delete mode 100644 arch/arm/plat-omap/mailbox.c
 create mode 100644 drivers/mailbox/Kconfig
 create mode 100644 drivers/mailbox/Makefile
 create mode 100644 drivers/mailbox/mailbox-dbx500.c
 create mode 100644 drivers/mailbox/mailbox-omap1.c
 rename arch/arm/mach-omap2/mailbox.c => drivers/mailbox/mailbox-omap2.c (56%)
 create mode 100644 drivers/mailbox/mailbox.c
 create mode 100644 drivers/mailbox/mailbox.h
 create mode 100644 include/linux/mailbox.h
 create mode 100644 include/linux/platform_data/mailbox-dbx500.h

-- 
1.7.11.1

^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2013-01-11 13:34 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-18 13:10 [PATCH 0/9] drivers: mailbox: framework creation Loic Pallardy
2012-12-18 13:10 ` [PATCH 1/9] mailbox: OMAP: introduce mailbox framework Loic Pallardy
2012-12-18 16:59   ` Tony Lindgren
2012-12-21  8:54     ` Loic PALLARDY
2012-12-21 10:49       ` Bedia, Vaibhav
2012-12-21 10:53         ` Loic PALLARDY
2013-01-09 12:11           ` Bedia, Vaibhav
2013-01-09 12:29             ` Loic PALLARDY
2013-01-09 12:34               ` Bedia, Vaibhav
2013-01-11 13:34               ` Omar Ramirez Luna
2012-12-18 13:10 ` [PATCH 2/9] mailbox: split internal header from API header Loic Pallardy
2012-12-18 13:10 ` [PATCH 3/9] mailbox: rename omap_mbox in mailbox Loic Pallardy
2012-12-20 21:29   ` Ohad Ben-Cohen
2012-12-18 13:10 ` [PATCH 4/9] mailbox: create opened message type Loic Pallardy
2012-12-21 10:28   ` Bedia, Vaibhav
2012-12-21 10:50     ` Loic PALLARDY
2012-12-18 13:10 ` [PATCH 5/9] mailbox: change protection mechanisms Loic Pallardy
2012-12-21 10:28   ` Bedia, Vaibhav
2012-12-21 10:50     ` Loic PALLARDY
2012-12-18 13:10 ` [PATCH 6/9] mailbox: add shared memory mailbox type Loic Pallardy
2012-12-18 13:10 ` [PATCH 7/9] mailbox: add IRQF_NO_SUSPEND flag Loic Pallardy
2012-12-18 13:10 ` [PATCH 8/9] mailbox: add no_irq send message Loic Pallardy
2012-12-18 13:10 ` [PATCH 9/9] mailbox: create dbx500 mailbox driver Loic Pallardy
2012-12-20 18:16 ` [PATCH 0/9] drivers: mailbox: framework creation Linus Walleij
2012-12-20 18:28   ` Tony Lindgren
2012-12-20 19:19     ` Olof Johansson
2012-12-20 19:33       ` Tony Lindgren
2012-12-21  7:31       ` Ohad Ben-Cohen
2012-12-21  8:52         ` Loic PALLARDY
2012-12-21 19:33           ` Omar Ramirez Luna
2012-12-24 15:17             ` Ohad Ben-Cohen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).