You are not logged in.
Pages: 1
Updated to 4.10.1-1 and now I get following information during the systemd boot
[ 4.377749] nouveau 0000:01:00.0: NVIDIA GT216 (0a5480a2)
[ 4.400739] nouveau 0000:01:00.0: bios: version 70.16.45.00.05
[ 4.401022] nouveau 0000:01:00.0: bios: OOB 1 01452301 01452301
[ 4.401032] nouveau 0000:01:00.0: bios: OOB 1 222349c7 222349c7
[ 4.401039] nouveau 0000:01:00.0: bios: OOB 1 222349c7 222349c7
[ 4.401046] nouveau 0000:01:00.0: bios: OOB 1 222349c7 222349c7
[ 4.401679] nouveau 0000:01:00.0: fb: 1024 MiB DDR3
Haven't found any upstream bugs related to this one by now.
linux-4.10.1/drivers/gpu/drm/nouveau/nvkm/subdev/bios/base.c
nvbios_addr(struct nvkm_bios *bios, u32 *addr, u8 size)
{
u32 p = *addr;
if (*addr > bios->image0_size && bios->imaged_addr) {
*addr -= bios->image0_size;
*addr += bios->imaged_addr;
}
if (unlikely(*addr + size >= bios->size)) {
nvkm_error(&bios->subdev, "OOB %d %08x %08x\n", size, p, *addr);
return false;
}
return true;
}
https://bugs.freedesktop.org/show_bug.cgi?id=98690
Last edited by blackout (2017-02-27 13:26:34)
Offline
Pages: 1