From: Jan Maslak <jan.maslak@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: zbigniew.kempczynski@intel.com, Jan Maslak <jan.maslak@intel.com>
Subject: [PATCH v6 10/11] lib/rendercopy: Convert render op and entry points to genxml
Date: Mon, 13 Jul 2026 15:37:45 +0200 [thread overview]
Message-ID: <20260713133746.453051-11-jan.maslak@intel.com> (raw)
In-Reply-To: <20260713133746.453051-1-jan.maslak@intel.com>
Update _gen9_render_op() and the public render/clear entry points to use
igt_genxml_emit macros backed by the genxml pack headers.
Signed-off-by: Jan Maslak <jan.maslak@intel.com>
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
lib/rendercopy_gen9.c | 53 ++++++++++++++++++++++++-------------------
1 file changed, 30 insertions(+), 23 deletions(-)
diff --git a/lib/rendercopy_gen9.c b/lib/rendercopy_gen9.c
index b20b128c48..31913badba 100644
--- a/lib/rendercopy_gen9.c
+++ b/lib/rendercopy_gen9.c
@@ -26,7 +26,6 @@
#include "igt_aux.h"
#include "intel_chipset.h"
#include "intel/genxml/igt_genxml.h"
-#include "gen9_render.h"
#include "gen90_pack.h"
#include "gen110_pack.h"
#include "gen120_pack.h"
@@ -1238,8 +1237,13 @@ void _gen9_render_op(struct intel_bb *ibb,
/* Start emitting the commands. The order roughly follows the mesa blorp
* order */
- intel_bb_out(ibb, G4X_PIPELINE_SELECT | PIPELINE_SELECT_3D |
- GEN9_PIPELINE_SELECTION_MASK);
+ igt_genxml_emit(ibb, GFX9_PIPELINE_SELECT, ps) {
+ ps.PipelineSelection = GFX9_3D;
+ /* MaskBits 15:8 is a write-enable mask for bits 5:4 (Force Media
+ * Awake and Media Sampler DOP Clock Gate Enable). Value 0x3
+ * enables writes to both bits so PipelineSelection takes effect. */
+ ps.MaskBits = 3;
+ }
gen12_emit_aux_pgtable_state(ibb, aux_pgtable_state, true);
@@ -1270,17 +1274,21 @@ void _gen9_render_op(struct intel_bb *ibb,
gen9_emit_state_base_address(ibb);
if (HAS_4TILE(ibb->devid) || intel_gen(ibb->devid) > 12) {
- intel_bb_out(ibb, GEN4_3DSTATE_BINDING_TABLE_POOL_ALLOC | 2);
- intel_bb_emit_reloc(ibb, ibb->handle,
- I915_GEM_DOMAIN_RENDER | I915_GEM_DOMAIN_INSTRUCTION, 0,
- 0, ibb->batch_offset);
- intel_bb_out(ibb, 1 << 12);
+ igt_genxml_emit(ibb, GFX9_3DSTATE_BINDING_TABLE_POOL_ALLOC, btpa) {
+ btpa.MOCS = intel_get_wb_mocs(ibb->fd);
+ btpa.BindingTablePoolBaseAddress =
+ igt_address_of_batch(ibb,
+ I915_GEM_DOMAIN_RENDER | I915_GEM_DOMAIN_INSTRUCTION, 0);
+ btpa.BindingTablePoolBufferSize = 1;
+ }
}
- intel_bb_out(ibb, GEN7_3DSTATE_VIEWPORT_STATE_POINTERS_CC);
- intel_bb_out(ibb, viewport.cc_state);
- intel_bb_out(ibb, GEN8_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP);
- intel_bb_out(ibb, viewport.sf_clip_state);
+ igt_genxml_emit(ibb, GFX9_3DSTATE_VIEWPORT_STATE_POINTERS_CC, vp) {
+ vp.CCViewportPointer = viewport.cc_state;
+ }
+ igt_genxml_emit(ibb, GFX9_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP, vp) {
+ vp.SFClipViewportPointer = viewport.sf_clip_state;
+ }
gen7_emit_urb(ibb);
@@ -1290,11 +1298,7 @@ void _gen9_render_op(struct intel_bb *ibb,
gen8_emit_null_state(ibb);
- intel_bb_out(ibb, GEN7_3DSTATE_STREAMOUT | (5 - 2));
- intel_bb_out(ibb, 0);
- intel_bb_out(ibb, 0);
- intel_bb_out(ibb, 0);
- intel_bb_out(ibb, 0);
+ igt_genxml_emit(ibb, GFX9_3DSTATE_STREAMOUT, so) { }
gen7_emit_clip(ibb);
@@ -1302,14 +1306,17 @@ void _gen9_render_op(struct intel_bb *ibb,
gen8_emit_ps(ibb, ps_kernel_off, fast_clear);
- intel_bb_out(ibb, GEN7_3DSTATE_BINDING_TABLE_POINTERS_PS);
- intel_bb_out(ibb, ps_binding_table);
+ igt_genxml_emit(ibb, GFX9_3DSTATE_BINDING_TABLE_POINTERS_PS, bt) {
+ bt.PointertoPSBindingTable = ps_binding_table;
+ }
- intel_bb_out(ibb, GEN7_3DSTATE_SAMPLER_STATE_POINTERS_PS);
- intel_bb_out(ibb, ps_sampler_state);
+ igt_genxml_emit(ibb, GFX9_3DSTATE_SAMPLER_STATE_POINTERS_PS, sp) {
+ sp.PointertoPSSamplerState = ps_sampler_state;
+ }
- intel_bb_out(ibb, GEN8_3DSTATE_SCISSOR_STATE_POINTERS);
- intel_bb_out(ibb, scissor_state);
+ igt_genxml_emit(ibb, GFX9_3DSTATE_SCISSOR_STATE_POINTERS, ssp) {
+ ssp.ScissorRectPointer = scissor_state;
+ }
gen9_emit_depth(ibb);
--
2.43.0
next prev parent reply other threads:[~2026-07-13 13:40 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-13 13:37 [PATCH v6 00/11] lib/genxml: Introduce Mesa genxml infrastructure to IGT Jan Maslak
2026-07-13 13:37 ` [PATCH v6 01/11] lib/intel/genxml: Add genxml generators, headers, and build integration Jan Maslak
2026-07-13 13:37 ` [PATCH v6 04/11] lib/intel/genxml: Import Xe2/Xe3/Xe3p XML hardware definitions from Mesa Jan Maslak
2026-07-13 13:37 ` [PATCH v6 05/11] lib/intel_bufops: Add intel_buf_mocs() helper Jan Maslak
2026-07-13 13:37 ` [PATCH v6 06/11] lib/mocs: Add packed MOCS helpers Jan Maslak
2026-07-13 13:37 ` [PATCH v6 07/11] lib/rendercopy: Convert surface state and sampler setup to genxml Jan Maslak
2026-07-13 13:37 ` [PATCH v6 08/11] lib/rendercopy: Convert vertex data and CC state " Jan Maslak
2026-07-13 13:37 ` [PATCH v6 09/11] lib/rendercopy: Convert pipeline emit commands " Jan Maslak
2026-07-16 9:50 ` Zbigniew Kempczyński
2026-07-13 13:37 ` Jan Maslak [this message]
2026-07-13 13:37 ` [PATCH v6 11/11] lib: Add genxml annotated batch buffer decode Jan Maslak
2026-07-16 10:54 ` Kamil Konieczny
2026-07-13 19:14 ` ✓ Xe.CI.BAT: success for lib/genxml: Introduce Mesa genxml infrastructure to IGT (rev7) Patchwork
2026-07-13 19:31 ` ✓ i915.CI.BAT: " Patchwork
2026-07-13 22:59 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-07-14 4:08 ` ✓ i915.CI.Full: success " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260713133746.453051-11-jan.maslak@intel.com \
--to=jan.maslak@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=zbigniew.kempczynski@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox