Loading sound/soc/codecs/88pm860x-codec.c +7 −0 Original line number Diff line number Diff line Loading @@ -22,6 +22,7 @@ #include <sound/tlv.h> #include <sound/initval.h> #include <sound/jack.h> #include <trace/events/asoc.h> #include "88pm860x-codec.h" Loading Loading @@ -1262,6 +1263,12 @@ static irqreturn_t pm860x_codec_handler(int irq, void *data) mask = pm860x->det.hs_shrt | pm860x->det.hook_det | pm860x->det.lo_shrt | pm860x->det.hp_det; #ifndef CONFIG_SND_SOC_88PM860X if (status & (HEADSET_STATUS | MIC_STATUS | SHORT_HS1 | SHORT_HS2 | SHORT_LO1 | SHORT_LO2)) trace_snd_soc_jack_irq(dev_name(pm860x->codec->dev)); #endif if ((pm860x->det.hp_det & SND_JACK_HEADPHONE) && (status & HEADSET_STATUS)) report |= SND_JACK_HEADPHONE; Loading sound/soc/codecs/Kconfig +4 −0 Original line number Diff line number Diff line Loading @@ -78,6 +78,7 @@ config SND_SOC_ALL_CODECS select SND_SOC_WM8990 if I2C select SND_SOC_WM8993 if I2C select SND_SOC_WM8994 if MFD_WM8994 select SND_SOC_WM8995 if SND_SOC_I2C_AND_SPI select SND_SOC_WM9081 if I2C select SND_SOC_WM9090 if I2C select SND_SOC_WM9705 if SND_SOC_AC97_BUS Loading Loading @@ -306,6 +307,9 @@ config SND_SOC_WM8993 config SND_SOC_WM8994 tristate config SND_SOC_WM8995 tristate config SND_SOC_WM9081 tristate Loading sound/soc/codecs/Makefile +2 −0 Original line number Diff line number Diff line Loading @@ -62,6 +62,7 @@ snd-soc-wm8988-objs := wm8988.o snd-soc-wm8990-objs := wm8990.o snd-soc-wm8993-objs := wm8993.o snd-soc-wm8994-objs := wm8994.o wm8994-tables.o snd-soc-wm8995-objs := wm8995.o snd-soc-wm9081-objs := wm9081.o snd-soc-wm9705-objs := wm9705.o snd-soc-wm9712-objs := wm9712.o Loading Loading @@ -140,6 +141,7 @@ obj-$(CONFIG_SND_SOC_WM8988) += snd-soc-wm8988.o obj-$(CONFIG_SND_SOC_WM8990) += snd-soc-wm8990.o obj-$(CONFIG_SND_SOC_WM8993) += snd-soc-wm8993.o obj-$(CONFIG_SND_SOC_WM8994) += snd-soc-wm8994.o obj-$(CONFIG_SND_SOC_WM8995) += snd-soc-wm8995.o obj-$(CONFIG_SND_SOC_WM9081) += snd-soc-wm9081.o obj-$(CONFIG_SND_SOC_WM9705) += snd-soc-wm9705.o obj-$(CONFIG_SND_SOC_WM9712) += snd-soc-wm9712.o Loading sound/soc/codecs/wm8350.c +52 −19 Original line number Diff line number Diff line Loading @@ -26,6 +26,7 @@ #include <sound/soc.h> #include <sound/initval.h> #include <sound/tlv.h> #include <trace/events/asoc.h> #include "wm8350.h" Loading Loading @@ -53,6 +54,7 @@ struct wm8350_output { struct wm8350_jack_data { struct snd_soc_jack *jack; struct delayed_work work; int report; int short_report; }; Loading Loading @@ -1335,45 +1337,69 @@ static int wm8350_resume(struct snd_soc_codec *codec) return 0; } static irqreturn_t wm8350_hp_jack_handler(int irq, void *data) static void wm8350_hp_work(struct wm8350_data *priv, struct wm8350_jack_data *jack, u16 mask) { struct wm8350_data *priv = data; struct wm8350 *wm8350 = priv->codec.control_data; u16 reg; int report; int mask; reg = wm8350_reg_read(wm8350, WM8350_JACK_PIN_STATUS); if (reg & mask) report = jack->report; else report = 0; snd_soc_jack_report(jack->jack, report, jack->report); } static void wm8350_hpl_work(struct work_struct *work) { struct wm8350_data *priv = container_of(work, struct wm8350_data, hpl.work.work); wm8350_hp_work(priv, &priv->hpl, WM8350_JACK_L_LVL); } static void wm8350_hpr_work(struct work_struct *work) { struct wm8350_data *priv = container_of(work, struct wm8350_data, hpr.work.work); wm8350_hp_work(priv, &priv->hpr, WM8350_JACK_R_LVL); } static irqreturn_t wm8350_hp_jack_handler(int irq, void *data) { struct wm8350_data *priv = data; struct wm8350 *wm8350 = priv->codec.control_data; struct wm8350_jack_data *jack = NULL; switch (irq - wm8350->irq_base) { case WM8350_IRQ_CODEC_JCK_DET_L: #ifndef CONFIG_SND_SOC_WM8350_MODULE trace_snd_soc_jack_irq("WM8350 HPL"); #endif jack = &priv->hpl; mask = WM8350_JACK_L_LVL; break; case WM8350_IRQ_CODEC_JCK_DET_R: #ifndef CONFIG_SND_SOC_WM8350_MODULE trace_snd_soc_jack_irq("WM8350 HPR"); #endif jack = &priv->hpr; mask = WM8350_JACK_R_LVL; break; default: BUG(); } if (!jack->jack) { dev_warn(wm8350->dev, "Jack interrupt called with no jack\n"); return IRQ_NONE; } /* Debounce */ msleep(200); if (device_may_wakeup(wm8350->dev)) pm_wakeup_event(wm8350->dev, 250); reg = wm8350_reg_read(wm8350, WM8350_JACK_PIN_STATUS); if (reg & mask) report = jack->report; else report = 0; snd_soc_jack_report(jack->jack, report, jack->report); schedule_delayed_work(&jack->work, 200); return IRQ_HANDLED; } Loading Loading @@ -1437,6 +1463,8 @@ static irqreturn_t wm8350_mic_handler(int irq, void *data) u16 reg; int report = 0; trace_snd_soc_jack_irq("WM8350 mic"); reg = wm8350_reg_read(wm8350, WM8350_JACK_PIN_STATUS); if (reg & WM8350_JACK_MICSCD_LVL) report |= priv->mic.short_report; Loading Loading @@ -1552,6 +1580,8 @@ static int wm8350_codec_probe(struct snd_soc_codec *codec) wm8350_clear_bits(wm8350, WM8350_POWER_MGMT_5, WM8350_CODEC_ENA); INIT_DELAYED_WORK(&codec->dapm.delayed_work, wm8350_pga_work); INIT_DELAYED_WORK(&priv->hpl.work, wm8350_hpl_work); INIT_DELAYED_WORK(&priv->hpr.work, wm8350_hpr_work); /* Enable the codec */ wm8350_set_bits(wm8350, WM8350_POWER_MGMT_5, WM8350_CODEC_ENA); Loading Loading @@ -1641,6 +1671,9 @@ static int wm8350_codec_remove(struct snd_soc_codec *codec) priv->hpr.jack = NULL; priv->mic.jack = NULL; cancel_delayed_work_sync(&priv->hpl.work); cancel_delayed_work_sync(&priv->hpr.work); /* if there was any work waiting then we run it now and * wait for its completion */ flush_delayed_work_sync(&codec->dapm.delayed_work); Loading sound/soc/codecs/wm8903.c +6 −0 Original line number Diff line number Diff line Loading @@ -31,6 +31,7 @@ #include <sound/soc.h> #include <sound/initval.h> #include <sound/wm8903.h> #include <trace/events/asoc.h> #include "wm8903.h" Loading Loading @@ -1533,6 +1534,11 @@ static irqreturn_t wm8903_irq(int irq, void *data) mic_report = wm8903->mic_last_report; int_pol = snd_soc_read(codec, WM8903_INTERRUPT_POLARITY_1); #ifndef CONFIG_SND_SOC_WM8903_MODULE if (int_val & (WM8903_MICSHRT_EINT | WM8903_MICDET_EINT)) trace_snd_soc_jack_irq(dev_name(codec->dev)); #endif if (int_val & WM8903_MICSHRT_EINT) { dev_dbg(codec->dev, "Microphone short (pol=%x)\n", int_pol); Loading Loading
sound/soc/codecs/88pm860x-codec.c +7 −0 Original line number Diff line number Diff line Loading @@ -22,6 +22,7 @@ #include <sound/tlv.h> #include <sound/initval.h> #include <sound/jack.h> #include <trace/events/asoc.h> #include "88pm860x-codec.h" Loading Loading @@ -1262,6 +1263,12 @@ static irqreturn_t pm860x_codec_handler(int irq, void *data) mask = pm860x->det.hs_shrt | pm860x->det.hook_det | pm860x->det.lo_shrt | pm860x->det.hp_det; #ifndef CONFIG_SND_SOC_88PM860X if (status & (HEADSET_STATUS | MIC_STATUS | SHORT_HS1 | SHORT_HS2 | SHORT_LO1 | SHORT_LO2)) trace_snd_soc_jack_irq(dev_name(pm860x->codec->dev)); #endif if ((pm860x->det.hp_det & SND_JACK_HEADPHONE) && (status & HEADSET_STATUS)) report |= SND_JACK_HEADPHONE; Loading
sound/soc/codecs/Kconfig +4 −0 Original line number Diff line number Diff line Loading @@ -78,6 +78,7 @@ config SND_SOC_ALL_CODECS select SND_SOC_WM8990 if I2C select SND_SOC_WM8993 if I2C select SND_SOC_WM8994 if MFD_WM8994 select SND_SOC_WM8995 if SND_SOC_I2C_AND_SPI select SND_SOC_WM9081 if I2C select SND_SOC_WM9090 if I2C select SND_SOC_WM9705 if SND_SOC_AC97_BUS Loading Loading @@ -306,6 +307,9 @@ config SND_SOC_WM8993 config SND_SOC_WM8994 tristate config SND_SOC_WM8995 tristate config SND_SOC_WM9081 tristate Loading
sound/soc/codecs/Makefile +2 −0 Original line number Diff line number Diff line Loading @@ -62,6 +62,7 @@ snd-soc-wm8988-objs := wm8988.o snd-soc-wm8990-objs := wm8990.o snd-soc-wm8993-objs := wm8993.o snd-soc-wm8994-objs := wm8994.o wm8994-tables.o snd-soc-wm8995-objs := wm8995.o snd-soc-wm9081-objs := wm9081.o snd-soc-wm9705-objs := wm9705.o snd-soc-wm9712-objs := wm9712.o Loading Loading @@ -140,6 +141,7 @@ obj-$(CONFIG_SND_SOC_WM8988) += snd-soc-wm8988.o obj-$(CONFIG_SND_SOC_WM8990) += snd-soc-wm8990.o obj-$(CONFIG_SND_SOC_WM8993) += snd-soc-wm8993.o obj-$(CONFIG_SND_SOC_WM8994) += snd-soc-wm8994.o obj-$(CONFIG_SND_SOC_WM8995) += snd-soc-wm8995.o obj-$(CONFIG_SND_SOC_WM9081) += snd-soc-wm9081.o obj-$(CONFIG_SND_SOC_WM9705) += snd-soc-wm9705.o obj-$(CONFIG_SND_SOC_WM9712) += snd-soc-wm9712.o Loading
sound/soc/codecs/wm8350.c +52 −19 Original line number Diff line number Diff line Loading @@ -26,6 +26,7 @@ #include <sound/soc.h> #include <sound/initval.h> #include <sound/tlv.h> #include <trace/events/asoc.h> #include "wm8350.h" Loading Loading @@ -53,6 +54,7 @@ struct wm8350_output { struct wm8350_jack_data { struct snd_soc_jack *jack; struct delayed_work work; int report; int short_report; }; Loading Loading @@ -1335,45 +1337,69 @@ static int wm8350_resume(struct snd_soc_codec *codec) return 0; } static irqreturn_t wm8350_hp_jack_handler(int irq, void *data) static void wm8350_hp_work(struct wm8350_data *priv, struct wm8350_jack_data *jack, u16 mask) { struct wm8350_data *priv = data; struct wm8350 *wm8350 = priv->codec.control_data; u16 reg; int report; int mask; reg = wm8350_reg_read(wm8350, WM8350_JACK_PIN_STATUS); if (reg & mask) report = jack->report; else report = 0; snd_soc_jack_report(jack->jack, report, jack->report); } static void wm8350_hpl_work(struct work_struct *work) { struct wm8350_data *priv = container_of(work, struct wm8350_data, hpl.work.work); wm8350_hp_work(priv, &priv->hpl, WM8350_JACK_L_LVL); } static void wm8350_hpr_work(struct work_struct *work) { struct wm8350_data *priv = container_of(work, struct wm8350_data, hpr.work.work); wm8350_hp_work(priv, &priv->hpr, WM8350_JACK_R_LVL); } static irqreturn_t wm8350_hp_jack_handler(int irq, void *data) { struct wm8350_data *priv = data; struct wm8350 *wm8350 = priv->codec.control_data; struct wm8350_jack_data *jack = NULL; switch (irq - wm8350->irq_base) { case WM8350_IRQ_CODEC_JCK_DET_L: #ifndef CONFIG_SND_SOC_WM8350_MODULE trace_snd_soc_jack_irq("WM8350 HPL"); #endif jack = &priv->hpl; mask = WM8350_JACK_L_LVL; break; case WM8350_IRQ_CODEC_JCK_DET_R: #ifndef CONFIG_SND_SOC_WM8350_MODULE trace_snd_soc_jack_irq("WM8350 HPR"); #endif jack = &priv->hpr; mask = WM8350_JACK_R_LVL; break; default: BUG(); } if (!jack->jack) { dev_warn(wm8350->dev, "Jack interrupt called with no jack\n"); return IRQ_NONE; } /* Debounce */ msleep(200); if (device_may_wakeup(wm8350->dev)) pm_wakeup_event(wm8350->dev, 250); reg = wm8350_reg_read(wm8350, WM8350_JACK_PIN_STATUS); if (reg & mask) report = jack->report; else report = 0; snd_soc_jack_report(jack->jack, report, jack->report); schedule_delayed_work(&jack->work, 200); return IRQ_HANDLED; } Loading Loading @@ -1437,6 +1463,8 @@ static irqreturn_t wm8350_mic_handler(int irq, void *data) u16 reg; int report = 0; trace_snd_soc_jack_irq("WM8350 mic"); reg = wm8350_reg_read(wm8350, WM8350_JACK_PIN_STATUS); if (reg & WM8350_JACK_MICSCD_LVL) report |= priv->mic.short_report; Loading Loading @@ -1552,6 +1580,8 @@ static int wm8350_codec_probe(struct snd_soc_codec *codec) wm8350_clear_bits(wm8350, WM8350_POWER_MGMT_5, WM8350_CODEC_ENA); INIT_DELAYED_WORK(&codec->dapm.delayed_work, wm8350_pga_work); INIT_DELAYED_WORK(&priv->hpl.work, wm8350_hpl_work); INIT_DELAYED_WORK(&priv->hpr.work, wm8350_hpr_work); /* Enable the codec */ wm8350_set_bits(wm8350, WM8350_POWER_MGMT_5, WM8350_CODEC_ENA); Loading Loading @@ -1641,6 +1671,9 @@ static int wm8350_codec_remove(struct snd_soc_codec *codec) priv->hpr.jack = NULL; priv->mic.jack = NULL; cancel_delayed_work_sync(&priv->hpl.work); cancel_delayed_work_sync(&priv->hpr.work); /* if there was any work waiting then we run it now and * wait for its completion */ flush_delayed_work_sync(&codec->dapm.delayed_work); Loading
sound/soc/codecs/wm8903.c +6 −0 Original line number Diff line number Diff line Loading @@ -31,6 +31,7 @@ #include <sound/soc.h> #include <sound/initval.h> #include <sound/wm8903.h> #include <trace/events/asoc.h> #include "wm8903.h" Loading Loading @@ -1533,6 +1534,11 @@ static irqreturn_t wm8903_irq(int irq, void *data) mic_report = wm8903->mic_last_report; int_pol = snd_soc_read(codec, WM8903_INTERRUPT_POLARITY_1); #ifndef CONFIG_SND_SOC_WM8903_MODULE if (int_val & (WM8903_MICSHRT_EINT | WM8903_MICDET_EINT)) trace_snd_soc_jack_irq(dev_name(codec->dev)); #endif if (int_val & WM8903_MICSHRT_EINT) { dev_dbg(codec->dev, "Microphone short (pol=%x)\n", int_pol); Loading