1 /***************************************************************************\
3 |* Copyright 2003 NVIDIA, Corporation. All rights reserved. *|
5 |* NOTICE TO USER: The source code is copyrighted under U.S. and *|
6 |* international laws. Users and possessors of this source code are *|
7 |* hereby granted a nonexclusive, royalty-free copyright license to *|
8 |* use this code in individual and commercial software. *|
10 |* Any use of this source code must include, in the user documenta- *|
11 |* tion and internal comments to the code, notices to the end user *|
14 |* Copyright 2003 NVIDIA, Corporation. All rights reserved. *|
16 |* NVIDIA, CORPORATION MAKES NO REPRESENTATION ABOUT THE SUITABILITY *|
17 |* OF THIS SOURCE CODE FOR ANY PURPOSE. IT IS PROVIDED "AS IS" *|
18 |* WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND. NVIDIA, CORPOR- *|
19 |* ATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOURCE CODE, *|
20 |* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGE- *|
21 |* MENT, AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL *|
22 |* NVIDIA, CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT, INCI- *|
23 |* DENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RE- *|
24 |* SULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION *|
25 |* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF *|
26 |* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOURCE CODE. *|
28 |* U.S. Government End Users. This source code is a "commercial *|
29 |* item," as that term is defined at 48 C.F.R. 2.101 (OCT 1995), *|
30 |* consisting of "commercial computer software" and "commercial *|
31 |* computer software documentation," as such terms are used in *|
32 |* 48 C.F.R. 12.212 (SEPT 1995) and is provided to the U.S. Govern- *|
33 |* ment only as a commercial end item. Consistent with 48 C.F.R. *|
34 |* 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (JUNE 1995), *|
35 |* all U.S. Government End Users acquire the source code with only *|
36 |* those rights set forth herein. *|
38 \***************************************************************************/
40 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/nv/nv_setup.c,v 1.48 2005/09/14 02:28:03 mvojkovi Exp $ */
42 #include "nv_include.h"
46 * Override VGA I/O routines.
48 static void NVWriteCrtc(vgaHWPtr pVga, CARD8 index, CARD8 value)
50 NVPtr pNv = (NVPtr)pVga->MMIOBase;
51 volatile CARD8 *ptr = pNv->cur_head ? pNv->PCIO1 : pNv->PCIO0;
52 VGA_WR08(ptr, pVga->IOBase + VGA_CRTC_INDEX_OFFSET, index);
53 VGA_WR08(ptr, pVga->IOBase + VGA_CRTC_DATA_OFFSET, value);
55 static CARD8 NVReadCrtc(vgaHWPtr pVga, CARD8 index)
57 NVPtr pNv = (NVPtr)pVga->MMIOBase;
58 volatile CARD8 *ptr = pNv->cur_head ? pNv->PCIO1 : pNv->PCIO0;
59 VGA_WR08(ptr, pVga->IOBase + VGA_CRTC_INDEX_OFFSET, index);
60 return (VGA_RD08(ptr, pVga->IOBase + VGA_CRTC_DATA_OFFSET));
62 static void NVWriteGr(vgaHWPtr pVga, CARD8 index, CARD8 value)
64 NVPtr pNv = (NVPtr)pVga->MMIOBase;
65 VGA_WR08(pNv->PVIO0, VGA_GRAPH_INDEX, index);
66 VGA_WR08(pNv->PVIO0, VGA_GRAPH_DATA, value);
68 static CARD8 NVReadGr(vgaHWPtr pVga, CARD8 index)
70 NVPtr pNv = (NVPtr)pVga->MMIOBase;
71 VGA_WR08(pNv->PVIO0, VGA_GRAPH_INDEX, index);
72 return (VGA_RD08(pNv->PVIO0, VGA_GRAPH_DATA));
74 static void NVWriteSeq(vgaHWPtr pVga, CARD8 index, CARD8 value)
76 NVPtr pNv = (NVPtr)pVga->MMIOBase;
77 VGA_WR08(pNv->PVIO0, VGA_SEQ_INDEX, index);
78 VGA_WR08(pNv->PVIO0, VGA_SEQ_DATA, value);
80 static CARD8 NVReadSeq(vgaHWPtr pVga, CARD8 index)
82 NVPtr pNv = (NVPtr)pVga->MMIOBase;
83 VGA_WR08(pNv->PVIO0, VGA_SEQ_INDEX, index);
84 return (VGA_RD08(pNv->PVIO0, VGA_SEQ_DATA));
86 static void NVWriteAttr(vgaHWPtr pVga, CARD8 index, CARD8 value)
88 NVPtr pNv = (NVPtr)pVga->MMIOBase;
89 volatile CARD8 *ptr = pNv->cur_head ? pNv->PCIO1 : pNv->PCIO0;
92 tmp = VGA_RD08(ptr, pVga->IOBase + VGA_IN_STAT_1_OFFSET);
93 if (pVga->paletteEnabled)
97 VGA_WR08(ptr, VGA_ATTR_INDEX, index);
98 VGA_WR08(ptr, VGA_ATTR_DATA_W, value);
100 static CARD8 NVReadAttr(vgaHWPtr pVga, CARD8 index)
102 NVPtr pNv = (NVPtr)pVga->MMIOBase;
103 volatile CARD8 *ptr = pNv->cur_head ? pNv->PCIO1 : pNv->PCIO0;
106 tmp = VGA_RD08(ptr, pVga->IOBase + VGA_IN_STAT_1_OFFSET);
107 if (pVga->paletteEnabled)
111 VGA_WR08(ptr, VGA_ATTR_INDEX, index);
112 return (VGA_RD08(ptr, VGA_ATTR_DATA_R));
114 static void NVWriteMiscOut(vgaHWPtr pVga, CARD8 value)
116 NVPtr pNv = (NVPtr)pVga->MMIOBase;
117 VGA_WR08(pNv->PVIO0, VGA_MISC_OUT_W, value);
119 static CARD8 NVReadMiscOut(vgaHWPtr pVga)
121 NVPtr pNv = (NVPtr)pVga->MMIOBase;
122 return (VGA_RD08(pNv->PVIO0, VGA_MISC_OUT_R));
124 static void NVEnablePalette(vgaHWPtr pVga)
126 NVPtr pNv = (NVPtr)pVga->MMIOBase;
127 volatile CARD8 *ptr = pNv->cur_head ? pNv->PCIO1 : pNv->PCIO0;
130 tmp = VGA_RD08(ptr, pVga->IOBase + VGA_IN_STAT_1_OFFSET);
131 VGA_WR08(ptr, VGA_ATTR_INDEX, 0x00);
132 pVga->paletteEnabled = TRUE;
134 static void NVDisablePalette(vgaHWPtr pVga)
136 NVPtr pNv = (NVPtr)pVga->MMIOBase;
137 volatile CARD8 *ptr = pNv->cur_head ? pNv->PCIO1 : pNv->PCIO0;
140 tmp = VGA_RD08(ptr, pVga->IOBase + VGA_IN_STAT_1_OFFSET);
141 VGA_WR08(ptr, VGA_ATTR_INDEX, 0x20);
142 pVga->paletteEnabled = FALSE;
144 static void NVWriteDacMask(vgaHWPtr pVga, CARD8 value)
146 NVPtr pNv = (NVPtr)pVga->MMIOBase;
147 volatile CARD8 *ptr = pNv->cur_head ? pNv->PDIO1 : pNv->PDIO0;
148 VGA_WR08(ptr, VGA_DAC_MASK, value);
150 static CARD8 NVReadDacMask(vgaHWPtr pVga)
152 NVPtr pNv = (NVPtr)pVga->MMIOBase;
153 volatile CARD8 *ptr = pNv->cur_head ? pNv->PDIO1 : pNv->PDIO0;
154 return (VGA_RD08(ptr, VGA_DAC_MASK));
156 static void NVWriteDacReadAddr(vgaHWPtr pVga, CARD8 value)
158 NVPtr pNv = (NVPtr)pVga->MMIOBase;
159 volatile CARD8 *ptr = pNv->cur_head ? pNv->PDIO1 : pNv->PDIO0;
160 VGA_WR08(ptr, VGA_DAC_READ_ADDR, value);
162 static void NVWriteDacWriteAddr(vgaHWPtr pVga, CARD8 value)
164 NVPtr pNv = (NVPtr)pVga->MMIOBase;
165 volatile CARD8 *ptr = pNv->cur_head ? pNv->PDIO1 : pNv->PDIO0;
166 VGA_WR08(ptr, VGA_DAC_WRITE_ADDR, value);
168 static void NVWriteDacData(vgaHWPtr pVga, CARD8 value)
170 NVPtr pNv = (NVPtr)pVga->MMIOBase;
171 volatile CARD8 *ptr = pNv->cur_head ? pNv->PDIO1 : pNv->PDIO0;
172 VGA_WR08(ptr, VGA_DAC_DATA, value);
174 static CARD8 NVReadDacData(vgaHWPtr pVga)
176 NVPtr pNv = (NVPtr)pVga->MMIOBase;
177 volatile CARD8 *ptr = pNv->cur_head ? pNv->PDIO1 : pNv->PDIO0;
178 return (VGA_RD08(ptr, VGA_DAC_DATA));
182 NVIsConnected (ScrnInfoPtr pScrn, int output)
184 NVPtr pNv = NVPTR(pScrn);
185 CARD32 reg52C, reg608, temp;
188 xf86DrvMsg(pScrn->scrnIndex, X_INFO,
189 "Probing for analog device on output %s...\n",
192 reg52C = nvReadRAMDAC(pNv, output, NV_RAMDAC_OUTPUT);
193 reg608 = nvReadRAMDAC(pNv, output, NV_RAMDAC_TEST_CONTROL);
195 nvWriteRAMDAC(pNv, output, NV_RAMDAC_TEST_CONTROL, (reg608 & ~0x00010000));
197 nvWriteRAMDAC(pNv, output, NV_RAMDAC_OUTPUT, (reg52C & 0x0000FEEE));
200 temp = nvReadRAMDAC(pNv, output, NV_RAMDAC_OUTPUT);
201 nvWriteRAMDAC(pNv, output, NV_RAMDAC_OUTPUT, temp | 1);
203 nvWriteRAMDAC(pNv, output, NV_RAMDAC_TEST_DATA, 0x94050140);
204 temp = nvReadRAMDAC(pNv, output, NV_RAMDAC_TEST_CONTROL);
205 nvWriteRAMDAC(pNv, output, NV_RAMDAC_TEST_CONTROL, temp | 0x1000);
209 present = (nvReadRAMDAC(pNv, output, NV_RAMDAC_TEST_CONTROL) & (1 << 28)) ? TRUE : FALSE;
212 xf86DrvMsg(pScrn->scrnIndex, X_PROBED, " ...found one\n");
214 xf86DrvMsg(pScrn->scrnIndex, X_PROBED, " ...can't find one\n");
216 temp = nvReadRAMDAC(pNv, output, NV_RAMDAC_TEST_CONTROL);
217 nvWriteRAMDAC(pNv, output, NV_RAMDAC_TEST_CONTROL, temp & 0x000EFFF);
219 nvWriteRAMDAC(pNv, output, NV_RAMDAC_OUTPUT, reg52C);
220 nvWriteRAMDAC(pNv, output, NV_RAMDAC_TEST_CONTROL, reg608);
226 NVSelectHeadRegisters(ScrnInfoPtr pScrn, int head)
228 NVPtr pNv = NVPTR(pScrn);
230 pNv->cur_head = head;
234 NVProbeDDC (ScrnInfoPtr pScrn, int bus)
236 NVPtr pNv = NVPTR(pScrn);
237 xf86MonPtr MonInfo = NULL;
239 if(!pNv->I2C) return NULL;
241 pNv->DDCBase = bus ? 0x36 : 0x3e;
243 xf86DrvMsg(pScrn->scrnIndex, X_INFO,
244 "Probing for EDID on I2C bus %s...\n", bus ? "B" : "A");
246 if ((MonInfo = xf86DoEDID_DDC2(pScrn->scrnIndex, pNv->I2C))) {
247 xf86DrvMsg(pScrn->scrnIndex, X_PROBED,
248 "DDC detected a %s:\n", MonInfo->features.input_type ?
250 xf86PrintEDID( MonInfo );
252 xf86DrvMsg(pScrn->scrnIndex, X_INFO,
253 " ... none found\n");
259 static void nv4GetConfig (NVPtr pNv)
261 CARD32 reg_FB0 = nvReadFB(pNv, 0x0);
262 if (reg_FB0 & 0x00000100) {
263 pNv->RamAmountKBytes = ((reg_FB0 >> 12) & 0x0F) * 1024 * 2
266 switch (reg_FB0 & 0x00000003) {
268 pNv->RamAmountKBytes = 1024 * 32;
271 pNv->RamAmountKBytes = 1024 * 4;
274 pNv->RamAmountKBytes = 1024 * 8;
278 pNv->RamAmountKBytes = 1024 * 16;
282 pNv->CrystalFreqKHz = (nvReadEXTDEV(pNv, 0x0000) & 0x00000040) ? 14318 : 13500;
283 pNv->CURSOR = &(pNv->PRAMIN[0x1E00]);
284 pNv->MinVClockFreqKHz = 12000;
285 pNv->MaxVClockFreqKHz = 350000;
288 static void nv10GetConfig (NVPtr pNv)
290 CARD32 implementation = pNv->Chipset & 0x0ff0;
292 #if X_BYTE_ORDER == X_BIG_ENDIAN
293 /* turn on big endian register access */
294 if(!(nvReadMC(pNv, 0x0004) & 0x01000001)) {
295 xf86DrvMsg(0, X_ERROR, "Card is in big endian mode, something is very wrong !\n");
299 if (implementation == CHIPSET_NFORCE) {
301 #ifdef XSERVER_LIBPCIACCESS
302 const struct pci_slot_match match[] = { {0, 0, 0, 1, 0} };
303 struct pci_device_iterator *iterator = pci_slot_match_iterator_create(match);
304 /* assume one device to exist */
305 struct pci_device *device = pci_device_next(iterator);
306 PCI_DEV_READ_LONG(device, 0x7c, &amt);
308 amt = pciReadLong(pciTag(0, 0, 1), 0x7C);
309 #endif /* XSERVER_LIBPCIACCESS */
310 pNv->RamAmountKBytes = (((amt >> 6) & 31) + 1) * 1024;
311 } else if (implementation == CHIPSET_NFORCE2) {
313 #ifdef XSERVER_LIBPCIACCESS
314 const struct pci_slot_match match[] = { {0, 0, 0, 1, 0} };
315 struct pci_device_iterator *iterator = pci_slot_match_iterator_create(match);
316 /* assume one device to exist */
317 struct pci_device *device = pci_device_next(iterator);
318 PCI_DEV_READ_LONG(device, 0x84, &amt);
320 amt = pciReadLong(pciTag(0, 0, 1), 0x84);
321 #endif /* XSERVER_LIBPCIACCESS */
322 pNv->RamAmountKBytes = (((amt >> 4) & 127) + 1) * 1024;
324 pNv->RamAmountKBytes = (nvReadFB(pNv, 0x020C) & 0xFFF00000) >> 10;
327 if(pNv->RamAmountKBytes > 256*1024)
328 pNv->RamAmountKBytes = 256*1024;
330 pNv->CrystalFreqKHz = (nvReadEXTDEV(pNv, 0x0000) & (1 << 6)) ? 14318 : 13500;
332 if(pNv->twoHeads && (implementation != CHIPSET_NV11))
334 if(nvReadEXTDEV(pNv, 0x0000) & (1 << 22))
335 pNv->CrystalFreqKHz = 27000;
338 pNv->CURSOR = NULL; /* can't set this here */
339 pNv->MinVClockFreqKHz = 12000;
340 pNv->MaxVClockFreqKHz = pNv->twoStagePLL ? 400000 : 350000;
344 NVCommonSetup(ScrnInfoPtr pScrn)
346 NVPtr pNv = NVPTR(pScrn);
347 vgaHWPtr pVga = VGAHWPTR(pScrn);
348 CARD16 implementation = pNv->Chipset & 0x0ff0;
349 xf86MonPtr monitorA, monitorB;
352 int FlatPanel = -1; /* really means the CRTC is slaved */
353 Bool Television = FALSE;
356 * Override VGA I/O routines.
358 pVga->writeCrtc = NVWriteCrtc;
359 pVga->readCrtc = NVReadCrtc;
360 pVga->writeGr = NVWriteGr;
361 pVga->readGr = NVReadGr;
362 pVga->writeAttr = NVWriteAttr;
363 pVga->readAttr = NVReadAttr;
364 pVga->writeSeq = NVWriteSeq;
365 pVga->readSeq = NVReadSeq;
366 pVga->writeMiscOut = NVWriteMiscOut;
367 pVga->readMiscOut = NVReadMiscOut;
368 pVga->enablePalette = NVEnablePalette;
369 pVga->disablePalette = NVDisablePalette;
370 pVga->writeDacMask = NVWriteDacMask;
371 pVga->readDacMask = NVReadDacMask;
372 pVga->writeDacWriteAddr = NVWriteDacWriteAddr;
373 pVga->writeDacReadAddr = NVWriteDacReadAddr;
374 pVga->writeDacData = NVWriteDacData;
375 pVga->readDacData = NVReadDacData;
377 * Note: There are different pointers to the CRTC/AR and GR/SEQ registers.
378 * Bastardize the intended uses of these to make it work.
380 pVga->MMIOBase = (CARD8 *)pNv;
381 pVga->MMIOOffset = 0;
383 #ifndef XSERVER_LIBPCIACCESS
384 pNv->REGS = xf86MapPciMem(pScrn->scrnIndex,
385 VIDMEM_MMIO | VIDMEM_READSIDEEFFECT,
386 pNv->PciTag, pNv->IOAddress, 0x01000000);
388 /* 0x01000000 is the size */
389 pci_device_map_range(pNv->PciInfo, pNv->IOAddress, 0x01000000, PCI_DEV_MAP_FLAG_WRITABLE, (void *)&pNv->REGS);
390 #endif /* XSERVER_LIBPCIACCESS */
392 pNv->PRAMIN = pNv->REGS + (NV_PRAMIN_OFFSET/4);
393 if (pNv->Architecture >= NV_ARCH_50) {
394 pNv->NV50_PCRTC = pNv->REGS + (NV50_PCRTC_OFFSET/4);
396 pNv->PCRTC0 = pNv->REGS + (NV_PCRTC0_OFFSET/4);
397 pNv->PRAMDAC0 = pNv->REGS + (NV_PRAMDAC0_OFFSET/4);
398 pNv->PFB = pNv->REGS + (NV_PFB_OFFSET/4);
399 pNv->PFIFO = pNv->REGS + (NV_PFIFO_OFFSET/4);
400 pNv->PGRAPH = pNv->REGS + (NV_PGRAPH_OFFSET/4);
401 pNv->PEXTDEV = pNv->REGS + (NV_PEXTDEV_OFFSET/4);
402 pNv->PTIMER = pNv->REGS + (NV_PTIMER_OFFSET/4);
403 pNv->PVIDEO = pNv->REGS + (NV_PVIDEO_OFFSET/4);
404 pNv->PMC = pNv->REGS + (NV_PMC_OFFSET/4);
406 pNv->PCRTC1 = pNv->PCRTC0 + 0x2000/4;
407 pNv->PRAMDAC1 = pNv->PRAMDAC0 + 0x2000/4;
409 /* 8 bit registers */
410 pNv->PCIO0 = (CARD8*)pNv->REGS + NV_PCIO0_OFFSET;
411 pNv->PDIO0 = (CARD8*)pNv->REGS + NV_PDIO0_OFFSET;
412 pNv->PVIO0 = (CARD8*)pNv->REGS + NV_PVIO_OFFSET;
413 pNv->PROM = (CARD8*)pNv->REGS + NV_PROM_OFFSET;
415 pNv->PCIO1 = pNv->PCIO0 + 0x2000;
416 pNv->PDIO1 = pNv->PDIO0 + 0x2000;
417 pNv->PVIO1 = pNv->PVIO0 + 0x2000;
419 pNv->twoHeads = (pNv->Architecture >= NV_ARCH_10) &&
420 (implementation != CHIPSET_NV10) &&
421 (implementation != CHIPSET_NV15) &&
422 (implementation != CHIPSET_NFORCE) &&
423 (implementation != CHIPSET_NV20);
425 pNv->fpScaler = (pNv->FpScale && pNv->twoHeads && (implementation!=CHIPSET_NV11));
427 pNv->twoStagePLL = (implementation == CHIPSET_NV31) ||
428 (implementation == CHIPSET_NV36) ||
429 (pNv->Architecture >= NV_ARCH_40);
431 pNv->WaitVSyncPossible = (pNv->Architecture >= NV_ARCH_10) &&
432 (implementation != CHIPSET_NV10);
434 pNv->BlendingPossible = ((pNv->Chipset & 0xffff) > CHIPSET_NV04);
436 /* look for known laptop chips */
437 /* FIXME we could add some ids here (0x0164,0x0167,0x0168,0x01D6,0x01D7,0x01D8,0x0298,0x0299,0x0398) */
438 switch(pNv->Chipset & 0xffff) {
491 pNv->Television = FALSE;
493 /* Parse the bios to initialize the card */
494 NVSelectHeadRegisters(pScrn, 0);
497 if(pNv->Architecture == NV_ARCH_04) {
503 if (!pNv->randr12_enable) {
505 NVSelectHeadRegisters(pScrn, 0);
507 NVLockUnlock(pNv, 0);
513 pNv->crtc_active[0] = TRUE;
514 pNv->crtc_active[1] = FALSE;
515 if((monitorA = NVProbeDDC(pScrn, 0))) {
516 FlatPanel = monitorA->features.input_type ? 1 : 0;
518 /* NV4 doesn't support FlatPanels */
519 if((pNv->Chipset & 0x0fff) <= CHIPSET_NV04)
522 if(nvReadVGA(pNv, NV_VGA_CRTCX_PIXEL) & 0x80) {
523 if(!(nvReadVGA(pNv, NV_VGA_CRTCX_LCD) & 0x01))
529 xf86DrvMsg(pScrn->scrnIndex, X_PROBED,
530 "HW is currently programmed for %s\n",
531 FlatPanel ? (Television ? "TV" : "DFP") : "CRT");
534 if(pNv->FlatPanel == -1) {
535 pNv->FlatPanel = FlatPanel;
536 pNv->Television = Television;
538 xf86DrvMsg(pScrn->scrnIndex, X_CONFIG,
539 "Forcing display type to %s as specified\n",
540 pNv->FlatPanel ? "DFP" : "CRT");
543 CARD8 outputAfromCRTC, outputBfromCRTC;
544 pNv->crtc_active[0] = FALSE;
545 pNv->crtc_active[1] = FALSE;
546 CARD8 slaved_on_A, slaved_on_B;
547 Bool analog_on_A, analog_on_B;
551 if(implementation != CHIPSET_NV11) {
552 if(nvReadRAMDAC0(pNv, NV_RAMDAC_OUTPUT) & 0x100)
556 if(nvReadRAMDAC(pNv, 1, NV_RAMDAC_OUTPUT) & 0x100)
560 analog_on_A = NVIsConnected(pScrn, 0);
561 analog_on_B = NVIsConnected(pScrn, 1);
569 cr44 = nvReadVGA(pNv, NV_VGA_CRTCX_OWNER);
572 nvWriteVGA(pNv, NV_VGA_CRTCX_OWNER, 3);
573 NVSelectHeadRegisters(pScrn, 1);
574 NVLockUnlock(pNv, 0);
576 slaved_on_B = nvReadVGA(pNv, NV_VGA_CRTCX_PIXEL) & 0x80;
578 tvB = !(nvReadVGA(pNv, NV_VGA_CRTCX_LCD) & 0x01);
581 nvWriteVGA(pNv, NV_VGA_CRTCX_OWNER, 0);
582 NVSelectHeadRegisters(pScrn, 0);
583 NVLockUnlock(pNv, 0);
585 slaved_on_A = nvReadVGA(pNv, NV_VGA_CRTCX_PIXEL) & 0x80;
587 tvA = !(nvReadVGA(pNv, NV_VGA_CRTCX_LCD) & 0x01);
590 oldhead = nvReadCRTC0(pNv, NV_CRTC_FSEL);
591 nvWriteCRTC0(pNv, NV_CRTC_FSEL, oldhead | 0x00000010);
593 monitorA = NVProbeDDC(pScrn, 0);
594 monitorB = NVProbeDDC(pScrn, 1);
596 if(slaved_on_A && !tvA) {
597 pNv->crtc_active[0] = TRUE;
599 xf86DrvMsg(pScrn->scrnIndex, X_PROBED,
600 "CRTC 0 is currently programmed for DFP\n");
602 if(slaved_on_B && !tvB) {
603 pNv->crtc_active[1] = TRUE;
605 xf86DrvMsg(pScrn->scrnIndex, X_PROBED,
606 "CRTC 1 is currently programmed for DFP\n");
609 pNv->crtc_active[outputAfromCRTC] = TRUE;
611 xf86DrvMsg(pScrn->scrnIndex, X_PROBED,
612 "CRTC %i appears to have a CRT attached\n", pNv->crtc_active[1]);
615 pNv->crtc_active[outputBfromCRTC] = TRUE;
617 xf86DrvMsg(pScrn->scrnIndex, X_PROBED,
618 "CRTC %i appears to have a CRT attached\n", pNv->crtc_active[1]);
621 pNv->crtc_active[0] = TRUE;
624 xf86DrvMsg(pScrn->scrnIndex, X_PROBED,
625 "CRTC 0 is currently programmed for TV\n");
628 pNv->crtc_active[1] = TRUE;
631 xf86DrvMsg(pScrn->scrnIndex, X_PROBED,
632 "CRTC 1 is currently programmed for TV\n");
635 FlatPanel = monitorA->features.input_type ? 1 : 0;
638 FlatPanel = monitorB->features.input_type ? 1 : 0;
641 if(pNv->FlatPanel == -1) {
642 if(FlatPanel != -1) {
643 pNv->FlatPanel = FlatPanel;
644 pNv->Television = Television;
646 xf86DrvMsg(pScrn->scrnIndex, X_INFO,
647 "Unable to detect display type...\n");
649 xf86DrvMsg(pScrn->scrnIndex, X_DEFAULT,
650 "...On a laptop, assuming DFP\n");
653 xf86DrvMsg(pScrn->scrnIndex, X_DEFAULT,
654 "...Using default of CRT\n");
659 xf86DrvMsg(pScrn->scrnIndex, X_CONFIG,
660 "Forcing display type to %s as specified\n",
661 pNv->FlatPanel ? "DFP" : "CRT");
664 if(!(pNv->crtc_active[0]) && !(pNv->crtc_active[1])) {
665 xf86DrvMsg(pScrn->scrnIndex, X_INFO,
666 "Unable to detect which CRTC is used...\n");
668 pNv->crtc_active[1] = TRUE;
670 pNv->crtc_active[0] = TRUE;
672 xf86DrvMsg(pScrn->scrnIndex, X_DEFAULT,
673 "...Defaulting to CRTCNumber %i\n", pNv->crtc_active[1]);
677 if((monitorA->features.input_type && pNv->FlatPanel) ||
678 (!monitorA->features.input_type && !pNv->FlatPanel))
691 if((monitorB->features.input_type && !pNv->FlatPanel) ||
692 (!monitorB->features.input_type && pNv->FlatPanel))
701 if(implementation == CHIPSET_NV11)
702 cr44 = pNv->crtc_active[1] * 0x3;
704 nvWriteCRTC0(pNv, NV_CRTC_FSEL, oldhead);
706 nvWriteVGA(pNv, NV_VGA_CRTCX_OWNER, cr44);
707 NVSelectHeadRegisters(pScrn, pNv->crtc_active[1]);
710 xf86DrvMsg(pScrn->scrnIndex, X_INFO,
711 "Using %s on CRTC %i\n",
712 pNv->FlatPanel ? (pNv->Television ? "TV" : "DFP") : "CRT",
713 pNv->crtc_active[1]);
715 if(pNv->FlatPanel && !pNv->Television) {
716 pNv->fpWidth = nvReadCurRAMDAC(pNv, NV_RAMDAC_FP_HDISP_END) + 1;
717 pNv->fpHeight = nvReadCurRAMDAC(pNv, NV_RAMDAC_FP_VDISP_END) + 1;
718 pNv->fpSyncs = nvReadCurRAMDAC(pNv, NV_RAMDAC_FP_CONTROL) & 0x30000033;
719 xf86DrvMsg(pScrn->scrnIndex, X_PROBED, "Panel size is %i x %i\n",
720 pNv->fpWidth, pNv->fpHeight);
724 xf86SetDDCproperties(pScrn, monitorA);
726 if(!pNv->FlatPanel || (pScrn->depth != 24) || !pNv->twoHeads)
727 pNv->FPDither = FALSE;
730 if(pNv->FlatPanel && pNv->twoHeads) {
731 nvWriteRAMDAC0(pNv, NV_RAMDAC_FP_TMDS_CONTROL, 0x00010004);
732 if(nvReadRAMDAC0(pNv, NV_RAMDAC_FP_TMDS_DATA) & 1)
734 xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Panel is %s\n",
735 pNv->LVDS ? "LVDS" : "TMDS");