linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] move omap mailbox to drivers for v3.11
@ 2013-06-12 21:58 Suman Anna
  2013-06-13  1:37 ` Felipe Balbi
  0 siblings, 1 reply; 4+ messages in thread
From: Suman Anna @ 2013-06-12 21:58 UTC (permalink / raw)
  To: Tony Lindgren
  Cc: linux-omap, linux-arm-kernel, Ohad Ben-Cohen, Greg Kroah-Hartman,
	Jassi Brar, Loic Pallardy

The following changes since commit 317ddd256b9c24b0d78fa8018f80f1e495481a10:

  Linux 3.10-rc5 (2013-06-08 17:41:04 -0700)

are available in the git repository at:

  git@github.com:sumananna/mailbox.git tags/omap-mailbox-for-v3.11

for you to fetch changes up to c869c75c16b3d1ffcf64fb2fd63ba0c4a369071c:

  mailbox/omap: move the OMAP mailbox framework to drivers (2013-06-11 11:41:51 -0500)

----------------------------------------------------------------
Move OMAP Mailbox framework to drivers

The OMAP Mailbox driver framework is moved out of arch/arm folder
into drivers/mailbox folder, to re-enable building it and also serve
as a baseline for adapting to the new mailbox driver framework. The
changes mainly contain:
  - a minor bug fix and cleanup of mach-specific mailbox code
  - remove any header dependencies from plat-omap for multi-platform
    support
  - represent mailbox device data through platform data/hwmod attrs
  - move the omap mailbox code out of plat-omap/mach-omapX to
    drivers/mailbox folder.

----------------------------------------------------------------
Suman Anna (6):
      omap: mailbox: check iomem resource before dereferencing it
      omap: mailbox: call request_irq after mbox queues are allocated
      omap: mailbox: correct the argument type for irq ops
      ARM: OMAP2+: mbox: remove dependencies with soc.h
      ARM: OMAP2+: add user and fifo info to mailbox platform data
      mailbox/omap: move the OMAP mailbox framework to drivers

 arch/arm/configs/omap1_defconfig                   |   3 +-
 arch/arm/mach-omap1/Makefile                       |   4 -
 arch/arm/mach-omap2/Makefile                       |   3 -
 arch/arm/mach-omap2/devices.c                      |  13 +-
 arch/arm/mach-omap2/omap_hwmod_2420_data.c         |  14 ++
 arch/arm/mach-omap2/omap_hwmod_2430_data.c         |  13 +
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c         |  13 +
 arch/arm/plat-omap/Kconfig                         |  16 --
 arch/arm/plat-omap/Makefile                        |   3 -
 drivers/mailbox/Kconfig                            |  34 +++
 drivers/mailbox/Makefile                           |   6 +
 .../mailbox.c => drivers/mailbox/mailbox-omap1.c   |  12 +-
 .../mailbox.c => drivers/mailbox/mailbox-omap2.c   | 276 ++++++++-------------
 .../mailbox.c => drivers/mailbox/omap-mailbox.c    |  54 +++-
 .../plat/mailbox.h => drivers/mailbox/omap-mbox.h  |  70 ++----
 drivers/remoteproc/Kconfig                         |   3 +-
 drivers/remoteproc/omap_remoteproc.c               |   2 +-
 drivers/staging/tidspbridge/Kconfig                |   3 +-
 .../tidspbridge/include/dspbridge/host_os.h        |   2 +-
 include/linux/omap-mailbox.h                       |  29 +++
 include/linux/platform_data/mailbox-omap.h         |  58 +++++
 21 files changed, 355 insertions(+), 276 deletions(-)
 rename arch/arm/mach-omap1/mailbox.c => drivers/mailbox/mailbox-omap1.c (94%)
 rename arch/arm/mach-omap2/mailbox.c => drivers/mailbox/mailbox-omap2.c (59%)
 rename arch/arm/plat-omap/mailbox.c => drivers/mailbox/omap-mailbox.c (92%)
 rename arch/arm/plat-omap/include/plat/mailbox.h => drivers/mailbox/omap-mbox.h (54%)
 create mode 100644 include/linux/omap-mailbox.h
 create mode 100644 include/linux/platform_data/mailbox-omap.h

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

* Re: [GIT PULL] move omap mailbox to drivers for v3.11
  2013-06-12 21:58 [GIT PULL] move omap mailbox to drivers for v3.11 Suman Anna
@ 2013-06-13  1:37 ` Felipe Balbi
  2013-06-13 14:58   ` Suman Anna
  0 siblings, 1 reply; 4+ messages in thread
From: Felipe Balbi @ 2013-06-13  1:37 UTC (permalink / raw)
  To: Suman Anna
  Cc: Tony Lindgren, linux-omap, linux-arm-kernel, Ohad Ben-Cohen,
	Greg Kroah-Hartman, Jassi Brar, Loic Pallardy

[-- Attachment #1: Type: text/plain, Size: 582 bytes --]

Hi,

On Wed, Jun 12, 2013 at 04:58:26PM -0500, Suman Anna wrote:
> The following changes since commit 317ddd256b9c24b0d78fa8018f80f1e495481a10:
> 
>   Linux 3.10-rc5 (2013-06-08 17:41:04 -0700)
> 
> are available in the git repository at:
> 
>   git@github.com:sumananna/mailbox.git tags/omap-mailbox-for-v3.11

Tony might not have an ssh account on github, when sending pull requests
make sure to use the git read-only URL.

We even have separate url and pushurl attributes for the repository.
Should be enough to just edit .git/config and fix it up.

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [GIT PULL] move omap mailbox to drivers for v3.11
  2013-06-13  1:37 ` Felipe Balbi
@ 2013-06-13 14:58   ` Suman Anna
  2013-06-17 10:52     ` Tony Lindgren
  0 siblings, 1 reply; 4+ messages in thread
From: Suman Anna @ 2013-06-13 14:58 UTC (permalink / raw)
  To: balbi
  Cc: Tony Lindgren, linux-omap, linux-arm-kernel, Ohad Ben-Cohen,
	Greg Kroah-Hartman, Jassi Brar, Loic Pallardy

On 06/12/2013 08:37 PM, Felipe Balbi wrote:
> Hi,
> 
> On Wed, Jun 12, 2013 at 04:58:26PM -0500, Suman Anna wrote:
>> The following changes since commit 317ddd256b9c24b0d78fa8018f80f1e495481a10:
>>
>>   Linux 3.10-rc5 (2013-06-08 17:41:04 -0700)
>>
>> are available in the git repository at:
>>
>>   git@github.com:sumananna/mailbox.git tags/omap-mailbox-for-v3.11
> 
> Tony might not have an ssh account on github, when sending pull requests
> make sure to use the git read-only URL.

Thanks for the tip, Felipe.

Tony,
please use
git://github.com/sumananna/mailbox.git tags/omap-mailbox-for-v3.11

regards
Suman

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

* Re: [GIT PULL] move omap mailbox to drivers for v3.11
  2013-06-13 14:58   ` Suman Anna
@ 2013-06-17 10:52     ` Tony Lindgren
  0 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2013-06-17 10:52 UTC (permalink / raw)
  To: Suman Anna
  Cc: balbi, linux-omap, linux-arm-kernel, Ohad Ben-Cohen,
	Greg Kroah-Hartman, Jassi Brar, Loic Pallardy

* Suman Anna <s-anna@ti.com> [130613 08:09]:
> On 06/12/2013 08:37 PM, Felipe Balbi wrote:
> > Hi,
> > 
> > On Wed, Jun 12, 2013 at 04:58:26PM -0500, Suman Anna wrote:
> >> The following changes since commit 317ddd256b9c24b0d78fa8018f80f1e495481a10:
> >>
> >>   Linux 3.10-rc5 (2013-06-08 17:41:04 -0700)
> >>
> >> are available in the git repository at:
> >>
> >>   git@github.com:sumananna/mailbox.git tags/omap-mailbox-for-v3.11
> > 
> > Tony might not have an ssh account on github, when sending pull requests
> > make sure to use the git read-only URL.
> 
> Thanks for the tip, Felipe.
> 
> Tony,
> please use
> git://github.com/sumananna/mailbox.git tags/omap-mailbox-for-v3.11

Thanks, pulling into omap-for-v3.11/mailbox.

Regards,

Tony

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

end of thread, other threads:[~2013-06-17 10:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-12 21:58 [GIT PULL] move omap mailbox to drivers for v3.11 Suman Anna
2013-06-13  1:37 ` Felipe Balbi
2013-06-13 14:58   ` Suman Anna
2013-06-17 10:52     ` Tony Lindgren

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).