ARM64: dts: rk3399-android: change i2s2 bclk to 128fs for hdmi
[firefly-linux-kernel-4.4.55.git] / sound / soc / soc-jack.c
index 0bb5cccd77663a4d819a67731245e51564af3224..fbaa1bb41102f45920f478008070ee53cdbbb6b4 100644 (file)
@@ -14,6 +14,7 @@
 #include <sound/jack.h>
 #include <sound/soc.h>
 #include <linux/gpio.h>
+#include <linux/gpio/consumer.h>
 #include <linux/interrupt.h>
 #include <linux/workqueue.h>
 #include <linux/delay.h>
 #include <trace/events/asoc.h>
 
 /**
- * snd_soc_jack_new - Create a new jack
- * @codec: ASoC codec
+ * snd_soc_card_jack_new - Create a new jack
+ * @card:  ASoC card
  * @id:    an identifying string for this jack
  * @type:  a bitmask of enum snd_jack_type values that can be detected by
  *         this jack
  * @jack:  structure to use for the jack
+ * @pins:  Array of jack pins to be added to the jack or NULL
+ * @num_pins: Number of elements in the @pins array
  *
  * Creates a new jack object.
  *
  * Returns zero if successful, or a negative error code on failure.
  * On success jack will be initialised.
  */
-int snd_soc_jack_new(struct snd_soc_codec *codec, const char *id, int type,
-                    struct snd_soc_jack *jack)
+int snd_soc_card_jack_new(struct snd_soc_card *card, const char *id, int type,
+       struct snd_soc_jack *jack, struct snd_soc_jack_pin *pins,
+       unsigned int num_pins)
 {
+       int ret;
+
        mutex_init(&jack->mutex);
-       jack->codec = codec;
+       jack->card = card;
        INIT_LIST_HEAD(&jack->pins);
        INIT_LIST_HEAD(&jack->jack_zones);
        BLOCKING_INIT_NOTIFIER_HEAD(&jack->notifier);
 
-       return snd_jack_new(codec->card->snd_card, id, type, &jack->jack);
+       ret = snd_jack_new(card->snd_card, id, type, &jack->jack, false, false);
+       if (ret)
+               return ret;
+
+       if (num_pins)
+               return snd_soc_jack_add_pins(jack, num_pins, pins);
+
+       return 0;
 }
-EXPORT_SYMBOL_GPL(snd_soc_jack_new);
+EXPORT_SYMBOL_GPL(snd_soc_card_jack_new);
 
 /**
  * snd_soc_jack_report - Report the current status for a jack
@@ -62,9 +75,9 @@ EXPORT_SYMBOL_GPL(snd_soc_jack_new);
  */
 void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
 {
-       struct snd_soc_codec *codec;
        struct snd_soc_dapm_context *dapm;
        struct snd_soc_jack_pin *pin;
+       unsigned int sync = 0;
        int enable;
 
        trace_snd_soc_jack_report(jack, mask, status);
@@ -72,8 +85,7 @@ void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
        if (!jack)
                return;
 
-       codec = jack->codec;
-       dapm =  &codec->dapm;
+       dapm = &jack->card->dapm;
 
        mutex_lock(&jack->mutex);
 
@@ -92,12 +104,16 @@ void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
                        snd_soc_dapm_enable_pin(dapm, pin->pin);
                else
                        snd_soc_dapm_disable_pin(dapm, pin->pin);
+
+               /* we need to sync for this case only */
+               sync = 1;
        }
 
        /* Report before the DAPM sync to help users updating micbias status */
        blocking_notifier_call_chain(&jack->notifier, jack->status, jack);
 
-       snd_soc_dapm_sync(dapm);
+       if (sync)
+               snd_soc_dapm_sync(dapm);
 
        snd_jack_report(jack->jack, jack->status);
 
@@ -110,7 +126,7 @@ EXPORT_SYMBOL_GPL(snd_soc_jack_report);
  *
  * @jack:  ASoC jack
  * @count: Number of zones
- * @zone:  Array of zones
+ * @zones:  Array of zones
  *
  * After this function has been called the zones specified in the
  * array will be associated with the jack.
@@ -169,22 +185,21 @@ int snd_soc_jack_add_pins(struct snd_soc_jack *jack, int count,
 
        for (i = 0; i < count; i++) {
                if (!pins[i].pin) {
-                       dev_err(jack->codec->dev, "ASoC: No name for pin %d\n",
+                       dev_err(jack->card->dev, "ASoC: No name for pin %d\n",
                                i);
                        return -EINVAL;
                }
                if (!pins[i].mask) {
-                       dev_err(jack->codec->dev, "ASoC: No mask for pin %d"
+                       dev_err(jack->card->dev, "ASoC: No mask for pin %d"
                                " (%s)\n", i, pins[i].pin);
                        return -EINVAL;
                }
 
                INIT_LIST_HEAD(&pins[i].list);
                list_add(&(pins[i].list), &jack->pins);
+               snd_jack_add_new_kctl(jack->jack, pins[i].pin, pins[i].mask);
        }
 
-       snd_soc_dapm_new_widgets(&jack->codec->card->dapm);
-
        /* Update to reflect the last reported status; canned jack
         * implementations are likely to set their state before the
         * card has an opportunity to associate pins.
@@ -237,7 +252,7 @@ static void snd_soc_jack_gpio_detect(struct snd_soc_jack_gpio *gpio)
        int enable;
        int report;
 
-       enable = gpio_get_value_cansleep(gpio->gpio);
+       enable = gpiod_get_value_cansleep(gpio->desc);
        if (gpio->invert)
                enable = !enable;
 
@@ -247,7 +262,7 @@ static void snd_soc_jack_gpio_detect(struct snd_soc_jack_gpio *gpio)
                report = 0;
 
        if (gpio->jack_status_check)
-               report = gpio->jack_status_check();
+               report = gpio->jack_status_check(gpio->data);
 
        snd_soc_jack_report(jack, report, gpio->report);
 }
@@ -256,14 +271,14 @@ static void snd_soc_jack_gpio_detect(struct snd_soc_jack_gpio *gpio)
 static irqreturn_t gpio_handler(int irq, void *data)
 {
        struct snd_soc_jack_gpio *gpio = data;
-       struct device *dev = gpio->jack->codec->card->dev;
+       struct device *dev = gpio->jack->card->dev;
 
        trace_snd_soc_jack_irq(gpio->name);
 
        if (device_may_wakeup(dev))
                pm_wakeup_event(dev, gpio->debounce_time + 50);
 
-       schedule_delayed_work(&gpio->work,
+       queue_delayed_work(system_power_efficient_wq, &gpio->work,
                              msecs_to_jiffies(gpio->debounce_time));
 
        return IRQ_HANDLED;
@@ -294,31 +309,50 @@ int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
        int i, ret;
 
        for (i = 0; i < count; i++) {
-               if (!gpio_is_valid(gpios[i].gpio)) {
-                       dev_err(jack->codec->dev, "ASoC: Invalid gpio %d\n",
-                               gpios[i].gpio);
-                       ret = -EINVAL;
-                       goto undo;
-               }
                if (!gpios[i].name) {
-                       dev_err(jack->codec->dev, "ASoC: No name for gpio %d\n",
-                               gpios[i].gpio);
+                       dev_err(jack->card->dev,
+                               "ASoC: No name for gpio at index %d\n", i);
                        ret = -EINVAL;
                        goto undo;
                }
 
-               ret = gpio_request(gpios[i].gpio, gpios[i].name);
-               if (ret)
-                       goto undo;
-
-               ret = gpio_direction_input(gpios[i].gpio);
-               if (ret)
-                       goto err;
-
+               if (gpios[i].desc) {
+                       /* Already have a GPIO descriptor. */
+                       goto got_gpio;
+               } else if (gpios[i].gpiod_dev) {
+                       /* Get a GPIO descriptor */
+                       gpios[i].desc = gpiod_get_index(gpios[i].gpiod_dev,
+                                                       gpios[i].name,
+                                                       gpios[i].idx, GPIOD_IN);
+                       if (IS_ERR(gpios[i].desc)) {
+                               ret = PTR_ERR(gpios[i].desc);
+                               dev_err(gpios[i].gpiod_dev,
+                                       "ASoC: Cannot get gpio at index %d: %d",
+                                       i, ret);
+                               goto undo;
+                       }
+               } else {
+                       /* legacy GPIO number */
+                       if (!gpio_is_valid(gpios[i].gpio)) {
+                               dev_err(jack->card->dev,
+                                       "ASoC: Invalid gpio %d\n",
+                                       gpios[i].gpio);
+                               ret = -EINVAL;
+                               goto undo;
+                       }
+
+                       ret = gpio_request_one(gpios[i].gpio, GPIOF_IN,
+                                              gpios[i].name);
+                       if (ret)
+                               goto undo;
+
+                       gpios[i].desc = gpio_to_desc(gpios[i].gpio);
+               }
+got_gpio:
                INIT_DELAYED_WORK(&gpios[i].work, gpio_work);
                gpios[i].jack = jack;
 
-               ret = request_any_context_irq(gpio_to_irq(gpios[i].gpio),
+               ret = request_any_context_irq(gpiod_to_irq(gpios[i].desc),
                                              gpio_handler,
                                              IRQF_TRIGGER_RISING |
                                              IRQF_TRIGGER_FALLING,
@@ -328,18 +362,19 @@ int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
                        goto err;
 
                if (gpios[i].wake) {
-                       ret = irq_set_irq_wake(gpio_to_irq(gpios[i].gpio), 1);
+                       ret = irq_set_irq_wake(gpiod_to_irq(gpios[i].desc), 1);
                        if (ret != 0)
-                               dev_err(jack->codec->dev, "ASoC: "
-                                 "Failed to mark GPIO %d as wake source: %d\n",
-                                       gpios[i].gpio, ret);
+                               dev_err(jack->card->dev,
+                                       "ASoC: Failed to mark GPIO at index %d as wake source: %d\n",
+                                       i, ret);
                }
 
                /* Expose GPIO value over sysfs for diagnostic purposes */
-               gpio_export(gpios[i].gpio, false);
+               gpiod_export(gpios[i].desc, false);
 
                /* Update initial jack status */
-               snd_soc_jack_gpio_detect(&gpios[i]);
+               schedule_delayed_work(&gpios[i].work,
+                                     msecs_to_jiffies(gpios[i].debounce_time));
        }
 
        return 0;
@@ -353,6 +388,30 @@ undo:
 }
 EXPORT_SYMBOL_GPL(snd_soc_jack_add_gpios);
 
+/**
+ * snd_soc_jack_add_gpiods - Associate GPIO descriptor pins with an ASoC jack
+ *
+ * @gpiod_dev: GPIO consumer device
+ * @jack:      ASoC jack
+ * @count:     number of pins
+ * @gpios:     array of gpio pins
+ *
+ * This function will request gpio, set data direction and request irq
+ * for each gpio in the array.
+ */
+int snd_soc_jack_add_gpiods(struct device *gpiod_dev,
+                           struct snd_soc_jack *jack,
+                           int count, struct snd_soc_jack_gpio *gpios)
+{
+       int i;
+
+       for (i = 0; i < count; i++)
+               gpios[i].gpiod_dev = gpiod_dev;
+
+       return snd_soc_jack_add_gpios(jack, count, gpios);
+}
+EXPORT_SYMBOL_GPL(snd_soc_jack_add_gpiods);
+
 /**
  * snd_soc_jack_free_gpios - Release GPIO pins' resources of an ASoC jack
  *
@@ -368,10 +427,10 @@ void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,
        int i;
 
        for (i = 0; i < count; i++) {
-               gpio_unexport(gpios[i].gpio);
-               free_irq(gpio_to_irq(gpios[i].gpio), &gpios[i]);
+               gpiod_unexport(gpios[i].desc);
+               free_irq(gpiod_to_irq(gpios[i].desc), &gpios[i]);
                cancel_delayed_work_sync(&gpios[i].work);
-               gpio_free(gpios[i].gpio);
+               gpiod_put(gpios[i].desc);
                gpios[i].jack = NULL;
        }
 }