Re: [PATCH AUTOSEL for 4.14 029/110] ASoC: nau8825: fix issue that pop noise when start capture

2018-02-06 Thread Mark Brown
On Tue, Feb 06, 2018 at 01:41:29AM +, Sasha Levin wrote:
> On Mon, Feb 05, 2018 at 11:41:54AM +, Mark Brown wrote:

> >This is another one of these where I'm not convinced that backporting to
> >stable isn't going to introduce regressions - it will fix problems on
> >some systems but if someone really cares about a startup pop and has
> >arranged to do something like discard the start of the audio where the
> >pop occurs then this may cut off even more and cause them to miss
> >things.

> It might cause regressions for users who worked around the issue, but it
> may also fix the issue for users who didn't. I think that in general
> we'd rather have mainline and stable trees have the same bugs and
> breakage - we don't want surprises when users jump around between
> kernels.

The issue is a cosmetic one, everything works perfectly fine it's just
that performance could be improved.  It's the same order of problems as
speed issues.


signature.asc
Description: PGP signature


Re: [PATCH AUTOSEL for 4.14 029/110] ASoC: nau8825: fix issue that pop noise when start capture

2018-02-06 Thread Mark Brown
On Tue, Feb 06, 2018 at 01:41:29AM +, Sasha Levin wrote:
> On Mon, Feb 05, 2018 at 11:41:54AM +, Mark Brown wrote:

> >This is another one of these where I'm not convinced that backporting to
> >stable isn't going to introduce regressions - it will fix problems on
> >some systems but if someone really cares about a startup pop and has
> >arranged to do something like discard the start of the audio where the
> >pop occurs then this may cut off even more and cause them to miss
> >things.

> It might cause regressions for users who worked around the issue, but it
> may also fix the issue for users who didn't. I think that in general
> we'd rather have mainline and stable trees have the same bugs and
> breakage - we don't want surprises when users jump around between
> kernels.

The issue is a cosmetic one, everything works perfectly fine it's just
that performance could be improved.  It's the same order of problems as
speed issues.


signature.asc
Description: PGP signature


Re: [PATCH AUTOSEL for 4.14 029/110] ASoC: nau8825: fix issue that pop noise when start capture

2018-02-06 Thread Greg KH
On Tue, Feb 06, 2018 at 01:41:29AM +, Sasha Levin wrote:
> On Mon, Feb 05, 2018 at 11:41:54AM +, Mark Brown wrote:
> >On Sat, Feb 03, 2018 at 06:00:42PM +, Sasha Levin wrote:
> >> From: Abhijeet Kumar 
> >>
> >> [ Upstream commit d070f7c703ef26e3db613f24206823f916272fc6 ]
> >>
> >> In skylake platform, we hear a loud pop noise(0 dB) at start of
> >> audio capture power up sequence. This patch removes the pop noise
> >> from the recording by adding a delay before enabling ADC.
> >
> >>switch (event) {
> >>case SND_SOC_DAPM_POST_PMU:
> >> +  msleep(125);
> >>regmap_update_bits(nau8825->regmap, NAU8825_REG_ENA_CTRL,
> >
> >This is another one of these where I'm not convinced that backporting to
> >stable isn't going to introduce regressions - it will fix problems on
> >some systems but if someone really cares about a startup pop and has
> >arranged to do something like discard the start of the audio where the
> >pop occurs then this may cut off even more and cause them to miss
> >things.
> 
> It might cause regressions for users who worked around the issue, but it
> may also fix the issue for users who didn't. I think that in general
> we'd rather have mainline and stable trees have the same bugs and
> breakage - we don't want surprises when users jump around between
> kernels.

Yes, being "bug compatible" is a key feature to have :)

thanks,

greg k-h


Re: [PATCH AUTOSEL for 4.14 029/110] ASoC: nau8825: fix issue that pop noise when start capture

2018-02-06 Thread Greg KH
On Tue, Feb 06, 2018 at 01:41:29AM +, Sasha Levin wrote:
> On Mon, Feb 05, 2018 at 11:41:54AM +, Mark Brown wrote:
> >On Sat, Feb 03, 2018 at 06:00:42PM +, Sasha Levin wrote:
> >> From: Abhijeet Kumar 
> >>
> >> [ Upstream commit d070f7c703ef26e3db613f24206823f916272fc6 ]
> >>
> >> In skylake platform, we hear a loud pop noise(0 dB) at start of
> >> audio capture power up sequence. This patch removes the pop noise
> >> from the recording by adding a delay before enabling ADC.
> >
> >>switch (event) {
> >>case SND_SOC_DAPM_POST_PMU:
> >> +  msleep(125);
> >>regmap_update_bits(nau8825->regmap, NAU8825_REG_ENA_CTRL,
> >
> >This is another one of these where I'm not convinced that backporting to
> >stable isn't going to introduce regressions - it will fix problems on
> >some systems but if someone really cares about a startup pop and has
> >arranged to do something like discard the start of the audio where the
> >pop occurs then this may cut off even more and cause them to miss
> >things.
> 
> It might cause regressions for users who worked around the issue, but it
> may also fix the issue for users who didn't. I think that in general
> we'd rather have mainline and stable trees have the same bugs and
> breakage - we don't want surprises when users jump around between
> kernels.

Yes, being "bug compatible" is a key feature to have :)

thanks,

greg k-h


Re: [PATCH AUTOSEL for 4.14 029/110] ASoC: nau8825: fix issue that pop noise when start capture

2018-02-05 Thread Sasha Levin
On Mon, Feb 05, 2018 at 11:41:54AM +, Mark Brown wrote:
>On Sat, Feb 03, 2018 at 06:00:42PM +, Sasha Levin wrote:
>> From: Abhijeet Kumar 
>>
>> [ Upstream commit d070f7c703ef26e3db613f24206823f916272fc6 ]
>>
>> In skylake platform, we hear a loud pop noise(0 dB) at start of
>> audio capture power up sequence. This patch removes the pop noise
>> from the recording by adding a delay before enabling ADC.
>
>>  switch (event) {
>>  case SND_SOC_DAPM_POST_PMU:
>> +msleep(125);
>>  regmap_update_bits(nau8825->regmap, NAU8825_REG_ENA_CTRL,
>
>This is another one of these where I'm not convinced that backporting to
>stable isn't going to introduce regressions - it will fix problems on
>some systems but if someone really cares about a startup pop and has
>arranged to do something like discard the start of the audio where the
>pop occurs then this may cut off even more and cause them to miss
>things.

It might cause regressions for users who worked around the issue, but it
may also fix the issue for users who didn't. I think that in general
we'd rather have mainline and stable trees have the same bugs and
breakage - we don't want surprises when users jump around between
kernels.

-- 

Thanks,
Sasha

Re: [PATCH AUTOSEL for 4.14 029/110] ASoC: nau8825: fix issue that pop noise when start capture

2018-02-05 Thread Sasha Levin
On Mon, Feb 05, 2018 at 11:41:54AM +, Mark Brown wrote:
>On Sat, Feb 03, 2018 at 06:00:42PM +, Sasha Levin wrote:
>> From: Abhijeet Kumar 
>>
>> [ Upstream commit d070f7c703ef26e3db613f24206823f916272fc6 ]
>>
>> In skylake platform, we hear a loud pop noise(0 dB) at start of
>> audio capture power up sequence. This patch removes the pop noise
>> from the recording by adding a delay before enabling ADC.
>
>>  switch (event) {
>>  case SND_SOC_DAPM_POST_PMU:
>> +msleep(125);
>>  regmap_update_bits(nau8825->regmap, NAU8825_REG_ENA_CTRL,
>
>This is another one of these where I'm not convinced that backporting to
>stable isn't going to introduce regressions - it will fix problems on
>some systems but if someone really cares about a startup pop and has
>arranged to do something like discard the start of the audio where the
>pop occurs then this may cut off even more and cause them to miss
>things.

It might cause regressions for users who worked around the issue, but it
may also fix the issue for users who didn't. I think that in general
we'd rather have mainline and stable trees have the same bugs and
breakage - we don't want surprises when users jump around between
kernels.

-- 

Thanks,
Sasha

Re: [PATCH AUTOSEL for 4.14 029/110] ASoC: nau8825: fix issue that pop noise when start capture

2018-02-05 Thread Mark Brown
On Sat, Feb 03, 2018 at 06:00:42PM +, Sasha Levin wrote:
> From: Abhijeet Kumar 
> 
> [ Upstream commit d070f7c703ef26e3db613f24206823f916272fc6 ]
> 
> In skylake platform, we hear a loud pop noise(0 dB) at start of
> audio capture power up sequence. This patch removes the pop noise
> from the recording by adding a delay before enabling ADC.

>   switch (event) {
>   case SND_SOC_DAPM_POST_PMU:
> + msleep(125);
>   regmap_update_bits(nau8825->regmap, NAU8825_REG_ENA_CTRL,

This is another one of these where I'm not convinced that backporting to
stable isn't going to introduce regressions - it will fix problems on
some systems but if someone really cares about a startup pop and has
arranged to do something like discard the start of the audio where the
pop occurs then this may cut off even more and cause them to miss
things.  


signature.asc
Description: PGP signature


Re: [PATCH AUTOSEL for 4.14 029/110] ASoC: nau8825: fix issue that pop noise when start capture

2018-02-05 Thread Mark Brown
On Sat, Feb 03, 2018 at 06:00:42PM +, Sasha Levin wrote:
> From: Abhijeet Kumar 
> 
> [ Upstream commit d070f7c703ef26e3db613f24206823f916272fc6 ]
> 
> In skylake platform, we hear a loud pop noise(0 dB) at start of
> audio capture power up sequence. This patch removes the pop noise
> from the recording by adding a delay before enabling ADC.

>   switch (event) {
>   case SND_SOC_DAPM_POST_PMU:
> + msleep(125);
>   regmap_update_bits(nau8825->regmap, NAU8825_REG_ENA_CTRL,

This is another one of these where I'm not convinced that backporting to
stable isn't going to introduce regressions - it will fix problems on
some systems but if someone really cares about a startup pop and has
arranged to do something like discard the start of the audio where the
pop occurs then this may cut off even more and cause them to miss
things.  


signature.asc
Description: PGP signature