blob: 95b7e9afd5f8847089e8b9dc079a7fe548ffebf5 [file] [log] [blame]
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +03001/*
2 * Copyright © 2014 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 * Mika Kuoppala <mika.kuoppala@intel.com>
25 *
26 */
27
28#include "i915_drv.h"
29#include "intel_renderstate.h"
30
Chris Wilsone40f9ee2016-08-02 22:50:36 +010031struct render_state {
32 const struct intel_renderstate_rodata *rodata;
Chris Wilsona5e85c82016-08-15 10:49:03 +010033 struct i915_vma *vma;
Chris Wilsone40f9ee2016-08-02 22:50:36 +010034 u32 aux_batch_size;
35 u32 aux_batch_offset;
36};
37
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +030038static const struct intel_renderstate_rodata *
Chris Wilson15d21db2016-08-02 22:50:37 +010039render_state_get_rodata(const struct drm_i915_gem_request *req)
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +030040{
Chris Wilson15d21db2016-08-02 22:50:37 +010041 switch (INTEL_GEN(req->i915)) {
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +030042 case 6:
43 return &gen6_null_state;
44 case 7:
45 return &gen7_null_state;
46 case 8:
47 return &gen8_null_state;
Armin Reeseff7a60f2014-10-23 08:34:28 -070048 case 9:
49 return &gen9_null_state;
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +030050 }
51
52 return NULL;
53}
54
Arun Siluvery84e81022015-07-20 10:46:10 +010055/*
56 * Macro to add commands to auxiliary batch.
57 * This macro only checks for page overflow before inserting the commands,
58 * this is sufficient as the null state generator makes the final batch
59 * with two passes to build command and state separately. At this point
60 * the size of both are known and it compacts them by relocating the state
61 * right after the commands taking care of aligment so we should sufficient
62 * space below them for adding new commands.
63 */
64#define OUT_BATCH(batch, i, val) \
65 do { \
66 if (WARN_ON((i) >= PAGE_SIZE / sizeof(u32))) { \
67 ret = -ENOSPC; \
68 goto err_out; \
69 } \
70 (batch)[(i)++] = (val); \
71 } while(0)
72
Chris Wilson1ce826d2014-06-10 11:23:33 +010073static int render_state_setup(struct render_state *so)
74{
Chris Wilsona5e85c82016-08-15 10:49:03 +010075 struct drm_device *dev = so->vma->vm->dev;
Chris Wilson1ce826d2014-06-10 11:23:33 +010076 const struct intel_renderstate_rodata *rodata = so->rodata;
Chris Wilson15d21db2016-08-02 22:50:37 +010077 const bool has_64bit_reloc = INTEL_GEN(dev) >= 8;
Chris Wilson1ce826d2014-06-10 11:23:33 +010078 unsigned int i = 0, reloc_index = 0;
79 struct page *page;
80 u32 *d;
81 int ret;
82
Chris Wilsona5e85c82016-08-15 10:49:03 +010083 ret = i915_gem_object_set_to_cpu_domain(so->vma->obj, true);
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +030084 if (ret)
85 return ret;
86
Chris Wilsona5e85c82016-08-15 10:49:03 +010087 page = i915_gem_object_get_dirty_page(so->vma->obj, 0);
Chris Wilson1ce826d2014-06-10 11:23:33 +010088 d = kmap(page);
89
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +030090 while (i < rodata->batch_items) {
91 u32 s = rodata->batch[i];
92
Chris Wilson1ce826d2014-06-10 11:23:33 +010093 if (i * 4 == rodata->reloc[reloc_index]) {
Chris Wilsona5e85c82016-08-15 10:49:03 +010094 u64 r = s + so->vma->node.start;
Chris Wilson1ce826d2014-06-10 11:23:33 +010095 s = lower_32_bits(r);
Chris Wilson15d21db2016-08-02 22:50:37 +010096 if (has_64bit_reloc) {
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +030097 if (i + 1 >= rodata->batch_items ||
Mika Kuoppaladd72bde2015-07-17 17:08:51 +010098 rodata->batch[i + 1] != 0) {
99 ret = -EINVAL;
100 goto err_out;
101 }
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300102
Chris Wilson1ce826d2014-06-10 11:23:33 +0100103 d[i++] = s;
104 s = upper_32_bits(r);
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300105 }
106
107 reloc_index++;
108 }
109
Chris Wilson1ce826d2014-06-10 11:23:33 +0100110 d[i++] = s;
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300111 }
Arun Siluvery84e81022015-07-20 10:46:10 +0100112
113 while (i % CACHELINE_DWORDS)
114 OUT_BATCH(d, i, MI_NOOP);
115
116 so->aux_batch_offset = i * sizeof(u32);
117
arun.siluvery@linux.intel.com33e141e2016-06-03 06:34:33 +0100118 if (HAS_POOLED_EU(dev)) {
119 /*
120 * We always program 3x6 pool config but depending upon which
121 * subslice is disabled HW drops down to appropriate config
122 * shown below.
123 *
124 * In the below table 2x6 config always refers to
125 * fused-down version, native 2x6 is not available and can
126 * be ignored
127 *
128 * SNo subslices config eu pool configuration
129 * -----------------------------------------------------------
130 * 1 3 subslices enabled (3x6) - 0x00777000 (9+9)
131 * 2 ss0 disabled (2x6) - 0x00777000 (3+9)
132 * 3 ss1 disabled (2x6) - 0x00770000 (6+6)
133 * 4 ss2 disabled (2x6) - 0x00007000 (9+3)
134 */
135 u32 eu_pool_config = 0x00777000;
136
137 OUT_BATCH(d, i, GEN9_MEDIA_POOL_STATE);
138 OUT_BATCH(d, i, GEN9_MEDIA_POOL_ENABLE);
139 OUT_BATCH(d, i, eu_pool_config);
140 OUT_BATCH(d, i, 0);
141 OUT_BATCH(d, i, 0);
142 OUT_BATCH(d, i, 0);
143 }
144
Arun Siluvery84e81022015-07-20 10:46:10 +0100145 OUT_BATCH(d, i, MI_BATCH_BUFFER_END);
146 so->aux_batch_size = (i * sizeof(u32)) - so->aux_batch_offset;
147
148 /*
149 * Since we are sending length, we need to strictly conform to
150 * all requirements. For Gen2 this must be a multiple of 8.
151 */
152 so->aux_batch_size = ALIGN(so->aux_batch_size, 8);
153
Chris Wilson1ce826d2014-06-10 11:23:33 +0100154 kunmap(page);
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300155
Chris Wilsona5e85c82016-08-15 10:49:03 +0100156 ret = i915_gem_object_set_to_gtt_domain(so->vma->obj, false);
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300157 if (ret)
158 return ret;
159
Chris Wilson1ce826d2014-06-10 11:23:33 +0100160 if (rodata->reloc[reloc_index] != -1) {
161 DRM_ERROR("only %d relocs resolved\n", reloc_index);
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300162 return -EINVAL;
163 }
164
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300165 return 0;
Mika Kuoppaladd72bde2015-07-17 17:08:51 +0100166
167err_out:
168 kunmap(page);
169 return ret;
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300170}
171
Arun Siluvery84e81022015-07-20 10:46:10 +0100172#undef OUT_BATCH
173
John Harrisonbe013632015-05-29 17:43:45 +0100174int i915_gem_render_state_init(struct drm_i915_gem_request *req)
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300175{
Chris Wilson1ce826d2014-06-10 11:23:33 +0100176 struct render_state so;
Chris Wilsona5e85c82016-08-15 10:49:03 +0100177 struct drm_i915_gem_object *obj;
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300178 int ret;
179
Chris Wilson15d21db2016-08-02 22:50:37 +0100180 if (WARN_ON(req->engine->id != RCS))
181 return -ENOENT;
Chris Wilson1ce826d2014-06-10 11:23:33 +0100182
Chris Wilson15d21db2016-08-02 22:50:37 +0100183 so.rodata = render_state_get_rodata(req);
184 if (!so.rodata)
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300185 return 0;
186
Chris Wilson15d21db2016-08-02 22:50:37 +0100187 if (so.rodata->batch_items * 4 > 4096)
188 return -EINVAL;
189
Chris Wilsona5e85c82016-08-15 10:49:03 +0100190 obj = i915_gem_object_create(&req->i915->drm, 4096);
191 if (IS_ERR(obj))
192 return PTR_ERR(obj);
Chris Wilson15d21db2016-08-02 22:50:37 +0100193
Chris Wilsona5e85c82016-08-15 10:49:03 +0100194 so.vma = i915_vma_create(obj, &req->i915->ggtt.base, NULL);
195 if (IS_ERR(so.vma)) {
196 ret = PTR_ERR(so.vma);
197 goto err_obj;
198 }
199
200 ret = i915_vma_pin(so.vma, 0, 0, PIN_GLOBAL);
Chris Wilson15d21db2016-08-02 22:50:37 +0100201 if (ret)
202 goto err_obj;
203
Chris Wilson15d21db2016-08-02 22:50:37 +0100204 ret = render_state_setup(&so);
205 if (ret)
206 goto err_unpin;
207
Chris Wilsona5e85c82016-08-15 10:49:03 +0100208 ret = req->engine->emit_bb_start(req, so.vma->node.start,
Chris Wilson803688b2016-08-02 22:50:27 +0100209 so.rodata->batch_items * 4,
210 I915_DISPATCH_SECURE);
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300211 if (ret)
Chris Wilson15d21db2016-08-02 22:50:37 +0100212 goto err_unpin;
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300213
Arun Siluvery84e81022015-07-20 10:46:10 +0100214 if (so.aux_batch_size > 8) {
Chris Wilson803688b2016-08-02 22:50:27 +0100215 ret = req->engine->emit_bb_start(req,
Chris Wilsona5e85c82016-08-15 10:49:03 +0100216 (so.vma->node.start +
Chris Wilson803688b2016-08-02 22:50:27 +0100217 so.aux_batch_offset),
218 so.aux_batch_size,
219 I915_DISPATCH_SECURE);
Arun Siluvery84e81022015-07-20 10:46:10 +0100220 if (ret)
Chris Wilson15d21db2016-08-02 22:50:37 +0100221 goto err_unpin;
Arun Siluvery84e81022015-07-20 10:46:10 +0100222 }
223
Chris Wilsona5e85c82016-08-15 10:49:03 +0100224 i915_vma_move_to_active(so.vma, req, 0);
Chris Wilson15d21db2016-08-02 22:50:37 +0100225err_unpin:
Chris Wilsona5e85c82016-08-15 10:49:03 +0100226 i915_vma_unpin(so.vma);
Chris Wilson15d21db2016-08-02 22:50:37 +0100227err_obj:
Chris Wilsona5e85c82016-08-15 10:49:03 +0100228 i915_gem_object_put(obj);
Mika Kuoppala9d0a6fa2014-05-14 17:02:16 +0300229 return ret;
230}