M7350/kernel/sound/soc/msm/qdsp6v2/msm-lsm-client.c

372 lines
9.8 KiB
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
* Copyright (c) 2013, Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <linux/init.h>
#include <linux/err.h>
#include <linux/module.h>
#include <linux/time.h>
#include <linux/wait.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/dma-mapping.h>
#include <linux/of.h>
#include <sound/core.h>
#include <sound/soc.h>
#include <sound/soc-dapm.h>
#include <sound/pcm.h>
#include <sound/timer.h>
#include <sound/initval.h>
#include <sound/control.h>
#include <sound/q6lsm.h>
#include <sound/lsm_params.h>
#include "msm-pcm-routing-v2.h"
struct lsm_priv {
struct snd_pcm_substream *substream;
struct lsm_client *lsm_client;
struct snd_lsm_event_status *event_status;
spinlock_t event_lock;
wait_queue_head_t event_wait;
unsigned long event_avail;
atomic_t event_wait_stop;
};
static void lsm_event_handler(uint32_t opcode, uint32_t token,
void *payload, void *priv)
{
unsigned long flags;
struct snd_lsm_event_status *event_status;
struct lsm_priv *prtd = priv;
struct snd_pcm_substream *substream = prtd->substream;
pr_debug("%s: enter opcode 0x%x\n", __func__, opcode);
switch (opcode) {
case LSM_SESSION_EVENT_DETECTION_STATUS:
event_status = payload;
spin_lock_irqsave(&prtd->event_lock, flags);
prtd->event_status = krealloc(prtd->event_status,
sizeof(*event_status) +
event_status->payload_size,
GFP_ATOMIC);
if (likely(prtd->event_status)) {
memcpy(prtd->event_status, event_status,
sizeof(*event_status) +
event_status->payload_size);
prtd->event_avail = 1;
spin_unlock_irqrestore(&prtd->event_lock, flags);
wake_up(&prtd->event_wait);
} else {
spin_unlock_irqrestore(&prtd->event_lock, flags);
pr_err("%s: Couldn't allocate %d bytes of memory\n",
__func__, event_status->payload_size);
}
if (substream->timer_running)
snd_timer_interrupt(substream->timer, 1);
break;
default:
pr_debug("%s: Unsupported Event opcode 0x%x\n", __func__,
opcode);
break;
}
}
static int msm_lsm_ioctl(struct snd_pcm_substream *substream,
unsigned int cmd, void *arg)
{
unsigned long flags;
int ret;
struct snd_lsm_sound_model snd_model;
int rc = 0;
int xchg = 0;
int size = 0;
struct snd_lsm_event_status *event_status = NULL;
struct snd_pcm_runtime *runtime = substream->runtime;
struct lsm_priv *prtd = runtime->private_data;
struct snd_lsm_event_status *user = arg;
pr_debug("%s: enter cmd %x\n", __func__, cmd);
switch (cmd) {
case SNDRV_LSM_REG_SND_MODEL:
pr_debug("%s: Registering sound model\n", __func__);
if (copy_from_user(&snd_model, (void *)arg,
sizeof(struct snd_lsm_sound_model))) {
rc = -EFAULT;
pr_err("%s: copy from user failed, size %d\n", __func__,
sizeof(struct snd_lsm_sound_model));
break;
}
rc = q6lsm_snd_model_buf_alloc(prtd->lsm_client,
snd_model.data_size);
if (rc) {
pr_err("%s: q6lsm buffer alloc failed, size %d\n",
__func__, snd_model.data_size);
break;
}
if (copy_from_user(prtd->lsm_client->sound_model.data,
snd_model.data, snd_model.data_size)) {
pr_err("%s: copy from user data failed data %p size %d\n",
__func__, snd_model.data, snd_model.data_size);
rc = -EFAULT;
break;
}
rc = q6lsm_register_sound_model(prtd->lsm_client,
snd_model.detection_mode,
snd_model.min_keyw_confidence,
snd_model.min_user_confidence,
snd_model.detect_failure);
if (rc < 0) {
pr_err("%s: q6lsm_register_sound_model failed =%d\n",
__func__, rc);
q6lsm_snd_model_buf_free(prtd->lsm_client);
}
break;
case SNDRV_LSM_DEREG_SND_MODEL:
pr_debug("%s: Deregistering sound model\n", __func__);
rc = q6lsm_deregister_sound_model(prtd->lsm_client);
break;
case SNDRV_LSM_EVENT_STATUS:
pr_debug("%s: Get event status\n", __func__);
atomic_set(&prtd->event_wait_stop, 0);
rc = wait_event_interruptible(prtd->event_wait,
(cmpxchg(&prtd->event_avail, 1, 0) ||
(xchg = atomic_cmpxchg(&prtd->event_wait_stop,
1, 0))));
pr_debug("%s: wait_event_interruptible %d event_wait_stop %d\n",
__func__, rc, xchg);
if (!rc && !xchg) {
pr_debug("%s: New event available %ld\n", __func__,
prtd->event_avail);
spin_lock_irqsave(&prtd->event_lock, flags);
if (prtd->event_status) {
size = sizeof(*event_status) +
prtd->event_status->payload_size;
event_status = kmemdup(prtd->event_status, size,
GFP_ATOMIC);
}
spin_unlock_irqrestore(&prtd->event_lock, flags);
if (!event_status) {
pr_err("%s: Couldn't allocate %d bytes\n",
__func__, size);
/*
* Don't use -ENOMEM as userspace will check
* it for increasing buffer
*/
rc = -EFAULT;
} else {
if (user->payload_size <
event_status->payload_size) {
pr_debug("%s: provided %dbytes isn't enough, needs %dbytes\n",
__func__, user->payload_size,
size);
rc = -ENOMEM;
} else if (!access_ok(VERIFY_WRITE, arg,
size)) {
rc = -EFAULT;
} else {
rc = copy_to_user(arg, event_status,
size);
if (rc)
pr_err("%s: copy to user failed %d\n",
__func__, rc);
}
kfree(event_status);
}
} else if (xchg) {
pr_debug("%s: Wait aborted\n", __func__);
rc = 0;
}
break;
case SNDRV_LSM_ABORT_EVENT:
pr_debug("%s: Aborting event status wait\n", __func__);
atomic_set(&prtd->event_wait_stop, 1);
wake_up(&prtd->event_wait);
break;
case SNDRV_LSM_START:
pr_debug("%s: Starting LSM client session\n", __func__);
if (!prtd->lsm_client->started) {
ret = q6lsm_start(prtd->lsm_client, true);
if (!ret) {
prtd->lsm_client->started = true;
pr_debug("%s: LSM client session started\n",
__func__);
}
}
break;
case SNDRV_LSM_STOP:
pr_debug("%s: Stopping LSM client session\n", __func__);
if (prtd->lsm_client->started) {
ret = q6lsm_stop(prtd->lsm_client, true);
if (!ret)
pr_debug("%s: LSM client session stopped %d\n",
__func__, ret);
prtd->lsm_client->started = false;
}
break;
default:
pr_debug("%s: Falling into default snd_lib_ioctl cmd 0x%x\n",
__func__, cmd);
rc = snd_pcm_lib_ioctl(substream, cmd, arg);
break;
}
if (!rc)
pr_debug("%s: leave (%d)\n", __func__, rc);
else
pr_err("%s: cmd 0x%x failed %d\n", __func__, cmd, rc);
return rc;
}
static int msm_lsm_open(struct snd_pcm_substream *substream)
{
struct snd_pcm_runtime *runtime = substream->runtime;
struct lsm_priv *prtd;
int ret = 0;
pr_debug("%s\n", __func__);
prtd = kzalloc(sizeof(struct lsm_priv), GFP_KERNEL);
if (!prtd) {
pr_err("%s: Failed to allocate memory for lsm_priv\n",
__func__);
return -ENOMEM;
}
prtd->substream = substream;
prtd->lsm_client = q6lsm_client_alloc((app_cb)lsm_event_handler, prtd);
if (!prtd->lsm_client) {
pr_err("%s: Could not allocate memory\n", __func__);
kfree(prtd);
return -ENOMEM;
}
ret = q6lsm_open(prtd->lsm_client);
if (ret < 0) {
pr_err("%s: lsm open failed, %d\n", __func__, ret);
q6lsm_client_free(prtd->lsm_client);
kfree(prtd);
return ret;
}
pr_debug("%s: Session ID %d\n", __func__, prtd->lsm_client->session);
prtd->lsm_client->started = false;
spin_lock_init(&prtd->event_lock);
init_waitqueue_head(&prtd->event_wait);
runtime->private_data = prtd;
return 0;
}
static int msm_lsm_close(struct snd_pcm_substream *substream)
{
unsigned long flags;
struct snd_pcm_runtime *runtime = substream->runtime;
struct lsm_priv *prtd = runtime->private_data;
pr_debug("%s\n", __func__);
q6lsm_close(prtd->lsm_client);
q6lsm_client_free(prtd->lsm_client);
spin_lock_irqsave(&prtd->event_lock, flags);
kfree(prtd->event_status);
prtd->event_status = NULL;
spin_unlock_irqrestore(&prtd->event_lock, flags);
kfree(prtd);
return 0;
}
static struct snd_pcm_ops msm_lsm_ops = {
.open = msm_lsm_open,
.close = msm_lsm_close,
.ioctl = msm_lsm_ioctl,
};
static int msm_asoc_lsm_new(struct snd_soc_pcm_runtime *rtd)
{
struct snd_card *card = rtd->card->snd_card;
if (!card->dev->coherent_dma_mask)
card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
return 0;
}
static int msm_asoc_lsm_probe(struct snd_soc_platform *platform)
{
pr_debug("enter %s\n", __func__);
return 0;
}
static struct snd_soc_platform_driver msm_soc_platform = {
.ops = &msm_lsm_ops,
.pcm_new = msm_asoc_lsm_new,
.probe = msm_asoc_lsm_probe,
};
static __devinit int msm_lsm_probe(struct platform_device *pdev)
{
if (pdev->dev.of_node)
dev_set_name(&pdev->dev, "%s", "msm-lsm-client");
return snd_soc_register_platform(&pdev->dev, &msm_soc_platform);
}
static int msm_lsm_remove(struct platform_device *pdev)
{
snd_soc_unregister_platform(&pdev->dev);
return 0;
}
static const struct of_device_id msm_lsm_client_dt_match[] = {
{.compatible = "qcom,msm-lsm-client" },
{ }
};
static struct platform_driver msm_lsm_driver = {
.driver = {
.name = "msm-lsm-client",
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(msm_lsm_client_dt_match),
},
.probe = msm_lsm_probe,
.remove = __devexit_p(msm_lsm_remove),
};
static int __init msm_soc_platform_init(void)
{
return platform_driver_register(&msm_lsm_driver);
}
module_init(msm_soc_platform_init);
static void __exit msm_soc_platform_exit(void)
{
platform_driver_unregister(&msm_lsm_driver);
}
module_exit(msm_soc_platform_exit);
MODULE_DESCRIPTION("LSM client platform driver");
MODULE_DEVICE_TABLE(of, msm_lsm_client_dt_match);
MODULE_LICENSE("GPL v2");