Allocate DMA buffer for block packet stream

By allocating the packet-stream dataspace for block sessions as
uncached, we can use DMA to directly read and write into the client
buffer. Currently, the OMAP4 SD-card driver is using this feature.
This commit is contained in:
Norman Feske 2012-07-25 18:56:51 +02:00
parent 0f6110ea97
commit 7e0a1cc0eb
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ namespace Block {
}
return new (md_alloc())
Session_component(env()->ram_session()->alloc(tx_buf_size),
Session_component(env()->ram_session()->alloc(tx_buf_size, false),
_driver_factory, _ep);
}