-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathalloc.c
More file actions
685 lines (560 loc) · 17.2 KB
/
alloc.c
File metadata and controls
685 lines (560 loc) · 17.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright(c) 2022 Intel Corporation. All rights reserved.
*
*/
#include <sof/init.h>
#include <rtos/alloc.h>
#include <rtos/idc.h>
#include <rtos/interrupt.h>
#include <sof/drivers/interrupt-map.h>
#include <sof/schedule/schedule.h>
#include <sof/lib/notifier.h>
#include <sof/lib/pm_runtime.h>
#include <sof/audio/pipeline.h>
#include <sof/trace/trace.h>
#include <rtos/symbol.h>
#include <rtos/wait.h>
#define SHARED_BUFFER_HEAP_MEM_SIZE 0
#if CONFIG_L3_HEAP && CONFIG_MMU
#include <kernel_arch_interface.h>
#endif
#if CONFIG_VIRTUAL_HEAP
#include <sof/lib/regions_mm.h>
#include <zephyr/drivers/mm/mm_drv_intel_adsp_mtl_tlb.h>
struct vmh_heap;
struct vmh_heap *virtual_buffers_heap;
#endif /* CONFIG_VIRTUAL_HEAP */
/* Zephyr includes */
#include <zephyr/init.h>
#include <zephyr/kernel.h>
#include <zephyr/pm/policy.h>
#include <version.h>
#include <zephyr/sys/__assert.h>
#include <zephyr/cache.h>
#if CONFIG_SYS_HEAP_RUNTIME_STATS && CONFIG_IPC_MAJOR_4
#include <zephyr/sys/sys_heap.h>
#endif
LOG_MODULE_REGISTER(mem_allocator, CONFIG_SOF_LOG_LEVEL);
extern struct tr_ctx zephyr_tr;
/*
* Memory - Create Zephyr HEAP for SOF.
*
* Currently functional but some items still WIP.
*/
#ifndef HEAP_RUNTIME_SIZE
#define HEAP_RUNTIME_SIZE 0
#endif
/* system size not declared on some platforms */
#ifndef HEAP_SYSTEM_SIZE
#define HEAP_SYSTEM_SIZE 0
#endif
/* The Zephyr heap */
#if defined(CONFIG_IMX) || defined(CONFIG_AMD)
#ifdef CONFIG_XTENSA
#define HEAPMEM_SIZE (HEAP_SYSTEM_SIZE + HEAP_RUNTIME_SIZE + HEAP_BUFFER_SIZE)
/*
* Include heapmem variable in .heap_mem section, otherwise the HEAPMEM_SIZE is
* duplicated in two sections and the sdram0 region overflows.
*/
__section(".heap_mem") static uint8_t __aligned(64) heapmem[HEAPMEM_SIZE];
#else
/* for ARM64 the heap is placed inside the .bss section.
*
* This is because we want to avoid introducing new sections in
* the arm64 linker script. Also, is there really a need to place
* it inside a special section?
*
* i.MX93 is the only ARM64-based platform so defining the heap this way
* for all ARM64-based platforms should be safe.
*/
static uint8_t __aligned(PLATFORM_DCACHE_ALIGN) heapmem[HEAPMEM_SIZE];
#endif /* CONFIG_XTENSA */
#elif CONFIG_ACE
/*
* System heap definition for ACE is defined below.
* It needs to be explicitly packed into dedicated section
* to allow memory management driver to control unused
* memory pages.
*/
#if CONFIG_USERSPACE
#undef SHARED_BUFFER_HEAP_MEM_SIZE
#define SHARED_BUFFER_HEAP_MEM_SIZE ROUND_UP(CONFIG_SOF_ZEPHYR_SHARED_BUFFER_HEAP_SIZE, \
HOST_PAGE_SIZE)
#if CONFIG_SOF_USERSPACE_USE_SHARED_HEAP
__section(".shared_heap_mem")
static uint8_t __aligned(HOST_PAGE_SIZE) shared_heapmem[SHARED_BUFFER_HEAP_MEM_SIZE];
#endif
#endif /* CONFIG_USERSPACE */
__section(".heap_mem")
static uint8_t __aligned(HOST_PAGE_SIZE) heapmem[HEAPMEM_SIZE - SHARED_BUFFER_HEAP_MEM_SIZE];
#elif defined(CONFIG_ARCH_POSIX)
/* Zephyr native_posix links as a host binary and lacks the automated heap markers */
#define HEAPMEM_SIZE (256 * 1024)
char __aligned(8) heapmem[HEAPMEM_SIZE];
#elif defined(CONFIG_SOC_FAMILY_MTK)
extern char _mtk_adsp_sram_end;
#if defined(CONFIG_SOC_MT8365)
#define SRAM_START DT_REG_ADDR(DT_NODELABEL(sram1))
#define SRAM_SIZE DT_REG_SIZE(DT_NODELABEL(sram1))
#define heapmem ((uint8_t *)SRAM_START)
#else
#define SRAM_START DT_REG_ADDR(DT_NODELABEL(sram0))
#define SRAM_SIZE DT_REG_SIZE(DT_NODELABEL(sram0))
#define heapmem ((uint8_t *)ALIGN_UP((uintptr_t)&_mtk_adsp_sram_end, PLATFORM_DCACHE_ALIGN))
#endif /* CONFIG_SOC_MT8365 */
#define SRAM_END (SRAM_START + SRAM_SIZE)
/* Heap size is limited to 0x7fffU chunk units when CONFIG_SYS_HEAP_SMALL_ONLY is set */
#if defined(CONFIG_SYS_HEAP_SMALL_ONLY)
#define HEAPMEM_SIZE MIN(((uint8_t *)SRAM_END - heapmem), 0x7fff * 8)
#else
#define HEAPMEM_SIZE ((uint8_t *)SRAM_END - heapmem)
#endif /* CONFIG_SYS_HEAP_SMALL_ONLY */
#else
extern char _end[], _heap_sentry[];
#define heapmem ((uint8_t *)ALIGN_UP((uintptr_t)_end, PLATFORM_DCACHE_ALIGN))
#define HEAPMEM_SIZE ((uint8_t *)_heap_sentry - heapmem)
#endif
static struct k_heap sof_heap;
/**
* Checks whether pointer is from a given heap memory.
* @param heap Pointer to a heap.
* @param ptr Pointer to memory being checked.
* @return True if pointer falls into heap memory region, false otherwise.
*/
static bool is_heap_pointer(const struct k_heap *heap, void *ptr)
{
uintptr_t heap_start =
POINTER_TO_UINT(sys_cache_cached_ptr_get(heap->heap.init_mem));
uintptr_t heap_end = heap_start + heap->heap.init_bytes;
if (!sys_cache_is_ptr_cached(ptr))
ptr = (__sparse_force void *)sys_cache_cached_ptr_get(ptr);
return ((POINTER_TO_UINT(ptr) >= heap_start) &&
(POINTER_TO_UINT(ptr) < heap_end));
}
#if CONFIG_SOF_USERSPACE_USE_SHARED_HEAP
static struct k_heap shared_buffer_heap;
/**
* Returns the start of HPSRAM Shared memory heap.
* @return Pointer to the HPSRAM Shared memory location which can be used
* for HPSRAM Shared heap.
*/
uintptr_t get_shared_buffer_heap_start(void)
{
return ROUND_UP(POINTER_TO_UINT(shared_heapmem), HOST_PAGE_SIZE);
}
/**
* Returns the size of HPSRAM Shared memory heap.
* @return Size of the HPSRAM Shared memory region which can be used for HPSRAM Shared heap.
*/
size_t get_shared_buffer_heap_size(void)
{
return ROUND_DOWN(SHARED_BUFFER_HEAP_MEM_SIZE, HOST_PAGE_SIZE);
}
#endif /* CONFIG_SOF_USERSPACE_USE_SHARED_HEAP */
#if CONFIG_L3_HEAP
static struct k_heap l3_heap;
static struct k_heap l3_heap_copy __imrdata;
/**
* Returns the start of L3 memory heap.
* @return Pointer to the L3 memory location which can be used for L3 heap.
*/
static inline uintptr_t get_l3_heap_start(void)
{
/*
* TODO: parse the actual offset using:
* - HfIMRIA1 register
* - rom_ext_load_offset
* - main_fw_load_offset
* - main fw size in manifest
*/
return (uintptr_t)(ROUND_UP(IMR_L3_HEAP_BASE, L3_MEM_PAGE_SIZE));
}
/**
* Returns the size of L3 memory heap.
* @return Size of the L3 memory region which can be used for L3 heap.
*/
static inline size_t get_l3_heap_size(void)
{
/*
* Calculate the IMR heap size using:
* - total IMR size
* - IMR base address
* - actual IMR heap start
*/
size_t offset = IMR_L3_HEAP_BASE - L3_MEM_BASE_ADDR;
return ROUND_DOWN(ace_imr_get_mem_size() - offset, L3_MEM_PAGE_SIZE);
}
void l3_heap_save(void)
{
l3_heap_copy = l3_heap;
LOG_DBG("L3 heap copy: %p", (void *)l3_heap_copy.heap.heap);
dcache_writeback_region((__sparse_force void __sparse_cache *)&l3_heap_copy,
sizeof(l3_heap_copy));
dcache_writeback_region((__sparse_force void __sparse_cache *)get_l3_heap_start(),
get_l3_heap_size());
}
static void *l3_heap_alloc_aligned(struct k_heap *h, size_t min_align, size_t bytes)
{
k_spinlock_key_t key;
void *ret;
#if CONFIG_SYS_HEAP_RUNTIME_STATS && CONFIG_IPC_MAJOR_4
struct sys_memory_stats stats;
#endif
if (!cpu_is_primary(arch_proc_id())) {
tr_err(&zephyr_tr, "L3_HEAP available only for primary core!");
return NULL;
}
key = k_spin_lock(&h->lock);
ret = sys_heap_aligned_alloc(&h->heap, min_align, bytes);
k_spin_unlock(&h->lock, key);
#if CONFIG_SYS_HEAP_RUNTIME_STATS && CONFIG_IPC_MAJOR_4
sys_heap_runtime_stats_get(&h->heap, &stats);
tr_info(&zephyr_tr, "heap allocated: %u free: %u max allocated: %u",
stats.allocated_bytes, stats.free_bytes, stats.max_allocated_bytes);
#endif
return ret;
}
static void l3_heap_free(struct k_heap *h, void *mem)
{
if (!cpu_is_primary(arch_proc_id())) {
tr_err(&zephyr_tr, "L3_HEAP available only for primary core!");
return;
}
k_spinlock_key_t key = k_spin_lock(&h->lock);
sys_heap_free(&h->heap, mem);
k_spin_unlock(&h->lock, key);
}
#endif
#if CONFIG_VIRTUAL_HEAP
static void *virtual_heap_alloc(struct vmh_heap *heap, uint32_t flags, size_t bytes,
uint32_t align)
{
void *mem = vmh_alloc(heap, bytes);
if (!mem) {
#ifdef CONFIG_SYS_MEM_BLOCKS_RUNTIME_STATS
vmh_log_stats(heap);
#endif
return NULL;
}
assert(align == 0 || IS_ALIGNED(mem, align));
if (flags & SOF_MEM_FLAG_COHERENT)
return sys_cache_uncached_ptr_get((__sparse_force void __sparse_cache *)mem);
return mem;
}
extern int _unused_ram_start_marker;
/**
* Checks whether pointer is from virtual memory range.
* @param ptr Pointer to memory being checked.
* @return True if pointer falls into virtual memory region, false otherwise.
*/
static bool is_virtual_heap_pointer(void *ptr)
{
uintptr_t virtual_heap_start =
POINTER_TO_UINT(sys_cache_cached_ptr_get(&_unused_ram_start_marker));
uintptr_t virtual_heap_end = CONFIG_KERNEL_VM_BASE + CONFIG_KERNEL_VM_SIZE;
if (!sys_cache_is_ptr_cached(ptr))
ptr = (__sparse_force void *)sys_cache_cached_ptr_get(ptr);
return ((POINTER_TO_UINT(ptr) >= virtual_heap_start) &&
(POINTER_TO_UINT(ptr) < virtual_heap_end));
}
static void virtual_heap_free(void *ptr)
{
int ret;
ptr = (__sparse_force void *)sys_cache_cached_ptr_get(ptr);
ret = vmh_free(virtual_buffers_heap, ptr);
if (ret) {
tr_err(&zephyr_tr, "Unable to free %p! %d", ptr, ret);
k_panic();
}
}
static const struct vmh_heap_config static_hp_buffers = {
{
{ 128, 32},
{ 512, 8},
{ 1024, 44},
{ 2048, 8},
{ 4096, 11},
{ 8192, 10},
{ 65536, 3},
{ 131072, 1},
{ 524288, 1} /* buffer for kpb */
},
};
static int virtual_heap_init(void)
{
int ret;
if (virtual_buffers_heap)
return -EEXIST;
/* add a virtual memory region */
ret = adsp_add_virtual_memory_region(adsp_mm_get_unused_l2_start_aligned(),
CONFIG_SOF_ZEPHYR_VIRTUAL_HEAP_REGION_SIZE,
VIRTUAL_REGION_SHARED_HEAP_ATTR);
if (ret)
return ret;
virtual_buffers_heap = vmh_init_heap(&static_hp_buffers, false);
if (!virtual_buffers_heap) {
tr_err(&zephyr_tr, "Unable to init virtual heap");
return -ENOMEM;
}
return 0;
}
SYS_INIT(virtual_heap_init, POST_KERNEL, 1);
#endif /* CONFIG_VIRTUAL_HEAP */
struct k_heap *sof_sys_heap_get(void)
{
return &sof_heap;
}
static void *heap_alloc_aligned(struct k_heap *h, size_t min_align, size_t bytes)
{
k_spinlock_key_t key;
void *ret;
#if CONFIG_SYS_HEAP_RUNTIME_STATS && CONFIG_IPC_MAJOR_4
struct sys_memory_stats stats;
#endif
/*
* Zephyr sys_heap stores metadata at start of each
* heap allocation. To ensure no allocated cached buffer
* overlaps the same cacheline with the metadata chunk,
* align both allocation start and size of allocation
* to cacheline. As cached and non-cached allocations are
* mixed, same rules need to be followed for both type of
* allocations.
*/
#ifdef CONFIG_SOF_ZEPHYR_HEAP_CACHED
min_align = MAX(PLATFORM_DCACHE_ALIGN, min_align);
bytes = ALIGN_UP(bytes, PLATFORM_DCACHE_ALIGN);
#endif
key = k_spin_lock(&h->lock);
ret = sys_heap_aligned_alloc(&h->heap, min_align, bytes);
k_spin_unlock(&h->lock, key);
#if CONFIG_SYS_HEAP_RUNTIME_STATS && CONFIG_IPC_MAJOR_4
sys_heap_runtime_stats_get(&h->heap, &stats);
tr_info(&zephyr_tr, "heap allocated: %u free: %u max allocated: %u",
stats.allocated_bytes, stats.free_bytes, stats.max_allocated_bytes);
#endif
return ret;
}
static void __sparse_cache *heap_alloc_aligned_cached(struct k_heap *h,
size_t min_align, size_t bytes)
{
void __sparse_cache *ptr;
ptr = (__sparse_force void __sparse_cache *)heap_alloc_aligned(h, min_align, bytes);
#ifdef CONFIG_SOF_ZEPHYR_HEAP_CACHED
if (ptr)
ptr = sys_cache_cached_ptr_get((__sparse_force void *)ptr);
#endif
return ptr;
}
static void heap_free(struct k_heap *h, void *mem)
{
k_spinlock_key_t key = k_spin_lock(&h->lock);
#ifdef CONFIG_SOF_ZEPHYR_HEAP_CACHED
void *mem_uncached;
if (sys_cache_is_ptr_cached(mem)) {
mem_uncached = sys_cache_uncached_ptr_get((__sparse_force void __sparse_cache *)mem);
sys_cache_data_flush_and_invd_range(mem,
sys_heap_usable_size(&h->heap, mem_uncached));
mem = mem_uncached;
}
#endif
sys_heap_free(&h->heap, mem);
k_spin_unlock(&h->lock, key);
}
void *rmalloc_align(uint32_t flags, size_t bytes, uint32_t alignment)
{
void *ptr;
struct k_heap *heap;
/* choose a heap */
if (flags & SOF_MEM_FLAG_L3) {
#if CONFIG_L3_HEAP
heap = &l3_heap;
/* Uncached L3_HEAP should not be used */
if (flags & SOF_MEM_FLAG_COHERENT) {
tr_err(&zephyr_tr, "L3_HEAP available for cached addresses only!");
return NULL;
}
ptr = (__sparse_force void *)l3_heap_alloc_aligned(heap, alignment, bytes);
return ptr;
#else
k_panic();
#endif
#if CONFIG_SOF_USERSPACE_USE_SHARED_HEAP
} else if (flags & SOF_MEM_FLAG_USER_SHARED_BUFFER) {
heap = &shared_buffer_heap;
#endif
} else {
heap = &sof_heap;
}
if (!(flags & SOF_MEM_FLAG_COHERENT)) {
ptr = (__sparse_force void *)heap_alloc_aligned_cached(heap, alignment, bytes);
} else {
ptr = heap_alloc_aligned(heap, alignment, bytes);
}
return ptr;
}
EXPORT_SYMBOL(rmalloc_align);
void *rmalloc(uint32_t flags, size_t bytes)
{
return rmalloc_align(flags, bytes, 0);
}
EXPORT_SYMBOL(rmalloc);
void *rbrealloc_align(void *ptr, uint32_t flags, size_t bytes,
size_t old_bytes, uint32_t alignment)
{
void *new_ptr;
if (!ptr) {
return rballoc_align(flags, bytes, alignment);
}
/* Original version returns NULL without freeing this memory */
if (!bytes) {
/* TODO: Should we call rfree(ptr); */
tr_err(&zephyr_tr, "realloc failed for 0 bytes");
return NULL;
}
new_ptr = rballoc_align(flags, bytes, alignment);
if (!new_ptr)
return NULL;
if (!(flags & SOF_MEM_FLAG_NO_COPY))
memcpy_s(new_ptr, bytes, ptr, MIN(bytes, old_bytes));
rfree(ptr);
tr_info(&zephyr_tr, "rbealloc: new ptr %p", new_ptr);
return new_ptr;
}
/**
* Similar to rmalloc(), guarantees that returned block is zeroed.
*/
void *rzalloc(uint32_t flags, size_t bytes)
{
void *ptr = rmalloc(flags, bytes);
if (ptr)
memset(ptr, 0, bytes);
return ptr;
}
EXPORT_SYMBOL(rzalloc);
/**
* Allocates memory block.
* @param flags see SOF_MEM_FLAG_...
* @param bytes Size in bytes.
* @param align Alignment in bytes.
* @return Pointer to the allocated memory or NULL if failed.
*/
void *rballoc_align(uint32_t flags, size_t bytes, uint32_t align)
{
struct k_heap *heap;
/* choose a heap */
if (flags & SOF_MEM_FLAG_L3) {
#if CONFIG_L3_HEAP
heap = &l3_heap;
return (__sparse_force void *)l3_heap_alloc_aligned(heap, align, bytes);
#else
tr_err(&zephyr_tr, "L3_HEAP not available.");
return NULL;
#endif
#if CONFIG_SOF_USERSPACE_USE_SHARED_HEAP
} else if (flags & SOF_MEM_FLAG_USER_SHARED_BUFFER) {
heap = &shared_buffer_heap;
#endif /* CONFIG_USERSPACE */
} else {
#if CONFIG_VIRTUAL_HEAP
/* Use virtual heap if it is available */
if (virtual_buffers_heap)
return virtual_heap_alloc(virtual_buffers_heap, flags, bytes, align);
#endif /* CONFIG_VIRTUAL_HEAP */
heap = &sof_heap;
}
if (flags & SOF_MEM_FLAG_COHERENT)
return heap_alloc_aligned(heap, align, bytes);
return (__sparse_force void *)heap_alloc_aligned_cached(heap, align, bytes);
}
EXPORT_SYMBOL(rballoc_align);
/*
* Free's memory allocated by above alloc calls.
*/
void rfree(void *ptr)
{
if (!ptr)
return;
#if CONFIG_L3_HEAP
if (is_heap_pointer(&l3_heap, ptr)) {
l3_heap_free(&l3_heap, ptr);
return;
}
#endif
#if CONFIG_VIRTUAL_HEAP
if (is_virtual_heap_pointer(ptr)) {
virtual_heap_free(ptr);
return;
}
#endif
#if CONFIG_SOF_USERSPACE_USE_SHARED_HEAP
if (is_heap_pointer(&shared_buffer_heap, ptr)) {
heap_free(&shared_buffer_heap, ptr);
return;
}
#endif
heap_free(&sof_heap, ptr);
}
EXPORT_SYMBOL(rfree);
/*
* To match the fall-back SOF main heap all private heaps should also be in the
* uncached address range.
*/
void *sof_heap_alloc(struct k_heap *heap, uint32_t flags, size_t bytes,
size_t alignment)
{
if (flags & (SOF_MEM_FLAG_LARGE_BUFFER | SOF_MEM_FLAG_USER_SHARED_BUFFER))
return rballoc_align(flags, bytes, alignment);
if (!heap)
heap = &sof_heap;
if (flags & SOF_MEM_FLAG_COHERENT)
return heap_alloc_aligned(heap, alignment, bytes);
return (__sparse_force void *)heap_alloc_aligned_cached(heap, alignment, bytes);
}
void sof_heap_free(struct k_heap *heap, void *addr)
{
if (heap && addr && is_heap_pointer(heap, addr))
heap_free(heap, addr);
else
rfree(addr);
}
static int heap_init(void)
{
sys_heap_init(&sof_heap.heap, heapmem, HEAPMEM_SIZE - SHARED_BUFFER_HEAP_MEM_SIZE);
#if CONFIG_SOF_USERSPACE_USE_SHARED_HEAP
shared_buffer_heap.heap.init_mem = shared_heapmem;
shared_buffer_heap.heap.init_bytes = SHARED_BUFFER_HEAP_MEM_SIZE;
sys_heap_init(&shared_buffer_heap.heap, shared_heapmem, SHARED_BUFFER_HEAP_MEM_SIZE);
#endif
#if CONFIG_L3_HEAP
if (ace_imr_used()) {
void *l3_heap_start = UINT_TO_POINTER(get_l3_heap_start());
size_t l3_heap_size = get_l3_heap_size();
#if CONFIG_MMU
void *cached_ptr = sys_cache_cached_ptr_get(l3_heap_start);
uintptr_t va = POINTER_TO_UINT(cached_ptr);
arch_mem_map(l3_heap_start, va, l3_heap_size, K_MEM_PERM_RW | K_MEM_CACHE_WB);
#endif
if (l3_heap_copy.heap.heap) {
l3_heap = l3_heap_copy;
} else {
l3_heap.heap.init_mem = l3_heap_start;
l3_heap.heap.init_bytes = l3_heap_size;
sys_heap_init(&l3_heap.heap, l3_heap_start, l3_heap_size);
}
}
#endif
return 0;
}
/* This is a weak stub for the Cadence libc's allocator (which is just
* a newlib build). It's traditionally been provided like this in SOF
* for the benefit of C++ code where the standard library needs to
* link to a working malloc() even if it will never call it.
*/
struct _reent;
__weak void *_sbrk_r(struct _reent *ptr, ptrdiff_t incr)
{
k_panic();
return NULL;
}
SYS_INIT(heap_init, PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_OBJECTS);