Lines Matching refs:bios
491 static void aty128_get_pllinfo(struct aty128fb_par *par, void __iomem *bios);
508 #define BIOS_IN8(v) (readb(bios + (v)))
509 #define BIOS_IN16(v) (readb(bios + (v)) | \
510 (readb(bios + (v) + 1) << 8))
511 #define BIOS_IN32(v) (readb(bios + (v)) | \
512 (readb(bios + (v) + 1) << 8) | \
513 (readb(bios + (v) + 2) << 16) | \
514 (readb(bios + (v) + 3) << 24))
827 void __iomem *bios; in aty128_map_ROM() local
838 bios = pci_map_rom(dev, &rom_size); in aty128_map_ROM()
840 if (!bios) { in aty128_map_ROM()
902 return bios; in aty128_map_ROM()
905 pci_unmap_rom(dev, bios); in aty128_map_ROM()
910 unsigned char __iomem *bios) in aty128_get_pllinfo() argument
2079 void __iomem *bios = NULL; in aty128_probe() local
2142 bios = aty128_map_ROM(par, pdev); in aty128_probe()
2144 if (bios == NULL) in aty128_probe()
2145 bios = aty128_find_mem_vbios(par); in aty128_probe()
2147 if (bios == NULL) in aty128_probe()
2151 aty128_get_pllinfo(par, bios); in aty128_probe()
2152 pci_unmap_rom(pdev, bios); in aty128_probe()