72ac2b2358842577aa70ab1318225aa322786b2a
[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 upload_state_base_address(struct brw_context *brw)
33 {
34 perf_debug("Missing MOCS setup for STATE_BASE_ADDRESS.");
35
36 BEGIN_BATCH(16);
37 OUT_BATCH(CMD_STATE_BASE_ADDRESS << 16 | (16 - 2));
38 /* General state base address: stateless DP read/write requests */
39 OUT_BATCH(0);
40 OUT_BATCH(1);
41 OUT_BATCH(0);
42 /* Surface state base address: */
43 OUT_RELOC64(brw->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0, 1);
44 /* Dynamic state base address: */
45 OUT_RELOC64(brw->batch.bo,
46 I915_GEM_DOMAIN_RENDER | I915_GEM_DOMAIN_INSTRUCTION, 0, 1);
47 /* Indirect object base address: MEDIA_OBJECT data */
48 OUT_BATCH(0);
49 OUT_BATCH(1);
50 /* Instruction base address: shader kernels (incl. SIP) */
51 OUT_RELOC64(brw->cache.bo, I915_GEM_DOMAIN_INSTRUCTION, 0, 1);
52
53 /* General state buffer size */
54 OUT_BATCH(0xfffff001);
55 /* Dynamic state buffer size */
56 OUT_BATCH(ALIGN(brw->batch.bo->size, 4096) | 1);
57 /* Indirect object upper bound */
58 OUT_BATCH(0xfffff001);
59 /* Instruction access upper bound */
60 OUT_BATCH(ALIGN(brw->cache.bo->size, 4096) | 1);
61 ADVANCE_BATCH();
62
63 brw->state.dirty.brw |= BRW_NEW_STATE_BASE_ADDRESS;
64 }
65
66 const struct brw_tracked_state gen8_state_base_address = {
67 .dirty = {
68 .mesa = 0,
69 .brw = BRW_NEW_BATCH | BRW_NEW_PROGRAM_CACHE,
70 .cache = 0,
71 },
72 .emit = upload_state_base_address
73 };