diff mbox

[pulseaudio-discuss] ASoC and pulseaudio

Message ID B51200AC81AB024499A3C2C9A1BB90A83D3AB8E9@SHSMSX101.ccr.corp.intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

han.lu@intel.com March 17, 2016, 11:23 a.m. UTC
> -----Original Message-----
> From: pulseaudio-discuss [mailto:pulseaudio-discuss-
> bounces@lists.freedesktop.org] On Behalf Of Liam Girdwood
> Sent: Thursday, March 17, 2016 2:00 AM
> To: Koul, Vinod <vinod.koul@intel.com>
> Cc: alsa-devel@alsa-project.org; General PulseAudio Discussion <pulseaudio-
> discuss@lists.freedesktop.org>; Takashi Iwai <tiwai@suse.de>; Mark Brown
> <broonie@kernel.org>; han.lu <han.lu@linux.intel.com>; Linux Upstreaming
> Team <linux@endlessm.com>
> Subject: Re: [pulseaudio-discuss] [alsa-devel] ASoC and pulseaudio
> 
> On Wed, 2016-03-16 at 21:23 +0530, Vinod Koul wrote:
> 
> >
> > > Yeah, that should be feasible.  Also, there is a "component" field
> > > assigned to the card.  This is supposed to be referred by user-space
> > > as additional information.  See snd_component_add().
> >
> > Will add this to my ever growing list of things to do... :D
> 
> You don't have to :)
> 
> It's on Han's list.
> 
> Liam
> 

I installed Ubuntu 14.04 to T100 and update the kernel to 4.5.0+ today,
and I tested with a simple patch, which only added long_name in
format "DMI_PRODUCT_NAME:card->name", and now in T100,
command "cat /proc/sound/cards" will print
 0  [bytcrrt5640    ]: bytcr-rt5640 - bytcr-rt5640
                                      T100TA:bytcr-rt5640
Please find details below. I'll continue to add fw name.
Or shall we use sysfs and snd_component_add instead?

From 511e6f6a606438a977d9e006c4629fa9b967d6a8 Mon Sep 17 00:00:00 2001
From: "Lu, Han" <han.lu@intel.com>
Date: Thu, 17 Mar 2016 16:50:54 +0800
Subject: [PATCH RFC 1/1] Asoc: rt5640: add more machine/board information for
 user

Add more machine/board information for PA and UCM.

Signed-off-by: Lu, Han <han.lu@intel.com>

        rt5640_sel_asrc_clk_src(codec,
--
2.5.0	

BR,
Han
> 
> _______________________________________________
> pulseaudio-discuss mailing list
> pulseaudio-discuss@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss
diff mbox

Patch

diff --git a/sound/soc/intel/boards/bytcr_rt5640.c
 b/sound/soc/intel/boards/bytcr_rt5640.c
index 032a2e7..9bd5e21 100644
--- a/sound/soc/intel/boards/bytcr_rt5640.c
+++ b/sound/soc/intel/boards/bytcr_rt5640.c
@@ -160,6 +160,12 @@  static int byt_rt5640_init(struct snd_soc_pcm_runtime
 *runtime)
        const struct snd_soc_dapm_route *custom_map;
        int num_routes;

+       if (!card->long_name) {
+               card->long_name = dmi_get_system_info(DMI_PRODUCT_NAME);
+               strcat((char *)card->long_name, ":");
+               strcat((char *)card->long_name, card->name);
+       }
+
        card->dapm.idle_bias_off = true;