alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* Reasonable sound hardware parameters?
@ 2007-05-28  9:56 Lorenz Kolb
  2007-05-28 12:30 ` Jaroslav Kysela
  0 siblings, 1 reply; 7+ messages in thread
From: Lorenz Kolb @ 2007-05-28  9:56 UTC (permalink / raw)
  To: alsa-devel

> Message: 4
> Date: Mon, 28 May 2007 10:52:18 +0200 (CEST)
> From: Jaroslav Kysela <perex@suse.cz>
> Subject: Re: [alsa-devel] Reasonable sound hardware parameters?
> To: Joachim F?rster <mls.JOFT@gmx.de>
> Cc: alsa-devel@alsa-project.org
> Message-ID: <Pine.LNX.4.61.0705281045310.7894@tm8103.perex-int.cz>
> Content-Type: text/plain; charset="iso8859-2"
> 
> On Sat, 26 May 2007, Joachim F?rster wrote:
> 
> >
> > First question: To implement mmap on such kind of device IO memory, 
> > I have to use snd_pcm_lib_mmap_iomem() as mmap() callback - like it 
> > is used in the rme32 driver, right?
> 
> Yes. rme32 is quite similar.
> 
> > Second question: Do the following parameters make sense regarding 
> > the size of the HW ring buffer and period sizes:
> >
> > .buffer_bytes_max=16*1024;
> > .period_bytes_max=8*1024;
> > .period_bytes_min=?? resonable value ??
> 
> 32 or 64
> 
> > .periods_min=2;
> > .periods_max=?? resonable value ??
> 
> 16
> 
> > Furthermore, the sound controller will fire an interrupt after one 
> > period is played. Are there any arguments against these values? Any 
> > comments?
> 
> Yes, I think that the access through a PCI I/O window to a PCI device 
> is much slower than PCI DMA transfers with bursts. I would really 
> consider to design hardware with real DMA. Of course, if it's only 
> experimental stuff, then don't worry.
> 
> 						Jaroslav
> 
> -----
> Jaroslav Kysela <perex@suse.cz>
> Linux Kernel Sound Maintainer
> ALSA Project, SUSE Labs

Hi Jaroslav,

First of all: thanks for Your answer.
Second: We do not have a PCI Bus. It is an embedded system with an OCP-Bus
(aka OPB).

The ML403 holds a SoC with PPC and FPGA.

So the only difference between DMA with bursts and a dedicated memory (as
far as we do see it) is the amount of time the bus gets occupied.
With dedicated memory the system will (hopefully ;-)) do a burst write each
period. So what happens in DMA case (except the more complex hardware as the
DMA controller has to be written (in VHDL) as well and even more memory is
located at an more complex bus (PLB - processor local bus): the bus will be
occupied twice: (1) CPU writes data to memory. --> start DMA --> (2)
Controller fetches data from memory.
While (2) is in progress the poor CPU is "disconnected" from the bus.
In an embedded system with a not too powerful CPU (PPC 405 @300MHz) this
might be quite inefficient.
Or did we miss something?

Regards,

Lorenz
--
Lorenz Kolb <alsa-dev@lkmail.de>
Embedded specialist
ESIC-Solutions

^ permalink raw reply	[flat|nested] 7+ messages in thread
* Reasonable sound hardware parameters?
@ 2007-05-26  6:50 Joachim Förster
  2007-05-28  8:52 ` Jaroslav Kysela
  0 siblings, 1 reply; 7+ messages in thread
From: Joachim Förster @ 2007-05-26  6:50 UTC (permalink / raw)
  To: alsa-devel

Hi ALSA devs,

as I already described in one of my last posts on the list, I'm going to
write a ALSA driver for a sound controller which will also be "written"
at the same time (VHDL for FPGA) - on top of an embedded system (Xilinx
ML403 EvalBoard, PowerPC 405). We will do playback feature only.

The point is, that we will have _no_ real DMA and we don't want to use
the copy/silence or ack/workqueue (with intermediate buffer). So we
decided to move the ring buffer, which usually exists in RAM into the
sound controller and handle it as some kind of device IO memory, which
should be mmap'able (kernel function io_remap_pfn_range()). So, the
important goal is, to have mmap feature in the ALSA driver.

First question: To implement mmap on such kind of device IO memory, I
have to use snd_pcm_lib_mmap_iomem() as mmap() callback - like it is
used in the rme32 driver, right?

Second question: Do the following parameters make sense regarding the
size of the HW ring buffer and period sizes:

.buffer_bytes_max=16*1024;
.period_bytes_max=8*1024;
.period_bytes_min=?? resonable value ??
.periods_min=2;
.periods_max=?? resonable value ??

Furthermore, the sound controller will fire an interrupt after one
period is played.
Are there any arguments against these values? Any comments?

Thanks,
 Joachim

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

end of thread, other threads:[~2007-05-29 19:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-28  9:56 Reasonable sound hardware parameters? Lorenz Kolb
2007-05-28 12:30 ` Jaroslav Kysela
2007-05-29  9:54   ` Lorenz Kolb
2007-05-29 18:17     ` Jaroslav Kysela
2007-05-29 19:15       ` Lorenz Kolb
  -- strict thread matches above, loose matches on Subject: below --
2007-05-26  6:50 Joachim Förster
2007-05-28  8:52 ` Jaroslav Kysela

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).