Home | History | Annotate | Download | only in src

Lines Matching refs:agpMode

684  * the standard AGPMode settings, so we detect and handle these
685 * on a case-by-base basis with quirks. To see if an AGPMode is valid, test
686 * it by setting Option "AGPMode" "1" (or "2", or "4", or "8"). */
700 /* Intel E7505 Memory Controller Hub / RV350 AR [Radeon 9600XT] Needs AGPMode 4 (deb #515326) */
702 /* Intel 82865G/PE/P DRAM Controller/Host-Hub / Mobility 9800 Needs AGPMode 4 (deb #462590) */
704 /* Intel 82865G/PE/P DRAM Controller/Host-Hub / RV280 [Radeon 9200 SE] Needs AGPMode 4 (lp #300304) */
706 /* Intel 82855PM host bridge / Mobility M7 LW Needs AGPMode 4 (lp: #353996) */
708 /* Intel 82855PM Processor to I/O Controller / Mobility M6 LY Needs AGPMode 1 (deb #467235) */
710 /* Intel 82855PM host bridge / Mobility 9600 M10 RV350 Needs AGPMode 1 (lp #195051) */
712 /* Intel 82855PM host bridge / FireGL Mobility T2 RV350 Needs AGPMode 2 (fdo #20647) */
714 /* Intel 82855PM host bridge / Mobility M9+ / VaioPCG-V505DX Needs AGPMode 2 (fdo #17928) */
716 /* Intel 82855PM Processor to I/O Controller / Mobility M9+ Needs AGPMode 8 (phoronix forum) */
718 /* Intel 82830 830 Chipset Host Bridge / Mobility M6 LY Needs AGPMode 2 (fdo #17360)*/
720 /* Intel 82852/82855 host bridge / Mobility FireGL 9000 R250 Needs AGPMode 1 (lp #296617) */
722 /* Intel 82852/82855 host bridge / Mobility 9600 M10 RV350 Needs AGPMode 1 (deb #467460) */
724 /* Intel 82852/82855 host bridge / Mobility 9600 M10 RV350 Needs AGPMode 1 (lp #203007) */
726 /* Intel 82852/82855 host bridge / Mobility 9600 M10 RV350 Needs AGPMode 1 (lp #141551) */
728 /* Intel 82852/82855 host bridge / Mobility 9600/9700 Needs AGPMode 1 (deb #510208) */
730 /* Intel 82443BX/ZX/DX Host bridge / RV280 [Radeon 9200] Needs AGPMode 1 (lp #370205) */
733 /* Ali Corp M1671 Super P4 Northbridge / Mobility M6 LY Needs AGPMode 1 (lp #146303)*/
736 /* SiS Host Bridge 655 / R420 [Radeon X800] Needs AGPMode 4 (lp #371296) */
738 /* SiS Host Bridge / RV280 Needs AGPMode 4 */
741 /* ASRock K7VT4A+ AGP 8x / ATI Radeon 9250 AGP Needs AGPMode 4 (lp #133192) */
744 /* VIA K8M800 Host Bridge / RV280 [Radeon 9200 PRO] Needs AGPMode 4 (fdo #12544) */
746 /* VIA KT880 Host Bridge / RV350 [Radeon 9550] Needs AGPMode 4 (fdo #19981) */
748 /* VIA VT8363 Host Bridge / R200 QL [Radeon 8500] Needs AGPMode 2 (lp #141551) */
750 /* VIA VT82C693A Host Bridge / RV280 [Radeon 9200 PRO] Needs AGPMode 2 (deb #515512) */
752 /* VIA VT82C693A Host Bridge / RV280 [Radeon 9200 PRO] Needs AGPMode 2 */
754 /* VIA VT8377 Host Bridge / R200 QM [Radeon 9100] Needs AGPMode 4 (deb #461144) */
756 /* VIA VT8377 Host Bridge / RV280 [Radeon 9200 PRO] Needs AGPMode 4 (lp #312693) */
758 /* VIA VT8377 Host Bridge / RV280 Needs AGPMode 4 (ati ML) */
760 /* VIA VT8377 Host Bridge / RV280 Needs AGPMode 4 (fdo #12544) */
762 /* VIA VT8377 Host Bridge / RV280 Needs AGPMode 4 (deb #545040) */
765 /* ATI Host Bridge / RV280 [M9+] Needs AGPMode 1 (phoronix forum) */
768 /* HP Host Bridge / R300 [FireGL X1] Needs AGPMode 2 (fdo #7770) */
771 /* nVidia Host Bridge / R420 [X800 Pro] Needs AGPMode 4 (fdo #22726) */
801 /* Apply AGPMode Quirks */
818 if (xf86GetOptValInteger(info->Options, OPTION_AGP_MODE, &info->dri->agpMode)) {
819 if ((info->dri->agpMode < (is_v3 ? 4 : 1)) ||
820 (info->dri->agpMode > (is_v3 ? 8 : 4)) ||
821 (info->dri->agpMode & (info->dri->agpMode - 1))) {
824 "%dx\n", info->dri->agpMode, is_v3 ? "4, 8" : "1, 2, 4",
826 info->dri->agpMode = defaultMode;
830 info->dri->agpMode = defaultMode;
832 xf86DrvMsg(pScreen->myNum, from, "Using AGP %dx\n", info->dri->agpMode);
837 switch (info->dri->agpMode) {
845 switch (info->dri->agpMode) {
873 info->dri->agpMode = 8; /* doesn't matter at this point */
1787 pRADEONDRI->AGPMode = info->dri->agpMode;