summaryrefslogtreecommitdiff
path: root/src/drivers/sof/sof.c
blob: d11f7300c05bac42d600204940e35ad1c61e42a9 (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
74
75
76
77
78
79
80
81
82
83
84
85
/* SPDX-License-Identifier: GPL-2.0-only */

#include <acpi/acpi_device.h>
#include <acpi/acpigen.h>
#include <device/device.h>
#include <device/path.h>
#include <string.h>

#include "chip.h"

static const char *get_spkr_tplg_str(unsigned int index)
{
	switch (index) {
		case 1: return "max98373";
		case 2: return "max98360a";
		case 3: return "max98357a";
		case 4: return "max98390";
		case 5: return "rt1011";
		case 6: return "rt1015";
		default: return "default";
	}
}

static const char *get_jack_tplg_str(unsigned int index)
{
	switch (index) {
		case 1: return "cs42l42";
		case 2: return "da7219";
		case 3: return "nau8825";
		case 4: return "rt5682";
		default: return "default";
	}
}

static const char *get_mic_tplg_str(unsigned int index)
{
	switch (index) {
		case 1: return "1ch";
		case 2: return "2ch-pdm0";
		case 3: return "2ch-pdm1";
		case 4: return "4ch";
		default: return "default";
	}
}

static void sof_fill_ssdt_generator(const struct device *dev)
{
	struct drivers_sof_config *config = dev->chip_info;
	const char *scope = acpi_device_scope(dev);
	struct acpi_dp *dsd;

	if (!dev->enabled || !config || !scope)
		return;

	/* Device */
	acpigen_write_scope(scope);

	/* DSD */
	dsd = acpi_dp_new_table("_DSD");
	acpi_dp_add_string(dsd, "speaker-tplg",
				get_spkr_tplg_str(config->spkr_tplg));
	acpi_dp_add_string(dsd, "hp-tplg",
				get_jack_tplg_str(config->jack_tplg));
	acpi_dp_add_string(dsd, "mic-tplg",
				get_mic_tplg_str(config->mic_tplg));
	acpi_dp_write(dsd);
	acpigen_pop_len(); /* Scope */
}


static struct device_operations sof_ops = {
	.read_resources		= noop_read_resources,
	.set_resources		= noop_set_resources,
	.acpi_fill_ssdt		= sof_fill_ssdt_generator,
};

static void sof_enable(struct device *dev)
{
	dev->ops = &sof_ops;
}

struct chip_operations drivers_sof_ops = {
	CHIP_NAME("SOF")
	.enable_dev = sof_enable
};