11 static void tnt2_getvmode(void *priv);
13 static struct fbdevice tnt2_fb = {
14 .getvmode = &tnt2_getvmode,
17 static unsigned int vgard(unsigned char a)
20 return (unsigned int)inb(0x3D5);
23 static void tnt2_getvmode(void *priv)
25 tnt2_fb.curmode.xres = (vgard(0x1) + 1) * 8;
26 tnt2_fb.curmode.yres = (vgard(0x12) | (vgard(0x7) & 2) << 7 | (vgard(0x7) & 0x40) << 3) + 1;
30 tnt2_fb.curmode.format = FB_RGB888;
31 tnt2_fb.curmode.bytestride = 4;
32 tnt2_fb.curmode.text = 0;
33 tnt2_fb.checksum_rect = checksum_rect_generic32;
34 tnt2_fb.copy_pixels = copy_pixels_generic32;
37 tnt2_fb.curmode.text = 1;
38 tnt2_fb.checksum_rect = text_checksum;
39 tnt2_fb.copy_pixels = text_render;
42 tnt2_fb.curmode.text = 1;
43 tnt2_fb.checksum_rect = text_checksum;
44 tnt2_fb.copy_pixels = text_render;
45 outputf("Unknown TNT2 format %x", vgard(0x28));
50 static int tnt2_probe(struct pci_dev *pci, void *data)
54 if (pci->bars[1].type != PCI_BAR_MEMORY32)
56 output("TNT2 BAR1 is not memory32?");
60 /* Map 32M of memory. */
61 for (p = 0; p < 32; p += 4)
62 addmap_4m(0x40000000 + p*1024*1024, pci->bars[1].addr + p*1024*1024);
63 tnt2_fb.fbaddr = (void *)0x40000000;
66 outputf("Found TNT2 with FB at %08x, mapped to %08x", pci->bars[1].addr, tnt2_fb.fbaddr);
70 static struct pci_id tnt2_pci[] = {
71 {0x10DE, 0x0028, "TNT2", "RIVA TNT2"}
74 struct pci_driver tnt2_driver = {
78 .id_count = sizeof(tnt2_pci)/sizeof(tnt2_pci[0]),