You could have a problem with the device id.
Do
"cat /proc/pci"
and check the device id's
May be you will not have one of
#define PCI_I810_DID_0 0x7120
#define PCI_I810_DC100_DID_0 0x7122
#define PCI_I815_DID_0 0x1130
Than add your ID to the driver code
and extend function the part of sI810_detect
.....
/* Find the pci_dev0 representing the I815 or I810 or I810-DC100 device
*/
if ((p810_dev0 = pci_find_device (PCI_I810_VID, PCI_I815_DID_0,
NULL)) == NULL)
{
if ((p810_dev0 = pci_find_device (PCI_I810_VID, PCI_I810_DID_0,
NULL)) == NULL)
{
if ((p810_dev0 = pci_find_device (PCI_I810_VID,
PCI_I810_DC100_DID_0, NULL)) == NULL)
{
return 2;
}
}
}
....
After you have successfully tested plese mail me the patch.
Thomas
Am Tuesday 10 July 2001 13:37, schrieb Herman Theron: / On Tuesday 10 July
2001 13:37, Herman Theron wrote:
> Hi all
>
> Thanks for all the help I have received so far. I got the kernel to compile
> and can boot, but i810fb does not detect any i810 chipset.
>
> agpgart does detect it: (from dmesg)
>
> Linux agpgart interface v0.99 (c) Jeff Hartmann
> agpgart: Maximum main memory to use for agp memory: 93M
> agpgart: Detected an Intel i810 E Chipset.
> agpgart: detected 4MB dedicated video ram.
> agpgart: AGP aperture is 64M @ 0xf4000000
>
> Then the next message is from i810fb:
>
> Intel 810 Not detected - exiting 2
>
> Any ideas? If agpgart can pick it up, why doesn't i810fb recognise tihe
> i810 E?
>
> Thanks for the help
> Herman
>
>
> _______________________________________________
> Linux-fbdev-devel mailing list
> Lin...@li...
> http://lists.sourceforge.net/lists/listinfo/linux-fbdev-devel
|