1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
/*
* Copyright © 2013 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*
* Authors:
* Damien Lespiau <damien.lespiau@intel.com>
* Xiang, Haihao <haihao.xiang@intel.com>
*/
/*
* This file is a basic test for the media_fill() function, a very simple
* workload for the Media pipeline.
*/
#include <stdbool.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <inttypes.h>
#include <errno.h>
#include <sys/stat.h>
#include <sys/time.h>
#include "drm.h"
#include "i915/gem.h"
#include "igt.h"
/**
* TEST: gem media fill
* Description: Basic test for the media_fill() function, a very simple workload for the Media pipeline.
* Category: Core
* Mega feature: Media
* Sub-category: Media tests
* Functionality: fill surface with media block
* Feature: media
*
* SUBTEST: media-fill
*/
IGT_TEST_DESCRIPTION("Basic test for the media_fill() function, a very simple"
" workload for the Media pipeline.");
#define WIDTH 64
#define STRIDE (WIDTH)
#define HEIGHT 64
#define SIZE (HEIGHT*STRIDE)
#define COLOR_C4 0xc4
#define COLOR_4C 0x4c
typedef struct {
int drm_fd;
uint32_t devid;
struct buf_ops *bops;
} data_t;
static struct intel_buf *
create_buf(data_t *data, int width, int height, uint8_t color, uint32_t region)
{
struct intel_buf *buf;
uint8_t *ptr;
int i;
buf = calloc(1, sizeof(*buf));
igt_assert(buf);
/*
* Legacy code uses 32 bpp after buffer creation.
* Let's do the same due to keep shader intact.
*/
intel_buf_init_in_region(data->bops, buf, width/4, height, 32, 0,
I915_TILING_NONE, 0, region);
ptr = gem_mmap__cpu_coherent(data->drm_fd, buf->handle, 0,
buf->surface[0].size, PROT_WRITE);
for (i = 0; i < buf->surface[0].size; i++)
ptr[i] = color;
munmap(ptr, buf->surface[0].size);
return buf;
}
static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
{
uint8_t val;
val = ptr[y * WIDTH + x];
igt_assert_f(val == color,
"Expected 0x%02x, found 0x%02x at (%d,%d)\n",
color, val, x, y);
}
static void media_fill(data_t *data, igt_fillfunc_t fill,
struct igt_collection *memregion_set)
{
struct intel_buf *buf;
uint32_t region;
uint8_t *ptr;
int i, j;
region = igt_collection_get_value(memregion_set, 0);
buf = create_buf(data, WIDTH, HEIGHT, COLOR_C4, region);
ptr = gem_mmap__device_coherent(data->drm_fd, buf->handle,
0, buf->surface[0].size, PROT_READ);
for (i = 0; i < WIDTH; i++)
for (j = 0; j < HEIGHT; j++)
buf_check(ptr, i, j, COLOR_C4);
fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
for (i = 0; i < WIDTH; i++)
for (j = 0; j < HEIGHT; j++)
if (i < WIDTH / 2 && j < HEIGHT / 2)
buf_check(ptr, i, j, COLOR_4C);
else
buf_check(ptr, i, j, COLOR_C4);
munmap(ptr, buf->surface[0].size);
}
igt_main
{
data_t data = {0, };
igt_fillfunc_t fill_fn = NULL;
struct drm_i915_query_memory_regions *query_info;
struct igt_collection *set, *region_set;
igt_fixture {
data.drm_fd = drm_open_driver_render(DRIVER_INTEL);
igt_require_gem(data.drm_fd);
data.devid = intel_get_drm_devid(data.drm_fd);
data.bops = buf_ops_create(data.drm_fd);
fill_fn = igt_get_media_fillfunc(data.devid);
igt_require_f(fill_fn, "no media-fill function\n");
query_info = gem_get_query_memory_regions(data.drm_fd);
igt_assert(query_info);
set = get_memory_region_set(query_info,
I915_SYSTEM_MEMORY,
I915_DEVICE_MEMORY);
igt_fork_hang_detector(data.drm_fd);
}
igt_subtest_with_dynamic("media-fill")
for_each_combination(region_set, 1, set) {
char *sub_name = memregion_dynamic_subtest_name(region_set);
igt_dynamic_f("%s", sub_name)
media_fill(&data, fill_fn, region_set);
free(sub_name);
}
igt_fixture {
igt_collection_destroy(set);
igt_stop_hang_detector();
drm_close_driver(data.drm_fd);
}
}
|