Lines Matching refs:bios
500 static void aty128_get_pllinfo(struct aty128fb_par *par, void __iomem *bios);
517 #define BIOS_IN8(v) (readb(bios + (v)))
518 #define BIOS_IN16(v) (readb(bios + (v)) | \
519 (readb(bios + (v) + 1) << 8))
520 #define BIOS_IN32(v) (readb(bios + (v)) | \
521 (readb(bios + (v) + 1) << 8) | \
522 (readb(bios + (v) + 2) << 16) | \
523 (readb(bios + (v) + 3) << 24))
836 void __iomem *bios; in aty128_map_ROM() local
847 bios = pci_map_rom(dev, &rom_size); in aty128_map_ROM()
849 if (!bios) { in aty128_map_ROM()
911 return bios; in aty128_map_ROM()
914 pci_unmap_rom(dev, bios); in aty128_map_ROM()
919 unsigned char __iomem *bios) in aty128_get_pllinfo() argument
2090 void __iomem *bios = NULL; in aty128_probe() local
2153 bios = aty128_map_ROM(par, pdev); in aty128_probe()
2155 if (bios == NULL) in aty128_probe()
2156 bios = aty128_find_mem_vbios(par); in aty128_probe()
2158 if (bios == NULL) in aty128_probe()
2162 aty128_get_pllinfo(par, bios); in aty128_probe()
2163 pci_unmap_rom(pdev, bios); in aty128_probe()