smi.h revision eb3dced6
109885543Smrg/* Header:   //Mercury/Projects/archives/XFree86/4.0/smi.h-arc   1.51   29 Nov 2000 17:45:16   Frido  $ */
209885543Smrg
309885543Smrg/*
409885543SmrgCopyright (C) 1994-1999 The XFree86 Project, Inc.  All Rights Reserved.
509885543SmrgCopyright (C) 2000 Silicon Motion, Inc.  All Rights Reserved.
609885543Smrg
709885543SmrgPermission is hereby granted, free of charge, to any person obtaining a copy of
809885543Smrgthis software and associated documentation files (the "Software"), to deal in
909885543Smrgthe Software without restriction, including without limitation the rights to
1009885543Smrguse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1109885543Smrgof the Software, and to permit persons to whom the Software is furnished to do
1209885543Smrgso, subject to the following conditions:
1309885543Smrg
1409885543SmrgThe above copyright notice and this permission notice shall be included in all
1509885543Smrgcopies or substantial portions of the Software.
1609885543Smrg
1709885543SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1809885543SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
1909885543SmrgNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
2009885543SmrgXFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
2109885543SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2209885543SmrgWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2309885543Smrg
2409885543SmrgExcept as contained in this notice, the names of the XFree86 Project and
2509885543SmrgSilicon Motion shall not be used in advertising or otherwise to promote the
2609885543Smrgsale, use or other dealings in this Software without prior written
2709885543Smrgauthorization from the XFree86 Project and Silicon Motion.
2809885543Smrg*/
2909885543Smrg
3009885543Smrg#ifndef _SMI_H
3109885543Smrg#define _SMI_H
3209885543Smrg
337104f784Smrg#include "smi_pcirename.h"
347104f784Smrg
3509885543Smrg#include <string.h>
3609885543Smrg#include <stdio.h>
3709885543Smrg
3809885543Smrg#include "xf86.h"
3909885543Smrg#include "xf86_OSproc.h"
4009885543Smrg#include "xf86PciInfo.h"
4109885543Smrg#include "xf86Pci.h"
4209885543Smrg#include "xf86Cursor.h"
4309885543Smrg#include "vgaHW.h"
4409885543Smrg
4509885543Smrg#include "compiler.h"
4609885543Smrg
4709885543Smrg#include "mipointer.h"
4809885543Smrg#include "micmap.h"
4909885543Smrg
5009885543Smrg#include "fb.h"
5109885543Smrg
5209885543Smrg#include "xaa.h"
5309885543Smrg#include "exa.h"
5409885543Smrg#include "xf86cmap.h"
5509885543Smrg#include "xf86i2c.h"
5609885543Smrg
5709885543Smrg#include "xf86int10.h"
5809885543Smrg#include "vbe.h"
5909885543Smrg
6009885543Smrg#include "xf86xv.h"
6109885543Smrg#include <X11/extensions/Xv.h>
6209885543Smrg
63eb3dced6Smacallan#ifndef __BYTE_ORDER
64eb3dced6Smacallan#define __BYTE_ORDER BYTE_ORDER
65eb3dced6Smacallan#define __BIG_ENDIAN BIG_ENDIAN
66eb3dced6Smacallan#define __LITTLE_ENDIAN LITTLE_ENDIAN
67eb3dced6Smacallan#endif
68eb3dced6Smacallan
6909885543Smrg/******************************************************************************/
7009885543Smrg/*			D E F I N I T I O N S				      */
7109885543Smrg/******************************************************************************/
7209885543Smrg
7309885543Smrg#ifndef SMI_DEBUG
747104f784Smrg#define SMI_DEBUG		0
7509885543Smrg#endif
7609885543Smrg
7709885543Smrg#define SMI_USE_IMAGE_WRITES	0
7809885543Smrg#define SMI_USE_VIDEO		1
79eb3dced6Smacallan#define SMI_USE_CAPTURE		0
807104f784Smrg#define SMI501_CLI_DEBUG	0
817104f784Smrg
827104f784Smrg/*
837104f784Smrg *   Leaving attempt implementation of an argb cursor using alpha plane
847104f784Smrg * for the smi 501/502 under this ifdef for now. Maybe it will be fixed
857104f784Smrg * in a subsequent hardware revision.
867104f784Smrg *   The problem is that the alpha plane will only work (that is, become
877104f784Smrg * visible) if alpha_plane_tl is set to top:=0 and left:=0.
887104f784Smrg *   Also, if alpha_plane_br does not match panel dimensions, the alpha
897104f784Smrg * plane will be displayed tilled in the "first" row, with corruption on
907104f784Smrg * on all odd columns.
917104f784Smrg *   Since setting the alpha fb_address works, to implement an argb cursor
927104f784Smrg * using the alpha plane, with the current hardware bugs, it would be
937104f784Smrg * required to:
947104f784Smrg *	o allocate an offscreen area of pSmi->lcdWidth * pSmi->lcdHeight * 2
957104f784Smrg *	o set statically tl/tr to 0,0,pSmi->lcdWidth-1,pSmi->lcdHeight-1
967104f784Smrg *	o use alpha format 3 (argb 4:4:4:4), or alternatively format 1
977104f784Smrg *	  (rgb 5:6:5), and in the last case, a global 50% alpha is the
987104f784Smrg *	  best bet, and for the argb cursors being used at the time of this
997104f784Smrg *	  writing, they look correct, while 100% opaque looks wrong.
1007104f784Smrg *	o when positioning the pointer, first erase it from the offscreen
1017104f784Smrg *	  area, then repaint it at the proper offset in the alpha offscreen
1027104f784Smrg *	  area.
1037104f784Smrg *  .... argb software cursor works way better
1047104f784Smrg *   (There are some other alternatives, like using 8 bits indexed mode,
1057104f784Smrg * but when using a global alpha value, instead of per pixel, most argb
1067104f784Smrg * cursors will not look correctly, regardless of the alpha value, that
1077104f784Smrg * should be from 50 to 100% transparency).
1087104f784Smrg *   But still there would be the problem of memory requiring a 128 bit
1097104f784Smrg * alignment, what would require either moving the image in the memory,
1107104f784Smrg * and/or some trick with the vsync pixel panning.
1117104f784Smrg *
1127104f784Smrg *   Until the alpha layer is corrected in some newer revision (or removed?),
1137104f784Smrg * it could be used as something like an alternate crt, that happens to be
1147104f784Smrg * on top of the panel (and has 16 transparency levels).
1157104f784Smrg */
1167104f784Smrg#define SMI_CURSOR_ALPHA_PLANE	0
11709885543Smrg
11809885543Smrg/******************************************************************************/
11909885543Smrg/*			S T R U C T U R E S				      */
12009885543Smrg/******************************************************************************/
12109885543Smrg
12209885543Smrg/* Driver data structure; this should contain all needed info for a mode */
12309885543Smrgtypedef struct
12409885543Smrg{
1257104f784Smrg    CARD16 mode;
1267104f784Smrg
1277104f784Smrg    CARD8 SR17, SR18;
1287104f784Smrg    CARD8 SR20, SR21, SR22, SR23, SR24;
1297104f784Smrg    CARD8 SR30, SR31, SR32, SR34;
1307104f784Smrg    CARD8 SR40, SR41, SR42, SR43, SR44, SR45, SR48, SR49, SR4A, SR4B, SR4C;
1317104f784Smrg    CARD8 SR50, SR51, SR52, SR53, SR54, SR55, SR56, SR57, SR5A;
1327104f784Smrg    CARD8 SR66, SR68, SR69, SR6A, SR6B, SR6C, SR6D, SR6E, SR6F;
1337104f784Smrg    CARD8 SR81, SRA0;
1347104f784Smrg
1357104f784Smrg    CARD8 CR30, CR33, CR33_2, CR3A;
1367104f784Smrg    CARD8 CR40[14], CR40_2[14];
1377104f784Smrg    CARD8 CR90[15], CR9F, CR9F_2;
1387104f784Smrg    CARD8 CRA0[14];
1397104f784Smrg
14009885543Smrg    CARD8	smiDACMask, smiDacRegs[256][3];
14109885543Smrg    CARD8	smiFont[8192];
1427104f784Smrg
14309885543Smrg    CARD32	DPR10, DPR1C, DPR20, DPR24, DPR28, DPR2C, DPR30, DPR3C, DPR40,
14409885543Smrg		DPR44;
14509885543Smrg    CARD32	VPR00, VPR0C, VPR10;
14609885543Smrg    CARD32	CPR00;
14709885543Smrg    CARD32	FPR00_, FPR0C_, FPR10_;
14809885543Smrg} SMIRegRec, *SMIRegPtr;
14909885543Smrg
15009885543Smrg/* Global PDEV structure. */
15109885543Smrgtypedef struct
15209885543Smrg{
1537104f784Smrg    int			Bpp;		/* Bytes per pixel */
1547104f784Smrg    int			MCLK;		/* Memory Clock  */
1557104f784Smrg    int			MXCLK;		/* MSOC Clock for local sdram */
156e4f6584cSmrg    ClockRange		clockRange;	/* Allowed pixel clock range */
1577104f784Smrg    CloseScreenProcPtr	CloseScreen;	/* Pointer used to save wrapped
1587104f784Smrg					   CloseScreen function */
1597104f784Smrg
1607104f784Smrg    I2CBusPtr		I2C;		/* Pointer into I2C module */
1617104f784Smrg    xf86Int10InfoPtr	pInt10;		/* Pointer to INT10 module */
1627104f784Smrg    vbeInfoPtr          pVbe;           /* Pointer to VBE module */
1637104f784Smrg
1647104f784Smrg    pciVideoPtr		PciInfo;	/* PCI info vars */
1657104f784Smrg#ifndef XSERVER_LIBPCIACCESS
1667104f784Smrg    PCITAG		PciTag;
1677104f784Smrg#endif
1687104f784Smrg    int			Chipset;	/* Chip info, set using PCI
1697104f784Smrg					   above */
1707104f784Smrg    int			ChipRev;
1717104f784Smrg
1727104f784Smrg    OptionInfoPtr	Options;
1737104f784Smrg    Bool		Dualhead;
1747104f784Smrg
1757104f784Smrg    /* Don't attempt to program a video mode. Use kernel framebuffer
1767104f784Smrg     * mode instead. */
1777104f784Smrg    Bool		UseFBDev;
1787104f784Smrg
1797104f784Smrg    /* CSC video uses color space conversion to render video directly to
1807104f784Smrg     * the framebuffer, without using an overlay. */
1817104f784Smrg    Bool		CSCVideo;
1827104f784Smrg
1837104f784Smrg    Bool		PCIBurst;	/* Enable PCI burst mode for
1847104f784Smrg					   reads? */
1857104f784Smrg    Bool		PCIRetry;	/* Enable PCI retries */
1867104f784Smrg    Bool		HwCursor;	/* hardware cursor enabled */
1877104f784Smrg
1887104f784Smrg    CARD8		DACmask;
1897104f784Smrg    int			vgaCRIndex, vgaCRReg;
1907104f784Smrg    Bool		PrimaryVidMapped;	/* Flag indicating if
1917104f784Smrg						   vgaHWMapMem was used
1927104f784Smrg						   successfully for
1937104f784Smrg						   this screen */
1947104f784Smrg    Bool		ModeStructInit;	/* Flag indicating ModeReg has
1957104f784Smrg					   been duped from console
1967104f784Smrg					   state */
1977104f784Smrg
1987104f784Smrg    /* Hardware state */
1997104f784Smrg    void		(*Save)(ScrnInfoPtr pScrn); /* Function used to save the
2007104f784Smrg						       current register state */
20109885543Smrg    CARD8		SR18Value;	/* PDR#521: original SR18
20209885543Smrg					   value */
20309885543Smrg    CARD8		SR21Value;	/* PDR#521: original SR21
20409885543Smrg					   value */
2057104f784Smrg    void		*save;		/* console saved mode
20609885543Smrg					   registers */
2077104f784Smrg    void		*mode;		/* XServer video state mode
20809885543Smrg					   registers */
20909885543Smrg
2107104f784Smrg    /* Memory layout */
21109885543Smrg    int			videoRAMBytes;	/* In units as noted, set in
21209885543Smrg					   PreInit  */
21309885543Smrg    int			videoRAMKBytes;	/* In units as noted, set in
21409885543Smrg					   PreInit */
21509885543Smrg    unsigned char *	MapBase;	/* Base of mapped memory */
21609885543Smrg    int			MapSize;	/* Size of mapped memory */
21709885543Smrg    CARD8 *		DPRBase;	/* Base of DPR registers */
21809885543Smrg    CARD8 *		VPRBase;	/* Base of VPR registers */
21909885543Smrg    CARD8 *		CPRBase;	/* Base of CPR registers */
22009885543Smrg    CARD8 *		FPRBase;    /* Base of FPR registers - for 0730 chipset */
2217104f784Smrg    CARD8 *		DCRBase;		/* Base of DCR registers - for 0501 chipset */
2227104f784Smrg    CARD8 *		SCRBase;        /* Base of SCR registers - for 0501 chipset */
22309885543Smrg    CARD8 *		DataPortBase;	/* Base of data port */
22409885543Smrg    int			DataPortSize;	/* Size of data port */
22509885543Smrg    CARD8 *		IOBase;		/* Base of MMIO VGA ports */
22609885543Smrg    IOADDRESS		PIOBase;	/* Base of I/O ports */
22709885543Smrg    unsigned char *	FBBase;		/* Base of FB */
2287104f784Smrg    CARD32		fbMapOffset;    /* offset for fb mapping */
22909885543Smrg    CARD32		FBOffset;	/* Current visual FB starting
23009885543Smrg					   location */
23109885543Smrg    CARD32		FBCursorOffset;	/* Cursor storage location */
23209885543Smrg    CARD32		FBReserved;	/* Reserved memory in frame
23309885543Smrg					   buffer */
2347104f784Smrg
2357104f784Smrg    /* accel additions */
2367104f784Smrg    CARD32		AccelCmd;	/* Value for DPR0C */
2377104f784Smrg    Bool		NoAccel;	/* Disable Acceleration */
2387104f784Smrg    CARD32		ScissorsLeft;	/* Left/top of current
2397104f784Smrg					   scissors */
2407104f784Smrg    CARD32		ScissorsRight;	/* Right/bottom of current
2417104f784Smrg					   scissors */
2427104f784Smrg    Bool		ClipTurnedOn;	/* Clipping was turned on by
2437104f784Smrg					   the previous command */
24409885543Smrg    int			GEResetCnt;	/* Limit the number of errors
24509885543Smrg					   printed using a counter */
24609885543Smrg
24709885543Smrg    Bool		useBIOS;	/* Use BIOS for mode sets */
24809885543Smrg    XAAInfoRecPtr	XAAInfoRec;	/* XAA info Rec */
24909885543Smrg
25009885543Smrg    /* EXA */
25109885543Smrg    ExaDriverPtr	EXADriverPtr;
2527104f784Smrg    Bool		useEXA;		/* enable exa acceleration */
2537104f784Smrg    ExaOffscreenArea*	fbArea;		/* EXA offscreen area used
2547104f784Smrg					   as framebuffer */
2557104f784Smrg    PictTransformPtr	renderTransform;
25609885543Smrg
25709885543Smrg    /* DPMS */
25809885543Smrg    int			CurrentDPMS;	/* Current DPMS state */
25909885543Smrg
26009885543Smrg    /* Panel information */
26109885543Smrg    Bool		lcd;		/* LCD active, 1=DSTN, 2=TFT */
26209885543Smrg    int			lcdWidth;	/* LCD width */
26309885543Smrg    int			lcdHeight;	/* LCD height */
26409885543Smrg
2657104f784Smrg    /* XvExtension */
26609885543Smrg    int			videoKey;	/* Video chroma key */
26709885543Smrg    Bool		ByteSwap;	/* Byte swap for ZV port */
26809885543Smrg    Bool		interlaced;	/* True: Interlaced Video */
26909885543Smrg    XF86VideoAdaptorPtr	ptrAdaptor;	/* Pointer to VideoAdapter
27009885543Smrg					   structure */
27109885543Smrg    void (*BlockHandler)(int i, pointer blockData, pointer pTimeout,
27209885543Smrg					 pointer pReadMask);
2737104f784Smrg#if SMI501_CLI_DEBUG
2747104f784Smrg    /* SMI 501/502 Command List Interpreter */
2757104f784Smrg    Bool		 batch_active;
2767104f784Smrg    int64_t		*batch_handle;	/* Virtual address */
2777104f784Smrg    int			 batch_offset;	/* Physical smi 501 address */
2787104f784Smrg    int			 batch_length;	/* Length in 8 byte units */
2797104f784Smrg    int			 batch_finish;	/* Last finish command offset */
2807104f784Smrg    int			 batch_index;
2817104f784Smrg#endif
28209885543Smrg} SMIRec, *SMIPtr;
28309885543Smrg
28409885543Smrg#define SMIPTR(p) ((SMIPtr)((p)->driverPrivate))
28509885543Smrg
28609885543Smrg/******************************************************************************/
28709885543Smrg/*			M A C R O S					      */
28809885543Smrg/******************************************************************************/
28909885543Smrg
29009885543Smrg#if SMI_DEBUG
2917104f784Smrgextern int smi_indent;
2927104f784Smrg# define VERBLEV	1
2937104f784Smrg# define ENTER()	xf86ErrorFVerb(VERBLEV, "%*c %s\n",\
2947104f784Smrg				       smi_indent++, '>', __FUNCTION__)
2957104f784Smrg# define LEAVE(...)							\
2967104f784Smrg    do {								\
2977104f784Smrg	xf86ErrorFVerb(VERBLEV, "%*c %s\n",				\
2987104f784Smrg		       --smi_indent, '<', __FUNCTION__);		\
2997104f784Smrg	return __VA_ARGS__;						\
3007104f784Smrg    } while (0)
3017104f784Smrg# define DEBUG(...)	xf86ErrorFVerb(VERBLEV, __VA_ARGS__)
30209885543Smrg#else
3037104f784Smrg# define VERBLEV	4
3047104f784Smrg# define ENTER()	/**/
3057104f784Smrg# define LEAVE(...)	return __VA_ARGS__
3067104f784Smrg# define DEBUG(...)	/**/
30709885543Smrg#endif
30809885543Smrg
30909885543Smrg/* Some Silicon Motion structs & registers */
31009885543Smrg#include "regsmi.h"
31109885543Smrg
31209885543Smrg#if !defined (MetroLink) && !defined (VertDebug)
31309885543Smrg#define VerticalRetraceWait()						\
31409885543Smrgdo									\
31509885543Smrg{									\
31609885543Smrg    if (VGAIN8_INDEX(pSmi, vgaCRIndex, vgaCRData, 0x17) & 0x80)		\
31709885543Smrg    {									\
31809885543Smrg	while ((VGAIN8(pSmi, vgaIOBase + 0x0A) & 0x08) == 0x00);	\
31909885543Smrg	while ((VGAIN8(pSmi, vgaIOBase + 0x0A) & 0x08) == 0x08);	\
32009885543Smrg	while ((VGAIN8(pSmi, vgaIOBase + 0x0A) & 0x08) == 0x00);	\
32109885543Smrg    }									\
32209885543Smrg} while (0)
32309885543Smrg#else
32409885543Smrg#define SPIN_LIMIT 1000000
32509885543Smrg#define VerticalRetraceWait()						\
32609885543Smrgdo									\
32709885543Smrg{									\
32809885543Smrg    if (VGAIN8_INDEX(pSmi, vgaCRIndex, vgaCRData, 0x17) & 0x80)		\
32909885543Smrg    {									\
33009885543Smrg	volatile unsigned long _spin_me;				\
33109885543Smrg	for (_spin_me = SPIN_LIMIT;					\
33209885543Smrg	     ((VGAIN8(pSmi, vgaIOBase + 0x0A) & 0x08) == 0x00) && 	\
33309885543Smrg	     _spin_me;							\
33409885543Smrg	     _spin_me--);						\
33509885543Smrg	if (!_spin_me)							\
33609885543Smrg	    ErrorF("smi: warning: VerticalRetraceWait timed out.\n");	\
33709885543Smrg	for (_spin_me = SPIN_LIMIT;					\
33809885543Smrg	     ((VGAIN8(pSmi, vgaIOBase + 0x0A) & 0x08) == 0x08) && 	\
33909885543Smrg	     _spin_me;							\
34009885543Smrg	     _spin_me--);						\
34109885543Smrg	if (!_spin_me)							\
34209885543Smrg	    ErrorF("smi: warning: VerticalRetraceWait timed out.\n");	\
34309885543Smrg	for (_spin_me = SPIN_LIMIT;					\
34409885543Smrg	     ((VGAIN8(pSmi, vgaIOBase + 0x0A) & 0x08) == 0x00) && 	\
34509885543Smrg	     _spin_me;							\
34609885543Smrg	     _spin_me--);						\
34709885543Smrg	if (!_spin_me)							\
34809885543Smrg	    ErrorF("smi: warning: VerticalRetraceWait timed out.\n");	\
34909885543Smrg	}								\
35009885543Smrg} while (0)
35109885543Smrg#endif
35209885543Smrg
35309885543Smrg/******************************************************************************/
35409885543Smrg/*			F U N C T I O N   P R O T O T Y P E S		      */
35509885543Smrg/******************************************************************************/
35609885543Smrg
35709885543Smrg/* smi_dac.c */
35809885543Smrgvoid SMI_CommonCalcClock(int scrnIndex, long freq, int min_m, int min_n1,
35909885543Smrg			 int max_n1, int min_n2, int max_n2, long freq_min,
36009885543Smrg			 long freq_max, unsigned char * mdiv,
36109885543Smrg			 unsigned char * ndiv);
36209885543Smrg
36309885543Smrg/* smi_i2c */
36409885543SmrgBool SMI_I2CInit(ScrnInfoPtr pScrn);
36509885543Smrg
36609885543Smrg/* smi_accel.c */
36709885543Smrgvoid SMI_AccelSync(ScrnInfoPtr pScrn);
36809885543Smrgvoid SMI_GEReset(ScrnInfoPtr pScrn, int from_timeout, int line, char *file);
36909885543Smrgvoid SMI_EngineReset(ScrnInfoPtr);
37009885543Smrgvoid SMI_SetClippingRectangle(ScrnInfoPtr, int, int, int, int);
37109885543Smrgvoid SMI_DisableClipping(ScrnInfoPtr);
3727104f784SmrgCARD32 SMI_DEDataFormat(int bpp);
3737104f784Smrg
3747104f784Smrg/* smi_xaa.c */
3757104f784SmrgBool SMI_XAAInit(ScreenPtr pScrn);
3767104f784Smrg
3777104f784Smrg/* smi_exa.c */
3787104f784SmrgBool SMI_EXAInit(ScreenPtr pScrn);
37909885543Smrg
38009885543Smrg/* smi_hwcurs.c */
38109885543SmrgBool SMI_HWCursorInit(ScreenPtr pScrn);
38209885543Smrg
38309885543Smrg/* smi_driver.c */
3847104f784SmrgBool SMI_MapMem(ScrnInfoPtr pScrn);
3857104f784Smrgvoid SMI_UnmapMem(ScrnInfoPtr pScrn);
38609885543Smrgvoid SMI_AdjustFrame(int scrnIndex, int x, int y, int flags);
38709885543SmrgBool SMI_SwitchMode(int scrnIndex, DisplayModePtr mode, int flags);
3887104f784Smrgvoid SMI_LoadPalette(ScrnInfoPtr pScrn, int numColors, int *indicies,
3897104f784Smrg		     LOCO *colors, VisualPtr pVisual);
3907104f784Smrgxf86MonPtr SMI_ddc1(ScrnInfoPtr pScrn);
3917104f784Smrgvoid SMI_PrintRegs(ScrnInfoPtr pScrn);
39209885543Smrg
39309885543Smrg/* smi_video.c */
39409885543Smrgvoid SMI_InitVideo(ScreenPtr pScreen);
3957104f784SmrgCARD32 SMI_AllocateMemory(ScrnInfoPtr pScrn, void **mem_struct, int size);
3967104f784Smrgvoid SMI_FreeMemory(ScrnInfoPtr pScrn, void *mem_struct);
3977104f784Smrg
39809885543Smrg
39909885543Smrg#endif  /*_SMI_H*/
400