blob: f75e3983969f2b4b7da41f0ac92bf8cf6c735c43 [file] [log] [blame]
Fred Oh0cde3e92020-11-27 18:40:22 +02001// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2//
3// Copyright(c) 2020 Intel Corporation. All rights reserved.
4//
5// Author: Fred Oh <fred.oh@linux.intel.com>
6//
7
8/*
9 * Hardware interface for audio DSP on IceLake.
10 */
11
12#include <linux/kernel.h>
13#include <linux/kconfig.h>
14#include <linux/export.h>
15#include <linux/bits.h>
16#include "../ops.h"
17#include "hda.h"
18#include "hda-ipc.h"
19#include "../sof-audio.h"
20
Ranjani Sridharanc697ef82021-12-07 13:39:41 -060021#define ICL_DSP_HPRO_CORE_ID 3
22
Fred Oh0cde3e92020-11-27 18:40:22 +020023static const struct snd_sof_debugfs_map icl_dsp_debugfs[] = {
24 {"hda", HDA_DSP_HDA_BAR, 0, 0x4000, SOF_DEBUGFS_ACCESS_ALWAYS},
25 {"pp", HDA_DSP_PP_BAR, 0, 0x1000, SOF_DEBUGFS_ACCESS_ALWAYS},
26 {"dsp", HDA_DSP_BAR, 0, 0x10000, SOF_DEBUGFS_ACCESS_ALWAYS},
27};
28
Ranjani Sridharanc697ef82021-12-07 13:39:41 -060029static int icl_dsp_core_stall(struct snd_sof_dev *sdev, unsigned int core_mask)
30{
31 struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata;
32 const struct sof_intel_dsp_desc *chip = hda->desc;
33
34 /* make sure core_mask in host managed cores */
35 core_mask &= chip->host_managed_cores_mask;
36 if (!core_mask) {
37 dev_err(sdev->dev, "error: core_mask is not in host managed cores\n");
38 return -EINVAL;
39 }
40
41 /* stall core */
42 snd_sof_dsp_update_bits_unlocked(sdev, HDA_DSP_BAR, HDA_DSP_REG_ADSPCS,
43 HDA_DSP_ADSPCS_CSTALL_MASK(core_mask),
44 HDA_DSP_ADSPCS_CSTALL_MASK(core_mask));
45
46 return 0;
47}
48
49/*
50 * post fw run operation for ICL.
51 * Core 3 will be powered up and in stall when HPRO is enabled
52 */
53static int icl_dsp_post_fw_run(struct snd_sof_dev *sdev)
54{
55 struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata;
56 int ret;
57
58 if (sdev->first_boot) {
59 ret = hda_sdw_startup(sdev);
60 if (ret < 0) {
61 dev_err(sdev->dev, "error: could not startup SoundWire links\n");
62 return ret;
63 }
64 }
65
66 hda_sdw_int_enable(sdev, true);
67
68 /*
69 * The recommended HW programming sequence for ICL is to
70 * power up core 3 and keep it in stall if HPRO is enabled.
71 */
72 if (!hda->clk_config_lpro) {
73 ret = hda_dsp_enable_core(sdev, BIT(ICL_DSP_HPRO_CORE_ID));
74 if (ret < 0) {
75 dev_err(sdev->dev, "error: dsp core power up failed on core %d\n",
76 ICL_DSP_HPRO_CORE_ID);
77 return ret;
78 }
79
80 sdev->enabled_cores_mask |= BIT(ICL_DSP_HPRO_CORE_ID);
81 sdev->dsp_core_ref_count[ICL_DSP_HPRO_CORE_ID]++;
82
83 snd_sof_dsp_stall(sdev, BIT(ICL_DSP_HPRO_CORE_ID));
84 }
85
86 /* re-enable clock gating and power gating */
87 return hda_dsp_ctrl_clock_power_gating(sdev, true);
88}
89
Fred Oh0cde3e92020-11-27 18:40:22 +020090/* Icelake ops */
91const struct snd_sof_dsp_ops sof_icl_ops = {
Libin Yang4939e492021-03-22 11:37:25 -050092 /* probe/remove/shutdown */
Fred Oh0cde3e92020-11-27 18:40:22 +020093 .probe = hda_dsp_probe,
94 .remove = hda_dsp_remove,
Libin Yang4939e492021-03-22 11:37:25 -050095 .shutdown = hda_dsp_shutdown,
Fred Oh0cde3e92020-11-27 18:40:22 +020096
97 /* Register IO */
98 .write = sof_io_write,
99 .read = sof_io_read,
100 .write64 = sof_io_write64,
101 .read64 = sof_io_read64,
102
103 /* Block IO */
104 .block_read = sof_block_read,
105 .block_write = sof_block_write,
106
Daniel Balutaf71f59d2021-10-04 18:21:44 +0300107 /* Mailbox IO */
108 .mailbox_read = sof_mailbox_read,
109 .mailbox_write = sof_mailbox_write,
110
Fred Oh0cde3e92020-11-27 18:40:22 +0200111 /* doorbell */
112 .irq_thread = cnl_ipc_irq_thread,
113
114 /* ipc */
115 .send_msg = cnl_ipc_send_msg,
116 .fw_ready = sof_fw_ready,
117 .get_mailbox_offset = hda_dsp_ipc_get_mailbox_offset,
118 .get_window_offset = hda_dsp_ipc_get_window_offset,
119
120 .ipc_msg_data = hda_ipc_msg_data,
121 .ipc_pcm_params = hda_ipc_pcm_params,
122
123 /* machine driver */
124 .machine_select = hda_machine_select,
125 .machine_register = sof_machine_register,
126 .machine_unregister = sof_machine_unregister,
127 .set_mach_params = hda_set_mach_params,
128
129 /* debug */
130 .debug_map = icl_dsp_debugfs,
131 .debug_map_count = ARRAY_SIZE(icl_dsp_debugfs),
132 .dbg_dump = hda_dsp_dump,
133 .ipc_dump = cnl_ipc_dump,
Peter Ujfalusife509b32021-09-15 15:21:14 +0300134 .debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem,
Fred Oh0cde3e92020-11-27 18:40:22 +0200135
136 /* stream callbacks */
137 .pcm_open = hda_dsp_pcm_open,
138 .pcm_close = hda_dsp_pcm_close,
139 .pcm_hw_params = hda_dsp_pcm_hw_params,
140 .pcm_hw_free = hda_dsp_stream_hw_free,
141 .pcm_trigger = hda_dsp_pcm_trigger,
142 .pcm_pointer = hda_dsp_pcm_pointer,
Ranjani Sridharan6c26b502021-11-19 17:08:52 -0600143 .pcm_ack = hda_dsp_pcm_ack,
Fred Oh0cde3e92020-11-27 18:40:22 +0200144
145#if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA_PROBES)
146 /* probe callbacks */
147 .probe_assign = hda_probe_compr_assign,
148 .probe_free = hda_probe_compr_free,
149 .probe_set_params = hda_probe_compr_set_params,
150 .probe_trigger = hda_probe_compr_trigger,
151 .probe_pointer = hda_probe_compr_pointer,
152#endif
153
154 /* firmware loading */
155 .load_firmware = snd_sof_load_firmware_raw,
156
157 /* pre/post fw run */
158 .pre_fw_run = hda_dsp_pre_fw_run,
Ranjani Sridharanc697ef82021-12-07 13:39:41 -0600159 .post_fw_run = icl_dsp_post_fw_run,
Fred Oh0cde3e92020-11-27 18:40:22 +0200160
161 /* parse platform specific extended manifest */
162 .parse_platform_ext_manifest = hda_dsp_ext_man_get_cavs_config_data,
163
Ranjani Sridharan9ea80742021-11-19 21:26:20 +0200164 /* dsp core get/put */
Ranjani Sridharan9cdcbc92021-11-19 21:26:16 +0200165 .core_get = hda_dsp_core_get,
Fred Oh0cde3e92020-11-27 18:40:22 +0200166
167 /* firmware run */
168 .run = hda_dsp_cl_boot_firmware_iccmax,
Ranjani Sridharanc697ef82021-12-07 13:39:41 -0600169 .stall = icl_dsp_core_stall,
Fred Oh0cde3e92020-11-27 18:40:22 +0200170
171 /* trace callback */
172 .trace_init = hda_dsp_trace_init,
173 .trace_release = hda_dsp_trace_release,
174 .trace_trigger = hda_dsp_trace_trigger,
175
176 /* DAI drivers */
177 .drv = skl_dai,
178 .num_drv = SOF_SKL_NUM_DAIS,
179
180 /* PM */
181 .suspend = hda_dsp_suspend,
182 .resume = hda_dsp_resume,
183 .runtime_suspend = hda_dsp_runtime_suspend,
184 .runtime_resume = hda_dsp_runtime_resume,
185 .runtime_idle = hda_dsp_runtime_idle,
186 .set_hw_params_upon_resume = hda_dsp_set_hw_params_upon_resume,
187 .set_power_state = hda_dsp_set_power_state,
188
189 /* ALSA HW info flags */
190 .hw_info = SNDRV_PCM_INFO_MMAP |
191 SNDRV_PCM_INFO_MMAP_VALID |
192 SNDRV_PCM_INFO_INTERLEAVED |
193 SNDRV_PCM_INFO_PAUSE |
194 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP,
195
Peter Ujfalusi0ed66cb2021-09-16 16:03:08 +0300196 .dsp_arch_ops = &sof_xtensa_arch_ops,
Fred Oh0cde3e92020-11-27 18:40:22 +0200197};
198EXPORT_SYMBOL_NS(sof_icl_ops, SND_SOC_SOF_INTEL_HDA_COMMON);
199
200const struct sof_intel_dsp_desc icl_chip_info = {
201 /* Icelake */
202 .cores_num = 4,
203 .init_core_mask = 1,
204 .host_managed_cores_mask = GENMASK(3, 0),
205 .ipc_req = CNL_DSP_REG_HIPCIDR,
206 .ipc_req_mask = CNL_DSP_REG_HIPCIDR_BUSY,
207 .ipc_ack = CNL_DSP_REG_HIPCIDA,
208 .ipc_ack_mask = CNL_DSP_REG_HIPCIDA_DONE,
209 .ipc_ctl = CNL_DSP_REG_HIPCCTL,
210 .rom_init_timeout = 300,
211 .ssp_count = ICL_SSP_COUNT,
212 .ssp_base_offset = CNL_SSP_BASE_OFFSET,
Bard Liao1cbf6442021-07-23 19:54:47 +0800213 .sdw_shim_base = SDW_SHIM_BASE,
214 .sdw_alh_base = SDW_ALH_BASE,
Bard Liao198fa4b2021-07-23 19:54:50 +0800215 .check_sdw_irq = hda_common_check_sdw_irq,
Fred Oh0cde3e92020-11-27 18:40:22 +0200216};
217EXPORT_SYMBOL_NS(icl_chip_info, SND_SOC_SOF_INTEL_HDA_COMMON);