mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-25 23:26:03 +08:00
drm/nouveau/bios/init: stub opcode 0xaa
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
c859074e7d
commit
5495e39fb3
@ -579,8 +579,22 @@ static void
|
|||||||
init_reserved(struct nvbios_init *init)
|
init_reserved(struct nvbios_init *init)
|
||||||
{
|
{
|
||||||
u8 opcode = nv_ro08(init->bios, init->offset);
|
u8 opcode = nv_ro08(init->bios, init->offset);
|
||||||
trace("RESERVED\t0x%02x\n", opcode);
|
u8 length, i;
|
||||||
init->offset += 1;
|
|
||||||
|
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 },
|
[0x99] = { init_zm_auxch },
|
||||||
[0x9a] = { init_i2c_long_if },
|
[0x9a] = { init_i2c_long_if },
|
||||||
[0xa9] = { init_gpio_ne },
|
[0xa9] = { init_gpio_ne },
|
||||||
|
[0xaa] = { init_reserved },
|
||||||
};
|
};
|
||||||
|
|
||||||
#define init_opcode_nr (sizeof(init_opcode) / sizeof(init_opcode[0]))
|
#define init_opcode_nr (sizeof(init_opcode) / sizeof(init_opcode[0]))
|
||||||
|
Loading…
Reference in New Issue
Block a user