blob: cbd7ea48837b246ddcface067b0eff746fec59da [file] [log] [blame]
Kuninori Morimoto7730bb12018-07-02 06:24:04 +00001// SPDX-License-Identifier: GPL-2.0
2//
3// soc-apci.c - support for ACPI enumeration.
4//
5// Copyright (c) 2013-15, Intel Corporation.
Vinod Koul95f09802015-11-05 21:34:11 +05306
Paul Gortmaker261e9082019-04-13 11:15:18 -04007#include <linux/export.h>
8#include <linux/module.h>
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -05009#include <sound/soc-acpi.h>
Vinod Koul95f09802015-11-05 21:34:11 +053010
Brent Lucafa39b2021-10-30 01:14:04 +080011static bool snd_soc_acpi_id_present(struct snd_soc_acpi_mach *machine)
12{
13 const struct snd_soc_acpi_codecs *comp_ids = machine->comp_ids;
14 int i;
15
16 if (machine->id[0]) {
17 if (acpi_dev_present(machine->id, NULL, -1))
18 return true;
19 }
20
21 if (comp_ids) {
22 for (i = 0; i < comp_ids->num_codecs; i++) {
Hans de Goede28c916a2021-11-18 16:30:14 +010023 if (acpi_dev_present(comp_ids->codecs[i], NULL, -1)) {
24 strscpy(machine->id, comp_ids->codecs[i], ACPI_ID_LEN);
Brent Lucafa39b2021-10-30 01:14:04 +080025 return true;
Hans de Goede28c916a2021-11-18 16:30:14 +010026 }
Brent Lucafa39b2021-10-30 01:14:04 +080027 }
28 }
29
30 return false;
31}
32
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050033struct snd_soc_acpi_mach *
34snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines)
Vinod Koul95f09802015-11-05 21:34:11 +053035{
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050036 struct snd_soc_acpi_mach *mach;
Keyon Jiea3e620f2018-11-16 18:47:04 -060037 struct snd_soc_acpi_mach *mach_alt;
Vinod Koul95f09802015-11-05 21:34:11 +053038
Brent Lucafa39b2021-10-30 01:14:04 +080039 for (mach = machines; mach->id[0] || mach->comp_ids; mach++) {
40 if (snd_soc_acpi_id_present(mach)) {
Keyon Jiea3e620f2018-11-16 18:47:04 -060041 if (mach->machine_quirk) {
42 mach_alt = mach->machine_quirk(mach);
43 if (!mach_alt)
44 continue; /* not full match, ignore */
45 mach = mach_alt;
46 }
47
Pierre-Louis Bossart5c256042018-01-05 14:55:33 -060048 return mach;
Naveen M7827d662017-05-15 13:42:14 +053049 }
50 }
Vinod Koul95f09802015-11-05 21:34:11 +053051 return NULL;
52}
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050053EXPORT_SYMBOL_GPL(snd_soc_acpi_find_machine);
Vinod Koul8ceffd22016-02-08 10:45:39 +053054
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050055static acpi_status snd_soc_acpi_find_package(acpi_handle handle, u32 level,
56 void *context, void **ret)
Pierre-Louis Bossart34218942016-11-12 18:07:44 -060057{
58 struct acpi_device *adev;
Pierre-Louis Bossart59ce3232021-04-16 14:11:40 -050059 acpi_status status;
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050060 struct snd_soc_acpi_package_context *pkg_ctx = context;
Pierre-Louis Bossart34218942016-11-12 18:07:44 -060061
62 pkg_ctx->data_valid = false;
63
64 if (acpi_bus_get_device(handle, &adev))
65 return AE_OK;
66
67 if (adev->status.present && adev->status.functional) {
68 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
69 union acpi_object *myobj = NULL;
70
71 status = acpi_evaluate_object_typed(handle, pkg_ctx->name,
72 NULL, &buffer,
73 ACPI_TYPE_PACKAGE);
74 if (ACPI_FAILURE(status))
75 return AE_OK;
76
77 myobj = buffer.pointer;
78 if (!myobj || myobj->package.count != pkg_ctx->length) {
79 kfree(buffer.pointer);
80 return AE_OK;
81 }
82
83 status = acpi_extract_package(myobj,
84 pkg_ctx->format, pkg_ctx->state);
85 if (ACPI_FAILURE(status)) {
86 kfree(buffer.pointer);
87 return AE_OK;
88 }
89
90 kfree(buffer.pointer);
91 pkg_ctx->data_valid = true;
92 return AE_CTRL_TERMINATE;
93 }
94
95 return AE_OK;
96}
97
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050098bool snd_soc_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN],
99 struct snd_soc_acpi_package_context *ctx)
Pierre-Louis Bossart34218942016-11-12 18:07:44 -0600100{
101 acpi_status status;
102
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500103 status = acpi_get_devices(hid, snd_soc_acpi_find_package, ctx, NULL);
Pierre-Louis Bossart34218942016-11-12 18:07:44 -0600104
105 if (ACPI_FAILURE(status) || !ctx->data_valid)
106 return false;
107
108 return true;
109}
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500110EXPORT_SYMBOL_GPL(snd_soc_acpi_find_package_from_hid);
Pierre-Louis Bossart34218942016-11-12 18:07:44 -0600111
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500112struct snd_soc_acpi_mach *snd_soc_acpi_codec_list(void *arg)
Naveen M54746da2017-05-15 13:42:15 +0530113{
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500114 struct snd_soc_acpi_mach *mach = arg;
115 struct snd_soc_acpi_codecs *codec_list =
116 (struct snd_soc_acpi_codecs *) mach->quirk_data;
Naveen M54746da2017-05-15 13:42:15 +0530117 int i;
118
119 if (mach->quirk_data == NULL)
120 return mach;
121
122 for (i = 0; i < codec_list->num_codecs; i++) {
Jeremy Cline0d5ea122018-01-05 14:55:34 -0600123 if (!acpi_dev_present(codec_list->codecs[i], NULL, -1))
Naveen M54746da2017-05-15 13:42:15 +0530124 return NULL;
125 }
126
127 return mach;
128}
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500129EXPORT_SYMBOL_GPL(snd_soc_acpi_codec_list);
Naveen M54746da2017-05-15 13:42:15 +0530130
Vinod Koul8ceffd22016-02-08 10:45:39 +0530131MODULE_LICENSE("GPL v2");
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500132MODULE_DESCRIPTION("ALSA SoC ACPI module");