From: Tony Lindgren <tony@atomide.com>
To: Suman Anna <s-anna@ti.com>
Cc: Dave Gerlach <d-gerlach@ti.com>,
Jassi Brar <jaswinder.singh@linaro.org>,
linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 0/7] OMAP mailbox cleanup
Date: Tue, 29 Jul 2014 01:59:52 -0700 [thread overview]
Message-ID: <20140729085947.GI29045@atomide.com> (raw)
In-Reply-To: <1403657023-53897-1-git-send-email-s-anna@ti.com>
* Suman Anna <s-anna@ti.com> [140624 17:45]:
> Hi,
>
> This patch series is mainly a cleanup of the current OMAP mailbox drivers
> in preparation for adding DT support and adoption to the upcoming mailbox
> framework from Jassi Brar [1]. It removes the OMAP1 mailbox driver as there
> are no users for it in the kernel, and consolidates the previous OMAP
> mailbox framework and the OMAP2+ mailbox driver into a single OMAP mailbox
> driver.
>
> The last patch also allows the OMAP mailbox driver to support multiple
> instances of the IP (for DRA7xx, which is the first SoC in the OMAP family
> to have more than one System Mailbox IP).
>
> The patches are based on 3.16-rc2 and do not change any of the functional
> behavior on any OMAP2+ SoCs. The boot logs on various OMAP platforms with
> these patches are at:
> OMAP2 (SDP2430) : http://slexy.org/view/s20rOAReeS
> OMAP3 (BeagleXM) : http://slexy.org/view/s2QITyvzH9
> OMAP4 (PandaBoard) : http://slexy.org/view/s2X9jdZ9Wh
> OMAP5 (OMAP5 uEVM) : http://slexy.org/view/s21hZUTYwm
> DRA7 (DRA7 EVM) : http://slexy.org/view/s213K7f87s
> AM33xx (BeagleBone Black) : http://slexy.org/view/s2vB7oxbix
> AM43xx (AM437x GP EVM) : http://slexy.org/view/s21rMlUWMg
>
> [1] https://lkml.org/lkml/2014/6/12/470
>
> Suman Anna (7):
> mailbox/omap: use devm_* interfaces
> mailbox/omap: remove OMAP1 mailbox driver
> mailbox/omap: remove omap_mbox_type_t from mailbox ops
> mailbox/omap: simplify the fifo assignment by using macros
> mailbox/omap: consolidate OMAP mailbox driver
> mailbox/omap: remove the private mailbox structure
> mailbox/omap: add a parent structure for every IP instance
>
> arch/arm/configs/omap1_defconfig | 2 -
> drivers/mailbox/Kconfig | 19 +-
> drivers/mailbox/Makefile | 6 +-
> drivers/mailbox/mailbox-omap1.c | 203 ------------------
> drivers/mailbox/mailbox-omap2.c | 357 -------------------------------
> drivers/mailbox/omap-mailbox.c | 444 +++++++++++++++++++++++++++++++--------
> drivers/mailbox/omap-mbox.h | 67 ------
> 7 files changed, 360 insertions(+), 738 deletions(-)
> delete mode 100644 drivers/mailbox/mailbox-omap1.c
> delete mode 100644 drivers/mailbox/mailbox-omap2.c
> delete mode 100644 drivers/mailbox/omap-mbox.h
I'll apply these on into omap-for-v3.17/mailbox. Might be a bit
too late for v3.17 so no guarantees these will get merged. But
it removes some old dead code, so that's nice ;)
Regards,
Tony
WARNING: multiple messages have this Message-ID (diff)
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/7] OMAP mailbox cleanup
Date: Tue, 29 Jul 2014 01:59:52 -0700 [thread overview]
Message-ID: <20140729085947.GI29045@atomide.com> (raw)
In-Reply-To: <1403657023-53897-1-git-send-email-s-anna@ti.com>
* Suman Anna <s-anna@ti.com> [140624 17:45]:
> Hi,
>
> This patch series is mainly a cleanup of the current OMAP mailbox drivers
> in preparation for adding DT support and adoption to the upcoming mailbox
> framework from Jassi Brar [1]. It removes the OMAP1 mailbox driver as there
> are no users for it in the kernel, and consolidates the previous OMAP
> mailbox framework and the OMAP2+ mailbox driver into a single OMAP mailbox
> driver.
>
> The last patch also allows the OMAP mailbox driver to support multiple
> instances of the IP (for DRA7xx, which is the first SoC in the OMAP family
> to have more than one System Mailbox IP).
>
> The patches are based on 3.16-rc2 and do not change any of the functional
> behavior on any OMAP2+ SoCs. The boot logs on various OMAP platforms with
> these patches are at:
> OMAP2 (SDP2430) : http://slexy.org/view/s20rOAReeS
> OMAP3 (BeagleXM) : http://slexy.org/view/s2QITyvzH9
> OMAP4 (PandaBoard) : http://slexy.org/view/s2X9jdZ9Wh
> OMAP5 (OMAP5 uEVM) : http://slexy.org/view/s21hZUTYwm
> DRA7 (DRA7 EVM) : http://slexy.org/view/s213K7f87s
> AM33xx (BeagleBone Black) : http://slexy.org/view/s2vB7oxbix
> AM43xx (AM437x GP EVM) : http://slexy.org/view/s21rMlUWMg
>
> [1] https://lkml.org/lkml/2014/6/12/470
>
> Suman Anna (7):
> mailbox/omap: use devm_* interfaces
> mailbox/omap: remove OMAP1 mailbox driver
> mailbox/omap: remove omap_mbox_type_t from mailbox ops
> mailbox/omap: simplify the fifo assignment by using macros
> mailbox/omap: consolidate OMAP mailbox driver
> mailbox/omap: remove the private mailbox structure
> mailbox/omap: add a parent structure for every IP instance
>
> arch/arm/configs/omap1_defconfig | 2 -
> drivers/mailbox/Kconfig | 19 +-
> drivers/mailbox/Makefile | 6 +-
> drivers/mailbox/mailbox-omap1.c | 203 ------------------
> drivers/mailbox/mailbox-omap2.c | 357 -------------------------------
> drivers/mailbox/omap-mailbox.c | 444 +++++++++++++++++++++++++++++++--------
> drivers/mailbox/omap-mbox.h | 67 ------
> 7 files changed, 360 insertions(+), 738 deletions(-)
> delete mode 100644 drivers/mailbox/mailbox-omap1.c
> delete mode 100644 drivers/mailbox/mailbox-omap2.c
> delete mode 100644 drivers/mailbox/omap-mbox.h
I'll apply these on into omap-for-v3.17/mailbox. Might be a bit
too late for v3.17 so no guarantees these will get merged. But
it removes some old dead code, so that's nice ;)
Regards,
Tony
next prev parent reply other threads:[~2014-07-29 9:01 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-25 0:43 [PATCH 0/7] OMAP mailbox cleanup Suman Anna
2014-06-25 0:43 ` Suman Anna
2014-06-25 0:43 ` [PATCH 1/7] mailbox/omap: use devm_* interfaces Suman Anna
2014-06-25 0:43 ` Suman Anna
2014-06-25 0:43 ` [PATCH 2/7] mailbox/omap: remove OMAP1 mailbox driver Suman Anna
2014-06-25 0:43 ` Suman Anna
2014-06-26 10:28 ` Tony Lindgren
2014-06-26 10:28 ` Tony Lindgren
2014-06-26 21:24 ` Aaro Koskinen
2014-06-26 21:24 ` Aaro Koskinen
2014-06-25 0:43 ` [PATCH 3/7] mailbox/omap: remove omap_mbox_type_t from mailbox ops Suman Anna
2014-06-25 0:43 ` Suman Anna
2014-06-25 0:43 ` [PATCH 4/7] mailbox/omap: simplify the fifo assignment by using macros Suman Anna
2014-06-25 0:43 ` Suman Anna
2014-06-25 0:43 ` [PATCH 5/7] mailbox/omap: consolidate OMAP mailbox driver Suman Anna
2014-06-25 0:43 ` Suman Anna
2014-06-25 0:43 ` [PATCH 6/7] mailbox/omap: remove the private mailbox structure Suman Anna
2014-06-25 0:43 ` Suman Anna
2014-06-25 0:43 ` [PATCH 7/7] mailbox/omap: add a parent structure for every IP instance Suman Anna
2014-06-25 0:43 ` Suman Anna
2014-07-29 8:59 ` Tony Lindgren [this message]
2014-07-29 8:59 ` [PATCH 0/7] OMAP mailbox cleanup Tony Lindgren
2014-07-29 15:53 ` Suman Anna
2014-07-29 15:53 ` Suman Anna
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140729085947.GI29045@atomide.com \
--to=tony@atomide.com \
--cc=d-gerlach@ti.com \
--cc=jaswinder.singh@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=s-anna@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.