All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ira Snyder <iws@ovro.caltech.edu>
To: Arnd Bergmann <arnd@arndb.de>
Cc: Jan-Bernd Themann <themann@de.ibm.com>,
	netdev@vger.kernel.org, Rusty Russell <rusty@rustcorp.com.au>,
	linux-kernel@vger.kernel.org, linuxppc-dev@ozlabs.org,
	shemminger@vyatta.com, David Miller <davem@davemloft.net>
Subject: Re: [PATCH RFC v5] net: add PCINet driver
Date: Thu, 15 Jan 2009 15:31:31 -0800	[thread overview]
Message-ID: <20090115233131.GE9091@ovro.caltech.edu> (raw)
In-Reply-To: <200901152353.25052.arnd@arndb.de>

On Thu, Jan 15, 2009 at 11:53:24PM +0100, Arnd Bergmann wrote:
> On Thursday 15 January 2009, Ira Snyder wrote:
> > I do have mailboxes (two inbound, two outbound) which can generate
> > interrupts, as well as doorbell registers (one inbound, one outbound).
> > The doorbell register's bits are "write 1 to clear", and can only be
> > cleared by the opposite side.
> > 
> 
> Ok, in this case, you should be able to use one of these to implement
> the DMA complete interrupt, but adding an extra DMA transfer to the
> mailbox after each transfer that you want to get notified for.

Yep. I wouldn't have come up with that idea on my own, but it seems
obvious now :)

It seems a little strange to keep the DMA descriptors host memory (the
DMA controller will need to issue a PCI read to get them) but I guess
that is how real network cards work.

Thanks,
Ira

WARNING: multiple messages have this Message-ID (diff)
From: Ira Snyder <iws@ovro.caltech.edu>
To: Arnd Bergmann <arnd@arndb.de>
Cc: linuxppc-dev@ozlabs.org, Jan-Bernd Themann <themann@de.ibm.com>,
	netdev@vger.kernel.org, Rusty Russell <rusty@rustcorp.com.au>,
	linux-kernel@vger.kernel.org, shemminger@vyatta.com,
	David Miller <davem@davemloft.net>
Subject: Re: [PATCH RFC v5] net: add PCINet driver
Date: Thu, 15 Jan 2009 15:31:31 -0800	[thread overview]
Message-ID: <20090115233131.GE9091@ovro.caltech.edu> (raw)
In-Reply-To: <200901152353.25052.arnd@arndb.de>

On Thu, Jan 15, 2009 at 11:53:24PM +0100, Arnd Bergmann wrote:
> On Thursday 15 January 2009, Ira Snyder wrote:
> > I do have mailboxes (two inbound, two outbound) which can generate
> > interrupts, as well as doorbell registers (one inbound, one outbound).
> > The doorbell register's bits are "write 1 to clear", and can only be
> > cleared by the opposite side.
> > 
> 
> Ok, in this case, you should be able to use one of these to implement
> the DMA complete interrupt, but adding an extra DMA transfer to the
> mailbox after each transfer that you want to get notified for.

Yep. I wouldn't have come up with that idea on my own, but it seems
obvious now :)

It seems a little strange to keep the DMA descriptors host memory (the
DMA controller will need to issue a PCI read to get them) but I guess
that is how real network cards work.

Thanks,
Ira

  reply	other threads:[~2009-01-15 23:31 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-07 19:50 [PATCH RFC v5] net: add PCINet driver Ira Snyder
2009-01-07 19:50 ` Ira Snyder
2009-01-08 19:16 ` David Miller
2009-01-08 19:16 ` David Miller
2009-01-08 19:16   ` David Miller
2009-01-08 19:27   ` Ira Snyder
2009-01-08 19:27     ` Ira Snyder
2009-01-08 21:51     ` Ira Snyder
2009-01-10 23:32       ` Benjamin Herrenschmidt
2009-01-10 23:32         ` Benjamin Herrenschmidt
2009-01-12 17:56         ` Arnd Bergmann
2009-01-12 17:56           ` Arnd Bergmann
2009-01-13  2:32       ` Rusty Russell
2009-01-13  2:32         ` Rusty Russell
2009-01-13  3:34         ` Ira Snyder
2009-01-13  3:34           ` Ira Snyder
2009-01-13 16:33           ` Arnd Bergmann
2009-01-13 16:33             ` Arnd Bergmann
2009-01-13 16:40             ` Ira Snyder
2009-01-13 16:40               ` Ira Snyder
2009-01-13 17:42               ` Arnd Bergmann
2009-01-13 17:42                 ` Arnd Bergmann
2009-01-15  0:12                 ` Ira Snyder
2009-01-15  0:12                   ` Ira Snyder
2009-01-15 12:58                   ` Arnd Bergmann
2009-01-15 12:58                     ` Arnd Bergmann
2009-01-15 16:54                     ` Ira Snyder
2009-01-15 16:54                       ` Ira Snyder
2009-01-15 17:53                       ` Arnd Bergmann
2009-01-15 17:53                         ` Arnd Bergmann
2009-01-15 18:20                         ` Ira Snyder
2009-01-15 18:20                           ` Ira Snyder
2009-01-15 20:57                           ` Arnd Bergmann
2009-01-15 23:27                             ` Ira Snyder
2009-01-15 23:27                               ` Ira Snyder
2009-01-15 19:21                         ` Ira Snyder
2009-01-15 19:21                           ` Ira Snyder
2009-01-15 21:22                           ` Arnd Bergmann
2009-01-15 21:22                             ` Arnd Bergmann
2009-01-15 21:40                             ` Ira Snyder
2009-01-15 21:40                               ` Ira Snyder
2009-01-15 22:53                               ` Arnd Bergmann
2009-01-15 22:53                                 ` Arnd Bergmann
2009-01-15 23:31                                 ` Ira Snyder [this message]
2009-01-15 23:31                                   ` Ira Snyder
2009-01-16  9:15                               ` Jan-Bernd Themann
2009-01-16  9:15                               ` Jan-Bernd Themann
2009-01-08 19:16 ` David Miller
2009-01-08 19:16 ` David Miller
  -- strict thread matches above, loose matches on Subject: below --
2009-01-07 19:50 Ira Snyder
2009-01-07 19:50 Ira Snyder
2009-01-07 19:50 Ira Snyder

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=20090115233131.GE9091@ovro.caltech.edu \
    --to=iws@ovro.caltech.edu \
    --cc=arnd@arndb.de \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=netdev@vger.kernel.org \
    --cc=rusty@rustcorp.com.au \
    --cc=shemminger@vyatta.com \
    --cc=themann@de.ibm.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.