2 * Copyright © 2011 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
29 #include <sys/types.h>
33 #include "libdrm_macros.h"
34 #include "intel_bufmgr.h"
35 #include "intel_chipset.h"
37 #define HW_OFFSET 0x12300000
42 fprintf(stderr, "usage:\n");
43 fprintf(stderr, " test_decode <batch>\n");
44 fprintf(stderr, " test_decode <batch> -dump\n");
49 read_file(const char *filename, void **ptr, size_t *size)
54 fd = open(filename, O_RDONLY);
56 errx(1, "couldn't open `%s'", filename);
60 errx(1, "couldn't stat `%s'", filename);
63 *ptr = drm_mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
64 if (*ptr == MAP_FAILED)
65 errx(1, "couldn't map `%s'", filename);
71 dump_batch(struct drm_intel_decode *ctx, const char *batch_filename)
76 read_file(batch_filename, &batch_ptr, &batch_size);
78 drm_intel_decode_set_batch_pointer(ctx, batch_ptr, HW_OFFSET,
80 drm_intel_decode_set_output_file(ctx, stdout);
82 drm_intel_decode(ctx);
86 compare_batch(struct drm_intel_decode *ctx, const char *batch_filename)
89 void *ptr, *ref_ptr, *batch_ptr;
90 #if HAVE_OPEN_MEMSTREAM
93 size_t ref_size, batch_size;
94 const char *ref_suffix = "-ref.txt";
97 ref_filename = malloc(strlen(batch_filename) + strlen(ref_suffix) + 1);
98 sprintf(ref_filename, "%s%s", batch_filename, ref_suffix);
100 /* Read the batch and reference. */
101 read_file(batch_filename, &batch_ptr, &batch_size);
102 read_file(ref_filename, &ref_ptr, &ref_size);
104 /* Set up our decode output in memory, because I don't want to
105 * figure out how to output to a file in a safe and sane way
106 * inside of an automake project's test infrastructure.
108 #if HAVE_OPEN_MEMSTREAM
109 out = open_memstream((char **)&ptr, &size);
111 fprintf(stderr, "platform lacks open_memstream, skipping.\n");
115 drm_intel_decode_set_batch_pointer(ctx, batch_ptr, HW_OFFSET,
117 drm_intel_decode_set_output_file(ctx, out);
119 drm_intel_decode(ctx);
121 if (strcmp(ref_ptr, ptr) != 0) {
122 fprintf(stderr, "Decode mismatch with reference `%s'.\n",
124 fprintf(stderr, "You can dump the new output using:\n");
125 fprintf(stderr, " test_decode \"%s\" -dump\n", batch_filename);
135 infer_devid(const char *batch_filename)
146 { "gen5", PCI_CHIP_ILD_G },
147 { "gen6", PCI_CHIP_SANDYBRIDGE_GT2 },
148 { "gen7", PCI_CHIP_IVYBRIDGE_GT2 },
154 for (i = 0; chipsets[i].name != NULL; i++) {
155 if (strstr(batch_filename, chipsets[i].name))
156 return chipsets[i].devid;
159 fprintf(stderr, "Couldn't guess chipset id from batch filename `%s'.\n",
161 fprintf(stderr, "Must be contain one of:\n");
162 for (i = 0; chipsets[i].name != NULL; i++) {
163 fprintf(stderr, " %s\n", chipsets[i].name);
169 main(int argc, char **argv)
172 struct drm_intel_decode *ctx;
178 devid = infer_devid(argv[1]);
180 ctx = drm_intel_decode_context_alloc(devid);
183 if (strcmp(argv[2], "-dump") == 0)
184 dump_batch(ctx, argv[1]);
188 compare_batch(ctx, argv[1]);
191 drm_intel_decode_context_free(ctx);