mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
03cdeebe7b
PD#SWPL-139800 Problem: SC2 far field voice need early suspend and record with dsp. Solution: When DSP waked up by VAD, then: 1. DSP notify to AOCPU (would fail by unknown cmd) and ARM during early suspend. 2. DSP notify to AOCPU (would fail by unknown cmd) and ARM (would fail by timeout) and do retry after ARM deep sleep and before AOCPU STR poweroff. 3. DSP notify to AOCPU after AOCPU STR poweroff. 4. when ffv not supported, dsp do not start vwe. Verify: sc2_ah212 Change-Id: I0e610ab7dd76c362c71a9ec98ce589bf7d04beda Signed-off-by: bangzheng.liu <bangzheng.liu@amlogic.com>
16 lines
353 B
C
16 lines
353 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __HOST_REPORT_H__
|
|
#define __HOST_REPORT_H__
|
|
|
|
#include "host.h"
|
|
#include <linux/input.h>
|
|
|
|
void host_dsp_vad_report(struct host_module *host);
|
|
void host_dsp_vad_input_device_init(struct host_module *host);
|
|
|
|
#endif /*_HOST_REPORT_H*/
|