Linux Sound subsystem development
 help / color / mirror / Atom feed
From: "Péter Ujfalusi" <peter.ujfalusi@linux.intel.com>
To: "Amadeusz Sławiński" <amadeuszx.slawinski@linux.intel.com>,
	lgirdwood@gmail.com, broonie@kernel.org
Cc: linux-sound@vger.kernel.org, kai.vehmanen@linux.intel.com,
	ranjani.sridharan@linux.intel.com,
	yung-chuan.liao@linux.intel.com, pierre-louis.bossart@linux.dev,
	liam.r.girdwood@intel.com
Subject: Re: [PATCH 8/8] ASoC: SOF: Intel: ptl: Add support for mic privacy
Date: Thu, 6 Mar 2025 17:40:38 +0200	[thread overview]
Message-ID: <b52afb54-9f43-4006-9e12-b8d752dc38b0@linux.intel.com> (raw)
In-Reply-To: <2eabbadd-e433-456f-a744-4dc9c843c051@linux.intel.com>



On 06/03/2025 16:05, Amadeusz Sławiński wrote:
> On 3/6/2025 2:35 PM, Peter Ujfalusi wrote:
>> Implement the three callbacks that is needed to enable support for
>> reporting the mic privacy change via soundwire.
>>
>> In PTL the mic privacy reporting is supported via soundwire and DMIC and
>> the soundwire is owned by the host, it's interrupt is routed there.
>>
>> To enable the interrupt, the sublink mask needs to be passed to the
>> multilink layer, the check_mic_privacy_irq/process_mic_privacy callbacks
>> needs to be implemented to check and report the mic privacy change.
>>
>> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
>> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
>> Reviewed-by: Liam Girdwood <liam.r.girdwood@intel.com>
>> Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
>> ---
>>   sound/soc/sof/intel/ptl.c | 58 +++++++++++++++++++++++++++++++++++++--
>>   sound/soc/sof/intel/ptl.h |  5 ++++
>>   2 files changed, 61 insertions(+), 2 deletions(-)
>>
>> diff --git a/sound/soc/sof/intel/ptl.c b/sound/soc/sof/intel/ptl.c
>> index ae8e9e08ad2a..eeb86c228b2a 100644
>> --- a/sound/soc/sof/intel/ptl.c
>> +++ b/sound/soc/sof/intel/ptl.c
>> @@ -18,10 +18,62 @@
>>   #include "lnl.h"
>>   #include "ptl.h"
>>   -int sof_ptl_set_ops(struct snd_sof_dev *sdev, struct
>> snd_sof_dsp_ops *dsp_ops)
>> +static bool sof_ptl_check_mic_privacy_irq(struct snd_sof_dev *sdev,
>> bool alt,
>> +                      int elid)
>> +{
>> +    if (alt != 1 || elid != AZX_REG_ML_LEPTR_ID_SDW)
> 
> alt is bool, so let's be type aware and either "alt != true" or just "!
> alt"?

Sure, I can't explain why it ended up like this.

> 
>> +        return false;
>> +
>> +    return hdac_bus_eml_is_mic_privacy_changed(sof_to_bus(sdev), alt,
>> elid);
>> +}
>> +
>> +static void sof_ptl_process_mic_privacy(struct snd_sof_dev *sdev,
>> bool alt,
>> +                    int elid)
>> +{
>> +    bool state;
>> +
>> +    if (alt != 1 || elid != AZX_REG_ML_LEPTR_ID_SDW)
> 
> same here
> 

-- 
Péter


      reply	other threads:[~2025-03-06 15:40 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-06 13:35 [PATCH 0/8] ASoC: SOF: Intel: Add support for ACE3+ mic privacy Peter Ujfalusi
2025-03-06 13:35 ` [PATCH 1/8] ASoC: SOF: Intel: mtl: Split up dsp_ops setup code Peter Ujfalusi
2025-03-06 13:35 ` [PATCH 2/8] ASoC: SOF: Intel: lnl/ptl: Only set dsp_ops which differs from MTL Peter Ujfalusi
2025-03-06 13:35 ` [PATCH 3/8] ASoC: SOF: Intel: mtl: Stop exporting dsp_ops callback functions Peter Ujfalusi
2025-03-06 13:35 ` [PATCH 4/8] ASoC: SOF: Intel: Create ptl.c as placeholder for Panther Lake features Peter Ujfalusi
2025-03-06 13:35 ` [PATCH 5/8] ASoC: SOF: ipc4: Add support for Intel HW managed mic privacy messaging Peter Ujfalusi
2025-03-06 13:42   ` Mark Brown
2025-03-06 15:37     ` Péter Ujfalusi
2025-03-06 13:35 ` [PATCH 6/8] ASoC: SOF: Intel: hda-mlink: Add support for mic privacy in VS SHIM registers Peter Ujfalusi
2025-03-06 13:35 ` [PATCH 7/8] ASoC: SOF: hda/shim: Add callbacks to handle mic privacy change for sdw Peter Ujfalusi
2025-03-06 13:35 ` [PATCH 8/8] ASoC: SOF: Intel: ptl: Add support for mic privacy Peter Ujfalusi
2025-03-06 14:05   ` Amadeusz Sławiński
2025-03-06 15:40     ` Péter Ujfalusi [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b52afb54-9f43-4006-9e12-b8d752dc38b0@linux.intel.com \
    --to=peter.ujfalusi@linux.intel.com \
    --cc=amadeuszx.slawinski@linux.intel.com \
    --cc=broonie@kernel.org \
    --cc=kai.vehmanen@linux.intel.com \
    --cc=lgirdwood@gmail.com \
    --cc=liam.r.girdwood@intel.com \
    --cc=linux-sound@vger.kernel.org \
    --cc=pierre-louis.bossart@linux.dev \
    --cc=ranjani.sridharan@linux.intel.com \
    --cc=yung-chuan.liao@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox