blob: d5fc1c2db660d2b1b397293f9ce196c13a842820 [file] [log] [blame]
/*
* Copyright (c) 2016, Intel Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Intel Corporation nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
* Keyon Jie <yang.jie@linux.intel.com>
*/
#ifndef __INCLUDE_ALLOC__
#define __INCLUDE_ALLOC__
#include <string.h>
#include <stdint.h>
#include <sof/dma.h>
#include <platform/memory.h>
struct sof;
/* Heap Memory Zones
*
* The heap has three different zones from where memory can be allocated :-
*
* 1) System Zone. Fixed size heap where alloc always succeeds and is never
* freed. Used by any init code that will never give up the memory.
*
* 2) Runtime Zone. Main and larger heap zone where allocs are not guaranteed to
* succeed. Memory can be freed here.
*
* 3) Buffer Zone. Largest heap zone intended for audio buffers.
*
* See platform/memory.h for heap size configuration and mappings.
*/
#define RZONE_SYS 0
#define RZONE_RUNTIME 1
#define RZONE_BUFFER 2
struct mm_info {
uint32_t used;
uint32_t free;
};
struct block_hdr {
uint16_t size; /* size in blocks for continuous allocation */
uint16_t used; /* usage flags for page */
} __attribute__ ((packed));
struct block_map {
uint16_t block_size; /* size of block in bytes */
uint16_t count; /* number of blocks in map */
uint16_t free_count; /* number of free blocks */
uint16_t first_free; /* index of first free block */
struct block_hdr *block; /* base block header */
uint32_t base; /* base address of space */
} __attribute__ ((packed));
#define BLOCK_DEF(sz, cnt, hdr) \
{.block_size = sz, .count = cnt, .free_count = cnt, .block = hdr}
struct mm_heap {
uint32_t blocks;
struct block_map *map;
uint32_t heap;
uint32_t size;
uint32_t caps;
struct mm_info info;
};
/* heap block memory map */
struct mm {
/* system heap - used during init cannot be freed */
struct mm_heap system;
/* general heap for components */
struct mm_heap runtime[PLATFORM_HEAP_RUNTIME];
/* general component buffer heap */
struct mm_heap buffer[PLATFORM_HEAP_BUFFER];
struct mm_info total;
spinlock_t lock; /* all allocs and frees are atomic */
};
/* heap allocation and free */
void *rmalloc(int zone, uint32_t caps, size_t bytes);
void *rzalloc(int zone, uint32_t caps, size_t bytes);
void rfree(void *ptr);
/* heap allocation and free for buffers on 1k boundary */
void *rballoc(int zone, uint32_t flags, size_t bytes);
/* utility */
void bzero(void *s, size_t n);
void *memset(void *s, int c, size_t n);
int rstrlen(const char *s);
int rstrcmp(const char *s1, const char *s2);
/* Heap save/restore contents and context for PM D0/D3 events */
uint32_t mm_pm_context_size(void);
int mm_pm_context_save(struct dma_copy *dc, struct dma_sg_config *sg);
int mm_pm_context_restore(struct dma_copy *dc, struct dma_sg_config *sg);
/* heap initialisation */
void init_heap(struct sof *sof);
#endif