2024-03-26 09:04:19 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2024-08-01 02:14:26 -07:00
|
|
|
// This file incorporates work covered by the following copyright notice:
|
2024-03-26 09:04:19 -07:00
|
|
|
// Copyright (c) 2024 Intel Corporation
|
2024-08-01 02:14:26 -07:00
|
|
|
// Copyright (c) 2024 Advanced Micro Devices, Inc.
|
2024-03-26 09:04:19 -07:00
|
|
|
|
|
|
|
/*
|
2024-08-01 02:14:26 -07:00
|
|
|
* soc_sdw_rt_dmic - Helpers to handle Realtek SDW DMIC from generic machine driver
|
2024-03-26 09:04:19 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <sound/soc.h>
|
|
|
|
#include <sound/soc-acpi.h>
|
2024-08-01 02:14:26 -07:00
|
|
|
#include <sound/soc_sdw_utils.h>
|
2024-03-26 09:04:19 -07:00
|
|
|
|
2024-08-01 02:14:19 -07:00
|
|
|
int asoc_sdw_rt_dmic_rtd_init(struct snd_soc_pcm_runtime *rtd, struct snd_soc_dai *dai)
|
2024-03-26 09:04:19 -07:00
|
|
|
{
|
|
|
|
struct snd_soc_card *card = rtd->card;
|
|
|
|
struct snd_soc_component *component;
|
|
|
|
char *mic_name;
|
|
|
|
|
2024-05-27 12:35:39 -07:00
|
|
|
component = dai->component;
|
2024-03-26 09:04:19 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* rt715-sdca (aka rt714) is a special case that uses different name in card->components
|
|
|
|
* and component->name_prefix.
|
|
|
|
*/
|
|
|
|
if (!strcmp(component->name_prefix, "rt714"))
|
|
|
|
mic_name = devm_kasprintf(card->dev, GFP_KERNEL, "rt715-sdca");
|
|
|
|
else
|
|
|
|
mic_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s", component->name_prefix);
|
|
|
|
|
|
|
|
card->components = devm_kasprintf(card->dev, GFP_KERNEL,
|
|
|
|
"%s mic:%s", card->components,
|
|
|
|
mic_name);
|
|
|
|
if (!card->components)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
dev_dbg(card->dev, "card->components: %s\n", card->components);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2024-08-01 02:14:26 -07:00
|
|
|
EXPORT_SYMBOL_NS(asoc_sdw_rt_dmic_rtd_init, SND_SOC_SDW_UTILS);
|