drm/i915: Allow some privileged commands from master
[deliverable/linux.git] / drivers / gpu / drm / i915 / i915_cmd_parser.c
CommitLineData
351e3db2
BV
1/*
2 * Copyright © 2013 Intel Corporation
3 *
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:
10 *
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
13 * Software.
14 *
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
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Brad Volkin <bradley.d.volkin@intel.com>
25 *
26 */
27
28#include "i915_drv.h"
29
30/**
31 * DOC: i915 batch buffer command parser
32 *
33 * Motivation:
34 * Certain OpenGL features (e.g. transform feedback, performance monitoring)
35 * require userspace code to submit batches containing commands such as
36 * MI_LOAD_REGISTER_IMM to access various registers. Unfortunately, some
37 * generations of the hardware will noop these commands in "unsecure" batches
38 * (which includes all userspace batches submitted via i915) even though the
39 * commands may be safe and represent the intended programming model of the
40 * device.
41 *
42 * The software command parser is similar in operation to the command parsing
43 * done in hardware for unsecure batches. However, the software parser allows
44 * some operations that would be noop'd by hardware, if the parser determines
45 * the operation is safe, and submits the batch as "secure" to prevent hardware
46 * parsing.
47 *
48 * Threats:
49 * At a high level, the hardware (and software) checks attempt to prevent
50 * granting userspace undue privileges. There are three categories of privilege.
51 *
52 * First, commands which are explicitly defined as privileged or which should
53 * only be used by the kernel driver. The parser generally rejects such
54 * commands, though it may allow some from the drm master process.
55 *
56 * Second, commands which access registers. To support correct/enhanced
57 * userspace functionality, particularly certain OpenGL extensions, the parser
58 * provides a whitelist of registers which userspace may safely access (for both
59 * normal and drm master processes).
60 *
61 * Third, commands which access privileged memory (i.e. GGTT, HWS page, etc).
62 * The parser always rejects such commands.
63 *
64 * The majority of the problematic commands fall in the MI_* range, with only a
65 * few specific commands on each ring (e.g. PIPE_CONTROL and MI_FLUSH_DW).
66 *
67 * Implementation:
68 * Each ring maintains tables of commands and registers which the parser uses in
69 * scanning batch buffers submitted to that ring.
70 *
71 * Since the set of commands that the parser must check for is significantly
72 * smaller than the number of commands supported, the parser tables contain only
73 * those commands required by the parser. This generally works because command
74 * opcode ranges have standard command length encodings. So for commands that
75 * the parser does not need to check, it can easily skip them. This is
76 * implementated via a per-ring length decoding vfunc.
77 *
78 * Unfortunately, there are a number of commands that do not follow the standard
79 * length encoding for their opcode range, primarily amongst the MI_* commands.
80 * To handle this, the parser provides a way to define explicit "skip" entries
81 * in the per-ring command tables.
82 *
83 * Other command table entries map fairly directly to high level categories
84 * mentioned above: rejected, master-only, register whitelist. The parser
85 * implements a number of checks, including the privileged memory checks, via a
86 * general bitmasking mechanism.
87 */
88
3a6fa984
BV
89#define STD_MI_OPCODE_MASK 0xFF800000
90#define STD_3D_OPCODE_MASK 0xFFFF0000
91#define STD_2D_OPCODE_MASK 0xFFC00000
92#define STD_MFX_OPCODE_MASK 0xFFFF0000
93
94#define CMD(op, opm, f, lm, fl, ...) \
95 { \
96 .flags = (fl) | ((f) ? CMD_DESC_FIXED : 0), \
97 .cmd = { (op), (opm) }, \
98 .length = { (lm) }, \
99 __VA_ARGS__ \
100 }
101
102/* Convenience macros to compress the tables */
103#define SMI STD_MI_OPCODE_MASK
104#define S3D STD_3D_OPCODE_MASK
105#define S2D STD_2D_OPCODE_MASK
106#define SMFX STD_MFX_OPCODE_MASK
107#define F true
108#define S CMD_DESC_SKIP
109#define R CMD_DESC_REJECT
110#define W CMD_DESC_REGISTER
111#define B CMD_DESC_BITMASK
112#define M CMD_DESC_MASTER
113
114/* Command Mask Fixed Len Action
115 ---------------------------------------------------------- */
116static const struct drm_i915_cmd_descriptor common_cmds[] = {
117 CMD( MI_NOOP, SMI, F, 1, S ),
118 CMD( MI_USER_INTERRUPT, SMI, F, 1, S ),
17c1eb15 119 CMD( MI_WAIT_FOR_EVENT, SMI, F, 1, M ),
3a6fa984
BV
120 CMD( MI_ARB_CHECK, SMI, F, 1, S ),
121 CMD( MI_REPORT_HEAD, SMI, F, 1, S ),
122 CMD( MI_SUSPEND_FLUSH, SMI, F, 1, S ),
9c640d1d
BV
123 CMD( MI_SEMAPHORE_MBOX, SMI, !F, 0xFF, R ),
124 CMD( MI_STORE_DWORD_INDEX, SMI, !F, 0xFF, R ),
125 CMD( MI_LOAD_REGISTER_IMM(1), SMI, !F, 0xFF, R ),
126 CMD( MI_STORE_REGISTER_MEM(1), SMI, !F, 0xFF, R ),
127 CMD( MI_LOAD_REGISTER_MEM, SMI, !F, 0xFF, R ),
3a6fa984
BV
128 CMD( MI_BATCH_BUFFER_START, SMI, !F, 0xFF, S ),
129};
130
131static const struct drm_i915_cmd_descriptor render_cmds[] = {
132 CMD( MI_FLUSH, SMI, F, 1, S ),
9c640d1d 133 CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
3a6fa984
BV
134 CMD( MI_PREDICATE, SMI, F, 1, S ),
135 CMD( MI_TOPOLOGY_FILTER, SMI, F, 1, S ),
9c640d1d
BV
136 CMD( MI_DISPLAY_FLIP, SMI, !F, 0xFF, R ),
137 CMD( MI_SET_CONTEXT, SMI, !F, 0xFF, R ),
3a6fa984 138 CMD( MI_URB_CLEAR, SMI, !F, 0xFF, S ),
9c640d1d 139 CMD( MI_UPDATE_GTT, SMI, !F, 0xFF, R ),
3a6fa984
BV
140 CMD( MI_CLFLUSH, SMI, !F, 0x3FF, S ),
141 CMD( MI_CONDITIONAL_BATCH_BUFFER_END, SMI, !F, 0xFF, S ),
142 CMD( GFX_OP_3DSTATE_VF_STATISTICS, S3D, F, 1, S ),
143 CMD( PIPELINE_SELECT, S3D, F, 1, S ),
144 CMD( GPGPU_OBJECT, S3D, !F, 0xFF, S ),
145 CMD( GPGPU_WALKER, S3D, !F, 0xFF, S ),
146 CMD( GFX_OP_3DSTATE_SO_DECL_LIST, S3D, !F, 0x1FF, S ),
147};
148
149static const struct drm_i915_cmd_descriptor hsw_render_cmds[] = {
150 CMD( MI_SET_PREDICATE, SMI, F, 1, S ),
151 CMD( MI_RS_CONTROL, SMI, F, 1, S ),
152 CMD( MI_URB_ATOMIC_ALLOC, SMI, F, 1, S ),
153 CMD( MI_RS_CONTEXT, SMI, F, 1, S ),
17c1eb15 154 CMD( MI_LOAD_SCAN_LINES_INCL, SMI, !F, 0x3F, M ),
9c640d1d
BV
155 CMD( MI_LOAD_SCAN_LINES_EXCL, SMI, !F, 0x3F, R ),
156 CMD( MI_LOAD_REGISTER_REG, SMI, !F, 0xFF, R ),
3a6fa984
BV
157 CMD( MI_RS_STORE_DATA_IMM, SMI, !F, 0xFF, S ),
158 CMD( MI_LOAD_URB_MEM, SMI, !F, 0xFF, S ),
159 CMD( MI_STORE_URB_MEM, SMI, !F, 0xFF, S ),
160 CMD( GFX_OP_3DSTATE_DX9_CONSTANTF_VS, S3D, !F, 0x7FF, S ),
161 CMD( GFX_OP_3DSTATE_DX9_CONSTANTF_PS, S3D, !F, 0x7FF, S ),
162
163 CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_VS, S3D, !F, 0x1FF, S ),
164 CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_GS, S3D, !F, 0x1FF, S ),
165 CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_HS, S3D, !F, 0x1FF, S ),
166 CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_DS, S3D, !F, 0x1FF, S ),
167 CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_PS, S3D, !F, 0x1FF, S ),
168};
169
170static const struct drm_i915_cmd_descriptor video_cmds[] = {
9c640d1d 171 CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
3a6fa984 172 CMD( MI_STORE_DWORD_IMM, SMI, !F, 0xFF, S ),
9c640d1d 173 CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
3a6fa984
BV
174 CMD( MI_CONDITIONAL_BATCH_BUFFER_END, SMI, !F, 0xFF, S ),
175 /*
176 * MFX_WAIT doesn't fit the way we handle length for most commands.
177 * It has a length field but it uses a non-standard length bias.
178 * It is always 1 dword though, so just treat it as fixed length.
179 */
180 CMD( MFX_WAIT, SMFX, F, 1, S ),
181};
182
183static const struct drm_i915_cmd_descriptor vecs_cmds[] = {
9c640d1d 184 CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
3a6fa984 185 CMD( MI_STORE_DWORD_IMM, SMI, !F, 0xFF, S ),
9c640d1d 186 CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
3a6fa984
BV
187 CMD( MI_CONDITIONAL_BATCH_BUFFER_END, SMI, !F, 0xFF, S ),
188};
189
190static const struct drm_i915_cmd_descriptor blt_cmds[] = {
9c640d1d 191 CMD( MI_DISPLAY_FLIP, SMI, !F, 0xFF, R ),
3a6fa984 192 CMD( MI_STORE_DWORD_IMM, SMI, !F, 0x3FF, S ),
9c640d1d 193 CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
3a6fa984
BV
194 CMD( COLOR_BLT, S2D, !F, 0x3F, S ),
195 CMD( SRC_COPY_BLT, S2D, !F, 0x3F, S ),
196};
197
9c640d1d 198static const struct drm_i915_cmd_descriptor hsw_blt_cmds[] = {
17c1eb15 199 CMD( MI_LOAD_SCAN_LINES_INCL, SMI, !F, 0x3F, M ),
9c640d1d
BV
200 CMD( MI_LOAD_SCAN_LINES_EXCL, SMI, !F, 0x3F, R ),
201};
202
3a6fa984
BV
203#undef CMD
204#undef SMI
205#undef S3D
206#undef S2D
207#undef SMFX
208#undef F
209#undef S
210#undef R
211#undef W
212#undef B
213#undef M
214
215static const struct drm_i915_cmd_table gen7_render_cmds[] = {
216 { common_cmds, ARRAY_SIZE(common_cmds) },
217 { render_cmds, ARRAY_SIZE(render_cmds) },
218};
219
220static const struct drm_i915_cmd_table hsw_render_ring_cmds[] = {
221 { common_cmds, ARRAY_SIZE(common_cmds) },
222 { render_cmds, ARRAY_SIZE(render_cmds) },
223 { hsw_render_cmds, ARRAY_SIZE(hsw_render_cmds) },
224};
225
226static const struct drm_i915_cmd_table gen7_video_cmds[] = {
227 { common_cmds, ARRAY_SIZE(common_cmds) },
228 { video_cmds, ARRAY_SIZE(video_cmds) },
229};
230
231static const struct drm_i915_cmd_table hsw_vebox_cmds[] = {
232 { common_cmds, ARRAY_SIZE(common_cmds) },
233 { vecs_cmds, ARRAY_SIZE(vecs_cmds) },
234};
235
236static const struct drm_i915_cmd_table gen7_blt_cmds[] = {
237 { common_cmds, ARRAY_SIZE(common_cmds) },
238 { blt_cmds, ARRAY_SIZE(blt_cmds) },
239};
240
9c640d1d
BV
241static const struct drm_i915_cmd_table hsw_blt_ring_cmds[] = {
242 { common_cmds, ARRAY_SIZE(common_cmds) },
243 { blt_cmds, ARRAY_SIZE(blt_cmds) },
244 { hsw_blt_cmds, ARRAY_SIZE(hsw_blt_cmds) },
245};
246
351e3db2
BV
247static u32 gen7_render_get_cmd_length_mask(u32 cmd_header)
248{
249 u32 client = (cmd_header & INSTR_CLIENT_MASK) >> INSTR_CLIENT_SHIFT;
250 u32 subclient =
251 (cmd_header & INSTR_SUBCLIENT_MASK) >> INSTR_SUBCLIENT_SHIFT;
252
253 if (client == INSTR_MI_CLIENT)
254 return 0x3F;
255 else if (client == INSTR_RC_CLIENT) {
256 if (subclient == INSTR_MEDIA_SUBCLIENT)
257 return 0xFFFF;
258 else
259 return 0xFF;
260 }
261
262 DRM_DEBUG_DRIVER("CMD: Abnormal rcs cmd length! 0x%08X\n", cmd_header);
263 return 0;
264}
265
266static u32 gen7_bsd_get_cmd_length_mask(u32 cmd_header)
267{
268 u32 client = (cmd_header & INSTR_CLIENT_MASK) >> INSTR_CLIENT_SHIFT;
269 u32 subclient =
270 (cmd_header & INSTR_SUBCLIENT_MASK) >> INSTR_SUBCLIENT_SHIFT;
271
272 if (client == INSTR_MI_CLIENT)
273 return 0x3F;
274 else if (client == INSTR_RC_CLIENT) {
275 if (subclient == INSTR_MEDIA_SUBCLIENT)
276 return 0xFFF;
277 else
278 return 0xFF;
279 }
280
281 DRM_DEBUG_DRIVER("CMD: Abnormal bsd cmd length! 0x%08X\n", cmd_header);
282 return 0;
283}
284
285static u32 gen7_blt_get_cmd_length_mask(u32 cmd_header)
286{
287 u32 client = (cmd_header & INSTR_CLIENT_MASK) >> INSTR_CLIENT_SHIFT;
288
289 if (client == INSTR_MI_CLIENT)
290 return 0x3F;
291 else if (client == INSTR_BC_CLIENT)
292 return 0xFF;
293
294 DRM_DEBUG_DRIVER("CMD: Abnormal blt cmd length! 0x%08X\n", cmd_header);
295 return 0;
296}
297
298static void validate_cmds_sorted(struct intel_ring_buffer *ring)
299{
300 int i;
301
302 if (!ring->cmd_tables || ring->cmd_table_count == 0)
303 return;
304
305 for (i = 0; i < ring->cmd_table_count; i++) {
306 const struct drm_i915_cmd_table *table = &ring->cmd_tables[i];
307 u32 previous = 0;
308 int j;
309
310 for (j = 0; j < table->count; j++) {
311 const struct drm_i915_cmd_descriptor *desc =
312 &table->table[i];
313 u32 curr = desc->cmd.value & desc->cmd.mask;
314
315 if (curr < previous)
316 DRM_ERROR("CMD: table not sorted ring=%d table=%d entry=%d cmd=0x%08X prev=0x%08X\n",
317 ring->id, i, j, curr, previous);
318
319 previous = curr;
320 }
321 }
322}
323
324static void check_sorted(int ring_id, const u32 *reg_table, int reg_count)
325{
326 int i;
327 u32 previous = 0;
328
329 for (i = 0; i < reg_count; i++) {
330 u32 curr = reg_table[i];
331
332 if (curr < previous)
333 DRM_ERROR("CMD: table not sorted ring=%d entry=%d reg=0x%08X prev=0x%08X\n",
334 ring_id, i, curr, previous);
335
336 previous = curr;
337 }
338}
339
340static void validate_regs_sorted(struct intel_ring_buffer *ring)
341{
342 check_sorted(ring->id, ring->reg_table, ring->reg_count);
343 check_sorted(ring->id, ring->master_reg_table, ring->master_reg_count);
344}
345
346/**
347 * i915_cmd_parser_init_ring() - set cmd parser related fields for a ringbuffer
348 * @ring: the ringbuffer to initialize
349 *
350 * Optionally initializes fields related to batch buffer command parsing in the
351 * struct intel_ring_buffer based on whether the platform requires software
352 * command parsing.
353 */
354void i915_cmd_parser_init_ring(struct intel_ring_buffer *ring)
355{
356 if (!IS_GEN7(ring->dev))
357 return;
358
359 switch (ring->id) {
360 case RCS:
3a6fa984
BV
361 if (IS_HASWELL(ring->dev)) {
362 ring->cmd_tables = hsw_render_ring_cmds;
363 ring->cmd_table_count =
364 ARRAY_SIZE(hsw_render_ring_cmds);
365 } else {
366 ring->cmd_tables = gen7_render_cmds;
367 ring->cmd_table_count = ARRAY_SIZE(gen7_render_cmds);
368 }
369
351e3db2
BV
370 ring->get_cmd_length_mask = gen7_render_get_cmd_length_mask;
371 break;
372 case VCS:
3a6fa984
BV
373 ring->cmd_tables = gen7_video_cmds;
374 ring->cmd_table_count = ARRAY_SIZE(gen7_video_cmds);
351e3db2
BV
375 ring->get_cmd_length_mask = gen7_bsd_get_cmd_length_mask;
376 break;
377 case BCS:
9c640d1d
BV
378 if (IS_HASWELL(ring->dev)) {
379 ring->cmd_tables = hsw_blt_ring_cmds;
380 ring->cmd_table_count = ARRAY_SIZE(hsw_blt_ring_cmds);
381 } else {
382 ring->cmd_tables = gen7_blt_cmds;
383 ring->cmd_table_count = ARRAY_SIZE(gen7_blt_cmds);
384 }
385
351e3db2
BV
386 ring->get_cmd_length_mask = gen7_blt_get_cmd_length_mask;
387 break;
388 case VECS:
3a6fa984
BV
389 ring->cmd_tables = hsw_vebox_cmds;
390 ring->cmd_table_count = ARRAY_SIZE(hsw_vebox_cmds);
351e3db2
BV
391 /* VECS can use the same length_mask function as VCS */
392 ring->get_cmd_length_mask = gen7_bsd_get_cmd_length_mask;
393 break;
394 default:
395 DRM_ERROR("CMD: cmd_parser_init with unknown ring: %d\n",
396 ring->id);
397 BUG();
398 }
399
400 validate_cmds_sorted(ring);
401 validate_regs_sorted(ring);
402}
403
404static const struct drm_i915_cmd_descriptor*
405find_cmd_in_table(const struct drm_i915_cmd_table *table,
406 u32 cmd_header)
407{
408 int i;
409
410 for (i = 0; i < table->count; i++) {
411 const struct drm_i915_cmd_descriptor *desc = &table->table[i];
412 u32 masked_cmd = desc->cmd.mask & cmd_header;
413 u32 masked_value = desc->cmd.value & desc->cmd.mask;
414
415 if (masked_cmd == masked_value)
416 return desc;
417 }
418
419 return NULL;
420}
421
422/*
423 * Returns a pointer to a descriptor for the command specified by cmd_header.
424 *
425 * The caller must supply space for a default descriptor via the default_desc
426 * parameter. If no descriptor for the specified command exists in the ring's
427 * command parser tables, this function fills in default_desc based on the
428 * ring's default length encoding and returns default_desc.
429 */
430static const struct drm_i915_cmd_descriptor*
431find_cmd(struct intel_ring_buffer *ring,
432 u32 cmd_header,
433 struct drm_i915_cmd_descriptor *default_desc)
434{
435 u32 mask;
436 int i;
437
438 for (i = 0; i < ring->cmd_table_count; i++) {
439 const struct drm_i915_cmd_descriptor *desc;
440
441 desc = find_cmd_in_table(&ring->cmd_tables[i], cmd_header);
442 if (desc)
443 return desc;
444 }
445
446 mask = ring->get_cmd_length_mask(cmd_header);
447 if (!mask)
448 return NULL;
449
450 BUG_ON(!default_desc);
451 default_desc->flags = CMD_DESC_SKIP;
452 default_desc->length.mask = mask;
453
454 return default_desc;
455}
456
457static bool valid_reg(const u32 *table, int count, u32 addr)
458{
459 if (table && count != 0) {
460 int i;
461
462 for (i = 0; i < count; i++) {
463 if (table[i] == addr)
464 return true;
465 }
466 }
467
468 return false;
469}
470
471static u32 *vmap_batch(struct drm_i915_gem_object *obj)
472{
473 int i;
474 void *addr = NULL;
475 struct sg_page_iter sg_iter;
476 struct page **pages;
477
478 pages = drm_malloc_ab(obj->base.size >> PAGE_SHIFT, sizeof(*pages));
479 if (pages == NULL) {
480 DRM_DEBUG_DRIVER("Failed to get space for pages\n");
481 goto finish;
482 }
483
484 i = 0;
485 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
486 pages[i] = sg_page_iter_page(&sg_iter);
487 i++;
488 }
489
490 addr = vmap(pages, i, 0, PAGE_KERNEL);
491 if (addr == NULL) {
492 DRM_DEBUG_DRIVER("Failed to vmap pages\n");
493 goto finish;
494 }
495
496finish:
497 if (pages)
498 drm_free_large(pages);
499 return (u32*)addr;
500}
501
502/**
503 * i915_needs_cmd_parser() - should a given ring use software command parsing?
504 * @ring: the ring in question
505 *
506 * Only certain platforms require software batch buffer command parsing, and
507 * only when enabled via module paramter.
508 *
509 * Return: true if the ring requires software command parsing
510 */
511bool i915_needs_cmd_parser(struct intel_ring_buffer *ring)
512{
513 /* No command tables indicates a platform without parsing */
514 if (!ring->cmd_tables)
515 return false;
516
517 return (i915.enable_cmd_parser == 1);
518}
519
520#define LENGTH_BIAS 2
521
522/**
523 * i915_parse_cmds() - parse a submitted batch buffer for privilege violations
524 * @ring: the ring on which the batch is to execute
525 * @batch_obj: the batch buffer in question
526 * @batch_start_offset: byte offset in the batch at which execution starts
527 * @is_master: is the submitting process the drm master?
528 *
529 * Parses the specified batch buffer looking for privilege violations as
530 * described in the overview.
531 *
532 * Return: non-zero if the parser finds violations or otherwise fails
533 */
534int i915_parse_cmds(struct intel_ring_buffer *ring,
535 struct drm_i915_gem_object *batch_obj,
536 u32 batch_start_offset,
537 bool is_master)
538{
539 int ret = 0;
540 u32 *cmd, *batch_base, *batch_end;
541 struct drm_i915_cmd_descriptor default_desc = { 0 };
542 int needs_clflush = 0;
543
544 ret = i915_gem_obj_prepare_shmem_read(batch_obj, &needs_clflush);
545 if (ret) {
546 DRM_DEBUG_DRIVER("CMD: failed to prep read\n");
547 return ret;
548 }
549
550 batch_base = vmap_batch(batch_obj);
551 if (!batch_base) {
552 DRM_DEBUG_DRIVER("CMD: Failed to vmap batch\n");
553 i915_gem_object_unpin_pages(batch_obj);
554 return -ENOMEM;
555 }
556
557 if (needs_clflush)
558 drm_clflush_virt_range((char *)batch_base, batch_obj->base.size);
559
560 cmd = batch_base + (batch_start_offset / sizeof(*cmd));
561 batch_end = cmd + (batch_obj->base.size / sizeof(*batch_end));
562
563 while (cmd < batch_end) {
564 const struct drm_i915_cmd_descriptor *desc;
565 u32 length;
566
567 if (*cmd == MI_BATCH_BUFFER_END)
568 break;
569
570 desc = find_cmd(ring, *cmd, &default_desc);
571 if (!desc) {
572 DRM_DEBUG_DRIVER("CMD: Unrecognized command: 0x%08X\n",
573 *cmd);
574 ret = -EINVAL;
575 break;
576 }
577
578 if (desc->flags & CMD_DESC_FIXED)
579 length = desc->length.fixed;
580 else
581 length = ((*cmd & desc->length.mask) + LENGTH_BIAS);
582
583 if ((batch_end - cmd) < length) {
e5081a53 584 DRM_DEBUG_DRIVER("CMD: Command length exceeds batch length: 0x%08X length=%d batchlen=%td\n",
351e3db2
BV
585 *cmd,
586 length,
587 batch_end - cmd);
588 ret = -EINVAL;
589 break;
590 }
591
592 if (desc->flags & CMD_DESC_REJECT) {
593 DRM_DEBUG_DRIVER("CMD: Rejected command: 0x%08X\n", *cmd);
594 ret = -EINVAL;
595 break;
596 }
597
598 if ((desc->flags & CMD_DESC_MASTER) && !is_master) {
599 DRM_DEBUG_DRIVER("CMD: Rejected master-only command: 0x%08X\n",
600 *cmd);
601 ret = -EINVAL;
602 break;
603 }
604
605 if (desc->flags & CMD_DESC_REGISTER) {
606 u32 reg_addr = cmd[desc->reg.offset] & desc->reg.mask;
607
608 if (!valid_reg(ring->reg_table,
609 ring->reg_count, reg_addr)) {
610 if (!is_master ||
611 !valid_reg(ring->master_reg_table,
612 ring->master_reg_count,
613 reg_addr)) {
614 DRM_DEBUG_DRIVER("CMD: Rejected register 0x%08X in command: 0x%08X (ring=%d)\n",
615 reg_addr,
616 *cmd,
617 ring->id);
618 ret = -EINVAL;
619 break;
620 }
621 }
622 }
623
624 if (desc->flags & CMD_DESC_BITMASK) {
625 int i;
626
627 for (i = 0; i < MAX_CMD_DESC_BITMASKS; i++) {
628 u32 dword;
629
630 if (desc->bits[i].mask == 0)
631 break;
632
633 dword = cmd[desc->bits[i].offset] &
634 desc->bits[i].mask;
635
636 if (dword != desc->bits[i].expected) {
637 DRM_DEBUG_DRIVER("CMD: Rejected command 0x%08X for bitmask 0x%08X (exp=0x%08X act=0x%08X) (ring=%d)\n",
638 *cmd,
639 desc->bits[i].mask,
640 desc->bits[i].expected,
641 dword, ring->id);
642 ret = -EINVAL;
643 break;
644 }
645 }
646
647 if (ret)
648 break;
649 }
650
651 cmd += length;
652 }
653
654 if (cmd >= batch_end) {
655 DRM_DEBUG_DRIVER("CMD: Got to the end of the buffer w/o a BBE cmd!\n");
656 ret = -EINVAL;
657 }
658
659 vunmap(batch_base);
660
661 i915_gem_object_unpin_pages(batch_obj);
662
663 return ret;
664}
This page took 0.06532 seconds and 5 git commands to generate.