~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/sound/soc/intel/boards/sof_sdw_rt5682.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 // Copyright (c) 2020 Intel Corporation
  3 
  4 /*
  5  *  sof_sdw_rt5682 - Helpers to handle RT5682 from generic machine driver
  6  */
  7 
  8 #include <linux/device.h>
  9 #include <linux/errno.h>
 10 #include <linux/input.h>
 11 #include <linux/soundwire/sdw.h>
 12 #include <linux/soundwire/sdw_type.h>
 13 #include <sound/control.h>
 14 #include <sound/soc.h>
 15 #include <sound/soc-acpi.h>
 16 #include <sound/soc-dapm.h>
 17 #include <sound/jack.h>
 18 #include "sof_sdw_common.h"
 19 
 20 static const struct snd_soc_dapm_route rt5682_map[] = {
 21         /*Headphones*/
 22         { "Headphone", NULL, "rt5682 HPOL" },
 23         { "Headphone", NULL, "rt5682 HPOR" },
 24         { "rt5682 IN1P", NULL, "Headset Mic" },
 25 };
 26 
 27 static struct snd_soc_jack_pin rt5682_jack_pins[] = {
 28         {
 29                 .pin    = "Headphone",
 30                 .mask   = SND_JACK_HEADPHONE,
 31         },
 32         {
 33                 .pin    = "Headset Mic",
 34                 .mask   = SND_JACK_MICROPHONE,
 35         },
 36 };
 37 
 38 int rt5682_rtd_init(struct snd_soc_pcm_runtime *rtd, struct snd_soc_dai *dai)
 39 {
 40         struct snd_soc_card *card = rtd->card;
 41         struct mc_private *ctx = snd_soc_card_get_drvdata(card);
 42         struct snd_soc_component *component;
 43         struct snd_soc_jack *jack;
 44         int ret;
 45 
 46         component = dai->component;
 47         card->components = devm_kasprintf(card->dev, GFP_KERNEL,
 48                                           "%s hs:rt5682",
 49                                           card->components);
 50         if (!card->components)
 51                 return -ENOMEM;
 52 
 53         ret = snd_soc_dapm_add_routes(&card->dapm, rt5682_map,
 54                                       ARRAY_SIZE(rt5682_map));
 55 
 56         if (ret) {
 57                 dev_err(card->dev, "rt5682 map addition failed: %d\n", ret);
 58                 return ret;
 59         }
 60 
 61         ret = snd_soc_card_jack_new_pins(rtd->card, "Headset Jack",
 62                                          SND_JACK_HEADSET | SND_JACK_BTN_0 |
 63                                          SND_JACK_BTN_1 | SND_JACK_BTN_2 |
 64                                          SND_JACK_BTN_3,
 65                                          &ctx->sdw_headset,
 66                                          rt5682_jack_pins,
 67                                          ARRAY_SIZE(rt5682_jack_pins));
 68         if (ret) {
 69                 dev_err(rtd->card->dev, "Headset Jack creation failed: %d\n",
 70                         ret);
 71                 return ret;
 72         }
 73 
 74         jack = &ctx->sdw_headset;
 75 
 76         snd_jack_set_key(jack->jack, SND_JACK_BTN_0, KEY_PLAYPAUSE);
 77         snd_jack_set_key(jack->jack, SND_JACK_BTN_1, KEY_VOICECOMMAND);
 78         snd_jack_set_key(jack->jack, SND_JACK_BTN_2, KEY_VOLUMEUP);
 79         snd_jack_set_key(jack->jack, SND_JACK_BTN_3, KEY_VOLUMEDOWN);
 80 
 81         ret = snd_soc_component_set_jack(component, jack, NULL);
 82 
 83         if (ret)
 84                 dev_err(rtd->card->dev, "Headset Jack call-back failed: %d\n",
 85                         ret);
 86 
 87         return ret;
 88 }
 89 MODULE_IMPORT_NS(SND_SOC_INTEL_SOF_BOARD_HELPERS);
 90 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php