]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - drivers/gpu/drm/nouveau/nvkm/subdev/bios/init.c
drm/nouveau/bios/init: handle INIT_RESET_END devinit opcode
[linux.git] / drivers / gpu / drm / nouveau / nvkm / subdev / bios / init.c
index 5e02832304e2152d4d66d86758a2f722d903de87..9de74f41dcd2a89087c6a38b32d8121e4606295b 100644 (file)
@@ -1945,6 +1945,17 @@ init_reset_begun(struct nvbios_init *init)
        init->offset += 1;
 }
 
+/**
+ * INIT_RESET_END - opcode 0x8d
+ *
+ */
+static void
+init_reset_end(struct nvbios_init *init)
+{
+       trace("RESET_END\n");
+       init->offset += 1;
+}
+
 /**
  * INIT_GPIO - opcode 0x8e
  *
@@ -2272,7 +2283,7 @@ static struct nvbios_init_opcode {
        [0x7a] = { init_zm_reg },
        [0x87] = { init_ram_restrict_pll },
        [0x8c] = { init_reset_begun },
-       [0x8d] = { init_reserved },
+       [0x8d] = { init_reset_end },
        [0x8e] = { init_gpio },
        [0x8f] = { init_ram_restrict_zm_reg_group },
        [0x90] = { init_copy_zm_reg },