28#if !defined(__ASOUNDLIB_H) && !defined(ALSA_LIBRARY_BUILD)
30#warning "use #include <alsa/asoundlib.h>, <alsa/hwdep.h> should not be used directly"
31#include <alsa/asoundlib.h>
48#define SND_HWDEP_DLSYM_VERSION _dlsym_hwdep_001
60typedef enum _snd_hwdep_iface {
83 SND_HWDEP_IFACE_FW_DIGI00X,
84 SND_HWDEP_IFACE_FW_TASCAM,
85 SND_HWDEP_IFACE_LINE6,
86 SND_HWDEP_IFACE_FW_MOTU,
87 SND_HWDEP_IFACE_FW_FIREFACE,
93#define SND_HWDEP_OPEN_READ (O_RDONLY)
95#define SND_HWDEP_OPEN_WRITE (O_WRONLY)
97#define SND_HWDEP_OPEN_DUPLEX (O_RDWR)
99#define SND_HWDEP_OPEN_NONBLOCK (O_NONBLOCK)
102typedef enum _snd_hwdep_type {
129#define snd_hwdep_info_alloca(ptr) __snd_alloca(ptr, snd_hwdep_info)
143#define snd_hwdep_dsp_status_alloca(ptr) __snd_alloca(ptr, snd_hwdep_dsp_status)
156#define snd_hwdep_dsp_image_alloca(ptr) __snd_alloca(ptr, snd_hwdep_dsp_image)
int snd_hwdep_info_get_card(const snd_hwdep_info_t *obj)
get hwdep card number
Definition hwdep.c:381
struct _snd_hwdep_dsp_image snd_hwdep_dsp_image_t
Definition hwdep.h:57
struct _snd_hwdep_info snd_hwdep_info_t
Definition hwdep.h:51
int snd_hwdep_poll_descriptors(snd_hwdep_t *hwdep, struct pollfd *pfds, unsigned int space)
get poll descriptors
Definition hwdep.c:266
struct _snd_hwdep snd_hwdep_t
Definition hwdep.h:112
unsigned int snd_hwdep_info_get_device(const snd_hwdep_info_t *obj)
get hwdep device number
Definition hwdep.c:392
const char * snd_hwdep_info_get_id(const snd_hwdep_info_t *obj)
get hwdep driver identifier
Definition hwdep.c:403
snd_hwdep_iface_t
Definition hwdep.h:60
void snd_hwdep_info_copy(snd_hwdep_info_t *dst, const snd_hwdep_info_t *src)
copy one snd_hwdep_info_t structure to another
Definition hwdep.c:370
int snd_hwdep_close(snd_hwdep_t *hwdep)
close HwDep handle
Definition hwdep.c:209
void snd_hwdep_dsp_image_set_image(snd_hwdep_dsp_image_t *obj, void *buffer)
set the DSP block image pointer
Definition hwdep.c:760
void snd_hwdep_dsp_image_copy(snd_hwdep_dsp_image_t *dst, const snd_hwdep_dsp_image_t *src)
copy one snd_hwdep_dsp_image_t structure to another
Definition hwdep.c:671
int snd_hwdep_dsp_status_malloc(snd_hwdep_dsp_status_t **ptr)
allocate a new snd_hwdep_dsp_status_t structure
Definition hwdep.c:539
ssize_t snd_hwdep_write(snd_hwdep_t *hwdep, const void *buffer, size_t size)
write bytes using HwDep handle
Definition hwdep.c:474
unsigned int snd_hwdep_dsp_status_get_version(const snd_hwdep_dsp_status_t *obj)
get the driver version of dsp loader
Definition hwdep.c:577
size_t snd_hwdep_dsp_status_sizeof(void)
get size of the snd_hwdep_dsp_status_t structure in bytes
Definition hwdep.c:526
void snd_hwdep_info_set_device(snd_hwdep_info_t *obj, unsigned int val)
set hwdep device number
Definition hwdep.c:436
int snd_hwdep_poll_descriptors_revents(snd_hwdep_t *hwdep, struct pollfd *pfds, unsigned int nfds, unsigned short *revents)
get returned events from poll descriptors
Definition hwdep.c:297
unsigned int snd_hwdep_dsp_status_get_dsp_loaded(const snd_hwdep_dsp_status_t *obj)
get the bit flags of the loaded dsp blocks
Definition hwdep.c:610
void snd_hwdep_dsp_image_set_length(snd_hwdep_dsp_image_t *obj, size_t length)
set the DSP block length
Definition hwdep.c:749
void snd_hwdep_dsp_image_set_index(snd_hwdep_dsp_image_t *obj, unsigned int _index)
set the DSP block index
Definition hwdep.c:726
int snd_hwdep_nonblock(snd_hwdep_t *hwdep, int nonblock)
set nonblock mode
Definition hwdep.c:313
const char * snd_hwdep_dsp_image_get_name(const snd_hwdep_dsp_image_t *obj)
get the name of the DSP block
Definition hwdep.c:693
int snd_hwdep_dsp_load(snd_hwdep_t *hwdep, snd_hwdep_dsp_image_t *block)
load the DSP block
Definition hwdep.c:515
int snd_hwdep_ioctl(snd_hwdep_t *hwdep, unsigned int request, void *arg)
do hardware dependent ioctl
Definition hwdep.c:462
const char * snd_hwdep_info_get_name(const snd_hwdep_info_t *obj)
get hwdep driver name
Definition hwdep.c:414
snd_hwdep_iface_t snd_hwdep_info_get_iface(const snd_hwdep_info_t *obj)
get hwdep protocol interface
Definition hwdep.c:425
ssize_t snd_hwdep_read(snd_hwdep_t *hwdep, void *buffer, size_t size)
read bytes using HwDep handle
Definition hwdep.c:488
snd_hwdep_type_t
Definition hwdep.h:102
size_t snd_hwdep_dsp_image_sizeof(void)
get size of the snd_hwdep_dsp_image_t structure in bytes
Definition hwdep.c:631
const char * snd_hwdep_dsp_status_get_id(const snd_hwdep_dsp_status_t *obj)
get the driver id of dsp loader
Definition hwdep.c:588
struct _snd_hwdep_dsp_status snd_hwdep_dsp_status_t
Definition hwdep.h:54
void snd_hwdep_dsp_image_free(snd_hwdep_dsp_image_t *obj)
frees the snd_hwdep_dsp_image_t structure
Definition hwdep.c:660
int snd_hwdep_info(snd_hwdep_t *hwdep, snd_hwdep_info_t *info)
get information about HwDep handle
Definition hwdep.c:448
void snd_hwdep_info_free(snd_hwdep_info_t *obj)
frees the snd_hwdep_info_t structure
Definition hwdep.c:359
void snd_hwdep_dsp_status_free(snd_hwdep_dsp_status_t *obj)
frees the snd_hwdep_dsp_status_t structure
Definition hwdep.c:555
int snd_hwdep_open(snd_hwdep_t **hwdep, const char *name, int mode)
Opens a new connection to the HwDep interface.
Definition hwdep.c:169
void snd_hwdep_dsp_image_set_name(snd_hwdep_dsp_image_t *obj, const char *name)
set the name of the DSP block
Definition hwdep.c:737
int snd_hwdep_info_malloc(snd_hwdep_info_t **ptr)
allocate a new snd_hwdep_info_t structure
Definition hwdep.c:343
unsigned int snd_hwdep_dsp_status_get_num_dsps(const snd_hwdep_dsp_status_t *obj)
get number of dsp blocks
Definition hwdep.c:599
void snd_hwdep_dsp_status_copy(snd_hwdep_dsp_status_t *dst, const snd_hwdep_dsp_status_t *src)
copy one snd_hwdep_dsp_status_t structure to another
Definition hwdep.c:566
int snd_hwdep_poll_descriptors_count(snd_hwdep_t *hwdep)
get count of poll descriptors for HwDep handle
Definition hwdep.c:253
int snd_hwdep_dsp_image_malloc(snd_hwdep_dsp_image_t **ptr)
allocate a new snd_hwdep_dsp_image_t structure
Definition hwdep.c:644
size_t snd_hwdep_info_sizeof(void)
get size of the snd_hwdep_info_t structure in bytes
Definition hwdep.c:330
unsigned int snd_hwdep_dsp_image_get_index(const snd_hwdep_dsp_image_t *obj)
get the DSP block index
Definition hwdep.c:682
const void * snd_hwdep_dsp_image_get_image(const snd_hwdep_dsp_image_t *obj)
get the image pointer of the DSP block
Definition hwdep.c:715
int snd_hwdep_dsp_status(snd_hwdep_t *hwdep, snd_hwdep_dsp_status_t *status)
get the DSP status information
Definition hwdep.c:502
unsigned int snd_hwdep_dsp_status_get_chip_ready(const snd_hwdep_dsp_status_t *obj)
get the chip status of dsp loader
Definition hwdep.c:621
size_t snd_hwdep_dsp_image_get_length(const snd_hwdep_dsp_image_t *obj)
get the length of the DSP block
Definition hwdep.c:704
@ SND_HWDEP_IFACE_EMUX_WAVETABLE
Definition hwdep.h:72
@ SND_HWDEP_IFACE_OPL2
Definition hwdep.h:61
@ SND_HWDEP_IFACE_LAST
Definition hwdep.h:89
@ SND_HWDEP_IFACE_SB16CSP
Definition hwdep.h:64
@ SND_HWDEP_IFACE_OPL4
Definition hwdep.h:63
@ SND_HWDEP_IFACE_PCXHR
Definition hwdep.h:75
@ SND_HWDEP_IFACE_YSS225
Definition hwdep.h:66
@ SND_HWDEP_IFACE_MIXART
Definition hwdep.h:70
@ SND_HWDEP_IFACE_VX
Definition hwdep.h:69
@ SND_HWDEP_IFACE_SB_RC
Definition hwdep.h:76
@ SND_HWDEP_IFACE_FW_BEBOB
Definition hwdep.h:81
@ SND_HWDEP_IFACE_USX2Y_PCM
Definition hwdep.h:74
@ SND_HWDEP_IFACE_EMU10K1
Definition hwdep.h:65
@ SND_HWDEP_IFACE_OPL3
Definition hwdep.h:62
@ SND_HWDEP_IFACE_FW_FIREWORKS
Definition hwdep.h:80
@ SND_HWDEP_IFACE_USB_STREAM
Definition hwdep.h:78
@ SND_HWDEP_IFACE_BLUETOOTH
Definition hwdep.h:73
@ SND_HWDEP_IFACE_FW_OXFW
Definition hwdep.h:82
@ SND_HWDEP_IFACE_FW_DICE
Definition hwdep.h:79
@ SND_HWDEP_IFACE_SSCAPE
Definition hwdep.h:68
@ SND_HWDEP_IFACE_USX2Y
Definition hwdep.h:71
@ SND_HWDEP_IFACE_HDA
Definition hwdep.h:77
@ SND_HWDEP_IFACE_ICS2115
Definition hwdep.h:67
@ SND_HWDEP_TYPE_HW
Definition hwdep.h:104
@ SND_HWDEP_TYPE_SHM
Definition hwdep.h:106
@ SND_HWDEP_TYPE_INET
Definition hwdep.h:108
uint8_t status
Definition ump_msg.h:3