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

TOMOYO Linux Cross Reference
Linux/sound/soc/intel/boards/sof_sdw_rt700.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_rt700 - Helpers to handle RT700 from generic machine driver
  6  */
  7 
  8 #include <linux/device.h>
  9 #include <linux/errno.h>
 10 #include <linux/input.h>
 11 #include <sound/control.h>
 12 #include <sound/soc.h>
 13 #include <sound/soc-acpi.h>
 14 #include <sound/soc-dapm.h>
 15 #include <sound/jack.h>
 16 #include "sof_sdw_common.h"
 17 
 18 static const struct snd_soc_dapm_route rt700_map[] = {
 19         /* Headphones */
 20         { "Headphones", NULL, "rt700 HP" },
 21         { "Speaker", NULL, "rt700 SPK" },
 22         { "rt700 MIC2", NULL, "AMIC" },
 23 };
 24 
 25 static struct snd_soc_jack_pin rt700_jack_pins[] = {
 26         {
 27                 .pin    = "Headphones",
 28                 .mask   = SND_JACK_HEADPHONE,
 29         },
 30         {
 31                 .pin    = "AMIC",
 32                 .mask   = SND_JACK_MICROPHONE,
 33         },
 34 };
 35 
 36 int rt700_rtd_init(struct snd_soc_pcm_runtime *rtd, struct snd_soc_dai *dai)
 37 {
 38         struct snd_soc_card *card = rtd->card;
 39         struct mc_private *ctx = snd_soc_card_get_drvdata(card);
 40         struct snd_soc_component *component;
 41         struct snd_soc_jack *jack;
 42         int ret;
 43 
 44         component = dai->component;
 45         card->components = devm_kasprintf(card->dev, GFP_KERNEL,
 46                                           "%s hs:rt700",
 47                                           card->components);
 48         if (!card->components)
 49                 return -ENOMEM;
 50 
 51         ret = snd_soc_dapm_add_routes(&card->dapm, rt700_map,
 52                                       ARRAY_SIZE(rt700_map));
 53 
 54         if (ret) {
 55                 dev_err(card->dev, "rt700 map addition failed: %d\n", ret);
 56                 return ret;
 57         }
 58 
 59         ret = snd_soc_card_jack_new_pins(rtd->card, "Headset Jack",
 60                                          SND_JACK_HEADSET | SND_JACK_BTN_0 |
 61                                          SND_JACK_BTN_1 | SND_JACK_BTN_2 |
 62                                          SND_JACK_BTN_3,
 63                                          &ctx->sdw_headset,
 64                                          rt700_jack_pins,
 65                                          ARRAY_SIZE(rt700_jack_pins));
 66         if (ret) {
 67                 dev_err(rtd->card->dev, "Headset Jack creation failed: %d\n",
 68                         ret);
 69                 return ret;
 70         }
 71 
 72         jack = &ctx->sdw_headset;
 73 
 74         snd_jack_set_key(jack->jack, SND_JACK_BTN_0, KEY_PLAYPAUSE);
 75         snd_jack_set_key(jack->jack, SND_JACK_BTN_1, KEY_VOICECOMMAND);
 76         snd_jack_set_key(jack->jack, SND_JACK_BTN_2, KEY_VOLUMEUP);
 77         snd_jack_set_key(jack->jack, SND_JACK_BTN_3, KEY_VOLUMEDOWN);
 78 
 79         ret = snd_soc_component_set_jack(component, jack, NULL);
 80         if (ret)
 81                 dev_err(rtd->card->dev, "Headset Jack call-back failed: %d\n",
 82                         ret);
 83 
 84         return ret;
 85 }
 86 MODULE_IMPORT_NS(SND_SOC_INTEL_SOF_BOARD_HELPERS);
 87 

~ [ 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