android_kernel_xiaomi_sm8350/dsp/audio_ssr.h
Meng Wang 688a867091 asoc: Update file header to GPL-2.0-only
Update file header to GPL-2.0-only.

Change-Id: If16bf92f951c6d7521f56a3e9b91da2ca2ccf6f8
Signed-off-by: Meng Wang <mengw@codeaurora.org>
2019-01-29 13:43:33 +08:00

71 lines
1.6 KiB
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2016, The Linux Foundation. All rights reserved.
*/
#ifndef __AUDIO_SSR_H_
#define __AUDIO_SSR_H_
enum {
AUDIO_SSR_DOMAIN_ADSP,
AUDIO_SSR_DOMAIN_MODEM,
AUDIO_SSR_DOMAIN_MAX
};
#ifdef CONFIG_MSM_QDSP6_SSR
/*
* Use audio_ssr_register to register with the SSR subsystem
*
* domain_id - Service to use, example: AUDIO_SSR_DOMAIN_ADSP
* *nb - Pointer to a notifier block. Provide a callback function
* to be notified of an event for that service. The ioctls
* used by the callback are defined in subsystem_notif.h.
*
* Returns: Success: Client handle
* Failure: Pointer error code
*/
void *audio_ssr_register(int domain_id, struct notifier_block *nb);
/*
* Use audio_ssr_deregister to register with the SSR subsystem
*
* handle - Handle received from audio_ssr_register
* *nb - Pointer to a notifier block. Callback function
* Used from audio_ssr_register.
*
* Returns: Success: 0
* Failure: Error code
*/
int audio_ssr_deregister(void *handle, struct notifier_block *nb);
/*
* Use audio_ssr_send_nmi to force a RAM dump on ADSP
* down event.
*
* *ssr_cb_data - *data received from notifier callback
*/
void audio_ssr_send_nmi(void *ssr_cb_data);
#else
static inline void *audio_ssr_register(int domain_id,
struct notifier_block *nb)
{
return NULL;
}
static inline int audio_ssr_deregister(void *handle, struct notifier_block *nb)
{
return 0;
}
static inline void audio_ssr_send_nmi(void *ssr_cb_data)
{
}
#endif /* CONFIG_MSM_QDSP6_SSR */
#endif