Merge branch 'llvm-cliptest-viewport'
[mesa.git] / src / gallium / drivers / r600 / r600_asm.c
index 16c98504ad9207da48b5eebebbe97f7825c610ab..d13da0ef6381f9960dce766c903e17625dc8533b 100644 (file)
  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  * USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
-#include "r600_asm.h"
-#include "r600_context.h"
-#include "util/u_memory.h"
-#include "r600_sq.h"
 #include <stdio.h>
 #include <errno.h>
+#include "util/u_memory.h"
+#include "r600_pipe.h"
+#include "r600_sq.h"
+#include "r600_opcodes.h"
+#include "r600_asm.h"
+
+static inline unsigned int r600_bc_get_num_operands(struct r600_bc_alu *alu)
+{
+       if(alu->is_op3)
+               return 3;
+
+       switch (alu->inst) {
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_NOP:
+               return 0;
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_ADD:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLGT:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLGE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_KILLNE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MUL: 
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MAX:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MIN:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SETE: 
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SETNE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SETGT:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SETGE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_PRED_SETE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_PRED_SETGT:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_PRED_SETGE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_PRED_SETNE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_DOT4:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_DOT4_IEEE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_CUBE:
+               return 2;  
+               
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MOV: 
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MOVA_FLOOR:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FRACT:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLOOR:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_TRUNC:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_EXP_IEEE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_LOG_CLAMPED:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_LOG_IEEE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_RECIP_IEEE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_RECIPSQRT_IEEE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLT_TO_INT:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SIN:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_COS:
+               return 1;
+       default: R600_ERR(
+               "Need instruction operand number for 0x%x.\n", alu->inst); 
+       };
+       
+       return 3;
+}
 
 int r700_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsigned id);
 
@@ -49,6 +100,7 @@ static struct r600_bc_alu *r600_bc_alu(void)
        if (alu == NULL)
                return NULL;
        LIST_INITHEAD(&alu->list);
+       LIST_INITHEAD(&alu->bs_list);
        return alu;
 }
 
@@ -76,6 +128,34 @@ int r600_bc_init(struct r600_bc *bc, enum radeon_family family)
 {
        LIST_INITHEAD(&bc->cf);
        bc->family = family;
+       switch (bc->family) {
+       case CHIP_R600:
+       case CHIP_RV610:
+       case CHIP_RV630:
+       case CHIP_RV670:
+       case CHIP_RV620:
+       case CHIP_RV635:
+       case CHIP_RS780:
+       case CHIP_RS880:
+               bc->chiprev = 0;
+               break;
+       case CHIP_RV770:
+       case CHIP_RV730:
+       case CHIP_RV710:
+       case CHIP_RV740:
+               bc->chiprev = 1;
+               break;
+       case CHIP_CEDAR:
+       case CHIP_REDWOOD:
+       case CHIP_JUNIPER:
+       case CHIP_CYPRESS:
+       case CHIP_HEMLOCK:
+               bc->chiprev = 2;
+               break;
+       default:
+               R600_ERR("unknown family %d\n", bc->family);
+               return -EINVAL;
+       }
        return 0;
 }
 
@@ -107,7 +187,225 @@ int r600_bc_add_output(struct r600_bc *bc, const struct r600_bc_output *output)
        return 0;
 }
 
-int r600_bc_add_alu(struct r600_bc *bc, const struct r600_bc_alu *alu)
+const unsigned bank_swizzle_vec[8] = {SQ_ALU_VEC_210,  //000
+                                     SQ_ALU_VEC_120,  //001
+                                     SQ_ALU_VEC_102,  //010
+
+                                     SQ_ALU_VEC_201,  //011
+                                     SQ_ALU_VEC_012,  //100
+                                     SQ_ALU_VEC_021,  //101
+
+                                     SQ_ALU_VEC_012,  //110
+                                     SQ_ALU_VEC_012}; //111
+
+const unsigned bank_swizzle_scl[8] = {SQ_ALU_SCL_210,  //000
+                                     SQ_ALU_SCL_122,  //001 
+                                     SQ_ALU_SCL_122,  //010
+                                     
+                                     SQ_ALU_SCL_221,  //011
+                                     SQ_ALU_SCL_212,  //100
+                                     SQ_ALU_SCL_122,  //101
+
+                                     SQ_ALU_SCL_122,  //110
+                                     SQ_ALU_SCL_122}; //111
+
+static int init_gpr(struct r600_bc_alu *alu)
+{
+       int cycle, component;
+       /* set up gpr use */
+       for (cycle = 0; cycle < NUM_OF_CYCLES; cycle++)
+               for (component = 0; component < NUM_OF_COMPONENTS; component++)
+                        alu->hw_gpr[cycle][component] = -1;
+       return 0;
+}
+
+#if 0
+static int reserve_gpr(struct r600_bc_alu *alu, unsigned sel, unsigned chan, unsigned cycle)
+{
+       if (alu->hw_gpr[cycle][chan] < 0)
+               alu->hw_gpr[cycle][chan] = sel;
+       else if (alu->hw_gpr[cycle][chan] != (int)sel) {
+               R600_ERR("Another scalar operation has already used GPR read port for channel\n");
+               return -1;
+       }
+       return 0;
+}
+
+static int cycle_for_scalar_bank_swizzle(const int swiz, const int sel, unsigned *p_cycle)
+{
+       int table[3];
+       int ret = 0;
+       switch (swiz) {
+       case SQ_ALU_SCL_210:
+               table[0] = 2; table[1] = 1; table[2] = 0;
+                *p_cycle = table[sel];
+                break;
+       case SQ_ALU_SCL_122:
+               table[0] = 1; table[1] = 2; table[2] = 2;
+                *p_cycle = table[sel];
+                break;
+       case SQ_ALU_SCL_212:
+               table[0] = 2; table[1] = 1; table[2] = 2;
+                *p_cycle = table[sel];
+                break;
+       case SQ_ALU_SCL_221:
+               table[0] = 2; table[1] = 2; table[2] = 1;
+               *p_cycle = table[sel];
+                break;
+               break;
+       default:
+               R600_ERR("bad scalar bank swizzle value\n");
+               ret = -1;
+               break;
+       }
+       return ret;
+}
+
+static int cycle_for_vector_bank_swizzle(const int swiz, const int sel, unsigned *p_cycle)
+{
+       int table[3];
+       int ret;
+
+       switch (swiz) {
+       case SQ_ALU_VEC_012:
+               table[0] = 0; table[1] = 1; table[2] = 2;
+                *p_cycle = table[sel];
+                break;
+       case SQ_ALU_VEC_021:
+               table[0] = 0; table[1] = 2; table[2] = 1;
+                *p_cycle = table[sel];
+                break;
+       case SQ_ALU_VEC_120:
+               table[0] = 1; table[1] = 2; table[2] = 0;
+                *p_cycle = table[sel];
+                break;
+       case SQ_ALU_VEC_102:
+               table[0] = 1; table[1] = 0; table[2] = 2;
+                *p_cycle = table[sel];
+                break;
+       case SQ_ALU_VEC_201:
+               table[0] = 2; table[1] = 0; table[2] = 1;
+                *p_cycle = table[sel];
+                break;
+       case SQ_ALU_VEC_210:
+               table[0] = 2; table[1] = 1; table[2] = 0;
+                *p_cycle = table[sel];
+                break;
+       default:
+               R600_ERR("bad vector bank swizzle value\n");
+               ret = -1;
+               break;
+       }
+       return ret;
+}
+
+
+
+static void update_chan_counter(struct r600_bc_alu *alu, int *chan_counter)
+{
+       int num_src;
+       int i;
+       int channel_swizzle;
+
+       num_src = r600_bc_get_num_operands(alu);
+
+       for (i = 0; i < num_src; i++) {
+               channel_swizzle = alu->src[i].chan;
+               if ((alu->src[i].sel > 0 && alu->src[i].sel < 128) && channel_swizzle <= 3)
+                       chan_counter[channel_swizzle]++;
+       }
+}
+
+/* we need something like this I think - but this is bogus */
+int check_read_slots(struct r600_bc *bc, struct r600_bc_alu *alu_first)
+{
+       struct r600_bc_alu *alu;
+       int chan_counter[4]  = { 0 };
+
+       update_chan_counter(alu_first, chan_counter);
+
+       LIST_FOR_EACH_ENTRY(alu, &alu_first->bs_list, bs_list) {
+               update_chan_counter(alu, chan_counter);
+       }
+
+       if (chan_counter[0] > 3 ||
+           chan_counter[1] > 3 ||
+           chan_counter[2] > 3 ||
+           chan_counter[3] > 3) {
+               R600_ERR("needed to split instruction for input ran out of banks %x %d %d %d %d\n",
+                        alu_first->inst, chan_counter[0], chan_counter[1], chan_counter[2], chan_counter[3]);
+               return -1;
+       }
+       return 0;
+}
+#endif
+
+static int is_const(int sel)
+{
+       if (sel > 255 && sel < 512)
+               return 1;
+       if (sel >= V_SQ_ALU_SRC_0 && sel <= V_SQ_ALU_SRC_LITERAL)
+               return 1;
+       return 0;
+}
+
+static int check_scalar(struct r600_bc *bc, struct r600_bc_alu *alu)
+{
+       unsigned swizzle_key;
+
+       if (alu->bank_swizzle_force) {
+               alu->bank_swizzle = alu->bank_swizzle_force;
+               return 0;
+       }
+       swizzle_key = (is_const(alu->src[0].sel) ? 4 : 0 ) + 
+               (is_const(alu->src[1].sel) ? 2 : 0 ) + 
+               (is_const(alu->src[2].sel) ? 1 : 0 );
+
+       alu->bank_swizzle = bank_swizzle_scl[swizzle_key];
+       return 0;
+}
+
+static int check_vector(struct r600_bc *bc, struct r600_bc_alu *alu)
+{
+       unsigned swizzle_key;
+
+       if (alu->bank_swizzle_force) {
+               alu->bank_swizzle = alu->bank_swizzle_force;
+               return 0;
+       }
+       swizzle_key = (is_const(alu->src[0].sel) ? 4 : 0 ) + 
+               (is_const(alu->src[1].sel) ? 2 : 0 ) + 
+               (is_const(alu->src[2].sel) ? 1 : 0 );
+
+       alu->bank_swizzle = bank_swizzle_vec[swizzle_key];
+       return 0;
+}
+
+static int check_and_set_bank_swizzle(struct r600_bc *bc, struct r600_bc_alu *alu_first)
+{
+       struct r600_bc_alu *alu = NULL;
+       int num_instr = 1;
+
+       init_gpr(alu_first);
+
+       LIST_FOR_EACH_ENTRY(alu, &alu_first->bs_list, bs_list) {
+               num_instr++;
+       }
+
+       if (num_instr == 1) {
+               check_scalar(bc, alu_first);
+               
+       } else {
+/*             check_read_slots(bc, bc->cf_last->curr_bs_head);*/
+               check_vector(bc, alu_first);
+               LIST_FOR_EACH_ENTRY(alu, &alu_first->bs_list, bs_list) {
+                       check_vector(bc, alu);
+               }
+       }
+       return 0;
+}
+
+int r600_bc_add_alu_type(struct r600_bc *bc, const struct r600_bc_alu *alu, int type)
 {
        struct r600_bc_alu *nalu = r600_bc_alu();
        struct r600_bc_alu *lalu;
@@ -119,17 +417,24 @@ int r600_bc_add_alu(struct r600_bc *bc, const struct r600_bc_alu *alu)
        nalu->nliteral = 0;
 
        /* cf can contains only alu or only vtx or only tex */
-       if (bc->cf_last == NULL || bc->cf_last->inst != (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3) ||
+       if (bc->cf_last == NULL || bc->cf_last->inst != (type << 3) ||
                bc->force_add_cf) {
-               /* at most 128 slots, one add alu can add 4 slots + 4 constant worst case */
                r = r600_bc_add_cf(bc);
                if (r) {
                        free(nalu);
                        return r;
                }
-               bc->cf_last->inst = V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3;
+               bc->cf_last->inst = (type << 3);
+       }
+       if (!bc->cf_last->curr_bs_head) {
+               bc->cf_last->curr_bs_head = nalu;
+               LIST_INITHEAD(&nalu->bs_list);
+       } else {
+               LIST_ADDTAIL(&nalu->bs_list, &bc->cf_last->curr_bs_head->bs_list);
        }
-       if (alu->last && (bc->cf_last->ndw >> 1) >= 124) {
+       /* at most 128 slots, one add alu can add 4 slots + 4 constants(2 slots)
+        * worst case */
+       if (alu->last && (bc->cf_last->ndw >> 1) >= 120) {
                bc->force_add_cf = 1;
        }
        /* number of gpr == the last gpr used in any alu */
@@ -159,32 +464,57 @@ int r600_bc_add_alu(struct r600_bc *bc, const struct r600_bc_alu *alu)
        /* each alu use 2 dwords */
        bc->cf_last->ndw += 2;
        bc->ndw += 2;
+
+       bc->cf_last->kcache0_mode = 2;
+
+       /* process cur ALU instructions for bank swizzle */
+       if (alu->last) {
+               check_and_set_bank_swizzle(bc, bc->cf_last->curr_bs_head);
+               bc->cf_last->curr_bs_head = NULL;
+       }
        return 0;
 }
 
+int r600_bc_add_alu(struct r600_bc *bc, const struct r600_bc_alu *alu)
+{
+       return r600_bc_add_alu_type(bc, alu, BC_INST(bc, V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU));
+}
+
 int r600_bc_add_literal(struct r600_bc *bc, const u32 *value)
 {
        struct r600_bc_alu *alu;
 
        if (bc->cf_last == NULL) {
-               R600_ERR("no last CF\n");
-               return -EINVAL;
+               return 0;
        }
        if (bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_TEX) {
                return 0;
        }
-       if (bc->cf_last->inst != (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3) ||
+       /* all same on EG */
+       if (bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_JUMP ||
+           bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_ELSE ||
+           bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_LOOP_START_NO_AL ||
+           bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_LOOP_BREAK ||
+           bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_LOOP_CONTINUE ||
+           bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_LOOP_END ||
+           bc->cf_last->inst == V_SQ_CF_WORD1_SQ_CF_INST_POP) {
+               return 0;
+       }
+       /* same on EG */
+       if (((bc->cf_last->inst != (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3)) &&
+            (bc->cf_last->inst != (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU_PUSH_BEFORE << 3))) ||
                LIST_IS_EMPTY(&bc->cf_last->alu)) {
                R600_ERR("last CF is not ALU (%p)\n", bc->cf_last);
                return -EINVAL;
        }
        alu = LIST_ENTRY(struct r600_bc_alu, bc->cf_last->alu.prev, list);
-       if (!alu->last || !alu->nliteral) {
+       if (!alu->last || !alu->nliteral || alu->literal_added) {
                return 0;
        }
        memcpy(alu->value, value, 4 * 4);
        bc->cf_last->ndw += alu->nliteral;
        bc->ndw += alu->nliteral;
+       alu->literal_added = 1;
        return 0;
 }
 
@@ -200,7 +530,8 @@ int r600_bc_add_vtx(struct r600_bc *bc, const struct r600_bc_vtx *vtx)
        /* cf can contains only alu or only vtx or only tex */
        if (bc->cf_last == NULL ||
                (bc->cf_last->inst != V_SQ_CF_WORD1_SQ_CF_INST_VTX &&
-                bc->cf_last->inst != V_SQ_CF_WORD1_SQ_CF_INST_VTX_TC)) {
+                bc->cf_last->inst != V_SQ_CF_WORD1_SQ_CF_INST_VTX_TC) ||
+                bc->force_add_cf) {
                r = r600_bc_add_cf(bc);
                if (r) {
                        free(nvtx);
@@ -212,6 +543,8 @@ int r600_bc_add_vtx(struct r600_bc *bc, const struct r600_bc_vtx *vtx)
        /* each fetch use 4 dwords */
        bc->cf_last->ndw += 4;
        bc->ndw += 4;
+       if ((bc->ndw / 4) > 7)
+               bc->force_add_cf = 1;
        return 0;
 }
 
@@ -226,7 +559,8 @@ int r600_bc_add_tex(struct r600_bc *bc, const struct r600_bc_tex *tex)
 
        /* cf can contains only alu or only vtx or only tex */
        if (bc->cf_last == NULL ||
-               bc->cf_last->inst != V_SQ_CF_WORD1_SQ_CF_INST_TEX) {
+               bc->cf_last->inst != V_SQ_CF_WORD1_SQ_CF_INST_TEX ||
+               bc->force_add_cf) {
                r = r600_bc_add_cf(bc);
                if (r) {
                        free(ntex);
@@ -238,9 +572,24 @@ int r600_bc_add_tex(struct r600_bc *bc, const struct r600_bc_tex *tex)
        /* each texture fetch use 4 dwords */
        bc->cf_last->ndw += 4;
        bc->ndw += 4;
+       if ((bc->ndw / 4) > 7)
+               bc->force_add_cf = 1;
        return 0;
 }
 
+int r600_bc_add_cfinst(struct r600_bc *bc, int inst)
+{
+       int r;
+       r = r600_bc_add_cf(bc);
+       if (r)
+               return r;
+
+       bc->cf_last->cond = V_SQ_CF_COND_ACTIVE;
+       bc->cf_last->inst = inst;
+       return 0;
+}
+
+/* common to all 3 families */
 static int r600_bc_vtx_build(struct r600_bc *bc, struct r600_bc_vtx *vtx, unsigned id)
 {
        bc->bytecode[id++] = S_SQ_VTX_WORD0_BUFFER_ID(vtx->buffer_id) |
@@ -251,13 +600,18 @@ static int r600_bc_vtx_build(struct r600_bc *bc, struct r600_bc_vtx *vtx, unsign
                                S_SQ_VTX_WORD1_DST_SEL_Y(vtx->dst_sel_y) |
                                S_SQ_VTX_WORD1_DST_SEL_Z(vtx->dst_sel_z) |
                                S_SQ_VTX_WORD1_DST_SEL_W(vtx->dst_sel_w) |
-                               S_SQ_VTX_WORD1_USE_CONST_FIELDS(1) |
+                               S_SQ_VTX_WORD1_USE_CONST_FIELDS(vtx->use_const_fields) |
+                               S_SQ_VTX_WORD1_DATA_FORMAT(vtx->data_format) |
+                               S_SQ_VTX_WORD1_NUM_FORMAT_ALL(vtx->num_format_all) |
+                               S_SQ_VTX_WORD1_FORMAT_COMP_ALL(vtx->format_comp_all) |
+                               S_SQ_VTX_WORD1_SRF_MODE_ALL(vtx->srf_mode_all) |
                                S_SQ_VTX_WORD1_GPR_DST_GPR(vtx->dst_gpr);
        bc->bytecode[id++] = S_SQ_VTX_WORD2_MEGA_FETCH(1);
        bc->bytecode[id++] = 0;
        return 0;
 }
 
+/* common to all 3 families */
 static int r600_bc_tex_build(struct r600_bc *bc, struct r600_bc_tex *tex, unsigned id)
 {
        bc->bytecode[id++] = S_SQ_TEX_WORD0_TEX_INST(tex->inst) |
@@ -287,43 +641,50 @@ static int r600_bc_tex_build(struct r600_bc *bc, struct r600_bc_tex *tex, unsign
        return 0;
 }
 
+/* r600 only, r700/eg bits in r700_asm.c */
 static int r600_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsigned id)
 {
        unsigned i;
 
        /* don't replace gpr by pv or ps for destination register */
+       bc->bytecode[id++] = S_SQ_ALU_WORD0_SRC0_SEL(alu->src[0].sel) |
+                               S_SQ_ALU_WORD0_SRC0_REL(alu->src[0].rel) |
+                               S_SQ_ALU_WORD0_SRC0_CHAN(alu->src[0].chan) |
+                               S_SQ_ALU_WORD0_SRC0_NEG(alu->src[0].neg) |
+                               S_SQ_ALU_WORD0_SRC1_SEL(alu->src[1].sel) |
+                               S_SQ_ALU_WORD0_SRC1_REL(alu->src[1].rel) |
+                               S_SQ_ALU_WORD0_SRC1_CHAN(alu->src[1].chan) |
+                               S_SQ_ALU_WORD0_SRC1_NEG(alu->src[1].neg) |
+                               S_SQ_ALU_WORD0_LAST(alu->last);
+
        if (alu->is_op3) {
-               bc->bytecode[id++] = S_SQ_ALU_WORD0_SRC0_SEL(alu->src[0].sel) |
-                                       S_SQ_ALU_WORD0_SRC0_CHAN(alu->src[0].chan) |
-                                       S_SQ_ALU_WORD0_SRC1_SEL(alu->src[1].sel) |
-                                       S_SQ_ALU_WORD0_SRC1_CHAN(alu->src[1].chan) |
-                                       S_SQ_ALU_WORD0_LAST(alu->last);
                bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) |
                                        S_SQ_ALU_WORD1_DST_CHAN(alu->dst.chan) |
+                                       S_SQ_ALU_WORD1_DST_REL(alu->dst.rel) |
                                        S_SQ_ALU_WORD1_CLAMP(alu->dst.clamp) |
                                        S_SQ_ALU_WORD1_OP3_SRC2_SEL(alu->src[2].sel) |
+                                       S_SQ_ALU_WORD1_OP3_SRC2_REL(alu->src[2].rel) |
                                        S_SQ_ALU_WORD1_OP3_SRC2_CHAN(alu->src[2].chan) |
                                        S_SQ_ALU_WORD1_OP3_SRC2_NEG(alu->src[2].neg) |
                                        S_SQ_ALU_WORD1_OP3_ALU_INST(alu->inst) |
-                                       S_SQ_ALU_WORD1_BANK_SWIZZLE(0);
+                                       S_SQ_ALU_WORD1_BANK_SWIZZLE(alu->bank_swizzle);
        } else {
-               bc->bytecode[id++] = S_SQ_ALU_WORD0_SRC0_SEL(alu->src[0].sel) |
-                                       S_SQ_ALU_WORD0_SRC0_CHAN(alu->src[0].chan) |
-                                       S_SQ_ALU_WORD0_SRC0_NEG(alu->src[0].neg) |
-                                       S_SQ_ALU_WORD0_SRC1_SEL(alu->src[1].sel) |
-                                       S_SQ_ALU_WORD0_SRC1_CHAN(alu->src[1].chan) |
-                                       S_SQ_ALU_WORD0_SRC1_NEG(alu->src[1].neg) |
-                                       S_SQ_ALU_WORD0_LAST(alu->last);
                bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) |
                                        S_SQ_ALU_WORD1_DST_CHAN(alu->dst.chan) |
+                                       S_SQ_ALU_WORD1_DST_REL(alu->dst.rel) |
                                        S_SQ_ALU_WORD1_CLAMP(alu->dst.clamp) |
                                        S_SQ_ALU_WORD1_OP2_SRC0_ABS(alu->src[0].abs) |
                                        S_SQ_ALU_WORD1_OP2_SRC1_ABS(alu->src[1].abs) |
                                        S_SQ_ALU_WORD1_OP2_WRITE_MASK(alu->dst.write) |
                                        S_SQ_ALU_WORD1_OP2_ALU_INST(alu->inst) |
-                                       S_SQ_ALU_WORD1_BANK_SWIZZLE(0);
+                                       S_SQ_ALU_WORD1_BANK_SWIZZLE(alu->bank_swizzle) |
+                                       S_SQ_ALU_WORD1_OP2_UPDATE_EXECUTE_MASK(alu->predicate) |
+                                       S_SQ_ALU_WORD1_OP2_UPDATE_PRED(alu->predicate);
        }
        if (alu->last) {
+               if (alu->nliteral && !alu->literal_added) {
+                       R600_ERR("Bug in ALU processing for instruction 0x%08x, literal not added correctly\n", alu->inst);
+               }
                for (i = 0; i < alu->nliteral; i++) {
                        bc->bytecode[id++] = alu->value[i];
                }
@@ -331,15 +692,20 @@ static int r600_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsign
        return 0;
 }
 
+/* common for r600/r700 - eg in eg_asm.c */
 static int r600_bc_cf_build(struct r600_bc *bc, struct r600_bc_cf *cf)
 {
        unsigned id = cf->id;
 
        switch (cf->inst) {
        case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3):
-               bc->bytecode[id++] = S_SQ_CF_ALU_WORD0_ADDR(cf->addr >> 1);
+       case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU_PUSH_BEFORE << 3):
+               bc->bytecode[id++] = S_SQ_CF_ALU_WORD0_ADDR(cf->addr >> 1) |
+                       S_SQ_CF_ALU_WORD0_KCACHE_MODE0(cf->kcache0_mode);
+
                bc->bytecode[id++] = S_SQ_CF_ALU_WORD1_CF_INST(cf->inst >> 3) |
                                        S_SQ_CF_ALU_WORD1_BARRIER(1) |
+                                       S_SQ_CF_ALU_WORD1_USES_WATERFALL(bc->chiprev == 0 ? cf->r6xx_uses_waterfall : 0) |
                                        S_SQ_CF_ALU_WORD1_COUNT((cf->ndw / 2) - 1);
                break;
        case V_SQ_CF_WORD1_SQ_CF_INST_TEX:
@@ -364,6 +730,20 @@ static int r600_bc_cf_build(struct r600_bc *bc, struct r600_bc_cf *cf)
                        S_SQ_CF_ALLOC_EXPORT_WORD1_CF_INST(cf->output.inst) |
                        S_SQ_CF_ALLOC_EXPORT_WORD1_END_OF_PROGRAM(cf->output.end_of_program);
                break;
+       case V_SQ_CF_WORD1_SQ_CF_INST_JUMP:
+       case V_SQ_CF_WORD1_SQ_CF_INST_ELSE:
+       case V_SQ_CF_WORD1_SQ_CF_INST_POP:
+       case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_START_NO_AL:
+       case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_END:
+       case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_CONTINUE:
+       case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_BREAK:
+               bc->bytecode[id++] = S_SQ_CF_WORD0_ADDR(cf->cf_addr >> 1);
+               bc->bytecode[id++] = S_SQ_CF_WORD1_CF_INST(cf->inst) |
+                                       S_SQ_CF_WORD1_BARRIER(1) |
+                                       S_SQ_CF_WORD1_COND(cf->cond) |
+                                       S_SQ_CF_WORD1_POP_COUNT(cf->pop_count);
+
+               break;
        default:
                R600_ERR("unsupported CF instruction (0x%X)\n", cf->inst);
                return -EINVAL;
@@ -380,6 +760,8 @@ int r600_bc_build(struct r600_bc *bc)
        unsigned addr;
        int r;
 
+       if (bc->callstack[0].max > 0)
+           bc->nstack = ((bc->callstack[0].max + 3) >> 2) + 2;
 
        /* first path compute addr of each CF block */
        /* addr start after all the CF instructions */
@@ -387,6 +769,7 @@ int r600_bc_build(struct r600_bc *bc)
        LIST_FOR_EACH_ENTRY(cf, &bc->cf, list) {
                switch (cf->inst) {
                case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3):
+               case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU_PUSH_BEFORE << 3):
                        break;
                case V_SQ_CF_WORD1_SQ_CF_INST_TEX:
                case V_SQ_CF_WORD1_SQ_CF_INST_VTX:
@@ -397,6 +780,16 @@ int r600_bc_build(struct r600_bc *bc)
                        break;
                case V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT:
                case V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT_DONE:
+               case EG_V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT:
+               case EG_V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT_DONE:
+                       break;
+               case V_SQ_CF_WORD1_SQ_CF_INST_JUMP:
+               case V_SQ_CF_WORD1_SQ_CF_INST_ELSE:
+               case V_SQ_CF_WORD1_SQ_CF_INST_POP:
+               case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_START_NO_AL:
+               case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_END:
+               case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_CONTINUE:
+               case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_BREAK:
                        break;
                default:
                        R600_ERR("unsupported CF instruction (0x%X)\n", cf->inst);
@@ -412,27 +805,22 @@ int r600_bc_build(struct r600_bc *bc)
                return -ENOMEM;
        LIST_FOR_EACH_ENTRY(cf, &bc->cf, list) {
                addr = cf->addr;
-               r = r600_bc_cf_build(bc, cf);
+               if (bc->chiprev == 2)
+                       r = eg_bc_cf_build(bc, cf);
+               else
+                       r = r600_bc_cf_build(bc, cf);
                if (r)
                        return r;
                switch (cf->inst) {
                case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU << 3):
+               case (V_SQ_CF_ALU_WORD1_SQ_CF_INST_ALU_PUSH_BEFORE << 3):
                        LIST_FOR_EACH_ENTRY(alu, &cf->alu, list) {
-                               switch (bc->family) {
-                               case CHIP_R600:
-                               case CHIP_RV610:
-                               case CHIP_RV630:
-                               case CHIP_RV670:
-                               case CHIP_RV620:
-                               case CHIP_RV635:
-                               case CHIP_RS780:
-                               case CHIP_RS880:
+                               switch(bc->chiprev) {
+                               case 0:
                                        r = r600_bc_alu_build(bc, alu, addr);
                                        break;
-                               case CHIP_RV770:
-                               case CHIP_RV730:
-                               case CHIP_RV710:
-                               case CHIP_RV740:
+                               case 1:
+                               case 2: /* eg alu is same encoding as r700 */
                                        r = r700_bc_alu_build(bc, alu, addr);
                                        break;
                                default:
@@ -466,6 +854,15 @@ int r600_bc_build(struct r600_bc *bc)
                        break;
                case V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT:
                case V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT_DONE:
+               case EG_V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT:
+               case EG_V_SQ_CF_ALLOC_EXPORT_WORD1_SQ_CF_INST_EXPORT_DONE:
+               case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_START_NO_AL:
+               case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_END:
+               case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_CONTINUE:
+               case V_SQ_CF_WORD1_SQ_CF_INST_LOOP_BREAK:
+               case V_SQ_CF_WORD1_SQ_CF_INST_JUMP:
+               case V_SQ_CF_WORD1_SQ_CF_INST_ELSE:
+               case V_SQ_CF_WORD1_SQ_CF_INST_POP:
                        break;
                default:
                        R600_ERR("unsupported CF instruction (0x%X)\n", cf->inst);