|
@@ -19,18 +19,21 @@
|
|
|
#include <sound/core.h>
|
|
|
#include <sound/pcm.h>
|
|
|
#include <sound/soc.h>
|
|
|
-#include <linux/gpio.h>
|
|
|
+#include <linux/gpio/consumer.h>
|
|
|
|
|
|
-#define QI_LB60_SND_GPIO JZ_GPIO_PORTB(29)
|
|
|
-#define QI_LB60_AMP_GPIO JZ_GPIO_PORTD(4)
|
|
|
+struct qi_lb60 {
|
|
|
+ struct gpio_desc *snd_gpio;
|
|
|
+ struct gpio_desc *amp_gpio;
|
|
|
+};
|
|
|
|
|
|
static int qi_lb60_spk_event(struct snd_soc_dapm_widget *widget,
|
|
|
struct snd_kcontrol *ctrl, int event)
|
|
|
{
|
|
|
+ struct qi_lb60 *qi_lb60 = snd_soc_card_get_drvdata(widget->dapm->card);
|
|
|
int on = !SND_SOC_DAPM_EVENT_OFF(event);
|
|
|
|
|
|
- gpio_set_value(QI_LB60_SND_GPIO, on);
|
|
|
- gpio_set_value(QI_LB60_AMP_GPIO, on);
|
|
|
+ gpiod_set_value_cansleep(qi_lb60->snd_gpio, on);
|
|
|
+ gpiod_set_value_cansleep(qi_lb60->amp_gpio, on);
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
@@ -57,7 +60,7 @@ static struct snd_soc_dai_link qi_lb60_dai = {
|
|
|
SND_SOC_DAIFMT_CBM_CFM,
|
|
|
};
|
|
|
|
|
|
-static struct snd_soc_card qi_lb60 = {
|
|
|
+static struct snd_soc_card qi_lb60_card = {
|
|
|
.name = "QI LB60",
|
|
|
.owner = THIS_MODULE,
|
|
|
.dai_link = &qi_lb60_dai,
|
|
@@ -70,35 +73,35 @@ static struct snd_soc_card qi_lb60 = {
|
|
|
.fully_routed = true,
|
|
|
};
|
|
|
|
|
|
-static const struct gpio qi_lb60_gpios[] = {
|
|
|
- { QI_LB60_SND_GPIO, GPIOF_OUT_INIT_LOW, "SND" },
|
|
|
- { QI_LB60_AMP_GPIO, GPIOF_OUT_INIT_LOW, "AMP" },
|
|
|
-};
|
|
|
-
|
|
|
static int qi_lb60_probe(struct platform_device *pdev)
|
|
|
{
|
|
|
- struct snd_soc_card *card = &qi_lb60;
|
|
|
+ struct qi_lb60 *qi_lb60;
|
|
|
+ struct snd_soc_card *card = &qi_lb60_card;
|
|
|
int ret;
|
|
|
|
|
|
- ret = gpio_request_array(qi_lb60_gpios, ARRAY_SIZE(qi_lb60_gpios));
|
|
|
+ qi_lb60 = devm_kzalloc(&pdev->dev, sizeof(*qi_lb60), GFP_KERNEL);
|
|
|
+ if (!qi_lb60)
|
|
|
+ return -ENOMEM;
|
|
|
+
|
|
|
+ qi_lb60->snd_gpio = devm_gpiod_get(&pdev->dev, "snd");
|
|
|
+ if (IS_ERR(qi_lb60->snd_gpio))
|
|
|
+ return PTR_ERR(qi_lb60->snd_gpio);
|
|
|
+ ret = gpiod_direction_output(qi_lb60->snd_gpio, 0);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ qi_lb60->amp_gpio = devm_gpiod_get(&pdev->dev, "amp");
|
|
|
+ if (IS_ERR(qi_lb60->amp_gpio))
|
|
|
+ return PTR_ERR(qi_lb60->amp_gpio);
|
|
|
+ ret = gpiod_direction_output(qi_lb60->amp_gpio, 0);
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
|
|
|
card->dev = &pdev->dev;
|
|
|
|
|
|
- ret = devm_snd_soc_register_card(&pdev->dev, card);
|
|
|
- if (ret) {
|
|
|
- dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
|
|
|
- ret);
|
|
|
- gpio_free_array(qi_lb60_gpios, ARRAY_SIZE(qi_lb60_gpios));
|
|
|
- }
|
|
|
- return ret;
|
|
|
-}
|
|
|
+ snd_soc_card_set_drvdata(card, qi_lb60);
|
|
|
|
|
|
-static int qi_lb60_remove(struct platform_device *pdev)
|
|
|
-{
|
|
|
- gpio_free_array(qi_lb60_gpios, ARRAY_SIZE(qi_lb60_gpios));
|
|
|
- return 0;
|
|
|
+ return devm_snd_soc_register_card(&pdev->dev, card);
|
|
|
}
|
|
|
|
|
|
static struct platform_driver qi_lb60_driver = {
|
|
@@ -107,7 +110,6 @@ static struct platform_driver qi_lb60_driver = {
|
|
|
.owner = THIS_MODULE,
|
|
|
},
|
|
|
.probe = qi_lb60_probe,
|
|
|
- .remove = qi_lb60_remove,
|
|
|
};
|
|
|
|
|
|
module_platform_driver(qi_lb60_driver);
|