mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
a4da10d080
PD#SWPL-94126 Problem: bring up freertos with t7c Solution: bring up freertos with t7c Verify: t7c Signed-off-by: qinglin.li <qinglin.li@amlogic.com> Change-Id: I49da1d2885baddf839f8229fe43dfd6f66055695
23 lines
534 B
C
23 lines
534 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2021 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _FREERTOS_H_
|
|
#define _FREERTOS_H_
|
|
#include <linux/amlogic/rtosinfo.h>
|
|
|
|
int freertos_finish(void);
|
|
int freertos_is_finished(void);
|
|
int freertos_is_irq_rsved(unsigned int irq);
|
|
u32 freertos_get_irqregval(u32 val, u32 oldval,
|
|
unsigned int irqbase,
|
|
unsigned int n);
|
|
struct xrtosinfo_t *freertos_get_info(void);
|
|
|
|
#if IS_ENABLED(CONFIG_AMLOGIC_FREERTOS_T7)
|
|
void arch_send_ipi_rtos(int cpu);
|
|
#endif
|
|
|
|
#endif
|