2d45c2545cda30191abcd746aa727e196bd693cc
[mesa.git] / src / gallium / drivers / nv40 / nv40_fragtex.c
1 #include "nv40_context.h"
2
3 #define _(m,tf,ts0x,ts0y,ts0z,ts0w,ts1x,ts1y,ts1z,ts1w,sx,sy,sz,sw) \
4 { \
5 TRUE, \
6 PIPE_FORMAT_##m, \
7 NV40TCL_TEX_FORMAT_FORMAT_##tf, \
8 (NV40TCL_TEX_SWIZZLE_S0_X_##ts0x | NV40TCL_TEX_SWIZZLE_S0_Y_##ts0y | \
9 NV40TCL_TEX_SWIZZLE_S0_Z_##ts0z | NV40TCL_TEX_SWIZZLE_S0_W_##ts0w | \
10 NV40TCL_TEX_SWIZZLE_S1_X_##ts1x | NV40TCL_TEX_SWIZZLE_S1_Y_##ts1y | \
11 NV40TCL_TEX_SWIZZLE_S1_Z_##ts1z | NV40TCL_TEX_SWIZZLE_S1_W_##ts1w), \
12 ((NV40TCL_TEX_FILTER_SIGNED_RED*sx) | (NV40TCL_TEX_FILTER_SIGNED_GREEN*sy) | \
13 (NV40TCL_TEX_FILTER_SIGNED_BLUE*sz) | (NV40TCL_TEX_FILTER_SIGNED_ALPHA*sw)) \
14 }
15
16 struct nv40_texture_format {
17 boolean defined;
18 uint pipe;
19 int format;
20 int swizzle;
21 int sign;
22 };
23
24 static struct nv40_texture_format
25 nv40_texture_formats[] = {
26 _(A8R8G8B8_UNORM, A8R8G8B8, S1, S1, S1, S1, X, Y, Z, W, 0, 0, 0, 0),
27 _(A1R5G5B5_UNORM, A1R5G5B5, S1, S1, S1, S1, X, Y, Z, W, 0, 0, 0, 0),
28 _(A4R4G4B4_UNORM, A4R4G4B4, S1, S1, S1, S1, X, Y, Z, W, 0, 0, 0, 0),
29 _(R5G6B5_UNORM , R5G6B5 , S1, S1, S1, ONE, X, Y, Z, W, 0, 0, 0, 0),
30 _(L8_UNORM , L8 , S1, S1, S1, ONE, X, X, X, X, 0, 0, 0, 0),
31 _(A8_UNORM , L8 , ZERO, ZERO, ZERO, S1, X, X, X, X, 0, 0, 0, 0),
32 _(R16_SNORM , A16 , ZERO, ZERO, S1, ONE, X, X, X, Y, 1, 1, 1, 1),
33 _(I8_UNORM , L8 , S1, S1, S1, S1, X, X, X, X, 0, 0, 0, 0),
34 _(A8L8_UNORM , A8L8 , S1, S1, S1, S1, X, X, X, Y, 0, 0, 0, 0),
35 _(Z16_UNORM , Z16 , S1, S1, S1, ONE, X, X, X, X, 0, 0, 0, 0),
36 _(Z24S8_UNORM , Z24 , S1, S1, S1, ONE, X, X, X, X, 0, 0, 0, 0),
37 _(DXT1_RGB , DXT1 , S1, S1, S1, ONE, X, Y, Z, W, 0, 0, 0, 0),
38 _(DXT1_RGBA , DXT1 , S1, S1, S1, S1, X, Y, Z, W, 0, 0, 0, 0),
39 _(DXT3_RGBA , DXT3 , S1, S1, S1, S1, X, Y, Z, W, 0, 0, 0, 0),
40 _(DXT5_RGBA , DXT5 , S1, S1, S1, S1, X, Y, Z, W, 0, 0, 0, 0),
41 {},
42 };
43
44 static struct nv40_texture_format *
45 nv40_fragtex_format(uint pipe_format)
46 {
47 struct nv40_texture_format *tf = nv40_texture_formats;
48 char fs[128];
49
50 while (tf->defined) {
51 if (tf->pipe == pipe_format)
52 return tf;
53 tf++;
54 }
55
56 pf_sprint_name(fs, pipe_format);
57 NOUVEAU_ERR("unknown texture format %s\n", fs);
58 return NULL;
59 }
60
61
62 static struct nouveau_stateobj *
63 nv40_fragtex_build(struct nv40_context *nv40, int unit)
64 {
65 struct nv40_sampler_state *ps = nv40->tex_sampler[unit];
66 struct nv40_miptree *nv40mt = nv40->tex_miptree[unit];
67 struct pipe_texture *pt = &nv40mt->base;
68 struct nv40_texture_format *tf;
69 struct nouveau_stateobj *so;
70 uint32_t txf, txs, txp;
71 int swizzled = 0; /*XXX: implement in region code? */
72 unsigned tex_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_GART | NOUVEAU_BO_RD;
73
74 tf = nv40_fragtex_format(pt->format);
75 if (!tf)
76 assert(0);
77
78 txf = ps->fmt;
79 txf |= tf->format | 0x8000;
80 txf |= ((pt->last_level + 1) << NV40TCL_TEX_FORMAT_MIPMAP_COUNT_SHIFT);
81
82 if (1) /* XXX */
83 txf |= NV40TCL_TEX_FORMAT_NO_BORDER;
84
85 switch (pt->target) {
86 case PIPE_TEXTURE_CUBE:
87 txf |= NV40TCL_TEX_FORMAT_CUBIC;
88 /* fall-through */
89 case PIPE_TEXTURE_2D:
90 txf |= NV40TCL_TEX_FORMAT_DIMS_2D;
91 break;
92 case PIPE_TEXTURE_3D:
93 txf |= NV40TCL_TEX_FORMAT_DIMS_3D;
94 break;
95 case PIPE_TEXTURE_1D:
96 txf |= NV40TCL_TEX_FORMAT_DIMS_1D;
97 break;
98 default:
99 NOUVEAU_ERR("Unknown target %d\n", pt->target);
100 return NULL;
101 }
102
103 if (swizzled) {
104 txp = 0;
105 } else {
106 txp = nv40mt->level[0].pitch;
107 txf |= NV40TCL_TEX_FORMAT_LINEAR;
108 }
109
110 txs = tf->swizzle;
111
112 so = so_new(16, 2);
113 so_method(so, nv40->screen->curie, NV40TCL_TEX_OFFSET(unit), 8);
114 so_reloc (so, nv40mt->buffer, 0, tex_flags | NOUVEAU_BO_LOW, 0, 0);
115 so_reloc (so, nv40mt->buffer, txf, tex_flags | NOUVEAU_BO_OR,
116 NV40TCL_TEX_FORMAT_DMA0, NV40TCL_TEX_FORMAT_DMA1);
117 so_data (so, ps->wrap);
118 so_data (so, NV40TCL_TEX_ENABLE_ENABLE | ps->en);
119 so_data (so, txs);
120 so_data (so, ps->filt | tf->sign | 0x2000 /*voodoo*/);
121 so_data (so, (pt->width[0] << NV40TCL_TEX_SIZE0_W_SHIFT) |
122 pt->height[0]);
123 so_data (so, ps->bcol);
124 so_method(so, nv40->screen->curie, NV40TCL_TEX_SIZE1(unit), 1);
125 so_data (so, (pt->depth[0] << NV40TCL_TEX_SIZE1_DEPTH_SHIFT) | txp);
126
127 return so;
128 }
129
130 static boolean
131 nv40_fragtex_validate(struct nv40_context *nv40)
132 {
133 struct nv40_fragment_program *fp = nv40->fragprog;
134 struct nv40_state *state = &nv40->state;
135 struct nouveau_stateobj *so;
136 unsigned samplers, unit;
137
138 samplers = state->fp_samplers & ~fp->samplers;
139 while (samplers) {
140 unit = ffs(samplers) - 1;
141 samplers &= ~(1 << unit);
142
143 so = so_new(2, 0);
144 so_method(so, nv40->screen->curie, NV40TCL_TEX_ENABLE(unit), 1);
145 so_data (so, 0);
146 so_ref(so, &nv40->state.hw[NV40_STATE_FRAGTEX0 + unit]);
147 state->dirty |= (1ULL << (NV40_STATE_FRAGTEX0 + unit));
148 }
149
150 samplers = nv40->dirty_samplers & fp->samplers;
151 while (samplers) {
152 unit = ffs(samplers) - 1;
153 samplers &= ~(1 << unit);
154
155 so = nv40_fragtex_build(nv40, unit);
156 so_ref(so, &nv40->state.hw[NV40_STATE_FRAGTEX0 + unit]);
157 state->dirty |= (1ULL << (NV40_STATE_FRAGTEX0 + unit));
158 }
159
160 nv40->state.fp_samplers = fp->samplers;
161 return FALSE;
162 }
163
164 struct nv40_state_entry nv40_state_fragtex = {
165 .validate = nv40_fragtex_validate,
166 .dirty = {
167 .pipe = NV40_NEW_SAMPLER | NV40_NEW_FRAGPROG,
168 .hw = 0
169 }
170 };
171