2 * mach-davinci/sram.c - DaVinci simple SRAM allocator
4 * Copyright (C) 2009 David Brownell
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 #include <linux/module.h>
12 #include <linux/init.h>
14 #include <linux/genalloc.h>
16 #include <mach/common.h>
19 static struct gen_pool
*sram_pool
;
21 struct gen_pool
*sram_get_gen_pool(void)
26 void *sram_alloc(size_t len
, dma_addr_t
*dma
)
28 dma_addr_t dma_base
= davinci_soc_info
.sram_dma
;
32 if (!sram_pool
|| (dma
&& !dma_base
))
35 return gen_pool_dma_alloc(sram_pool
, len
, dma
);
38 EXPORT_SYMBOL(sram_alloc
);
40 void sram_free(void *addr
, size_t len
)
42 gen_pool_free(sram_pool
, (unsigned long) addr
, len
);
44 EXPORT_SYMBOL(sram_free
);
48 * REVISIT This supports CPU and DMA access to/from SRAM, but it
49 * doesn't (yet?) support some other notable uses of SRAM: as TCM
50 * for data and/or instructions; and holding code needed to enter
51 * and exit suspend states (while DRAM can't be used).
53 static int __init
sram_init(void)
55 phys_addr_t phys
= davinci_soc_info
.sram_dma
;
56 unsigned len
= davinci_soc_info
.sram_len
;
61 len
= min_t(unsigned, len
, SRAM_SIZE
);
62 sram_pool
= gen_pool_create(ilog2(SRAM_GRANULARITY
), -1);
68 addr
= ioremap(phys
, len
);
71 status
= gen_pool_add_virt(sram_pool
, (unsigned long) addr
,
80 core_initcall(sram_init
);