]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ASoC: SOF: Intel: hda: add WAKEEN interrupt support for SoundWire
authorRander Wang <rander.wang@intel.com>
Wed, 25 Mar 2020 21:50:25 +0000 (16:50 -0500)
committerMark Brown <broonie@kernel.org>
Fri, 27 Mar 2020 15:16:35 +0000 (15:16 +0000)
When a SoundWire link is in clock stop state, a Slave device may wake
up the Master for some events such as jack detection. The WAKEEN
interrupt will be triggered and processed by the audio pci device.

If audio device is in D3, the interrupt will be routed to PME, or
aggregated at cAVS level as interrupt when audio device is in D0. This
patch only supports D3 case, where the audio pci device will be
resumed by a PME event and the WAKEEN interrupt will be processed
after audio pci device is powered up and ROM is initialized
successfully.

The WAKEEN handling is only enabled after the first boot due to
dependencies on a shim_lock mutex being initialized.

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Rander Wang <rander.wang@intel.com>
Link: https://lore.kernel.org/r/20200325215027.28716-10-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sof/intel/hda-loader.c
sound/soc/sof/intel/hda.c
sound/soc/sof/intel/hda.h

index 2ae94ea53122ff58df1ab57ac7698ae7094939c6..e1550ccd0a49b4df52a0e7a74d2a96d7b1ac05e8 100644 (file)
@@ -346,6 +346,24 @@ int hda_dsp_cl_boot_firmware(struct snd_sof_dev *sdev)
                goto cleanup;
        }
 
+       /*
+        * When a SoundWire link is in clock stop state, a Slave
+        * device may trigger in-band wakes for events such as jack
+        * insertion or acoustic event detection. This event will lead
+        * to a WAKEEN interrupt, handled by the PCI device and routed
+        * to PME if the PCI device is in D3. The resume function in
+        * audio PCI driver will be invoked by ACPI for PME event and
+        * initialize the device and process WAKEEN interrupt.
+        *
+        * The WAKEEN interrupt should be processed ASAP to prevent an
+        * interrupt flood, otherwise other interrupts, such IPC,
+        * cannot work normally.  The WAKEEN is handled after the ROM
+        * is initialized successfully, which ensures power rails are
+        * enabled before accessing the SoundWire SHIM registers
+        */
+       if (!sdev->first_boot)
+               hda_sdw_process_wakeen(sdev);
+
        /*
         * at this point DSP ROM has been initialized and
         * should be ready for code loading and firmware boot
index 1e69cfcee8e0aaa58d15f0d7c12eba444669690c..7d1aa4c7d82c89aef2453b46627ab4b2905d5b87 100644 (file)
@@ -241,6 +241,17 @@ static irqreturn_t hda_dsp_sdw_thread(int irq, void *context)
        return sdw_intel_thread(irq, context);
 }
 
+void hda_sdw_process_wakeen(struct snd_sof_dev *sdev)
+{
+       struct sof_intel_hda_dev *hdev;
+
+       hdev = sdev->pdata->hw_pdata;
+       if (!hdev->sdw)
+               return;
+
+       sdw_intel_process_wakeen_event(hdev->sdw);
+}
+
 #endif
 
 /*
index fc104c5ba006e04355c3c19519bddcdde7d0ede4..6f1765b1ed1de52710708c177df52ebd0f52eebc 100644 (file)
@@ -671,6 +671,7 @@ int hda_dsp_trace_trigger(struct snd_sof_dev *sdev, int cmd);
 
 int hda_sdw_startup(struct snd_sof_dev *sdev);
 void hda_sdw_int_enable(struct snd_sof_dev *sdev, bool enable);
+void hda_sdw_process_wakeen(struct snd_sof_dev *sdev);
 
 #else
 
@@ -707,6 +708,10 @@ static inline irqreturn_t hda_dsp_sdw_thread(int irq, void *context)
 {
        return IRQ_HANDLED;
 }
+
+static inline void hda_sdw_process_wakeen(struct snd_sof_dev *sdev)
+{
+}
 #endif
 
 /* common dai driver */