Path: blob/main/sys/contrib/vchiq/interface/vchi/vchi_cfg_internal.h
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#ifndef VCHI_CFG_INTERNAL_H_34#define VCHI_CFG_INTERNAL_H_3536/****************************************************************************************37* Control optimisation attempts.38***************************************************************************************/3940// Don't use lots of short-term locks - use great long ones, reducing the overall locks-per-second41#define VCHI_COARSE_LOCKING4243// Avoid lock then unlock on exit from blocking queue operations (msg tx, bulk rx/tx)44// (only relevant if VCHI_COARSE_LOCKING)45#define VCHI_ELIDE_BLOCK_EXIT_LOCK4647// Avoid lock on non-blocking peek48// (only relevant if VCHI_COARSE_LOCKING)49#define VCHI_AVOID_PEEK_LOCK5051// Use one slot-handler thread per connection, rather than 1 thread dealing with all connections in rotation.52#define VCHI_MULTIPLE_HANDLER_THREADS5354// Put free descriptors onto the head of the free queue, rather than the tail, so that we don't thrash55// our way through the pool of descriptors.56#define VCHI_PUSH_FREE_DESCRIPTORS_ONTO_HEAD5758// Don't issue a MSG_AVAILABLE callback for every single message. Possibly only safe if VCHI_COARSE_LOCKING.59#define VCHI_FEWER_MSG_AVAILABLE_CALLBACKS6061// Don't use message descriptors for TX messages that don't need them62#define VCHI_MINIMISE_TX_MSG_DESCRIPTORS6364// Nano-locks for multiqueue65//#define VCHI_MQUEUE_NANOLOCKS6667// Lock-free(er) dequeuing68//#define VCHI_RX_NANOLOCKS6970#endif /*VCHI_CFG_INTERNAL_H_*/717273