From: "Michał Nazarewicz" <m.nazarewicz@samsung.com>
To: Hans Verkuil <hverkuil@xs4all.nl>
Cc: linux-mm@kvack.org, Daniel Walker <dwalker@codeaurora.org>,
FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>,
Jonathan Corbet <corbet@lwn.net>,
Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
Kyungmin Park <kyungmin.park@samsung.com>,
Marek Szyprowski <m.szyprowski@samsung.com>,
Mark Brown <broonie@opensource.wolfsonmicro.com>,
Pawel Osciak <p.osciak@samsung.com>,
Russell King <linux@arm.linux.org.uk>,
Zach Pfeffer <zpfeffer@codeaurora.org>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-media@vger.kernel.org,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH/RFCv4 2/6] mm: cma: Contiguous Memory Allocator added
Date: Sun, 29 Aug 2010 03:48:16 +0200 [thread overview]
Message-ID: <op.vh6faqnl7p4s8u@localhost> (raw)
In-Reply-To: <201008281437.11830.hverkuil@xs4all.nl>
> On Friday, August 20, 2010 11:50:42 Michal Nazarewicz wrote:
>> +**** Regions
>> +
>> + Regions is a list of regions terminated by a region with size
>> + equal zero. The following fields may be set:
>> +
>> + - size -- size of the region (required, must not be zero)
>> + - alignment -- alignment of the region; must be power of two or
>> + zero (optional)
On Sat, 28 Aug 2010 14:37:11 +0200, Hans Verkuil <hverkuil@xs4all.nl> wrote:
> Just wondering: is alignment really needed since we already align to the
> PAGE_SIZE? Do you know of hardware with alignment requirements > PAGE_SIZE?
Our video coder needs its firmware aligned to 128K plus it has to be located
before any other buffers allocated for the chip. Because of those, we have
defined a separate region just for the coder's firmware which is small (256K
IIRC) and aligned to 128K.
>> + - start -- where the region has to start (optional)
>> + - alloc_name -- the name of allocator to use (optional)
>> + - alloc -- allocator to use (optional; and besides
>> + alloc_name is probably is what you want)
> I would make this field internal only. At least for now.
OK.
>> +*** The device and types of memory
>> +
>> + The name of the device is taken from the device structure. It is
>> + not possible to use CMA if driver does not register a device
>> + (actually this can be overcome if a fake device structure is
>> + provided with at least the name set).
>> +
>> + The type of memory is an optional argument provided by the device
>> + whenever it requests memory chunk. In many cases this can be
>> + ignored but sometimes it may be required for some devices.
>
> This really should not be optional but compulsory. 'type' has the same function
> as the GFP flags with kmalloc. They tell the kernel where the memory should be
> allocated. Only if you do not care at all can you pass in NULL. But in almost
> all cases the memory should be at least DMA-able (and yes, for a lot of SoCs that
> is the same as any memory -- for now).
At this moment, if type is NULL "common" is assumed.
> Memory types should be defined in the platform code. Some can be generic
> like 'dma' (i.e. any DMAable memory), 'dma32' (32-bit DMA) and 'common' (any
> memory). Others are platform specific like 'banka' and 'bankb'.
Yes, that's the idea.
> A memory type definition can either be a start address/size pair but it can
> perhaps also be a GFP type (e.g. .name = "dma32", .gfp = GFP_DMA32).
>
> Regions should be of a single memory type. So when you define the region it
> should have a memory type field.
>
> Drivers request memory of whatever type they require. The mapping just maps
> one or more regions to the driver and the cma allocator will pick only those
> regions with the required type and ignore those that do not match.
>
>> + For instance, let's say that there are two memory banks and for
>> + performance reasons a device uses buffers in both of them.
>> + Platform defines a memory types "a" and "b" for regions in both
>> + banks. The device driver would use those two types then to
>> + request memory chunks from different banks. CMA attributes could
>> + look as follows:
>> +
>> + static struct cma_region regions[] = {
>> + { .name = "a", .size = 32 << 20 },
>> + { .name = "b", .size = 32 << 20, .start = 512 << 20 },
>> + { }
>> + }
>> + static const char map[] __initconst = "foo/a=a;foo/b=b;*=a,b";
>
> So this would become something like this:
>
> static struct cma_memtype types[] = {
> { .name = "a", .size = 32 << 20 },
> { .name = "b", .size = 32 << 20, .start = 512 << 20 },
> // For example:
> { .name = "dma", .gfp = GFP_DMA },
> { }
> }
> static struct cma_region regions[] = {
> // size may of course be smaller than the memtype size.
> { .name = "a", type = "a", .size = 32 << 20 },
> { .name = "b", type = "b", .size = 32 << 20 },
> { }
> }
> static const char map[] __initconst = "*=a,b";
>
> No need to do anything special for driver foo here: cma_alloc will pick the
> correct region based on the memory type requested by the driver.
>
> It is probably no longer needed to specify the memory type in the mapping when
> this is in place.
I'm not entirely happy with such scheme.
For one, types may overlap: ie. the whole "banka" may be "dma" as well.
This means that a single region could be of several different types.
Moreover, as I've mentioned the video coder needs to allocate buffers from
different banks. However, on never platform there's only one bank (actually
two but they are interlaced) so allocations from different banks no longer
make sense. Instead of changing the driver though I'd prefer to only change
the mapping in the platform.
--
Best regards, _ _
| Humble Liege of Serenely Enlightened Majesty of o' \,=./ `o
| Computer Science, Michał "mina86" Nazarewicz (o o)
+----[mina86*mina86.com]---[mina86*jabber.org]----ooO--(_)--Ooo--
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2010-08-29 1:49 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-20 9:50 [PATCH/RFCv4 0/6] The Contiguous Memory Allocator framework Michal Nazarewicz
2010-08-20 9:50 ` [PATCH/RFCv4 1/6] lib: rbtree: rb_root_init() function added Michal Nazarewicz
2010-08-20 9:50 ` [PATCH/RFCv4 2/6] mm: cma: Contiguous Memory Allocator added Michal Nazarewicz
2010-08-20 9:50 ` [PATCH/RFCv4 3/6] mm: cma: Added SysFS support Michal Nazarewicz
2010-08-20 9:50 ` [PATCH/RFCv4 4/6] mm: cma: Added command line parameters support Michal Nazarewicz
2010-08-20 9:50 ` [PATCH/RFCv4 5/6] mm: cma: Test device and application added Michal Nazarewicz
2010-08-20 9:50 ` [PATCH/RFCv4 6/6] arm: Added CMA to Aquila and Goni Michal Nazarewicz
2010-08-25 20:37 ` [PATCH/RFCv4 3/6] mm: cma: Added SysFS support Konrad Rzeszutek Wilk
2010-08-26 1:20 ` Michał Nazarewicz
2010-08-25 20:32 ` [PATCH/RFCv4 2/6] mm: cma: Contiguous Memory Allocator added Konrad Rzeszutek Wilk
2010-08-26 1:22 ` Michał Nazarewicz
2010-08-26 6:25 ` [PATCH/RFCv4.1 " Michal Nazarewicz
2010-08-26 13:47 ` [PATCH/RFCv4 " Mel Gorman
2010-08-27 2:09 ` Michał Nazarewicz
2010-08-28 12:37 ` Hans Verkuil
2010-08-29 1:48 ` Michał Nazarewicz [this message]
2010-08-20 13:15 ` [PATCH/RFCv4 0/6] The Contiguous Memory Allocator framework Peter Zijlstra
2010-08-25 22:58 ` Andrew Morton
2010-08-25 23:26 ` Daniel Walker
2010-08-26 1:38 ` Michał Nazarewicz
2010-08-25 23:31 ` Jonathan Corbet
2010-08-26 1:38 ` Pawel Osciak
2010-08-26 1:49 ` Michał Nazarewicz
2010-08-26 2:49 ` Minchan Kim
2010-08-26 3:04 ` Minchan Kim
2010-08-26 8:20 ` Peter Zijlstra
2010-08-26 9:29 ` Minchan Kim
2010-08-26 10:06 ` Peter Zijlstra
2010-08-26 10:21 ` Minchan Kim
2010-08-26 11:05 ` Peter Zijlstra
2010-08-26 0:58 ` KAMEZAWA Hiroyuki
2010-08-26 2:12 ` Michał Nazarewicz
2010-08-26 2:50 ` KAMEZAWA Hiroyuki
2010-08-26 3:44 ` KAMEZAWA Hiroyuki
2010-08-26 4:01 ` Michał Nazarewicz
2010-08-26 4:39 ` KAMEZAWA Hiroyuki
2010-08-26 5:54 ` Américo Wang
2010-08-26 4:06 ` Minchan Kim
2010-08-26 4:14 ` Minchan Kim
2010-08-26 4:30 ` KAMEZAWA Hiroyuki
2010-08-26 9:36 ` Minchan Kim
2010-08-27 8:16 ` KAMEZAWA Hiroyuki
2010-08-27 8:37 ` Peter Zijlstra
2010-09-02 8:54 ` KAMEZAWA Hiroyuki
2010-09-03 10:29 ` KAMEZAWA Hiroyuki
2010-09-05 15:57 ` Minchan Kim
2010-09-06 0:08 ` KAMEZAWA Hiroyuki
2010-08-26 1:22 ` Pawel Osciak
2010-08-26 2:40 ` Michał Nazarewicz
2010-08-26 8:18 ` Peter Zijlstra
2010-08-26 10:18 ` Mel Gorman
2010-08-28 13:08 ` Hans Verkuil
2010-08-28 13:34 ` Peter Zijlstra
2010-08-28 13:58 ` Hans Verkuil
2010-08-28 14:16 ` Peter Zijlstra
2010-08-30 8:27 ` Clemens Ladisch
2010-08-26 1:28 ` Michał Nazarewicz
2010-08-26 8:17 ` Peter Zijlstra
2010-08-27 2:41 ` Michał Nazarewicz
2010-08-26 10:12 ` Mel Gorman
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=op.vh6faqnl7p4s8u@localhost \
--to=m.nazarewicz@samsung.com \
--cc=akpm@linux-foundation.org \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=corbet@lwn.net \
--cc=dwalker@codeaurora.org \
--cc=fujita.tomonori@lab.ntt.co.jp \
--cc=hverkuil@xs4all.nl \
--cc=konrad.wilk@oracle.com \
--cc=kyungmin.park@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux@arm.linux.org.uk \
--cc=m.szyprowski@samsung.com \
--cc=p.osciak@samsung.com \
--cc=zpfeffer@codeaurora.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).