Home | History | Annotate | Line # | Download | only in vchiq_arm
      1  1.1  jmcneill /**
      2  1.2     skrll  * Copyright (c) 2010-2014 Broadcom. All rights reserved.
      3  1.1  jmcneill  *
      4  1.1  jmcneill  * Redistribution and use in source and binary forms, with or without
      5  1.1  jmcneill  * modification, are permitted provided that the following conditions
      6  1.1  jmcneill  * are met:
      7  1.1  jmcneill  * 1. Redistributions of source code must retain the above copyright
      8  1.1  jmcneill  *    notice, this list of conditions, and the following disclaimer,
      9  1.1  jmcneill  *    without modification.
     10  1.1  jmcneill  * 2. Redistributions in binary form must reproduce the above copyright
     11  1.1  jmcneill  *    notice, this list of conditions and the following disclaimer in the
     12  1.1  jmcneill  *    documentation and/or other materials provided with the distribution.
     13  1.1  jmcneill  * 3. The names of the above-listed copyright holders may not be used
     14  1.1  jmcneill  *    to endorse or promote products derived from this software without
     15  1.1  jmcneill  *    specific prior written permission.
     16  1.1  jmcneill  *
     17  1.1  jmcneill  * ALTERNATIVELY, this software may be distributed under the terms of the
     18  1.1  jmcneill  * GNU General Public License ("GPL") version 2, as published by the Free
     19  1.1  jmcneill  * Software Foundation.
     20  1.1  jmcneill  *
     21  1.1  jmcneill  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
     22  1.1  jmcneill  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
     23  1.1  jmcneill  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24  1.1  jmcneill  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
     25  1.1  jmcneill  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     26  1.1  jmcneill  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     27  1.1  jmcneill  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
     28  1.1  jmcneill  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
     29  1.1  jmcneill  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
     30  1.1  jmcneill  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
     31  1.1  jmcneill  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  1.1  jmcneill  */
     33  1.1  jmcneill 
     34  1.1  jmcneill #ifndef VCHIQ_CFG_H
     35  1.1  jmcneill #define VCHIQ_CFG_H
     36  1.1  jmcneill 
     37  1.1  jmcneill #define VCHIQ_MAGIC              VCHIQ_MAKE_FOURCC('V', 'C', 'H', 'I')
     38  1.1  jmcneill /* The version of VCHIQ - change with any non-trivial change */
     39  1.2     skrll #define VCHIQ_VERSION            8
     40  1.1  jmcneill /* The minimum compatible version - update to match VCHIQ_VERSION with any
     41  1.1  jmcneill ** incompatible change */
     42  1.1  jmcneill #define VCHIQ_VERSION_MIN        3
     43  1.1  jmcneill 
     44  1.2     skrll /* The version that introduced the VCHIQ_IOC_LIB_VERSION ioctl */
     45  1.2     skrll #define VCHIQ_VERSION_LIB_VERSION 7
     46  1.2     skrll 
     47  1.2     skrll /* The version that introduced the VCHIQ_IOC_CLOSE_DELIVERED ioctl */
     48  1.2     skrll #define VCHIQ_VERSION_CLOSE_DELIVERED 7
     49  1.2     skrll 
     50  1.2     skrll /* The version that made it safe to use SYNCHRONOUS mode */
     51  1.2     skrll #define VCHIQ_VERSION_SYNCHRONOUS_MODE 8
     52  1.2     skrll 
     53  1.1  jmcneill #define VCHIQ_MAX_STATES         1
     54  1.1  jmcneill #define VCHIQ_MAX_SERVICES       4096
     55  1.1  jmcneill #define VCHIQ_MAX_SLOTS          128
     56  1.1  jmcneill #define VCHIQ_MAX_SLOTS_PER_SIDE 64
     57  1.1  jmcneill 
     58  1.1  jmcneill #define VCHIQ_NUM_CURRENT_BULKS        32
     59  1.1  jmcneill #define VCHIQ_NUM_SERVICE_BULKS        4
     60  1.1  jmcneill 
     61  1.1  jmcneill #ifndef VCHIQ_ENABLE_DEBUG
     62  1.1  jmcneill #define VCHIQ_ENABLE_DEBUG             1
     63  1.1  jmcneill #endif
     64  1.1  jmcneill 
     65  1.1  jmcneill #ifndef VCHIQ_ENABLE_STATS
     66  1.1  jmcneill #define VCHIQ_ENABLE_STATS             1
     67  1.1  jmcneill #endif
     68  1.1  jmcneill 
     69  1.1  jmcneill #endif /* VCHIQ_CFG_H */
     70