RK3368 GPU version Rogue M 1.28
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / rogue_m / services / shared / devices / rgx / rgx_compat_bvnc.h
1 /*************************************************************************/ /*!
2 @File
3 @Title          Functions for BVNC manipulating
4
5 @Copyright      Copyright (c) Imagination Technologies Ltd. All Rights Reserved
6 @Description    Utility functions used internally by device memory management
7                 code.
8 @License        Dual MIT/GPLv2
9
10 The contents of this file are subject to the MIT license as set out below.
11
12 Permission is hereby granted, free of charge, to any person obtaining a copy
13 of this software and associated documentation files (the "Software"), to deal
14 in the Software without restriction, including without limitation the rights
15 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 copies of the Software, and to permit persons to whom the Software is
17 furnished to do so, subject to the following conditions:
18
19 The above copyright notice and this permission notice shall be included in
20 all copies or substantial portions of the Software.
21
22 Alternatively, the contents of this file may be used under the terms of
23 the GNU General Public License Version 2 ("GPL") in which case the provisions
24 of GPL are applicable instead of those above.
25
26 If you wish to allow use of your version of this file only under the terms of
27 GPL, and not to allow others to use your version of this file under the terms
28 of the MIT license, indicate your decision by deleting the provisions above
29 and replace them with the notice and other provisions required by GPL as set
30 out in the file called "GPL-COPYING" included in this distribution. If you do
31 not delete the provisions above, a recipient may use your version of this file
32 under the terms of either the MIT license or GPL.
33
34 This License is also included in this distribution in the file called
35 "MIT-COPYING".
36
37 EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
38 PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
39 BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
40 PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
41 COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
42 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
43 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
44 */ /**************************************************************************/
45
46 #if !defined (__RGX_COMPAT_BVNC_H__)
47 #define __RGX_COMPAT_BVNC_H__
48
49 #include "img_types.h"
50
51 /******************************************************************************
52  * RGX Version packed into 24-bit (BNC) and string (V) to be used by Compatibility Check
53  *****************************************************************************/
54
55 #define RGX_BVNC_PACK_MASK_B 0x00FF0000
56 #define RGX_BVNC_PACK_MASK_N 0x0000FF00
57 #define RGX_BVNC_PACK_MASK_C 0x000000FF
58
59 #define RGX_BVNC_PACKED_EXTR_B(BVNC) (((BVNC).ui32BNC >> 16) & 0xFF)
60 #define RGX_BVNC_PACKED_EXTR_V(BVNC) ((BVNC).aszV)
61 #define RGX_BVNC_PACKED_EXTR_N(BVNC) (((BVNC).ui32BNC >> 8) & 0xFF)
62 #define RGX_BVNC_PACKED_EXTR_C(BVNC) (((BVNC).ui32BNC >> 0) & 0xFF)
63
64 #define RGX_BVNC_EQUAL(L,R,all,version,lenmax,bnc,v) do {                                                                                                       \
65                                                                                 (lenmax) = IMG_FALSE;                                                                                           \
66                                                                                 (bnc) = IMG_FALSE;                                                                                                      \
67                                                                                 (v) = IMG_FALSE;                                                                                                        \
68                                                                                 (version) = ((L).ui32LayoutVersion == (R).ui32LayoutVersion);           \
69                                                                                 if (version)                                                                                                            \
70                                                                                 {                                                                                                                                       \
71                                                                                         (lenmax) = ((L).ui32VLenMax == (R).ui32VLenMax);                                \
72                                                                                 }                                                                                                                                       \
73                                                                                 if (lenmax)                                                                                                                     \
74                                                                                 {                                                                                                                                       \
75                                                                                         (bnc) = ((L).ui32BNC == (R).ui32BNC);                                                   \
76                                                                                 }                                                                                                                                       \
77                                                                                 if (bnc)                                                                                                                        \
78                                                                                 {                                                                                                                                       \
79                                                                                         (L).aszV[(L).ui32VLenMax] = '\0';                                                               \
80                                                                                         (R).aszV[(R).ui32VLenMax] = '\0';                                                               \
81                                                                                         (v) = (OSStringCompare((L).aszV, (R).aszV)==0);                                 \
82                                                                                 }                                                                                                                                       \
83                                                                                 (all) = (version) && (lenmax) && (bnc) && (v);                                          \
84                                                                         } while (0)
85
86 IMG_VOID rgx_bvnc_packed(IMG_UINT32 *pui32OutBNC, IMG_CHAR *pszOutV, IMG_UINT32 ui32OutVMaxLen,
87                                                         IMG_UINT32 ui32B, IMG_CHAR *pszV, IMG_UINT32 ui32N, IMG_UINT32 ui32C);
88 IMG_VOID rgx_bvnc_pack_hw(IMG_UINT32 *pui32OutBNC, IMG_CHAR *pszOutV, IMG_UINT32 ui32OutVMaxLen,
89                                                         IMG_UINT32 ui32B, IMG_CHAR *pszFwV, IMG_UINT32 ui32V, IMG_UINT32 ui32N, IMG_UINT32 ui32C);
90
91 #endif /*  __RGX_COMPAT_BVNC_H__ */
92
93 /******************************************************************************
94  End of file (rgx_compat_bvnc.h)
95 ******************************************************************************/
96