mirror of https://github.com/thesofproject/sof.git
221 lines
3.5 KiB
C
221 lines
3.5 KiB
C
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright(c) 2020 Intel Corporation. All rights reserved.
|
|
*
|
|
* Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
|
|
*/
|
|
|
|
#include <sof/lib/alloc.h>
|
|
#include <sof/drivers/interrupt.h>
|
|
#include <sof/lib/dma.h>
|
|
#include <sof/schedule/schedule.h>
|
|
|
|
/*
|
|
* Memory
|
|
*/
|
|
void *rmalloc(enum mem_zone zone, uint32_t flags, uint32_t caps, size_t bytes)
|
|
{
|
|
// TODO: call Zephyr API
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* Similar to rmalloc(), guarantees that returned block is zeroed.
|
|
*
|
|
* @note Do not use for buffers (SOF_MEM_ZONE_BUFFER zone).
|
|
* rballoc(), rballoc_align() to allocate memory for buffers.
|
|
*/
|
|
void *rzalloc(enum mem_zone zone, uint32_t flags, uint32_t caps, size_t bytes)
|
|
{
|
|
// TODO: call Zephyr API
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* Allocates memory block from SOF_MEM_ZONE_BUFFER.
|
|
* @param flags Flags, see SOF_MEM_FLAG_...
|
|
* @param caps Capabilities, see SOF_MEM_CAPS_...
|
|
* @param bytes Size in bytes.
|
|
* @param alignment Alignment in bytes.
|
|
* @return Pointer to the allocated memory or NULL if failed.
|
|
*/
|
|
void *rballoc_align(uint32_t flags, uint32_t caps, size_t bytes,
|
|
uint32_t alignment)
|
|
{
|
|
// TODO: call Zephyr API
|
|
return NULL;
|
|
}
|
|
|
|
void rfree(void *ptr)
|
|
{
|
|
// TODO: call Zephyr API
|
|
}
|
|
|
|
void heap_trace_all(int force)
|
|
{
|
|
}
|
|
|
|
/*
|
|
* Interrupts
|
|
*/
|
|
int interrupt_register(uint32_t irq, void(*handler)(void *arg), void *arg)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void interrupt_unregister(uint32_t irq, const void *arg)
|
|
{
|
|
}
|
|
|
|
uint32_t interrupt_enable(uint32_t irq, void *arg)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
uint32_t interrupt_disable(uint32_t irq, void *arg)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void platform_interrupt_init(void)
|
|
{
|
|
}
|
|
|
|
void platform_interrupt_set(uint32_t irq)
|
|
{
|
|
}
|
|
|
|
void platform_interrupt_clear(uint32_t irq, uint32_t mask)
|
|
{
|
|
}
|
|
|
|
uint32_t platform_interrupt_get_enabled(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void interrupt_mask(uint32_t irq, unsigned int cpu)
|
|
{
|
|
}
|
|
|
|
void interrupt_unmask(uint32_t irq, unsigned int cpu)
|
|
{
|
|
}
|
|
|
|
void interrupt_init(struct sof *sof)
|
|
{
|
|
}
|
|
|
|
int interrupt_cascade_register(const struct irq_cascade_tmpl *tmpl)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
struct irq_cascade_desc *interrupt_get_parent(uint32_t irq)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
int interrupt_get_irq(unsigned int irq, const char *cascade)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
const char irq_name_level2[] = "level2";
|
|
const char irq_name_level5[] = "level5";
|
|
|
|
/*
|
|
* Scheduler
|
|
*/
|
|
|
|
struct schedulers **arch_schedulers_get(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
int scheduler_init_ll(struct ll_schedule_domain *domain)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int schedule_task_init_ll(struct task *task,
|
|
uint32_t uid, uint16_t type, uint16_t priority,
|
|
enum task_state (*run)(void *data), void *data,
|
|
uint16_t core, uint32_t flags)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int scheduler_init_edf(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int schedule_task_init_edf(struct task *task, uint32_t uid,
|
|
const struct task_ops *ops,
|
|
void *data, uint16_t core, uint32_t flags)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
struct ll_schedule_domain *timer_domain_init(struct timer *timer, int clk,
|
|
uint64_t timeout)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
struct ll_schedule_domain *dma_single_chan_domain_init(struct dma *dma_array,
|
|
uint32_t num_dma,
|
|
int clk)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
volatile void *task_context_get(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Timers
|
|
*/
|
|
|
|
uint32_t arch_timer_get_system(struct timer *timer)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Notifier
|
|
*/
|
|
|
|
struct notify **arch_notify_get(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Debug
|
|
*/
|
|
void arch_dump_regs_a(void *dump_buf)
|
|
{
|
|
|
|
}
|
|
|
|
/*
|
|
* Xtensa
|
|
*/
|
|
|
|
unsigned int _xtos_ints_off( unsigned int mask )
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* entry
|
|
*/
|
|
int task_main_start(struct sof *sof)
|
|
{
|
|
return 0;
|
|
}
|