diff options
author | Francisco Jerez <currojerez@gmail.com> | 2008-10-11 14:24:48 +0200 |
---|---|---|
committer | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2008-10-14 13:25:27 -0300 |
commit | 6e0837305533f940adb7a09f9b013077c0888f2d (patch) | |
tree | b918a274669daea2cebd0a8d69f151b73aded587 /src/smi_exa.c | |
parent | 605199b1fa80d5a65e11a38270f6d0974466d1dc (diff) |
RandR1.2 initial implementation (WIP)
Moved most of the Lynx-specific code out of the main
functions at smi_driver.c to some new files: smilynx_hw.c
(With CRTC-independent code like global hardware initialization and
mode saving/restoring), smilynx_crtc.c (With the CRTC-local
procedures) and smilynx_output.c (Output power management, DDC and
monitor detection, currently).
Done something similar with the SMI501 code: split
SMI501_ModeInit in three separate functions: SMI501_HWInit that does
the global initialization, and the CRTC mode_set callbacks
SMI501_ModeSet_crt and SMI501_ModeSet_lcd at smi501_crtc.c.
The SMI501_ModeSet code is divided into SMI501_WriteMode_common,
SMI501_WriteMode_lcd and SMI501_WriteMode_crt, each one updates a
different register set in the hardware.
Inside smi_crtc.c, there is mainly hardware independent
code... Initial CRT controller allocation, shadows, rotation and
framebuffer resizing code.
The shadow code currently relies on EXA... I'm not sure what are the
problems of the EXA implementation in MSOC. Does it work?
I think it would be a good thing to get rid of XAA soon: The next
thing I'll be working on will be EXA Composite... I hope it's possible
to get EXA acceleration working at least as fast as the current
XAA. (Although Teddy Wang confirmed me that the SMI720 DMA engine is
broken...)
So, the patch adds some features like new Lynx dualhead modesetting
code, but it probably breaks some other things:
* Video Overlay: I suppose it does work with EXA activated. It seems
it is also possible to have simultaneous overlays in both CRTCs with the
Lynx hardware (I have some code for this, but still work in progress).
* Hardware Cursor (It needs more integration in the CRTC interfaces).
* The old Shadow FB / rotation code, which we should probably drop.
These are in my TODO list... Along with some more cleaning and other
minor issues in the modesetting code.
About the SMI501 RandR1.2 implementation... I suppose it's specially
lacking per-output DPMS (The DPMS field in the System Control register
only affects the CRT, doesn't it?).
Diffstat (limited to 'src/smi_exa.c')
-rw-r--r-- | src/smi_exa.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/smi_exa.c b/src/smi_exa.c index 98d34e8..9246298 100644 --- a/src/smi_exa.c +++ b/src/smi_exa.c @@ -71,19 +71,20 @@ SMI_EXAInit(ScreenPtr pScreen) RETURN(FALSE); } + /* Require 2.1 semantics: + Don't uninitialize the memory manager when swapping out */ pSmi->EXADriverPtr->exa_major = 2; - pSmi->EXADriverPtr->exa_minor = 0; + pSmi->EXADriverPtr->exa_minor = 1; SMI_EngineReset(pScrn); /* Memory Manager */ - if(pSmi->shadowFB){ - pSmi->EXADriverPtr->memoryBase = pSmi->FBBase; /* The shadow framebuffer is located at offset 0 */ - }else{ - pSmi->EXADriverPtr->memoryBase = pSmi->FBBase + pSmi->FBOffset; - } + pSmi->EXADriverPtr->memoryBase = pSmi->FBBase; pSmi->EXADriverPtr->memorySize = pSmi->FBReserved; - pSmi->EXADriverPtr->offScreenBase = pScrn->displayWidth * pSmi->height * pSmi->Bpp; + + /* The framebuffer is allocated as an offscreen area with the + memory manager (It makes easier further resizing) */ + pSmi->EXADriverPtr->offScreenBase = 0; /* Flags */ pSmi->EXADriverPtr->flags = EXA_TWO_BITBLT_DIRECTIONS; @@ -138,6 +139,7 @@ SMI_EXAInit(ScreenPtr pScreen) RETURN(FALSE); } + xf86DrvMsg(pScrn->scrnIndex, X_INFO, "EXA Acceleration enabled.\n"); RETURN(TRUE); |