HomeSort by: relevance | last modified time | path
    Searched refs:VBIOS (Results 1 - 9 of 9) sorted by relevancy

  /xsrc/external/mit/xf86-video-intel-old/dist/src/bios_reader/
bios_reader.c 49 uint8_t *VBIOS;
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 == MAP_FAILED)
    [all...]
  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon_macros.h 54 #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))
radeon_bios.c 73 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...]
radeon_driver.c 2756 /* 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_header+0x30]
    [all...]
radeon.h 825 uint8_t *VBIOS; /* Video BIOS pointer */
radeon_atombios.c 659 if (!rhdAtomGetDataTable(pScrn->scrnIndex, info->VBIOS, atomDataPtr, &cmd_offset, BIOSImageSize))
665 handle->BIOSBase = info->VBIOS;
  /xsrc/external/mit/xf86-video-r128/dist/src/
r128.h 137 #define R128_BIOS8(v) ((info->VBIOS[(v)]))
138 #define R128_BIOS16(v) ((info->VBIOS[(v)]) | \
139 (info->VBIOS[(v) + 1] << 8))
140 #define R128_BIOS32(v) ((info->VBIOS[(v)]) | \
141 (info->VBIOS[(v) + 1] << 8) | \
142 (info->VBIOS[(v) + 2] << 16) | \
143 (info->VBIOS[(v) + 3] << 24))
322 uint8_t *VBIOS; /* Video BIOS for mode validation on FPs */
r128_driver.c 432 info->VBIOS = malloc(size);
434 info->VBIOS = malloc(R128_VBIOS_SIZE);
437 if (!info->VBIOS) {
445 (void)memcpy(info->VBIOS, xf86int10Addr(pInt10, info->BIOSAddr),
449 if (pci_device_read_rom(info->PciInfo, info->VBIOS)) {
454 xf86ReadPciBIOS(0, info->PciTag, 0, info->VBIOS, R128_VBIOS_SIZE);
455 if (info->VBIOS[0] != 0x55 || info->VBIOS[1] != 0xaa) {
461 xf86ReadDomainMemory(info->PciTag, info->BIOSAddr, R128_VBIOS_SIZE, info->VBIOS);
465 if (info->VBIOS[0] != 0x55 || info->VBIOS[1] != 0xaa)
    [all...]
r128_output.c 479 if (!info->VBIOS) {

Completed in 15 milliseconds