Contributors: 9
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Chris Wilson |
118 |
66.67% |
13 |
54.17% |
Xiang, Haihao |
20 |
11.30% |
1 |
4.17% |
Paulo Zanoni |
18 |
10.17% |
1 |
4.17% |
Tvrtko A. Ursulin |
7 |
3.95% |
3 |
12.50% |
Ben Widawsky |
4 |
2.26% |
2 |
8.33% |
Ville Syrjälä |
4 |
2.26% |
1 |
4.17% |
John Harrison |
3 |
1.69% |
1 |
4.17% |
Michal Wajdeczko |
2 |
1.13% |
1 |
4.17% |
Jonathan Gray |
1 |
0.56% |
1 |
4.17% |
Total |
177 |
|
24 |
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2020 Intel Corporation
*/
#ifndef __GEN2_ENGINE_CS_H__
#define __GEN2_ENGINE_CS_H__
#include <linux/types.h>
struct i915_request;
struct intel_engine_cs;
int gen2_emit_flush(struct i915_request *rq, u32 mode);
int gen4_emit_flush_rcs(struct i915_request *rq, u32 mode);
int gen4_emit_flush_vcs(struct i915_request *rq, u32 mode);
u32 *gen2_emit_breadcrumb(struct i915_request *rq, u32 *cs);
u32 *gen5_emit_breadcrumb(struct i915_request *rq, u32 *cs);
int i830_emit_bb_start(struct i915_request *rq,
u64 offset, u32 len,
unsigned int dispatch_flags);
int gen2_emit_bb_start(struct i915_request *rq,
u64 offset, u32 len,
unsigned int dispatch_flags);
int gen4_emit_bb_start(struct i915_request *rq,
u64 offset, u32 length,
unsigned int dispatch_flags);
void gen2_irq_enable(struct intel_engine_cs *engine);
void gen2_irq_disable(struct intel_engine_cs *engine);
void gen5_irq_enable(struct intel_engine_cs *engine);
void gen5_irq_disable(struct intel_engine_cs *engine);
#endif /* __GEN2_ENGINE_CS_H__ */