Merge remote branch 'origin/master' into nv50-compiler
[mesa.git] / src / gallium / drivers / nv50 / nv50_state.c
index d609b4cbc6fcfc5765e0b4b8cf3bb732fd16a9cc..3afce06557a0282c79235e46ab0d050138924da7 100644 (file)
@@ -22,7 +22,7 @@
 
 #include "pipe/p_state.h"
 #include "pipe/p_defines.h"
-#include "pipe/p_inlines.h"
+#include "util/u_inlines.h"
 
 #include "tgsi/tgsi_parse.h"
 
 
 #include "nouveau/nouveau_stateobj.h"
 
+static INLINE uint32_t
+nv50_colormask(unsigned mask)
+{
+       uint32_t cmask = 0;
+
+       if (mask & PIPE_MASK_R)
+               cmask |= 0x0001;
+       if (mask & PIPE_MASK_G)
+               cmask |= 0x0010;
+       if (mask & PIPE_MASK_B)
+               cmask |= 0x0100;
+       if (mask & PIPE_MASK_A)
+               cmask |= 0x1000;
+
+       return cmask;
+}
+
+static INLINE uint32_t
+nv50_blend_func(unsigned factor)
+{
+       switch (factor) {
+       case PIPE_BLENDFACTOR_ZERO:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ZERO;
+       case PIPE_BLENDFACTOR_ONE:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ONE;
+       case PIPE_BLENDFACTOR_SRC_COLOR:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_SRC_COLOR;
+       case PIPE_BLENDFACTOR_INV_SRC_COLOR:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ONE_MINUS_SRC_COLOR;
+       case PIPE_BLENDFACTOR_SRC_ALPHA:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_SRC_ALPHA;
+       case PIPE_BLENDFACTOR_INV_SRC_ALPHA:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ONE_MINUS_SRC_ALPHA;
+       case PIPE_BLENDFACTOR_DST_ALPHA:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_DST_ALPHA;
+       case PIPE_BLENDFACTOR_INV_DST_ALPHA:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ONE_MINUS_DST_ALPHA;
+       case PIPE_BLENDFACTOR_DST_COLOR:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_DST_COLOR;
+       case PIPE_BLENDFACTOR_INV_DST_COLOR:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ONE_MINUS_DST_COLOR;
+       case PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_SRC_ALPHA_SATURATE;
+       case PIPE_BLENDFACTOR_CONST_COLOR:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_CONSTANT_COLOR;
+       case PIPE_BLENDFACTOR_INV_CONST_COLOR:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ONE_MINUS_CONSTANT_COLOR;
+       case PIPE_BLENDFACTOR_CONST_ALPHA:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_CONSTANT_ALPHA;
+       case PIPE_BLENDFACTOR_INV_CONST_ALPHA:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ONE_MINUS_CONSTANT_ALPHA;
+       case PIPE_BLENDFACTOR_SRC1_COLOR:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_SRC1_COLOR;
+       case PIPE_BLENDFACTOR_INV_SRC1_COLOR:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ONE_MINUS_SRC1_COLOR;
+       case PIPE_BLENDFACTOR_SRC1_ALPHA:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_SRC1_ALPHA;
+       case PIPE_BLENDFACTOR_INV_SRC1_ALPHA:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ONE_MINUS_SRC1_ALPHA;
+       default:
+               return NV50TCL_BLEND_FUNC_SRC_RGB_ZERO;
+       }
+}
+
 static void *
 nv50_blend_state_create(struct pipe_context *pipe,
                        const struct pipe_blend_state *cso)
 {
-       struct nouveau_stateobj *so = so_new(64, 0);
+       struct nouveau_stateobj *so = so_new(5, 24, 0);
        struct nouveau_grobj *tesla = nv50_context(pipe)->screen->tesla;
        struct nv50_blend_stateobj *bso = CALLOC_STRUCT(nv50_blend_stateobj);
-       unsigned cmask = 0, i;
+       unsigned i, blend_enabled = 0;
 
        /*XXX ignored:
         *      - dither
         */
 
-       if (cso->blend_enable == 0) {
-               so_method(so, tesla, NV50TCL_BLEND_ENABLE(0), 8);
+       so_method(so, tesla, NV50TCL_BLEND_ENABLE(0), 8);
+       if (cso->independent_blend_enable) {
+               for (i = 0; i < 8; ++i) {
+                       so_data(so, cso->rt[i].blend_enable);
+                       if (cso->rt[i].blend_enable)
+                               blend_enabled = 1;
+               }
+       } else
+       if (cso->rt[0].blend_enable) {
+               blend_enabled = 1;
                for (i = 0; i < 8; i++)
-                       so_data(so, 0);
+                       so_data(so, 1);
        } else {
-               so_method(so, tesla, NV50TCL_BLEND_ENABLE(0), 8);
                for (i = 0; i < 8; i++)
-                       so_data(so, 1);
+                       so_data(so, 0);
+       }
+       if (blend_enabled) {
                so_method(so, tesla, NV50TCL_BLEND_EQUATION_RGB, 5);
-               so_data  (so, nvgl_blend_eqn(cso->rgb_func));
-               so_data  (so, 0x4000 | nvgl_blend_func(cso->rgb_src_factor));
-               so_data  (so, 0x4000 | nvgl_blend_func(cso->rgb_dst_factor));
-               so_data  (so, nvgl_blend_eqn(cso->alpha_func));
-               so_data  (so, 0x4000 | nvgl_blend_func(cso->alpha_src_factor));
+               so_data  (so, nvgl_blend_eqn(cso->rt[0].rgb_func));
+               so_data  (so, nv50_blend_func(cso->rt[0].rgb_src_factor));
+               so_data  (so, nv50_blend_func(cso->rt[0].rgb_dst_factor));
+               so_data  (so, nvgl_blend_eqn(cso->rt[0].alpha_func));
+               so_data  (so, nv50_blend_func(cso->rt[0].alpha_src_factor));
                so_method(so, tesla, NV50TCL_BLEND_FUNC_DST_ALPHA, 1);
-               so_data  (so, 0x4000 | nvgl_blend_func(cso->alpha_dst_factor));
+               so_data  (so, nv50_blend_func(cso->rt[0].alpha_dst_factor));
        }
 
        if (cso->logicop_enable == 0 ) {
@@ -71,17 +144,15 @@ nv50_blend_state_create(struct pipe_context *pipe,
                so_data  (so, nvgl_logicop_func(cso->logicop_func));
        }
 
-       if (cso->colormask & PIPE_MASK_R)
-               cmask |= (1 << 0);
-       if (cso->colormask & PIPE_MASK_G)
-               cmask |= (1 << 4);
-       if (cso->colormask & PIPE_MASK_B)
-               cmask |= (1 << 8);
-       if (cso->colormask & PIPE_MASK_A)
-               cmask |= (1 << 12);
        so_method(so, tesla, NV50TCL_COLOR_MASK(0), 8);
-       for (i = 0; i < 8; i++)
-               so_data(so, cmask);
+       if (cso->independent_blend_enable)
+               for (i = 0; i < 8; ++i)
+                       so_data(so, nv50_colormask(cso->rt[i].colormask));
+       else {
+               uint32_t cmask = nv50_colormask(cso->rt[0].colormask);
+               for (i = 0; i < 8; i++)
+                       so_data(so, cmask);
+       }
 
        bso->pipe = *cso;
        so_ref(so, &bso->so);
@@ -146,7 +217,6 @@ nv50_sampler_state_create(struct pipe_context *pipe,
                  (wrap_mode(cso->wrap_r) << 6));
 
        switch (cso->mag_img_filter) {
-       case PIPE_TEX_FILTER_ANISO:
        case PIPE_TEX_FILTER_LINEAR:
                tsc[1] |= NV50TSC_1_1_MAGF_LINEAR;
                break;
@@ -157,7 +227,6 @@ nv50_sampler_state_create(struct pipe_context *pipe,
        }
 
        switch (cso->min_img_filter) {
-       case PIPE_TEX_FILTER_ANISO:
        case PIPE_TEX_FILTER_LINEAR:
                tsc[1] |= NV50TSC_1_1_MINF_LINEAR;
                break;
@@ -180,18 +249,18 @@ nv50_sampler_state_create(struct pipe_context *pipe,
                break;
        }
 
-       if (cso->max_anisotropy >= 16.0)
+       if (cso->max_anisotropy >= 16)
                tsc[0] |= (7 << 20);
        else
-       if (cso->max_anisotropy >= 12.0)
+       if (cso->max_anisotropy >= 12)
                tsc[0] |= (6 << 20);
        else {
-               tsc[0] |= (int)(cso->max_anisotropy * 0.5f) << 20;
+               tsc[0] |= (cso->max_anisotropy >> 1) << 20;
 
-               if (cso->max_anisotropy >= 4.0)
+               if (cso->max_anisotropy >= 4)
                        tsc[1] |= NV50TSC_1_1_UNKN_ANISO_35;
                else
-               if (cso->max_anisotropy >= 2.0)
+               if (cso->max_anisotropy >= 2)
                        tsc[1] |= NV50TSC_1_1_UNKN_ANISO_15;
        }
 
@@ -216,6 +285,9 @@ nv50_sampler_state_create(struct pipe_context *pipe,
        return (void *)sso;
 }
 
+/* type == 0 for VPs, 1 for GPs, 2 for FPs, which is how the
+ * relevant tesla methods are indexed (NV50TCL_BIND_TSC etc.)
+ */
 static INLINE void
 nv50_sampler_state_bind(struct pipe_context *pipe, unsigned type,
                        unsigned nr, void **sampler)
@@ -231,13 +303,13 @@ nv50_sampler_state_bind(struct pipe_context *pipe, unsigned type,
 static void
 nv50_vp_sampler_state_bind(struct pipe_context *pipe, unsigned nr, void **s)
 {
-       nv50_sampler_state_bind(pipe, PIPE_SHADER_VERTEX, nr, s);
+       nv50_sampler_state_bind(pipe, 0, nr, s);
 }
 
 static void
 nv50_fp_sampler_state_bind(struct pipe_context *pipe, unsigned nr, void **s)
 {
-       nv50_sampler_state_bind(pipe, PIPE_SHADER_FRAGMENT, nr, s);
+       nv50_sampler_state_bind(pipe, 2, nr, s);
 }
 
 static void
@@ -247,55 +319,92 @@ nv50_sampler_state_delete(struct pipe_context *pipe, void *hwcso)
 }
 
 static INLINE void
-nv50_set_sampler_texture(struct pipe_context *pipe, unsigned type,
-                        unsigned nr, struct pipe_texture **pt)
+nv50_set_sampler_views(struct pipe_context *pipe, unsigned p,
+                      unsigned nr,
+                      struct pipe_sampler_view **views)
 {
        struct nv50_context *nv50 = nv50_context(pipe);
        unsigned i;
 
        for (i = 0; i < nr; i++)
-               pipe_texture_reference((void *)&nv50->miptree[type][i], pt[i]);
-       for (i = nr; i < nv50->miptree_nr[type]; i++)
-               pipe_texture_reference((void *)&nv50->miptree[type][i], NULL);
+               pipe_sampler_view_reference(&nv50->sampler_views[p][i],
+                                           views[i]);
+
+       for (i = nr; i < nv50->sampler_view_nr[p]; i++)
+               pipe_sampler_view_reference(&nv50->sampler_views[p][i], NULL);
 
-       nv50->miptree_nr[type] = nr;
+       nv50->sampler_view_nr[p] = nr;
        nv50->dirty |= NV50_NEW_TEXTURE;
 }
 
 static void
-nv50_set_vp_sampler_textures(struct pipe_context *pipe,
-                            unsigned nr, struct pipe_texture **pt)
+nv50_set_vp_sampler_views(struct pipe_context *pipe,
+                         unsigned nr,
+                         struct pipe_sampler_view **views)
+{
+       nv50_set_sampler_views(pipe, 0, nr, views);
+}
+
+static void
+nv50_set_fp_sampler_views(struct pipe_context *pipe,
+                         unsigned nr,
+                         struct pipe_sampler_view **views)
 {
-       nv50_set_sampler_texture(pipe, PIPE_SHADER_VERTEX, nr, pt);
+       nv50_set_sampler_views(pipe, 2, nr, views);
 }
 
 static void
-nv50_set_fp_sampler_textures(struct pipe_context *pipe,
-                            unsigned nr, struct pipe_texture **pt)
+nv50_sampler_view_destroy(struct pipe_context *pipe,
+                         struct pipe_sampler_view *view)
+{
+       pipe_resource_reference(&view->texture, NULL);
+       FREE(nv50_sampler_view(view));
+}
+
+static struct pipe_sampler_view *
+nv50_create_sampler_view(struct pipe_context *pipe,
+                        struct pipe_resource *texture,
+                        const struct pipe_sampler_view *templ)
 {
-       nv50_set_sampler_texture(pipe, PIPE_SHADER_FRAGMENT, nr, pt);
+       struct nv50_sampler_view *view = CALLOC_STRUCT(nv50_sampler_view);
+
+       view->pipe = *templ;
+       view->pipe.reference.count = 1;
+       view->pipe.texture = NULL;
+       pipe_resource_reference(&view->pipe.texture, texture);
+       view->pipe.context = pipe;
+
+       if (!nv50_tex_construct(view)) {
+               nv50_sampler_view_destroy(pipe, &view->pipe);
+               return NULL;
+       }
+       return &view->pipe;
 }
 
+
 static void *
 nv50_rasterizer_state_create(struct pipe_context *pipe,
                             const struct pipe_rasterizer_state *cso)
 {
-       struct nouveau_stateobj *so = so_new(64, 0);
+       struct nouveau_stateobj *so = so_new(16, 22, 0);
        struct nouveau_grobj *tesla = nv50_context(pipe)->screen->tesla;
        struct nv50_rasterizer_stateobj *rso =
                CALLOC_STRUCT(nv50_rasterizer_stateobj);
 
        /*XXX: ignored
-        *      - light_twosize
+        *      - light_twoside
         *      - point_smooth
         *      - multisample
         *      - point_sprite / sprite_coord_mode
         */
 
+       so_method(so, tesla, NV50TCL_SCISSOR_ENABLE(0), 1);
+       so_data  (so, cso->scissor);
+
        so_method(so, tesla, NV50TCL_SHADE_MODEL, 1);
        so_data  (so, cso->flatshade ? NV50TCL_SHADE_MODEL_FLAT :
                                       NV50TCL_SHADE_MODEL_SMOOTH);
-       so_method(so, tesla, 0x1684, 1);
+       so_method(so, tesla, NV50TCL_PROVOKING_VERTEX_LAST, 1);
        so_data  (so, cso->flatshade_first ? 0 : 1);
 
        so_method(so, tesla, NV50TCL_VERTEX_TWO_SIDE_ENABLE, 1);
@@ -320,79 +429,51 @@ nv50_rasterizer_state_create(struct pipe_context *pipe,
        so_data  (so, fui(cso->point_size));
 
        so_method(so, tesla, NV50TCL_POINT_SPRITE_ENABLE, 1);
-       so_data  (so, cso->point_sprite);
+       so_data  (so, cso->point_quad_rasterization ? 1 : 0);
 
        so_method(so, tesla, NV50TCL_POLYGON_MODE_FRONT, 3);
-       if (cso->front_winding == PIPE_WINDING_CCW) {
-               so_data(so, nvgl_polygon_mode(cso->fill_ccw));
-               so_data(so, nvgl_polygon_mode(cso->fill_cw));
-       } else {
-               so_data(so, nvgl_polygon_mode(cso->fill_cw));
-               so_data(so, nvgl_polygon_mode(cso->fill_ccw));
-       }
+        so_data(so, nvgl_polygon_mode(cso->fill_front));
+        so_data(so, nvgl_polygon_mode(cso->fill_back));
        so_data(so, cso->poly_smooth ? 1 : 0);
 
        so_method(so, tesla, NV50TCL_CULL_FACE_ENABLE, 3);
-       so_data  (so, cso->cull_mode != PIPE_WINDING_NONE);
-       if (cso->front_winding == PIPE_WINDING_CCW) {
+       so_data  (so, cso->cull_face != PIPE_FACE_NONE);
+       if (cso->front_ccw) {
                so_data(so, NV50TCL_FRONT_FACE_CCW);
-               switch (cso->cull_mode) {
-               case PIPE_WINDING_CCW:
-                       so_data(so, NV50TCL_CULL_FACE_FRONT);
-                       break;
-               case PIPE_WINDING_CW:
-                       so_data(so, NV50TCL_CULL_FACE_BACK);
-                       break;
-               case PIPE_WINDING_BOTH:
-                       so_data(so, NV50TCL_CULL_FACE_FRONT_AND_BACK);
-                       break;
-               default:
-                       so_data(so, NV50TCL_CULL_FACE_BACK);
-                       break;
-               }
-       } else {
+        }
+        else {
                so_data(so, NV50TCL_FRONT_FACE_CW);
-               switch (cso->cull_mode) {
-               case PIPE_WINDING_CCW:
-                       so_data(so, NV50TCL_CULL_FACE_BACK);
-                       break;
-               case PIPE_WINDING_CW:
-                       so_data(so, NV50TCL_CULL_FACE_FRONT);
-                       break;
-               case PIPE_WINDING_BOTH:
-                       so_data(so, NV50TCL_CULL_FACE_FRONT_AND_BACK);
-                       break;
-               default:
-                       so_data(so, NV50TCL_CULL_FACE_BACK);
-                       break;
-               }
+        }
+       switch (cso->cull_face) {
+       case PIPE_FACE_FRONT:
+               so_data(so, NV50TCL_CULL_FACE_FRONT);
+               break;
+       case PIPE_FACE_BACK:
+               so_data(so, NV50TCL_CULL_FACE_BACK);
+               break;
+       case PIPE_FACE_FRONT_AND_BACK:
+               so_data(so, NV50TCL_CULL_FACE_FRONT_AND_BACK);
+               break;
+       default:
+               so_data(so, NV50TCL_CULL_FACE_BACK);
+               break;
        }
 
        so_method(so, tesla, NV50TCL_POLYGON_STIPPLE_ENABLE, 1);
        so_data  (so, cso->poly_stipple_enable ? 1 : 0);
 
        so_method(so, tesla, NV50TCL_POLYGON_OFFSET_POINT_ENABLE, 3);
-       if ((cso->offset_cw && cso->fill_cw == PIPE_POLYGON_MODE_POINT) ||
-           (cso->offset_ccw && cso->fill_ccw == PIPE_POLYGON_MODE_POINT))
-               so_data(so, 1);
-       else
-               so_data(so, 0);
-       if ((cso->offset_cw && cso->fill_cw == PIPE_POLYGON_MODE_LINE) ||
-           (cso->offset_ccw && cso->fill_ccw == PIPE_POLYGON_MODE_LINE))
-               so_data(so, 1);
-       else
-               so_data(so, 0);
-       if ((cso->offset_cw && cso->fill_cw == PIPE_POLYGON_MODE_FILL) ||
-           (cso->offset_ccw && cso->fill_ccw == PIPE_POLYGON_MODE_FILL))
-               so_data(so, 1);
-       else
-               so_data(so, 0);
+        so_data(so, cso->offset_point);
+        so_data(so, cso->offset_line);
+        so_data(so, cso->offset_tri);
 
-       if (cso->offset_cw || cso->offset_ccw) {
+       if (cso->offset_point ||
+            cso->offset_line ||
+            cso->offset_tri) {
                so_method(so, tesla, NV50TCL_POLYGON_OFFSET_FACTOR, 1);
                so_data  (so, fui(cso->offset_scale));
                so_method(so, tesla, NV50TCL_POLYGON_OFFSET_UNITS, 1);
-               so_data  (so, fui(cso->offset_units));
+               so_data  (so, fui(cso->offset_units * 2.0f));
        }
 
        rso->pipe = *cso;
@@ -425,7 +506,7 @@ nv50_depth_stencil_alpha_state_create(struct pipe_context *pipe,
 {
        struct nouveau_grobj *tesla = nv50_context(pipe)->screen->tesla;
        struct nv50_zsa_stateobj *zsa = CALLOC_STRUCT(nv50_zsa_stateobj);
-       struct nouveau_stateobj *so = so_new(64, 0);
+       struct nouveau_stateobj *so = so_new(9, 21, 0);
 
        so_method(so, tesla, NV50TCL_DEPTH_WRITE_ENABLE, 1);
        so_data  (so, cso->depth.writemask ? 1 : 0);
@@ -439,35 +520,33 @@ nv50_depth_stencil_alpha_state_create(struct pipe_context *pipe,
                so_data  (so, 0);
        }
 
-       /* XXX: keep hex values until header is updated (names reversed) */
        if (cso->stencil[0].enabled) {
-               so_method(so, tesla, 0x1380, 8);
+               so_method(so, tesla, NV50TCL_STENCIL_FRONT_ENABLE, 5);
                so_data  (so, 1);
                so_data  (so, nvgl_stencil_op(cso->stencil[0].fail_op));
                so_data  (so, nvgl_stencil_op(cso->stencil[0].zfail_op));
                so_data  (so, nvgl_stencil_op(cso->stencil[0].zpass_op));
                so_data  (so, nvgl_comparison_op(cso->stencil[0].func));
-               so_data  (so, cso->stencil[0].ref_value);
+               so_method(so, tesla, NV50TCL_STENCIL_FRONT_MASK, 2);
                so_data  (so, cso->stencil[0].writemask);
                so_data  (so, cso->stencil[0].valuemask);
        } else {
-               so_method(so, tesla, 0x1380, 1);
+               so_method(so, tesla, NV50TCL_STENCIL_FRONT_ENABLE, 1);
                so_data  (so, 0);
        }
 
        if (cso->stencil[1].enabled) {
-               so_method(so, tesla, 0x1594, 5);
+               so_method(so, tesla, NV50TCL_STENCIL_BACK_ENABLE, 5);
                so_data  (so, 1);
                so_data  (so, nvgl_stencil_op(cso->stencil[1].fail_op));
                so_data  (so, nvgl_stencil_op(cso->stencil[1].zfail_op));
                so_data  (so, nvgl_stencil_op(cso->stencil[1].zpass_op));
                so_data  (so, nvgl_comparison_op(cso->stencil[1].func));
-               so_method(so, tesla, 0x0f54, 3);
-               so_data  (so, cso->stencil[1].ref_value);
+               so_method(so, tesla, NV50TCL_STENCIL_BACK_MASK, 2);
                so_data  (so, cso->stencil[1].writemask);
                so_data  (so, cso->stencil[1].valuemask);
        } else {
-               so_method(so, tesla, 0x1594, 1);
+               so_method(so, tesla, NV50TCL_STENCIL_BACK_ENABLE, 1);
                so_data  (so, 0);
        }
 
@@ -514,7 +593,6 @@ nv50_vp_state_create(struct pipe_context *pipe,
 
        p->pipe.tokens = tgsi_dup_tokens(cso->tokens);
        p->type = PIPE_SHADER_VERTEX;
-       tgsi_scan_shader(p->pipe.tokens, &p->info);
        return (void *)p;
 }
 
@@ -534,7 +612,7 @@ nv50_vp_state_delete(struct pipe_context *pipe, void *hwcso)
        struct nv50_program *p = hwcso;
 
        nv50_program_destroy(nv50, p);
-       FREE((void*)p->pipe.tokens);
+       FREE((void *)p->pipe.tokens);
        FREE(p);
 }
 
@@ -546,7 +624,6 @@ nv50_fp_state_create(struct pipe_context *pipe,
 
        p->pipe.tokens = tgsi_dup_tokens(cso->tokens);
        p->type = PIPE_SHADER_FRAGMENT;
-       tgsi_scan_shader(p->pipe.tokens, &p->info);
        return (void *)p;
 }
 
@@ -566,7 +643,38 @@ nv50_fp_state_delete(struct pipe_context *pipe, void *hwcso)
        struct nv50_program *p = hwcso;
 
        nv50_program_destroy(nv50, p);
-       FREE((void*)p->pipe.tokens);
+       FREE((void *)p->pipe.tokens);
+       FREE(p);
+}
+
+static void *
+nv50_gp_state_create(struct pipe_context *pipe,
+                    const struct pipe_shader_state *cso)
+{
+       struct nv50_program *p = CALLOC_STRUCT(nv50_program);
+
+       p->pipe.tokens = tgsi_dup_tokens(cso->tokens);
+       p->type = PIPE_SHADER_GEOMETRY;
+       return (void *)p;
+}
+
+static void
+nv50_gp_state_bind(struct pipe_context *pipe, void *hwcso)
+{
+       struct nv50_context *nv50 = nv50_context(pipe);
+
+       nv50->fragprog = hwcso;
+       nv50->dirty |= NV50_NEW_GEOMPROG;
+}
+
+static void
+nv50_gp_state_delete(struct pipe_context *pipe, void *hwcso)
+{
+       struct nv50_context *nv50 = nv50_context(pipe);
+       struct nv50_program *p = hwcso;
+
+       nv50_program_destroy(nv50, p);
+       FREE((void *)p->pipe.tokens);
        FREE(p);
 }
 
@@ -580,15 +688,35 @@ nv50_set_blend_color(struct pipe_context *pipe,
        nv50->dirty |= NV50_NEW_BLEND_COLOUR;
 }
 
+ static void
+nv50_set_stencil_ref(struct pipe_context *pipe,
+                    const struct pipe_stencil_ref *sr)
+{
+       struct nv50_context *nv50 = nv50_context(pipe);
+
+       nv50->stencil_ref = *sr;
+       nv50->dirty |= NV50_NEW_STENCIL_REF;
+}
+
 static void
 nv50_set_clip_state(struct pipe_context *pipe,
                    const struct pipe_clip_state *clip)
+{
+       struct nv50_context *nv50 = nv50_context(pipe);
+
+       nv50->clip.depth_clamp = clip->depth_clamp;
+       nv50->dirty |= NV50_NEW_CLIP;
+}
+
+static void
+nv50_set_sample_mask(struct pipe_context *pipe,
+                    unsigned sample_mask)
 {
 }
 
 static void
 nv50_set_constant_buffer(struct pipe_context *pipe, uint shader, uint index,
-                        struct pipe_buffer *buf )
+                        struct pipe_resource *buf )
 {
        struct nv50_context *nv50 = nv50_context(pipe);
 
@@ -599,6 +727,10 @@ nv50_set_constant_buffer(struct pipe_context *pipe, uint shader, uint index,
        if (shader == PIPE_SHADER_FRAGMENT) {
                nv50->constbuf[PIPE_SHADER_FRAGMENT] = buf;
                nv50->dirty |= NV50_NEW_FRAGPROG_CB;
+       } else
+       if (shader == PIPE_SHADER_GEOMETRY) {
+               nv50->constbuf[PIPE_SHADER_GEOMETRY] = buf;
+               nv50->dirty |= NV50_NEW_GEOMPROG_CB;
        }
 }
 
@@ -655,14 +787,47 @@ nv50_set_vertex_buffers(struct pipe_context *pipe, unsigned count,
 }
 
 static void
-nv50_set_vertex_elements(struct pipe_context *pipe, unsigned count,
-                        const struct pipe_vertex_element *ve)
+nv50_set_index_buffer(struct pipe_context *pipe,
+                     const struct pipe_index_buffer *ib)
 {
        struct nv50_context *nv50 = nv50_context(pipe);
 
-       memcpy(nv50->vtxelt, ve, sizeof(*ve) * count);
-       nv50->vtxelt_nr = count;
+       if (ib)
+               memcpy(&nv50->idxbuf, ib, sizeof(nv50->idxbuf));
+       else
+               memset(&nv50->idxbuf, 0, sizeof(nv50->idxbuf));
+
+       /* TODO make this more like a state */
+}
+
+static void *
+nv50_vtxelts_state_create(struct pipe_context *pipe,
+                         unsigned num_elements,
+                         const struct pipe_vertex_element *elements)
+{
+       struct nv50_vtxelt_stateobj *cso = CALLOC_STRUCT(nv50_vtxelt_stateobj);
+
+       assert(num_elements < 16); /* not doing fallbacks yet */
+       cso->num_elements = num_elements;
+       memcpy(cso->pipe, elements, num_elements * sizeof(*elements));
+
+       nv50_vtxelt_construct(cso);
+
+       return (void *)cso;
+}
+
+static void
+nv50_vtxelts_state_delete(struct pipe_context *pipe, void *hwcso)
+{
+       FREE(hwcso);
+}
 
+static void
+nv50_vtxelts_state_bind(struct pipe_context *pipe, void *hwcso)
+{
+       struct nv50_context *nv50 = nv50_context(pipe);
+
+       nv50->vtxelt = hwcso;
        nv50->dirty |= NV50_NEW_ARRAYS;
 }
 
@@ -677,8 +842,10 @@ nv50_init_state_functions(struct nv50_context *nv50)
        nv50->pipe.delete_sampler_state = nv50_sampler_state_delete;
        nv50->pipe.bind_fragment_sampler_states = nv50_fp_sampler_state_bind;
        nv50->pipe.bind_vertex_sampler_states   = nv50_vp_sampler_state_bind;
-       nv50->pipe.set_fragment_sampler_textures = nv50_set_fp_sampler_textures;
-       nv50->pipe.set_vertex_sampler_textures   = nv50_set_vp_sampler_textures;
+       nv50->pipe.set_fragment_sampler_views = nv50_set_fp_sampler_views;
+       nv50->pipe.set_vertex_sampler_views   = nv50_set_vp_sampler_views;
+       nv50->pipe.create_sampler_view = nv50_create_sampler_view;
+       nv50->pipe.sampler_view_destroy = nv50_sampler_view_destroy;
 
        nv50->pipe.create_rasterizer_state = nv50_rasterizer_state_create;
        nv50->pipe.bind_rasterizer_state = nv50_rasterizer_state_bind;
@@ -699,15 +866,25 @@ nv50_init_state_functions(struct nv50_context *nv50)
        nv50->pipe.bind_fs_state = nv50_fp_state_bind;
        nv50->pipe.delete_fs_state = nv50_fp_state_delete;
 
+       nv50->pipe.create_gs_state = nv50_gp_state_create;
+       nv50->pipe.bind_gs_state = nv50_gp_state_bind;
+       nv50->pipe.delete_gs_state = nv50_gp_state_delete;
+
        nv50->pipe.set_blend_color = nv50_set_blend_color;
+        nv50->pipe.set_stencil_ref = nv50_set_stencil_ref;
        nv50->pipe.set_clip_state = nv50_set_clip_state;
+       nv50->pipe.set_sample_mask = nv50_set_sample_mask;
        nv50->pipe.set_constant_buffer = nv50_set_constant_buffer;
        nv50->pipe.set_framebuffer_state = nv50_set_framebuffer_state;
        nv50->pipe.set_polygon_stipple = nv50_set_polygon_stipple;
        nv50->pipe.set_scissor_state = nv50_set_scissor_state;
        nv50->pipe.set_viewport_state = nv50_set_viewport_state;
 
+       nv50->pipe.create_vertex_elements_state = nv50_vtxelts_state_create;
+       nv50->pipe.delete_vertex_elements_state = nv50_vtxelts_state_delete;
+       nv50->pipe.bind_vertex_elements_state = nv50_vtxelts_state_bind;
+
        nv50->pipe.set_vertex_buffers = nv50_set_vertex_buffers;
-       nv50->pipe.set_vertex_elements = nv50_set_vertex_elements;
+       nv50->pipe.set_index_buffer = nv50_set_index_buffer;
 }