Максим Фомин
2011-Sep-08 16:50 UTC
[Nouveau] nvidia BIOS loaing policy (nouveau kernel driver)
Hello. As far I understand from driver file "nouveau_bios.c", it may be loaded from pramin, prom, pcirom or acpi. However, it isn't clear, why they are arranged in that order. The question comes from seeing each time on boot "Invalid ROM contents" message on attepmt to load bios from pcirom. Actually, I find similar problem in google so, I suspect that my card isn't broken. I don't know where nvidia likely to place bios, but, according to my experience and what I found from google, it is better to place acpi in "nouveau_bios.c" at first (or at least place pcirom at the end): static struct methods shadow_methods[] = { { "ACPI", load_vbios_acpi, true }, { "PRAMIN", load_vbios_pramin, true }, { "PROM", load_vbios_prom, false }, { "PCIROM", load_vbios_pci, true }, }; Maxim