diff options
Diffstat (limited to 'arch/arm/mach-imx/iram_alloc.c')
-rw-r--r-- | arch/arm/mach-imx/iram_alloc.c | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/iram_alloc.c b/arch/arm/mach-imx/iram_alloc.c new file mode 100644 index 000000000000..6c80424f678e --- /dev/null +++ b/arch/arm/mach-imx/iram_alloc.c | |||
@@ -0,0 +1,74 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2010 Freescale Semiconductor, Inc. All Rights Reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation; either version 2 | ||
7 | * of the License, or (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
17 | * MA 02110-1301, USA. | ||
18 | */ | ||
19 | |||
20 | #include <linux/kernel.h> | ||
21 | #include <linux/io.h> | ||
22 | #include <linux/module.h> | ||
23 | #include <linux/spinlock.h> | ||
24 | #include <linux/genalloc.h> | ||
25 | |||
26 | #include "iram.h" | ||
27 | |||
28 | static unsigned long iram_phys_base; | ||
29 | static void __iomem *iram_virt_base; | ||
30 | static struct gen_pool *iram_pool; | ||
31 | |||
32 | static inline void __iomem *iram_phys_to_virt(unsigned long p) | ||
33 | { | ||
34 | return iram_virt_base + (p - iram_phys_base); | ||
35 | } | ||
36 | |||
37 | void __iomem *iram_alloc(unsigned int size, unsigned long *dma_addr) | ||
38 | { | ||
39 | if (!iram_pool) | ||
40 | return NULL; | ||
41 | |||
42 | *dma_addr = gen_pool_alloc(iram_pool, size); | ||
43 | pr_debug("iram alloc - %dB@0x%lX\n", size, *dma_addr); | ||
44 | if (!*dma_addr) | ||
45 | return NULL; | ||
46 | return iram_phys_to_virt(*dma_addr); | ||
47 | } | ||
48 | EXPORT_SYMBOL(iram_alloc); | ||
49 | |||
50 | void iram_free(unsigned long addr, unsigned int size) | ||
51 | { | ||
52 | if (!iram_pool) | ||
53 | return; | ||
54 | |||
55 | gen_pool_free(iram_pool, addr, size); | ||
56 | } | ||
57 | EXPORT_SYMBOL(iram_free); | ||
58 | |||
59 | int __init iram_init(unsigned long base, unsigned long size) | ||
60 | { | ||
61 | iram_phys_base = base; | ||
62 | |||
63 | iram_pool = gen_pool_create(PAGE_SHIFT, -1); | ||
64 | if (!iram_pool) | ||
65 | return -ENOMEM; | ||
66 | |||
67 | gen_pool_add(iram_pool, base, size, -1); | ||
68 | iram_virt_base = ioremap(iram_phys_base, size); | ||
69 | if (!iram_virt_base) | ||
70 | return -EIO; | ||
71 | |||
72 | pr_debug("i.MX IRAM pool: %ld KB@0x%p\n", size / 1024, iram_virt_base); | ||
73 | return 0; | ||
74 | } | ||