diff options
author | Rob Clark <[email protected]> | 2016-01-18 15:22:27 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-01-18 16:58:25 -0500 |
commit | 6062941e4dd441bb67d5db760b87ffc0509befb7 (patch) | |
tree | 6c65747d9bc0b21724d17e64f3ad7529b88adf3b /src/gallium/drivers/freedreno/freedreno_context.h | |
parent | c03f3dd0a518a53598dcfd1ac19a453bfebcb71a (diff) |
freedreno: per-generation OUT_IB packet
Some a4xx firmware doesn't implement the "PFD" (prefetch-disabled)
version of the CP_INDIRECT_BUFFER packet. So allow for PFD vs PFE per
generation. Switch a3xx and a4xx over to using prefetch-enabled version
(which is also what blob does.. it seems only on a2xx we cannot use
PFE).
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_context.h')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_context.h b/src/gallium/drivers/freedreno/freedreno_context.h index 418b71b95de..9e7130ab915 100644 --- a/src/gallium/drivers/freedreno/freedreno_context.h +++ b/src/gallium/drivers/freedreno/freedreno_context.h @@ -386,6 +386,10 @@ struct fd_context { const uint32_t *dwords, struct pipe_resource *prsc); void (*emit_const_bo)(struct fd_ringbuffer *ring, enum shader_t type, boolean write, uint32_t regid, uint32_t num, struct fd_bo **bos, uint32_t *offsets); + + /* indirect-branch emit: */ + void (*emit_ib)(struct fd_ringbuffer *ring, struct fd_ringmarker *start, + struct fd_ringmarker *end); }; static inline struct fd_context * |