Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-21 | Merge tag 'asoc-v3.13-5' of ↵ | Takashi Iwai | |
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus ASoC: Fixes for v3.13 A bunch of device specific fixes, nothing with a general impact here. | |||
2013-11-20 | Merge remote-tracking branch 'asoc/fix/wm8962' into asoc-linus | Mark Brown | |
2013-11-20 | Merge remote-tracking branch 'asoc/fix/rcar' into asoc-linus | Mark Brown | |
2013-11-20 | Merge remote-tracking branch 'asoc/fix/fsl' into asoc-linus | Mark Brown | |
2013-11-20 | Merge remote-tracking branch 'asoc/fix/dma' into asoc-linus | Mark Brown | |
2013-11-20 | Merge remote-tracking branch 'asoc/fix/cs42l52' into asoc-linus | Mark Brown | |
2013-11-20 | Merge remote-tracking branch 'asoc/fix/blackfin' into asoc-linus | Mark Brown | |
2013-11-20 | Merge remote-tracking branch 'asoc/fix/arizona' into asoc-linus | Mark Brown | |
2013-11-20 | Merge remote-tracking branch 'asoc/fix/ab8500' into asoc-linus | Mark Brown | |
2013-11-20 | ASoC: arizona: Set FLL to free-run before disabling | Richard Fitzgerald | |
The FLL must be placed into free-run mode before disabling to allow it to entirely shut down. Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@linaro.org> Cc: stable@vger.kernel.org | |||
2013-11-19 | ASoC: rcar: fixup dma_async_issue_pending() timing | Kuninori Morimoto | |
DMAEngine will stall without this patch Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@linaro.org> | |||
2013-11-19 | ASoC: rcar: off by one in rsnd_scu_set_route() | Dan Carpenter | |
If "id == ARRAY_SIZE(routes)" then we read one space beyond the end of the routes[] array. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@linaro.org> | |||
2013-11-19 | ASoC: wm5110: Add post SYSCLK register patch for rev D chip | Charles Keepax | |
Certain registers require patching after the SYSCLK has been brought up add support for this into the CODEC driver. Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@linaro.org> Cc: stable@vger.kernel.org | |||
2013-11-19 | ASoC: ab8500: Revert to using custom I/O functions | Lee Jones | |
It's been reported that these break audio on Snowball so revert them until a Snowball user has time to investigate. Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Mark Brown <broonie@linaro.org> | |||
2013-11-18 | ASoC: rcar: fixup mod access before checking | Kuninori Morimoto | |
rsnd_dai_connect() is using mod before NULL checking. This patch fixes it up Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@linaro.org> | |||
2013-11-16 | Merge tag 'asoc-v3.13-4' of ↵ | Takashi Iwai | |
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus ASoC: Fixes for v3.13 A few fixes in drivers, the i.MX and wm8962 fixes are for a pretty nasty issues for users of those drivers if they run into them. | |||
2013-11-15 | Merge remote-tracking branch 'asoc/fix/wm8962' into asoc-linus | Mark Brown | |
2013-11-15 | Merge remote-tracking branch 'asoc/fix/fsl' into asoc-linus | Mark Brown | |
2013-11-15 | Merge remote-tracking branch 'asoc/fix/dma' into asoc-linus | Mark Brown | |
2013-11-15 | Merge remote-tracking branch 'asoc/fix/cs42l52' into asoc-linus | Mark Brown | |
2013-11-15 | Merge remote-tracking branch 'asoc/fix/blackfin' into asoc-linus | Mark Brown | |
2013-11-15 | Merge remote-tracking branch 'asoc/fix/arizona' into asoc-linus | Mark Brown | |
2013-11-15 | ASoC: cs42l52: Correct MIC CTL mask | Brian Austin | |
The mask for CS42L52_MIC_CTL_TYPE_MASK was wrong keeping the mic config from being set correctly. Signed-off-by: Brian Austin <brian.austin@cirrus.com> Signed-off-by: Mark Brown <broonie@linaro.org> Cc: stable@vger.kernel.org | |||
2013-11-14 | ASoC: wm8962: Turn on regcache_cache_only before disabling regulator | Nicolin Chen | |
It's safer to turn on regcache_cache_only before disabling regulator since the driver will turn off the regcache_cache_only after enabling regulator. If we remain cache_only false, some command like 'amixer cset' would get failure if being run before wm8962_resume(). Signed-off-by: Nicolin Chen <b42378@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org> Cc: stable@vger.kernel.org | |||
2013-11-14 | ASoC: fsl: imx-pcm-fiq: omit fiq counter to avoid harm in unbalanced situations | Oskar Schirmer | |
Unbalanced calls to snd_imx_pcm_trigger() may result in endless FIQ activity and thus provoke eternal sound. While on the first glance, the switch statement looks pretty symmetric, the SUSPEND/RESUME pair is not: the suspend case comes along snd_pcm_suspend_all(), which for fsl/imx-pcm-fiq is called only at snd_soc_suspend(), but the resume case originates straight from the SNDRV_PCM_IOCTL_RESUME. This way userland may provoke an unbalanced resume, which might cause the fiq_enable counter to increase and never return to zero again, so eventually imx_pcm_fiq is never disabled. Simply removing the fiq_enable will solve the problem, as long as one never goes play and capture game simultaneously, but beware trying both at once, the early TRIGGER_STOP will cut off the other activity prematurely. So now playing and capturing is scrutinized separately, instead of by counting. Signed-off-by: Oskar Schirmer <oskar@scara.com> Signed-off-by: Mark Brown <broonie@linaro.org> Cc: stable@vger.kernel.org | |||
2013-11-13 | ASoC: blackfin: Fix missing break | Takashi Iwai | |
Fixes: 4b2ffc205cb9 ('ASoC: Blackfin I2S: add 8-bit sample support') Reported-by: David Binderman Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Mark Brown <broonie@linaro.org> Cc: stable@vger.kernel.org | |||
2013-11-13 | ASoC: arizona: Fix typo in name of EQ coefficient controls | Richard Fitzgerald | |
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@linaro.org> | |||
2013-11-12 | ASoC: wm8997: Correct typo in ISRC mux routes | Charles Keepax | |
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@linaro.org> | |||
2013-11-08 | Merge tag 'asoc-v3.13-fixes' of ↵ | Takashi Iwai | |
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus ASoC: Updates for v3.13 Some additional fixes for v3.13, the majority of which are removals and downgrades of BUG()s from Takashi. | |||
2013-11-08 | Merge remote-tracking branch 'asoc/topic/wm8996' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/wm8962' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/wm8400' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/wm0010' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/warn' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/twl6040' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/twl4030' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/tpa6130a2' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/tlv320aic3x' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/tlv320aic32x4' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/tlv320aic26' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/tlv320aic23' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/tegra' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/tas5086' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/spear' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/sn95031' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/simple' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/si476x' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/samsung' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/rt5640' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/rcar' into asoc-next | Mark Brown | |