blob: ac0893df9c76d4025046fbb1d0ce3f02fac322c2 [file] [log] [blame]
Pierre-Louis Bossarte149ca22020-05-01 09:58:50 -05001/* SPDX-License-Identifier: GPL-2.0-only
Kuninori Morimoto7730bb12018-07-02 06:24:04 +00002 *
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -05003 * Copyright (C) 2013-15, Intel Corporation. All rights reserved.
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -05004 */
5
6#ifndef __LINUX_SND_SOC_ACPI_H
7#define __LINUX_SND_SOC_ACPI_H
8
9#include <linux/stddef.h>
10#include <linux/acpi.h>
Pierre-Louis Bossart845ab402018-01-04 16:35:52 -060011#include <linux/mod_devicetable.h>
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050012
13struct snd_soc_acpi_package_context {
14 char *name; /* package name */
15 int length; /* number of elements */
16 struct acpi_buffer *format;
17 struct acpi_buffer *state;
18 bool data_valid;
19};
20
Pierre-Louis Bossart2be2d572018-01-11 13:52:09 -060021/* codec name is used in DAIs is i2c-<HID>:00 with HID being 8 chars */
22#define SND_ACPI_I2C_ID_LEN (4 + ACPI_ID_LEN + 3 + 1)
23
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050024#if IS_ENABLED(CONFIG_ACPI)
Pierre-Louis Bossart5e484ec2019-01-25 14:16:17 -060025/* acpi match */
26struct snd_soc_acpi_mach *
27snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines);
28
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050029bool snd_soc_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN],
30 struct snd_soc_acpi_package_context *ctx);
Pierre-Louis Bossart5e484ec2019-01-25 14:16:17 -060031
32/* check all codecs */
33struct snd_soc_acpi_mach *snd_soc_acpi_codec_list(void *arg);
34
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050035#else
Pierre-Louis Bossart5e484ec2019-01-25 14:16:17 -060036/* acpi match */
37static inline struct snd_soc_acpi_mach *
38snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines)
39{
40 return NULL;
41}
42
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050043static inline bool
44snd_soc_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN],
45 struct snd_soc_acpi_package_context *ctx)
46{
47 return false;
48}
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050049
Pierre-Louis Bossart5e484ec2019-01-25 14:16:17 -060050/* check all codecs */
51static inline struct snd_soc_acpi_mach *snd_soc_acpi_codec_list(void *arg)
52{
53 return NULL;
54}
55#endif
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050056
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -050057/**
Pierre-Louis Bossart86792842018-11-01 16:34:48 -050058 * snd_soc_acpi_mach_params: interface for machine driver configuration
59 *
60 * @acpi_ipc_irq_index: used for BYT-CR detection
Pierre-Louis Bossart135ab452020-08-24 15:09:12 -050061 * @platform: string used for HDAudio codec support
Pierre-Louis Bossart86792842018-11-01 16:34:48 -050062 * @codec_mask: used for HDAudio support
Kai Vehmanen7de9a472019-10-29 15:40:11 +020063 * @common_hdmi_codec_drv: use commom HDAudio HDMI codec driver
Pierre-Louis Bossartefb6f312020-01-10 16:25:25 -060064 * @link_mask: links enabled on the board
65 * @links: array of link _ADR descriptors, null terminated
Pierre-Louis Bossartca6a0122021-04-09 15:01:17 -070066 * @num_dai_drivers: number of elements in @dai_drivers
67 * @dai_drivers: pointer to dai_drivers, used e.g. in nocodec mode
Pierre-Louis Bossart86792842018-11-01 16:34:48 -050068 */
69struct snd_soc_acpi_mach_params {
70 u32 acpi_ipc_irq_index;
71 const char *platform;
72 u32 codec_mask;
Pierre-Louis Bossartb92826f2018-11-16 18:47:05 -060073 u32 dmic_num;
Kai Vehmanen7de9a472019-10-29 15:40:11 +020074 bool common_hdmi_codec_drv;
Pierre-Louis Bossartefb6f312020-01-10 16:25:25 -060075 u32 link_mask;
76 const struct snd_soc_acpi_link_adr *links;
Pierre-Louis Bossartca6a0122021-04-09 15:01:17 -070077 u32 num_dai_drivers;
78 struct snd_soc_dai_driver *dai_drivers;
Pierre-Louis Bossartefb6f312020-01-10 16:25:25 -060079};
80
81/**
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -050082 * snd_soc_acpi_endpoint - endpoint descriptor
83 * @num: endpoint number (mandatory, unique per device)
84 * @aggregated: 0 (independent) or 1 (logically grouped)
85 * @group_position: zero-based order (only when @aggregated is 1)
86 * @group_id: platform-unique group identifier (only when @aggregrated is 1)
87 */
88struct snd_soc_acpi_endpoint {
89 u8 num;
90 u8 aggregated;
91 u8 group_position;
92 u8 group_id;
93};
94
95/**
96 * snd_soc_acpi_adr_device - descriptor for _ADR-enumerated device
97 * @adr: 64 bit ACPI _ADR value
98 * @num_endpoints: number of endpoints for this device
99 * @endpoints: array of endpoints
Pierre-Louis Bossartf9380832020-09-23 11:05:11 +0300100 * @name_prefix: string used for codec controls
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500101 */
102struct snd_soc_acpi_adr_device {
103 const u64 adr;
104 const u8 num_endpoints;
105 const struct snd_soc_acpi_endpoint *endpoints;
Pierre-Louis Bossartf9380832020-09-23 11:05:11 +0300106 const char *name_prefix;
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500107};
108
109/**
110 * snd_soc_acpi_link_adr - ACPI-based list of _ADR enumerated devices
Pierre-Louis Bossartefb6f312020-01-10 16:25:25 -0600111 * @mask: one bit set indicates the link this list applies to
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500112 * @num_adr: ARRAY_SIZE of devices
113 * @adr_d: array of devices
114 *
115 * The number of devices per link can be more than 1, e.g. in SoundWire
116 * multi-drop configurations.
Pierre-Louis Bossartefb6f312020-01-10 16:25:25 -0600117 */
118
119struct snd_soc_acpi_link_adr {
120 const u32 mask;
121 const u32 num_adr;
Pierre-Louis Bossart004bd412020-03-25 16:50:17 -0500122 const struct snd_soc_acpi_adr_device *adr_d;
Pierre-Louis Bossart86792842018-11-01 16:34:48 -0500123};
124
125/**
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500126 * snd_soc_acpi_mach: ACPI-based machine descriptor. Most of the fields are
127 * related to the hardware, except for the firmware and topology file names.
Pierre-Louis Bossart976b5a02017-10-12 18:49:40 -0500128 * A platform supported by legacy and Sound Open Firmware (SOF) would expose
129 * all firmware/topology related fields.
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500130 *
131 * @id: ACPI ID (usually the codec's) used to find a matching machine driver.
Brent Lucafa39b2021-10-30 01:14:04 +0800132 * @comp_ids: list of compatible audio codecs using the same machine driver,
133 * firmware and topology
Pierre-Louis Bossartaf78cec2019-09-16 16:42:40 -0500134 * @link_mask: describes required board layout, e.g. for SoundWire.
Pierre-Louis Bossartefb6f312020-01-10 16:25:25 -0600135 * @links: array of link _ADR descriptors, null terminated.
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500136 * @drv_name: machine driver name
Pierre-Louis Bossart976b5a02017-10-12 18:49:40 -0500137 * @fw_filename: firmware file name. Used when SOF is not enabled.
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500138 * @board: board name
139 * @machine_quirk: pointer to quirk, usually based on DMI information when
140 * ACPI ID alone is not sufficient, wrong or misleading
141 * @quirk_data: data used to uniquely identify a machine, usually a list of
142 * audio codecs whose presence if checked with ACPI
143 * @pdata: intended for platform data or machine specific-ops. This structure
144 * is not constant since this field may be updated at run-time
Pierre-Louis Bossart976b5a02017-10-12 18:49:40 -0500145 * @sof_fw_filename: Sound Open Firmware file name, if enabled
146 * @sof_tplg_filename: Sound Open Firmware topology file name, if enabled
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500147 */
148/* Descriptor for SST ASoC machine driver */
149struct snd_soc_acpi_mach {
Hans de Goede28c916a2021-11-18 16:30:14 +0100150 u8 id[ACPI_ID_LEN];
Brent Lucafa39b2021-10-30 01:14:04 +0800151 const struct snd_soc_acpi_codecs *comp_ids;
Pierre-Louis Bossartaf78cec2019-09-16 16:42:40 -0500152 const u32 link_mask;
Pierre-Louis Bossartefb6f312020-01-10 16:25:25 -0600153 const struct snd_soc_acpi_link_adr *links;
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500154 const char *drv_name;
155 const char *fw_filename;
156 const char *board;
157 struct snd_soc_acpi_mach * (*machine_quirk)(void *arg);
158 const void *quirk_data;
159 void *pdata;
Pierre-Louis Bossart86792842018-11-01 16:34:48 -0500160 struct snd_soc_acpi_mach_params mach_params;
Pierre-Louis Bossart976b5a02017-10-12 18:49:40 -0500161 const char *sof_fw_filename;
162 const char *sof_tplg_filename;
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500163};
164
165#define SND_SOC_ACPI_MAX_CODECS 3
166
167/**
168 * struct snd_soc_acpi_codecs: Structure to hold secondary codec information
169 * apart from the matched one, this data will be passed to the quirk function
170 * to match with the ACPI detected devices
171 *
172 * @num_codecs: number of secondary codecs used in the platform
173 * @codecs: holds the codec IDs
174 *
175 */
176struct snd_soc_acpi_codecs {
177 int num_codecs;
178 u8 codecs[SND_SOC_ACPI_MAX_CODECS][ACPI_ID_LEN];
179};
180
Pierre-Louis Bossart644eebd2020-11-12 16:38:15 -0600181static inline bool snd_soc_acpi_sof_parent(struct device *dev)
182{
183 return dev->parent && dev->parent->driver && dev->parent->driver->name &&
Pierre-Louis Bossartc7929b12021-03-01 18:31:19 -0600184 !strncmp(dev->parent->driver->name, "sof-audio-acpi", strlen("sof-audio-acpi"));
Pierre-Louis Bossart644eebd2020-11-12 16:38:15 -0600185}
186
Pierre-Louis Bossart7feb2f72017-10-12 18:49:38 -0500187#endif