Commit f5a3db42 authored by Takashi Iwai's avatar Takashi Iwai Committed by Greg Kroah-Hartman

staging: bcm2835-audio: Make single vchi handle

The bcm2835_audio_instance object contains the array of
VCHI_SERVICE_HANDLE_T, while the code assumes and uses only the first
element explicitly.  Let's reduce to a single vchi handle for
simplifying the code.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Tested-by: default avatarStefan Wahren <stefan.wahren@i2se.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 66890d53
...@@ -44,8 +44,7 @@ ...@@ -44,8 +44,7 @@
#endif #endif
struct bcm2835_audio_instance { struct bcm2835_audio_instance {
unsigned int num_connections; VCHI_SERVICE_HANDLE_T vchi_handle;
VCHI_SERVICE_HANDLE_T vchi_handle[VCHI_MAX_NUM_CONNECTIONS];
struct completion msg_avail_comp; struct completion msg_avail_comp;
struct mutex vchi_mutex; struct mutex vchi_mutex;
struct bcm2835_alsa_stream *alsa_stream; struct bcm2835_alsa_stream *alsa_stream;
...@@ -202,12 +201,12 @@ static void audio_vchi_callback(void *param, ...@@ -202,12 +201,12 @@ static void audio_vchi_callback(void *param,
BUG(); BUG();
return; return;
} }
if (!instance->vchi_handle[0]) { if (!instance->vchi_handle) {
LOG_ERR(" .. instance->vchi_handle[0] is null\n"); LOG_ERR(" .. instance->vchi_handle is null\n");
BUG(); BUG();
return; return;
} }
status = vchi_msg_dequeue(instance->vchi_handle[0], status = vchi_msg_dequeue(instance->vchi_handle,
&m, sizeof(m), &msg_len, VCHI_FLAGS_NONE); &m, sizeof(m), &msg_len, VCHI_FLAGS_NONE);
if (m.type == VC_AUDIO_MSG_TYPE_RESULT) { if (m.type == VC_AUDIO_MSG_TYPE_RESULT) {
LOG_DBG(" .. instance=%p, m.type=VC_AUDIO_MSG_TYPE_RESULT, success=%d\n", LOG_DBG(" .. instance=%p, m.type=VC_AUDIO_MSG_TYPE_RESULT, success=%d\n",
...@@ -237,103 +236,62 @@ static void audio_vchi_callback(void *param, ...@@ -237,103 +236,62 @@ static void audio_vchi_callback(void *param,
static struct bcm2835_audio_instance * static struct bcm2835_audio_instance *
vc_vchi_audio_init(VCHI_INSTANCE_T vchi_instance, vc_vchi_audio_init(VCHI_INSTANCE_T vchi_instance,
VCHI_CONNECTION_T **vchi_connections, VCHI_CONNECTION_T *vchi_connection)
unsigned int num_connections)
{ {
unsigned int i; SERVICE_CREATION_T params = {
.version = VCHI_VERSION_EX(VC_AUDIOSERV_VER, VC_AUDIOSERV_MIN_VER),
.service_id = VC_AUDIO_SERVER_NAME,
.connection = vchi_connection,
.rx_fifo_size = 0,
.tx_fifo_size = 0,
.callback = audio_vchi_callback,
.want_unaligned_bulk_rx = 1, //TODO: remove VCOS_FALSE
.want_unaligned_bulk_tx = 1, //TODO: remove VCOS_FALSE
.want_crc = 0
};
struct bcm2835_audio_instance *instance; struct bcm2835_audio_instance *instance;
int status; int status;
int ret;
LOG_DBG("%s: start", __func__);
if (num_connections > VCHI_MAX_NUM_CONNECTIONS) {
LOG_ERR("%s: unsupported number of connections %u (max=%u)\n",
__func__, num_connections, VCHI_MAX_NUM_CONNECTIONS);
return ERR_PTR(-EINVAL);
}
/* Allocate memory for this instance */ /* Allocate memory for this instance */
instance = kzalloc(sizeof(*instance), GFP_KERNEL); instance = kzalloc(sizeof(*instance), GFP_KERNEL);
if (!instance) if (!instance)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
instance->num_connections = num_connections;
/* Create a lock for exclusive, serialized VCHI connection access */ /* Create a lock for exclusive, serialized VCHI connection access */
mutex_init(&instance->vchi_mutex); mutex_init(&instance->vchi_mutex);
/* Open the VCHI service connections */ /* Open the VCHI service connections */
for (i = 0; i < num_connections; i++) { params.callback_param = instance,
SERVICE_CREATION_T params = {
.version = VCHI_VERSION_EX(VC_AUDIOSERV_VER, VC_AUDIOSERV_MIN_VER),
.service_id = VC_AUDIO_SERVER_NAME,
.connection = vchi_connections[i],
.rx_fifo_size = 0,
.tx_fifo_size = 0,
.callback = audio_vchi_callback,
.callback_param = instance,
.want_unaligned_bulk_rx = 1, //TODO: remove VCOS_FALSE
.want_unaligned_bulk_tx = 1, //TODO: remove VCOS_FALSE
.want_crc = 0
};
LOG_DBG("%s: about to open %i\n", __func__, i);
status = vchi_service_open(vchi_instance, &params, status = vchi_service_open(vchi_instance, &params,
&instance->vchi_handle[i]); &instance->vchi_handle);
LOG_DBG("%s: opened %i: %p=%d\n", __func__, i, instance->vchi_handle[i], status);
if (status) { if (status) {
LOG_ERR("%s: failed to open VCHI service connection (status=%d)\n", LOG_ERR("%s: failed to open VCHI service connection (status=%d)\n",
__func__, status); __func__, status);
ret = -EPERM; kfree(instance);
goto err_close_services; return ERR_PTR(-EPERM);
} }
/* Finished with the service for now */ /* Finished with the service for now */
vchi_service_release(instance->vchi_handle[i]); vchi_service_release(instance->vchi_handle);
}
LOG_DBG("%s: okay\n", __func__);
return instance; return instance;
err_close_services:
for (i = 0; i < instance->num_connections; i++) {
LOG_ERR("%s: closing %i: %p\n", __func__, i, instance->vchi_handle[i]);
if (instance->vchi_handle[i])
vchi_service_close(instance->vchi_handle[i]);
}
kfree(instance);
LOG_ERR("%s: error\n", __func__);
return ERR_PTR(ret);
} }
static int vc_vchi_audio_deinit(struct bcm2835_audio_instance *instance) static int vc_vchi_audio_deinit(struct bcm2835_audio_instance *instance)
{ {
unsigned int i; int status;
if (!instance) {
LOG_ERR("%s: invalid handle %p\n", __func__, instance);
return -1;
}
LOG_DBG(" .. about to lock (%d)\n", instance->num_connections);
mutex_lock(&instance->vchi_mutex); mutex_lock(&instance->vchi_mutex);
/* Close all VCHI service connections */ /* Close all VCHI service connections */
for (i = 0; i < instance->num_connections; i++) { vchi_service_use(instance->vchi_handle);
int status;
LOG_DBG(" .. %i:closing %p\n", i, instance->vchi_handle[i]); status = vchi_service_close(instance->vchi_handle);
vchi_service_use(instance->vchi_handle[i]);
status = vchi_service_close(instance->vchi_handle[i]);
if (status) { if (status) {
LOG_DBG("%s: failed to close VCHI service connection (status=%d)\n", LOG_DBG("%s: failed to close VCHI service connection (status=%d)\n",
__func__, status); __func__, status);
} }
}
mutex_unlock(&instance->vchi_mutex); mutex_unlock(&instance->vchi_mutex);
...@@ -383,19 +341,9 @@ static int bcm2835_audio_open_connection(struct bcm2835_alsa_stream *alsa_stream ...@@ -383,19 +341,9 @@ static int bcm2835_audio_open_connection(struct bcm2835_alsa_stream *alsa_stream
(struct bcm2835_audio_instance *)alsa_stream->instance; (struct bcm2835_audio_instance *)alsa_stream->instance;
struct bcm2835_vchi_ctx *vhci_ctx = alsa_stream->chip->vchi_ctx; struct bcm2835_vchi_ctx *vhci_ctx = alsa_stream->chip->vchi_ctx;
LOG_INFO("%s: start\n", __func__);
BUG_ON(instance);
if (instance) {
LOG_ERR("%s: VCHI instance already open (%p)\n",
__func__, instance);
instance->alsa_stream = alsa_stream;
alsa_stream->instance = instance;
return 0;
}
/* Initialize an instance of the audio service */ /* Initialize an instance of the audio service */
instance = vc_vchi_audio_init(vhci_ctx->vchi_instance, instance = vc_vchi_audio_init(vhci_ctx->vchi_instance,
&vhci_ctx->vchi_connection, 1); vhci_ctx->vchi_connection);
if (IS_ERR(instance)) { if (IS_ERR(instance)) {
LOG_ERR("%s: failed to initialize audio service\n", __func__); LOG_ERR("%s: failed to initialize audio service\n", __func__);
...@@ -407,8 +355,6 @@ static int bcm2835_audio_open_connection(struct bcm2835_alsa_stream *alsa_stream ...@@ -407,8 +355,6 @@ static int bcm2835_audio_open_connection(struct bcm2835_alsa_stream *alsa_stream
instance->alsa_stream = alsa_stream; instance->alsa_stream = alsa_stream;
alsa_stream->instance = instance; alsa_stream->instance = instance;
LOG_DBG(" success !\n");
return 0; return 0;
} }
...@@ -431,12 +377,12 @@ int bcm2835_audio_open(struct bcm2835_alsa_stream *alsa_stream) ...@@ -431,12 +377,12 @@ int bcm2835_audio_open(struct bcm2835_alsa_stream *alsa_stream)
LOG_DBG(" instance (%p)\n", instance); LOG_DBG(" instance (%p)\n", instance);
mutex_lock(&instance->vchi_mutex); mutex_lock(&instance->vchi_mutex);
vchi_service_use(instance->vchi_handle[0]); vchi_service_use(instance->vchi_handle);
m.type = VC_AUDIO_MSG_TYPE_OPEN; m.type = VC_AUDIO_MSG_TYPE_OPEN;
/* Send the message to the videocore */ /* Send the message to the videocore */
status = bcm2835_vchi_msg_queue(instance->vchi_handle[0], status = bcm2835_vchi_msg_queue(instance->vchi_handle,
&m, sizeof(m)); &m, sizeof(m));
if (status) { if (status) {
...@@ -450,7 +396,7 @@ int bcm2835_audio_open(struct bcm2835_alsa_stream *alsa_stream) ...@@ -450,7 +396,7 @@ int bcm2835_audio_open(struct bcm2835_alsa_stream *alsa_stream)
ret = 0; ret = 0;
unlock: unlock:
vchi_service_release(instance->vchi_handle[0]); vchi_service_release(instance->vchi_handle);
mutex_unlock(&instance->vchi_mutex); mutex_unlock(&instance->vchi_mutex);
free_wq: free_wq:
...@@ -472,7 +418,7 @@ int bcm2835_audio_set_ctls(struct bcm2835_alsa_stream *alsa_stream) ...@@ -472,7 +418,7 @@ int bcm2835_audio_set_ctls(struct bcm2835_alsa_stream *alsa_stream)
chip->dest, chip->volume); chip->dest, chip->volume);
mutex_lock(&instance->vchi_mutex); mutex_lock(&instance->vchi_mutex);
vchi_service_use(instance->vchi_handle[0]); vchi_service_use(instance->vchi_handle);
instance->result = -1; instance->result = -1;
...@@ -487,7 +433,7 @@ int bcm2835_audio_set_ctls(struct bcm2835_alsa_stream *alsa_stream) ...@@ -487,7 +433,7 @@ int bcm2835_audio_set_ctls(struct bcm2835_alsa_stream *alsa_stream)
init_completion(&instance->msg_avail_comp); init_completion(&instance->msg_avail_comp);
/* Send the message to the videocore */ /* Send the message to the videocore */
status = bcm2835_vchi_msg_queue(instance->vchi_handle[0], status = bcm2835_vchi_msg_queue(instance->vchi_handle,
&m, sizeof(m)); &m, sizeof(m));
if (status) { if (status) {
...@@ -511,7 +457,7 @@ int bcm2835_audio_set_ctls(struct bcm2835_alsa_stream *alsa_stream) ...@@ -511,7 +457,7 @@ int bcm2835_audio_set_ctls(struct bcm2835_alsa_stream *alsa_stream)
ret = 0; ret = 0;
unlock: unlock:
vchi_service_release(instance->vchi_handle[0]); vchi_service_release(instance->vchi_handle);
mutex_unlock(&instance->vchi_mutex); mutex_unlock(&instance->vchi_mutex);
return ret; return ret;
...@@ -537,7 +483,7 @@ int bcm2835_audio_set_params(struct bcm2835_alsa_stream *alsa_stream, ...@@ -537,7 +483,7 @@ int bcm2835_audio_set_params(struct bcm2835_alsa_stream *alsa_stream,
} }
mutex_lock(&instance->vchi_mutex); mutex_lock(&instance->vchi_mutex);
vchi_service_use(instance->vchi_handle[0]); vchi_service_use(instance->vchi_handle);
instance->result = -1; instance->result = -1;
...@@ -550,7 +496,7 @@ int bcm2835_audio_set_params(struct bcm2835_alsa_stream *alsa_stream, ...@@ -550,7 +496,7 @@ int bcm2835_audio_set_params(struct bcm2835_alsa_stream *alsa_stream,
init_completion(&instance->msg_avail_comp); init_completion(&instance->msg_avail_comp);
/* Send the message to the videocore */ /* Send the message to the videocore */
status = bcm2835_vchi_msg_queue(instance->vchi_handle[0], status = bcm2835_vchi_msg_queue(instance->vchi_handle,
&m, sizeof(m)); &m, sizeof(m));
if (status) { if (status) {
...@@ -574,7 +520,7 @@ int bcm2835_audio_set_params(struct bcm2835_alsa_stream *alsa_stream, ...@@ -574,7 +520,7 @@ int bcm2835_audio_set_params(struct bcm2835_alsa_stream *alsa_stream,
ret = 0; ret = 0;
unlock: unlock:
vchi_service_release(instance->vchi_handle[0]); vchi_service_release(instance->vchi_handle);
mutex_unlock(&instance->vchi_mutex); mutex_unlock(&instance->vchi_mutex);
return ret; return ret;
...@@ -588,12 +534,12 @@ static int bcm2835_audio_start_worker(struct bcm2835_alsa_stream *alsa_stream) ...@@ -588,12 +534,12 @@ static int bcm2835_audio_start_worker(struct bcm2835_alsa_stream *alsa_stream)
int ret; int ret;
mutex_lock(&instance->vchi_mutex); mutex_lock(&instance->vchi_mutex);
vchi_service_use(instance->vchi_handle[0]); vchi_service_use(instance->vchi_handle);
m.type = VC_AUDIO_MSG_TYPE_START; m.type = VC_AUDIO_MSG_TYPE_START;
/* Send the message to the videocore */ /* Send the message to the videocore */
status = bcm2835_vchi_msg_queue(instance->vchi_handle[0], status = bcm2835_vchi_msg_queue(instance->vchi_handle,
&m, sizeof(m)); &m, sizeof(m));
if (status) { if (status) {
...@@ -607,7 +553,7 @@ static int bcm2835_audio_start_worker(struct bcm2835_alsa_stream *alsa_stream) ...@@ -607,7 +553,7 @@ static int bcm2835_audio_start_worker(struct bcm2835_alsa_stream *alsa_stream)
ret = 0; ret = 0;
unlock: unlock:
vchi_service_release(instance->vchi_handle[0]); vchi_service_release(instance->vchi_handle);
mutex_unlock(&instance->vchi_mutex); mutex_unlock(&instance->vchi_mutex);
return ret; return ret;
} }
...@@ -620,13 +566,13 @@ static int bcm2835_audio_stop_worker(struct bcm2835_alsa_stream *alsa_stream) ...@@ -620,13 +566,13 @@ static int bcm2835_audio_stop_worker(struct bcm2835_alsa_stream *alsa_stream)
int ret; int ret;
mutex_lock(&instance->vchi_mutex); mutex_lock(&instance->vchi_mutex);
vchi_service_use(instance->vchi_handle[0]); vchi_service_use(instance->vchi_handle);
m.type = VC_AUDIO_MSG_TYPE_STOP; m.type = VC_AUDIO_MSG_TYPE_STOP;
m.u.stop.draining = alsa_stream->draining; m.u.stop.draining = alsa_stream->draining;
/* Send the message to the videocore */ /* Send the message to the videocore */
status = bcm2835_vchi_msg_queue(instance->vchi_handle[0], status = bcm2835_vchi_msg_queue(instance->vchi_handle,
&m, sizeof(m)); &m, sizeof(m));
if (status) { if (status) {
...@@ -640,7 +586,7 @@ static int bcm2835_audio_stop_worker(struct bcm2835_alsa_stream *alsa_stream) ...@@ -640,7 +586,7 @@ static int bcm2835_audio_stop_worker(struct bcm2835_alsa_stream *alsa_stream)
ret = 0; ret = 0;
unlock: unlock:
vchi_service_release(instance->vchi_handle[0]); vchi_service_release(instance->vchi_handle);
mutex_unlock(&instance->vchi_mutex); mutex_unlock(&instance->vchi_mutex);
return ret; return ret;
} }
...@@ -655,7 +601,7 @@ int bcm2835_audio_close(struct bcm2835_alsa_stream *alsa_stream) ...@@ -655,7 +601,7 @@ int bcm2835_audio_close(struct bcm2835_alsa_stream *alsa_stream)
my_workqueue_quit(alsa_stream); my_workqueue_quit(alsa_stream);
mutex_lock(&instance->vchi_mutex); mutex_lock(&instance->vchi_mutex);
vchi_service_use(instance->vchi_handle[0]); vchi_service_use(instance->vchi_handle);
m.type = VC_AUDIO_MSG_TYPE_CLOSE; m.type = VC_AUDIO_MSG_TYPE_CLOSE;
...@@ -663,7 +609,7 @@ int bcm2835_audio_close(struct bcm2835_alsa_stream *alsa_stream) ...@@ -663,7 +609,7 @@ int bcm2835_audio_close(struct bcm2835_alsa_stream *alsa_stream)
init_completion(&instance->msg_avail_comp); init_completion(&instance->msg_avail_comp);
/* Send the message to the videocore */ /* Send the message to the videocore */
status = bcm2835_vchi_msg_queue(instance->vchi_handle[0], status = bcm2835_vchi_msg_queue(instance->vchi_handle,
&m, sizeof(m)); &m, sizeof(m));
if (status) { if (status) {
...@@ -687,7 +633,7 @@ int bcm2835_audio_close(struct bcm2835_alsa_stream *alsa_stream) ...@@ -687,7 +633,7 @@ int bcm2835_audio_close(struct bcm2835_alsa_stream *alsa_stream)
ret = 0; ret = 0;
unlock: unlock:
vchi_service_release(instance->vchi_handle[0]); vchi_service_release(instance->vchi_handle);
mutex_unlock(&instance->vchi_mutex); mutex_unlock(&instance->vchi_mutex);
/* Stop the audio service */ /* Stop the audio service */
...@@ -708,10 +654,10 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream, ...@@ -708,10 +654,10 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream,
LOG_INFO(" Writing %d bytes from %p\n", count, src); LOG_INFO(" Writing %d bytes from %p\n", count, src);
mutex_lock(&instance->vchi_mutex); mutex_lock(&instance->vchi_mutex);
vchi_service_use(instance->vchi_handle[0]); vchi_service_use(instance->vchi_handle);
if (instance->peer_version == 0 && if (instance->peer_version == 0 &&
vchi_get_peer_version(instance->vchi_handle[0], &instance->peer_version) == 0) vchi_get_peer_version(instance->vchi_handle, &instance->peer_version) == 0)
LOG_DBG("%s: client version %d connected\n", __func__, instance->peer_version); LOG_DBG("%s: client version %d connected\n", __func__, instance->peer_version);
m.type = VC_AUDIO_MSG_TYPE_WRITE; m.type = VC_AUDIO_MSG_TYPE_WRITE;
...@@ -723,7 +669,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream, ...@@ -723,7 +669,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream,
m.u.write.silence = src == NULL; m.u.write.silence = src == NULL;
/* Send the message to the videocore */ /* Send the message to the videocore */
status = bcm2835_vchi_msg_queue(instance->vchi_handle[0], status = bcm2835_vchi_msg_queue(instance->vchi_handle,
&m, sizeof(m)); &m, sizeof(m));
if (status) { if (status) {
...@@ -736,7 +682,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream, ...@@ -736,7 +682,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream,
if (!m.u.write.silence) { if (!m.u.write.silence) {
if (!m.u.write.max_packet) { if (!m.u.write.max_packet) {
/* Send the message to the videocore */ /* Send the message to the videocore */
status = vchi_bulk_queue_transmit(instance->vchi_handle[0], status = vchi_bulk_queue_transmit(instance->vchi_handle,
src, count, src, count,
0 * VCHI_FLAGS_BLOCK_UNTIL_QUEUED 0 * VCHI_FLAGS_BLOCK_UNTIL_QUEUED
+ +
...@@ -746,7 +692,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream, ...@@ -746,7 +692,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream,
while (count > 0) { while (count > 0) {
int bytes = min_t(int, m.u.write.max_packet, count); int bytes = min_t(int, m.u.write.max_packet, count);
status = bcm2835_vchi_msg_queue(instance->vchi_handle[0], status = bcm2835_vchi_msg_queue(instance->vchi_handle,
src, bytes); src, bytes);
src = (char *)src + bytes; src = (char *)src + bytes;
count -= bytes; count -= bytes;
...@@ -763,7 +709,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream, ...@@ -763,7 +709,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream,
ret = 0; ret = 0;
unlock: unlock:
vchi_service_release(instance->vchi_handle[0]); vchi_service_release(instance->vchi_handle);
mutex_unlock(&instance->vchi_mutex); mutex_unlock(&instance->vchi_mutex);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment