Skip to content

Commit

Permalink
ALSA: Add the driver for Digigram Lola PCI-e boards
Browse files Browse the repository at this point in the history
Added a new driver for supporting Digigram Lola PCI-e boards.

Lola has a similar h/w design like HD-audio but with extended verbs.
Thus the driver is written similarly like HD-audio driver in the bus
part.  The codec part is rather written in a fixed way specific to the
Lola board because of the verb incompatibility.

The driver provides basic PCM, supporting multi-streams and mixing.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
tiwai committed May 3, 2011
1 parent 521cb40 commit d43f301
Show file tree
Hide file tree
Showing 10 changed files with 3,112 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Documentation/sound/alsa/ALSA-Configuration.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1230,6 +1230,13 @@ Prior to version 0.9.0rc4 options had a 'snd_' prefix. This was removed.
This module supports multiple cards.
The driver requires the firmware loader support on kernel.

Module snd-lola
---------------

Module for Digigram Lola PCI-e boards

This module supports multiple cards.

Module snd-lx6464es
-------------------

Expand Down
9 changes: 9 additions & 0 deletions sound/pci/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,15 @@ config SND_KORG1212
To compile this driver as a module, choose M here: the module
will be called snd-korg1212.

config SND_LOLA
tristate "Digigram Lola"
select SND_PCM
help
Say Y to include support for Digigram Lola boards.

To compile this driver as a module, choose M here: the module
will be called snd-lola.

config SND_LX6464ES
tristate "Digigram LX6464ES"
select SND_PCM
Expand Down
1 change: 1 addition & 0 deletions sound/pci/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ obj-$(CONFIG_SND) += \
ca0106/ \
cs46xx/ \
cs5535audio/ \
lola/ \
lx6464es/ \
echoaudio/ \
emu10k1/ \
Expand Down
3 changes: 3 additions & 0 deletions sound/pci/lola/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
snd-lola-y := lola.o lola_pcm.o lola_clock.o lola_mixer.o
snd-lola-$(CONFIG_SND_DEBUG) += lola_proc.o
obj-m = snd-lola.o
Loading

0 comments on commit d43f301

Please sign in to comment.