All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH alsa-lib] conf/ucm: Add a UCM profile for Dell WD15 Dock USB-audio
@ 2018-05-02 14:54 Takashi Iwai
  2018-05-02 15:17 ` Takashi Iwai
  0 siblings, 1 reply; 5+ messages in thread
From: Takashi Iwai @ 2018-05-02 14:54 UTC (permalink / raw)
  To: alsa-devel

USB-audio device on Dell WD15 docking station provides two individual
PCM streams, one for headphone and another for line out.  A UCM
profile gives the proper roles for these.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
---

This is the alsa-lib part to correspond to the recent Dell WD15 dock
patchset.

 src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf |  5 +++++
 src/conf/ucm/Dell-WD15-Dock/HiFi.conf           | 26 +++++++++++++++++++++++++
 src/conf/ucm/Dell-WD15-Dock/Makefile.am         |  4 ++++
 src/conf/ucm/Makefile.am                        |  1 +
 4 files changed, 36 insertions(+)
 create mode 100644 src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf
 create mode 100644 src/conf/ucm/Dell-WD15-Dock/HiFi.conf
 create mode 100644 src/conf/ucm/Dell-WD15-Dock/Makefile.am

diff --git a/src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf b/src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf
new file mode 100644
index 000000000000..f4f0a8d97e73
--- /dev/null
+++ b/src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf
@@ -0,0 +1,5 @@
+Comment "USB-audio on Dell WD15 docking station"
+SectionUseCase."HiFi" {
+	File "HiFi.conf"
+	Comment "Default"
+}
diff --git a/src/conf/ucm/Dell-WD15-Dock/HiFi.conf b/src/conf/ucm/Dell-WD15-Dock/HiFi.conf
new file mode 100644
index 000000000000..b07f34400086
--- /dev/null
+++ b/src/conf/ucm/Dell-WD15-Dock/HiFi.conf
@@ -0,0 +1,26 @@
+SectionDevice."Headphone" {
+	Comment "Headphone"
+
+	Value {
+		PlaybackChannels "2"
+		PlaybackPCM "hw:WD15Dock,0"
+	}
+}
+
+SectionDevice."LineOut" {
+	Comment "Line Out"
+
+	Value {
+		PlaybackChannels "2"
+		PlaybackPCM "hw:WD15Dock,1"
+	}
+}
+
+SectionDevice."Mic" {
+	Comment "Microphone"
+
+	Value {
+		CaptureChannels "2"
+		CapturePCM "hw:WD15Dock,0"
+	}
+}
diff --git a/src/conf/ucm/Dell-WD15-Dock/Makefile.am b/src/conf/ucm/Dell-WD15-Dock/Makefile.am
new file mode 100644
index 000000000000..7ab58730dc26
--- /dev/null
+++ b/src/conf/ucm/Dell-WD15-Dock/Makefile.am
@@ -0,0 +1,4 @@
+alsaconfigdir = @ALSA_CONFIG_DIR@
+ucmdir = $(alsaconfigdir)/ucm/Dell-WD15-Dock
+ucm_DATA = Dell-WD15-Dock.conf HiFi.conf
+EXTRA_DIST = $(ucm_DATA)
diff --git a/src/conf/ucm/Makefile.am b/src/conf/ucm/Makefile.am
index 02df25f01b25..38fc6b252bcb 100644
--- a/src/conf/ucm/Makefile.am
+++ b/src/conf/ucm/Makefile.am
@@ -7,6 +7,7 @@ chtrt5645 \
 chtrt5645-mono-speaker-analog-mic \
 DAISY-I2S \
 DB410c \
+Dell-WD15-Dock \
 GoogleNyan \
 gpd-win-pocket-rt5645 \
 HDAudio-Gigabyte-ALC1220DualCodecs \
-- 
2.16.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH alsa-lib] conf/ucm: Add a UCM profile for Dell WD15 Dock USB-audio
  2018-05-02 14:54 [PATCH alsa-lib] conf/ucm: Add a UCM profile for Dell WD15 Dock USB-audio Takashi Iwai
@ 2018-05-02 15:17 ` Takashi Iwai
  2018-05-03  5:20   ` Pan, Xiuli
  0 siblings, 1 reply; 5+ messages in thread
From: Takashi Iwai @ 2018-05-02 15:17 UTC (permalink / raw)
  To: alsa-devel

On Wed, 02 May 2018 16:54:31 +0200,
Takashi Iwai wrote:
> 
> USB-audio device on Dell WD15 docking station provides two individual
> PCM streams, one for headphone and another for line out.  A UCM
> profile gives the proper roles for these.
> 
> Signed-off-by: Takashi Iwai <tiwai@suse.de>

The change in configure.ac was missing.  Below is the corrected one.
Sorry for the mess.


Takashi

-- 8< --
From: Takashi Iwai <tiwai@suse.de>
Subject: [PATCH alsa-lib v2] conf/ucm: Add a UCM profile for Dell WD15 Dock USB-audio

USB-audio device on Dell WD15 docking station provides two individual
PCM streams, one for headphone and another for line out.  A UCM
profile gives the proper roles for these.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
 configure.ac                                    |  1 +
 src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf |  5 +++++
 src/conf/ucm/Dell-WD15-Dock/HiFi.conf           | 26 +++++++++++++++++++++++++
 src/conf/ucm/Dell-WD15-Dock/Makefile.am         |  4 ++++
 src/conf/ucm/Makefile.am                        |  1 +
 5 files changed, 37 insertions(+)
 create mode 100644 src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf
 create mode 100644 src/conf/ucm/Dell-WD15-Dock/HiFi.conf
 create mode 100644 src/conf/ucm/Dell-WD15-Dock/Makefile.am

diff --git a/configure.ac b/configure.ac
index 3ee989eb32e1..693b5d538436 100644
--- a/configure.ac
+++ b/configure.ac
@@ -725,6 +725,7 @@ AC_OUTPUT(Makefile doc/Makefile doc/pictures/Makefile doc/doxygen.cfg \
 	  src/conf/ucm/chtrt5645-mono-speaker-analog-mic/Makefile \
 	  src/conf/ucm/DAISY-I2S/Makefile \
 	  src/conf/ucm/DB410c/Makefile \
+	  src/conf/ucm/Dell-WD15-Dock/Makefile \
 	  src/conf/ucm/GoogleNyan/Makefile \
 	  src/conf/ucm/gpd-win-pocket-rt5645/Makefile \
 	  src/conf/ucm/HDAudio-Gigabyte-ALC1220DualCodecs/Makefile \
diff --git a/src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf b/src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf
new file mode 100644
index 000000000000..f4f0a8d97e73
--- /dev/null
+++ b/src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf
@@ -0,0 +1,5 @@
+Comment "USB-audio on Dell WD15 docking station"
+SectionUseCase."HiFi" {
+	File "HiFi.conf"
+	Comment "Default"
+}
diff --git a/src/conf/ucm/Dell-WD15-Dock/HiFi.conf b/src/conf/ucm/Dell-WD15-Dock/HiFi.conf
new file mode 100644
index 000000000000..b07f34400086
--- /dev/null
+++ b/src/conf/ucm/Dell-WD15-Dock/HiFi.conf
@@ -0,0 +1,26 @@
+SectionDevice."Headphone" {
+	Comment "Headphone"
+
+	Value {
+		PlaybackChannels "2"
+		PlaybackPCM "hw:WD15Dock,0"
+	}
+}
+
+SectionDevice."LineOut" {
+	Comment "Line Out"
+
+	Value {
+		PlaybackChannels "2"
+		PlaybackPCM "hw:WD15Dock,1"
+	}
+}
+
+SectionDevice."Mic" {
+	Comment "Microphone"
+
+	Value {
+		CaptureChannels "2"
+		CapturePCM "hw:WD15Dock,0"
+	}
+}
diff --git a/src/conf/ucm/Dell-WD15-Dock/Makefile.am b/src/conf/ucm/Dell-WD15-Dock/Makefile.am
new file mode 100644
index 000000000000..7ab58730dc26
--- /dev/null
+++ b/src/conf/ucm/Dell-WD15-Dock/Makefile.am
@@ -0,0 +1,4 @@
+alsaconfigdir = @ALSA_CONFIG_DIR@
+ucmdir = $(alsaconfigdir)/ucm/Dell-WD15-Dock
+ucm_DATA = Dell-WD15-Dock.conf HiFi.conf
+EXTRA_DIST = $(ucm_DATA)
diff --git a/src/conf/ucm/Makefile.am b/src/conf/ucm/Makefile.am
index 02df25f01b25..38fc6b252bcb 100644
--- a/src/conf/ucm/Makefile.am
+++ b/src/conf/ucm/Makefile.am
@@ -7,6 +7,7 @@ chtrt5645 \
 chtrt5645-mono-speaker-analog-mic \
 DAISY-I2S \
 DB410c \
+Dell-WD15-Dock \
 GoogleNyan \
 gpd-win-pocket-rt5645 \
 HDAudio-Gigabyte-ALC1220DualCodecs \
-- 
2.16.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH alsa-lib] conf/ucm: Add a UCM profile for Dell WD15 Dock USB-audio
  2018-05-02 15:17 ` Takashi Iwai
@ 2018-05-03  5:20   ` Pan, Xiuli
  2018-05-03  6:42     ` Takashi Iwai
  0 siblings, 1 reply; 5+ messages in thread
From: Pan, Xiuli @ 2018-05-03  5:20 UTC (permalink / raw)
  To: Takashi Iwai, alsa-devel



On 5/2/2018 23:17, Takashi Iwai wrote:
> On Wed, 02 May 2018 16:54:31 +0200,
> Takashi Iwai wrote:
>> USB-audio device on Dell WD15 docking station provides two individual
>> PCM streams, one for headphone and another for line out.  A UCM
>> profile gives the proper roles for these.
>>
>> Signed-off-by: Takashi Iwai <tiwai@suse.de>
> The change in configure.ac was missing.  Below is the corrected one.
> Sorry for the mess.
The V1 patch seems to be merged in the master branch.
I send a patch to fix the build error based on your V2 version patch.

Thanks
Xiuli

>
> Takashi
>
> -- 8< --
> From: Takashi Iwai <tiwai@suse.de>
> Subject: [PATCH alsa-lib v2] conf/ucm: Add a UCM profile for Dell WD15 Dock USB-audio
>
> USB-audio device on Dell WD15 docking station provides two individual
> PCM streams, one for headphone and another for line out.  A UCM
> profile gives the proper roles for these.
>
> Signed-off-by: Takashi Iwai <tiwai@suse.de>
> ---
>   configure.ac                                    |  1 +
>   src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf |  5 +++++
>   src/conf/ucm/Dell-WD15-Dock/HiFi.conf           | 26 +++++++++++++++++++++++++
>   src/conf/ucm/Dell-WD15-Dock/Makefile.am         |  4 ++++
>   src/conf/ucm/Makefile.am                        |  1 +
>   5 files changed, 37 insertions(+)
>   create mode 100644 src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf
>   create mode 100644 src/conf/ucm/Dell-WD15-Dock/HiFi.conf
>   create mode 100644 src/conf/ucm/Dell-WD15-Dock/Makefile.am
>
> diff --git a/configure.ac b/configure.ac
> index 3ee989eb32e1..693b5d538436 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -725,6 +725,7 @@ AC_OUTPUT(Makefile doc/Makefile doc/pictures/Makefile doc/doxygen.cfg \
>   	  src/conf/ucm/chtrt5645-mono-speaker-analog-mic/Makefile \
>   	  src/conf/ucm/DAISY-I2S/Makefile \
>   	  src/conf/ucm/DB410c/Makefile \
> +	  src/conf/ucm/Dell-WD15-Dock/Makefile \
>   	  src/conf/ucm/GoogleNyan/Makefile \
>   	  src/conf/ucm/gpd-win-pocket-rt5645/Makefile \
>   	  src/conf/ucm/HDAudio-Gigabyte-ALC1220DualCodecs/Makefile \
> diff --git a/src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf b/src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf
> new file mode 100644
> index 000000000000..f4f0a8d97e73
> --- /dev/null
> +++ b/src/conf/ucm/Dell-WD15-Dock/Dell-WD15-Dock.conf
> @@ -0,0 +1,5 @@
> +Comment "USB-audio on Dell WD15 docking station"
> +SectionUseCase."HiFi" {
> +	File "HiFi.conf"
> +	Comment "Default"
> +}
> diff --git a/src/conf/ucm/Dell-WD15-Dock/HiFi.conf b/src/conf/ucm/Dell-WD15-Dock/HiFi.conf
> new file mode 100644
> index 000000000000..b07f34400086
> --- /dev/null
> +++ b/src/conf/ucm/Dell-WD15-Dock/HiFi.conf
> @@ -0,0 +1,26 @@
> +SectionDevice."Headphone" {
> +	Comment "Headphone"
> +
> +	Value {
> +		PlaybackChannels "2"
> +		PlaybackPCM "hw:WD15Dock,0"
> +	}
> +}
> +
> +SectionDevice."LineOut" {
> +	Comment "Line Out"
> +
> +	Value {
> +		PlaybackChannels "2"
> +		PlaybackPCM "hw:WD15Dock,1"
> +	}
> +}
> +
> +SectionDevice."Mic" {
> +	Comment "Microphone"
> +
> +	Value {
> +		CaptureChannels "2"
> +		CapturePCM "hw:WD15Dock,0"
> +	}
> +}
> diff --git a/src/conf/ucm/Dell-WD15-Dock/Makefile.am b/src/conf/ucm/Dell-WD15-Dock/Makefile.am
> new file mode 100644
> index 000000000000..7ab58730dc26
> --- /dev/null
> +++ b/src/conf/ucm/Dell-WD15-Dock/Makefile.am
> @@ -0,0 +1,4 @@
> +alsaconfigdir = @ALSA_CONFIG_DIR@
> +ucmdir = $(alsaconfigdir)/ucm/Dell-WD15-Dock
> +ucm_DATA = Dell-WD15-Dock.conf HiFi.conf
> +EXTRA_DIST = $(ucm_DATA)
> diff --git a/src/conf/ucm/Makefile.am b/src/conf/ucm/Makefile.am
> index 02df25f01b25..38fc6b252bcb 100644
> --- a/src/conf/ucm/Makefile.am
> +++ b/src/conf/ucm/Makefile.am
> @@ -7,6 +7,7 @@ chtrt5645 \
>   chtrt5645-mono-speaker-analog-mic \
>   DAISY-I2S \
>   DB410c \
> +Dell-WD15-Dock \
>   GoogleNyan \
>   gpd-win-pocket-rt5645 \
>   HDAudio-Gigabyte-ALC1220DualCodecs \

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH alsa-lib] conf/ucm: Add a UCM profile for Dell WD15 Dock USB-audio
  2018-05-03  5:20   ` Pan, Xiuli
@ 2018-05-03  6:42     ` Takashi Iwai
  2018-05-03  7:45       ` Pan, Xiuli
  0 siblings, 1 reply; 5+ messages in thread
From: Takashi Iwai @ 2018-05-03  6:42 UTC (permalink / raw)
  To: Pan, Xiuli; +Cc: alsa-devel

On Thu, 03 May 2018 07:20:53 +0200,
Pan, Xiuli wrote:
> 
> 
> 
> On 5/2/2018 23:17, Takashi Iwai wrote:
> > On Wed, 02 May 2018 16:54:31 +0200,
> > Takashi Iwai wrote:
> >> USB-audio device on Dell WD15 docking station provides two individual
> >> PCM streams, one for headphone and another for line out.  A UCM
> >> profile gives the proper roles for these.
> >>
> >> Signed-off-by: Takashi Iwai <tiwai@suse.de>
> > The change in configure.ac was missing.  Below is the corrected one.
> > Sorry for the mess.
> The V1 patch seems to be merged in the master branch.
> I send a patch to fix the build error based on your V2 version patch.

I seem to have forgotten to refresh the git repo.  Grrr.
Since it took too long, I applied the incremental fix commit instead
of rebase, exactly same as what you sent.


thanks,

Takashi

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH alsa-lib] conf/ucm: Add a UCM profile for Dell WD15 Dock USB-audio
  2018-05-03  6:42     ` Takashi Iwai
@ 2018-05-03  7:45       ` Pan, Xiuli
  0 siblings, 0 replies; 5+ messages in thread
From: Pan, Xiuli @ 2018-05-03  7:45 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel



On 5/3/2018 14:42, Takashi Iwai wrote:
> On Thu, 03 May 2018 07:20:53 +0200,
> Pan, Xiuli wrote:
>>
>>
>> On 5/2/2018 23:17, Takashi Iwai wrote:
>>> On Wed, 02 May 2018 16:54:31 +0200,
>>> Takashi Iwai wrote:
>>>> USB-audio device on Dell WD15 docking station provides two individual
>>>> PCM streams, one for headphone and another for line out.  A UCM
>>>> profile gives the proper roles for these.
>>>>
>>>> Signed-off-by: Takashi Iwai <tiwai@suse.de>
>>> The change in configure.ac was missing.  Below is the corrected one.
>>> Sorry for the mess.
>> The V1 patch seems to be merged in the master branch.
>> I send a patch to fix the build error based on your V2 version patch.
> I seem to have forgotten to refresh the git repo.  Grrr.
> Since it took too long, I applied the incremental fix commit instead
> of rebase, exactly same as what you sent.
Thanks for the fixing.
The master could compile now.

Thanks
Xiuli
>
> thanks,
>
> Takashi
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-05-03  7:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-02 14:54 [PATCH alsa-lib] conf/ucm: Add a UCM profile for Dell WD15 Dock USB-audio Takashi Iwai
2018-05-02 15:17 ` Takashi Iwai
2018-05-03  5:20   ` Pan, Xiuli
2018-05-03  6:42     ` Takashi Iwai
2018-05-03  7:45       ` Pan, Xiuli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.