1b8e80941Smrg/**************************************************************************** 2b8e80941Smrg * Copyright (C) 2015 Intel Corporation. All Rights Reserved. 3b8e80941Smrg * 4b8e80941Smrg * Permission is hereby granted, free of charge, to any person obtaining a 5b8e80941Smrg * copy of this software and associated documentation files (the "Software"), 6b8e80941Smrg * to deal in the Software without restriction, including without limitation 7b8e80941Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8b8e80941Smrg * and/or sell copies of the Software, and to permit persons to whom the 9b8e80941Smrg * Software is furnished to do so, subject to the following conditions: 10b8e80941Smrg * 11b8e80941Smrg * The above copyright notice and this permission notice (including the next 12b8e80941Smrg * paragraph) shall be included in all copies or substantial portions of the 13b8e80941Smrg * Software. 14b8e80941Smrg * 15b8e80941Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16b8e80941Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17b8e80941Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18b8e80941Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19b8e80941Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20b8e80941Smrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21b8e80941Smrg * IN THE SOFTWARE. 22b8e80941Smrg ***************************************************************************/ 23b8e80941Smrg 24b8e80941Smrg#include "util/u_memory.h" 25b8e80941Smrg#include "swr_context.h" 26b8e80941Smrg#include "swr_screen.h" 27b8e80941Smrg#include "swr_scratch.h" 28b8e80941Smrg#include "swr_fence_work.h" 29b8e80941Smrg#include "api.h" 30b8e80941Smrg 31b8e80941Smrgvoid * 32b8e80941Smrgswr_copy_to_scratch_space(struct swr_context *ctx, 33b8e80941Smrg struct swr_scratch_space *space, 34b8e80941Smrg const void *user_buffer, 35b8e80941Smrg unsigned int size) 36b8e80941Smrg{ 37b8e80941Smrg void *ptr; 38b8e80941Smrg assert(space); 39b8e80941Smrg assert(size); 40b8e80941Smrg 41b8e80941Smrg /* Allocate enough so that MAX_DRAWS_IN_FLIGHT sets fit. */ 42b8e80941Smrg uint32_t max_size_in_flight = size * ctx->max_draws_in_flight; 43b8e80941Smrg 44b8e80941Smrg /* Need to grow space */ 45b8e80941Smrg if (max_size_in_flight > space->current_size) { 46b8e80941Smrg space->current_size = max_size_in_flight; 47b8e80941Smrg 48b8e80941Smrg if (space->base) { 49b8e80941Smrg /* defer delete, use aligned-free */ 50b8e80941Smrg struct swr_screen *screen = swr_screen(ctx->pipe.screen); 51b8e80941Smrg swr_fence_work_free(screen->flush_fence, space->base, true); 52b8e80941Smrg space->base = NULL; 53b8e80941Smrg } 54b8e80941Smrg 55b8e80941Smrg if (!space->base) { 56b8e80941Smrg space->base = (uint8_t *)AlignedMalloc(space->current_size, 57b8e80941Smrg sizeof(void *)); 58b8e80941Smrg space->head = (void *)space->base; 59b8e80941Smrg } 60b8e80941Smrg } 61b8e80941Smrg 62b8e80941Smrg /* Wrap */ 63b8e80941Smrg if (((uint8_t *)space->head + size) 64b8e80941Smrg >= ((uint8_t *)space->base + space->current_size)) { 65b8e80941Smrg space->head = space->base; 66b8e80941Smrg } 67b8e80941Smrg 68b8e80941Smrg ptr = space->head; 69b8e80941Smrg space->head = (uint8_t *)space->head + size; 70b8e80941Smrg 71b8e80941Smrg /* Copy user_buffer to scratch */ 72b8e80941Smrg if (user_buffer) 73b8e80941Smrg memcpy(ptr, user_buffer, size); 74b8e80941Smrg 75b8e80941Smrg return ptr; 76b8e80941Smrg} 77b8e80941Smrg 78b8e80941Smrg 79b8e80941Smrgvoid 80b8e80941Smrgswr_init_scratch_buffers(struct swr_context *ctx) 81b8e80941Smrg{ 82b8e80941Smrg struct swr_scratch_buffers *scratch; 83b8e80941Smrg 84b8e80941Smrg scratch = CALLOC_STRUCT(swr_scratch_buffers); 85b8e80941Smrg ctx->scratch = scratch; 86b8e80941Smrg} 87b8e80941Smrg 88b8e80941Smrgvoid 89b8e80941Smrgswr_destroy_scratch_buffers(struct swr_context *ctx) 90b8e80941Smrg{ 91b8e80941Smrg struct swr_scratch_buffers *scratch = ctx->scratch; 92b8e80941Smrg 93b8e80941Smrg if (scratch) { 94b8e80941Smrg AlignedFree(scratch->vs_constants.base); 95b8e80941Smrg AlignedFree(scratch->fs_constants.base); 96b8e80941Smrg AlignedFree(scratch->gs_constants.base); 97b8e80941Smrg AlignedFree(scratch->vertex_buffer.base); 98b8e80941Smrg AlignedFree(scratch->index_buffer.base); 99b8e80941Smrg FREE(scratch); 100b8e80941Smrg } 101b8e80941Smrg} 102