Merge tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / sound / soc / sof / intel / lnl.c
blob793d8539821d4669d0802412ce1db6c50e469c8e
1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2 //
3 // Copyright(c) 2023 Intel Corporation
5 /*
6 * Hardware interface for audio DSP on LunarLake.
7 */
9 #include <linux/debugfs.h>
10 #include <linux/firmware.h>
11 #include <sound/hda_register.h>
12 #include <sound/sof/ipc4/header.h>
13 #include <trace/events/sof_intel.h>
14 #include "../ipc4-priv.h"
15 #include "../ops.h"
16 #include "hda.h"
17 #include "hda-ipc.h"
18 #include "../sof-audio.h"
19 #include "mtl.h"
20 #include "lnl.h"
21 #include <sound/hda-mlink.h>
23 /* LunarLake ops */
24 struct snd_sof_dsp_ops sof_lnl_ops;
25 EXPORT_SYMBOL_NS(sof_lnl_ops, "SND_SOC_SOF_INTEL_LNL");
27 static const struct snd_sof_debugfs_map lnl_dsp_debugfs[] = {
28 {"hda", HDA_DSP_HDA_BAR, 0, 0x4000, SOF_DEBUGFS_ACCESS_ALWAYS},
29 {"pp", HDA_DSP_PP_BAR, 0, 0x1000, SOF_DEBUGFS_ACCESS_ALWAYS},
30 {"dsp", HDA_DSP_BAR, 0, 0x10000, SOF_DEBUGFS_ACCESS_ALWAYS},
31 {"fw_regs", HDA_DSP_BAR, MTL_SRAM_WINDOW_OFFSET(0), 0x1000, SOF_DEBUGFS_ACCESS_D0_ONLY},
34 /* this helps allows the DSP to setup DMIC/SSP */
35 static int hdac_bus_offload_dmic_ssp(struct hdac_bus *bus, bool enable)
37 int ret;
39 ret = hdac_bus_eml_enable_offload(bus, true,
40 AZX_REG_ML_LEPTR_ID_INTEL_SSP, enable);
41 if (ret < 0)
42 return ret;
44 ret = hdac_bus_eml_enable_offload(bus, true,
45 AZX_REG_ML_LEPTR_ID_INTEL_DMIC, enable);
46 if (ret < 0)
47 return ret;
49 return 0;
52 static int lnl_hda_dsp_probe(struct snd_sof_dev *sdev)
54 int ret;
56 ret = hda_dsp_probe(sdev);
57 if (ret < 0)
58 return ret;
60 return hdac_bus_offload_dmic_ssp(sof_to_bus(sdev), true);
63 static void lnl_hda_dsp_remove(struct snd_sof_dev *sdev)
65 int ret;
67 ret = hdac_bus_offload_dmic_ssp(sof_to_bus(sdev), false);
68 if (ret < 0)
69 dev_warn(sdev->dev,
70 "Failed to disable offload for DMIC/SSP: %d\n", ret);
72 hda_dsp_remove(sdev);
75 static int lnl_hda_dsp_resume(struct snd_sof_dev *sdev)
77 int ret;
79 ret = hda_dsp_resume(sdev);
80 if (ret < 0)
81 return ret;
83 return hdac_bus_offload_dmic_ssp(sof_to_bus(sdev), true);
86 static int lnl_hda_dsp_runtime_resume(struct snd_sof_dev *sdev)
88 int ret;
90 ret = hda_dsp_runtime_resume(sdev);
91 if (ret < 0)
92 return ret;
94 return hdac_bus_offload_dmic_ssp(sof_to_bus(sdev), true);
97 static int lnl_dsp_post_fw_run(struct snd_sof_dev *sdev)
99 if (sdev->first_boot) {
100 struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata;
102 /* Check if IMR boot is usable */
103 if (!sof_debug_check_flag(SOF_DBG_IGNORE_D3_PERSISTENT)) {
104 hda->imrboot_supported = true;
105 debugfs_create_bool("skip_imr_boot",
106 0644, sdev->debugfs_root,
107 &hda->skip_imr_boot);
111 return 0;
114 int sof_lnl_ops_init(struct snd_sof_dev *sdev)
116 struct sof_ipc4_fw_data *ipc4_data;
118 /* common defaults */
119 memcpy(&sof_lnl_ops, &sof_hda_common_ops, sizeof(struct snd_sof_dsp_ops));
121 /* probe/remove */
122 if (!sdev->dspless_mode_selected) {
123 sof_lnl_ops.probe = lnl_hda_dsp_probe;
124 sof_lnl_ops.remove = lnl_hda_dsp_remove;
127 /* shutdown */
128 sof_lnl_ops.shutdown = hda_dsp_shutdown;
130 /* doorbell */
131 sof_lnl_ops.irq_thread = mtl_ipc_irq_thread;
133 /* ipc */
134 sof_lnl_ops.send_msg = mtl_ipc_send_msg;
135 sof_lnl_ops.get_mailbox_offset = mtl_dsp_ipc_get_mailbox_offset;
136 sof_lnl_ops.get_window_offset = mtl_dsp_ipc_get_window_offset;
138 /* debug */
139 sof_lnl_ops.debug_map = lnl_dsp_debugfs;
140 sof_lnl_ops.debug_map_count = ARRAY_SIZE(lnl_dsp_debugfs);
141 sof_lnl_ops.dbg_dump = mtl_dsp_dump;
142 sof_lnl_ops.ipc_dump = mtl_ipc_dump;
144 /* pre/post fw run */
145 sof_lnl_ops.pre_fw_run = mtl_dsp_pre_fw_run;
146 sof_lnl_ops.post_fw_run = lnl_dsp_post_fw_run;
148 /* parse platform specific extended manifest */
149 sof_lnl_ops.parse_platform_ext_manifest = NULL;
151 /* dsp core get/put */
152 /* TODO: add core_get and core_put */
154 /* PM */
155 if (!sdev->dspless_mode_selected) {
156 sof_lnl_ops.resume = lnl_hda_dsp_resume;
157 sof_lnl_ops.runtime_resume = lnl_hda_dsp_runtime_resume;
160 /* dsp core get/put */
161 sof_lnl_ops.core_get = mtl_dsp_core_get;
162 sof_lnl_ops.core_put = mtl_dsp_core_put;
164 sdev->private = kzalloc(sizeof(struct sof_ipc4_fw_data), GFP_KERNEL);
165 if (!sdev->private)
166 return -ENOMEM;
168 ipc4_data = sdev->private;
169 ipc4_data->manifest_fw_hdr_offset = SOF_MAN4_FW_HDR_OFFSET;
171 ipc4_data->mtrace_type = SOF_IPC4_MTRACE_INTEL_CAVS_2;
173 ipc4_data->fw_context_save = true;
175 /* External library loading support */
176 ipc4_data->load_library = hda_dsp_ipc4_load_library;
178 /* set DAI ops */
179 hda_set_dai_drv_ops(sdev, &sof_lnl_ops);
181 sof_lnl_ops.set_power_state = hda_dsp_set_power_state_ipc4;
183 return 0;
185 EXPORT_SYMBOL_NS(sof_lnl_ops_init, "SND_SOC_SOF_INTEL_LNL");
187 /* Check if an SDW IRQ occurred */
188 static bool lnl_dsp_check_sdw_irq(struct snd_sof_dev *sdev)
190 struct hdac_bus *bus = sof_to_bus(sdev);
192 return hdac_bus_eml_check_interrupt(bus, true, AZX_REG_ML_LEPTR_ID_SDW);
195 static int lnl_dsp_disable_interrupts(struct snd_sof_dev *sdev)
197 mtl_disable_ipc_interrupts(sdev);
198 return mtl_enable_interrupts(sdev, false);
201 static bool lnl_sdw_check_wakeen_irq(struct snd_sof_dev *sdev)
203 struct hdac_bus *bus = sof_to_bus(sdev);
204 u16 wake_sts;
207 * we need to use the global HDaudio WAKEEN/STS to be able to
208 * detect wakes in low-power modes. The link-specific information
209 * is handled in the process_wakeen() helper, this helper only
210 * detects a SoundWire wake without identifying the link.
212 wake_sts = snd_hdac_chip_readw(bus, STATESTS);
214 /* filter out the range of SDIs that can be set for SoundWire */
215 return wake_sts & GENMASK(SDW_MAX_DEVICES, SDW_INTEL_DEV_NUM_IDA_MIN);
218 const struct sof_intel_dsp_desc lnl_chip_info = {
219 .cores_num = 5,
220 .init_core_mask = BIT(0),
221 .host_managed_cores_mask = BIT(0),
222 .ipc_req = MTL_DSP_REG_HFIPCXIDR,
223 .ipc_req_mask = MTL_DSP_REG_HFIPCXIDR_BUSY,
224 .ipc_ack = MTL_DSP_REG_HFIPCXIDA,
225 .ipc_ack_mask = MTL_DSP_REG_HFIPCXIDA_DONE,
226 .ipc_ctl = MTL_DSP_REG_HFIPCXCTL,
227 .rom_status_reg = LNL_DSP_REG_HFDSC,
228 .rom_init_timeout = 300,
229 .ssp_count = MTL_SSP_COUNT,
230 .d0i3_offset = MTL_HDA_VS_D0I3C,
231 .read_sdw_lcount = hda_sdw_check_lcount_ext,
232 .check_sdw_irq = lnl_dsp_check_sdw_irq,
233 .check_sdw_wakeen_irq = lnl_sdw_check_wakeen_irq,
234 .sdw_process_wakeen = hda_sdw_process_wakeen_common,
235 .check_ipc_irq = mtl_dsp_check_ipc_irq,
236 .cl_init = mtl_dsp_cl_init,
237 .power_down_dsp = mtl_power_down_dsp,
238 .disable_interrupts = lnl_dsp_disable_interrupts,
239 .hw_ip_version = SOF_INTEL_ACE_2_0,
242 const struct sof_intel_dsp_desc ptl_chip_info = {
243 .cores_num = 5,
244 .init_core_mask = BIT(0),
245 .host_managed_cores_mask = BIT(0),
246 .ipc_req = MTL_DSP_REG_HFIPCXIDR,
247 .ipc_req_mask = MTL_DSP_REG_HFIPCXIDR_BUSY,
248 .ipc_ack = MTL_DSP_REG_HFIPCXIDA,
249 .ipc_ack_mask = MTL_DSP_REG_HFIPCXIDA_DONE,
250 .ipc_ctl = MTL_DSP_REG_HFIPCXCTL,
251 .rom_status_reg = LNL_DSP_REG_HFDSC,
252 .rom_init_timeout = 300,
253 .ssp_count = MTL_SSP_COUNT,
254 .d0i3_offset = MTL_HDA_VS_D0I3C,
255 .read_sdw_lcount = hda_sdw_check_lcount_ext,
256 .check_sdw_irq = lnl_dsp_check_sdw_irq,
257 .check_sdw_wakeen_irq = lnl_sdw_check_wakeen_irq,
258 .check_ipc_irq = mtl_dsp_check_ipc_irq,
259 .cl_init = mtl_dsp_cl_init,
260 .power_down_dsp = mtl_power_down_dsp,
261 .disable_interrupts = lnl_dsp_disable_interrupts,
262 .hw_ip_version = SOF_INTEL_ACE_3_0,
264 EXPORT_SYMBOL_NS(ptl_chip_info, "SND_SOC_SOF_INTEL_LNL");