summaryrefslogtreecommitdiff
path: root/sound/soc/intel/boards/sof_nuvoton_common.c
blob: 549a412f5d531a234f8919076900b7f3e5ec4116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// SPDX-License-Identifier: GPL-2.0-only
/*
 * This file defines data structures and functions used in Machine
 * Driver for Intel platforms with Nuvoton Codecs.
 *
 * Copyright 2023 Intel Corporation.
 */
#include <linux/module.h>
#include <sound/sof.h>
#include "sof_nuvoton_common.h"

/*
 * Nuvoton NAU8318
 */
static const struct snd_kcontrol_new nau8318_kcontrols[] = {
	SOC_DAPM_PIN_SWITCH("Spk"),
};

static const struct snd_soc_dapm_widget nau8318_widgets[] = {
	SND_SOC_DAPM_SPK("Spk", NULL),
};

static const struct snd_soc_dapm_route nau8318_routes[] = {
	{ "Spk", NULL, "Speaker" },
};

static struct snd_soc_dai_link_component nau8318_components[] = {
	{
		.name = NAU8318_DEV0_NAME,
		.dai_name = NAU8318_CODEC_DAI,
	}
};

static int nau8318_init(struct snd_soc_pcm_runtime *rtd)
{
	struct snd_soc_card *card = rtd->card;
	int ret;

	ret = snd_soc_dapm_new_controls(&card->dapm, nau8318_widgets,
					ARRAY_SIZE(nau8318_widgets));
	if (ret) {
		dev_err(rtd->dev, "fail to add nau8318 widgets, ret %d\n", ret);
		return ret;
	}

	ret = snd_soc_add_card_controls(card, nau8318_kcontrols,
					ARRAY_SIZE(nau8318_kcontrols));
	if (ret) {
		dev_err(rtd->dev, "fail to add nau8318 kcontrols, ret %d\n", ret);
		return ret;
	}

	ret = snd_soc_dapm_add_routes(&card->dapm, nau8318_routes,
				      ARRAY_SIZE(nau8318_routes));

	if (ret) {
		dev_err(rtd->dev, "fail to add nau8318 routes, ret %d\n", ret);
		return ret;
	}

	return ret;
}

void nau8318_set_dai_link(struct snd_soc_dai_link *link)
{
	link->codecs = nau8318_components;
	link->num_codecs = ARRAY_SIZE(nau8318_components);
	link->init = nau8318_init;
}
EXPORT_SYMBOL_NS(nau8318_set_dai_link, SND_SOC_INTEL_SOF_NUVOTON_COMMON);

MODULE_DESCRIPTION("ASoC Intel SOF Nuvoton helpers");
MODULE_LICENSE("GPL");