summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2013-09-10 12:11:01 +1000
committerBen Skeggs <bskeggs@redhat.com>2013-09-18 00:14:43 +1000
commit2af6b5a7b52197e5f22facdeaa4e6c64d97d1d8e (patch)
treefcfc42d1156efdb6a39112e2914f7c75890df8ee
parente1e6ccc2777889a16a05299563a5b19345c57432 (diff)
bios/init: stub opcode 0xaa
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r--nvkm/subdev/bios/init.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/nvkm/subdev/bios/init.c b/nvkm/subdev/bios/init.c
index 2e11ea02..cede3d66 100644
--- a/nvkm/subdev/bios/init.c
+++ b/nvkm/subdev/bios/init.c
@@ -579,8 +579,22 @@ static void
init_reserved(struct nvbios_init *init)
{
u8 opcode = nv_ro08(init->bios, init->offset);
- trace("RESERVED\t0x%02x\n", opcode);
- init->offset += 1;
+ u8 length, i;
+
+ switch (opcode) {
+ case 0xaa:
+ length = 4;
+ break;
+ default:
+ length = 1;
+ break;
+ }
+
+ trace("RESERVED 0x%02x\t", opcode);
+ for (i = 1; i < length; i++)
+ cont(" 0x%02x", nv_ro08(init->bios, init->offset + i));
+ cont("\n");
+ init->offset += length;
}
/**
@@ -2135,6 +2149,7 @@ static struct nvbios_init_opcode {
[0x99] = { init_zm_auxch },
[0x9a] = { init_i2c_long_if },
[0xa9] = { init_gpio_ne },
+ [0xaa] = { init_reserved },
};
#define init_opcode_nr (sizeof(init_opcode) / sizeof(init_opcode[0]))