~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/gallium/drivers/radeonsi/si_pm4.h

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * Copyright 2012 Advanced Micro Devices, Inc.
3
 
 * All Rights Reserved.
4
 
 *
5
 
 * Permission is hereby granted, free of charge, to any person obtaining a
6
 
 * copy of this software and associated documentation files (the "Software"),
7
 
 * to deal in the Software without restriction, including without limitation
8
 
 * on the rights to use, copy, modify, merge, publish, distribute, sub
9
 
 * license, and/or sell copies of the Software, and to permit persons to whom
10
 
 * the Software is furnished to do so, subject to the following conditions:
11
 
 *
12
 
 * The above copyright notice and this permission notice (including the next
13
 
 * paragraph) shall be included in all copies or substantial portions of the
14
 
 * 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 NON-INFRINGEMENT. IN NO EVENT SHALL
19
 
 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20
 
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21
 
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22
 
 * USE OR OTHER DEALINGS IN THE SOFTWARE.
 
3
 *
 
4
 * SPDX-License-Identifier: MIT
23
5
 */
24
6
 
25
7
#ifndef SI_PM4_H
26
8
#define SI_PM4_H
27
9
 
28
 
#include "winsys/radeon_winsys.h"
 
10
#include <stdint.h>
 
11
#include <stdbool.h>
29
12
 
30
13
#ifdef __cplusplus
31
14
extern "C" {
43
26
};
44
27
 
45
28
struct si_pm4_state {
 
29
   struct si_screen *screen;
 
30
 
46
31
   /* PKT3_SET_*_REG handling */
47
32
   uint16_t last_reg;   /* register offset in dwords */
48
33
   uint16_t last_pm4;
49
34
   uint16_t ndw;        /* number of dwords in pm4 */
50
35
   uint8_t last_opcode;
51
36
   uint8_t last_idx;
 
37
   bool is_compute_queue;
 
38
   bool packed_is_padded; /* whether SET_*_REG_PAIRS_PACKED is padded to an even number of regs */
52
39
 
53
40
   /* For shader states only */
54
41
   bool is_shader;
66
53
 
67
54
void si_pm4_cmd_add(struct si_pm4_state *state, uint32_t dw);
68
55
void si_pm4_set_reg(struct si_pm4_state *state, unsigned reg, uint32_t val);
69
 
void si_pm4_set_reg_va(struct si_pm4_state *state, unsigned reg, uint32_t val);
70
 
void si_pm4_set_reg_idx3(struct si_screen *sscreen, struct si_pm4_state *state,
71
 
                         unsigned reg, uint32_t val);
 
56
void si_pm4_set_reg_idx3(struct si_pm4_state *state, unsigned reg, uint32_t val);
 
57
void si_pm4_finalize(struct si_pm4_state *state);
72
58
 
73
 
void si_pm4_clear_state(struct si_pm4_state *state);
 
59
void si_pm4_clear_state(struct si_pm4_state *state, struct si_screen *sscreen,
 
60
                        bool is_compute_queue);
74
61
void si_pm4_free_state(struct si_context *sctx, struct si_pm4_state *state, unsigned idx);
75
62
 
76
63
void si_pm4_emit(struct si_context *sctx, struct si_pm4_state *state);
77
64
void si_pm4_reset_emitted(struct si_context *sctx);
 
65
struct si_pm4_state *si_pm4_create_sized(struct si_screen *sscreen, unsigned max_dw,
 
66
                                         bool is_compute_queue);
 
67
struct si_pm4_state *si_pm4_clone(struct si_pm4_state *orig);
78
68
 
79
69
#ifdef __cplusplus
80
70
}