All of lore.kernel.org
 help / color / mirror / Atom feed
From: Russell King <rmk+lkml@arm.linux.org.uk>
To: Linus Torvalds <torvalds@osdl.org>
Cc: Jeff Garzik <jgarzik@pobox.com>,
	David Woodhouse <dwmw2@infradead.org>,
	Christoph Hellwig <hch@infradead.org>,
	William Lee Irwin III <wli@holomorphy.com>,
	Andrew Morton <akpm@osdl.org>, Andrea Arcangeli <andrea@suse.de>,
	linux-kernel@vger.kernel.org
Subject: Re: can device drivers return non-ram via vm_ops->nopage?
Date: Sun, 21 Mar 2004 23:45:15 +0000	[thread overview]
Message-ID: <20040321234515.G26708@flint.arm.linux.org.uk> (raw)
In-Reply-To: <Pine.LNX.4.58.0403211504550.1106@ppc970.osdl.org>; from torvalds@osdl.org on Sun, Mar 21, 2004 at 03:11:58PM -0800

On Sun, Mar 21, 2004 at 03:11:58PM -0800, Linus Torvalds wrote:
> On Sun, 21 Mar 2004, Russell King wrote:
> > Remember that we're fond of telling driver writers to use scatter gather
> > lists rather than grabbing one large contiguous memory chunk...  So
> > they did exactly as we told them.  Using pci_alloc_consistent and/or
> > dma_alloc_coherent and built their own scatter lists.
> 
> I do think that we should introduce a "map_dma_coherent()" thing, which 
> basically takes a list of pages that have been allocated by 
> dma_alloc_coherent(), and remaps them into user space. How hard can that 
> be?
> 
> In fact, on a lot of architectures (well, at least x86, and likely
> anything else that doesn't use any IOTLB and just allocates a chunk of
> physical memory), I think the "map_dma_coherent()" thing should basically
> just become a "remap_page_range()". Ie something like
> 
> 	#define map_dma_coherent(vma, vaddr, len) \
> 		remap_page_range(vma, vma->vm_start, __pa(vaddr), len, vma->vm_page_prot)
> 
> for the simple case.

Ok, splitting hairs, for the coherent contiguous case, what about:

int dma_coherent_map(struct vm_area_struct *vma, void *cpu_addr,
		     dma_addr_t dma_addr, size_t size);

and x86 would be:

#define dma_coherent_map(vma,cpu_addr,dma_addr,size)	\
	remap_page_range(vma, vma->vm_start, __pa(cpu_addr), \
			 size, vma->vm_page_prot)

This then leaves the PCI BAR case and the DMA coherent SG buffer case,
though neither of those fall within my personal problem space at present.

-- 
Russell King
 Linux kernel    2.6 ARM Linux   - http://www.arm.linux.org.uk/
 maintainer of:  2.6 PCMCIA      - http://pcmcia.arm.linux.org.uk/
                 2.6 Serial core

  parent reply	other threads:[~2004-03-21 23:45 UTC|newest]

Thread overview: 105+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-03-20 13:30 can device drivers return non-ram via vm_ops->nopage? Andrea Arcangeli
2004-03-20 14:40 ` William Lee Irwin III
2004-03-20 15:06   ` Andrea Arcangeli
2004-03-20 15:27     ` William Lee Irwin III
2004-03-20 15:44     ` Russell King
2004-03-20 15:57       ` Andrea Arcangeli
2004-03-20 16:15         ` Russell King
2004-03-20 16:25           ` Andrea Arcangeli
2004-03-20 16:57             ` William Lee Irwin III
2004-03-20 17:48             ` Andrea Arcangeli
2004-03-20 19:03               ` Andrea Arcangeli
2004-03-20 15:58       ` Jaroslav Kysela
2004-03-20 16:09         ` Russell King
2004-03-20 19:44           ` Jaroslav Kysela
2004-03-20 22:23             ` Russell King
2004-03-20 22:45               ` William Lee Irwin III
2004-03-20 23:54                 ` Russell King
2004-03-21  0:22                   ` Zwane Mwaikambo
2004-03-22  4:46                     ` Benjamin Herrenschmidt
2004-03-22 18:23                       ` Richard Curnow
2004-03-21  0:23                   ` William Lee Irwin III
2004-03-21  9:52                   ` Arjan van de Ven
2004-03-21 10:39                   ` Jaroslav Kysela
2004-03-22  4:43             ` Benjamin Herrenschmidt
2004-03-20 20:13     ` Andrew Morton
2004-03-20 20:28       ` Andrea Arcangeli
2004-03-20 20:50       ` William Lee Irwin III
2004-03-20 22:26         ` Russell King
2004-03-20 22:45           ` William Lee Irwin III
2004-03-21 20:45             ` David Woodhouse
2004-03-21 20:49               ` Christoph Hellwig
2004-03-21 20:57                 ` David Woodhouse
2004-03-21 21:53                   ` Linus Torvalds
2004-03-21 22:17                     ` Jeff Garzik
2004-03-21 22:23                     ` David Woodhouse
2004-03-21 22:23                     ` Russell King
2004-03-21 22:34                       ` Jeff Garzik
2004-03-21 22:42                         ` David Woodhouse
2004-03-21 23:06                           ` Jeff Garzik
2004-03-21 22:51                         ` Russell King
2004-03-21 23:09                           ` Jeff Garzik
2004-03-21 23:11                           ` Linus Torvalds
2004-03-21 23:22                             ` Jeff Garzik
2004-03-21 23:51                               ` Linus Torvalds
2004-03-21 23:58                                 ` Russell King
2004-03-22  0:34                                   ` Andrea Arcangeli
2004-03-22  3:05                                     ` Linus Torvalds
2004-03-23 17:59                                   ` Andy Whitcroft
2004-03-23 17:58                                     ` David Woodhouse
2004-03-23 18:11                                     ` William Lee Irwin III
2004-03-22  0:02                                 ` David Woodhouse
2004-03-22  3:28                                   ` Linus Torvalds
2004-03-22  0:10                                 ` Jeff Garzik
2004-03-22  0:20                                   ` Russell King
2004-03-22  0:33                                     ` Jeff Garzik
2004-03-22  4:57                                     ` Benjamin Herrenschmidt
2004-03-21 23:45                             ` Russell King [this message]
2004-03-22  0:23                               ` William Lee Irwin III
2004-03-22  0:29                                 ` Jeff Garzik
2004-03-22  1:28                                   ` William Lee Irwin III
2004-03-22  3:45                                   ` William Lee Irwin III
2004-03-22  4:41                                     ` James Bottomley
2004-03-22  4:46                                       ` William Lee Irwin III
2004-03-22  4:56                                         ` James Bottomley
2004-03-22  5:26                                           ` Benjamin Herrenschmidt
2004-03-22 11:58                                             ` Andrea Arcangeli
2004-03-22 12:05                                               ` Russell King
2004-03-22 12:34                                                 ` Andrea Arcangeli
2004-03-22  9:30                                       ` Russell King
2004-03-22 15:04                                         ` James Bottomley
2004-03-22 15:15                                           ` Russell King
2004-03-22 15:27                                             ` James Bottomley
2004-03-22 21:50                                               ` Benjamin Herrenschmidt
2004-03-22 22:18                                                 ` Jeff Garzik
2004-03-22 22:35                                                   ` William Lee Irwin III
2004-03-22 23:57                                                     ` Benjamin Herrenschmidt
2004-03-23  0:22                                                       ` David Woodhouse
2004-03-23  2:07                                                       ` William Lee Irwin III
2004-03-23  9:28                                                         ` Russell King
2004-03-23  9:34                                                           ` David Woodhouse
2004-03-23 10:04                                                             ` Russell King
2004-03-23 10:05                                                               ` William Lee Irwin III
2004-03-23 11:29                                                               ` Benjamin Herrenschmidt
2004-03-23 11:35                                                         ` Andrea Arcangeli
2004-03-23 11:44                                                           ` William Lee Irwin III
2004-03-23 12:34                                                             ` Andrea Arcangeli
2004-03-23 12:40                                                               ` Russell King
2004-03-23 15:25                                                                 ` Linus Torvalds
2004-03-23 15:36                                                                   ` Andrea Arcangeli
2004-03-23 15:46                                                                     ` Linus Torvalds
2004-03-23 15:50                                                                     ` Russell King
2004-03-23 22:10                                                                     ` Benjamin Herrenschmidt
2004-03-25 20:25                                                                 ` Russell King
2004-03-28 10:17                                                                   ` Russell King
2004-03-23 12:49                                                               ` William Lee Irwin III
2004-03-22 23:19                                                   ` Russell King
2004-03-22 23:35                                                     ` Jeff Garzik
2004-03-23  2:26                                                       ` James Bottomley
2004-03-22  6:36           ` William Lee Irwin III
2004-03-20 17:39 ` Linus Torvalds
2004-03-20 17:56   ` Andrea Arcangeli
2004-03-20 18:22   ` William Lee Irwin III
2004-03-21  3:13   ` Chris Wedgwood
2004-03-21  6:23     ` Christoph Hellwig
2004-03-21  7:00       ` Chris Wedgwood

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=20040321234515.G26708@flint.arm.linux.org.uk \
    --to=rmk+lkml@arm.linux.org.uk \
    --cc=akpm@osdl.org \
    --cc=andrea@suse.de \
    --cc=dwmw2@infradead.org \
    --cc=hch@infradead.org \
    --cc=jgarzik@pobox.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@osdl.org \
    --cc=wli@holomorphy.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.