1 // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
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.
6 // Copyright(c) 2018 Intel Corporation. All rights reserved.
8 // Authors: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9 // Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10 // Rander Wang <rander.wang@intel.com>
11 // Keyon Jie <yang.jie@linux.intel.com>
15 * Hardware interface for generic Intel audio DSP HDA IP
18 #include <linux/module.h>
19 #include <sound/hdaudio_ext.h>
20 #include <sound/hda_register.h>
21 #include "../sof-audio.h"
26 static bool hda_enable_trace_D0I3_S0
;
27 #if IS_ENABLED(CONFIG_SND_SOC_SOF_DEBUG)
28 module_param_named(enable_trace_D0I3_S0
, hda_enable_trace_D0I3_S0
, bool, 0444);
29 MODULE_PARM_DESC(enable_trace_D0I3_S0
,
30 "SOF HDA enable trace when the DSP is in D0I3 in S0");
37 int hda_dsp_core_reset_enter(struct snd_sof_dev
*sdev
, unsigned int core_mask
)
43 /* set reset bits for cores */
44 reset
= HDA_DSP_ADSPCS_CRST_MASK(core_mask
);
45 snd_sof_dsp_update_bits_unlocked(sdev
, HDA_DSP_BAR
,
49 /* poll with timeout to check if operation successful */
50 ret
= snd_sof_dsp_read_poll_timeout(sdev
, HDA_DSP_BAR
,
51 HDA_DSP_REG_ADSPCS
, adspcs
,
52 ((adspcs
& reset
) == reset
),
53 HDA_DSP_REG_POLL_INTERVAL_US
,
54 HDA_DSP_RESET_TIMEOUT_US
);
57 "error: %s: timeout on HDA_DSP_REG_ADSPCS read\n",
62 /* has core entered reset ? */
63 adspcs
= snd_sof_dsp_read(sdev
, HDA_DSP_BAR
,
65 if ((adspcs
& HDA_DSP_ADSPCS_CRST_MASK(core_mask
)) !=
66 HDA_DSP_ADSPCS_CRST_MASK(core_mask
)) {
68 "error: reset enter failed: core_mask %x adspcs 0x%x\n",
76 int hda_dsp_core_reset_leave(struct snd_sof_dev
*sdev
, unsigned int core_mask
)
82 /* clear reset bits for cores */
83 snd_sof_dsp_update_bits_unlocked(sdev
, HDA_DSP_BAR
,
85 HDA_DSP_ADSPCS_CRST_MASK(core_mask
),
88 /* poll with timeout to check if operation successful */
89 crst
= HDA_DSP_ADSPCS_CRST_MASK(core_mask
);
90 ret
= snd_sof_dsp_read_poll_timeout(sdev
, HDA_DSP_BAR
,
91 HDA_DSP_REG_ADSPCS
, adspcs
,
93 HDA_DSP_REG_POLL_INTERVAL_US
,
94 HDA_DSP_RESET_TIMEOUT_US
);
98 "error: %s: timeout on HDA_DSP_REG_ADSPCS read\n",
103 /* has core left reset ? */
104 adspcs
= snd_sof_dsp_read(sdev
, HDA_DSP_BAR
,
106 if ((adspcs
& HDA_DSP_ADSPCS_CRST_MASK(core_mask
)) != 0) {
108 "error: reset leave failed: core_mask %x adspcs 0x%x\n",
116 int hda_dsp_core_stall_reset(struct snd_sof_dev
*sdev
, unsigned int core_mask
)
119 snd_sof_dsp_update_bits_unlocked(sdev
, HDA_DSP_BAR
,
121 HDA_DSP_ADSPCS_CSTALL_MASK(core_mask
),
122 HDA_DSP_ADSPCS_CSTALL_MASK(core_mask
));
124 /* set reset state */
125 return hda_dsp_core_reset_enter(sdev
, core_mask
);
128 int hda_dsp_core_run(struct snd_sof_dev
*sdev
, unsigned int core_mask
)
132 /* leave reset state */
133 ret
= hda_dsp_core_reset_leave(sdev
, core_mask
);
138 dev_dbg(sdev
->dev
, "unstall/run core: core_mask = %x\n", core_mask
);
139 snd_sof_dsp_update_bits_unlocked(sdev
, HDA_DSP_BAR
,
141 HDA_DSP_ADSPCS_CSTALL_MASK(core_mask
),
144 /* is core now running ? */
145 if (!hda_dsp_core_is_enabled(sdev
, core_mask
)) {
146 hda_dsp_core_stall_reset(sdev
, core_mask
);
147 dev_err(sdev
->dev
, "error: DSP start core failed: core_mask %x\n",
159 int hda_dsp_core_power_up(struct snd_sof_dev
*sdev
, unsigned int core_mask
)
166 snd_sof_dsp_update_bits(sdev
, HDA_DSP_BAR
, HDA_DSP_REG_ADSPCS
,
167 HDA_DSP_ADSPCS_SPA_MASK(core_mask
),
168 HDA_DSP_ADSPCS_SPA_MASK(core_mask
));
170 /* poll with timeout to check if operation successful */
171 cpa
= HDA_DSP_ADSPCS_CPA_MASK(core_mask
);
172 ret
= snd_sof_dsp_read_poll_timeout(sdev
, HDA_DSP_BAR
,
173 HDA_DSP_REG_ADSPCS
, adspcs
,
174 (adspcs
& cpa
) == cpa
,
175 HDA_DSP_REG_POLL_INTERVAL_US
,
176 HDA_DSP_RESET_TIMEOUT_US
);
179 "error: %s: timeout on HDA_DSP_REG_ADSPCS read\n",
184 /* did core power up ? */
185 adspcs
= snd_sof_dsp_read(sdev
, HDA_DSP_BAR
,
187 if ((adspcs
& HDA_DSP_ADSPCS_CPA_MASK(core_mask
)) !=
188 HDA_DSP_ADSPCS_CPA_MASK(core_mask
)) {
190 "error: power up core failed core_mask %xadspcs 0x%x\n",
198 int hda_dsp_core_power_down(struct snd_sof_dev
*sdev
, unsigned int core_mask
)
204 snd_sof_dsp_update_bits_unlocked(sdev
, HDA_DSP_BAR
,
206 HDA_DSP_ADSPCS_SPA_MASK(core_mask
), 0);
208 ret
= snd_sof_dsp_read_poll_timeout(sdev
, HDA_DSP_BAR
,
209 HDA_DSP_REG_ADSPCS
, adspcs
,
210 !(adspcs
& HDA_DSP_ADSPCS_SPA_MASK(core_mask
)),
211 HDA_DSP_REG_POLL_INTERVAL_US
,
212 HDA_DSP_PD_TIMEOUT
* USEC_PER_MSEC
);
215 "error: %s: timeout on HDA_DSP_REG_ADSPCS read\n",
221 bool hda_dsp_core_is_enabled(struct snd_sof_dev
*sdev
,
222 unsigned int core_mask
)
227 val
= snd_sof_dsp_read(sdev
, HDA_DSP_BAR
, HDA_DSP_REG_ADSPCS
);
229 is_enable
= ((val
& HDA_DSP_ADSPCS_CPA_MASK(core_mask
)) &&
230 (val
& HDA_DSP_ADSPCS_SPA_MASK(core_mask
)) &&
231 !(val
& HDA_DSP_ADSPCS_CRST_MASK(core_mask
)) &&
232 !(val
& HDA_DSP_ADSPCS_CSTALL_MASK(core_mask
)));
234 dev_dbg(sdev
->dev
, "DSP core(s) enabled? %d : core_mask %x\n",
235 is_enable
, core_mask
);
240 int hda_dsp_enable_core(struct snd_sof_dev
*sdev
, unsigned int core_mask
)
244 /* return if core is already enabled */
245 if (hda_dsp_core_is_enabled(sdev
, core_mask
))
249 ret
= hda_dsp_core_power_up(sdev
, core_mask
);
251 dev_err(sdev
->dev
, "error: dsp core power up failed: core_mask %x\n",
256 return hda_dsp_core_run(sdev
, core_mask
);
259 int hda_dsp_core_reset_power_down(struct snd_sof_dev
*sdev
,
260 unsigned int core_mask
)
264 /* place core in reset prior to power down */
265 ret
= hda_dsp_core_stall_reset(sdev
, core_mask
);
267 dev_err(sdev
->dev
, "error: dsp core reset failed: core_mask %x\n",
272 /* power down core */
273 ret
= hda_dsp_core_power_down(sdev
, core_mask
);
275 dev_err(sdev
->dev
, "error: dsp core power down fail mask %x: %d\n",
280 /* make sure we are in OFF state */
281 if (hda_dsp_core_is_enabled(sdev
, core_mask
)) {
282 dev_err(sdev
->dev
, "error: dsp core disable fail mask %x: %d\n",
290 void hda_dsp_ipc_int_enable(struct snd_sof_dev
*sdev
)
292 struct sof_intel_hda_dev
*hda
= sdev
->pdata
->hw_pdata
;
293 const struct sof_intel_dsp_desc
*chip
= hda
->desc
;
295 /* enable IPC DONE and BUSY interrupts */
296 snd_sof_dsp_update_bits(sdev
, HDA_DSP_BAR
, chip
->ipc_ctl
,
297 HDA_DSP_REG_HIPCCTL_DONE
| HDA_DSP_REG_HIPCCTL_BUSY
,
298 HDA_DSP_REG_HIPCCTL_DONE
| HDA_DSP_REG_HIPCCTL_BUSY
);
300 /* enable IPC interrupt */
301 snd_sof_dsp_update_bits(sdev
, HDA_DSP_BAR
, HDA_DSP_REG_ADSPIC
,
302 HDA_DSP_ADSPIC_IPC
, HDA_DSP_ADSPIC_IPC
);
305 void hda_dsp_ipc_int_disable(struct snd_sof_dev
*sdev
)
307 struct sof_intel_hda_dev
*hda
= sdev
->pdata
->hw_pdata
;
308 const struct sof_intel_dsp_desc
*chip
= hda
->desc
;
310 /* disable IPC interrupt */
311 snd_sof_dsp_update_bits(sdev
, HDA_DSP_BAR
, HDA_DSP_REG_ADSPIC
,
312 HDA_DSP_ADSPIC_IPC
, 0);
314 /* disable IPC BUSY and DONE interrupt */
315 snd_sof_dsp_update_bits(sdev
, HDA_DSP_BAR
, chip
->ipc_ctl
,
316 HDA_DSP_REG_HIPCCTL_BUSY
| HDA_DSP_REG_HIPCCTL_DONE
, 0);
319 static int hda_dsp_wait_d0i3c_done(struct snd_sof_dev
*sdev
)
321 struct hdac_bus
*bus
= sof_to_bus(sdev
);
322 int retry
= HDA_DSP_REG_POLL_RETRY_COUNT
;
324 while (snd_hdac_chip_readb(bus
, VS_D0I3C
) & SOF_HDA_VS_D0I3C_CIP
) {
327 usleep_range(10, 15);
333 static int hda_dsp_send_pm_gate_ipc(struct snd_sof_dev
*sdev
, u32 flags
)
335 struct sof_ipc_pm_gate pm_gate
;
336 struct sof_ipc_reply reply
;
338 memset(&pm_gate
, 0, sizeof(pm_gate
));
340 /* configure pm_gate ipc message */
341 pm_gate
.hdr
.size
= sizeof(pm_gate
);
342 pm_gate
.hdr
.cmd
= SOF_IPC_GLB_PM_MSG
| SOF_IPC_PM_GATE
;
343 pm_gate
.flags
= flags
;
345 /* send pm_gate ipc to dsp */
346 return sof_ipc_tx_message_no_pm(sdev
->ipc
, pm_gate
.hdr
.cmd
,
347 &pm_gate
, sizeof(pm_gate
), &reply
,
351 static int hda_dsp_update_d0i3c_register(struct snd_sof_dev
*sdev
, u8 value
)
353 struct hdac_bus
*bus
= sof_to_bus(sdev
);
356 /* Write to D0I3C after Command-In-Progress bit is cleared */
357 ret
= hda_dsp_wait_d0i3c_done(sdev
);
359 dev_err(bus
->dev
, "CIP timeout before D0I3C update!\n");
363 /* Update D0I3C register */
364 snd_hdac_chip_updateb(bus
, VS_D0I3C
, SOF_HDA_VS_D0I3C_I3
, value
);
366 /* Wait for cmd in progress to be cleared before exiting the function */
367 ret
= hda_dsp_wait_d0i3c_done(sdev
);
369 dev_err(bus
->dev
, "CIP timeout after D0I3C update!\n");
373 dev_vdbg(bus
->dev
, "D0I3C updated, register = 0x%x\n",
374 snd_hdac_chip_readb(bus
, VS_D0I3C
));
379 static int hda_dsp_set_D0_state(struct snd_sof_dev
*sdev
,
380 const struct sof_dsp_power_state
*target_state
)
387 * Sanity check for illegal state transitions
388 * The only allowed transitions are:
393 switch (sdev
->dsp_power_state
.state
) {
395 /* Follow the sequence below for D0 substate transitions */
398 /* Follow regular flow for D3 -> D0 transition */
401 dev_err(sdev
->dev
, "error: transition from %d to %d not allowed\n",
402 sdev
->dsp_power_state
.state
, target_state
->state
);
406 /* Set flags and register value for D0 target substate */
407 if (target_state
->substate
== SOF_HDA_DSP_PM_D0I3
) {
408 value
= SOF_HDA_VS_D0I3C_I3
;
411 * Trace DMA is disabled by default when the DSP enters D0I3.
412 * But it can be kept enabled when the DSP enters D0I3 while the
413 * system is in S0 for debug.
415 if (hda_enable_trace_D0I3_S0
&&
416 sdev
->system_suspend_target
!= SOF_SUSPEND_NONE
)
417 flags
= HDA_PM_NO_DMA_TRACE
;
419 /* prevent power gating in D0I0 */
423 /* update D0I3C register */
424 ret
= hda_dsp_update_d0i3c_register(sdev
, value
);
429 * Notify the DSP of the state change.
430 * If this IPC fails, revert the D0I3C register update in order
431 * to prevent partial state change.
433 ret
= hda_dsp_send_pm_gate_ipc(sdev
, flags
);
436 "error: PM_GATE ipc error %d\n", ret
);
443 /* fallback to the previous register value */
444 value
= value
? 0 : SOF_HDA_VS_D0I3C_I3
;
447 * This can fail but return the IPC error to signal that
448 * the state change failed.
450 hda_dsp_update_d0i3c_register(sdev
, value
);
455 /* helper to log DSP state */
456 static void hda_dsp_state_log(struct snd_sof_dev
*sdev
)
458 switch (sdev
->dsp_power_state
.state
) {
460 switch (sdev
->dsp_power_state
.substate
) {
461 case SOF_HDA_DSP_PM_D0I0
:
462 dev_dbg(sdev
->dev
, "Current DSP power state: D0I0\n");
464 case SOF_HDA_DSP_PM_D0I3
:
465 dev_dbg(sdev
->dev
, "Current DSP power state: D0I3\n");
468 dev_dbg(sdev
->dev
, "Unknown DSP D0 substate: %d\n",
469 sdev
->dsp_power_state
.substate
);
474 dev_dbg(sdev
->dev
, "Current DSP power state: D1\n");
477 dev_dbg(sdev
->dev
, "Current DSP power state: D2\n");
479 case SOF_DSP_PM_D3_HOT
:
480 dev_dbg(sdev
->dev
, "Current DSP power state: D3_HOT\n");
483 dev_dbg(sdev
->dev
, "Current DSP power state: D3\n");
485 case SOF_DSP_PM_D3_COLD
:
486 dev_dbg(sdev
->dev
, "Current DSP power state: D3_COLD\n");
489 dev_dbg(sdev
->dev
, "Unknown DSP power state: %d\n",
490 sdev
->dsp_power_state
.state
);
496 * All DSP power state transitions are initiated by the driver.
497 * If the requested state change fails, the error is simply returned.
498 * Further state transitions are attempted only when the set_power_save() op
499 * is called again either because of a new IPC sent to the DSP or
500 * during system suspend/resume.
502 int hda_dsp_set_power_state(struct snd_sof_dev
*sdev
,
503 const struct sof_dsp_power_state
*target_state
)
508 * When the DSP is already in D0I3 and the target state is D0I3,
509 * it could be the case that the DSP is in D0I3 during S0
510 * and the system is suspending to S0Ix. Therefore,
511 * hda_dsp_set_D0_state() must be called to disable trace DMA
512 * by sending the PM_GATE IPC to the FW.
514 if (target_state
->substate
== SOF_HDA_DSP_PM_D0I3
&&
515 sdev
->system_suspend_target
== SOF_SUSPEND_S0IX
)
519 * For all other cases, return without doing anything if
520 * the DSP is already in the target state.
522 if (target_state
->state
== sdev
->dsp_power_state
.state
&&
523 target_state
->substate
== sdev
->dsp_power_state
.substate
)
527 switch (target_state
->state
) {
529 ret
= hda_dsp_set_D0_state(sdev
, target_state
);
532 /* The only allowed transition is: D0I0 -> D3 */
533 if (sdev
->dsp_power_state
.state
== SOF_DSP_PM_D0
&&
534 sdev
->dsp_power_state
.substate
== SOF_HDA_DSP_PM_D0I0
)
538 "error: transition from %d to %d not allowed\n",
539 sdev
->dsp_power_state
.state
, target_state
->state
);
542 dev_err(sdev
->dev
, "error: target state unsupported %d\n",
543 target_state
->state
);
548 "failed to set requested target DSP state %d substate %d\n",
549 target_state
->state
, target_state
->substate
);
553 sdev
->dsp_power_state
= *target_state
;
554 hda_dsp_state_log(sdev
);
559 * Audio DSP states may transform as below:-
561 * Opportunistic D0I3 in S0
562 * Runtime +---------------------+ Delayed D0i3 work timeout
563 * suspend | +--------------------+
564 * +------------+ D0I0(active) | |
565 * | | <---------------+ |
566 * | +--------> | New IPC | |
567 * | |Runtime +--^--+---------^--+--+ (via mailbox) | |
568 * | |resume | | | | | |
570 * | | System| | | | | |
571 * | | resume| | S3/S0IX | | | |
572 * | | | | suspend | | S0IX | |
573 * | | | | | |suspend | |
576 * +-v---+-----------+--v-------+ | | +------+----v----+
577 * | | | +-----------> |
578 * | D3 (suspended) | | | D0I3 |
579 * | | +--------------+ |
580 * | | System resume | |
581 * +----------------------------+ +----------------+
583 * S0IX suspend: The DSP is in D0I3 if any D0I3-compatible streams
584 * ignored the suspend trigger. Otherwise the DSP
588 static int hda_suspend(struct snd_sof_dev
*sdev
, bool runtime_suspend
)
590 struct sof_intel_hda_dev
*hda
= sdev
->pdata
->hw_pdata
;
591 const struct sof_intel_dsp_desc
*chip
= hda
->desc
;
592 #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA)
593 struct hdac_bus
*bus
= sof_to_bus(sdev
);
597 hda_sdw_int_enable(sdev
, false);
599 /* disable IPC interrupts */
600 hda_dsp_ipc_int_disable(sdev
);
602 #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA)
604 hda_codec_jack_wake_enable(sdev
);
606 /* power down all hda link */
607 snd_hdac_ext_bus_link_power_down_all(bus
);
611 ret
= hda_dsp_core_reset_power_down(sdev
, chip
->cores_mask
);
614 "error: failed to power down core during suspend\n");
618 /* disable ppcap interrupt */
619 hda_dsp_ctrl_ppcap_enable(sdev
, false);
620 hda_dsp_ctrl_ppcap_int_enable(sdev
, false);
622 /* disable hda bus irq and streams */
623 hda_dsp_ctrl_stop_chip(sdev
);
625 /* disable LP retention mode */
626 snd_sof_pci_update_bits(sdev
, PCI_PGCTL
,
627 PCI_PGCTL_LSRMD_MASK
, PCI_PGCTL_LSRMD_MASK
);
629 /* reset controller */
630 ret
= hda_dsp_ctrl_link_reset(sdev
, true);
633 "error: failed to reset controller during suspend\n");
637 /* display codec can powered off after link reset */
638 hda_codec_i915_display_power(sdev
, false);
643 static int hda_resume(struct snd_sof_dev
*sdev
, bool runtime_resume
)
645 #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA)
646 struct hdac_bus
*bus
= sof_to_bus(sdev
);
647 struct hdac_ext_link
*hlink
= NULL
;
651 /* display codec must be powered before link reset */
652 hda_codec_i915_display_power(sdev
, true);
655 * clear TCSEL to clear playback on some HD Audio
656 * codecs. PCI TCSEL is defined in the Intel manuals.
658 snd_sof_pci_update_bits(sdev
, PCI_TCSEL
, 0x07, 0);
660 /* reset and start hda controller */
661 ret
= hda_dsp_ctrl_init_chip(sdev
, true);
664 "error: failed to start controller after resume\n");
668 #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA)
669 /* check jack status */
671 hda_codec_jack_check(sdev
);
673 /* turn off the links that were off before suspend */
674 list_for_each_entry(hlink
, &bus
->hlink_list
, list
) {
675 if (!hlink
->ref_count
)
676 snd_hdac_ext_bus_link_power_down(hlink
);
679 /* check dma status and clean up CORB/RIRB buffers */
680 if (!bus
->cmd_dma_state
)
681 snd_hdac_bus_stop_cmd_io(bus
);
684 /* enable ppcap interrupt */
685 hda_dsp_ctrl_ppcap_enable(sdev
, true);
686 hda_dsp_ctrl_ppcap_int_enable(sdev
, true);
691 int hda_dsp_resume(struct snd_sof_dev
*sdev
)
693 struct sof_intel_hda_dev
*hda
= sdev
->pdata
->hw_pdata
;
694 struct pci_dev
*pci
= to_pci_dev(sdev
->dev
);
695 const struct sof_dsp_power_state target_state
= {
696 .state
= SOF_DSP_PM_D0
,
697 .substate
= SOF_HDA_DSP_PM_D0I0
,
701 /* resume from D0I3 */
702 if (sdev
->dsp_power_state
.state
== SOF_DSP_PM_D0
) {
703 hda_codec_i915_display_power(sdev
, true);
705 /* Set DSP power state */
706 ret
= snd_sof_dsp_set_power_state(sdev
, &target_state
);
708 dev_err(sdev
->dev
, "error: setting dsp state %d substate %d\n",
709 target_state
.state
, target_state
.substate
);
713 /* restore L1SEN bit */
714 if (hda
->l1_support_changed
)
715 snd_sof_dsp_update_bits(sdev
, HDA_DSP_HDA_BAR
,
717 HDA_VS_INTEL_EM2_L1SEN
, 0);
719 /* restore and disable the system wakeup */
720 pci_restore_state(pci
);
721 disable_irq_wake(pci
->irq
);
725 /* init hda controller. DSP cores will be powered up during fw boot */
726 ret
= hda_resume(sdev
, false);
730 return snd_sof_dsp_set_power_state(sdev
, &target_state
);
733 int hda_dsp_runtime_resume(struct snd_sof_dev
*sdev
)
735 const struct sof_dsp_power_state target_state
= {
736 .state
= SOF_DSP_PM_D0
,
740 /* init hda controller. DSP cores will be powered up during fw boot */
741 ret
= hda_resume(sdev
, true);
745 return snd_sof_dsp_set_power_state(sdev
, &target_state
);
748 int hda_dsp_runtime_idle(struct snd_sof_dev
*sdev
)
750 struct hdac_bus
*hbus
= sof_to_bus(sdev
);
752 if (hbus
->codec_powered
) {
753 dev_dbg(sdev
->dev
, "some codecs still powered (%08X), not idle\n",
754 (unsigned int)hbus
->codec_powered
);
761 int hda_dsp_runtime_suspend(struct snd_sof_dev
*sdev
)
763 const struct sof_dsp_power_state target_state
= {
764 .state
= SOF_DSP_PM_D3
,
768 /* stop hda controller and power dsp off */
769 ret
= hda_suspend(sdev
, true);
773 return snd_sof_dsp_set_power_state(sdev
, &target_state
);
776 int hda_dsp_suspend(struct snd_sof_dev
*sdev
, u32 target_state
)
778 struct sof_intel_hda_dev
*hda
= sdev
->pdata
->hw_pdata
;
779 struct hdac_bus
*bus
= sof_to_bus(sdev
);
780 struct pci_dev
*pci
= to_pci_dev(sdev
->dev
);
781 const struct sof_dsp_power_state target_dsp_state
= {
782 .state
= target_state
,
783 .substate
= target_state
== SOF_DSP_PM_D0
?
784 SOF_HDA_DSP_PM_D0I3
: 0,
788 /* cancel any attempt for DSP D0I3 */
789 cancel_delayed_work_sync(&hda
->d0i3_work
);
791 if (target_state
== SOF_DSP_PM_D0
) {
792 /* we can't keep a wakeref to display driver at suspend */
793 hda_codec_i915_display_power(sdev
, false);
795 /* Set DSP power state */
796 ret
= snd_sof_dsp_set_power_state(sdev
, &target_dsp_state
);
798 dev_err(sdev
->dev
, "error: setting dsp state %d substate %d\n",
799 target_dsp_state
.state
,
800 target_dsp_state
.substate
);
804 /* enable L1SEN to make sure the system can enter S0Ix */
805 hda
->l1_support_changed
=
806 snd_sof_dsp_update_bits(sdev
, HDA_DSP_HDA_BAR
,
808 HDA_VS_INTEL_EM2_L1SEN
,
809 HDA_VS_INTEL_EM2_L1SEN
);
811 /* enable the system waking up via IPC IRQ */
812 enable_irq_wake(pci
->irq
);
817 /* stop hda controller and power dsp off */
818 ret
= hda_suspend(sdev
, false);
820 dev_err(bus
->dev
, "error: suspending dsp\n");
824 return snd_sof_dsp_set_power_state(sdev
, &target_dsp_state
);
827 int hda_dsp_set_hw_params_upon_resume(struct snd_sof_dev
*sdev
)
829 #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA)
830 struct hdac_bus
*bus
= sof_to_bus(sdev
);
831 struct snd_soc_pcm_runtime
*rtd
;
832 struct hdac_ext_stream
*stream
;
833 struct hdac_ext_link
*link
;
834 struct hdac_stream
*s
;
838 /* set internal flag for BE */
839 list_for_each_entry(s
, &bus
->stream_list
, list
) {
840 stream
= stream_to_hdac_ext_stream(s
);
843 * clear stream. This should already be taken care for running
844 * streams when the SUSPEND trigger is called. But paused
845 * streams do not get suspended, so this needs to be done
846 * explicitly during suspend.
848 if (stream
->link_substream
) {
849 rtd
= snd_pcm_substream_chip(stream
->link_substream
);
850 name
= asoc_rtd_to_codec(rtd
, 0)->component
->name
;
851 link
= snd_hdac_ext_bus_get_link(bus
, name
);
855 stream
->link_prepared
= 0;
857 if (hdac_stream(stream
)->direction
==
858 SNDRV_PCM_STREAM_CAPTURE
)
861 stream_tag
= hdac_stream(stream
)->stream_tag
;
862 snd_hdac_ext_link_clear_stream_id(link
, stream_tag
);
869 void hda_dsp_d0i3_work(struct work_struct
*work
)
871 struct sof_intel_hda_dev
*hdev
= container_of(work
,
872 struct sof_intel_hda_dev
,
874 struct hdac_bus
*bus
= &hdev
->hbus
.core
;
875 struct snd_sof_dev
*sdev
= dev_get_drvdata(bus
->dev
);
876 struct sof_dsp_power_state target_state
;
879 target_state
.state
= SOF_DSP_PM_D0
;
881 /* DSP can enter D0I3 iff only D0I3-compatible streams are active */
882 if (snd_sof_dsp_only_d0i3_compatible_stream_active(sdev
))
883 target_state
.substate
= SOF_HDA_DSP_PM_D0I3
;
885 target_state
.substate
= SOF_HDA_DSP_PM_D0I0
;
888 if (target_state
.substate
== SOF_HDA_DSP_PM_D0I0
)
891 /* This can fail but error cannot be propagated */
892 ret
= snd_sof_dsp_set_power_state(sdev
, &target_state
);
894 dev_err_ratelimited(sdev
->dev
,
895 "error: failed to set DSP state %d substate %d\n",
896 target_state
.state
, target_state
.substate
);