1bf215546Sopenharmony_ci/********************************************************** 2bf215546Sopenharmony_ci * Copyright 2008-2022 VMware, Inc. All rights reserved. 3bf215546Sopenharmony_ci * 4bf215546Sopenharmony_ci * Permission is hereby granted, free of charge, to any person 5bf215546Sopenharmony_ci * obtaining a copy of this software and associated documentation 6bf215546Sopenharmony_ci * files (the "Software"), to deal in the Software without 7bf215546Sopenharmony_ci * restriction, including without limitation the rights to use, copy, 8bf215546Sopenharmony_ci * modify, merge, publish, distribute, sublicense, and/or sell copies 9bf215546Sopenharmony_ci * of the Software, and to permit persons to whom the Software is 10bf215546Sopenharmony_ci * furnished to do so, subject to the following conditions: 11bf215546Sopenharmony_ci * 12bf215546Sopenharmony_ci * The above copyright notice and this permission notice shall be 13bf215546Sopenharmony_ci * included in all copies or substantial portions of the Software. 14bf215546Sopenharmony_ci * 15bf215546Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16bf215546Sopenharmony_ci * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17bf215546Sopenharmony_ci * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18bf215546Sopenharmony_ci * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 19bf215546Sopenharmony_ci * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 20bf215546Sopenharmony_ci * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 21bf215546Sopenharmony_ci * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22bf215546Sopenharmony_ci * SOFTWARE. 23bf215546Sopenharmony_ci * 24bf215546Sopenharmony_ci **********************************************************/ 25bf215546Sopenharmony_ci 26bf215546Sopenharmony_ci#ifndef SVGA_TGSI_H 27bf215546Sopenharmony_ci#define SVGA_TGSI_H 28bf215546Sopenharmony_ci 29bf215546Sopenharmony_ci#include "pipe/p_compiler.h" 30bf215546Sopenharmony_ci#include "svga3d_reg.h" 31bf215546Sopenharmony_ci 32bf215546Sopenharmony_ci 33bf215546Sopenharmony_ci#define MAX_VGPU10_ADDR_REGS 4 34bf215546Sopenharmony_ci 35bf215546Sopenharmony_cistruct svga_compile_key; 36bf215546Sopenharmony_cistruct svga_context; 37bf215546Sopenharmony_cistruct svga_shader; 38bf215546Sopenharmony_cistruct svga_shader_variant; 39bf215546Sopenharmony_ci 40bf215546Sopenharmony_ci 41bf215546Sopenharmony_ci/* TGSI doesn't provide use with VS input semantics (they're actually 42bf215546Sopenharmony_ci * pretty meaningless), so we just generate some plausible ones here. 43bf215546Sopenharmony_ci * This is called both from within the TGSI translator and when 44bf215546Sopenharmony_ci * building vdecls to ensure they match up. 45bf215546Sopenharmony_ci * 46bf215546Sopenharmony_ci * The real use of this information is matching vertex elements to 47bf215546Sopenharmony_ci * fragment shader inputs in the case where vertex shader is disabled. 48bf215546Sopenharmony_ci */ 49bf215546Sopenharmony_cistatic inline void svga_generate_vdecl_semantics( unsigned idx, 50bf215546Sopenharmony_ci unsigned *usage, 51bf215546Sopenharmony_ci unsigned *usage_index ) 52bf215546Sopenharmony_ci{ 53bf215546Sopenharmony_ci if (idx == 0) { 54bf215546Sopenharmony_ci *usage = SVGA3D_DECLUSAGE_POSITION; 55bf215546Sopenharmony_ci *usage_index = 0; 56bf215546Sopenharmony_ci } 57bf215546Sopenharmony_ci else { 58bf215546Sopenharmony_ci *usage = SVGA3D_DECLUSAGE_TEXCOORD; 59bf215546Sopenharmony_ci *usage_index = idx - 1; 60bf215546Sopenharmony_ci } 61bf215546Sopenharmony_ci} 62bf215546Sopenharmony_ci 63bf215546Sopenharmony_ci 64bf215546Sopenharmony_ci 65bf215546Sopenharmony_cistruct svga_shader_variant * 66bf215546Sopenharmony_cisvga_tgsi_vgpu9_translate(struct svga_context *svga, 67bf215546Sopenharmony_ci const struct svga_shader *shader, 68bf215546Sopenharmony_ci const struct svga_compile_key *key, 69bf215546Sopenharmony_ci enum pipe_shader_type unit); 70bf215546Sopenharmony_ci 71bf215546Sopenharmony_cistruct svga_shader_variant * 72bf215546Sopenharmony_cisvga_tgsi_vgpu10_translate(struct svga_context *svga, 73bf215546Sopenharmony_ci const struct svga_shader *shader, 74bf215546Sopenharmony_ci const struct svga_compile_key *key, 75bf215546Sopenharmony_ci enum pipe_shader_type unit); 76bf215546Sopenharmony_ci 77bf215546Sopenharmony_ciboolean svga_shader_verify(const uint32_t *tokens, unsigned nr_tokens); 78bf215546Sopenharmony_ci 79bf215546Sopenharmony_civoid 80bf215546Sopenharmony_cisvga_tgsi_scan_shader(struct svga_shader *shader); 81bf215546Sopenharmony_ci 82bf215546Sopenharmony_cistruct svga_shader_variant * 83bf215546Sopenharmony_cisvga_tgsi_compile_shader(struct svga_context *svga, 84bf215546Sopenharmony_ci struct svga_shader *shader, 85bf215546Sopenharmony_ci const struct svga_compile_key *key); 86bf215546Sopenharmony_ci#endif 87