Lines Matching defs:agp_status
111 uint32_t agp_status;
120 err = pci_device_cfg_read_u32( dev, & agp_status, cap_offset + 4 );
135 agp_info->rates = (agp_status & 0x07);
140 if ( (agp_status & 0x08) != 0 ) {
152 agp_info->fast_writes = (agp_status & 0x0010) != 0;
153 agp_info->addr64 = (agp_status & 0x0020) != 0;
154 agp_info->htrans = (agp_status & 0x0040) == 0;
155 agp_info->gart64 = (agp_status & 0x0080) != 0;
156 agp_info->coherent = (agp_status & 0x0100) != 0;
157 agp_info->sideband = (agp_status & 0x0200) != 0;
158 agp_info->isochronus = (agp_status & 0x10000) != 0;
160 agp_info->async_req_size = 4 + (1 << ((agp_status & 0xe000) >> 13));
161 agp_info->calibration_cycle_timing = ((agp_status & 0x1c00) >> 10);
162 agp_info->max_requests = 1 + ((agp_status & 0xff000000) >> 24);