<div dir="ltr">Hello,<div>please, advise: do we need such Intel-specific test? </div><div>Or there is no sense in spending time on similar cases?</div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Oct 24, 2018 at 8:49 PM Mark Janes <<a href="mailto:mark.a.janes@intel.com">mark.a.janes@intel.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Tested-by: Mark Janes <<a href="mailto:mark.a.janes@intel.com" target="_blank">mark.a.janes@intel.com</a>><br>
<br>
Sergii Romantsov <<a href="mailto:sergii.romantsov@gmail.com" target="_blank">sergii.romantsov@gmail.com</a>> writes:<br>
<br>
> Intel ppgtt-model requires memory addresses to be aligned by page size.<br>
> Test explores cases with cached memory-buckets and sizes above cached.<br>
><br>
> CC: Kenneth Graunke <<a href="mailto:kenneth@whitecape.org" target="_blank">kenneth@whitecape.org</a>><br>
> CC: Lionel G Landwerlin <<a href="mailto:lionel.g.landwerlin@intel.com" target="_blank">lionel.g.landwerlin@intel.com</a>><br>
> CC: Chris Wilson <<a href="mailto:chris@chris-wilson.co.uk" target="_blank">chris@chris-wilson.co.uk</a>><br>
> Bugzilla: <a href="https://bugs.freedesktop.org/show_bug.cgi?id=106997" rel="noreferrer" target="_blank">https://bugs.freedesktop.org/show_bug.cgi?id=106997</a><br>
> Tests: 24839663a402 (intel/ppgtt: memory address alignment)<br>
> Tests: a363bb2cd0e2 (i965: Allocate VMA in userspace for full-PPGTT systems.)<br>
> Signed-off-by: Sergii Romantsov <<a href="mailto:sergii.romantsov@globallogic.com" target="_blank">sergii.romantsov@globallogic.com</a>><br>
> ---<br>
>  tests/general/CMakeLists.gl.txt        |   1 +<br>
>  tests/general/ppgtt_memory_alignment.c | 124 +++++++++++++++++++++++++++++++++<br>
>  tests/opengl.py                        |   1 +<br>
>  3 files changed, 126 insertions(+)<br>
>  create mode 100644 tests/general/ppgtt_memory_alignment.c<br>
><br>
> diff --git a/tests/general/CMakeLists.gl.txt b/tests/general/CMakeLists.gl.txt<br>
> index 83189fc..7b43f84 100644<br>
> --- a/tests/general/CMakeLists.gl.txt<br>
> +++ b/tests/general/CMakeLists.gl.txt<br>
> @@ -91,6 +91,7 @@ piglit_add_executable (polygon-mode-offset polygon-mode-offset.c)<br>
>  piglit_add_executable (polygon-mode-facing polygon-mode-facing.c)<br>
>  piglit_add_executable (polygon-mode polygon-mode.c)<br>
>  piglit_add_executable (polygon-offset polygon-offset.c)<br>
> +piglit_add_executable (ppgtt_memory_alignment ppgtt_memory_alignment.c)<br>
>  piglit_add_executable (primitive-restart primitive-restart.c)<br>
>  piglit_add_executable (primitive-restart-draw-mode primitive-restart-draw-mode.c)<br>
>  piglit_add_executable (provoking-vertex provoking-vertex.c)<br>
> diff --git a/tests/general/ppgtt_memory_alignment.c b/tests/general/ppgtt_memory_alignment.c<br>
> new file mode 100644<br>
> index 0000000..b5db532<br>
> --- /dev/null<br>
> +++ b/tests/general/ppgtt_memory_alignment.c<br>
> @@ -0,0 +1,124 @@<br>
> +/*<br>
> + * Copyright © 2018 Sergii Romantsov (<<a href="mailto:sergii.romantsov@gmail.com" target="_blank">sergii.romantsov@gmail.com</a>>)<br>
> + *<br>
> + * Permission is hereby granted, free of charge, to any person obtaining a<br>
> + * copy of this software and associated documentation files (the "Software"),<br>
> + * to deal in the Software without restriction, including without limitation<br>
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,<br>
> + * and/or sell copies of the Software, and to permit persons to whom the<br>
> + * Software is furnished to do so, subject to the following conditions:<br>
> + *<br>
> + * The above copyright notice and this permission notice (including the next<br>
> + * paragraph) shall be included in all copies or substantial portions of the<br>
> + * Software.<br>
> + *<br>
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR<br>
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,<br>
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL<br>
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER<br>
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING<br>
> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS<br>
> + * IN THE SOFTWARE.<br>
> + *<br>
> + *  Created on: Oct 11, 2018<br>
> + *      Author: Sergii Romantsov<br>
> + *<br>
> + *  Bugzilla: <a href="https://bugs.freedesktop.org/show_bug.cgi?id=106997" rel="noreferrer" target="_blank">https://bugs.freedesktop.org/show_bug.cgi?id=106997</a><br>
> + *  Tests: 24839663a402 (intel/ppgtt: memory address alignment)<br>
> + *  Tests: a363bb2cd0e2 (i965: Allocate VMA in userspace for full-PPGTT systems.)<br>
> + */<br>
> +<br>
> +<br>
> +#include "piglit-util-gl.h"<br>
> +#include "unistd.h"<br>
> +<br>
> +PIGLIT_GL_TEST_CONFIG_BEGIN<br>
> +<br>
> +     config.supports_gl_compat_version = 10;<br>
> +<br>
> +     config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE;<br>
> +     config.requires_displayed_window = true;<br>
> +<br>
> +PIGLIT_GL_TEST_CONFIG_END<br>
> +<br>
> +static enum piglit_result g_result = PIGLIT_FAIL;<br>
> +static GLuint g_cur_size = 0;<br>
> +static GLubyte *g_buffer = NULL;<br>
> +<br>
> +static void<br>
> +free_buffer(void)<br>
> +{<br>
> +     if (g_buffer)<br>
> +     {<br>
> +             free(g_buffer);<br>
> +             g_buffer = NULL;<br>
> +     }<br>
> +}<br>
> +<br>
> +static void<br>
> +test_fail_check(void)<br>
> +{<br>
> +     /* Intel: Function is needed to check fail-status of execution:<br>
> +      * currently if batch-buffer wasn't submitted than Mesa will exit application.<br>
> +      * Otherwise piglit_display has logic to detect fail across call glGetError.<br>
> +      */<br>
> +     if (g_result != PIGLIT_PASS)<br>
> +     {<br>
> +             fprintf(stderr, "Test failed for buffer size: %x \n", g_cur_size);<br>
> +             free_buffer();<br>
> +             piglit_report_result(g_result);<br>
> +     }<br>
> +}<br>
> +<br>
> +enum piglit_result<br>
> +piglit_display(void)<br>
> +{<br>
> +     /* Maximal value of cache-size supported by driver */<br>
> +     const GLsizei cache_max_size = 64 * 1024 * 1024;<br>
> +     const GLsizei cache_extra_size = cache_max_size * 16;<br>
> +     const unsigned int page_size = getpagesize();<br>
> +     const GLsizei size_inconsistency = page_size / 4 + 1;<br>
> +     GLsizei size = 0;<br>
> +     GLuint buf;<br>
> +     bool is_error = false;<br>
> +<br>
> +     if (!g_buffer)<br>
> +             g_buffer = calloc(sizeof(GLubyte), cache_extra_size);<br>
> +<br>
> +     glClearColor(0.5, 0.5, 0.5, 1.0);<br>
> +     glClear(GL_COLOR_BUFFER_BIT);<br>
> +<br>
> +     glGenBuffers(1, &buf);<br>
> +     glBindBuffer(GL_ARRAY_BUFFER, buf);<br>
> +<br>
> +     while (size < cache_extra_size)<br>
> +     {<br>
> +             glBufferData(GL_ARRAY_BUFFER, g_cur_size, g_buffer, GL_STATIC_DRAW);<br>
> +             glVertexAttribPointer(0, 3, GL_UNSIGNED_BYTE, GL_FALSE, 0, 0);<br>
> +             glEnableVertexAttribArray(0);<br>
> +<br>
> +             glDrawArrays(GL_TRIANGLES, 0, 1);<br>
> +             if (glGetError() != GL_NO_ERROR)<br>
> +                     is_error = true;<br>
> +<br>
> +             g_cur_size = size + size_inconsistency;<br>
> +             size = size ? size * 2 : page_size;<br>
> +<br>
> +             glFlush();<br>
> +             if (glGetError() != GL_NO_ERROR)<br>
> +                     is_error = true;<br>
> +     }<br>
> +<br>
> +     glDeleteBuffers(1, &buf);<br>
> +<br>
> +     free_buffer();<br>
> +<br>
> +     g_result = is_error ? PIGLIT_FAIL : PIGLIT_PASS;<br>
> +     return g_result;<br>
> +}<br>
> +<br>
> +void<br>
> +piglit_init(int argc, char **argv)<br>
> +{<br>
> +     atexit(test_fail_check);<br>
> +}<br>
> diff --git a/tests/opengl.py b/tests/opengl.py<br>
> index f7e408c..917c5a1 100644<br>
> --- a/tests/opengl.py<br>
> +++ b/tests/opengl.py<br>
> @@ -669,6 +669,7 @@ with profile.test_list.group_manager(<br>
>      g(['polygon-mode-facing'])<br>
>      g(['polygon-mode-offset'])<br>
>      g(['polygon-offset'])<br>
> +    g(['ppgtt_memory_alignment'])<br>
>      g(['push-pop-texture-state'])<br>
>      g(['quad-invariance'])<br>
>      g(['readpix-z'])<br>
> -- <br>
> 2.7.4<br>
><br>
> _______________________________________________<br>
> Piglit mailing list<br>
> <a href="mailto:Piglit@lists.freedesktop.org" target="_blank">Piglit@lists.freedesktop.org</a><br>
> <a href="https://lists.freedesktop.org/mailman/listinfo/piglit" rel="noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/piglit</a><br>
</blockquote></div>