Searched refs:VBIOS (Results 1 - 9 of 9) sorted by relevance

/xsrc/external/mit/xf86-video-intel-old/dist/src/bios_reader/
H A Dbios_reader.c49 uint8_t *VBIOS; member in struct:_fake_i830
54 #define INTEL_BIOS_8(_addr) (pI830->VBIOS[_addr])
55 #define INTEL_BIOS_16(_addr) (pI830->VBIOS[_addr] | \
56 (pI830->VBIOS[_addr + 1] << 8))
57 #define INTEL_BIOS_32(_addr) (pI830->VBIOS[_addr] | \
58 (pI830->VBIOS[_addr + 1] << 8) | \
59 (pI830->VBIOS[_addr + 2] << 16) | \
60 (pI830->VBIOS[_addr + 3] << 24))
515 pI830->VBIOS = mmap(NULL, finfo.st_size, PROT_READ, MAP_SHARED, fd, 0);
516 if (pI830->VBIOS
[all...]
/xsrc/external/mit/xf86-video-ati/dist/src/
H A Dradeon_macros.h54 #define RADEON_BIOS8(v) (info->VBIOS[v])
55 #define RADEON_BIOS16(v) (info->VBIOS[v] | \
56 (info->VBIOS[(v) + 1] << 8))
57 #define RADEON_BIOS32(v) (info->VBIOS[v] | \
58 (info->VBIOS[(v) + 1] << 8) | \
59 (info->VBIOS[(v) + 2] << 16) | \
60 (info->VBIOS[(v) + 3] << 24))
H A Dradeon_bios.c73 if (pci_device_read_rom(info->PciInfo, info->VBIOS)) {
79 xf86ReadPciBIOS(0, info->PciTag, 0, info->VBIOS, RADEON_VBIOS_SIZE);
80 if (info->VBIOS[0] != 0x55 || info->VBIOS[1] != 0xaa) {
89 RADEON_VBIOS_SIZE, info->VBIOS);
93 if (info->VBIOS[0] != 0x55 || info->VBIOS[1] != 0xaa)
363 info->VBIOS = malloc(size);
365 info->VBIOS = malloc(RADEON_VBIOS_SIZE);
367 if (!info->VBIOS) {
[all...]
H A Dradeon_driver.c2756 /* Rescue MM_TABLE before VBIOS is freed */
2759 if((info->VBIOS==NULL)||(info->VBIOS[0]!=0x55)||(info->VBIOS[1]!=0xaa)){
2768 bios_header=info->VBIOS[0x48];
2769 bios_header+=(((int)info->VBIOS[0x49]+0)<<8);
2771 mm_table=info->VBIOS[bios_header+0x38];
2778 mm_table+=(((int)info->VBIOS[bios_header+0x39]+0)<<8)-2;
2782 memcpy(&(info->MM_TABLE), &(info->VBIOS[mm_table]), sizeof(info->MM_TABLE));
2814 pll_info_block=info->VBIOS[bios_heade
[all...]
H A Dradeon.h825 uint8_t *VBIOS; /* Video BIOS pointer */ member in struct:__anonb194aea90e08
H A Dradeon_atombios.c659 if (!rhdAtomGetDataTable(pScrn->scrnIndex, info->VBIOS, atomDataPtr, &cmd_offset, BIOSImageSize))
665 handle->BIOSBase = info->VBIOS;
/xsrc/external/mit/xf86-video-r128/dist/src/
H A Dr128.h140 #define R128_BIOS8(v) ((info->VBIOS[(v)]))
141 #define R128_BIOS16(v) ((info->VBIOS[(v)]) | \
142 (info->VBIOS[(v) + 1] << 8))
143 #define R128_BIOS32(v) ((info->VBIOS[(v)]) | \
144 (info->VBIOS[(v) + 1] << 8) | \
145 (info->VBIOS[(v) + 2] << 16) | \
146 (info->VBIOS[(v) + 3] << 24))
324 uint8_t *VBIOS; /* Video BIOS for mode validation on FPs */ member in struct:__anona5d7874c0508
H A Dr128_driver.c435 info->VBIOS = malloc(size);
437 info->VBIOS = malloc(R128_VBIOS_SIZE);
440 if (!info->VBIOS) {
448 (void)memcpy(info->VBIOS, xf86int10Addr(pInt10, info->BIOSAddr),
452 if (pci_device_read_rom(info->PciInfo, info->VBIOS)) {
457 xf86ReadPciBIOS(0, info->PciTag, 0, info->VBIOS, R128_VBIOS_SIZE);
458 if (info->VBIOS[0] != 0x55 || info->VBIOS[1] != 0xaa) {
464 xf86ReadDomainMemory(info->PciTag, info->BIOSAddr, R128_VBIOS_SIZE, info->VBIOS);
468 if (info->VBIOS[
[all...]
H A Dr128_output.c478 if (!info->VBIOS) {

Completed in 19 milliseconds