mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-11 16:32:58 +00:00
intel_reg: Renamed INST_DONE to INSTDONE
That's how the registers are named in the kernel defines. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
This commit is contained in:
@@ -102,7 +102,7 @@ print_instdone(uint32_t devid, unsigned int instdone, unsigned int instdone1)
|
||||
for (i = 0; i < num_instdone_bits; i++) {
|
||||
int busy = 0;
|
||||
|
||||
if (instdone_bits[i].reg == INST_DONE_1) {
|
||||
if (instdone_bits[i].reg == INSTDONE_1) {
|
||||
if (!(instdone1 & instdone_bits[i].bit))
|
||||
busy = 1;
|
||||
} else {
|
||||
|
||||
@@ -144,7 +144,7 @@ update_idle_bit(struct top_bit *top_bit)
|
||||
{
|
||||
uint32_t reg_val;
|
||||
|
||||
if (top_bit->bit->reg == INST_DONE_1)
|
||||
if (top_bit->bit->reg == INSTDONE_1)
|
||||
reg_val = instdone1;
|
||||
else
|
||||
reg_val = instdone;
|
||||
@@ -559,10 +559,10 @@ int main(int argc, char **argv)
|
||||
long long interval;
|
||||
ti = gettime();
|
||||
if (IS_965(devid)) {
|
||||
instdone = INREG(INST_DONE_I965);
|
||||
instdone1 = INREG(INST_DONE_1);
|
||||
instdone = INREG(INSTDONE_I965);
|
||||
instdone1 = INREG(INSTDONE_1);
|
||||
} else
|
||||
instdone = INREG(INST_DONE);
|
||||
instdone = INREG(INSTDONE);
|
||||
|
||||
for (j = 0; j < num_instdone_bits; j++)
|
||||
update_idle_bit(&top_bits[j]);
|
||||
|
||||
@@ -2476,7 +2476,7 @@ static struct reg_debug i945gm_mi_regs[] = {
|
||||
DEFINEREG(HWS_PGA),
|
||||
DEFINEREG(IPEIR),
|
||||
DEFINEREG(IPEHR),
|
||||
DEFINEREG(INST_DONE),
|
||||
DEFINEREG(INSTDONE),
|
||||
DEFINEREG(NOP_ID),
|
||||
DEFINEREG(HWSTAM),
|
||||
DEFINEREG(SCPD0),
|
||||
|
||||
Reference in New Issue
Block a user