* [igt-dev] [PATCH i-g-t 1/2] lib/panfrost: Add support for SFBD to igt_panfrost_trivial_job
@ 2019-06-12 6:55 Tomeu Vizoso
2019-06-12 6:55 ` [igt-dev] [PATCH i-g-t 2/2] tests/panfrost: Fix couple of things so submit tests work on T720 Tomeu Vizoso
2019-06-12 7:52 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] lib/panfrost: Add support for SFBD to igt_panfrost_trivial_job Patchwork
0 siblings, 2 replies; 3+ messages in thread
From: Tomeu Vizoso @ 2019-06-12 6:55 UTC (permalink / raw)
To: Development mailing list for IGT GPU Tools; +Cc: Tomeu Vizoso, dri-devel
T720 GPUs and older don't have support for MFBD, so use the SFBD structs
instead.
We don't know yet how to hang the GPU with SFBD descriptors, so for now
skip that test.
Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
---
lib/igt_panfrost.c | 71 +++++++++++++++++++++++++++++++++-------------
lib/igt_panfrost.h | 2 +-
2 files changed, 53 insertions(+), 20 deletions(-)
diff --git a/lib/igt_panfrost.c b/lib/igt_panfrost.c
index 1046c8260552..8b0c2b7743ea 100644
--- a/lib/igt_panfrost.c
+++ b/lib/igt_panfrost.c
@@ -127,22 +127,19 @@ void igt_panfrost_bo_mmap(int fd, struct panfrost_bo *bo)
igt_assert(bo->map);
}
-/* TODO: Make this more generic so it works on GPUs other than T760 */
struct panfrost_submit *igt_panfrost_trivial_job(int fd, bool do_crash, int width, int height, uint32_t color)
{
struct panfrost_submit *submit;
struct mali_job_descriptor_header header = {
.job_type = JOB_TYPE_FRAGMENT,
.job_index = 1,
-#ifdef __LP64__
.job_descriptor_size = 1,
-#endif
};
struct mali_payload_fragment payload = {
.min_tile_coord = MALI_COORDINATE_TO_TILE_MIN(0, 0),
.max_tile_coord = MALI_COORDINATE_TO_TILE_MAX(ALIGN(width, 16), height),
};
- struct bifrost_framebuffer framebuffer = {
+ struct bifrost_framebuffer mfbd_framebuffer = {
.unk0 = 0x0,
.unknown1 = 0x0,
.tiler_meta = 0xff00000000,
@@ -159,6 +156,20 @@ struct panfrost_submit *igt_panfrost_trivial_job(int fd, bool do_crash, int widt
.clear_depth = 0.000000,
.unknown2 = 0x1f,
};
+ struct mali_single_framebuffer sfbd_framebuffer = {
+ .unknown2 = 0x1f,
+ .width = MALI_POSITIVE(width),
+ .height = MALI_POSITIVE(height),
+ .stride = width * 4,
+ .resolution_check = ((width + height) / 3) << 4,
+ .tiler_flags = 0xfff,
+ .clear_color_1 = color,
+ .clear_color_2 = color,
+ .clear_color_3 = color,
+ .clear_color_4 = color,
+ .clear_flags = 0x101100 | MALI_CLEAR_SLOW,
+ .format = 0xb84e0281,
+ };
struct mali_rt_format fmt = {
.unk1 = 0x4000000,
.unk2 = 0x1,
@@ -179,31 +190,53 @@ struct panfrost_submit *igt_panfrost_trivial_job(int fd, bool do_crash, int widt
.clear_color_3 = color,
.clear_color_4 = color,
};
+ int gpu_prod_id = igt_panfrost_get_param(fd, DRM_PANFROST_PARAM_GPU_PROD_ID);
+ uint32_t *known_unknown;
uint32_t *bos;
submit = malloc(sizeof(*submit));
submit->fbo = igt_panfrost_gem_new(fd, ALIGN(width, 16) * height * 4);
rts.framebuffer = submit->fbo->offset;
+ sfbd_framebuffer.framebuffer = submit->fbo->offset;
- submit->tiler_heap_bo = igt_panfrost_gem_new(fd, 32768 * 4096);
- framebuffer.tiler_heap_start = submit->tiler_heap_bo->offset;
- framebuffer.tiler_heap_end = submit->tiler_heap_bo->offset + 32768 * 4096;
+ submit->tiler_heap_bo = igt_panfrost_gem_new(fd, 32768 * 128);
+ mfbd_framebuffer.tiler_heap_start = submit->tiler_heap_bo->offset;
+ mfbd_framebuffer.tiler_heap_end = submit->tiler_heap_bo->offset + 32768 * 128;
+ sfbd_framebuffer.tiler_heap_free = mfbd_framebuffer.tiler_heap_start;
+ sfbd_framebuffer.tiler_heap_end = mfbd_framebuffer.tiler_heap_end;
- submit->tiler_scratch_bo = igt_panfrost_gem_new(fd, 128 * 128 * 4096);
- framebuffer.tiler_scratch_start = submit->tiler_scratch_bo->offset;
- framebuffer.tiler_scratch_middle = submit->tiler_scratch_bo->offset + 0xf0000;
+ submit->tiler_scratch_bo = igt_panfrost_gem_new(fd, 128 * 128 * 128);
+ mfbd_framebuffer.tiler_scratch_start = submit->tiler_scratch_bo->offset;
+ mfbd_framebuffer.tiler_scratch_middle = submit->tiler_scratch_bo->offset + 0xf0000;
+ sfbd_framebuffer.unknown_address_0 = mfbd_framebuffer.tiler_scratch_start;
submit->scratchpad_bo = igt_panfrost_gem_new(fd, 64 * 4096);
- framebuffer.scratchpad = submit->scratchpad_bo->offset;
-
- submit->fb_bo = igt_panfrost_gem_new(fd, sizeof(framebuffer) + sizeof(struct bifrost_render_target));
- igt_panfrost_bo_mmap(fd, submit->fb_bo);
- memcpy(submit->fb_bo->map, &framebuffer, sizeof(framebuffer));
- memcpy(submit->fb_bo->map + sizeof(framebuffer), &rts, sizeof(struct bifrost_render_target));
- payload.framebuffer = submit->fb_bo->offset | MALI_MFBD;
-
- submit->submit_bo = igt_panfrost_gem_new(fd, sizeof(header) + sizeof(payload));
+ igt_panfrost_bo_mmap(fd, submit->scratchpad_bo);
+ mfbd_framebuffer.scratchpad = submit->scratchpad_bo->offset;
+ sfbd_framebuffer.unknown_address_1 = submit->scratchpad_bo->offset;
+ sfbd_framebuffer.unknown_address_2 = submit->scratchpad_bo->offset + 512;
+
+ known_unknown = ((void*)submit->scratchpad_bo->map) + 512;
+ *known_unknown = 0xa0000000;
+
+ if (gpu_prod_id >= 0x0750) {
+ submit->fb_bo = igt_panfrost_gem_new(fd, sizeof(mfbd_framebuffer) + sizeof(struct bifrost_render_target));
+ igt_panfrost_bo_mmap(fd, submit->fb_bo);
+ memcpy(submit->fb_bo->map, &mfbd_framebuffer, sizeof(mfbd_framebuffer));
+ memcpy(submit->fb_bo->map + sizeof(mfbd_framebuffer), &rts, sizeof(struct bifrost_render_target));
+ payload.framebuffer = submit->fb_bo->offset | MALI_MFBD;
+ } else {
+ // We don't know yet how to cause a hang on <=T720
+ // Should probably use an infinite loop to hang the GPU
+ igt_require(!do_crash);
+ submit->fb_bo = igt_panfrost_gem_new(fd, sizeof(sfbd_framebuffer));
+ igt_panfrost_bo_mmap(fd, submit->fb_bo);
+ memcpy(submit->fb_bo->map, &sfbd_framebuffer, sizeof(sfbd_framebuffer));
+ payload.framebuffer = submit->fb_bo->offset | MALI_SFBD;
+ }
+
+ submit->submit_bo = igt_panfrost_gem_new(fd, sizeof(header) + sizeof(payload) + 1024000);
igt_panfrost_bo_mmap(fd, submit->submit_bo);
memcpy(submit->submit_bo->map, &header, sizeof(header));
diff --git a/lib/igt_panfrost.h b/lib/igt_panfrost.h
index a33327e39736..cc7998dcb4bf 100644
--- a/lib/igt_panfrost.h
+++ b/lib/igt_panfrost.h
@@ -29,7 +29,7 @@
struct panfrost_bo {
int handle;
- uint32_t offset;
+ uint64_t offset;
uint32_t size;
void *map;
};
--
2.20.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/panfrost: Fix couple of things so submit tests work on T720
2019-06-12 6:55 [igt-dev] [PATCH i-g-t 1/2] lib/panfrost: Add support for SFBD to igt_panfrost_trivial_job Tomeu Vizoso
@ 2019-06-12 6:55 ` Tomeu Vizoso
2019-06-12 7:52 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] lib/panfrost: Add support for SFBD to igt_panfrost_trivial_job Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Tomeu Vizoso @ 2019-06-12 6:55 UTC (permalink / raw)
To: Development mailing list for IGT GPU Tools; +Cc: Tomeu Vizoso, dri-devel
Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
---
tests/panfrost_submit.c | 26 ++++++++++++++++++++++----
1 file changed, 22 insertions(+), 4 deletions(-)
diff --git a/tests/panfrost_submit.c b/tests/panfrost_submit.c
index 5770dc24a42b..13ce85b73d9e 100644
--- a/tests/panfrost_submit.c
+++ b/tests/panfrost_submit.c
@@ -34,10 +34,11 @@
#include <errno.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
+#include "panfrost-job.h"
#include "panfrost_drm.h"
-#define WIDTH 1366
-#define HEIGHT 768
+#define WIDTH 1920
+#define HEIGHT 1080
#define CLEAR_COLOR 0xff7f7f7f
/* One tenth of a second */
@@ -56,14 +57,30 @@ abs_timeout(uint64_t duration)
return (uint64_t)current.tv_sec * NSECS_PER_SEC + current.tv_nsec + duration;
}
+static void check_error(int fd, struct panfrost_submit *submit)
+{
+ struct mali_job_descriptor_header *header;
+
+ header = submit->submit_bo->map;
+ igt_assert_eq_u64(header->fault_pointer, 0);
+}
+
static void check_fb(int fd, struct panfrost_bo *bo)
{
+ int gpu_prod_id = igt_panfrost_get_param(fd, DRM_PANFROST_PARAM_GPU_PROD_ID);
__uint32_t *fbo;
int i;
fbo = bo->map;
- for (i = 0; i < ALIGN(WIDTH, 16) * HEIGHT; i++)
- igt_assert_eq_u32(fbo[i], CLEAR_COLOR);
+
+ if (gpu_prod_id >= 0x0750) {
+ for (i = 0; i < ALIGN(WIDTH, 16) * HEIGHT; i++)
+ igt_assert_eq_u32(fbo[i], CLEAR_COLOR);
+ } else {
+ // Mask the alpha away because on <=T720 we don't know how to have it
+ for (i = 0; i < ALIGN(WIDTH, 16) * HEIGHT; i++)
+ igt_assert_eq_u32(fbo[i], CLEAR_COLOR & 0x00ffffff);
+ }
}
igt_main
@@ -84,6 +101,7 @@ igt_main
do_ioctl(fd, DRM_IOCTL_PANFROST_SUBMIT, submit->args);
igt_assert(syncobj_wait(fd, &submit->args->out_sync, 1,
abs_timeout(SHORT_TIME_NSEC), 0, NULL));
+ check_error(fd, submit);
check_fb(fd, submit->fbo);
igt_panfrost_free_job(fd, submit);
}
--
2.20.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] lib/panfrost: Add support for SFBD to igt_panfrost_trivial_job
2019-06-12 6:55 [igt-dev] [PATCH i-g-t 1/2] lib/panfrost: Add support for SFBD to igt_panfrost_trivial_job Tomeu Vizoso
2019-06-12 6:55 ` [igt-dev] [PATCH i-g-t 2/2] tests/panfrost: Fix couple of things so submit tests work on T720 Tomeu Vizoso
@ 2019-06-12 7:52 ` Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2019-06-12 7:52 UTC (permalink / raw)
To: Tomeu Vizoso; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/panfrost: Add support for SFBD to igt_panfrost_trivial_job
URL : https://patchwork.freedesktop.org/series/61937/
State : failure
== Summary ==
Series 61937 revision 1 was fully merged or fully failed: no git log
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-06-12 7:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-12 6:55 [igt-dev] [PATCH i-g-t 1/2] lib/panfrost: Add support for SFBD to igt_panfrost_trivial_job Tomeu Vizoso
2019-06-12 6:55 ` [igt-dev] [PATCH i-g-t 2/2] tests/panfrost: Fix couple of things so submit tests work on T720 Tomeu Vizoso
2019-06-12 7:52 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] lib/panfrost: Add support for SFBD to igt_panfrost_trivial_job Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox