mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-20 11:18:11 +02:00
In the vulkan driver we need to patch job headers when re-submitting an already submitted batch. Change panfrost_scoreboard_initialize_tiler() prototype to allow that. Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com> Reviewed-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11139>
72 lines
2.7 KiB
C
72 lines
2.7 KiB
C
/*
|
|
* Copyright (C) 2019-2020 Collabora Ltd.
|
|
* Copyright (C) 2019 Alyssa Rosenzweig
|
|
* Copyright (C) 2014-2017 Broadcom
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#ifndef __PAN_SCOREBOARD_H__
|
|
#define __PAN_SCOREBOARD_H__
|
|
|
|
#include "midgard_pack.h"
|
|
#include "pan_pool.h"
|
|
|
|
struct pan_scoreboard {
|
|
/* The first job in the batch */
|
|
mali_ptr first_job;
|
|
|
|
/* The number of jobs in the primary batch, essentially */
|
|
unsigned job_index;
|
|
|
|
/* A CPU-side pointer to the previous job for next_job linking */
|
|
struct mali_job_header_packed *prev_job;
|
|
|
|
/* A CPU-side pointer to the first tiler job for dep updates when
|
|
* injecting a reload tiler job.
|
|
*/
|
|
struct mali_job_header_packed *first_tiler;
|
|
uint32_t first_tiler_dep1;
|
|
|
|
/* The dependency for tiler jobs (i.e. the index of the last emitted
|
|
* tiler job, or zero if none have been emitted) */
|
|
unsigned tiler_dep;
|
|
|
|
/* The job index of the WRITE_VALUE job (before it has been created) */
|
|
unsigned write_value_index;
|
|
};
|
|
|
|
unsigned
|
|
panfrost_add_job(
|
|
struct pan_pool *pool,
|
|
struct pan_scoreboard *scoreboard,
|
|
enum mali_job_type type,
|
|
bool barrier, bool suppress_prefetch,
|
|
unsigned local_dep, unsigned global_dep,
|
|
const struct panfrost_ptr *job,
|
|
bool inject);
|
|
|
|
struct panfrost_ptr
|
|
panfrost_scoreboard_initialize_tiler(struct pan_pool *pool,
|
|
struct pan_scoreboard *scoreboard,
|
|
mali_ptr polygon_list);
|
|
|
|
#endif
|