xenocara/driver/xf86-video-siliconmotion/src/smilynx_output.c

305 lines
8.2 KiB
C

/*
Copyright (C) 1994-1999 The XFree86 Project, Inc. All Rights Reserved.
Copyright (C) 2000 Silicon Motion, Inc. All Rights Reserved.
Copyright (C) 2008 Francisco Jerez. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the names of The XFree86 Project and
Silicon Motion shall not be used in advertising or otherwise to promote the
sale, use or other dealings in this Software without prior written
authorization from The XFree86 Project or Silicon Motion.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "smi.h"
#include "smi_crtc.h"
#include "smilynx.h"
static void
SMILynx_OutputDPMS_crt(xf86OutputPtr output, int mode)
{
ScrnInfoPtr pScrn = output->scrn;
SMIPtr pSmi = SMIPTR(pScrn);
SMIRegPtr reg = pSmi->mode;
vgaHWPtr hwp = VGAHWPTR(pScrn);
ENTER();
switch (mode) {
case DPMSModeOn:
reg->SR31 |= 0x02; /* Enable CRT display*/
reg->SR22 = (reg->SR22 & ~0x30) | 0x00; /* Set DPMS state*/
break;
case DPMSModeStandby:
reg->SR31 |= 0x02; /* Enable CRT display*/
reg->SR22 = (reg->SR22 & ~0x30) | 0x10; /* Set DPMS state*/
break;
case DPMSModeSuspend:
reg->SR31 |= 0x02; /* Enable CRT display*/
reg->SR22 = (reg->SR22 & ~0x30) | 0x20; /* Set DPMS state*/
break;
case DPMSModeOff:
reg->SR31 &= ~0x02; /* Disable CRT display*/
reg->SR22 = (reg->SR22 & ~0x30) | 0x30; /* Set DPMS state*/
break;
}
/* Wait for vertical retrace */
while (hwp->readST01(hwp) & 0x8) ;
while (!(hwp->readST01(hwp) & 0x8)) ;
/* Write the registers */
VGAOUT8_INDEX(pSmi, VGA_SEQ_INDEX, VGA_SEQ_DATA, 0x22, reg->SR22);
VGAOUT8_INDEX(pSmi, VGA_SEQ_INDEX, VGA_SEQ_DATA, 0x31, reg->SR31);
LEAVE();
}
static void
SMILynx_OutputDPMS_lcd(xf86OutputPtr output, int mode)
{
ScrnInfoPtr pScrn = output->scrn;
SMIPtr pSmi = SMIPTR(pScrn);
SMIRegPtr reg = pSmi->mode;
xf86CrtcConfigPtr crtcConf = XF86_CRTC_CONFIG_PTR(pScrn);
ENTER();
switch (mode) {
case DPMSModeOn:
if(pSmi->Dualhead &&
output->crtc == crtcConf->crtc[1]){
/* Virtual Refresh is enabled */
reg->SR21 &= ~0x10; /* Enable LCD framebuffer read operation and DSTN dithering engine */
}else{
if(pSmi->lcd == 2){
/* LCD is DSTN */
reg->SR21 &= ~0x10; /* Enable LCD framebuffer read operation and DSTN dithering engine */
reg->SR21 &= ~0x20; /* Enable LCD framebuffer write operation */
}
}
reg->SR31 |= 0x01; /* Enable LCD display*/
break;
case DPMSModeStandby:
case DPMSModeSuspend:
case DPMSModeOff:
reg->SR21 |= 0x30; /* Disable LCD framebuffer r/w operation */
reg->SR31 &= ~0x01; /* Disable LCD display*/
break;
}
/* Write the registers */
VGAOUT8_INDEX(pSmi, VGA_SEQ_INDEX, VGA_SEQ_DATA, 0x21, reg->SR21);
VGAOUT8_INDEX(pSmi, VGA_SEQ_INDEX, VGA_SEQ_DATA, 0x31, reg->SR31);
LEAVE();
}
static void
SMILynx_OutputDPMS_bios(xf86OutputPtr output, int mode)
{
ScrnInfoPtr pScrn = output->scrn;
SMIPtr pSmi = SMIPTR(pScrn);
ENTER();
pSmi->pInt10->ax = 0x4F10;
switch (mode) {
case DPMSModeOn:
pSmi->pInt10->bx = 0x0001;
break;
case DPMSModeStandby:
pSmi->pInt10->bx = 0x0101;
break;
case DPMSModeSuspend:
pSmi->pInt10->bx = 0x0201;
break;
case DPMSModeOff:
pSmi->pInt10->bx = 0x0401;
break;
}
pSmi->pInt10->cx = 0x0000;
pSmi->pInt10->num = 0x10;
xf86ExecX86int10(pSmi->pInt10);
LEAVE();
}
static DisplayModePtr
SMILynx_OutputGetModes_crt(xf86OutputPtr output)
{
ScrnInfoPtr pScrn = output->scrn;
SMIPtr pSmi = SMIPTR(pScrn);
xf86MonPtr pMon = NULL;
ENTER();
if(xf86LoaderCheckSymbol("xf86PrintEDID")){ /* Ensure the DDC module is loaded*/
/* Try VBE */
if(pSmi->pVbe){
pMon = vbeDoEDID(pSmi->pVbe, NULL);
if ( pMon != NULL &&
(pMon->rawData[0] == 0x00) &&
(pMon->rawData[1] == 0xFF) &&
(pMon->rawData[2] == 0xFF) &&
(pMon->rawData[3] == 0xFF) &&
(pMon->rawData[4] == 0xFF) &&
(pMon->rawData[5] == 0xFF) &&
(pMon->rawData[6] == 0xFF) &&
(pMon->rawData[7] == 0x00)) {
xf86OutputSetEDID(output,pMon);
LEAVE(xf86OutputGetEDIDModes(output));
}
}
/* Try DDC2 */
if(pSmi->I2C){
pMon=xf86OutputGetEDID(output,pSmi->I2C);
if(pMon){
xf86OutputSetEDID(output,pMon);
LEAVE(xf86OutputGetEDIDModes(output));
}
}
/* Try DDC1 */
pMon=SMILynx_ddc1(pScrn);
if(pMon){
xf86OutputSetEDID(output,pMon);
LEAVE(xf86OutputGetEDIDModes(output));
}
}
LEAVE(NULL);
}
static xf86OutputStatus
SMILynx_OutputDetect_crt(xf86OutputPtr output)
{
SMIPtr pSmi = SMIPTR(output->scrn);
SMIRegPtr mode = pSmi->mode;
vgaHWPtr hwp = VGAHWPTR(output->scrn);
CARD8 SR7D;
Bool status;
ENTER();
SR7D = VGAIN8_INDEX(pSmi, VGA_SEQ_INDEX, VGA_SEQ_DATA, 0x7D);
VGAOUT8_INDEX(pSmi, VGA_SEQ_INDEX, VGA_SEQ_DATA, 0x21, mode->SR21 & ~0x88); /* Enable DAC and color palette RAM */
VGAOUT8_INDEX(pSmi, VGA_SEQ_INDEX, VGA_SEQ_DATA, 0x7B, 0x40); /* "TV and RAMDAC Testing Power", Green component */
VGAOUT8_INDEX(pSmi, VGA_SEQ_INDEX, VGA_SEQ_DATA, 0x7D, SR7D | 0x10); /* Enable monitor detect */
/* Wait for vertical retrace */
while (!(hwp->readST01(hwp) & 0x8)) ;
while (hwp->readST01(hwp) & 0x8) ;
status = VGAIN8(pSmi, 0x3C2) & 0x10;
/* Restore previous state */
VGAOUT8_INDEX(pSmi, VGA_SEQ_INDEX, VGA_SEQ_DATA, 0x21, mode->SR21);
VGAOUT8_INDEX(pSmi, VGA_SEQ_INDEX, VGA_SEQ_DATA, 0x7D, SR7D);
if(status)
LEAVE(XF86OutputStatusConnected);
else
LEAVE(XF86OutputStatusDisconnected);
}
Bool
SMILynx_OutputPreInit(ScrnInfoPtr pScrn)
{
SMIPtr pSmi = SMIPTR(pScrn);
xf86OutputPtr output;
xf86OutputFuncsPtr outputFuncs;
ENTER();
if(pSmi->Chipset == SMI_COUGAR3DR){
/* Output 0 is LCD */
SMI_OutputFuncsInit_base(&outputFuncs);
if(pSmi->useBIOS)
outputFuncs->dpms = SMILynx_OutputDPMS_bios;
else
outputFuncs->dpms = SMILynx_OutputDPMS_lcd;
outputFuncs->get_modes = SMI_OutputGetModes_native;
outputFuncs->detect = SMI_OutputDetect_lcd;
if(! (output = xf86OutputCreate(pScrn,outputFuncs,"LVDS")))
LEAVE(FALSE);
output->possible_crtcs = 1 << 0;
output->possible_clones = 0;
output->interlaceAllowed = FALSE;
output->doubleScanAllowed = FALSE;
}else{
/* Output 0 is LCD */
SMI_OutputFuncsInit_base(&outputFuncs);
if(pSmi->useBIOS)
outputFuncs->dpms = SMILynx_OutputDPMS_bios;
else
outputFuncs->dpms = SMILynx_OutputDPMS_lcd;
outputFuncs->get_modes = SMI_OutputGetModes_native;
outputFuncs->detect = SMI_OutputDetect_lcd;
if(! (output = xf86OutputCreate(pScrn,outputFuncs,"LVDS")))
LEAVE(FALSE);
output->interlaceAllowed = FALSE;
output->doubleScanAllowed = FALSE;
output->possible_crtcs = (1 << 0) | (1 << 1);
output->possible_clones = 1 << 1;
if(pSmi->Dualhead){
/* Output 1 is CRT */
SMI_OutputFuncsInit_base(&outputFuncs);
outputFuncs->dpms = SMILynx_OutputDPMS_crt;
outputFuncs->get_modes = SMILynx_OutputGetModes_crt;
if(pSmi->Chipset == SMI_LYNX3DM)
outputFuncs->detect = SMILynx_OutputDetect_crt;
if(! (output = xf86OutputCreate(pScrn,outputFuncs,"VGA")))
LEAVE(FALSE);
output->interlaceAllowed = FALSE;
output->doubleScanAllowed = FALSE;
output->possible_crtcs = 1 << 0;
output->possible_clones = 1 << 0;
}
}
LEAVE(TRUE);
}