igs_driver.c revision 1b41fcf5
1be1ef3d3Smacallan/* $OpenBSD: wsfb_driver.c,v 1.19 2003/04/27 16:42:32 matthieu Exp $ */
21b41fcf5Smrg/* $NetBSD: igs_driver.c,v 1.3 2010/11/23 22:21:15 mrg Exp $ */
3be1ef3d3Smacallan/*
4be1ef3d3Smacallan * Copyright (c) 2001 Matthieu Herrb
5be1ef3d3Smacallan *		 2009 Michael Lorenz
6be1ef3d3Smacallan * All rights reserved.
7be1ef3d3Smacallan *
8be1ef3d3Smacallan * Redistribution and use in source and binary forms, with or without
9be1ef3d3Smacallan * modification, are permitted provided that the following conditions
10be1ef3d3Smacallan * are met:
11be1ef3d3Smacallan *
12be1ef3d3Smacallan *    - Redistributions of source code must retain the above copyright
13be1ef3d3Smacallan *      notice, this list of conditions and the following disclaimer.
14be1ef3d3Smacallan *    - Redistributions in binary form must reproduce the above
15be1ef3d3Smacallan *      copyright notice, this list of conditions and the following
16be1ef3d3Smacallan *      disclaimer in the documentation and/or other materials provided
17be1ef3d3Smacallan *      with the distribution.
18be1ef3d3Smacallan *
19be1ef3d3Smacallan * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20be1ef3d3Smacallan * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21be1ef3d3Smacallan * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22be1ef3d3Smacallan * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23be1ef3d3Smacallan * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24be1ef3d3Smacallan * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25be1ef3d3Smacallan * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26be1ef3d3Smacallan * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27be1ef3d3Smacallan * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28be1ef3d3Smacallan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29be1ef3d3Smacallan * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30be1ef3d3Smacallan * POSSIBILITY OF SUCH DAMAGE.
31be1ef3d3Smacallan *
32be1ef3d3Smacallan */
33be1ef3d3Smacallan
34be1ef3d3Smacallan/*
35be1ef3d3Smacallan * Based on fbdev.c written by:
36be1ef3d3Smacallan *
37be1ef3d3Smacallan * Authors:  Alan Hourihane, <alanh@fairlite.demon.co.uk>
38be1ef3d3Smacallan *	     Michel Dänzer, <michdaen@iiic.ethz.ch>
39be1ef3d3Smacallan */
40be1ef3d3Smacallan
41be1ef3d3Smacallan /*
42be1ef3d3Smacallan  * a driver for IGS CyberPro 2010 graphics controllers
43be1ef3d3Smacallan  * adapted from wsfb
44be1ef3d3Smacallan  */
45be1ef3d3Smacallan
46be1ef3d3Smacallan#ifdef HAVE_CONFIG_H
47be1ef3d3Smacallan#include "config.h"
48be1ef3d3Smacallan#endif
49be1ef3d3Smacallan
50be1ef3d3Smacallan#include <fcntl.h>
51be1ef3d3Smacallan#include <sys/types.h>
52be1ef3d3Smacallan#include <sys/time.h>
53be1ef3d3Smacallan#include <errno.h>
54be1ef3d3Smacallan#include <dev/wscons/wsconsio.h>
55be1ef3d3Smacallan
56be1ef3d3Smacallan/* all driver need this */
57be1ef3d3Smacallan#include "xf86.h"
58be1ef3d3Smacallan#include "xf86_OSproc.h"
59be1ef3d3Smacallan
60be1ef3d3Smacallan#include "mipointer.h"
61be1ef3d3Smacallan#include "mibstore.h"
62be1ef3d3Smacallan#include "micmap.h"
63be1ef3d3Smacallan#include "colormapst.h"
64be1ef3d3Smacallan#include "xf86cmap.h"
65be1ef3d3Smacallan#include "shadow.h"
66be1ef3d3Smacallan#include "dgaproc.h"
67be1ef3d3Smacallan
68be1ef3d3Smacallan/* Everything using inb/outb, etc needs "compiler.h" */
69be1ef3d3Smacallan#include "compiler.h"
70be1ef3d3Smacallan
71be1ef3d3Smacallan/* for visuals */
72be1ef3d3Smacallan#include "fb.h"
73be1ef3d3Smacallan
74be1ef3d3Smacallan#include "xf86Resources.h"
75be1ef3d3Smacallan#include "xf86RAC.h"
76be1ef3d3Smacallan
77be1ef3d3Smacallan#ifdef XvExtension
78be1ef3d3Smacallan#include "xf86xv.h"
79be1ef3d3Smacallan#endif
80be1ef3d3Smacallan
81be1ef3d3Smacallan#include "igs.h"
82be1ef3d3Smacallan
83be1ef3d3Smacallan#include <sys/mman.h>
84be1ef3d3Smacallan
851b41fcf5Smrg#if HAVE_XORG_SERVER_1_7_0
861b41fcf5Smrg#define xf86LoaderReqSymLists(...) do {} while (0)
871b41fcf5Smrg#define LoaderRefSymLists(...) do {} while (0)
881b41fcf5Smrg#endif
891b41fcf5Smrg
90be1ef3d3Smacallan#define DEBUG 0
91be1ef3d3Smacallan
92be1ef3d3Smacallan#if DEBUG
93be1ef3d3Smacallan# define TRACE_ENTER(str)       ErrorF("igs: " str " %d\n",pScrn->scrnIndex)
94be1ef3d3Smacallan# define TRACE_EXIT(str)        ErrorF("igs: " str " done\n")
95be1ef3d3Smacallan# define TRACE(str)             ErrorF("igs trace: " str "\n")
96be1ef3d3Smacallan#else
97be1ef3d3Smacallan# define TRACE_ENTER(str)
98be1ef3d3Smacallan# define TRACE_EXIT(str)
99be1ef3d3Smacallan# define TRACE(str)
100be1ef3d3Smacallan#endif
101be1ef3d3Smacallan
102be1ef3d3Smacallan#define IGS_DEFAULT_DEV "/dev/ttyE0"
103be1ef3d3Smacallan
104be1ef3d3Smacallan/* Prototypes */
105be1ef3d3Smacallan#ifdef XFree86LOADER
106be1ef3d3Smacallanstatic pointer IgsSetup(pointer, pointer, int *, int *);
107be1ef3d3Smacallan#endif
108be1ef3d3Smacallanstatic Bool IgsGetRec(ScrnInfoPtr);
109be1ef3d3Smacallanstatic void IgsFreeRec(ScrnInfoPtr);
110be1ef3d3Smacallanstatic const OptionInfoRec * IgsAvailableOptions(int, int);
111be1ef3d3Smacallanstatic void IgsIdentify(int);
112be1ef3d3Smacallanstatic Bool IgsProbe(DriverPtr, int);
113be1ef3d3Smacallanstatic Bool IgsPreInit(ScrnInfoPtr, int);
114be1ef3d3Smacallanstatic Bool IgsScreenInit(int, ScreenPtr, int, char **);
115be1ef3d3Smacallanstatic Bool IgsCloseScreen(int, ScreenPtr);
116be1ef3d3Smacallanstatic void *IgsWindowLinear(ScreenPtr, CARD32, CARD32, int, CARD32 *,
117be1ef3d3Smacallan			      void *);
118be1ef3d3Smacallanstatic Bool IgsEnterVT(int, int);
119be1ef3d3Smacallanstatic void IgsLeaveVT(int, int);
120be1ef3d3Smacallanstatic Bool IgsSwitchMode(int, DisplayModePtr, int);
121be1ef3d3Smacallanstatic int IgsValidMode(int, DisplayModePtr, Bool, int);
122be1ef3d3Smacallanstatic void IgsLoadPalette(ScrnInfoPtr, int, int *, LOCO *, VisualPtr);
123be1ef3d3Smacallanstatic Bool IgsSaveScreen(ScreenPtr, int);
124be1ef3d3Smacallanstatic void IgsSave(ScrnInfoPtr);
125be1ef3d3Smacallanstatic void IgsRestore(ScrnInfoPtr);
126be1ef3d3Smacallan
127be1ef3d3Smacallan/* dga stuff */
128be1ef3d3Smacallan#ifdef XFreeXDGA
129be1ef3d3Smacallanstatic Bool IgsDGAOpenFramebuffer(ScrnInfoPtr, char **, unsigned char **,
130be1ef3d3Smacallan				   int *, int *, int *);
131be1ef3d3Smacallanstatic Bool IgsDGASetMode(ScrnInfoPtr, DGAModePtr);
132be1ef3d3Smacallanstatic void IgsDGASetViewport(ScrnInfoPtr, int, int, int);
133be1ef3d3Smacallanstatic Bool IgsDGAInit(ScrnInfoPtr, ScreenPtr);
134be1ef3d3Smacallan#endif
135be1ef3d3Smacallanstatic Bool IgsDriverFunc(ScrnInfoPtr pScrn, xorgDriverFuncOp op,
136be1ef3d3Smacallan				pointer ptr);
137be1ef3d3Smacallan
138be1ef3d3Smacallan/* helper functions */
139be1ef3d3Smacallanstatic pointer igs_mmap(size_t, off_t, int);
140be1ef3d3Smacallan
141be1ef3d3Smacallan/*
142be1ef3d3Smacallan * This is intentionally screen-independent.  It indicates the binding
143be1ef3d3Smacallan * choice made in the first PreInit.
144be1ef3d3Smacallan */
145be1ef3d3Smacallanstatic int pix24bpp = 0;
146be1ef3d3Smacallan
147be1ef3d3Smacallan#define IGS_VERSION 		4000
148be1ef3d3Smacallan#define IGS_NAME		"igs"
149be1ef3d3Smacallan#define IGS_DRIVER_NAME	"igs"
150be1ef3d3Smacallan
151be1ef3d3Smacallan_X_EXPORT DriverRec IGS = {
152be1ef3d3Smacallan	IGS_VERSION,
153be1ef3d3Smacallan	IGS_DRIVER_NAME,
154be1ef3d3Smacallan	IgsIdentify,
155be1ef3d3Smacallan	IgsProbe,
156be1ef3d3Smacallan	IgsAvailableOptions,
157be1ef3d3Smacallan	NULL,
158be1ef3d3Smacallan	0,
159be1ef3d3Smacallan	IgsDriverFunc
160be1ef3d3Smacallan};
161be1ef3d3Smacallan
162be1ef3d3Smacallan/* Supported "chipsets" */
163be1ef3d3Smacallanstatic SymTabRec IgsChipsets[] = {
164be1ef3d3Smacallan	{ 0, "CyberPro 2010" },
165be1ef3d3Smacallan	{ -1, NULL }
166be1ef3d3Smacallan};
167be1ef3d3Smacallan
168be1ef3d3Smacallan/* Supported options */
169be1ef3d3Smacallantypedef enum {
170be1ef3d3Smacallan	OPTION_NOACCEL,
171be1ef3d3Smacallan	OPTION_HW_CURSOR,
172be1ef3d3Smacallan	OPTION_SW_CURSOR
173be1ef3d3Smacallan} IgsOpts;
174be1ef3d3Smacallan
175be1ef3d3Smacallanstatic const OptionInfoRec IgsOptions[] = {
176be1ef3d3Smacallan	{ OPTION_NOACCEL, "NoAccel", OPTV_BOOLEAN, {0}, FALSE},
177be1ef3d3Smacallan	{ -1, NULL, OPTV_NONE, {0}, FALSE}
178be1ef3d3Smacallan};
179be1ef3d3Smacallan
180be1ef3d3Smacallan/* Symbols needed from other modules */
181be1ef3d3Smacallanstatic const char *fbSymbols[] = {
182be1ef3d3Smacallan	"fbPictureInit",
183be1ef3d3Smacallan	"fbScreenInit",
184be1ef3d3Smacallan	NULL
185be1ef3d3Smacallan};
186be1ef3d3Smacallanstatic const char *shadowSymbols[] = {
187be1ef3d3Smacallan	"shadowAdd",
188be1ef3d3Smacallan	"shadowSetup",
189be1ef3d3Smacallan	"shadowUpdatePacked",
190be1ef3d3Smacallan	"shadowUpdatePackedWeak",
191be1ef3d3Smacallan	"shadowUpdateRotatePacked",
192be1ef3d3Smacallan	"shadowUpdateRotatePackedWeak",
193be1ef3d3Smacallan	NULL
194be1ef3d3Smacallan};
195be1ef3d3Smacallan
196be1ef3d3Smacallanstatic const char *ramdacSymbols[] = {
197be1ef3d3Smacallan	"xf86CreateCursorInfoRec",
198be1ef3d3Smacallan	"xf86DestroyCursorInfoRec",
199be1ef3d3Smacallan	"xf86InitCursor",
200be1ef3d3Smacallan	NULL
201be1ef3d3Smacallan};
202be1ef3d3Smacallan
203be1ef3d3Smacallan#ifdef XFree86LOADER
204be1ef3d3Smacallanstatic XF86ModuleVersionInfo IgsVersRec = {
205be1ef3d3Smacallan	"igs",
206be1ef3d3Smacallan	MODULEVENDORSTRING,
207be1ef3d3Smacallan	MODINFOSTRING1,
208be1ef3d3Smacallan	MODINFOSTRING2,
209be1ef3d3Smacallan	XORG_VERSION_CURRENT,
210be1ef3d3Smacallan	PACKAGE_VERSION_MAJOR,
211be1ef3d3Smacallan	PACKAGE_VERSION_MINOR,
212be1ef3d3Smacallan	PACKAGE_VERSION_PATCHLEVEL,
213be1ef3d3Smacallan	ABI_CLASS_VIDEODRV,
214be1ef3d3Smacallan	ABI_VIDEODRV_VERSION,
215be1ef3d3Smacallan	NULL,
216be1ef3d3Smacallan	{0, 0, 0, 0}
217be1ef3d3Smacallan};
218be1ef3d3Smacallan
219be1ef3d3Smacallan_X_EXPORT XF86ModuleData igsModuleData = { &IgsVersRec, IgsSetup, NULL };
220be1ef3d3Smacallan
221be1ef3d3Smacallanstatic pointer
222be1ef3d3SmacallanIgsSetup(pointer module, pointer opts, int *errmaj, int *errmin)
223be1ef3d3Smacallan{
224be1ef3d3Smacallan	static Bool setupDone = FALSE;
225be1ef3d3Smacallan	const char *osname;
226be1ef3d3Smacallan
227be1ef3d3Smacallan	/* Check that we're being loaded on a OpenBSD or NetBSD system */
228be1ef3d3Smacallan	LoaderGetOS(&osname, NULL, NULL, NULL);
229be1ef3d3Smacallan	if (!osname || (strcmp(osname, "openbsd") != 0 &&
230be1ef3d3Smacallan	                strcmp(osname, "netbsd") != 0)) {
231be1ef3d3Smacallan		if (errmaj)
232be1ef3d3Smacallan			*errmaj = LDR_BADOS;
233be1ef3d3Smacallan		if (errmin)
234be1ef3d3Smacallan			*errmin = 0;
235be1ef3d3Smacallan		return NULL;
236be1ef3d3Smacallan	}
237be1ef3d3Smacallan	if (!setupDone) {
238be1ef3d3Smacallan		setupDone = TRUE;
239be1ef3d3Smacallan		xf86AddDriver(&IGS, module, HaveDriverFuncs);
240be1ef3d3Smacallan		LoaderRefSymLists(fbSymbols, shadowSymbols, ramdacSymbols,
241be1ef3d3Smacallan		    NULL);
242be1ef3d3Smacallan		return (pointer)1;
243be1ef3d3Smacallan	} else {
244be1ef3d3Smacallan		if (errmaj != NULL)
245be1ef3d3Smacallan			*errmaj = LDR_ONCEONLY;
246be1ef3d3Smacallan		return NULL;
247be1ef3d3Smacallan	}
248be1ef3d3Smacallan}
249be1ef3d3Smacallan#endif /* XFree86LOADER */
250be1ef3d3Smacallan
251be1ef3d3Smacallanstatic Bool
252be1ef3d3SmacallanIgsGetRec(ScrnInfoPtr pScrn)
253be1ef3d3Smacallan{
254be1ef3d3Smacallan
255be1ef3d3Smacallan	if (pScrn->driverPrivate != NULL)
256be1ef3d3Smacallan		return TRUE;
257be1ef3d3Smacallan
258be1ef3d3Smacallan	pScrn->driverPrivate = xnfcalloc(sizeof(IgsRec), 1);
259be1ef3d3Smacallan	return TRUE;
260be1ef3d3Smacallan}
261be1ef3d3Smacallan
262be1ef3d3Smacallanstatic void
263be1ef3d3SmacallanIgsFreeRec(ScrnInfoPtr pScrn)
264be1ef3d3Smacallan{
265be1ef3d3Smacallan
266be1ef3d3Smacallan	if (pScrn->driverPrivate == NULL)
267be1ef3d3Smacallan		return;
268be1ef3d3Smacallan	xfree(pScrn->driverPrivate);
269be1ef3d3Smacallan	pScrn->driverPrivate = NULL;
270be1ef3d3Smacallan}
271be1ef3d3Smacallan
272be1ef3d3Smacallanstatic const OptionInfoRec *
273be1ef3d3SmacallanIgsAvailableOptions(int chipid, int busid)
274be1ef3d3Smacallan{
275be1ef3d3Smacallan	return IgsOptions;
276be1ef3d3Smacallan}
277be1ef3d3Smacallan
278be1ef3d3Smacallanstatic void
279be1ef3d3SmacallanIgsIdentify(int flags)
280be1ef3d3Smacallan{
281be1ef3d3Smacallan	xf86PrintChipsets(IGS_NAME, "driver for IGS CyberPro 2010",
282be1ef3d3Smacallan			  IgsChipsets);
283be1ef3d3Smacallan}
284be1ef3d3Smacallan
285be1ef3d3Smacallan#define priv_open_device(n)	open(n,O_RDWR|O_NONBLOCK|O_EXCL)
286be1ef3d3Smacallan
287be1ef3d3Smacallan/* Open the framebuffer device */
288be1ef3d3Smacallanstatic int
289be1ef3d3Smacallanigs_open(char *dev)
290be1ef3d3Smacallan{
291be1ef3d3Smacallan	int fd = -1;
292be1ef3d3Smacallan
293be1ef3d3Smacallan	/* try argument from XF86Config first */
294be1ef3d3Smacallan	if (dev == NULL || ((fd = priv_open_device(dev)) == -1)) {
295be1ef3d3Smacallan		/* second: environment variable */
296be1ef3d3Smacallan		dev = getenv("XDEVICE");
297be1ef3d3Smacallan		if (dev == NULL || ((fd = priv_open_device(dev)) == -1)) {
298be1ef3d3Smacallan			/* last try: default device */
299be1ef3d3Smacallan			dev = IGS_DEFAULT_DEV;
300be1ef3d3Smacallan			if ((fd = priv_open_device(dev)) == -1) {
301be1ef3d3Smacallan				return -1;
302be1ef3d3Smacallan			}
303be1ef3d3Smacallan		}
304be1ef3d3Smacallan	}
305be1ef3d3Smacallan	return fd;
306be1ef3d3Smacallan}
307be1ef3d3Smacallan/* Map the framebuffer's memory */
308be1ef3d3Smacallanstatic pointer
309be1ef3d3Smacallanigs_mmap(size_t len, off_t off, int fd)
310be1ef3d3Smacallan{
311be1ef3d3Smacallan	int pagemask, mapsize;
312be1ef3d3Smacallan	caddr_t addr;
313be1ef3d3Smacallan	pointer mapaddr;
314be1ef3d3Smacallan
315be1ef3d3Smacallan	pagemask = getpagesize() - 1;
316be1ef3d3Smacallan	mapsize = ((int) len + pagemask) & ~pagemask;
317be1ef3d3Smacallan	addr = 0;
318be1ef3d3Smacallan
319be1ef3d3Smacallan	/*
320be1ef3d3Smacallan	 * try and make it private first, that way once we get it, an
321be1ef3d3Smacallan	 * interloper, e.g. another server, can't get this frame buffer,
322be1ef3d3Smacallan	 * and if another server already has it, this one won't.
323be1ef3d3Smacallan	 */
324be1ef3d3Smacallan	mapaddr = (pointer) mmap(addr, mapsize,
325be1ef3d3Smacallan				 PROT_READ | PROT_WRITE, MAP_SHARED,
326be1ef3d3Smacallan				 fd, off);
327be1ef3d3Smacallan	if (mapaddr == MAP_FAILED) {
328be1ef3d3Smacallan		mapaddr = NULL;
329be1ef3d3Smacallan	}
330be1ef3d3Smacallan#if DEBUG
331be1ef3d3Smacallan	ErrorF("mmap returns: addr %p len 0x%x\n", mapaddr, mapsize);
332be1ef3d3Smacallan#endif
333be1ef3d3Smacallan	return mapaddr;
334be1ef3d3Smacallan}
335be1ef3d3Smacallan
336be1ef3d3Smacallanstatic int
337be1ef3d3SmacallanigsFindIsaDevice(GDevPtr dev)
338be1ef3d3Smacallan{
339be1ef3d3Smacallan	int found = -1;
340be1ef3d3Smacallan	uint8_t id0, id1, rev;
341be1ef3d3Smacallan
342be1ef3d3Smacallan	/* read chip ID from extended VGA registers */
343be1ef3d3Smacallan	id0 = igs_ext_read(IGS_EXT_CHIP_ID0);
344be1ef3d3Smacallan	id1 = igs_ext_read(IGS_EXT_CHIP_ID1);
345be1ef3d3Smacallan	rev = igs_ext_read(IGS_EXT_CHIP_REV);
346be1ef3d3Smacallan	xf86Msg(X_ERROR, "%s: %x %x %x\n", __func__, id0, id1, rev);
347be1ef3d3Smacallan	if ((id0 == 0xa4) && (id1 == 8))
348be1ef3d3Smacallan		found = 0;
349be1ef3d3Smacallan	return found;
350be1ef3d3Smacallan}
351be1ef3d3Smacallan
352be1ef3d3Smacallanstatic Bool
353be1ef3d3SmacallanIgsProbe(DriverPtr drv, int flags)
354be1ef3d3Smacallan{
355be1ef3d3Smacallan    ScrnInfoPtr pScrn = NULL;
356be1ef3d3Smacallan    IgsPtr cPtr;
357be1ef3d3Smacallan    Bool foundScreen = FALSE;
358be1ef3d3Smacallan    int numDevSections, numUsed;
359be1ef3d3Smacallan    GDevPtr *devSections;
360be1ef3d3Smacallan    int *usedChips;
361be1ef3d3Smacallan    int i, chipset, entity;
362be1ef3d3Smacallan
363be1ef3d3Smacallan    /*
364be1ef3d3Smacallan     * Find the config file Device sections that match this
365be1ef3d3Smacallan     * driver, and return if there are none.
366be1ef3d3Smacallan     */
367be1ef3d3Smacallan    if ((numDevSections = xf86MatchDevice(IGS_DRIVER_NAME,
368be1ef3d3Smacallan					  &devSections)) <= 0) {
369be1ef3d3Smacallan	return FALSE;
370be1ef3d3Smacallan    }
371be1ef3d3Smacallan
372be1ef3d3Smacallan    /* Isa Bus */
373be1ef3d3Smacallan    if ((numDevSections =
374be1ef3d3Smacallan      xf86MatchDevice(IGS_DRIVER_NAME, &devSections)) > 0) {
375be1ef3d3Smacallan	for (i = 0; i < numDevSections; i++) {
376be1ef3d3Smacallan	    if ((chipset = igsFindIsaDevice(devSections[i])) > -1) {
377be1ef3d3Smacallan		if ( xf86DoConfigure && xf86DoConfigurePass1 ) {
378be1ef3d3Smacallan		    xf86AddBusDeviceToConfigure(IGS_DRIVER_NAME, BUS_ISA,
379be1ef3d3Smacallan			  NULL, chipset);
380be1ef3d3Smacallan		}
381be1ef3d3Smacallan		if (flags & PROBE_DETECT) {
382be1ef3d3Smacallan		    return TRUE;
383be1ef3d3Smacallan		}
384be1ef3d3Smacallan		if (!xf86CheckStrOption(devSections[i]->options, "BusID",
385be1ef3d3Smacallan		  "ISA")) {
386be1ef3d3Smacallan		    continue;
387be1ef3d3Smacallan		}
388be1ef3d3Smacallan
389be1ef3d3Smacallan		pScrn = NULL;
390be1ef3d3Smacallan		entity = xf86ClaimFbSlot(drv, 0, devSections[i], TRUE);
391be1ef3d3Smacallan	    	pScrn = xf86ConfigFbEntity(NULL, 0, entity, NULL, NULL,
392be1ef3d3Smacallan		  NULL, NULL);
393be1ef3d3Smacallan		pScrn->driverVersion = IGS_VERSION;
394be1ef3d3Smacallan		pScrn->driverName    = IGS_DRIVER_NAME;
395be1ef3d3Smacallan		pScrn->name          = IGS_NAME;
396be1ef3d3Smacallan		pScrn->Probe         = IgsProbe;
397be1ef3d3Smacallan		pScrn->PreInit       = IgsPreInit;
398be1ef3d3Smacallan		pScrn->ScreenInit    = IgsScreenInit;
399be1ef3d3Smacallan		pScrn->SwitchMode    = IgsSwitchMode;
400be1ef3d3Smacallan		pScrn->AdjustFrame   = NULL;
401be1ef3d3Smacallan		pScrn->EnterVT       = IgsEnterVT;
402be1ef3d3Smacallan		pScrn->LeaveVT       = IgsLeaveVT;
403be1ef3d3Smacallan		pScrn->ValidMode     = IgsValidMode;
404be1ef3d3Smacallan		if (!IgsGetRec(pScrn)) {
405be1ef3d3Smacallan		    return;
406be1ef3d3Smacallan		}
407be1ef3d3Smacallan		cPtr = IGSPTR(pScrn);
408be1ef3d3Smacallan		cPtr->Chipset = chipset;
409be1ef3d3Smacallan		cPtr->fb_paddr =
410be1ef3d3Smacallan		    ((uint32_t)igs_ext_read(IGS_EXT_LINA_HI)) << 24;
411be1ef3d3Smacallan		xf86Msg(X_ERROR, "Aperture at %08x\n", cPtr->fb_paddr);
412be1ef3d3Smacallan	    }
413be1ef3d3Smacallan	}
414be1ef3d3Smacallan    }
415be1ef3d3Smacallan
416be1ef3d3Smacallan    xfree(devSections);
417be1ef3d3Smacallan    return foundScreen;
418be1ef3d3Smacallan}
419be1ef3d3Smacallan
420be1ef3d3Smacallanstatic Bool
421be1ef3d3SmacallanIgsPreInit(ScrnInfoPtr pScrn, int flags)
422be1ef3d3Smacallan{
423be1ef3d3Smacallan	IgsPtr fPtr;
424727ce256Smacallan	int default_depth, vram_size = 2 * 1024 * 1024;
425be1ef3d3Smacallan	char *dev, *s;
426be1ef3d3Smacallan	char *mod = NULL;
427be1ef3d3Smacallan	const char *reqSym = NULL;
428be1ef3d3Smacallan	Gamma zeros = {0.0, 0.0, 0.0};
429be1ef3d3Smacallan	DisplayModePtr mode;
430be1ef3d3Smacallan	MessageType from;
431be1ef3d3Smacallan
432be1ef3d3Smacallan	if (flags & PROBE_DETECT) return FALSE;
433be1ef3d3Smacallan
434be1ef3d3Smacallan	TRACE_ENTER("PreInit");
435be1ef3d3Smacallan
436be1ef3d3Smacallan	if (pScrn->numEntities != 1) return FALSE;
437be1ef3d3Smacallan
438be1ef3d3Smacallan	pScrn->monitor = pScrn->confScreen->monitor;
439be1ef3d3Smacallan
440be1ef3d3Smacallan	IgsGetRec(pScrn);
441be1ef3d3Smacallan	fPtr = IGSPTR(pScrn);
442be1ef3d3Smacallan
443be1ef3d3Smacallan	fPtr->pEnt = xf86GetEntityInfo(pScrn->entityList[0]);
444be1ef3d3Smacallan
445be1ef3d3Smacallan	pScrn->racMemFlags = RAC_FB | RAC_COLORMAP | RAC_CURSOR | RAC_VIEWPORT;
446be1ef3d3Smacallan	pScrn->racIoFlags = pScrn->racMemFlags;
447be1ef3d3Smacallan
448be1ef3d3Smacallan	dev = xf86FindOptionValue(fPtr->pEnt->device->options, "device");
449be1ef3d3Smacallan	fPtr->fd = igs_open(dev);
450be1ef3d3Smacallan	if (fPtr->fd == -1) {
451be1ef3d3Smacallan		return FALSE;
452be1ef3d3Smacallan	}
453be1ef3d3Smacallan
454be1ef3d3Smacallan	if (ioctl(fPtr->fd, WSDISPLAYIO_GINFO, &fPtr->info) == -1) {
455be1ef3d3Smacallan		xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
456be1ef3d3Smacallan			   "ioctl WSDISPLAY_GINFO: %s\n",
457be1ef3d3Smacallan			   strerror(errno));
458be1ef3d3Smacallan		return FALSE;
459be1ef3d3Smacallan	}
460be1ef3d3Smacallan
461be1ef3d3Smacallan	/* Handle depth */
462be1ef3d3Smacallan	default_depth = fPtr->info.depth <= 24 ? fPtr->info.depth : 24;
463be1ef3d3Smacallan	if (!xf86SetDepthBpp(pScrn, default_depth, default_depth,
464be1ef3d3Smacallan		fPtr->info.depth,
465be1ef3d3Smacallan		fPtr->info.depth >= 24 ? Support24bppFb|Support32bppFb : 0))
466be1ef3d3Smacallan		return FALSE;
467be1ef3d3Smacallan
468be1ef3d3Smacallan	/* Check consistency */
469be1ef3d3Smacallan	if (pScrn->bitsPerPixel != fPtr->info.depth) {
470be1ef3d3Smacallan		xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
471be1ef3d3Smacallan		    "specified depth (%d) or bpp (%d) doesn't match "
472be1ef3d3Smacallan		    "framebuffer depth (%d)\n", pScrn->depth,
473be1ef3d3Smacallan		    pScrn->bitsPerPixel, fPtr->info.depth);
474be1ef3d3Smacallan		return FALSE;
475be1ef3d3Smacallan	}
476be1ef3d3Smacallan	xf86PrintDepthBpp(pScrn);
477be1ef3d3Smacallan
478be1ef3d3Smacallan	/* Get the depth24 pixmap format */
479be1ef3d3Smacallan	if (pScrn->depth == 24 && pix24bpp == 0)
480be1ef3d3Smacallan		pix24bpp = xf86GetBppFromDepth(pScrn, 24);
481be1ef3d3Smacallan
482be1ef3d3Smacallan	/* color weight */
483be1ef3d3Smacallan	if (pScrn->depth > 8) {
484be1ef3d3Smacallan		rgb zeros = { 0, 0, 0 }, masks;
485be1ef3d3Smacallan
486be1ef3d3Smacallan		masks.red = 0;
487be1ef3d3Smacallan		masks.green = 0;
488be1ef3d3Smacallan		masks.blue = 0;
489be1ef3d3Smacallan
490be1ef3d3Smacallan		if (!xf86SetWeight(pScrn, zeros, masks))
491be1ef3d3Smacallan			return FALSE;
492be1ef3d3Smacallan	}
493be1ef3d3Smacallan
494be1ef3d3Smacallan	/* visual init */
495be1ef3d3Smacallan	if (!xf86SetDefaultVisual(pScrn, -1))
496be1ef3d3Smacallan		return FALSE;
497be1ef3d3Smacallan
498be1ef3d3Smacallan	/* We don't currently support DirectColor at > 8bpp */
499be1ef3d3Smacallan	if (pScrn->depth > 8 && pScrn->defaultVisual != TrueColor) {
500be1ef3d3Smacallan		xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "Given default visual"
501be1ef3d3Smacallan			   " (%s) is not supported at depth %d\n",
502be1ef3d3Smacallan			   xf86GetVisualName(pScrn->defaultVisual),
503be1ef3d3Smacallan			   pScrn->depth);
504be1ef3d3Smacallan		return FALSE;
505be1ef3d3Smacallan	}
506be1ef3d3Smacallan
507be1ef3d3Smacallan	xf86SetGamma(pScrn,zeros);
508be1ef3d3Smacallan
509be1ef3d3Smacallan	pScrn->progClock = TRUE;
510be1ef3d3Smacallan	pScrn->rgbBits   = 8;
511be1ef3d3Smacallan	pScrn->chipset   = "igs";
512be1ef3d3Smacallan	pScrn->videoRam  = vram_size;
513be1ef3d3Smacallan
514be1ef3d3Smacallan	xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Vidmem: %dk\n",
515be1ef3d3Smacallan		   pScrn->videoRam/1024);
516be1ef3d3Smacallan
517be1ef3d3Smacallan	/* handle options */
518be1ef3d3Smacallan	xf86CollectOptions(pScrn, NULL);
519be1ef3d3Smacallan	if (!(fPtr->Options = xalloc(sizeof(IgsOptions))))
520be1ef3d3Smacallan		return FALSE;
521be1ef3d3Smacallan	memcpy(fPtr->Options, IgsOptions, sizeof(IgsOptions));
522be1ef3d3Smacallan	xf86ProcessOptions(pScrn->scrnIndex, fPtr->pEnt->device->options,
523be1ef3d3Smacallan			   fPtr->Options);
524be1ef3d3Smacallan
525be1ef3d3Smacallan	/* fake video mode struct */
526be1ef3d3Smacallan	mode = (DisplayModePtr)xalloc(sizeof(DisplayModeRec));
527be1ef3d3Smacallan	mode->prev = mode;
528be1ef3d3Smacallan	mode->next = mode;
529be1ef3d3Smacallan	mode->name = "igs current mode";
530be1ef3d3Smacallan	mode->status = MODE_OK;
531be1ef3d3Smacallan	mode->type = M_T_BUILTIN;
532be1ef3d3Smacallan	mode->Clock = 0;
533be1ef3d3Smacallan	mode->HDisplay = fPtr->info.width;
534be1ef3d3Smacallan	mode->HSyncStart = 0;
535be1ef3d3Smacallan	mode->HSyncEnd = 0;
536be1ef3d3Smacallan	mode->HTotal = 0;
537be1ef3d3Smacallan	mode->HSkew = 0;
538be1ef3d3Smacallan	mode->VDisplay = fPtr->info.height;
539be1ef3d3Smacallan	mode->VSyncStart = 0;
540be1ef3d3Smacallan	mode->VSyncEnd = 0;
541be1ef3d3Smacallan	mode->VTotal = 0;
542be1ef3d3Smacallan	mode->VScan = 0;
543be1ef3d3Smacallan	mode->Flags = 0;
544be1ef3d3Smacallan	if (pScrn->modes != NULL) {
545be1ef3d3Smacallan		xf86DrvMsg(pScrn->scrnIndex, X_INFO,
546be1ef3d3Smacallan		   "Ignoring mode specification from screen section\n");
547be1ef3d3Smacallan	}
548be1ef3d3Smacallan	pScrn->currentMode = pScrn->modes = mode;
549be1ef3d3Smacallan	pScrn->virtualX = fPtr->info.width;
550be1ef3d3Smacallan	pScrn->virtualY = fPtr->info.height;
551be1ef3d3Smacallan	pScrn->displayWidth = pScrn->virtualX;
552be1ef3d3Smacallan
553be1ef3d3Smacallan	/* Set the display resolution */
554be1ef3d3Smacallan	xf86SetDpi(pScrn, 0, 0);
555be1ef3d3Smacallan
556be1ef3d3Smacallan	from = X_DEFAULT;
557be1ef3d3Smacallan	fPtr->HWCursor = TRUE;
558be1ef3d3Smacallan	if (xf86GetOptValBool(fPtr->Options, OPTION_HW_CURSOR, &fPtr->HWCursor))
559be1ef3d3Smacallan		from = X_CONFIG;
560be1ef3d3Smacallan	if (xf86ReturnOptValBool(fPtr->Options, OPTION_SW_CURSOR, FALSE)) {
561be1ef3d3Smacallan		from = X_CONFIG;
562be1ef3d3Smacallan		fPtr->HWCursor = FALSE;
563be1ef3d3Smacallan	}
564be1ef3d3Smacallan	xf86DrvMsg(pScrn->scrnIndex, from, "Using %s cursor\n",
565be1ef3d3Smacallan		fPtr->HWCursor ? "HW" : "SW");
566be1ef3d3Smacallan
567be1ef3d3Smacallan	/* Load bpp-specific modules */
568be1ef3d3Smacallan	switch(pScrn->bitsPerPixel) {
569be1ef3d3Smacallan	default:
570be1ef3d3Smacallan		mod = "fb";
571be1ef3d3Smacallan		break;
572be1ef3d3Smacallan	}
573be1ef3d3Smacallan
574be1ef3d3Smacallan	if (mod && xf86LoadSubModule(pScrn, mod) == NULL) {
575be1ef3d3Smacallan		IgsFreeRec(pScrn);
576be1ef3d3Smacallan		return FALSE;
577be1ef3d3Smacallan	}
578be1ef3d3Smacallan
579be1ef3d3Smacallan	if (xf86LoadSubModule(pScrn, "ramdac") == NULL) {
580be1ef3d3Smacallan		IgsFreeRec(pScrn);
581be1ef3d3Smacallan		return FALSE;
582be1ef3d3Smacallan        }
583be1ef3d3Smacallan
584be1ef3d3Smacallan	if (mod) {
585be1ef3d3Smacallan		if (reqSym) {
586be1ef3d3Smacallan			xf86LoaderReqSymbols(reqSym, NULL);
587be1ef3d3Smacallan		} else {
588be1ef3d3Smacallan			xf86LoaderReqSymLists(fbSymbols, NULL);
589be1ef3d3Smacallan		}
590be1ef3d3Smacallan	}
591be1ef3d3Smacallan	TRACE_EXIT("PreInit");
592be1ef3d3Smacallan	return TRUE;
593be1ef3d3Smacallan}
594be1ef3d3Smacallan
595be1ef3d3Smacallanstatic Bool
596be1ef3d3SmacallanIgsCreateScreenResources(ScreenPtr pScreen)
597be1ef3d3Smacallan{
598be1ef3d3Smacallan	ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
599be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
600be1ef3d3Smacallan	PixmapPtr pPixmap;
601be1ef3d3Smacallan	Bool ret;
602be1ef3d3Smacallan
603be1ef3d3Smacallan	pScreen->CreateScreenResources = fPtr->CreateScreenResources;
604be1ef3d3Smacallan	ret = pScreen->CreateScreenResources(pScreen);
605be1ef3d3Smacallan	pScreen->CreateScreenResources = IgsCreateScreenResources;
606be1ef3d3Smacallan
607be1ef3d3Smacallan	if (!ret)
608be1ef3d3Smacallan		return FALSE;
609be1ef3d3Smacallan
610be1ef3d3Smacallan	pPixmap = pScreen->GetScreenPixmap(pScreen);
611be1ef3d3Smacallan
612be1ef3d3Smacallan	if (!shadowAdd(pScreen, pPixmap, shadowUpdatePackedWeak(),
613be1ef3d3Smacallan		IgsWindowLinear, FALSE, NULL)) {
614be1ef3d3Smacallan		return FALSE;
615be1ef3d3Smacallan	}
616be1ef3d3Smacallan	return TRUE;
617be1ef3d3Smacallan}
618be1ef3d3Smacallan
619be1ef3d3Smacallan
620be1ef3d3Smacallanstatic Bool
621be1ef3d3SmacallanIgsShadowInit(ScreenPtr pScreen)
622be1ef3d3Smacallan{
623be1ef3d3Smacallan	ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
624be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
625be1ef3d3Smacallan
626be1ef3d3Smacallan	if (!shadowSetup(pScreen))
627be1ef3d3Smacallan		return FALSE;
628be1ef3d3Smacallan	fPtr->CreateScreenResources = pScreen->CreateScreenResources;
629be1ef3d3Smacallan	pScreen->CreateScreenResources = IgsCreateScreenResources;
630be1ef3d3Smacallan
631be1ef3d3Smacallan	return TRUE;
632be1ef3d3Smacallan}
633be1ef3d3Smacallan
634be1ef3d3Smacallanstatic Bool
635be1ef3d3SmacallanIgsScreenInit(int scrnIndex, ScreenPtr pScreen, int argc, char **argv)
636be1ef3d3Smacallan{
637be1ef3d3Smacallan	ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
638be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
639be1ef3d3Smacallan	VisualPtr visual;
640be1ef3d3Smacallan	int ret, flags, ncolors;
641be1ef3d3Smacallan	int wsmode = WSDISPLAYIO_MODE_DUMBFB;
642be1ef3d3Smacallan	size_t len;
643be1ef3d3Smacallan
644be1ef3d3Smacallan	TRACE_ENTER("IgsScreenInit");
645be1ef3d3Smacallan#if DEBUG
646be1ef3d3Smacallan	ErrorF("\tbitsPerPixel=%d, depth=%d, defaultVisual=%s\n"
647be1ef3d3Smacallan	       "\tmask: %x,%x,%x, offset: %u,%u,%u\n",
648be1ef3d3Smacallan	       pScrn->bitsPerPixel,
649be1ef3d3Smacallan	       pScrn->depth,
650be1ef3d3Smacallan	       xf86GetVisualName(pScrn->defaultVisual),
651be1ef3d3Smacallan	       pScrn->mask.red,pScrn->mask.green,pScrn->mask.blue,
652be1ef3d3Smacallan	       pScrn->offset.red,pScrn->offset.green,pScrn->offset.blue);
653be1ef3d3Smacallan#endif
654be1ef3d3Smacallan	fPtr->linebytes = fPtr->info.width * (fPtr->info.depth >> 3);
655be1ef3d3Smacallan
656be1ef3d3Smacallan	/* Switch to graphics mode - required before mmap */
657be1ef3d3Smacallan	if (ioctl(fPtr->fd, WSDISPLAYIO_SMODE, &wsmode) == -1) {
658be1ef3d3Smacallan		xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
659be1ef3d3Smacallan			   "ioctl WSDISPLAYIO_SMODE: %s\n",
660be1ef3d3Smacallan			   strerror(errno));
661be1ef3d3Smacallan		return FALSE;
662be1ef3d3Smacallan	}
663be1ef3d3Smacallan
664be1ef3d3Smacallan	/* find our aperturwe */
665be1ef3d3Smacallan
666be1ef3d3Smacallan	/* assume 2MB for now, until I add actual RAM size probing */
667be1ef3d3Smacallan	len = 2 * 1024 * 1024;
668be1ef3d3Smacallan	fPtr->fbmem = igs_mmap(len, fPtr->fb_paddr, fPtr->fd);
669be1ef3d3Smacallan
670be1ef3d3Smacallan	if (fPtr->fbmem == NULL) {
671be1ef3d3Smacallan		xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
672be1ef3d3Smacallan			   "igs_mmap(fb): %s\n", strerror(errno));
673be1ef3d3Smacallan		return FALSE;
674be1ef3d3Smacallan	}
675be1ef3d3Smacallan	fPtr->fbmem_len = len - 1024; /* leave room for the hw cursor */
676be1ef3d3Smacallan
677be1ef3d3Smacallan	fPtr->reg = igs_mmap(4096,
678be1ef3d3Smacallan	    fPtr->fb_paddr + IGS_MEM_MMIO_SELECT + IGS_COP_BASE_B, fPtr->fd);
679be1ef3d3Smacallan	if (fPtr->reg == NULL) {
680be1ef3d3Smacallan		xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
681be1ef3d3Smacallan			   "igs_mmap(registers): %s\n", strerror(errno));
682be1ef3d3Smacallan		return FALSE;
683be1ef3d3Smacallan	}
684be1ef3d3Smacallan	xf86Msg(X_ERROR, "0x10: %08x\n", *(uint32_t *)(fPtr->reg + 0x10));
685be1ef3d3Smacallan
686be1ef3d3Smacallan	IgsSave(pScrn);
687be1ef3d3Smacallan	pScrn->vtSema = TRUE;
688be1ef3d3Smacallan
689be1ef3d3Smacallan	/* mi layer */
690be1ef3d3Smacallan	miClearVisualTypes();
691be1ef3d3Smacallan	if (pScrn->bitsPerPixel > 8) {
692be1ef3d3Smacallan		if (!miSetVisualTypes(pScrn->depth, TrueColorMask,
693be1ef3d3Smacallan				      pScrn->rgbBits, TrueColor))
694be1ef3d3Smacallan			return FALSE;
695be1ef3d3Smacallan	} else {
696be1ef3d3Smacallan		if (!miSetVisualTypes(pScrn->depth,
697be1ef3d3Smacallan				      miGetDefaultVisualMask(pScrn->depth),
698be1ef3d3Smacallan				      pScrn->rgbBits, pScrn->defaultVisual))
699be1ef3d3Smacallan			return FALSE;
700be1ef3d3Smacallan	}
701be1ef3d3Smacallan	if (!miSetPixmapDepths())
702be1ef3d3Smacallan		return FALSE;
703be1ef3d3Smacallan
704be1ef3d3Smacallan	fPtr->fbstart = fPtr->fbmem;
705be1ef3d3Smacallan
706be1ef3d3Smacallan	switch (pScrn->bitsPerPixel) {
707be1ef3d3Smacallan	case 8:
708be1ef3d3Smacallan	case 16:
709be1ef3d3Smacallan	case 24:
710be1ef3d3Smacallan	case 32:
711be1ef3d3Smacallan		ret = fbScreenInit(pScreen,
712be1ef3d3Smacallan		    fPtr->fbstart,
713be1ef3d3Smacallan		    pScrn->virtualX, pScrn->virtualY,
714be1ef3d3Smacallan		    pScrn->xDpi, pScrn->yDpi,
715be1ef3d3Smacallan		    pScrn->displayWidth, pScrn->bitsPerPixel);
716be1ef3d3Smacallan		break;
717be1ef3d3Smacallan	default:
718be1ef3d3Smacallan		xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
719be1ef3d3Smacallan			   "Unsupported bpp: %d", pScrn->bitsPerPixel);
720be1ef3d3Smacallan		return FALSE;
721be1ef3d3Smacallan	} /* case */
722be1ef3d3Smacallan
723be1ef3d3Smacallan	if (!ret)
724be1ef3d3Smacallan		return FALSE;
725be1ef3d3Smacallan
726be1ef3d3Smacallan	if (pScrn->bitsPerPixel > 8) {
727be1ef3d3Smacallan		/* Fixup RGB ordering */
728be1ef3d3Smacallan		visual = pScreen->visuals + pScreen->numVisuals;
729be1ef3d3Smacallan		while (--visual >= pScreen->visuals) {
730be1ef3d3Smacallan			if ((visual->class | DynamicClass) == DirectColor) {
731be1ef3d3Smacallan				visual->offsetRed   = pScrn->offset.red;
732be1ef3d3Smacallan				visual->offsetGreen = pScrn->offset.green;
733be1ef3d3Smacallan				visual->offsetBlue  = pScrn->offset.blue;
734be1ef3d3Smacallan				visual->redMask     = pScrn->mask.red;
735be1ef3d3Smacallan				visual->greenMask   = pScrn->mask.green;
736be1ef3d3Smacallan				visual->blueMask    = pScrn->mask.blue;
737be1ef3d3Smacallan			}
738be1ef3d3Smacallan		}
739be1ef3d3Smacallan	}
740be1ef3d3Smacallan
741be1ef3d3Smacallan	if (pScrn->bitsPerPixel >= 8) {
742be1ef3d3Smacallan		if (!fbPictureInit(pScreen, NULL, 0))
743be1ef3d3Smacallan			xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
744be1ef3d3Smacallan				   "RENDER extension initialisation failed.");
745be1ef3d3Smacallan	}
746be1ef3d3Smacallan
747be1ef3d3Smacallan#ifdef XFreeXDGA
748be1ef3d3Smacallan	IgsDGAInit(pScrn, pScreen);
749be1ef3d3Smacallan#endif
750be1ef3d3Smacallan
751be1ef3d3Smacallan	xf86SetBlackWhitePixels(pScreen);
752be1ef3d3Smacallan	miInitializeBackingStore(pScreen);
753be1ef3d3Smacallan	xf86SetBackingStore(pScreen);
754be1ef3d3Smacallan
755be1ef3d3Smacallan	/* setup acceleration */
756be1ef3d3Smacallan	if (1) {
757be1ef3d3Smacallan		XF86ModReqInfo req;
758be1ef3d3Smacallan		int errmaj, errmin;
759be1ef3d3Smacallan
760be1ef3d3Smacallan		memset(&req, 0, sizeof(XF86ModReqInfo));
761be1ef3d3Smacallan		req.majorversion = 2;
762be1ef3d3Smacallan		req.minorversion = 0;
763be1ef3d3Smacallan		if (!LoadSubModule(pScrn->module, "exa", NULL, NULL, NULL, &req,
764be1ef3d3Smacallan		    &errmaj, &errmin)) {
765be1ef3d3Smacallan			LoaderErrorMsg(NULL, "exa", errmaj, errmin);
766be1ef3d3Smacallan			return FALSE;
767be1ef3d3Smacallan		}
768be1ef3d3Smacallan		if (!IgsInitAccel(pScreen))
769be1ef3d3Smacallan			return FALSE;
770be1ef3d3Smacallan	}
771be1ef3d3Smacallan
772be1ef3d3Smacallan	/* software cursor */
773be1ef3d3Smacallan	miDCInitialize(pScreen, xf86GetPointerScreenFuncs());
774be1ef3d3Smacallan
775be1ef3d3Smacallan	/* check for hardware cursor support */
776be1ef3d3Smacallan	if (fPtr->HWCursor)
777be1ef3d3Smacallan		IgsSetupCursor(pScreen);
778be1ef3d3Smacallan
779be1ef3d3Smacallan	/* colormap */
780be1ef3d3Smacallan	if (!miCreateDefColormap(pScreen))
781be1ef3d3Smacallan		return FALSE;
782be1ef3d3Smacallan	flags = CMAP_RELOAD_ON_MODE_SWITCH;
783be1ef3d3Smacallan	ncolors = fPtr->info.cmsize;
784be1ef3d3Smacallan	/* on StaticGray visuals, fake a 256 entries colormap */
785be1ef3d3Smacallan	if (ncolors == 0)
786be1ef3d3Smacallan		ncolors = 256;
787be1ef3d3Smacallan	if(!xf86HandleColormaps(pScreen, ncolors, 8, IgsLoadPalette,
788be1ef3d3Smacallan				NULL, flags))
789be1ef3d3Smacallan		return FALSE;
790be1ef3d3Smacallan
791be1ef3d3Smacallan	pScreen->SaveScreen = IgsSaveScreen;
792be1ef3d3Smacallan
793be1ef3d3Smacallan#ifdef XvExtension
794be1ef3d3Smacallan	{
795be1ef3d3Smacallan		XF86VideoAdaptorPtr *ptr;
796be1ef3d3Smacallan
797be1ef3d3Smacallan		int n = xf86XVListGenericAdaptors(pScrn,&ptr);
798be1ef3d3Smacallan		if (n) {
799be1ef3d3Smacallan			xf86XVScreenInit(pScreen,ptr,n);
800be1ef3d3Smacallan		}
801be1ef3d3Smacallan	}
802be1ef3d3Smacallan#endif
803be1ef3d3Smacallan
804be1ef3d3Smacallan	/* Wrap the current CloseScreen function */
805be1ef3d3Smacallan	fPtr->CloseScreen = pScreen->CloseScreen;
806be1ef3d3Smacallan	pScreen->CloseScreen = IgsCloseScreen;
807be1ef3d3Smacallan
808be1ef3d3Smacallan	TRACE_EXIT("IgsScreenInit");
809be1ef3d3Smacallan	return TRUE;
810be1ef3d3Smacallan}
811be1ef3d3Smacallan
812be1ef3d3Smacallanstatic Bool
813be1ef3d3SmacallanIgsCloseScreen(int scrnIndex, ScreenPtr pScreen)
814be1ef3d3Smacallan{
815be1ef3d3Smacallan	ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
816be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
817be1ef3d3Smacallan
818be1ef3d3Smacallan	TRACE_ENTER("IgsCloseScreen");
819be1ef3d3Smacallan
820be1ef3d3Smacallan	if (pScrn->vtSema) {
821be1ef3d3Smacallan		IgsRestore(pScrn);
822be1ef3d3Smacallan		if (munmap(fPtr->fbmem, fPtr->fbmem_len) == -1) {
823be1ef3d3Smacallan			xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
824be1ef3d3Smacallan				   "munmap: %s\n", strerror(errno));
825be1ef3d3Smacallan		}
826be1ef3d3Smacallan
827be1ef3d3Smacallan		fPtr->fbmem = NULL;
828be1ef3d3Smacallan	}
829be1ef3d3Smacallan#ifdef XFreeXDGA
830be1ef3d3Smacallan	if (fPtr->pDGAMode) {
831be1ef3d3Smacallan		xfree(fPtr->pDGAMode);
832be1ef3d3Smacallan		fPtr->pDGAMode = NULL;
833be1ef3d3Smacallan		fPtr->nDGAMode = 0;
834be1ef3d3Smacallan	}
835be1ef3d3Smacallan#endif
836be1ef3d3Smacallan	pScrn->vtSema = FALSE;
837be1ef3d3Smacallan
838be1ef3d3Smacallan	/* unwrap CloseScreen */
839be1ef3d3Smacallan	pScreen->CloseScreen = fPtr->CloseScreen;
840be1ef3d3Smacallan	return (*pScreen->CloseScreen)(scrnIndex, pScreen);
841be1ef3d3Smacallan}
842be1ef3d3Smacallan
843be1ef3d3Smacallanstatic void *
844be1ef3d3SmacallanIgsWindowLinear(ScreenPtr pScreen, CARD32 row, CARD32 offset, int mode,
845be1ef3d3Smacallan		CARD32 *size, void *closure)
846be1ef3d3Smacallan{
847be1ef3d3Smacallan	ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
848be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
849be1ef3d3Smacallan
850be1ef3d3Smacallan	if (fPtr->linebytes)
851be1ef3d3Smacallan		*size = fPtr->linebytes;
852be1ef3d3Smacallan	else {
853be1ef3d3Smacallan		if (ioctl(fPtr->fd, WSDISPLAYIO_LINEBYTES, size) == -1)
854be1ef3d3Smacallan			return NULL;
855be1ef3d3Smacallan		fPtr->linebytes = *size;
856be1ef3d3Smacallan	}
857be1ef3d3Smacallan	return ((CARD8 *)fPtr->fbmem + row *fPtr->linebytes + offset);
858be1ef3d3Smacallan}
859be1ef3d3Smacallan
860be1ef3d3Smacallanstatic Bool
861be1ef3d3SmacallanIgsEnterVT(int scrnIndex, int flags)
862be1ef3d3Smacallan{
863be1ef3d3Smacallan	ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
864be1ef3d3Smacallan
865be1ef3d3Smacallan	TRACE_ENTER("EnterVT");
866be1ef3d3Smacallan	pScrn->vtSema = TRUE;
867be1ef3d3Smacallan	return TRUE;
868be1ef3d3Smacallan}
869be1ef3d3Smacallan
870be1ef3d3Smacallanstatic void
871be1ef3d3SmacallanIgsLeaveVT(int scrnIndex, int flags)
872be1ef3d3Smacallan{
873be1ef3d3Smacallan#if DEBUG
874be1ef3d3Smacallan	ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
875be1ef3d3Smacallan#endif
876be1ef3d3Smacallan
877be1ef3d3Smacallan	TRACE_ENTER("LeaveVT");
878be1ef3d3Smacallan}
879be1ef3d3Smacallan
880be1ef3d3Smacallanstatic Bool
881be1ef3d3SmacallanIgsSwitchMode(int scrnIndex, DisplayModePtr mode, int flags)
882be1ef3d3Smacallan{
883be1ef3d3Smacallan#if DEBUG
884be1ef3d3Smacallan	ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
885be1ef3d3Smacallan#endif
886be1ef3d3Smacallan
887be1ef3d3Smacallan	TRACE_ENTER("SwitchMode");
888be1ef3d3Smacallan	/* Nothing else to do */
889be1ef3d3Smacallan	return TRUE;
890be1ef3d3Smacallan}
891be1ef3d3Smacallan
892be1ef3d3Smacallanstatic int
893be1ef3d3SmacallanIgsValidMode(int scrnIndex, DisplayModePtr mode, Bool verbose, int flags)
894be1ef3d3Smacallan{
895be1ef3d3Smacallan#if DEBUG
896be1ef3d3Smacallan	ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
897be1ef3d3Smacallan#endif
898be1ef3d3Smacallan
899be1ef3d3Smacallan	TRACE_ENTER("ValidMode");
900be1ef3d3Smacallan	return MODE_OK;
901be1ef3d3Smacallan}
902be1ef3d3Smacallan
903be1ef3d3Smacallanstatic void
904be1ef3d3SmacallanIgsLoadPalette(ScrnInfoPtr pScrn, int numColors, int *indices,
905be1ef3d3Smacallan	       LOCO *colors, VisualPtr pVisual)
906be1ef3d3Smacallan{
907be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
908be1ef3d3Smacallan	struct wsdisplay_cmap cmap;
909be1ef3d3Smacallan	unsigned char red[256],green[256],blue[256];
910be1ef3d3Smacallan	int i, indexMin=256, indexMax=0;
911be1ef3d3Smacallan
912be1ef3d3Smacallan	TRACE_ENTER("LoadPalette");
913be1ef3d3Smacallan
914be1ef3d3Smacallan	cmap.count   = 1;
915be1ef3d3Smacallan	cmap.red   = red;
916be1ef3d3Smacallan	cmap.green = green;
917be1ef3d3Smacallan	cmap.blue  = blue;
918be1ef3d3Smacallan
919be1ef3d3Smacallan	if (numColors == 1) {
920be1ef3d3Smacallan		/* Optimisation */
921be1ef3d3Smacallan		cmap.index = indices[0];
922be1ef3d3Smacallan		red[0]   = colors[indices[0]].red;
923be1ef3d3Smacallan		green[0] = colors[indices[0]].green;
924be1ef3d3Smacallan		blue[0]  = colors[indices[0]].blue;
925be1ef3d3Smacallan		if (ioctl(fPtr->fd,WSDISPLAYIO_PUTCMAP, &cmap) == -1)
926be1ef3d3Smacallan			ErrorF("ioctl FBIOPUTCMAP: %s\n", strerror(errno));
927be1ef3d3Smacallan	} else {
928be1ef3d3Smacallan		/* Change all colors in 2 syscalls */
929be1ef3d3Smacallan		/* and limit the data to be transfered */
930be1ef3d3Smacallan		for (i = 0; i < numColors; i++) {
931be1ef3d3Smacallan			if (indices[i] < indexMin)
932be1ef3d3Smacallan				indexMin = indices[i];
933be1ef3d3Smacallan			if (indices[i] > indexMax)
934be1ef3d3Smacallan				indexMax = indices[i];
935be1ef3d3Smacallan		}
936be1ef3d3Smacallan		cmap.index = indexMin;
937be1ef3d3Smacallan		cmap.count = indexMax - indexMin + 1;
938be1ef3d3Smacallan		cmap.red = &red[indexMin];
939be1ef3d3Smacallan		cmap.green = &green[indexMin];
940be1ef3d3Smacallan		cmap.blue = &blue[indexMin];
941be1ef3d3Smacallan		/* Get current map */
942be1ef3d3Smacallan		if (ioctl(fPtr->fd, WSDISPLAYIO_GETCMAP, &cmap) == -1)
943be1ef3d3Smacallan			ErrorF("ioctl FBIOGETCMAP: %s\n", strerror(errno));
944be1ef3d3Smacallan		/* Change the colors that require updating */
945be1ef3d3Smacallan		for (i = 0; i < numColors; i++) {
946be1ef3d3Smacallan			red[indices[i]]   = colors[indices[i]].red;
947be1ef3d3Smacallan			green[indices[i]] = colors[indices[i]].green;
948be1ef3d3Smacallan			blue[indices[i]]  = colors[indices[i]].blue;
949be1ef3d3Smacallan		}
950be1ef3d3Smacallan		/* Write the colormap back */
951be1ef3d3Smacallan		if (ioctl(fPtr->fd,WSDISPLAYIO_PUTCMAP, &cmap) == -1)
952be1ef3d3Smacallan			ErrorF("ioctl FBIOPUTCMAP: %s\n", strerror(errno));
953be1ef3d3Smacallan	}
954be1ef3d3Smacallan	TRACE_EXIT("LoadPalette");
955be1ef3d3Smacallan}
956be1ef3d3Smacallan
957be1ef3d3Smacallanstatic Bool
958be1ef3d3SmacallanIgsSaveScreen(ScreenPtr pScreen, int mode)
959be1ef3d3Smacallan{
960be1ef3d3Smacallan	ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
961be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
962be1ef3d3Smacallan	int state;
963be1ef3d3Smacallan
964be1ef3d3Smacallan	TRACE_ENTER("SaveScreen");
965be1ef3d3Smacallan
966be1ef3d3Smacallan	if (!pScrn->vtSema)
967be1ef3d3Smacallan		return TRUE;
968be1ef3d3Smacallan
969be1ef3d3Smacallan	if (mode != SCREEN_SAVER_FORCER) {
970be1ef3d3Smacallan		state = xf86IsUnblank(mode)?WSDISPLAYIO_VIDEO_ON:
971be1ef3d3Smacallan		                            WSDISPLAYIO_VIDEO_OFF;
972be1ef3d3Smacallan		ioctl(fPtr->fd,
973be1ef3d3Smacallan		      WSDISPLAYIO_SVIDEO, &state);
974be1ef3d3Smacallan	}
975be1ef3d3Smacallan	return TRUE;
976be1ef3d3Smacallan}
977be1ef3d3Smacallan
978be1ef3d3Smacallan
979be1ef3d3Smacallanstatic void
980be1ef3d3SmacallanIgsSave(ScrnInfoPtr pScrn)
981be1ef3d3Smacallan{
982be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
983be1ef3d3Smacallan
984be1ef3d3Smacallan	TRACE_ENTER("IgsSave");
985be1ef3d3Smacallan
986be1ef3d3Smacallan	if (fPtr->info.cmsize == 0)
987be1ef3d3Smacallan		return;
988be1ef3d3Smacallan
989be1ef3d3Smacallan}
990be1ef3d3Smacallan
991be1ef3d3Smacallanstatic void
992be1ef3d3SmacallanIgsRestore(ScrnInfoPtr pScrn)
993be1ef3d3Smacallan{
994be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
995be1ef3d3Smacallan	int mode;
996be1ef3d3Smacallan
997be1ef3d3Smacallan	TRACE_ENTER("IgsRestore");
998be1ef3d3Smacallan
999be1ef3d3Smacallan	/* Clear the screen */
1000be1ef3d3Smacallan	memset(fPtr->fbmem, 0, fPtr->fbmem_len);
1001be1ef3d3Smacallan
1002be1ef3d3Smacallan	/* Restore the text mode */
1003be1ef3d3Smacallan	mode = WSDISPLAYIO_MODE_EMUL;
1004be1ef3d3Smacallan	if (ioctl(fPtr->fd, WSDISPLAYIO_SMODE, &mode) == -1) {
1005be1ef3d3Smacallan		xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
1006be1ef3d3Smacallan			   "error setting text mode %s\n", strerror(errno));
1007be1ef3d3Smacallan	}
1008be1ef3d3Smacallan	TRACE_EXIT("IgsRestore");
1009be1ef3d3Smacallan}
1010be1ef3d3Smacallan
1011be1ef3d3Smacallan#ifdef XFreeXDGA
1012be1ef3d3Smacallan/***********************************************************************
1013be1ef3d3Smacallan * DGA stuff
1014be1ef3d3Smacallan ***********************************************************************/
1015be1ef3d3Smacallan
1016be1ef3d3Smacallanstatic Bool
1017be1ef3d3SmacallanIgsDGAOpenFramebuffer(ScrnInfoPtr pScrn, char **DeviceName,
1018be1ef3d3Smacallan		       unsigned char **ApertureBase, int *ApertureSize,
1019be1ef3d3Smacallan		       int *ApertureOffset, int *flags)
1020be1ef3d3Smacallan{
1021be1ef3d3Smacallan	*DeviceName = NULL;		/* No special device */
1022be1ef3d3Smacallan	*ApertureBase = (unsigned char *)(pScrn->memPhysBase);
1023be1ef3d3Smacallan	*ApertureSize = pScrn->videoRam;
1024be1ef3d3Smacallan	*ApertureOffset = pScrn->fbOffset;
1025be1ef3d3Smacallan	*flags = 0;
1026be1ef3d3Smacallan
1027be1ef3d3Smacallan	return TRUE;
1028be1ef3d3Smacallan}
1029be1ef3d3Smacallan
1030be1ef3d3Smacallanstatic Bool
1031be1ef3d3SmacallanIgsDGASetMode(ScrnInfoPtr pScrn, DGAModePtr pDGAMode)
1032be1ef3d3Smacallan{
1033be1ef3d3Smacallan	DisplayModePtr pMode;
1034be1ef3d3Smacallan	int scrnIdx = pScrn->pScreen->myNum;
1035be1ef3d3Smacallan	int frameX0, frameY0;
1036be1ef3d3Smacallan
1037be1ef3d3Smacallan	if (pDGAMode) {
1038be1ef3d3Smacallan		pMode = pDGAMode->mode;
1039be1ef3d3Smacallan		frameX0 = frameY0 = 0;
1040be1ef3d3Smacallan	} else {
1041be1ef3d3Smacallan		if (!(pMode = pScrn->currentMode))
1042be1ef3d3Smacallan			return TRUE;
1043be1ef3d3Smacallan
1044be1ef3d3Smacallan		frameX0 = pScrn->frameX0;
1045be1ef3d3Smacallan		frameY0 = pScrn->frameY0;
1046be1ef3d3Smacallan	}
1047be1ef3d3Smacallan
1048be1ef3d3Smacallan	if (!(*pScrn->SwitchMode)(scrnIdx, pMode, 0))
1049be1ef3d3Smacallan		return FALSE;
1050be1ef3d3Smacallan	(*pScrn->AdjustFrame)(scrnIdx, frameX0, frameY0, 0);
1051be1ef3d3Smacallan
1052be1ef3d3Smacallan	return TRUE;
1053be1ef3d3Smacallan}
1054be1ef3d3Smacallan
1055be1ef3d3Smacallanstatic void
1056be1ef3d3SmacallanIgsDGASetViewport(ScrnInfoPtr pScrn, int x, int y, int flags)
1057be1ef3d3Smacallan{
1058be1ef3d3Smacallan	(*pScrn->AdjustFrame)(pScrn->pScreen->myNum, x, y, flags);
1059be1ef3d3Smacallan}
1060be1ef3d3Smacallan
1061be1ef3d3Smacallanstatic int
1062be1ef3d3SmacallanIgsDGAGetViewport(ScrnInfoPtr pScrn)
1063be1ef3d3Smacallan{
1064be1ef3d3Smacallan	return (0);
1065be1ef3d3Smacallan}
1066be1ef3d3Smacallan
1067be1ef3d3Smacallanstatic DGAFunctionRec IgsDGAFunctions =
1068be1ef3d3Smacallan{
1069be1ef3d3Smacallan	IgsDGAOpenFramebuffer,
1070be1ef3d3Smacallan	NULL,       /* CloseFramebuffer */
1071be1ef3d3Smacallan	IgsDGASetMode,
1072be1ef3d3Smacallan	IgsDGASetViewport,
1073be1ef3d3Smacallan	IgsDGAGetViewport,
1074be1ef3d3Smacallan	NULL,       /* Sync */
1075be1ef3d3Smacallan	NULL,       /* FillRect */
1076be1ef3d3Smacallan	NULL,       /* BlitRect */
1077be1ef3d3Smacallan	NULL,       /* BlitTransRect */
1078be1ef3d3Smacallan};
1079be1ef3d3Smacallan
1080be1ef3d3Smacallanstatic void
1081be1ef3d3SmacallanIgsDGAAddModes(ScrnInfoPtr pScrn)
1082be1ef3d3Smacallan{
1083be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
1084be1ef3d3Smacallan	DisplayModePtr pMode = pScrn->modes;
1085be1ef3d3Smacallan	DGAModePtr pDGAMode;
1086be1ef3d3Smacallan
1087be1ef3d3Smacallan	do {
1088be1ef3d3Smacallan		pDGAMode = xrealloc(fPtr->pDGAMode,
1089be1ef3d3Smacallan				    (fPtr->nDGAMode + 1) * sizeof(DGAModeRec));
1090be1ef3d3Smacallan		if (!pDGAMode)
1091be1ef3d3Smacallan			break;
1092be1ef3d3Smacallan
1093be1ef3d3Smacallan		fPtr->pDGAMode = pDGAMode;
1094be1ef3d3Smacallan		pDGAMode += fPtr->nDGAMode;
1095be1ef3d3Smacallan		(void)memset(pDGAMode, 0, sizeof(DGAModeRec));
1096be1ef3d3Smacallan
1097be1ef3d3Smacallan		++fPtr->nDGAMode;
1098be1ef3d3Smacallan		pDGAMode->mode = pMode;
1099be1ef3d3Smacallan		pDGAMode->flags = DGA_CONCURRENT_ACCESS | DGA_PIXMAP_AVAILABLE;
1100be1ef3d3Smacallan		pDGAMode->byteOrder = pScrn->imageByteOrder;
1101be1ef3d3Smacallan		pDGAMode->depth = pScrn->depth;
1102be1ef3d3Smacallan		pDGAMode->bitsPerPixel = pScrn->bitsPerPixel;
1103be1ef3d3Smacallan		pDGAMode->red_mask = pScrn->mask.red;
1104be1ef3d3Smacallan		pDGAMode->green_mask = pScrn->mask.green;
1105be1ef3d3Smacallan		pDGAMode->blue_mask = pScrn->mask.blue;
1106be1ef3d3Smacallan		pDGAMode->visualClass = pScrn->bitsPerPixel > 8 ?
1107be1ef3d3Smacallan			TrueColor : PseudoColor;
1108be1ef3d3Smacallan		pDGAMode->xViewportStep = 1;
1109be1ef3d3Smacallan		pDGAMode->yViewportStep = 1;
1110be1ef3d3Smacallan		pDGAMode->viewportWidth = pMode->HDisplay;
1111be1ef3d3Smacallan		pDGAMode->viewportHeight = pMode->VDisplay;
1112be1ef3d3Smacallan
1113be1ef3d3Smacallan		if (fPtr->linebytes)
1114be1ef3d3Smacallan			pDGAMode->bytesPerScanline = fPtr->linebytes;
1115be1ef3d3Smacallan		else {
1116be1ef3d3Smacallan			ioctl(fPtr->fd, WSDISPLAYIO_LINEBYTES,
1117be1ef3d3Smacallan			      &fPtr->linebytes);
1118be1ef3d3Smacallan			pDGAMode->bytesPerScanline = fPtr->linebytes;
1119be1ef3d3Smacallan		}
1120be1ef3d3Smacallan
1121be1ef3d3Smacallan		pDGAMode->imageWidth = pMode->HDisplay;
1122be1ef3d3Smacallan		pDGAMode->imageHeight =  pMode->VDisplay;
1123be1ef3d3Smacallan		pDGAMode->pixmapWidth = pDGAMode->imageWidth;
1124be1ef3d3Smacallan		pDGAMode->pixmapHeight = pDGAMode->imageHeight;
1125be1ef3d3Smacallan		pDGAMode->maxViewportX = pScrn->virtualX -
1126be1ef3d3Smacallan			pDGAMode->viewportWidth;
1127be1ef3d3Smacallan		pDGAMode->maxViewportY = pScrn->virtualY -
1128be1ef3d3Smacallan			pDGAMode->viewportHeight;
1129be1ef3d3Smacallan
1130be1ef3d3Smacallan		pDGAMode->address = fPtr->fbstart;
1131be1ef3d3Smacallan
1132be1ef3d3Smacallan		pMode = pMode->next;
1133be1ef3d3Smacallan	} while (pMode != pScrn->modes);
1134be1ef3d3Smacallan}
1135be1ef3d3Smacallan
1136be1ef3d3Smacallanstatic Bool
1137be1ef3d3SmacallanIgsDGAInit(ScrnInfoPtr pScrn, ScreenPtr pScreen)
1138be1ef3d3Smacallan{
1139be1ef3d3Smacallan	IgsPtr fPtr = IGSPTR(pScrn);
1140be1ef3d3Smacallan
1141be1ef3d3Smacallan	if (pScrn->depth < 8)
1142be1ef3d3Smacallan		return FALSE;
1143be1ef3d3Smacallan
1144be1ef3d3Smacallan	if (!fPtr->nDGAMode)
1145be1ef3d3Smacallan		IgsDGAAddModes(pScrn);
1146be1ef3d3Smacallan
1147be1ef3d3Smacallan	return (DGAInit(pScreen, &IgsDGAFunctions,
1148be1ef3d3Smacallan			fPtr->pDGAMode, fPtr->nDGAMode));
1149be1ef3d3Smacallan}
1150be1ef3d3Smacallan#endif
1151be1ef3d3Smacallan
1152be1ef3d3Smacallanstatic Bool
1153be1ef3d3SmacallanIgsDriverFunc(ScrnInfoPtr pScrn, xorgDriverFuncOp op,
1154be1ef3d3Smacallan    pointer ptr)
1155be1ef3d3Smacallan{
1156be1ef3d3Smacallan	xorgHWFlags *flag;
1157be1ef3d3Smacallan
1158be1ef3d3Smacallan	switch (op) {
1159be1ef3d3Smacallan	case GET_REQUIRED_HW_INTERFACES:
1160be1ef3d3Smacallan		flag = (CARD32*)ptr;
1161be1ef3d3Smacallan		(*flag) = 0;
1162be1ef3d3Smacallan		return TRUE;
1163be1ef3d3Smacallan	default:
1164be1ef3d3Smacallan		return FALSE;
1165be1ef3d3Smacallan	}
1166be1ef3d3Smacallan}
1167be1ef3d3Smacallan
1168