linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: linux@arm.linux.org.uk (Russell King - ARM Linux)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/3] Add OMAP hardware spinlock misc driver
Date: Wed, 20 Oct 2010 10:53:03 +0100	[thread overview]
Message-ID: <20101020095303.GA21242@n2100.arm.linux.org.uk> (raw)
In-Reply-To: <1287531090.9245.139.camel@c-dwalke-linux.qualcomm.com>

On Tue, Oct 19, 2010 at 04:31:30PM -0700, Daniel Walker wrote:
> On Mon, 2010-10-18 at 09:44 +0200, Ohad Ben-Cohen wrote:
> > OMAP4 introduces a Spinlock hardware module, which provides hardware
> > assistance for synchronization and mutual exclusion between heterogeneous
> > processors and those not operating under a single, shared operating system
> > (e.g. OMAP4 has dual Cortex-A9, dual Cortex-M3 and a C64x+ DSP).
> > 
> > The intention of this hardware module is to allow remote processors,
> > that have no alternative mechanism to accomplish synchronization and mutual
> > exclusion operations, to share resources (such as memory and/or any other
> > hardware resource).
> > 
> > This patchset adds a new misc driver for this OMAP hwspinlock module.
> 
> Does this code interface with some hardware unit (other than the other
> processors) to accomplish this locking ?
> 
> The reason I ask is because MSM has similar code, and from what I can
> tell the MSM version has some structures in memory but that's all. It
> just operates on the structures in memory.
> 
> It might be worth looking over the two implementation so we aren't both
> remaking the wheel.

Ohad's message to which you replied had:

To: linux-omap at vger.kernel.org, linux-kernel at vger.kernel.org,
        linux-arm-kernel at lists.infradead.org
Cc: Ohad Ben-Cohen <ohad@wizery.com>, Hari Kanigeri <h-kanigeri2@ti.com>,
        Benoit Cousson <b-cousson@ti.com>, Tony Lindgren <tony@atomide.com>,
        Greg KH <greg@kroah.com>, Grant Likely <grant.likely@secretlab.ca>,
        akpm at linux-foundation.org, Suman Anna <s-anna@ti.com>

Yours has:

To: Ohad Ben-Cohen <ohad@wizery.com>
Cc: Hari Kanigeri <h-kanigeri2@ti.com>, Benoit Cousson <b-cousson@ti.com>,
        Tony Lindgren <tony@atomide.com>, Greg KH <greg@kroah.com>,
        linux-kernel at vger.kernel.org,
        Grant Likely <grant.likely@secretlab.ca>, mattw at codeaurora.org,
        akpm at linux-foundation.org, Suman Anna <s-anna@ti.com>,
        mattw at codeaurora.orgmattw, linux-arm-kernel at lists.infradead.org

which includes an invalid address "mattw at codeaurora.orgmattw".  Is there
a reason why you're excluding the linux-omap list from your message and
subsequent discussion?

  parent reply	other threads:[~2010-10-20  9:53 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-18  7:44 [PATCH 0/3] Add OMAP hardware spinlock misc driver Ohad Ben-Cohen
2010-10-18  7:44 ` [PATCH 1/3] drivers: misc: add omap_hwspinlock driver Ohad Ben-Cohen
2010-10-19 15:46   ` Greg KH
2010-10-19 20:18     ` Ohad Ben-Cohen
2010-10-19 16:58   ` Kevin Hilman
2010-10-19 20:21     ` Ohad Ben-Cohen
2010-10-19 17:01   ` Grant Likely
2010-10-19 20:43     ` Ohad Ben-Cohen
2010-10-19 20:58       ` Arnd Bergmann
2010-10-19 21:57         ` Ohad Ben-Cohen
2010-10-19 17:16   ` Kevin Hilman
2010-10-20 13:00     ` Ohad Ben-Cohen
2010-10-20 18:18       ` Kevin Hilman
2010-10-19 17:21   ` Arnd Bergmann
2010-10-19 20:51     ` Ohad Ben-Cohen
2010-10-19 21:08       ` Arnd Bergmann
2010-10-20 22:43         ` Ohad Ben-Cohen
2010-10-21  9:04           ` Arnd Bergmann
2010-10-21 10:13             ` Ohad Ben-Cohen
2010-10-21 12:02               ` Arnd Bergmann
2010-10-22 17:00   ` Tony Lindgren
2010-10-18  7:44 ` [PATCH 2/3] OMAP4: hwmod data: Add hwspinlock Ohad Ben-Cohen
2010-10-18  7:44 ` [PATCH 3/3] omap: add hwspinlock device Ohad Ben-Cohen
2010-10-19 17:03   ` Kevin Hilman
2010-10-19 17:05     ` Grant Likely
2010-10-19 21:02     ` Ohad Ben-Cohen
2010-10-19 23:12       ` Grant Likely
2010-10-20 14:09         ` Ohad Ben-Cohen
2010-10-20 15:51           ` Grant Likely
2010-10-19 23:53       ` Kevin Hilman
2010-10-20  1:20         ` Ryan Mallon
2010-10-20 14:38         ` Ohad Ben-Cohen
2010-10-20 15:55           ` Grant Likely
2010-10-20 18:37           ` Kevin Hilman
2010-10-20 19:21             ` Ohad Ben-Cohen
2010-10-20 23:58               ` Kevin Hilman
2010-10-21  6:11                 ` Ohad Ben-Cohen
2010-10-21  8:36               ` Kamoolkar, Mugdha
2010-10-21  9:06                 ` Ohad Ben-Cohen
2010-10-22  9:59                   ` Kamoolkar, Mugdha
2010-10-22 11:16                     ` Ohad Ben-Cohen
2010-10-21 12:26                 ` Kanigeri, Hari
2010-10-22 10:14                   ` Kamoolkar, Mugdha
2010-10-22 16:56               ` Tony Lindgren
2010-10-22 17:03                 ` Grant Likely
2010-10-22 17:28                   ` Tony Lindgren
2010-10-24 17:54                 ` Ohad Ben-Cohen
2010-10-25 19:02                   ` Tony Lindgren
2010-10-26 11:54                     ` Ohad Ben-Cohen
2010-10-26 19:06                       ` Tony Lindgren
2010-10-18 12:46 ` [PATCH 0/3] Add OMAP hardware spinlock misc driver Peter Zijlstra
2010-10-18 13:35   ` Russell King - ARM Linux
2010-10-18 13:43     ` Peter Zijlstra
2010-10-18 14:28       ` Ohad Ben-Cohen
2010-10-18 14:33         ` Peter Zijlstra
2010-10-18 14:39           ` Ohad Ben-Cohen
2010-10-18 15:27       ` Catalin Marinas
2010-10-18 15:32         ` Peter Zijlstra
2010-10-18 15:35           ` Ohad Ben-Cohen
2010-10-18 15:48             ` Peter Zijlstra
2010-10-18 15:51           ` Catalin Marinas
2010-10-18 15:58             ` Peter Zijlstra
2010-10-19 23:31 ` Daniel Walker
2010-10-20  6:13   ` Ohad Ben-Cohen
2010-10-20 10:00     ` Ohad Ben-Cohen
2010-10-20 22:29       ` Bryan Huntsman
2010-10-20  9:53   ` Russell King - ARM Linux [this message]
2010-10-20 22:15     ` Daniel Walker

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=20101020095303.GA21242@n2100.arm.linux.org.uk \
    --to=linux@arm.linux.org.uk \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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 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).