From: "Grzegorzek, Dominik" <dominik.grzegorzek@intel.com>
To: "Piatkowski, Dominik Karol" <dominik.karol.piatkowski@intel.com>,
"igt-dev@lists.freedesktop.org" <igt-dev@lists.freedesktop.org>
Subject: Re: [PATCH i-g-t 1/1] lib/gpu_cmds: Fix hardcoded buffer size
Date: Tue, 25 Jun 2024 08:44:04 +0000 [thread overview]
Message-ID: <8727ec4e0b1347fe03070f5f6b9ee1401b43cd7d.camel@intel.com> (raw)
In-Reply-To: <20240624113949.6846-2-dominik.karol.piatkowski@intel.com>
On Mon, 2024-06-24 at 13:39 +0200, Dominik Karol Piatkowski wrote:
> This patch enables buffers larger than one page to be successfully
> submitted, allowing for large shader execution.
> Based on the find by Dominik Grzegorzek.
>
> Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
> ---
> lib/gpu_cmds.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/lib/gpu_cmds.c b/lib/gpu_cmds.c
> index 378fa9166..4f2781e7c 100644
> --- a/lib/gpu_cmds.c
> +++ b/lib/gpu_cmds.c
> @@ -566,13 +566,13 @@ gen8_emit_state_base_address(struct intel_bb *ibb)
> /* general state buffer size */
> intel_bb_out(ibb, 0xfffff000 | 1);
> /* dynamic state buffer size */
> - intel_bb_out(ibb, 1 << 12 | 1);
> + intel_bb_out(ibb, ibb->size | 1);
The size is in 4K pages. ibb should be already aligned, but anyway I would make it:
intel_bb_out(ibb, ALIGN(ibb->size, 1 << 12) | 1);
With that, you can add mine:
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Please also review the premerge results, whether failures are not caused by this patch.
Thanks,
Dominik
> /* indirect object buffer size */
> intel_bb_out(ibb, 0xfffff000 | 1);
> /* instruction buffer size, must set modify enable bit, otherwise it may
> * result in GPU hang
> */
> - intel_bb_out(ibb, 1 << 12 | 1);
> + intel_bb_out(ibb, ibb->size | 1);
> }
>
> void
> @@ -610,13 +610,13 @@ gen9_emit_state_base_address(struct intel_bb *ibb)
> /* general state buffer size */
> intel_bb_out(ibb, 0xfffff000 | 1);
> /* dynamic state buffer size */
> - intel_bb_out(ibb, 1 << 12 | 1);
> + intel_bb_out(ibb, ibb->size | 1);
> /* indirect object buffer size */
> intel_bb_out(ibb, 0xfffff000 | 1);
> /* intruction buffer size, must set modify enable bit, otherwise it may
> * result in GPU hang
> */
> - intel_bb_out(ibb, 1 << 12 | 1);
> + intel_bb_out(ibb, ibb->size | 1);
>
> /* Bindless surface state base address */
> intel_bb_out(ibb, 0 | BASE_ADDRESS_MODIFY);
> @@ -1026,14 +1026,14 @@ xehp_emit_state_base_address(struct intel_bb *ibb)
> /* general state buffer size */
> intel_bb_out(ibb, 0xfffff000 | 1); //dw12
> /* dynamic state buffer size */
> - intel_bb_out(ibb, 1 << 12 | 1); //dw13
> + intel_bb_out(ibb, ibb->size | 1); //dw13
> /* indirect object buffer size */
> if (intel_graphics_ver(ibb->devid) >= IP_VER(20, 0)) //dw14
> intel_bb_out(ibb, 0);
> else
> intel_bb_out(ibb, 0xfffff000 | 1);
> /* intruction buffer size */
> - intel_bb_out(ibb, 1 << 12 | 1); //dw15
> + intel_bb_out(ibb, ibb->size | 1); //dw15
>
> /* Bindless surface state base address */
> intel_bb_out(ibb, 0 | BASE_ADDRESS_MODIFY); //dw16
next prev parent reply other threads:[~2024-06-25 8:44 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-24 11:39 [PATCH i-g-t 0/1] lib/gpu_cmds: Fix hardcoded buffer size Dominik Karol Piatkowski
2024-06-24 11:39 ` [PATCH i-g-t 1/1] " Dominik Karol Piatkowski
2024-06-25 8:44 ` Grzegorzek, Dominik [this message]
2024-06-24 14:11 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-06-24 14:16 ` ✓ CI.xeBAT: " Patchwork
2024-06-24 17:24 ` ✗ CI.xeFULL: failure " Patchwork
2024-06-25 12:31 ` [PATCH i-g-t 0/2] " Dominik Karol Piatkowski
2024-06-25 12:31 ` [PATCH i-g-t 1/2] " Dominik Karol Piatkowski
2024-06-25 12:31 ` [PATCH i-g-t 2/2] lib/gpu_cmds: Typo fix Dominik Karol Piatkowski
2024-06-26 11:33 ` Grzegorzek, Dominik
2024-06-25 12:55 ` ✗ Fi.CI.BUILD: failure for lib/gpu_cmds: Fix hardcoded buffer size Patchwork
2024-06-25 13:29 ` ✗ Fi.CI.IGT: " 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=8727ec4e0b1347fe03070f5f6b9ee1401b43cd7d.camel@intel.com \
--to=dominik.grzegorzek@intel.com \
--cc=dominik.karol.piatkowski@intel.com \
--cc=igt-dev@lists.freedesktop.org \
/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