A few small WM8994 updates to go on top of the previous lot of things
that were sent. They collide with some -next work so I'd really like to get them into 3.3-rc3 if possible to merge back up into the -next code. All driver specific and unexciting in the grand scheme of things. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJPMtONAAoJEBus8iNuMP3dQeEP/ivFFNSnrONVDlDqn8KcJS6m Eyl3lji8KFgv3nbEauJptubfzMA6BuuRCyVRlJod1y91iqqobgZFIHowTKrqT3dy I74sKqtmmVBhgUbyoJhOIFw3/XzFtROLgqhb/5gaRuhtQufOQ7ye6tWA+WpPtc99 lVntuWh12GmtmQugx31dMjZX5R62Lf6UV3G86LSpZ/yuZI9L8pTTgqP5RLzgPOjt VP/hE6i18NoSm1b+84PCag0i8EtPKMR0hdLmHpBn2ZbuY08nLRknD0Jr+rcq1xDA L3w9jNzo68Nu/jN/PRHYeO76XNwOP5WmxrPw7UkphtZKu6yGLeHDviQXyzyc8Xx6 6eGWCCmEAO9pEAt2SmTrJS53Bj2iyrnnWoXMDdiOw4Hka9EOurs4Xe9meuxtv06/ ITcUGTCodzd5eTG+otolZXWrYdrBNVf6GAo3U2cLbUrkqHgt73a64GJLX2T9P5SC WSOpfb1rBokBAmw41miIzhod402R/Up/X7fi7KB+EUpU3MoNrPXuaAOaCgZkO7Tp dGw0MygtjwVjfJYoWovFjWuaXdMsXu71uE2cyd3qdpA4EL6AZRk1USf0yOpSY4Cx OzI2cPRH+etSZIG+TC3GGtRCGJ6scur5o/TThGsFNLLjGXHQ6LKN34Ik4R4hv+5q 9wKlhGlpMpYqunGhx7vr =lu2o -----END PGP SIGNATURE----- Merge tag 'asoc-3.3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus A few small WM8994 updates to go on top of the previous lot of things that were sent. They collide with some -next work so I'd really like to get them into 3.3-rc3 if possible to merge back up into the -next code. All driver specific and unexciting in the grand scheme of things.
This commit is contained in:
commit
982d411c30
|
@ -770,6 +770,8 @@ static void vmid_reference(struct snd_soc_codec *codec)
|
||||||
{
|
{
|
||||||
struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
|
struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
|
||||||
|
|
||||||
|
pm_runtime_get_sync(codec->dev);
|
||||||
|
|
||||||
wm8994->vmid_refcount++;
|
wm8994->vmid_refcount++;
|
||||||
|
|
||||||
dev_dbg(codec->dev, "Referencing VMID, refcount is now %d\n",
|
dev_dbg(codec->dev, "Referencing VMID, refcount is now %d\n",
|
||||||
|
@ -783,7 +785,12 @@ static void vmid_reference(struct snd_soc_codec *codec)
|
||||||
WM8994_VMID_RAMP_MASK,
|
WM8994_VMID_RAMP_MASK,
|
||||||
WM8994_STARTUP_BIAS_ENA |
|
WM8994_STARTUP_BIAS_ENA |
|
||||||
WM8994_VMID_BUF_ENA |
|
WM8994_VMID_BUF_ENA |
|
||||||
(0x11 << WM8994_VMID_RAMP_SHIFT));
|
(0x3 << WM8994_VMID_RAMP_SHIFT));
|
||||||
|
|
||||||
|
/* Remove discharge for line out */
|
||||||
|
snd_soc_update_bits(codec, WM8994_ANTIPOP_1,
|
||||||
|
WM8994_LINEOUT1_DISCH |
|
||||||
|
WM8994_LINEOUT2_DISCH, 0);
|
||||||
|
|
||||||
/* Main bias enable, VMID=2x40k */
|
/* Main bias enable, VMID=2x40k */
|
||||||
snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_1,
|
snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_1,
|
||||||
|
@ -837,6 +844,8 @@ static void vmid_dereference(struct snd_soc_codec *codec)
|
||||||
WM8994_VMID_BUF_ENA |
|
WM8994_VMID_BUF_ENA |
|
||||||
WM8994_VMID_RAMP_MASK, 0);
|
WM8994_VMID_RAMP_MASK, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pm_runtime_put(codec->dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int vmid_event(struct snd_soc_dapm_widget *w,
|
static int vmid_event(struct snd_soc_dapm_widget *w,
|
||||||
|
|
Loading…
Reference in New Issue