alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ALSA: snd-aloop: make preallocated buffer size configurable
@ 2011-09-20 19:02 Pierre-Louis Bossart
  2011-09-21 12:10 ` Takashi Iwai
  0 siblings, 1 reply; 8+ messages in thread
From: Pierre-Louis Bossart @ 2011-09-20 19:02 UTC (permalink / raw)
  To: alsa-devel; +Cc: Pierre-Louis Bossart

Default of 2MB of physically-contiguous memory can be
too high for embedded solutions, make the size configurable.

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/drivers/Kconfig |   15 +++++++++++++++
 sound/drivers/aloop.c |    6 +++---
 2 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/sound/drivers/Kconfig b/sound/drivers/Kconfig
index c896116..ad51067 100644
--- a/sound/drivers/Kconfig
+++ b/sound/drivers/Kconfig
@@ -93,6 +93,21 @@ config SND_ALOOP
 	  To compile this driver as a module, choose M here: the module
 	  will be called snd-aloop.
 
+if SND_ALOOP
+config SND_ALOOP_PREALLOC_SIZE
+	int "Pre-allocated buffer size for aloop driver"
+	range 0 32768
+	default 2048
+	help
+	  Specifies the default pre-allocated buffer-size in kB for the
+	  snd-aloop driver. The default 2048 is chosen just
+	  for compatibility reasons. Some distributions may want to
+	  use a smaller size when only one stream is used.
+
+	  Note that the pre-allocation size can be changed dynamically
+	  via a proc file (/proc/asound/card*/pcm*/sub*/prealloc), too.
+endif
+
 config SND_VIRMIDI
 	tristate "Virtual MIDI soundcard"
 	depends on SND_SEQUENCER
diff --git a/sound/drivers/aloop.c b/sound/drivers/aloop.c
index a0da775..f945573 100644
--- a/sound/drivers/aloop.c
+++ b/sound/drivers/aloop.c
@@ -556,11 +556,11 @@ static struct snd_pcm_hardware loopback_pcm_hardware =
 	.rate_max =		192000,
 	.channels_min =		1,
 	.channels_max =		32,
-	.buffer_bytes_max =	2 * 1024 * 1024,
+	.buffer_bytes_max =	CONFIG_SND_ALOOP_PREALLOC_SIZE * 1024,
 	.period_bytes_min =	64,
 	/* note check overflow in frac_pos() using pcm_rate_shift before
 	   changing period_bytes_max value */
-	.period_bytes_max =	1024 * 1024,
+	.period_bytes_max =     CONFIG_SND_ALOOP_PREALLOC_SIZE * 1024,
 	.periods_min =		1,
 	.periods_max =		1024,
 	.fifo_size =		0,
@@ -774,7 +774,7 @@ static int __devinit loopback_pcm_new(struct loopback *loopback,
 
 	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_CONTINUOUS,
 			snd_dma_continuous_data(GFP_KERNEL),
-			0, 2 * 1024 * 1024);
+			0, CONFIG_SND_ALOOP_PREALLOC_SIZE * 1024);
 	return 0;
 }
 
-- 
1.7.6

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

end of thread, other threads:[~2011-09-24 10:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-20 19:02 [PATCH] ALSA: snd-aloop: make preallocated buffer size configurable Pierre-Louis Bossart
2011-09-21 12:10 ` Takashi Iwai
2011-09-21 13:26   ` Pierre-Louis Bossart
     [not found]   ` <000901cc7862$115987b0$340c9710$@bossart@linux.intel.com>
2011-09-21 14:38     ` Takashi Iwai
2011-09-21 15:02       ` Pierre-Louis Bossart
     [not found]       ` <000f01cc786f$7a6fec00$6f4fc400$@bossart@linux.intel.com>
2011-09-21 15:45         ` Takashi Iwai
2011-09-23 21:03           ` Pierre-Louis Bossart
2011-09-24 10:20             ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).