Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/amd/common/ac_exp_param.h
7130 views
1
/*
2
* Copyright 2014 Advanced Micro Devices, Inc.
3
*
4
* Permission is hereby granted, free of charge, to any person obtaining a
5
* copy of this software and associated documentation files (the
6
* "Software"), to deal in the Software without restriction, including
7
* without limitation the rights to use, copy, modify, merge, publish,
8
* distribute, sub license, and/or sell copies of the Software, and to
9
* permit persons to whom the Software is furnished to do so, subject to
10
* the following conditions:
11
*
12
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
15
* THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
16
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
17
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18
* USE OR OTHER DEALINGS IN THE SOFTWARE.
19
*
20
* The above copyright notice and this permission notice (including the
21
* next paragraph) shall be included in all copies or substantial portions
22
* of the Software.
23
*
24
*/
25
#ifndef AC_EXP_PARAM_H
26
#define AC_EXP_PARAM_H
27
28
enum
29
{
30
/* SPI_PS_INPUT_CNTL_i.OFFSET[0:4] */
31
AC_EXP_PARAM_OFFSET_0 = 0,
32
AC_EXP_PARAM_OFFSET_31 = 31,
33
/* SPI_PS_INPUT_CNTL_i.DEFAULT_VAL[0:1] */
34
AC_EXP_PARAM_DEFAULT_VAL_0000 = 64,
35
AC_EXP_PARAM_DEFAULT_VAL_0001,
36
AC_EXP_PARAM_DEFAULT_VAL_1110,
37
AC_EXP_PARAM_DEFAULT_VAL_1111,
38
AC_EXP_PARAM_UNDEFINED = 255,
39
};
40
41
#endif
42
43