|
dxd - dynax driver framework 3.0.0d222
cross platform open source driver development framework
|
generic kernel stream More...
#include <dxd_stream.h>
Classes | |
| struct | opened |
| generic streaming interface description More... | |
| class | umap |
| stream user mapping More... | |
Public Types | |
| enum | direction |
| direction of memory operation More... | |
| enum | direction |
| direction of memory operation More... | |
Public Member Functions | |
| return_t | each (exec_t exec) |
| void | free () |
| void | free () |
| DriverKit map free. | |
| os_result | initialize (::IOMemoryDescriptor *io_memory_descriptor) |
| DriverKit memory initializer. | |
| os_result | initialize (::IOMemoryDescriptor *io_memory_descriptor, size_t offset, size_t size, direction direction) |
| DriverKit memory initializer. | |
| os_result | initialize (const ::MDL *mdl) |
| os_result | initialize (const ::MDL *mdl, size_t offset, size_t size) |
| os_result | initialize (const void *data, size_t size) |
| os_result | initialize (const void *data, size_t size) |
| os_result | initialize (size_t size, unsigned int limit=64, unsigned int alignment=0, bool contigous=false) |
| os_result | initialize (size_t size, unsigned int=64, unsigned int alignment=0, bool=false) |
| DriverKit buffer initializer. | |
| os_result | initialize (::IOMemoryDescriptor *io_memory_descriptor, size_t offset=0, size_t size=0, uint64_t alignment=0, void *address=nullptr) |
| DriverKit map initializer. | |
| os_result | initialize (::IOMemoryDescriptor *io_memory_descriptor, size_t offset, size_t size, direction direction) |
| DriverKit memory initializer. | |
| operator const ::IOMemoryDescriptor * () const | |
| DriverKit IOMemoryDescriptor* implicit cast. | |
| operator const ::IOMemoryDescriptor * () const | |
| DriverKit IOMemoryDescriptor* implicit cast. | |
| operator const dx::circular * () const | |
| operator const::IOMemoryMap * () const | |
| operator dx::circular * () const | |
| operator void * () const | |
| the allocation's kernel address | |
| const dx::circular * | operator-> () const |
| operator to use mapping like pointer | |
| operator::IOMemoryDescriptor * () | |
| operator::IOMemoryDescriptor * () | |
| operator::IOMemoryMap * () | |
| operator::MDL * () const | |
| operator::MDL * () const | |
| doubly::linked::abstract::event * | pop (doubly::linked::abstract::event *item) |
| remove participating event, acquirable up to DISPATCH_LEVEL | |
| doubly::linked::abstract::event * | pop () |
| pop item from head | |
| list & | print () |
| doubly::linked::abstract::event * | push (doubly::linked::abstract::event *item) |
| push participating event, acquirable up to DISPATCH_LEVEL | |
| item_t * | push (item_t *item) |
| push item to head | |
| template<typename reference_t> | |
| int | release (reference_t &reference) |
| ::IOMemoryDescriptor * | retain () |
| ::IOMemoryDescriptor * | retain () |
| void | retain () |
| os_result | signal () |
| uint64_t | size () const |
| DriverKit memory size. | |
| uint64_t | size () const |
| DriverKit memory size. | |
| size_t | size () const |
| DriverKit mapping size. | |
| virtual os_result | start (bool force=false)=0 |
| virtual os_result | stop (bool force=false)=0 |
| stream (size_t size, unsigned int limit=64, unsigned int align=0, bool contigous=false) | |
Public Attributes | |
| atomic< int > | references {} |
| os_result | status |
| DriverKit memory status. | |
| os_result | status |
| DriverKit memory status. | |
| os_result | status |
| status of mapping object | |
| os_result | status {ok} |
Protected Member Functions | |
| void | __lock () |
| void | __unlock () |
| operator const ::KSPIN_LOCK & () const | |
| operator const ::KSPIN_LOCK * () const | |
| operator::KSPIN_LOCK & () | |
| operator::KSPIN_LOCK * () | |
| stream ()=default | |
| virtual | ~stream ()=default |
Protected Attributes | |
| dx::circular * | _vm |
| DriverKit virtual address mapping. | |
| ::IOMemoryMap * | io_memory_map |
generic kernel stream
|
inherited |
direction of memory operation
|
inherited |
direction of memory operation
|
protectedvirtualdefault |
Reimplemented in dxd::multichannel::stream< channel_t >.
|
protecteddefault |
|
inline |
|
inlineprotectedinherited |
|
inlineprotectedinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
DriverKit map free.
Checks if DriverKit mapping already exists and
does not call unmap(): IOMemoryMap instances will unmap themselves upon free, ie. when the last client with a reference calls release. unmap() forces the IOMemoryMap to destroy the mapping it represents, regardless of the number of clients. releases the map object.
|
inlineinherited |
DriverKit memory initializer.
|
inlineinherited |
DriverKit memory initializer.
|
inlineinherited |
in contrast to an IOKit MemoryDescriptor MDLs do not support reference counting. take care when creating a dxd::memory from a dxd::buffer: although the dxd::memory holds an MDL to the buffer the buffer itself is not retained after the dxd::buffer is released!
|
inlineinherited |
|
inherited |
Allows re-initialization
| data | virtual read only kernel base address of range to create memory descriptor from |
| size | size of range to create memory descriptor from |
|
inherited |
|
inlineinherited |
Allows re-initialization
| size | size to be alloced by buffer object |
| limit | limit physical memory address space |
| alignment | enforce physical memory alignment |
| contigous | enforce contiguos physical memory |
|
inlineinherited |
DriverKit buffer initializer.
Allows re-initialization.
Creates a buffer and associated memory descriptor.
| size | size to be alloced by buffer object |
| alignment | enforce physical memory alignment |
|
inlineinherited |
DriverKit map initializer.
map<kernel> maps an IOMemoryDescriptor (typically cast of a dxd::memory or buffer class) into the DriverKit address space.
kIOMemoryMapFixedAddress map at the address requested
kIOMemoryMapReadOnly create a read only mapping
kIOMemoryMapCacheModeDefault default cache mode
kIOMemoryMapCacheModeInhibit inhibited cache mode
kIOMemoryMapCacheModeCopyback copyback cache mode
kIOMemoryMapCacheModeWriteThrough write through cache mode
Allows re-initialization.
Checks buffer object,
maps the buffer into the DriverKit (will fail if offset is given)
and obtains a DriverKit virtual address (apply offset here instead).
| io_memory_descriptor | IOMemoryDescriptor to be mapped into the DriverKit address space |
| offset | offset into memory descriptor to create mapping |
| size | size of mapping |
|
inlineinherited |
DriverKit memory initializer.
|
inlineinherited |
DriverKit IOMemoryDescriptor* implicit cast.
|
inlineinherited |
DriverKit IOMemoryDescriptor* implicit cast.
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
the allocation's kernel address
|
inlineinherited |
operator to use mapping like pointer
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
remove participating event, acquirable up to DISPATCH_LEVEL
|
inlineinherited |
pop item from head
|
inlineinherited |
|
inlineinherited |
push participating event, acquirable up to DISPATCH_LEVEL
|
inlineinherited |
push item to head
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
DriverKit memory size.
|
inlineinherited |
DriverKit memory size.
|
inlineinherited |
DriverKit mapping size.
|
pure virtual |
|
pure virtual |
|
protectedinherited |
DriverKit virtual address mapping.
|
protectedinherited |
|
inherited |
|
inherited |
DriverKit memory status.
status of memory object
|
inherited |
DriverKit memory status.
status of memory object
|
inherited |
status of mapping object
| (c) copyright 2009 dynamic acoustics e.U. | generated on |