Path: blob/21.2-virgl/src/broadcom/compiler/v3d33_vpm_setup.c
4564 views
/*1* Copyright © 2016-2018 Broadcom2*3* Permission is hereby granted, free of charge, to any person obtaining a4* copy of this software and associated documentation files (the "Software"),5* to deal in the Software without restriction, including without limitation6* the rights to use, copy, modify, merge, publish, distribute, sublicense,7* and/or sell copies of the Software, and to permit persons to whom the8* Software is furnished to do so, subject to the following conditions:9*10* The above copyright notice and this permission notice (including the next11* paragraph) shall be included in all copies or substantial portions of the12* Software.13*14* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR15* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,16* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL17* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER18* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING19* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS20* IN THE SOFTWARE.21*/2223#include "v3d_compiler.h"2425/* We don't do any address packing. */26#define __gen_user_data void27#define __gen_address_type uint32_t28#define __gen_address_offset(reloc) (*reloc)29#define __gen_emit_reloc(cl, reloc)30#include "broadcom/cle/v3d_packet_v33_pack.h"3132void33v3d33_vir_vpm_read_setup(struct v3d_compile *c, int num_components)34{35struct V3D33_VPM_GENERIC_BLOCK_READ_SETUP unpacked = {36V3D33_VPM_GENERIC_BLOCK_READ_SETUP_header,3738.horiz = true,39.laned = false,40/* If the field is 0, that means a read count of 32. */41.num = num_components & 31,42.segs = true,43.stride = 1,44.size = VPM_SETUP_SIZE_32_BIT,45.addr = c->num_inputs,46};4748uint32_t packed;49V3D33_VPM_GENERIC_BLOCK_READ_SETUP_pack(NULL,50(uint8_t *)&packed,51&unpacked);52vir_VPMSETUP(c, vir_uniform_ui(c, packed));53}5455void56v3d33_vir_vpm_write_setup(struct v3d_compile *c)57{58uint32_t packed;59struct V3D33_VPM_GENERIC_BLOCK_WRITE_SETUP unpacked = {60V3D33_VPM_GENERIC_BLOCK_WRITE_SETUP_header,6162.horiz = true,63.laned = false,64.segs = true,65.stride = 1,66.size = VPM_SETUP_SIZE_32_BIT,67.addr = 0,68};6970V3D33_VPM_GENERIC_BLOCK_WRITE_SETUP_pack(NULL,71(uint8_t *)&packed,72&unpacked);73vir_VPMSETUP(c, vir_uniform_ui(c, packed));74}757677