1 // SPDX-License-Identifier: GPL-2.0-only
5 * Author: Scott Wood <scottwood@freescale.com>
7 * Copyright 2007-2008,2010 Freescale Semiconductor, Inc.
9 * Some parts derived from commproc.c/cpm2_common.c, which is:
10 * Copyright (c) 1997 Dan error_act (dmalek@jlc.net)
11 * Copyright (c) 1999-2001 Dan Malek <dan@embeddedalley.com>
12 * Copyright (c) 2000 MontaVista Software, Inc (source@mvista.com)
13 * 2006 (c) MontaVista Software, Inc.
14 * Vitaly Bordug <vbordug@ru.mvista.com>
16 #include <linux/genalloc.h>
17 #include <linux/init.h>
18 #include <linux/list.h>
19 #include <linux/of_device.h>
20 #include <linux/spinlock.h>
21 #include <linux/export.h>
23 #include <linux/of_address.h>
24 #include <linux/slab.h>
26 #include <soc/fsl/qe/qe.h>
28 static struct gen_pool
*muram_pool
;
29 static spinlock_t cpm_muram_lock
;
30 static u8 __iomem
*muram_vbase
;
31 static phys_addr_t muram_pbase
;
34 struct list_head head
;
39 static LIST_HEAD(muram_block_list
);
41 /* max address size we deal with */
42 #define OF_MAX_ADDR_CELLS 4
43 #define GENPOOL_OFFSET (4096 * 8)
45 int cpm_muram_init(void)
47 struct device_node
*np
;
49 __be32 zero
[OF_MAX_ADDR_CELLS
] = {};
50 resource_size_t max
= 0;
57 spin_lock_init(&cpm_muram_lock
);
58 np
= of_find_compatible_node(NULL
, NULL
, "fsl,cpm-muram-data");
60 /* try legacy bindings */
61 np
= of_find_node_by_name(NULL
, "data-only");
63 pr_err("Cannot find CPM muram data node");
69 muram_pool
= gen_pool_create(0, -1);
71 pr_err("Cannot allocate memory pool for CPM/QE muram");
75 muram_pbase
= of_translate_address(np
, zero
);
76 if (muram_pbase
== (phys_addr_t
)OF_BAD_ADDR
) {
77 pr_err("Cannot translate zero through CPM muram node");
82 while (of_address_to_resource(np
, i
++, &r
) == 0) {
85 ret
= gen_pool_add(muram_pool
, r
.start
- muram_pbase
+
86 GENPOOL_OFFSET
, resource_size(&r
), -1);
88 pr_err("QE: couldn't add muram to pool!\n");
93 muram_vbase
= ioremap(muram_pbase
, max
- muram_pbase
+ 1);
95 pr_err("Cannot map QE muram");
101 gen_pool_destroy(muram_pool
);
108 * cpm_muram_alloc_common - cpm_muram_alloc common code
109 * @size: number of bytes to allocate
110 * @algo: algorithm for alloc.
111 * @data: data for genalloc's algorithm.
113 * This function returns a non-negative offset into the muram area, or
114 * a negative errno on failure.
116 static s32
cpm_muram_alloc_common(unsigned long size
,
117 genpool_algo_t algo
, void *data
)
119 struct muram_block
*entry
;
122 entry
= kmalloc(sizeof(*entry
), GFP_ATOMIC
);
125 start
= gen_pool_alloc_algo(muram_pool
, size
, algo
, data
);
130 start
= start
- GENPOOL_OFFSET
;
131 memset_io(cpm_muram_addr(start
), 0, size
);
132 entry
->start
= start
;
134 list_add(&entry
->head
, &muram_block_list
);
140 * cpm_muram_alloc - allocate the requested size worth of multi-user ram
141 * @size: number of bytes to allocate
142 * @align: requested alignment, in bytes
144 * This function returns a non-negative offset into the muram area, or
145 * a negative errno on failure.
146 * Use cpm_dpram_addr() to get the virtual address of the area.
147 * Use cpm_muram_free() to free the allocation.
149 s32
cpm_muram_alloc(unsigned long size
, unsigned long align
)
153 struct genpool_data_align muram_pool_data
;
155 spin_lock_irqsave(&cpm_muram_lock
, flags
);
156 muram_pool_data
.align
= align
;
157 start
= cpm_muram_alloc_common(size
, gen_pool_first_fit_align
,
159 spin_unlock_irqrestore(&cpm_muram_lock
, flags
);
162 EXPORT_SYMBOL(cpm_muram_alloc
);
165 * cpm_muram_free - free a chunk of multi-user ram
166 * @offset: The beginning of the chunk as returned by cpm_muram_alloc().
168 void cpm_muram_free(s32 offset
)
172 struct muram_block
*tmp
;
178 spin_lock_irqsave(&cpm_muram_lock
, flags
);
179 list_for_each_entry(tmp
, &muram_block_list
, head
) {
180 if (tmp
->start
== offset
) {
182 list_del(&tmp
->head
);
187 gen_pool_free(muram_pool
, offset
+ GENPOOL_OFFSET
, size
);
188 spin_unlock_irqrestore(&cpm_muram_lock
, flags
);
190 EXPORT_SYMBOL(cpm_muram_free
);
193 * cpm_muram_alloc_fixed - reserve a specific region of multi-user ram
194 * @offset: offset of allocation start address
195 * @size: number of bytes to allocate
196 * This function returns @offset if the area was available, a negative
198 * Use cpm_dpram_addr() to get the virtual address of the area.
199 * Use cpm_muram_free() to free the allocation.
201 s32
cpm_muram_alloc_fixed(unsigned long offset
, unsigned long size
)
205 struct genpool_data_fixed muram_pool_data_fixed
;
207 spin_lock_irqsave(&cpm_muram_lock
, flags
);
208 muram_pool_data_fixed
.offset
= offset
+ GENPOOL_OFFSET
;
209 start
= cpm_muram_alloc_common(size
, gen_pool_fixed_alloc
,
210 &muram_pool_data_fixed
);
211 spin_unlock_irqrestore(&cpm_muram_lock
, flags
);
214 EXPORT_SYMBOL(cpm_muram_alloc_fixed
);
217 * cpm_muram_addr - turn a muram offset into a virtual address
218 * @offset: muram offset to convert
220 void __iomem
*cpm_muram_addr(unsigned long offset
)
222 return muram_vbase
+ offset
;
224 EXPORT_SYMBOL(cpm_muram_addr
);
226 unsigned long cpm_muram_offset(void __iomem
*addr
)
228 return addr
- (void __iomem
*)muram_vbase
;
230 EXPORT_SYMBOL(cpm_muram_offset
);
233 * cpm_muram_dma - turn a muram virtual address into a DMA address
234 * @addr: virtual address from cpm_muram_addr() to convert
236 dma_addr_t
cpm_muram_dma(void __iomem
*addr
)
238 return muram_pbase
+ ((u8 __iomem
*)addr
- muram_vbase
);
240 EXPORT_SYMBOL(cpm_muram_dma
);