mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
d70741d666
PD#SWPL-99041 Problem: reconstruct dsp host driver Solution: config CONFIG_AMLOGIC_MCU_DRIVER to enable mcu driver the new driver support multiple dsp/m4 cores Verify: a1/c1/c2/sc2/t3/t3x/t7/t7c Change-Id: Ib1e666e615260bb5b7377a18eeaaf8daa65de86f Signed-off-by: Liming Xue <liming.xue@amlogic.com>
17 lines
422 B
C
17 lines
422 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __HOST_POLL_H__
|
|
#define __HOST_POLL_H__
|
|
|
|
#include "host.h"
|
|
|
|
void host_health_monitor_start(struct host_module *host);
|
|
void host_health_monitor_stop(struct host_module *host);
|
|
int host_logbuff_start(struct host_module *host);
|
|
void host_logbuff_stop(struct host_module *host);
|
|
|
|
#endif /*_HOST_POLL_H*/
|