xref: /openbmc/linux/sound/soc/sof/sof-pci-dev.c (revision 6db6b729)
1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2 //
3 // This file is provided under a dual BSD/GPLv2 license.  When using or
4 // redistributing this file, you may do so under either license.
5 //
6 // Copyright(c) 2018 Intel Corporation. All rights reserved.
7 //
8 // Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9 //
10 
11 #include <linux/firmware.h>
12 #include <linux/dmi.h>
13 #include <linux/module.h>
14 #include <linux/pci.h>
15 #include <linux/platform_data/x86/soc.h>
16 #include <linux/pm_runtime.h>
17 #include <sound/soc-acpi.h>
18 #include <sound/soc-acpi-intel-match.h>
19 #include <sound/sof.h>
20 #include "ops.h"
21 #include "sof-pci-dev.h"
22 
23 static char *fw_path;
24 module_param(fw_path, charp, 0444);
25 MODULE_PARM_DESC(fw_path, "alternate path for SOF firmware.");
26 
27 static char *fw_filename;
28 module_param(fw_filename, charp, 0444);
29 MODULE_PARM_DESC(fw_filename, "alternate filename for SOF firmware.");
30 
31 static char *lib_path;
32 module_param(lib_path, charp, 0444);
33 MODULE_PARM_DESC(lib_path, "alternate path for SOF firmware libraries.");
34 
35 static char *tplg_path;
36 module_param(tplg_path, charp, 0444);
37 MODULE_PARM_DESC(tplg_path, "alternate path for SOF topology.");
38 
39 static char *tplg_filename;
40 module_param(tplg_filename, charp, 0444);
41 MODULE_PARM_DESC(tplg_filename, "alternate filename for SOF topology.");
42 
43 static int sof_pci_debug;
44 module_param_named(sof_pci_debug, sof_pci_debug, int, 0444);
45 MODULE_PARM_DESC(sof_pci_debug, "SOF PCI debug options (0x0 all off)");
46 
47 static int sof_pci_ipc_type = -1;
48 module_param_named(ipc_type, sof_pci_ipc_type, int, 0444);
49 MODULE_PARM_DESC(ipc_type, "SOF IPC type (0): SOF, (1) Intel CAVS");
50 
51 static const char *sof_dmi_override_tplg_name;
52 static bool sof_dmi_use_community_key;
53 
54 #define SOF_PCI_DISABLE_PM_RUNTIME BIT(0)
55 
56 static int sof_tplg_cb(const struct dmi_system_id *id)
57 {
58 	sof_dmi_override_tplg_name = id->driver_data;
59 	return 1;
60 }
61 
62 static const struct dmi_system_id sof_tplg_table[] = {
63 	{
64 		.callback = sof_tplg_cb,
65 		.matches = {
66 			DMI_MATCH(DMI_PRODUCT_FAMILY, "Google_Volteer"),
67 			DMI_MATCH(DMI_OEM_STRING, "AUDIO-MAX98373_ALC5682I_I2S_UP4"),
68 		},
69 		.driver_data = "sof-tgl-rt5682-ssp0-max98373-ssp2.tplg",
70 	},
71 	{
72 		.callback = sof_tplg_cb,
73 		.matches = {
74 			DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"),
75 			DMI_MATCH(DMI_PRODUCT_NAME, "Alder Lake Client Platform"),
76 			DMI_MATCH(DMI_OEM_STRING, "AUDIO-ADL_MAX98373_ALC5682I_I2S"),
77 		},
78 		.driver_data = "sof-adl-rt5682-ssp0-max98373-ssp2.tplg",
79 	},
80 	{
81 		.callback = sof_tplg_cb,
82 		.matches = {
83 			DMI_MATCH(DMI_PRODUCT_FAMILY, "Google_Brya"),
84 			DMI_MATCH(DMI_OEM_STRING, "AUDIO-MAX98390_ALC5682I_I2S"),
85 		},
86 		.driver_data = "sof-adl-max98390-ssp2-rt5682-ssp0.tplg",
87 	},
88 	{
89 		.callback = sof_tplg_cb,
90 		.matches = {
91 			DMI_MATCH(DMI_PRODUCT_FAMILY, "Google_Brya"),
92 			DMI_MATCH(DMI_OEM_STRING, "AUDIO_AMP-MAX98360_ALC5682VS_I2S_2WAY"),
93 		},
94 		.driver_data = "sof-adl-max98360a-rt5682-2way.tplg",
95 	},
96 	{
97 		.callback = sof_tplg_cb,
98 		.matches = {
99 			DMI_MATCH(DMI_PRODUCT_FAMILY, "Google_Brya"),
100 			DMI_MATCH(DMI_OEM_STRING, "AUDIO-AUDIO_MAX98357_ALC5682I_I2S_2WAY"),
101 		},
102 		.driver_data = "sof-adl-max98357a-rt5682-2way.tplg",
103 	},
104 	{
105 		.callback = sof_tplg_cb,
106 		.matches = {
107 			DMI_MATCH(DMI_PRODUCT_FAMILY, "Google_Brya"),
108 			DMI_MATCH(DMI_OEM_STRING, "AUDIO-MAX98360_ALC5682I_I2S_AMP_SSP2"),
109 		},
110 		.driver_data = "sof-adl-max98357a-rt5682.tplg",
111 	},
112 	{}
113 };
114 
115 /* all Up boards use the community key */
116 static int up_use_community_key(const struct dmi_system_id *id)
117 {
118 	sof_dmi_use_community_key = true;
119 	return 1;
120 }
121 
122 /*
123  * For ApolloLake Chromebooks we want to force the use of the Intel production key.
124  * All newer platforms use the community key
125  */
126 static int chromebook_use_community_key(const struct dmi_system_id *id)
127 {
128 	if (!soc_intel_is_apl())
129 		sof_dmi_use_community_key = true;
130 	return 1;
131 }
132 
133 static const struct dmi_system_id community_key_platforms[] = {
134 	{
135 		.ident = "Up boards",
136 		.callback = up_use_community_key,
137 		.matches = {
138 			DMI_MATCH(DMI_SYS_VENDOR, "AAEON"),
139 		}
140 	},
141 	{
142 		.ident = "Google Chromebooks",
143 		.callback = chromebook_use_community_key,
144 		.matches = {
145 			DMI_MATCH(DMI_PRODUCT_FAMILY, "Google"),
146 		}
147 	},
148 	{
149 		.ident = "Google firmware",
150 		.callback = chromebook_use_community_key,
151 		.matches = {
152 			DMI_MATCH(DMI_BIOS_VERSION, "Google"),
153 		}
154 	},
155 	{},
156 };
157 
158 const struct dev_pm_ops sof_pci_pm = {
159 	.prepare = snd_sof_prepare,
160 	.complete = snd_sof_complete,
161 	SET_SYSTEM_SLEEP_PM_OPS(snd_sof_suspend, snd_sof_resume)
162 	SET_RUNTIME_PM_OPS(snd_sof_runtime_suspend, snd_sof_runtime_resume,
163 			   snd_sof_runtime_idle)
164 };
165 EXPORT_SYMBOL_NS(sof_pci_pm, SND_SOC_SOF_PCI_DEV);
166 
167 static void sof_pci_probe_complete(struct device *dev)
168 {
169 	dev_dbg(dev, "Completing SOF PCI probe");
170 
171 	if (sof_pci_debug & SOF_PCI_DISABLE_PM_RUNTIME)
172 		return;
173 
174 	/* allow runtime_pm */
175 	pm_runtime_set_autosuspend_delay(dev, SND_SOF_SUSPEND_DELAY_MS);
176 	pm_runtime_use_autosuspend(dev);
177 
178 	/*
179 	 * runtime pm for pci device is "forbidden" by default.
180 	 * so call pm_runtime_allow() to enable it.
181 	 */
182 	pm_runtime_allow(dev);
183 
184 	/* mark last_busy for pm_runtime to make sure not suspend immediately */
185 	pm_runtime_mark_last_busy(dev);
186 
187 	/* follow recommendation in pci-driver.c to decrement usage counter */
188 	pm_runtime_put_noidle(dev);
189 }
190 
191 int sof_pci_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
192 {
193 	struct device *dev = &pci->dev;
194 	const struct sof_dev_desc *desc =
195 		(const struct sof_dev_desc *)pci_id->driver_data;
196 	struct snd_sof_pdata *sof_pdata;
197 	int ret;
198 
199 	dev_dbg(&pci->dev, "PCI DSP detected");
200 
201 	if (!desc) {
202 		dev_err(dev, "error: no matching PCI descriptor\n");
203 		return -ENODEV;
204 	}
205 
206 	if (!desc->ops) {
207 		dev_err(dev, "error: no matching PCI descriptor ops\n");
208 		return -ENODEV;
209 	}
210 
211 	sof_pdata = devm_kzalloc(dev, sizeof(*sof_pdata), GFP_KERNEL);
212 	if (!sof_pdata)
213 		return -ENOMEM;
214 
215 	ret = pcim_enable_device(pci);
216 	if (ret < 0)
217 		return ret;
218 
219 	ret = pci_request_regions(pci, "Audio DSP");
220 	if (ret < 0)
221 		return ret;
222 
223 	sof_pdata->name = pci_name(pci);
224 	sof_pdata->desc = desc;
225 	sof_pdata->dev = dev;
226 
227 	sof_pdata->ipc_type = desc->ipc_default;
228 
229 	if (sof_pci_ipc_type < 0) {
230 		sof_pdata->ipc_type = desc->ipc_default;
231 	} else {
232 		dev_info(dev, "overriding default IPC %d to requested %d\n",
233 			 desc->ipc_default, sof_pci_ipc_type);
234 		if (sof_pci_ipc_type >= SOF_IPC_TYPE_COUNT) {
235 			dev_err(dev, "invalid request value %d\n", sof_pci_ipc_type);
236 			ret = -EINVAL;
237 			goto out;
238 		}
239 		if (!(BIT(sof_pci_ipc_type) & desc->ipc_supported_mask)) {
240 			dev_err(dev, "invalid request value %d, supported mask is %#x\n",
241 				sof_pci_ipc_type, desc->ipc_supported_mask);
242 			ret = -EINVAL;
243 			goto out;
244 		}
245 		sof_pdata->ipc_type = sof_pci_ipc_type;
246 	}
247 
248 	if (fw_filename) {
249 		sof_pdata->fw_filename = fw_filename;
250 
251 		dev_dbg(dev, "Module parameter used, changed fw filename to %s\n",
252 			sof_pdata->fw_filename);
253 	} else {
254 		sof_pdata->fw_filename = desc->default_fw_filename[sof_pdata->ipc_type];
255 	}
256 
257 	/*
258 	 * for platforms using the SOF community key, change the
259 	 * default path automatically to pick the right files from the
260 	 * linux-firmware tree. This can be overridden with the
261 	 * fw_path kernel parameter, e.g. for developers.
262 	 */
263 
264 	/* alternate fw and tplg filenames ? */
265 	if (fw_path) {
266 		sof_pdata->fw_filename_prefix = fw_path;
267 
268 		dev_dbg(dev,
269 			"Module parameter used, changed fw path to %s\n",
270 			sof_pdata->fw_filename_prefix);
271 
272 	} else if (dmi_check_system(community_key_platforms) && sof_dmi_use_community_key) {
273 		sof_pdata->fw_filename_prefix =
274 			devm_kasprintf(dev, GFP_KERNEL, "%s/%s",
275 				       sof_pdata->desc->default_fw_path[sof_pdata->ipc_type],
276 				       "community");
277 
278 		dev_dbg(dev,
279 			"Platform uses community key, changed fw path to %s\n",
280 			sof_pdata->fw_filename_prefix);
281 	} else {
282 		sof_pdata->fw_filename_prefix =
283 			sof_pdata->desc->default_fw_path[sof_pdata->ipc_type];
284 	}
285 
286 	if (lib_path) {
287 		sof_pdata->fw_lib_prefix = lib_path;
288 
289 		dev_dbg(dev, "Module parameter used, changed fw_lib path to %s\n",
290 			sof_pdata->fw_lib_prefix);
291 
292 	} else if (sof_pdata->desc->default_lib_path[sof_pdata->ipc_type]) {
293 		if (dmi_check_system(community_key_platforms) && sof_dmi_use_community_key) {
294 			sof_pdata->fw_lib_prefix =
295 				devm_kasprintf(dev, GFP_KERNEL, "%s/%s",
296 					sof_pdata->desc->default_lib_path[sof_pdata->ipc_type],
297 					"community");
298 
299 			dev_dbg(dev,
300 				"Platform uses community key, changed fw_lib path to %s\n",
301 				sof_pdata->fw_lib_prefix);
302 		} else {
303 			sof_pdata->fw_lib_prefix =
304 				sof_pdata->desc->default_lib_path[sof_pdata->ipc_type];
305 		}
306 	}
307 
308 	if (tplg_path)
309 		sof_pdata->tplg_filename_prefix = tplg_path;
310 	else
311 		sof_pdata->tplg_filename_prefix =
312 			sof_pdata->desc->default_tplg_path[sof_pdata->ipc_type];
313 
314 	/*
315 	 * the topology filename will be provided in the machine descriptor, unless
316 	 * it is overridden by a module parameter or DMI quirk.
317 	 */
318 	if (tplg_filename) {
319 		sof_pdata->tplg_filename = tplg_filename;
320 
321 		dev_dbg(dev, "Module parameter used, changed tplg filename to %s\n",
322 			sof_pdata->tplg_filename);
323 	} else {
324 		dmi_check_system(sof_tplg_table);
325 		if (sof_dmi_override_tplg_name)
326 			sof_pdata->tplg_filename = sof_dmi_override_tplg_name;
327 	}
328 
329 	/* set callback to be called on successful device probe to enable runtime_pm */
330 	sof_pdata->sof_probe_complete = sof_pci_probe_complete;
331 
332 	/* call sof helper for DSP hardware probe */
333 	ret = snd_sof_device_probe(dev, sof_pdata);
334 
335 out:
336 	if (ret)
337 		pci_release_regions(pci);
338 
339 	return ret;
340 }
341 EXPORT_SYMBOL_NS(sof_pci_probe, SND_SOC_SOF_PCI_DEV);
342 
343 void sof_pci_remove(struct pci_dev *pci)
344 {
345 	/* call sof helper for DSP hardware remove */
346 	snd_sof_device_remove(&pci->dev);
347 
348 	/* follow recommendation in pci-driver.c to increment usage counter */
349 	if (snd_sof_device_probe_completed(&pci->dev) &&
350 	    !(sof_pci_debug & SOF_PCI_DISABLE_PM_RUNTIME))
351 		pm_runtime_get_noresume(&pci->dev);
352 
353 	/* release pci regions and disable device */
354 	pci_release_regions(pci);
355 }
356 EXPORT_SYMBOL_NS(sof_pci_remove, SND_SOC_SOF_PCI_DEV);
357 
358 void sof_pci_shutdown(struct pci_dev *pci)
359 {
360 	snd_sof_device_shutdown(&pci->dev);
361 }
362 EXPORT_SYMBOL_NS(sof_pci_shutdown, SND_SOC_SOF_PCI_DEV);
363 
364 MODULE_LICENSE("Dual BSD/GPL");
365