Chia-I Wu | 1d267e1 | 2014-08-05 12:13:22 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Mesa 3-D graphics library |
| 3 | * |
| 4 | * Copyright (C) 2014 LunarG, Inc. |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 7 | * copy of this software and associated documentation files (the "Software"), |
| 8 | * to deal in the Software without restriction, including without limitation |
| 9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 10 | * and/or sell copies of the Software, and to permit persons to whom the |
| 11 | * Software is furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included |
| 14 | * in all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 22 | * DEALINGS IN THE SOFTWARE. |
| 23 | */ |
| 24 | |
| 25 | #ifndef GENHW_H |
| 26 | #define GENHW_H |
| 27 | |
Chia-I Wu | 214dac6 | 2014-08-05 11:07:40 +0800 | [diff] [blame] | 28 | #include <stdbool.h> |
| 29 | #include <assert.h> |
Chia-I Wu | 1d267e1 | 2014-08-05 12:13:22 +0800 | [diff] [blame] | 30 | |
| 31 | #include "gen_regs.xml.h" |
| 32 | #include "gen_mi.xml.h" |
| 33 | #include "gen_blitter.xml.h" |
| 34 | #include "gen_render_surface.xml.h" |
| 35 | #include "gen_render_dynamic.xml.h" |
| 36 | #include "gen_render_3d.xml.h" |
| 37 | #include "gen_eu_isa.xml.h" |
| 38 | #include "gen_eu_message.xml.h" |
| 39 | |
| 40 | #define GEN_MI_CMD(op) (GEN6_MI_TYPE_MI | GEN6_MI_OPCODE_ ## op) |
| 41 | |
| 42 | #define GEN_BLITTER_CMD(op) \ |
| 43 | (GEN6_BLITTER_TYPE_BLITTER | GEN6_BLITTER_OPCODE_ ## op) |
| 44 | |
Chia-I Wu | b0b9f69 | 2014-08-21 11:33:29 +0800 | [diff] [blame^] | 45 | #define GEN_RENDER_CMD(subtype, gen, op) \ |
| 46 | (GEN6_RENDER_TYPE_RENDER | \ |
| 47 | GEN6_RENDER_SUBTYPE_ ## subtype | \ |
| 48 | gen ## _RENDER_OPCODE_ ## op) |
Chia-I Wu | 1d267e1 | 2014-08-05 12:13:22 +0800 | [diff] [blame] | 49 | |
| 50 | static inline bool |
| 51 | gen_is_snb(int devid) |
| 52 | { |
| 53 | return (devid == 0x0102 || /* GT1 desktop */ |
| 54 | devid == 0x0112 || /* GT2 desktop */ |
| 55 | devid == 0x0122 || /* GT2_PLUS desktop */ |
| 56 | devid == 0x0106 || /* GT1 mobile */ |
| 57 | devid == 0x0116 || /* GT2 mobile */ |
| 58 | devid == 0x0126 || /* GT2_PLUS mobile */ |
| 59 | devid == 0x010a); /* GT1 server */ |
| 60 | } |
| 61 | |
| 62 | static inline int |
| 63 | gen_get_snb_gt(int devid) |
| 64 | { |
| 65 | assert(gen_is_snb(devid)); |
| 66 | return (devid & 0x30) ? 2 : 1; |
| 67 | } |
| 68 | |
| 69 | static inline bool |
| 70 | gen_is_ivb(int devid) |
| 71 | { |
| 72 | return (devid == 0x0152 || /* GT1 desktop */ |
| 73 | devid == 0x0162 || /* GT2 desktop */ |
| 74 | devid == 0x0156 || /* GT1 mobile */ |
| 75 | devid == 0x0166 || /* GT2 mobile */ |
| 76 | devid == 0x015a || /* GT1 server */ |
| 77 | devid == 0x016a); /* GT2 server */ |
| 78 | } |
| 79 | |
| 80 | static inline int |
| 81 | gen_get_ivb_gt(int devid) |
| 82 | { |
| 83 | assert(gen_is_ivb(devid)); |
| 84 | return (devid & 0x30) >> 4; |
| 85 | } |
| 86 | |
| 87 | static inline bool |
| 88 | gen_is_hsw(int devid) |
| 89 | { |
| 90 | return (devid == 0x0402 || /* GT1 desktop */ |
| 91 | devid == 0x0412 || /* GT2 desktop */ |
| 92 | devid == 0x0422 || /* GT3 desktop */ |
| 93 | devid == 0x0406 || /* GT1 mobile */ |
| 94 | devid == 0x0416 || /* GT2 mobile */ |
| 95 | devid == 0x0426 || /* GT2 mobile */ |
| 96 | devid == 0x040a || /* GT1 server */ |
| 97 | devid == 0x041a || /* GT2 server */ |
| 98 | devid == 0x042a || /* GT3 server */ |
| 99 | devid == 0x040b || /* GT1 reserved */ |
| 100 | devid == 0x041b || /* GT2 reserved */ |
| 101 | devid == 0x042b || /* GT3 reserved */ |
| 102 | devid == 0x040e || /* GT1 reserved */ |
| 103 | devid == 0x041e || /* GT2 reserved */ |
| 104 | devid == 0x042e || /* GT3 reserved */ |
| 105 | devid == 0x0c02 || /* SDV */ |
| 106 | devid == 0x0c12 || |
| 107 | devid == 0x0c22 || |
| 108 | devid == 0x0c06 || |
| 109 | devid == 0x0c16 || |
| 110 | devid == 0x0c26 || |
| 111 | devid == 0x0c0a || |
| 112 | devid == 0x0c1a || |
| 113 | devid == 0x0c2a || |
| 114 | devid == 0x0c0b || |
| 115 | devid == 0x0c1b || |
| 116 | devid == 0x0c2b || |
| 117 | devid == 0x0c0e || |
| 118 | devid == 0x0c1e || |
| 119 | devid == 0x0c2e || |
| 120 | devid == 0x0a02 || /* ULT */ |
| 121 | devid == 0x0a12 || |
| 122 | devid == 0x0a22 || |
| 123 | devid == 0x0a06 || |
| 124 | devid == 0x0a16 || |
| 125 | devid == 0x0a26 || |
| 126 | devid == 0x0a0a || |
| 127 | devid == 0x0a1a || |
| 128 | devid == 0x0a2a || |
| 129 | devid == 0x0a0b || |
| 130 | devid == 0x0a1b || |
| 131 | devid == 0x0a2b || |
| 132 | devid == 0x0a0e || |
| 133 | devid == 0x0a1e || |
| 134 | devid == 0x0a2e || |
| 135 | devid == 0x0d02 || /* CRW */ |
| 136 | devid == 0x0d12 || |
| 137 | devid == 0x0d22 || |
| 138 | devid == 0x0d06 || |
| 139 | devid == 0x0d16 || |
| 140 | devid == 0x0d26 || |
| 141 | devid == 0x0d0a || |
| 142 | devid == 0x0d1a || |
| 143 | devid == 0x0d2a || |
| 144 | devid == 0x0d0b || |
| 145 | devid == 0x0d1b || |
| 146 | devid == 0x0d2b || |
| 147 | devid == 0x0d0e || |
| 148 | devid == 0x0d1e || |
| 149 | devid == 0x0d2e); |
| 150 | } |
| 151 | |
| 152 | static inline int |
| 153 | gen_get_hsw_gt(int devid) |
| 154 | { |
| 155 | assert(gen_is_hsw(devid)); |
| 156 | return ((devid & 0x30) >> 4) + 1; |
| 157 | } |
| 158 | |
| 159 | static inline bool |
| 160 | gen_is_vlv(int devid) |
| 161 | { |
| 162 | return (devid == 0x0f30 || |
| 163 | devid == 0x0f31 || |
| 164 | devid == 0x0f32 || |
| 165 | devid == 0x0f33 || |
| 166 | devid == 0x0157 || |
| 167 | devid == 0x0155); |
| 168 | } |
| 169 | |
| 170 | static inline bool |
| 171 | gen_is_atom(int devid) |
| 172 | { |
| 173 | return gen_is_vlv(devid); |
| 174 | } |
| 175 | |
| 176 | static inline bool |
| 177 | gen_is_desktop(int devid) |
| 178 | { |
| 179 | assert(!gen_is_atom(devid)); |
| 180 | return ((devid & 0xf) == 0x2); |
| 181 | } |
| 182 | |
| 183 | static inline bool |
| 184 | gen_is_mobile(int devid) |
| 185 | { |
| 186 | assert(!gen_is_atom(devid)); |
| 187 | return ((devid & 0xf) == 0x6); |
| 188 | } |
| 189 | |
| 190 | static inline bool |
| 191 | gen_is_server(int devid) |
| 192 | { |
| 193 | assert(!gen_is_atom(devid)); |
| 194 | return ((devid & 0xf) == 0xa); |
| 195 | } |
| 196 | |
| 197 | #endif /* GENHW_H */ |