8526171c7bcda206555b3580137471d7ec36fdf0
[mesa.git] / src / amd / addrlib / src / chip / gfx10 / gfx10_gb_reg.h
1 /*
2 * Copyright © 2007-2019 Advanced Micro Devices, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
15 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
17 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 * USE OR OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
24 * of the Software.
25 */
26
27 #if !defined (__GFX10_GB_REG_H__)
28 #define __GFX10_GB_REG_H__
29
30 /*
31 * gfx10_gb_reg.h
32 *
33 * Register Spec Release: 1.0
34 *
35 */
36
37 //
38 // Make sure the necessary endian defines are there.
39 //
40 #include "util/u_endian.h"
41
42 #if UTIL_ARCH_LITTLE_ENDIAN
43 #define LITTLEENDIAN_CPU
44 #elif UTIL_ARCH_BIG_ENDIAN
45 #define BIGENDIAN_CPU
46 #endif
47
48 union GB_ADDR_CONFIG
49 {
50 struct
51 {
52 #if defined(LITTLEENDIAN_CPU)
53 unsigned int NUM_PIPES : 3;
54 unsigned int PIPE_INTERLEAVE_SIZE : 3;
55 unsigned int MAX_COMPRESSED_FRAGS : 2;
56 unsigned int NUM_PKRS : 3;
57 unsigned int : 21;
58 #elif defined(BIGENDIAN_CPU)
59 unsigned int : 21;
60 unsigned int NUM_PKRS : 3;
61 unsigned int MAX_COMPRESSED_FRAGS : 2;
62 unsigned int PIPE_INTERLEAVE_SIZE : 3;
63 unsigned int NUM_PIPES : 3;
64 #endif
65 } bitfields, bits;
66 unsigned int u32All;
67 int i32All;
68 float f32All;
69 };
70
71 #endif
72