⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 radeon_exa_render.c

📁 x.org上有关ati系列显卡最新驱动
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Copyright 2005 Eric Anholt * Copyright 2005 Benjamin Herrenschmidt * 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 (including the next * paragraph) 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, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS 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. * * Authors: *    Eric Anholt <anholt@FreeBSD.org> *    Zack Rusin <zrusin@trolltech.com> *    Benjamin Herrenschmidt <benh@kernel.crashing.org> * */#if defined(ACCEL_MMIO) && defined(ACCEL_CP)#error Cannot define both MMIO and CP acceleration!#endif#if !defined(UNIXCPP) || defined(ANSICPP)#define FUNC_NAME_CAT(prefix,suffix) prefix##suffix#else#define FUNC_NAME_CAT(prefix,suffix) prefix/**/suffix#endif#ifdef ACCEL_MMIO#define FUNC_NAME(prefix) FUNC_NAME_CAT(prefix,MMIO)#else#ifdef ACCEL_CP#define FUNC_NAME(prefix) FUNC_NAME_CAT(prefix,CP)#else#error No accel type defined!#endif#endif#ifndef ACCEL_CP#define ONLY_ONCE#endif/* Only include the following (generic) bits once. */#ifdef ONLY_ONCEstatic Bool is_transform[2];static PictTransform *transform[2];struct blendinfo {    Bool dst_alpha;    Bool src_alpha;    CARD32 blend_cntl;};static struct blendinfo RadeonBlendOp[] = {    /* Clear */    {0, 0, RADEON_SRC_BLEND_GL_ZERO	      | RADEON_DST_BLEND_GL_ZERO},    /* Src */    {0, 0, RADEON_SRC_BLEND_GL_ONE	      | RADEON_DST_BLEND_GL_ZERO},    /* Dst */    {0, 0, RADEON_SRC_BLEND_GL_ZERO	      | RADEON_DST_BLEND_GL_ONE},    /* Over */    {0, 1, RADEON_SRC_BLEND_GL_ONE	      | RADEON_DST_BLEND_GL_ONE_MINUS_SRC_ALPHA},    /* OverReverse */    {1, 0, RADEON_SRC_BLEND_GL_ONE_MINUS_DST_ALPHA | RADEON_DST_BLEND_GL_ONE},    /* In */    {1, 0, RADEON_SRC_BLEND_GL_DST_ALPHA     | RADEON_DST_BLEND_GL_ZERO},    /* InReverse */    {0, 1, RADEON_SRC_BLEND_GL_ZERO	      | RADEON_DST_BLEND_GL_SRC_ALPHA},    /* Out */    {1, 0, RADEON_SRC_BLEND_GL_ONE_MINUS_DST_ALPHA | RADEON_DST_BLEND_GL_ZERO},    /* OutReverse */    {0, 1, RADEON_SRC_BLEND_GL_ZERO	      | RADEON_DST_BLEND_GL_ONE_MINUS_SRC_ALPHA},    /* Atop */    {1, 1, RADEON_SRC_BLEND_GL_DST_ALPHA     | RADEON_DST_BLEND_GL_ONE_MINUS_SRC_ALPHA},    /* AtopReverse */    {1, 1, RADEON_SRC_BLEND_GL_ONE_MINUS_DST_ALPHA | RADEON_DST_BLEND_GL_SRC_ALPHA},    /* Xor */    {1, 1, RADEON_SRC_BLEND_GL_ONE_MINUS_DST_ALPHA | RADEON_DST_BLEND_GL_ONE_MINUS_SRC_ALPHA},    /* Add */    {0, 0, RADEON_SRC_BLEND_GL_ONE	      | RADEON_DST_BLEND_GL_ONE},};struct formatinfo {    int fmt;    CARD32 card_fmt;};/* Note on texture formats: * TXFORMAT_Y8 expands to (Y,Y,Y,1).  TXFORMAT_I8 expands to (I,I,I,I) */static struct formatinfo R100TexFormats[] = {	{PICT_a8r8g8b8,	RADEON_TXFORMAT_ARGB8888 | RADEON_TXFORMAT_ALPHA_IN_MAP},	{PICT_x8r8g8b8,	RADEON_TXFORMAT_ARGB8888},	{PICT_r5g6b5,	RADEON_TXFORMAT_RGB565},	{PICT_a1r5g5b5,	RADEON_TXFORMAT_ARGB1555 | RADEON_TXFORMAT_ALPHA_IN_MAP},	{PICT_x1r5g5b5,	RADEON_TXFORMAT_ARGB1555},	{PICT_a8,	RADEON_TXFORMAT_I8 | RADEON_TXFORMAT_ALPHA_IN_MAP},};static struct formatinfo R200TexFormats[] = {    {PICT_a8r8g8b8,	R200_TXFORMAT_ARGB8888 | R200_TXFORMAT_ALPHA_IN_MAP},    {PICT_x8r8g8b8,	R200_TXFORMAT_ARGB8888},    {PICT_a8b8g8r8,	R200_TXFORMAT_ABGR8888 | R200_TXFORMAT_ALPHA_IN_MAP},    {PICT_x8b8g8r8,	R200_TXFORMAT_ABGR8888},    {PICT_r5g6b5,	R200_TXFORMAT_RGB565},    {PICT_a1r5g5b5,	R200_TXFORMAT_ARGB1555 | R200_TXFORMAT_ALPHA_IN_MAP},    {PICT_x1r5g5b5,	R200_TXFORMAT_ARGB1555},    {PICT_a8,		R200_TXFORMAT_I8 | R200_TXFORMAT_ALPHA_IN_MAP},};/* Common Radeon setup code */static Bool RADEONGetDestFormat(PicturePtr pDstPicture, CARD32 *dst_format){    switch (pDstPicture->format) {    case PICT_a8r8g8b8:    case PICT_x8r8g8b8:	*dst_format = RADEON_COLOR_FORMAT_ARGB8888;	break;    case PICT_r5g6b5:	*dst_format = RADEON_COLOR_FORMAT_RGB565;	break;    case PICT_a1r5g5b5:    case PICT_x1r5g5b5:	*dst_format = RADEON_COLOR_FORMAT_ARGB1555;	break;    case PICT_a8:	*dst_format = RADEON_COLOR_FORMAT_RGB8;	break;    default:	RADEON_FALLBACK(("Unsupported dest format 0x%x\n",			(int)pDstPicture->format));    }    return TRUE;}static CARD32 RADEONGetBlendCntl(int op, PicturePtr pMask, CARD32 dst_format){    CARD32 sblend, dblend;    sblend = RadeonBlendOp[op].blend_cntl & RADEON_SRC_BLEND_MASK;    dblend = RadeonBlendOp[op].blend_cntl & RADEON_DST_BLEND_MASK;    /* If there's no dst alpha channel, adjust the blend op so that we'll treat     * it as always 1.     */    if (PICT_FORMAT_A(dst_format) == 0 && RadeonBlendOp[op].dst_alpha) {	if (sblend == RADEON_SRC_BLEND_GL_DST_ALPHA)	    sblend = RADEON_SRC_BLEND_GL_ONE;	else if (sblend == RADEON_SRC_BLEND_GL_ONE_MINUS_DST_ALPHA)	    sblend = RADEON_SRC_BLEND_GL_ZERO;    }    /* If the source alpha is being used, then we should only be in a case where     * the source blend factor is 0, and the source blend value is the mask     * channels multiplied by the source picture's alpha.     */    if (pMask && pMask->componentAlpha && RadeonBlendOp[op].src_alpha) {	if (dblend == RADEON_DST_BLEND_GL_SRC_ALPHA) {	    dblend = RADEON_DST_BLEND_GL_SRC_COLOR;	} else if (dblend == RADEON_DST_BLEND_GL_ONE_MINUS_SRC_ALPHA) {	    dblend = RADEON_DST_BLEND_GL_ONE_MINUS_SRC_COLOR;	}    }    return sblend | dblend;}union intfloat {    float f;    CARD32 i;};/* R100-specific code */static Bool R100CheckCompositeTexture(PicturePtr pPict, int unit){    int w = pPict->pDrawable->width;    int h = pPict->pDrawable->height;    int i;    if ((w > 0x7ff) || (h > 0x7ff))	RADEON_FALLBACK(("Picture w/h too large (%dx%d)\n", w, h));    for (i = 0; i < sizeof(R100TexFormats) / sizeof(R100TexFormats[0]); i++) {	if (R100TexFormats[i].fmt == pPict->format)	    break;    }    if (i == sizeof(R100TexFormats) / sizeof(R100TexFormats[0]))	RADEON_FALLBACK(("Unsupported picture format 0x%x\n",			(int)pPict->format));    if (pPict->repeat && ((w & (w - 1)) != 0 || (h & (h - 1)) != 0))	RADEON_FALLBACK(("NPOT repeat unsupported (%dx%d)\n", w, h));    if (pPict->filter != PictFilterNearest &&	pPict->filter != PictFilterBilinear)    {	RADEON_FALLBACK(("Unsupported filter 0x%x\n", pPict->filter));    }    return TRUE;}#endif /* ONLY_ONCE */static Bool FUNC_NAME(R100TextureSetup)(PicturePtr pPict, PixmapPtr pPix,					int unit){    RINFO_FROM_SCREEN(pPix->drawable.pScreen);    CARD32 txfilter, txformat, txoffset, txpitch;    int w = pPict->pDrawable->width;    int h = pPict->pDrawable->height;    int i;    ACCEL_PREAMBLE();    txpitch = exaGetPixmapPitch(pPix);    txoffset = exaGetPixmapOffset(pPix) + info->fbLocation;    if ((txoffset & 0x1f) != 0)	RADEON_FALLBACK(("Bad texture offset 0x%x\n", (int)txoffset));    if ((txpitch & 0x1f) != 0)	RADEON_FALLBACK(("Bad texture pitch 0x%x\n", (int)txpitch));        for (i = 0; i < sizeof(R100TexFormats) / sizeof(R100TexFormats[0]); i++)    {	if (R100TexFormats[i].fmt == pPict->format)	    break;    }    txformat = R100TexFormats[i].card_fmt;    if (RADEONPixmapIsColortiled(pPix))	txoffset |= RADEON_TXO_MACRO_TILE;    if (pPict->repeat) {	txformat |= RADEONLog2(w) << RADEON_TXFORMAT_WIDTH_SHIFT;	txformat |= RADEONLog2(h) << RADEON_TXFORMAT_HEIGHT_SHIFT;    } else 	txformat |= RADEON_TXFORMAT_NON_POWER2;    txformat |= unit << 24; /* RADEON_TXFORMAT_ST_ROUTE_STQX */     switch (pPict->filter) {    case PictFilterNearest:	txfilter = (RADEON_MAG_FILTER_NEAREST | RADEON_MIN_FILTER_NEAREST);	break;    case PictFilterBilinear:	txfilter = (RADEON_MAG_FILTER_LINEAR | RADEON_MIN_FILTER_LINEAR);	break;    default:	RADEON_FALLBACK(("Bad filter 0x%x\n", pPict->filter));    }    BEGIN_ACCEL(5);    if (unit == 0) {	OUT_ACCEL_REG(RADEON_PP_TXFILTER_0, txfilter);	OUT_ACCEL_REG(RADEON_PP_TXFORMAT_0, txformat);	OUT_ACCEL_REG(RADEON_PP_TXOFFSET_0, txoffset);	OUT_ACCEL_REG(RADEON_PP_TEX_SIZE_0,	    (pPix->drawable.width - 1) |	    ((pPix->drawable.height - 1) << RADEON_TEX_VSIZE_SHIFT));	OUT_ACCEL_REG(RADEON_PP_TEX_PITCH_0, txpitch - 32);    } else {	OUT_ACCEL_REG(RADEON_PP_TXFILTER_1, txfilter);	OUT_ACCEL_REG(RADEON_PP_TXFORMAT_1, txformat);	OUT_ACCEL_REG(RADEON_PP_TXOFFSET_1, txoffset);	OUT_ACCEL_REG(RADEON_PP_TEX_SIZE_1,	    (pPix->drawable.width - 1) |	    ((pPix->drawable.height - 1) << RADEON_TEX_VSIZE_SHIFT));	OUT_ACCEL_REG(RADEON_PP_TEX_PITCH_1, txpitch - 32);    }    FINISH_ACCEL();    if (pPict->transform != 0) {	is_transform[unit] = TRUE;	transform[unit] = pPict->transform;    } else {	is_transform[unit] = FALSE;    }    return TRUE;}#ifdef ONLY_ONCEstatic Bool R100CheckComposite(int op, PicturePtr pSrcPicture,			       PicturePtr pMaskPicture, PicturePtr pDstPicture){    CARD32 tmp1;    /* Check for unsupported compositing operations. */    if (op >= sizeof(RadeonBlendOp) / sizeof(RadeonBlendOp[0]))	RADEON_FALLBACK(("Unsupported Composite op 0x%x\n", op));    if (pMaskPicture != NULL && pMaskPicture->componentAlpha) {	/* Check if it's component alpha that relies on a source alpha and on	 * the source value.  We can only get one of those into the single	 * source value that we get to blend with.	 */	if (RadeonBlendOp[op].src_alpha &&	    (RadeonBlendOp[op].blend_cntl & RADEON_SRC_BLEND_MASK) !=	     RADEON_SRC_BLEND_GL_ZERO)	{	    RADEON_FALLBACK(("Component alpha not supported with source "			    "alpha and source value blending.\n"));	}    }    if (pDstPicture->pDrawable->width >= (1 << 11) ||	pDstPicture->pDrawable->height >= (1 << 11))    {	RADEON_FALLBACK(("Dest w/h too large (%d,%d).\n",			pDstPicture->pDrawable->width,			pDstPicture->pDrawable->height));    }    if (!R100CheckCompositeTexture(pSrcPicture, 0))	return FALSE;    if (pMaskPicture != NULL && !R100CheckCompositeTexture(pMaskPicture, 1))	return FALSE;    if (!RADEONGetDestFormat(pDstPicture, &tmp1))	return FALSE;    return TRUE;}#endif /* ONLY_ONCE */static Bool FUNC_NAME(R100PrepareComposite)(int op,					    PicturePtr pSrcPicture,					    PicturePtr pMaskPicture,					    PicturePtr pDstPicture,					    PixmapPtr pSrc,					    PixmapPtr pMask,					    PixmapPtr pDst){    RINFO_FROM_SCREEN(pDst->drawable.pScreen);    CARD32 dst_format, dst_offset, dst_pitch, colorpitch;    CARD32 pp_cntl, blendcntl, cblend, ablend;    int pixel_shift;    ACCEL_PREAMBLE();    TRACE;    if (!info->XInited3D)	RADEONInit3DEngine(pScrn);    RADEONGetDestFormat(pDstPicture, &dst_format);    pixel_shift = pDst->drawable.bitsPerPixel >> 4;    dst_offset = exaGetPixmapOffset(pDst) + info->fbLocation;    dst_pitch = exaGetPixmapPitch(pDst);    colorpitch = dst_pitch >> pixel_shift;    if (RADEONPixmapIsColortiled(pDst))	colorpitch |= RADEON_COLOR_TILE_ENABLE;    dst_offset = exaGetPixmapOffset(pDst) + info->fbLocation;    dst_pitch = exaGetPixmapPitch(pDst);    if ((dst_offset & 0x0f) != 0)	RADEON_FALLBACK(("Bad destination offset 0x%x\n", (int)dst_offset));    if (((dst_pitch >> pixel_shift) & 0x7) != 0)	RADEON_FALLBACK(("Bad destination pitch 0x%x\n", (int)dst_pitch));    if (!FUNC_NAME(R100TextureSetup)(pSrcPicture, pSrc, 0))	return FALSE;    pp_cntl = RADEON_TEX_0_ENABLE | RADEON_TEX_BLEND_0_ENABLE;    if (pMask != NULL) {	if (!FUNC_NAME(R100TextureSetup)(pMaskPicture, pMask, 1))	    return FALSE;	pp_cntl |= RADEON_TEX_1_ENABLE;    } else {	is_transform[1] = FALSE;    }    RADEON_SWITCH_TO_3D();    BEGIN_ACCEL(8);    OUT_ACCEL_REG(RADEON_PP_CNTL, pp_cntl);    OUT_ACCEL_REG(RADEON_RB3D_CNTL, dst_format | RADEON_ALPHA_BLEND_ENABLE);    OUT_ACCEL_REG(RADEON_RB3D_COLOROFFSET, dst_offset);    OUT_ACCEL_REG(RADEON_RB3D_COLORPITCH, colorpitch);    /* IN operator: Multiply src by mask components or mask alpha.     * BLEND_CTL_ADD is A * B + C.     * If a source is a8, we have to explicitly zero its color values.     * If the destination is a8, we have to route the alpha to red, I think.     * If we're doing component alpha where the source for blending is going to     * be the source alpha (and there's no source value used), we have to zero     * the source's color values.     */    cblend = RADEON_BLEND_CTL_ADD | RADEON_CLAMP_TX | RADEON_COLOR_ARG_C_ZERO;    ablend = RADEON_BLEND_CTL_ADD | RADEON_CLAMP_TX | RADEON_ALPHA_ARG_C_ZERO;    if (pDstPicture->format == PICT_a8 ||	(pMask && pMaskPicture->componentAlpha && RadeonBlendOp[op].src_alpha))    {	cblend |= RADEON_COLOR_ARG_A_T0_ALPHA;    } else if (pSrcPicture->format == PICT_a8)	cblend |= RADEON_COLOR_ARG_A_ZERO;    else	cblend |= RADEON_COLOR_ARG_A_T0_COLOR;    ablend |= RADEON_ALPHA_ARG_A_T0_ALPHA;    if (pMask) {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -