Pierre-Louis Bossart | e149ca2 | 2020-05-01 09:58:50 -0500 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only |
Kuninori Morimoto | 7730bb1 | 2018-07-02 06:24:04 +0000 | [diff] [blame] | 2 | * |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 3 | * Copyright (C) 2013-15, Intel Corporation. All rights reserved. |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 4 | */ |
| 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 Bossart | 845ab40 | 2018-01-04 16:35:52 -0600 | [diff] [blame] | 11 | #include <linux/mod_devicetable.h> |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 12 | |
| 13 | struct 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 Bossart | 2be2d57 | 2018-01-11 13:52:09 -0600 | [diff] [blame] | 21 | /* 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 Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 24 | #if IS_ENABLED(CONFIG_ACPI) |
Pierre-Louis Bossart | 5e484ec | 2019-01-25 14:16:17 -0600 | [diff] [blame] | 25 | /* acpi match */ |
| 26 | struct snd_soc_acpi_mach * |
| 27 | snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines); |
| 28 | |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 29 | bool snd_soc_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN], |
| 30 | struct snd_soc_acpi_package_context *ctx); |
Pierre-Louis Bossart | 5e484ec | 2019-01-25 14:16:17 -0600 | [diff] [blame] | 31 | |
| 32 | /* check all codecs */ |
| 33 | struct snd_soc_acpi_mach *snd_soc_acpi_codec_list(void *arg); |
| 34 | |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 35 | #else |
Pierre-Louis Bossart | 5e484ec | 2019-01-25 14:16:17 -0600 | [diff] [blame] | 36 | /* acpi match */ |
| 37 | static inline struct snd_soc_acpi_mach * |
| 38 | snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines) |
| 39 | { |
| 40 | return NULL; |
| 41 | } |
| 42 | |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 43 | static inline bool |
| 44 | snd_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 Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 49 | |
Pierre-Louis Bossart | 5e484ec | 2019-01-25 14:16:17 -0600 | [diff] [blame] | 50 | /* check all codecs */ |
| 51 | static inline struct snd_soc_acpi_mach *snd_soc_acpi_codec_list(void *arg) |
| 52 | { |
| 53 | return NULL; |
| 54 | } |
| 55 | #endif |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 56 | |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 57 | /** |
Pierre-Louis Bossart | 8679284 | 2018-11-01 16:34:48 -0500 | [diff] [blame] | 58 | * snd_soc_acpi_mach_params: interface for machine driver configuration |
| 59 | * |
| 60 | * @acpi_ipc_irq_index: used for BYT-CR detection |
| 61 | * @platform: string used for HDaudio codec support |
| 62 | * @codec_mask: used for HDAudio support |
Kai Vehmanen | 7de9a47 | 2019-10-29 15:40:11 +0200 | [diff] [blame] | 63 | * @common_hdmi_codec_drv: use commom HDAudio HDMI codec driver |
Pierre-Louis Bossart | efb6f31 | 2020-01-10 16:25:25 -0600 | [diff] [blame] | 64 | * @link_mask: links enabled on the board |
| 65 | * @links: array of link _ADR descriptors, null terminated |
Pierre-Louis Bossart | 8679284 | 2018-11-01 16:34:48 -0500 | [diff] [blame] | 66 | */ |
| 67 | struct snd_soc_acpi_mach_params { |
| 68 | u32 acpi_ipc_irq_index; |
| 69 | const char *platform; |
| 70 | u32 codec_mask; |
Pierre-Louis Bossart | b92826f | 2018-11-16 18:47:05 -0600 | [diff] [blame] | 71 | u32 dmic_num; |
Kai Vehmanen | 7de9a47 | 2019-10-29 15:40:11 +0200 | [diff] [blame] | 72 | bool common_hdmi_codec_drv; |
Pierre-Louis Bossart | efb6f31 | 2020-01-10 16:25:25 -0600 | [diff] [blame] | 73 | u32 link_mask; |
| 74 | const struct snd_soc_acpi_link_adr *links; |
| 75 | }; |
| 76 | |
| 77 | /** |
Pierre-Louis Bossart | 004bd41 | 2020-03-25 16:50:17 -0500 | [diff] [blame] | 78 | * snd_soc_acpi_endpoint - endpoint descriptor |
| 79 | * @num: endpoint number (mandatory, unique per device) |
| 80 | * @aggregated: 0 (independent) or 1 (logically grouped) |
| 81 | * @group_position: zero-based order (only when @aggregated is 1) |
| 82 | * @group_id: platform-unique group identifier (only when @aggregrated is 1) |
| 83 | */ |
| 84 | struct snd_soc_acpi_endpoint { |
| 85 | u8 num; |
| 86 | u8 aggregated; |
| 87 | u8 group_position; |
| 88 | u8 group_id; |
| 89 | }; |
| 90 | |
| 91 | /** |
| 92 | * snd_soc_acpi_adr_device - descriptor for _ADR-enumerated device |
| 93 | * @adr: 64 bit ACPI _ADR value |
| 94 | * @num_endpoints: number of endpoints for this device |
| 95 | * @endpoints: array of endpoints |
| 96 | */ |
| 97 | struct snd_soc_acpi_adr_device { |
| 98 | const u64 adr; |
| 99 | const u8 num_endpoints; |
| 100 | const struct snd_soc_acpi_endpoint *endpoints; |
| 101 | }; |
| 102 | |
| 103 | /** |
| 104 | * snd_soc_acpi_link_adr - ACPI-based list of _ADR enumerated devices |
Pierre-Louis Bossart | efb6f31 | 2020-01-10 16:25:25 -0600 | [diff] [blame] | 105 | * @mask: one bit set indicates the link this list applies to |
Pierre-Louis Bossart | 004bd41 | 2020-03-25 16:50:17 -0500 | [diff] [blame] | 106 | * @num_adr: ARRAY_SIZE of devices |
| 107 | * @adr_d: array of devices |
| 108 | * |
| 109 | * The number of devices per link can be more than 1, e.g. in SoundWire |
| 110 | * multi-drop configurations. |
Pierre-Louis Bossart | efb6f31 | 2020-01-10 16:25:25 -0600 | [diff] [blame] | 111 | */ |
| 112 | |
| 113 | struct snd_soc_acpi_link_adr { |
| 114 | const u32 mask; |
| 115 | const u32 num_adr; |
Pierre-Louis Bossart | 004bd41 | 2020-03-25 16:50:17 -0500 | [diff] [blame] | 116 | const struct snd_soc_acpi_adr_device *adr_d; |
Pierre-Louis Bossart | 8679284 | 2018-11-01 16:34:48 -0500 | [diff] [blame] | 117 | }; |
| 118 | |
| 119 | /** |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 120 | * snd_soc_acpi_mach: ACPI-based machine descriptor. Most of the fields are |
| 121 | * related to the hardware, except for the firmware and topology file names. |
Pierre-Louis Bossart | 976b5a0 | 2017-10-12 18:49:40 -0500 | [diff] [blame] | 122 | * A platform supported by legacy and Sound Open Firmware (SOF) would expose |
| 123 | * all firmware/topology related fields. |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 124 | * |
| 125 | * @id: ACPI ID (usually the codec's) used to find a matching machine driver. |
Pierre-Louis Bossart | af78cec | 2019-09-16 16:42:40 -0500 | [diff] [blame] | 126 | * @link_mask: describes required board layout, e.g. for SoundWire. |
Pierre-Louis Bossart | efb6f31 | 2020-01-10 16:25:25 -0600 | [diff] [blame] | 127 | * @links: array of link _ADR descriptors, null terminated. |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 128 | * @drv_name: machine driver name |
Pierre-Louis Bossart | 976b5a0 | 2017-10-12 18:49:40 -0500 | [diff] [blame] | 129 | * @fw_filename: firmware file name. Used when SOF is not enabled. |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 130 | * @board: board name |
| 131 | * @machine_quirk: pointer to quirk, usually based on DMI information when |
| 132 | * ACPI ID alone is not sufficient, wrong or misleading |
| 133 | * @quirk_data: data used to uniquely identify a machine, usually a list of |
| 134 | * audio codecs whose presence if checked with ACPI |
| 135 | * @pdata: intended for platform data or machine specific-ops. This structure |
| 136 | * is not constant since this field may be updated at run-time |
Pierre-Louis Bossart | 976b5a0 | 2017-10-12 18:49:40 -0500 | [diff] [blame] | 137 | * @sof_fw_filename: Sound Open Firmware file name, if enabled |
| 138 | * @sof_tplg_filename: Sound Open Firmware topology file name, if enabled |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 139 | */ |
| 140 | /* Descriptor for SST ASoC machine driver */ |
| 141 | struct snd_soc_acpi_mach { |
| 142 | const u8 id[ACPI_ID_LEN]; |
Pierre-Louis Bossart | af78cec | 2019-09-16 16:42:40 -0500 | [diff] [blame] | 143 | const u32 link_mask; |
Pierre-Louis Bossart | efb6f31 | 2020-01-10 16:25:25 -0600 | [diff] [blame] | 144 | const struct snd_soc_acpi_link_adr *links; |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 145 | const char *drv_name; |
| 146 | const char *fw_filename; |
| 147 | const char *board; |
| 148 | struct snd_soc_acpi_mach * (*machine_quirk)(void *arg); |
| 149 | const void *quirk_data; |
| 150 | void *pdata; |
Pierre-Louis Bossart | 8679284 | 2018-11-01 16:34:48 -0500 | [diff] [blame] | 151 | struct snd_soc_acpi_mach_params mach_params; |
Pierre-Louis Bossart | 976b5a0 | 2017-10-12 18:49:40 -0500 | [diff] [blame] | 152 | const char *sof_fw_filename; |
| 153 | const char *sof_tplg_filename; |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 154 | }; |
| 155 | |
| 156 | #define SND_SOC_ACPI_MAX_CODECS 3 |
| 157 | |
| 158 | /** |
| 159 | * struct snd_soc_acpi_codecs: Structure to hold secondary codec information |
| 160 | * apart from the matched one, this data will be passed to the quirk function |
| 161 | * to match with the ACPI detected devices |
| 162 | * |
| 163 | * @num_codecs: number of secondary codecs used in the platform |
| 164 | * @codecs: holds the codec IDs |
| 165 | * |
| 166 | */ |
| 167 | struct snd_soc_acpi_codecs { |
| 168 | int num_codecs; |
| 169 | u8 codecs[SND_SOC_ACPI_MAX_CODECS][ACPI_ID_LEN]; |
| 170 | }; |
| 171 | |
Pierre-Louis Bossart | 7feb2f7 | 2017-10-12 18:49:38 -0500 | [diff] [blame] | 172 | #endif |