new base libaudiodriver out of -lcommon in drivers/audio.
- this lets the drivers that used that library be compiled easily with different compilers.
This commit is contained in:
6
lib/libaudiodriver/Makefile
Normal file
6
lib/libaudiodriver/Makefile
Normal file
@@ -0,0 +1,6 @@
|
||||
# Makefile for the common audio framework
|
||||
|
||||
LIB= audiodriver
|
||||
SRCS= audio_fw.c liveupdate.c
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
1064
lib/libaudiodriver/audio_fw.c
Normal file
1064
lib/libaudiodriver/audio_fw.c
Normal file
File diff suppressed because it is too large
Load Diff
115
lib/libaudiodriver/liveupdate.c
Normal file
115
lib/libaudiodriver/liveupdate.c
Normal file
@@ -0,0 +1,115 @@
|
||||
#include "audio_fw.h"
|
||||
|
||||
/* State management variables. */
|
||||
EXTERN int is_status_msg_expected;
|
||||
/*
|
||||
* - From audio_fw.h:
|
||||
* EXTERN drv_t drv;
|
||||
* EXTERN sub_dev_t sub_dev[];
|
||||
*/
|
||||
|
||||
/* State management helpers */
|
||||
PRIVATE int is_read_pending;
|
||||
PRIVATE int is_write_pending;
|
||||
PRIVATE void load_state_info(void)
|
||||
{
|
||||
int i, dma_mode, found_pending;
|
||||
|
||||
/* Check if reads or writes are pending. */
|
||||
is_read_pending = FALSE;
|
||||
is_write_pending = FALSE;
|
||||
found_pending = FALSE;
|
||||
for (i = 0; i < drv.NrOfSubDevices && !found_pending; i++) {
|
||||
if(sub_dev[i].RevivePending) {
|
||||
dma_mode = sub_dev[i].DmaMode;
|
||||
|
||||
if(dma_mode == DEV_READ_S) {
|
||||
is_read_pending = TRUE;
|
||||
}
|
||||
else if (dma_mode == DEV_WRITE_S){
|
||||
is_write_pending = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
found_pending = (is_read_pending && is_write_pending);
|
||||
}
|
||||
}
|
||||
|
||||
/* Custom states definition. */
|
||||
#define AUDIO_STATE_READ_REQUEST_FREE (SEF_LU_STATE_CUSTOM_BASE + 0)
|
||||
#define AUDIO_STATE_WRITE_REQUEST_FREE (SEF_LU_STATE_CUSTOM_BASE + 1)
|
||||
#define AUDIO_STATE_IS_CUSTOM(s) \
|
||||
((s) >= AUDIO_STATE_READ_REQUEST_FREE && (s) <=AUDIO_STATE_WRITE_REQUEST_FREE)
|
||||
|
||||
/*===========================================================================*
|
||||
* sef_cb_lu_prepare *
|
||||
*===========================================================================*/
|
||||
PUBLIC int sef_cb_lu_prepare(int state)
|
||||
{
|
||||
int is_ready;
|
||||
|
||||
/* Load state information. */
|
||||
load_state_info();
|
||||
|
||||
/* Check if we are ready for the target state. */
|
||||
is_ready = FALSE;
|
||||
switch(state) {
|
||||
/* Standard states. */
|
||||
case SEF_LU_STATE_REQUEST_FREE:
|
||||
is_ready = (!is_read_pending && !is_write_pending);
|
||||
break;
|
||||
|
||||
case SEF_LU_STATE_PROTOCOL_FREE:
|
||||
is_ready = (!is_read_pending && !is_write_pending
|
||||
&& !is_status_msg_expected);
|
||||
break;
|
||||
|
||||
/* Custom states. */
|
||||
case AUDIO_STATE_READ_REQUEST_FREE:
|
||||
is_ready = (!is_read_pending);
|
||||
break;
|
||||
|
||||
case AUDIO_STATE_WRITE_REQUEST_FREE:
|
||||
is_ready = (!is_write_pending);
|
||||
break;
|
||||
}
|
||||
|
||||
/* Tell SEF if we are ready. */
|
||||
return is_ready ? OK : ENOTREADY;
|
||||
}
|
||||
|
||||
/*===========================================================================*
|
||||
* sef_cb_lu_state_isvalid *
|
||||
*===========================================================================*/
|
||||
PUBLIC int sef_cb_lu_state_isvalid(int state)
|
||||
{
|
||||
return SEF_LU_STATE_IS_STANDARD(state) || AUDIO_STATE_IS_CUSTOM(state);
|
||||
}
|
||||
|
||||
/*===========================================================================*
|
||||
* sef_cb_lu_state_dump *
|
||||
*===========================================================================*/
|
||||
PUBLIC void sef_cb_lu_state_dump(int state)
|
||||
{
|
||||
/* Load state information. */
|
||||
load_state_info();
|
||||
|
||||
sef_lu_dprint("audio: live update state = %d\n", state);
|
||||
sef_lu_dprint("audio: is_status_msg_expected = %d\n",
|
||||
is_status_msg_expected);
|
||||
sef_lu_dprint("audio: is_read_pending = %d\n", is_read_pending);
|
||||
sef_lu_dprint("audio: is_write_pending = %d\n", is_write_pending);
|
||||
|
||||
sef_lu_dprint("audio: SEF_LU_STATE_WORK_FREE(%d) reached = %d\n",
|
||||
SEF_LU_STATE_WORK_FREE, TRUE);
|
||||
sef_lu_dprint("audio: SEF_LU_STATE_REQUEST_FREE(%d) reached = %d\n",
|
||||
SEF_LU_STATE_REQUEST_FREE, (!is_read_pending && !is_write_pending));
|
||||
sef_lu_dprint("audio: SEF_LU_STATE_PROTOCOL_FREE(%d) reached = %d\n",
|
||||
SEF_LU_STATE_PROTOCOL_FREE, (!is_read_pending && !is_write_pending
|
||||
&& !is_status_msg_expected));
|
||||
sef_lu_dprint("audio: AUDIO_STATE_READ_REQUEST_FREE(%d) reached = %d\n",
|
||||
AUDIO_STATE_READ_REQUEST_FREE, (!is_read_pending));
|
||||
sef_lu_dprint("audio: AUDIO_STATE_WRITE_REQUEST_FREE(%d) reached = %d\n",
|
||||
AUDIO_STATE_WRITE_REQUEST_FREE, (!is_write_pending));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user