i915g: don't recalculate fb dimension
[mesa.git] / src / gallium / drivers / i915 / i915_state_static.c
1 /**************************************************************************
2 *
3 * Copyright © 2010 Jakob Bornecrantz
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 **************************************************************************/
25
26
27 #include "i915_reg.h"
28 #include "i915_context.h"
29 #include "i915_state.h"
30 #include "i915_resource.h"
31
32
33
34 /***********************************************************************
35 * Update framebuffer state
36 */
37 static unsigned translate_format(enum pipe_format format)
38 {
39 switch (format) {
40 case PIPE_FORMAT_B8G8R8A8_UNORM:
41 return COLOR_BUF_ARGB8888;
42 case PIPE_FORMAT_B5G6R5_UNORM:
43 return COLOR_BUF_RGB565;
44 default:
45 assert(0);
46 return 0;
47 }
48 }
49
50 static unsigned translate_depth_format(enum pipe_format zformat)
51 {
52 switch (zformat) {
53 case PIPE_FORMAT_Z24X8_UNORM:
54 case PIPE_FORMAT_Z24_UNORM_S8_USCALED:
55 return DEPTH_FRMT_24_FIXED_8_OTHER;
56 case PIPE_FORMAT_Z16_UNORM:
57 return DEPTH_FRMT_16_FIXED;
58 default:
59 assert(0);
60 return 0;
61 }
62 }
63
64 static inline uint32_t
65 buf_3d_tiling_bits(enum i915_winsys_buffer_tile tiling)
66 {
67 uint32_t tiling_bits = 0;
68
69 switch (tiling) {
70 case I915_TILE_Y:
71 tiling_bits |= BUF_3D_TILE_WALK_Y;
72 case I915_TILE_X:
73 tiling_bits |= BUF_3D_TILED_SURFACE;
74 case I915_TILE_NONE:
75 break;
76 }
77
78 return tiling_bits;
79 }
80
81 static void update_framebuffer(struct i915_context *i915)
82 {
83 struct pipe_surface *cbuf_surface = i915->framebuffer.cbufs[0];
84 struct pipe_surface *depth_surface = i915->framebuffer.zsbuf;
85 unsigned cformat, zformat;
86 unsigned x, y, w, h;
87 int layer;
88 uint32_t draw_offset;
89
90 if (cbuf_surface) {
91 struct i915_texture *tex = i915_texture(cbuf_surface->texture);
92 assert(tex);
93
94 i915->current.cbuf_bo = tex->buffer;
95 i915->current.cbuf_flags = BUF_3D_ID_COLOR_BACK |
96 BUF_3D_PITCH(tex->stride) | /* pitch in bytes */
97 buf_3d_tiling_bits(tex->tiling);
98 cformat = cbuf_surface->format;
99
100 layer = cbuf_surface->u.tex.first_layer;
101
102 x = tex->image_offset[cbuf_surface->u.tex.level][layer].nblocksx;
103 y = tex->image_offset[cbuf_surface->u.tex.level][layer].nblocksy;
104 } else {
105 i915->current.cbuf_bo = NULL;
106 cformat = PIPE_FORMAT_B8G8R8A8_UNORM; /* arbitrary */
107 x = y = 0;
108 }
109 cformat = translate_format(cformat);
110
111 /* What happens if no zbuf??
112 */
113 if (depth_surface) {
114 struct i915_texture *tex = i915_texture(depth_surface->texture);
115 unsigned offset = i915_texture_offset(tex, depth_surface->u.tex.level,
116 depth_surface->u.tex.first_layer);
117 assert(tex);
118 assert(offset == 0);
119
120 i915->current.depth_bo = tex->buffer;
121 i915->current.depth_flags = BUF_3D_ID_DEPTH |
122 BUF_3D_PITCH(tex->stride) | /* pitch in bytes */
123 buf_3d_tiling_bits(tex->tiling);
124 zformat = translate_depth_format(depth_surface->format);
125 } else {
126 i915->current.depth_bo = NULL;
127 zformat = 0;
128 }
129
130 i915->current.dst_buf_vars = DSTORG_HORT_BIAS(0x8) | /* .5 */
131 DSTORG_VERT_BIAS(0x8) | /* .5 */
132 LOD_PRECLAMP_OGL |
133 TEX_DEFAULT_COLOR_OGL |
134 cformat |
135 zformat;
136
137 /* drawing rect calculations */
138 draw_offset = x | (y << 16);
139 if (i915->current.draw_offset != draw_offset) {
140 i915->current.draw_offset = draw_offset;
141 i915_set_flush_dirty(i915, I915_PIPELINE_FLUSH);
142 }
143
144 w = i915->framebuffer.width;
145 h = i915->framebuffer.height;
146 i915->current.draw_size = (w - 1 + x) | ((h - 1 + y) << 16);
147
148 i915->hardware_dirty |= I915_HW_STATIC;
149
150 /* flush the cache in case we sample from the old renderbuffers */
151 i915_set_flush_dirty(i915, I915_FLUSH_CACHE);
152 }
153
154 struct i915_tracked_state i915_hw_framebuffer = {
155 "framebuffer",
156 update_framebuffer,
157 I915_NEW_FRAMEBUFFER
158 };