Merge remote-tracking branch 'origin/master' into vulkan
[mesa.git] / src / mesa / drivers / dri / i965 / gen8_misc_state.c
1 /*
2 * Copyright © 2012 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
24 #include "intel_batchbuffer.h"
25 #include "brw_context.h"
26 #include "brw_state.h"
27 #include "brw_defines.h"
28
29 /**
30 * Define the base addresses which some state is referenced from.
31 */
32 static void
33 gen8_upload_state_base_address(struct brw_context *brw)
34 {
35 uint32_t mocs_wb = brw->gen >= 9 ? SKL_MOCS_WB : BDW_MOCS_WB;
36 int pkt_len = brw->gen >= 9 ? 19 : 16;
37
38 BEGIN_BATCH(pkt_len);
39 OUT_BATCH(CMD_STATE_BASE_ADDRESS << 16 | (pkt_len - 2));
40 /* General state base address: stateless DP read/write requests */
41 OUT_BATCH(mocs_wb << 4 | 1);
42 OUT_BATCH(0);
43 OUT_BATCH(mocs_wb << 16);
44 /* Surface state base address: */
45 OUT_RELOC64(brw->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0,
46 mocs_wb << 4 | 1);
47 /* Dynamic state base address: */
48 OUT_RELOC64(brw->batch.bo,
49 I915_GEM_DOMAIN_RENDER | I915_GEM_DOMAIN_INSTRUCTION, 0,
50 mocs_wb << 4 | 1);
51 /* Indirect object base address: MEDIA_OBJECT data */
52 OUT_BATCH(mocs_wb << 4 | 1);
53 OUT_BATCH(0);
54 /* Instruction base address: shader kernels (incl. SIP) */
55 OUT_RELOC64(brw->cache.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
56 mocs_wb << 4 | 1);
57
58 /* General state buffer size */
59 OUT_BATCH(0xfffff001);
60 /* Dynamic state buffer size */
61 OUT_BATCH(ALIGN(brw->batch.bo->size, 4096) | 1);
62 /* Indirect object upper bound */
63 OUT_BATCH(0xfffff001);
64 /* Instruction access upper bound */
65 OUT_BATCH(ALIGN(brw->cache.bo->size, 4096) | 1);
66 if (brw->gen >= 9) {
67 OUT_BATCH(1);
68 OUT_BATCH(0);
69 OUT_BATCH(0);
70 }
71 ADVANCE_BATCH();
72
73 brw->ctx.NewDriverState |= BRW_NEW_STATE_BASE_ADDRESS;
74 }
75
76 const struct brw_tracked_state gen8_state_base_address = {
77 .dirty = {
78 .mesa = 0,
79 .brw = BRW_NEW_BATCH |
80 BRW_NEW_PROGRAM_CACHE,
81 },
82 .emit = gen8_upload_state_base_address
83 };