Path: blob/main/sys/contrib/vchiq/interface/vchiq_arm/vchiq_connected.c
48383 views
/**1* Copyright (c) 2010-2012 Broadcom. All rights reserved.2*3* Redistribution and use in source and binary forms, with or without4* modification, are permitted provided that the following conditions5* are met:6* 1. Redistributions of source code must retain the above copyright7* notice, this list of conditions, and the following disclaimer,8* without modification.9* 2. Redistributions in binary form must reproduce the above copyright10* notice, this list of conditions and the following disclaimer in the11* documentation and/or other materials provided with the distribution.12* 3. The names of the above-listed copyright holders may not be used13* to endorse or promote products derived from this software without14* specific prior written permission.15*16* ALTERNATIVELY, this software may be distributed under the terms of the17* GNU General Public License ("GPL") version 2, as published by the Free18* Software Foundation.19*20* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS21* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,22* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR23* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR24* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,25* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,26* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR27* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF28* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING29* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS30* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.31*/3233#include "vchiq_connected.h"34#include "vchiq_core.h"35#include "vchiq_killable.h"3637#define MAX_CALLBACKS 103839static int g_connected;40static int g_num_deferred_callbacks;41static VCHIQ_CONNECTED_CALLBACK_T g_deferred_callback[MAX_CALLBACKS];42static int g_once_init;43static struct mutex g_connected_mutex;4445/****************************************************************************46*47* Function to initialize our lock.48*49***************************************************************************/5051static void connected_init(void)52{53if (!g_once_init) {54lmutex_init(&g_connected_mutex);55g_once_init = 1;56}57}5859/****************************************************************************60*61* This function is used to defer initialization until the vchiq stack is62* initialized. If the stack is already initialized, then the callback will63* be made immediately, otherwise it will be deferred until64* vchiq_call_connected_callbacks is called.65*66***************************************************************************/6768void vchiq_add_connected_callback(VCHIQ_CONNECTED_CALLBACK_T callback)69{70connected_init();7172if (lmutex_lock_interruptible(&g_connected_mutex) != 0)73return;7475if (g_connected)76/* We're already connected. Call the callback immediately. */7778callback();79else {80if (g_num_deferred_callbacks >= MAX_CALLBACKS)81vchiq_log_error(vchiq_core_log_level,82"There are already %d callbacks registered - "83"please increase MAX_CALLBACKS",84g_num_deferred_callbacks);85else {86g_deferred_callback[g_num_deferred_callbacks] =87callback;88g_num_deferred_callbacks++;89}90}91lmutex_unlock(&g_connected_mutex);92}9394/****************************************************************************95*96* This function is called by the vchiq stack once it has been connected to97* the videocore and clients can start to use the stack.98*99***************************************************************************/100101void vchiq_call_connected_callbacks(void)102{103int i;104105connected_init();106107if (lmutex_lock_interruptible(&g_connected_mutex) != 0)108return;109110for (i = 0; i < g_num_deferred_callbacks; i++)111g_deferred_callback[i]();112113g_num_deferred_callbacks = 0;114g_connected = 1;115lmutex_unlock(&g_connected_mutex);116}117EXPORT_SYMBOL(vchiq_add_connected_callback);118119120