xref: /illumos-gate/usr/src/uts/intel/io/vgatext/vgatext.c (revision 2df1fe9ca32bb227b9158c67f5c00b54c20b10fd)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
54ab75253Smrj  * Common Development and Distribution License (the "License").
64ab75253Smrj  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
214ab75253Smrj 
227c478bd9Sstevel@tonic-gate /*
234e93fb0fSrugrat  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
27f67ca41aSrugrat /*	Copyright (c) 1990, 1991 UNIX System Laboratories, Inc.	*/
28f67ca41aSrugrat /*	Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T	*/
29f67ca41aSrugrat /*	  All Rights Reserved  	*/
30f67ca41aSrugrat 
317c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
327c478bd9Sstevel@tonic-gate 
337c478bd9Sstevel@tonic-gate #include <sys/errno.h>
347c478bd9Sstevel@tonic-gate #include <sys/types.h>
357c478bd9Sstevel@tonic-gate #include <sys/conf.h>
367c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
377c478bd9Sstevel@tonic-gate #include <sys/visual_io.h>
387c478bd9Sstevel@tonic-gate #include <sys/font.h>
397c478bd9Sstevel@tonic-gate #include <sys/fbio.h>
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
427c478bd9Sstevel@tonic-gate #include <sys/stat.h>
437c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
447c478bd9Sstevel@tonic-gate #include <sys/file.h>
457c478bd9Sstevel@tonic-gate #include <sys/open.h>
467c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
477c478bd9Sstevel@tonic-gate #include <sys/vgareg.h>
487c478bd9Sstevel@tonic-gate #include <sys/vgasubr.h>
497c478bd9Sstevel@tonic-gate #include <sys/pci.h>
507c478bd9Sstevel@tonic-gate #include <sys/kd.h>
517c478bd9Sstevel@tonic-gate #include <sys/ddi_impldefs.h>
527c478bd9Sstevel@tonic-gate #include <sys/sunldi.h>
537c478bd9Sstevel@tonic-gate #include <sys/agpgart.h>
547c478bd9Sstevel@tonic-gate #include <sys/agp/agpdefs.h>
557c478bd9Sstevel@tonic-gate #include <sys/agp/agpmaster_io.h>
567c478bd9Sstevel@tonic-gate 
577c478bd9Sstevel@tonic-gate #define	MYNAME	"vgatext"
587c478bd9Sstevel@tonic-gate 
597c478bd9Sstevel@tonic-gate /*
6060405de4Skz151634  * Each instance of this driver has 2 minor nodes:
6160405de4Skz151634  * 0: for common graphics operations
6260405de4Skz151634  * 1: for agpmaster operations
637c478bd9Sstevel@tonic-gate  */
6460405de4Skz151634 #define	GFX_MINOR		0
6560405de4Skz151634 #define	AGPMASTER_MINOR		1
66d6bb6a84Sms148562 
6760405de4Skz151634 #define	MY_NBITSMINOR		1
6860405de4Skz151634 #define	DEV2INST(dev)		(getminor(dev) >> MY_NBITSMINOR)
6960405de4Skz151634 #define	DEV2MINOR(dev)		(getminor(dev) & ((1 << MY_NBITSMINOR) - 1))
7060405de4Skz151634 #define	INST2NODE1(inst)	((inst) << MY_NBITSMINOR + GFX_MINOR)
7160405de4Skz151634 #define	INST2NODE2(inst)	(((inst) << MY_NBITSMINOR) + AGPMASTER_MINOR)
727c478bd9Sstevel@tonic-gate 
737c478bd9Sstevel@tonic-gate /* I don't know exactly where these should be defined, but this is a	*/
747c478bd9Sstevel@tonic-gate /* heck of a lot better than constants in the code.			*/
757c478bd9Sstevel@tonic-gate #define	TEXT_ROWS		25
767c478bd9Sstevel@tonic-gate #define	TEXT_COLS		80
777c478bd9Sstevel@tonic-gate 
787c478bd9Sstevel@tonic-gate #define	VGA_BRIGHT_WHITE	0x0f
797c478bd9Sstevel@tonic-gate #define	VGA_BLACK		0x00
807c478bd9Sstevel@tonic-gate 
817c478bd9Sstevel@tonic-gate #define	VGA_REG_ADDR		0x3c0
827c478bd9Sstevel@tonic-gate #define	VGA_REG_SIZE		0x20
837c478bd9Sstevel@tonic-gate 
847c478bd9Sstevel@tonic-gate #define	VGA_MEM_ADDR		0xa0000
857c478bd9Sstevel@tonic-gate #define	VGA_MEM_SIZE		0x20000
867c478bd9Sstevel@tonic-gate 
877c478bd9Sstevel@tonic-gate #define	VGA_MMAP_FB_BASE	VGA_MEM_ADDR
887c478bd9Sstevel@tonic-gate 
89*2df1fe9cSrandyf /*
90*2df1fe9cSrandyf  * This variable allows for this driver to suspend even if it
91*2df1fe9cSrandyf  * shouldn't.  Note that by setting it, the framebuffer will probably
92*2df1fe9cSrandyf  * not come back.  So use it with a serial console, or with serial
93*2df1fe9cSrandyf  * line debugging (say, for example, if this driver is being modified
94*2df1fe9cSrandyf  * to support _some_ hardware doing suspend and resume).
95*2df1fe9cSrandyf  */
96*2df1fe9cSrandyf int vgatext_force_suspend = 0;
97*2df1fe9cSrandyf 
987c478bd9Sstevel@tonic-gate static int vgatext_open(dev_t *, int, int, cred_t *);
997c478bd9Sstevel@tonic-gate static int vgatext_close(dev_t, int, int, cred_t *);
1007c478bd9Sstevel@tonic-gate static int vgatext_ioctl(dev_t, int, intptr_t, int, cred_t *, int *);
1017c478bd9Sstevel@tonic-gate static int vgatext_devmap(dev_t, devmap_cookie_t, offset_t, size_t,
1027c478bd9Sstevel@tonic-gate 			    size_t *, uint_t);
1037c478bd9Sstevel@tonic-gate 
1047c478bd9Sstevel@tonic-gate static 	struct cb_ops cb_vgatext_ops = {
1057c478bd9Sstevel@tonic-gate 	vgatext_open,		/* cb_open */
1067c478bd9Sstevel@tonic-gate 	vgatext_close,		/* cb_close */
1077c478bd9Sstevel@tonic-gate 	nodev,			/* cb_strategy */
1087c478bd9Sstevel@tonic-gate 	nodev,			/* cb_print */
1097c478bd9Sstevel@tonic-gate 	nodev,			/* cb_dump */
1107c478bd9Sstevel@tonic-gate 	nodev,			/* cb_read */
1117c478bd9Sstevel@tonic-gate 	nodev,			/* cb_write */
1127c478bd9Sstevel@tonic-gate 	vgatext_ioctl,		/* cb_ioctl */
1137c478bd9Sstevel@tonic-gate 	vgatext_devmap,		/* cb_devmap */
1147c478bd9Sstevel@tonic-gate 	nodev,			/* cb_mmap */
1157c478bd9Sstevel@tonic-gate 	ddi_devmap_segmap,	/* cb_segmap */
1167c478bd9Sstevel@tonic-gate 	nochpoll,		/* cb_chpoll */
1177c478bd9Sstevel@tonic-gate 	ddi_prop_op,		/* cb_prop_op */
1187c478bd9Sstevel@tonic-gate 	0,			/* cb_stream */
1197c478bd9Sstevel@tonic-gate 	D_NEW | D_MTSAFE	/* cb_flag */
1207c478bd9Sstevel@tonic-gate };
1217c478bd9Sstevel@tonic-gate 
1227c478bd9Sstevel@tonic-gate static int vgatext_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg,
1237c478bd9Sstevel@tonic-gate 		void **result);
1247c478bd9Sstevel@tonic-gate static int vgatext_attach(dev_info_t *, ddi_attach_cmd_t);
1257c478bd9Sstevel@tonic-gate static int vgatext_detach(dev_info_t *, ddi_detach_cmd_t);
1267c478bd9Sstevel@tonic-gate 
1277c478bd9Sstevel@tonic-gate static struct vis_identifier text_ident = { "SUNWtext" };
1287c478bd9Sstevel@tonic-gate 
1297c478bd9Sstevel@tonic-gate static struct dev_ops vgatext_ops = {
1307c478bd9Sstevel@tonic-gate 	DEVO_REV,		/* devo_rev */
1317c478bd9Sstevel@tonic-gate 	0,			/* devo_refcnt */
1327c478bd9Sstevel@tonic-gate 	vgatext_info,		/* devo_getinfo */
1337c478bd9Sstevel@tonic-gate 	nulldev,		/* devo_identify */
1347c478bd9Sstevel@tonic-gate 	nulldev,		/* devo_probe */
1357c478bd9Sstevel@tonic-gate 	vgatext_attach,		/* devo_attach */
1367c478bd9Sstevel@tonic-gate 	vgatext_detach,		/* devo_detach */
1377c478bd9Sstevel@tonic-gate 	nodev,			/* devo_reset */
1387c478bd9Sstevel@tonic-gate 	&cb_vgatext_ops,	/* devo_cb_ops */
1397c478bd9Sstevel@tonic-gate 	(struct bus_ops *)NULL,	/* devo_bus_ops */
1407c478bd9Sstevel@tonic-gate 	NULL			/* power */
1417c478bd9Sstevel@tonic-gate };
1427c478bd9Sstevel@tonic-gate 
1437c478bd9Sstevel@tonic-gate struct vgatext_softc {
1447c478bd9Sstevel@tonic-gate 	struct vgaregmap 	regs;
1457c478bd9Sstevel@tonic-gate 	struct vgaregmap 	fb;
1467c478bd9Sstevel@tonic-gate 	off_t			fb_size;
1477c478bd9Sstevel@tonic-gate 	int			fb_regno;
1487c478bd9Sstevel@tonic-gate 	dev_info_t		*devi;
1497c478bd9Sstevel@tonic-gate 	int			mode;	/* KD_TEXT or KD_GRAPHICS */
1507c478bd9Sstevel@tonic-gate 	caddr_t			text_base;	/* hardware text base */
1517c478bd9Sstevel@tonic-gate 	char			shadow[TEXT_ROWS*TEXT_COLS*2];
1527c478bd9Sstevel@tonic-gate 	caddr_t			current_base;	/* hardware or shadow */
1537c478bd9Sstevel@tonic-gate 	struct {
1547c478bd9Sstevel@tonic-gate 		boolean_t visible;
1557c478bd9Sstevel@tonic-gate 		int row;
1567c478bd9Sstevel@tonic-gate 		int col;
1577c478bd9Sstevel@tonic-gate 	}			cursor;
1587c478bd9Sstevel@tonic-gate 	struct vis_polledio	polledio;
1597c478bd9Sstevel@tonic-gate 	struct {
1607c478bd9Sstevel@tonic-gate 		unsigned char red;
1617c478bd9Sstevel@tonic-gate 		unsigned char green;
1627c478bd9Sstevel@tonic-gate 		unsigned char blue;
1637c478bd9Sstevel@tonic-gate 	}			colormap[VGA8_CMAP_ENTRIES];
1647c478bd9Sstevel@tonic-gate 	unsigned char attrib_palette[VGA_ATR_NUM_PLT];
1657c478bd9Sstevel@tonic-gate 	agp_master_softc_t	*agp_master; /* NULL mean not PCI, for AGP */
16660405de4Skz151634 	ddi_acc_handle_t	*pci_cfg_hdlp;	/* PCI conf handle */
1674e93fb0fSrugrat 	unsigned int flags;
1687c478bd9Sstevel@tonic-gate };
1697c478bd9Sstevel@tonic-gate 
1704e93fb0fSrugrat #define	VGATEXT_FLAG_CONSOLE 0x00000001
1714e93fb0fSrugrat #define	VGATEXT_IS_CONSOLE(softc) ((softc)->flags & VGATEXT_FLAG_CONSOLE)
1724e93fb0fSrugrat 
1737c478bd9Sstevel@tonic-gate static int vgatext_devinit(struct vgatext_softc *, struct vis_devinit *data);
1747c478bd9Sstevel@tonic-gate static void	vgatext_cons_copy(struct vgatext_softc *,
1757c478bd9Sstevel@tonic-gate 			struct vis_conscopy *);
1767c478bd9Sstevel@tonic-gate static void	vgatext_cons_display(struct vgatext_softc *,
1777c478bd9Sstevel@tonic-gate 			struct vis_consdisplay *);
1787c478bd9Sstevel@tonic-gate static void	vgatext_cons_cursor(struct vgatext_softc *,
1797c478bd9Sstevel@tonic-gate 			struct vis_conscursor *);
1807c478bd9Sstevel@tonic-gate static void	vgatext_polled_copy(struct vis_polledio_arg *,
1817c478bd9Sstevel@tonic-gate 			struct vis_conscopy *);
1827c478bd9Sstevel@tonic-gate static void	vgatext_polled_display(struct vis_polledio_arg *,
1837c478bd9Sstevel@tonic-gate 			struct vis_consdisplay *);
1847c478bd9Sstevel@tonic-gate static void	vgatext_polled_cursor(struct vis_polledio_arg *,
1857c478bd9Sstevel@tonic-gate 			struct vis_conscursor *);
1867c478bd9Sstevel@tonic-gate static void	vgatext_init(struct vgatext_softc *);
1877c478bd9Sstevel@tonic-gate static void	vgatext_set_text(struct vgatext_softc *);
1887c478bd9Sstevel@tonic-gate #if	defined(USE_BORDERS)
1897c478bd9Sstevel@tonic-gate static void	vgatext_init_graphics(struct vgatext_softc *);
1907c478bd9Sstevel@tonic-gate #endif
1917c478bd9Sstevel@tonic-gate static int vgatext_kdsetmode(struct vgatext_softc *softc, int mode);
1927c478bd9Sstevel@tonic-gate static void vgatext_setfont(struct vgatext_softc *softc);
1937c478bd9Sstevel@tonic-gate static void vgatext_get_cursor(struct vgatext_softc *softc,
1947c478bd9Sstevel@tonic-gate 		screen_pos_t *row, screen_pos_t *col);
1957c478bd9Sstevel@tonic-gate static void vgatext_set_cursor(struct vgatext_softc *softc, int row, int col);
1967c478bd9Sstevel@tonic-gate static void vgatext_hide_cursor(struct vgatext_softc *softc);
1977c478bd9Sstevel@tonic-gate static void vgatext_save_colormap(struct vgatext_softc *softc);
1987c478bd9Sstevel@tonic-gate static void vgatext_restore_colormap(struct vgatext_softc *softc);
1997c478bd9Sstevel@tonic-gate static int vgatext_get_pci_reg_index(dev_info_t *const devi,
2007c478bd9Sstevel@tonic-gate 		unsigned long himask, unsigned long hival, unsigned long addr,
2017c478bd9Sstevel@tonic-gate 		off_t *offset);
2027c478bd9Sstevel@tonic-gate static int vgatext_get_isa_reg_index(dev_info_t *const devi,
2037c478bd9Sstevel@tonic-gate 		unsigned long hival, unsigned long addr, off_t *offset);
2047c478bd9Sstevel@tonic-gate static void	*vgatext_softc_head;
2057c478bd9Sstevel@tonic-gate static char	vgatext_silent;
2067c478bd9Sstevel@tonic-gate static char	happyface_boot;
2077c478bd9Sstevel@tonic-gate 
2087c478bd9Sstevel@tonic-gate /* Loadable Driver stuff */
2097c478bd9Sstevel@tonic-gate 
2107c478bd9Sstevel@tonic-gate static struct modldrv modldrv = {
2117c478bd9Sstevel@tonic-gate 	&mod_driverops,		/* Type of module.  This one is a driver */
2127c478bd9Sstevel@tonic-gate 	"VGA text driver v%I%",	/* Name of the module. */
2137c478bd9Sstevel@tonic-gate 	&vgatext_ops,		/* driver ops */
2147c478bd9Sstevel@tonic-gate };
2157c478bd9Sstevel@tonic-gate 
2167c478bd9Sstevel@tonic-gate static struct modlinkage modlinkage = {
2177c478bd9Sstevel@tonic-gate 	MODREV_1, (void *) &modldrv, NULL
2187c478bd9Sstevel@tonic-gate };
2197c478bd9Sstevel@tonic-gate 
2207c478bd9Sstevel@tonic-gate typedef enum pc_colors {
2217c478bd9Sstevel@tonic-gate 	pc_black	= 0,
2227c478bd9Sstevel@tonic-gate 	pc_blue		= 1,
2237c478bd9Sstevel@tonic-gate 	pc_green	= 2,
2247c478bd9Sstevel@tonic-gate 	pc_cyan		= 3,
2257c478bd9Sstevel@tonic-gate 	pc_red		= 4,
2267c478bd9Sstevel@tonic-gate 	pc_magenta	= 5,
2277c478bd9Sstevel@tonic-gate 	pc_brown	= 6,
2287c478bd9Sstevel@tonic-gate 	pc_white	= 7,
2297c478bd9Sstevel@tonic-gate 	pc_grey		= 8,
2307c478bd9Sstevel@tonic-gate 	pc_brt_blue	= 9,
2317c478bd9Sstevel@tonic-gate 	pc_brt_green	= 10,
2327c478bd9Sstevel@tonic-gate 	pc_brt_cyan	= 11,
2337c478bd9Sstevel@tonic-gate 	pc_brt_red	= 12,
2347c478bd9Sstevel@tonic-gate 	pc_brt_magenta	= 13,
2357c478bd9Sstevel@tonic-gate 	pc_yellow	= 14,
2367c478bd9Sstevel@tonic-gate 	pc_brt_white	= 15
2377c478bd9Sstevel@tonic-gate } pc_colors_t;
2387c478bd9Sstevel@tonic-gate 
2397c478bd9Sstevel@tonic-gate static const unsigned char solaris_color_to_pc_color[16] = {
2407c478bd9Sstevel@tonic-gate 	pc_brt_white,		/*  0 - brt_white	*/
2417c478bd9Sstevel@tonic-gate 	pc_black,		/*  1 - black		*/
2427c478bd9Sstevel@tonic-gate 	pc_blue,		/*  2 - blue		*/
2437c478bd9Sstevel@tonic-gate 	pc_green,		/*  3 - green		*/
2447c478bd9Sstevel@tonic-gate 	pc_cyan,		/*  4 - cyan		*/
2457c478bd9Sstevel@tonic-gate 	pc_red,			/*  5 - red		*/
2467c478bd9Sstevel@tonic-gate 	pc_magenta,		/*  6 - magenta		*/
2477c478bd9Sstevel@tonic-gate 	pc_brown,		/*  7 - brown		*/
2487c478bd9Sstevel@tonic-gate 	pc_white,		/*  8 - white		*/
2497c478bd9Sstevel@tonic-gate 	pc_grey,		/*  9 - gery		*/
2507c478bd9Sstevel@tonic-gate 	pc_brt_blue,		/* 10 - brt_blue	*/
2517c478bd9Sstevel@tonic-gate 	pc_brt_green,		/* 11 - brt_green	*/
2527c478bd9Sstevel@tonic-gate 	pc_brt_cyan,		/* 12 - brt_cyan	*/
2537c478bd9Sstevel@tonic-gate 	pc_brt_red,		/* 13 - brt_red		*/
2547c478bd9Sstevel@tonic-gate 	pc_brt_magenta,		/* 14 - brt_magenta	*/
2557c478bd9Sstevel@tonic-gate 	pc_yellow		/* 15 - yellow		*/
2567c478bd9Sstevel@tonic-gate };
2577c478bd9Sstevel@tonic-gate 
2587c478bd9Sstevel@tonic-gate static ddi_device_acc_attr_t i8xx_dev_access = {
2597c478bd9Sstevel@tonic-gate 	DDI_DEVICE_ATTR_V0,
2607c478bd9Sstevel@tonic-gate 	DDI_NEVERSWAP_ACC,
2617c478bd9Sstevel@tonic-gate 	DDI_STRICTORDER_ACC
2627c478bd9Sstevel@tonic-gate };
2637c478bd9Sstevel@tonic-gate 
2647c478bd9Sstevel@tonic-gate static ddi_device_acc_attr_t dev_attr = {
2657c478bd9Sstevel@tonic-gate 	DDI_DEVICE_ATTR_V0,
2667c478bd9Sstevel@tonic-gate 	DDI_NEVERSWAP_ACC,
2677c478bd9Sstevel@tonic-gate 	DDI_STRICTORDER_ACC,
2687c478bd9Sstevel@tonic-gate };
2697c478bd9Sstevel@tonic-gate 
2707c478bd9Sstevel@tonic-gate int
2717c478bd9Sstevel@tonic-gate _init(void)
2727c478bd9Sstevel@tonic-gate {
2737c478bd9Sstevel@tonic-gate 	int e;
2747c478bd9Sstevel@tonic-gate 
2757c478bd9Sstevel@tonic-gate 	if ((e = ddi_soft_state_init(&vgatext_softc_head,
2767c478bd9Sstevel@tonic-gate 		    sizeof (struct vgatext_softc), 1)) != 0) {
2777c478bd9Sstevel@tonic-gate 	    return (e);
2787c478bd9Sstevel@tonic-gate 	}
2797c478bd9Sstevel@tonic-gate 
2807c478bd9Sstevel@tonic-gate 	e = mod_install(&modlinkage);
2817c478bd9Sstevel@tonic-gate 
2827c478bd9Sstevel@tonic-gate 	if (e) {
2837c478bd9Sstevel@tonic-gate 		ddi_soft_state_fini(&vgatext_softc_head);
2847c478bd9Sstevel@tonic-gate 	}
2857c478bd9Sstevel@tonic-gate 	return (e);
2867c478bd9Sstevel@tonic-gate }
2877c478bd9Sstevel@tonic-gate 
2887c478bd9Sstevel@tonic-gate int
2897c478bd9Sstevel@tonic-gate _fini(void)
2907c478bd9Sstevel@tonic-gate {
2917c478bd9Sstevel@tonic-gate 	int e;
2927c478bd9Sstevel@tonic-gate 
2937c478bd9Sstevel@tonic-gate 	if ((e = mod_remove(&modlinkage)) != 0)
2947c478bd9Sstevel@tonic-gate 		return (e);
2957c478bd9Sstevel@tonic-gate 
2967c478bd9Sstevel@tonic-gate 	ddi_soft_state_fini(&vgatext_softc_head);
2977c478bd9Sstevel@tonic-gate 
2987c478bd9Sstevel@tonic-gate 	return (0);
2997c478bd9Sstevel@tonic-gate }
3007c478bd9Sstevel@tonic-gate 
3017c478bd9Sstevel@tonic-gate int
3027c478bd9Sstevel@tonic-gate _info(struct modinfo *modinfop)
3037c478bd9Sstevel@tonic-gate {
3047c478bd9Sstevel@tonic-gate 	return (mod_info(&modlinkage, modinfop));
3057c478bd9Sstevel@tonic-gate }
3067c478bd9Sstevel@tonic-gate 
3077c478bd9Sstevel@tonic-gate /* default structure for FBIOGATTR ioctl */
3087c478bd9Sstevel@tonic-gate static struct fbgattr vgatext_attr =  {
3097c478bd9Sstevel@tonic-gate /*	real_type	owner */
3107c478bd9Sstevel@tonic-gate 	FBTYPE_SUNFAST_COLOR, 0,
3117c478bd9Sstevel@tonic-gate /* fbtype: type		h  w  depth cms  size */
3127c478bd9Sstevel@tonic-gate 	{ FBTYPE_SUNFAST_COLOR, TEXT_ROWS, TEXT_COLS, 1,    256,  0 },
3137c478bd9Sstevel@tonic-gate /* fbsattr: flags emu_type	dev_specific */
3147c478bd9Sstevel@tonic-gate 	{ 0, FBTYPE_SUN4COLOR, { 0 } },
3157c478bd9Sstevel@tonic-gate /*	emu_types */
3167c478bd9Sstevel@tonic-gate 	{ -1 }
3177c478bd9Sstevel@tonic-gate };
3187c478bd9Sstevel@tonic-gate 
3197c478bd9Sstevel@tonic-gate /*
3207c478bd9Sstevel@tonic-gate  * handy macros
3217c478bd9Sstevel@tonic-gate  */
3227c478bd9Sstevel@tonic-gate 
3237c478bd9Sstevel@tonic-gate #define	getsoftc(instance) ((struct vgatext_softc *)	\
3247c478bd9Sstevel@tonic-gate 			ddi_get_soft_state(vgatext_softc_head, (instance)))
3257c478bd9Sstevel@tonic-gate 
3264e93fb0fSrugrat #define	STREQ(a, b)	(strcmp((a), (b)) == 0)
3274e93fb0fSrugrat 
3284e93fb0fSrugrat static void
3294e93fb0fSrugrat vgatext_check_for_console(dev_info_t *devi, struct vgatext_softc *softc,
3304e93fb0fSrugrat 	int pci_pcie_bus)
3314e93fb0fSrugrat {
3324e93fb0fSrugrat 	ddi_acc_handle_t pci_conf;
3334e93fb0fSrugrat 	dev_info_t *pdevi;
3344e93fb0fSrugrat 	uint16_t data16;
3354e93fb0fSrugrat 
3364e93fb0fSrugrat 	/*
3374e93fb0fSrugrat 	 * Based on Section 11.3, "PCI Display Subsystem Initialization",
3384e93fb0fSrugrat 	 * of the 1.1 PCI-to-PCI Bridge Architecture Specification
3394e93fb0fSrugrat 	 * determine if this is the boot console device.  First, see
3404e93fb0fSrugrat 	 * if the SBIOS has turned on PCI I/O for this device.  Then if
3414e93fb0fSrugrat 	 * this is PCI/PCI-E, verify the parent bridge has VGAEnable set.
3424e93fb0fSrugrat 	 */
3434e93fb0fSrugrat 
3444e93fb0fSrugrat 	if (pci_config_setup(devi, &pci_conf) != DDI_SUCCESS) {
3454e93fb0fSrugrat 		cmn_err(CE_WARN,
3464e93fb0fSrugrat 		    MYNAME ": can't get PCI conf handle");
3474e93fb0fSrugrat 		return;
3484e93fb0fSrugrat 	}
3494e93fb0fSrugrat 
3504e93fb0fSrugrat 	data16 = pci_config_get16(pci_conf, PCI_CONF_COMM);
3514e93fb0fSrugrat 	if (data16 & PCI_COMM_IO)
3524e93fb0fSrugrat 		softc->flags |= VGATEXT_FLAG_CONSOLE;
3534e93fb0fSrugrat 
3544e93fb0fSrugrat 	pci_config_teardown(&pci_conf);
3554e93fb0fSrugrat 
3564e93fb0fSrugrat 	/* If IO not enabled or ISA/EISA, just return */
3574e93fb0fSrugrat 	if (!(softc->flags & VGATEXT_FLAG_CONSOLE) || !pci_pcie_bus)
3584e93fb0fSrugrat 		return;
3594e93fb0fSrugrat 
3604e93fb0fSrugrat 	/*
3614e93fb0fSrugrat 	 * Check for VGA Enable in the Bridge Control register for all
3624e93fb0fSrugrat 	 * PCI/PCIEX parents.  If not set all the way up the chain,
3634e93fb0fSrugrat 	 * this cannot be the boot console.
3644e93fb0fSrugrat 	 */
3654e93fb0fSrugrat 
3664e93fb0fSrugrat 	pdevi = ddi_get_parent(devi);
3674e93fb0fSrugrat 	while (pdevi) {
3684e93fb0fSrugrat 		int	error;
3694e93fb0fSrugrat 		ddi_acc_handle_t ppci_conf;
3704e93fb0fSrugrat 		char	*parent_type = NULL;
3714e93fb0fSrugrat 
3724e93fb0fSrugrat 		error = ddi_prop_lookup_string(DDI_DEV_T_ANY, pdevi,
3734e93fb0fSrugrat 		    DDI_PROP_DONTPASS, "device_type", &parent_type);
3744e93fb0fSrugrat 		if (error != DDI_SUCCESS) {
3754e93fb0fSrugrat 			return;
3764e93fb0fSrugrat 		}
3774e93fb0fSrugrat 
3784e93fb0fSrugrat 		/* Verify still on the PCI/PCIEX parent tree */
3794e93fb0fSrugrat 		if (!STREQ(parent_type, "pci") &&
3804e93fb0fSrugrat 		    !STREQ(parent_type, "pciex")) {
3814e93fb0fSrugrat 			ddi_prop_free(parent_type);
3824e93fb0fSrugrat 			return;
3834e93fb0fSrugrat 		}
3844e93fb0fSrugrat 
3854e93fb0fSrugrat 		ddi_prop_free(parent_type);
3864e93fb0fSrugrat 		parent_type = NULL;
3874e93fb0fSrugrat 
3884e93fb0fSrugrat 		if (pci_config_setup(pdevi, &ppci_conf) != DDI_SUCCESS) {
3894e93fb0fSrugrat 			/* No registers on root node, done with check */
3904e93fb0fSrugrat 			return;
3914e93fb0fSrugrat 		}
3924e93fb0fSrugrat 
3934e93fb0fSrugrat 		data16 = pci_config_get16(ppci_conf, PCI_BCNF_BCNTRL);
3944e93fb0fSrugrat 		pci_config_teardown(&ppci_conf);
3954e93fb0fSrugrat 
3964e93fb0fSrugrat 		if (!(data16 & PCI_BCNF_BCNTRL_VGA_ENABLE)) {
3974e93fb0fSrugrat 			softc->flags &= ~VGATEXT_FLAG_CONSOLE;
3984e93fb0fSrugrat 			return;
3994e93fb0fSrugrat 		}
4004e93fb0fSrugrat 
4014e93fb0fSrugrat 		pdevi = ddi_get_parent(pdevi);
4024e93fb0fSrugrat 	}
4034e93fb0fSrugrat }
4044e93fb0fSrugrat 
4057c478bd9Sstevel@tonic-gate static int
4067c478bd9Sstevel@tonic-gate vgatext_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
4077c478bd9Sstevel@tonic-gate {
4087c478bd9Sstevel@tonic-gate 	struct vgatext_softc *softc;
4097c478bd9Sstevel@tonic-gate 	int	unit = ddi_get_instance(devi);
4107c478bd9Sstevel@tonic-gate 	int	error;
4117c478bd9Sstevel@tonic-gate 	char	*parent_type = NULL;
4127c478bd9Sstevel@tonic-gate 	int	reg_rnumber;
41360405de4Skz151634 	int	agpm = 0;
4147c478bd9Sstevel@tonic-gate 	off_t	reg_offset;
4157c478bd9Sstevel@tonic-gate 	off_t	mem_offset;
4167c478bd9Sstevel@tonic-gate 	char	buf[80], *cons;
4174e93fb0fSrugrat 	int pci_pcie_bus = 0;
4187c478bd9Sstevel@tonic-gate 
4197c478bd9Sstevel@tonic-gate 
4207c478bd9Sstevel@tonic-gate 	switch (cmd) {
4217c478bd9Sstevel@tonic-gate 	case DDI_ATTACH:
4227c478bd9Sstevel@tonic-gate 		break;
4237c478bd9Sstevel@tonic-gate 
4247c478bd9Sstevel@tonic-gate 	case DDI_RESUME:
425*2df1fe9cSrandyf 		/*
426*2df1fe9cSrandyf 		 * Though vgatext doesn't really know how to resume
427*2df1fe9cSrandyf 		 * on a generic framebuffer, we should succeed, as
428*2df1fe9cSrandyf 		 * it is far better to have no console, than potentiall
429*2df1fe9cSrandyf 		 * have no machine.
430*2df1fe9cSrandyf 		 */
4317c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
4327c478bd9Sstevel@tonic-gate 	default:
4337c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
4347c478bd9Sstevel@tonic-gate 	}
4357c478bd9Sstevel@tonic-gate 
4367c478bd9Sstevel@tonic-gate 	/* DDI_ATTACH */
4377c478bd9Sstevel@tonic-gate 
4387c478bd9Sstevel@tonic-gate 	/* Allocate softc struct */
4397c478bd9Sstevel@tonic-gate 	if (ddi_soft_state_zalloc(vgatext_softc_head, unit) != DDI_SUCCESS) {
4407c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
4417c478bd9Sstevel@tonic-gate 	}
4427c478bd9Sstevel@tonic-gate 	softc = getsoftc(unit);
4437c478bd9Sstevel@tonic-gate 
4447c478bd9Sstevel@tonic-gate 	/* link it in */
4457c478bd9Sstevel@tonic-gate 	softc->devi = devi;
4467c478bd9Sstevel@tonic-gate 	ddi_set_driver_private(devi, softc);
4477c478bd9Sstevel@tonic-gate 
4487c478bd9Sstevel@tonic-gate 	softc->polledio.arg = (struct vis_polledio_arg *)softc;
4497c478bd9Sstevel@tonic-gate 	softc->polledio.display = vgatext_polled_display;
4507c478bd9Sstevel@tonic-gate 	softc->polledio.copy = vgatext_polled_copy;
4517c478bd9Sstevel@tonic-gate 	softc->polledio.cursor = vgatext_polled_cursor;
4527c478bd9Sstevel@tonic-gate 
4537c478bd9Sstevel@tonic-gate 	error = ddi_prop_lookup_string(DDI_DEV_T_ANY, ddi_get_parent(devi),
4547c478bd9Sstevel@tonic-gate 	    DDI_PROP_DONTPASS, "device_type", &parent_type);
4557c478bd9Sstevel@tonic-gate 	if (error != DDI_SUCCESS) {
4567c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, MYNAME ": can't determine parent type.");
4577c478bd9Sstevel@tonic-gate 		goto fail;
4587c478bd9Sstevel@tonic-gate 	}
4597c478bd9Sstevel@tonic-gate 
4607c478bd9Sstevel@tonic-gate 	if (STREQ(parent_type, "isa") || STREQ(parent_type, "eisa")) {
4617c478bd9Sstevel@tonic-gate 		reg_rnumber = vgatext_get_isa_reg_index(devi, 1, VGA_REG_ADDR,
4627c478bd9Sstevel@tonic-gate 		    &reg_offset);
4637c478bd9Sstevel@tonic-gate 		if (reg_rnumber < 0) {
4647c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN,
4657c478bd9Sstevel@tonic-gate 			    MYNAME ": can't find reg entry for registers");
4667ae111d4Sms148562 			error = DDI_FAILURE;
4677c478bd9Sstevel@tonic-gate 			goto fail;
4687c478bd9Sstevel@tonic-gate 		}
4697c478bd9Sstevel@tonic-gate 		softc->fb_regno = vgatext_get_isa_reg_index(devi, 0,
4707c478bd9Sstevel@tonic-gate 		    VGA_MEM_ADDR, &mem_offset);
4717c478bd9Sstevel@tonic-gate 		if (softc->fb_regno < 0) {
4727c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN,
4737c478bd9Sstevel@tonic-gate 			    MYNAME ": can't find reg entry for memory");
4747ae111d4Sms148562 			error = DDI_FAILURE;
4757c478bd9Sstevel@tonic-gate 			goto fail;
4767c478bd9Sstevel@tonic-gate 		}
47770025d76Sjohnny 	} else if (STREQ(parent_type, "pci") || STREQ(parent_type, "pciex")) {
4784e93fb0fSrugrat 		pci_pcie_bus = 1;
4797c478bd9Sstevel@tonic-gate 		reg_rnumber = vgatext_get_pci_reg_index(devi,
4807c478bd9Sstevel@tonic-gate 		    PCI_REG_ADDR_M|PCI_REG_REL_M,
4817c478bd9Sstevel@tonic-gate 		    PCI_ADDR_IO|PCI_RELOCAT_B, VGA_REG_ADDR,
4827c478bd9Sstevel@tonic-gate 		    &reg_offset);
4837c478bd9Sstevel@tonic-gate 		if (reg_rnumber < 0) {
4847c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN,
4857c478bd9Sstevel@tonic-gate 			    MYNAME ": can't find reg entry for registers");
4867ae111d4Sms148562 			error = DDI_FAILURE;
4877c478bd9Sstevel@tonic-gate 			goto fail;
4887c478bd9Sstevel@tonic-gate 		}
4897c478bd9Sstevel@tonic-gate 		softc->fb_regno = vgatext_get_pci_reg_index(devi,
4907c478bd9Sstevel@tonic-gate 		    PCI_REG_ADDR_M|PCI_REG_REL_M,
4917c478bd9Sstevel@tonic-gate 		    PCI_ADDR_MEM32|PCI_RELOCAT_B, VGA_MEM_ADDR,
4927c478bd9Sstevel@tonic-gate 		    &mem_offset);
4937c478bd9Sstevel@tonic-gate 		if (softc->fb_regno < 0) {
4947c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN,
4957c478bd9Sstevel@tonic-gate 			    MYNAME ": can't find reg entry for memory");
4967ae111d4Sms148562 			error = DDI_FAILURE;
4977c478bd9Sstevel@tonic-gate 			goto fail;
4987c478bd9Sstevel@tonic-gate 		}
49960405de4Skz151634 		agpm = 1;	/* should have AGP master support */
5007c478bd9Sstevel@tonic-gate 	} else {
5017c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, MYNAME ": unknown parent type \"%s\".",
5027c478bd9Sstevel@tonic-gate 		    parent_type);
5037ae111d4Sms148562 		error = DDI_FAILURE;
5047c478bd9Sstevel@tonic-gate 		goto fail;
5057c478bd9Sstevel@tonic-gate 	}
5067c478bd9Sstevel@tonic-gate 	ddi_prop_free(parent_type);
5077c478bd9Sstevel@tonic-gate 	parent_type = NULL;
5087c478bd9Sstevel@tonic-gate 
5097c478bd9Sstevel@tonic-gate 	error = ddi_regs_map_setup(devi, reg_rnumber,
5107c478bd9Sstevel@tonic-gate 	    (caddr_t *)&softc->regs.addr, reg_offset, VGA_REG_SIZE,
5117c478bd9Sstevel@tonic-gate 	    &dev_attr, &softc->regs.handle);
5127c478bd9Sstevel@tonic-gate 	if (error != DDI_SUCCESS)
5137c478bd9Sstevel@tonic-gate 		goto fail;
5147c478bd9Sstevel@tonic-gate 	softc->regs.mapped = B_TRUE;
5157c478bd9Sstevel@tonic-gate 
5167c478bd9Sstevel@tonic-gate 	softc->fb_size = VGA_MEM_SIZE;
5177c478bd9Sstevel@tonic-gate 
5187c478bd9Sstevel@tonic-gate 	error = ddi_regs_map_setup(devi, softc->fb_regno,
5197c478bd9Sstevel@tonic-gate 	    (caddr_t *)&softc->fb.addr,
5207c478bd9Sstevel@tonic-gate 	    mem_offset, softc->fb_size,
5217c478bd9Sstevel@tonic-gate 	    &dev_attr, &softc->fb.handle);
5227c478bd9Sstevel@tonic-gate 	if (error != DDI_SUCCESS)
5237c478bd9Sstevel@tonic-gate 		goto fail;
5247c478bd9Sstevel@tonic-gate 	softc->fb.mapped = B_TRUE;
5257c478bd9Sstevel@tonic-gate 
5264ab75253Smrj 	if (ddi_get8(softc->regs.handle,
5277c478bd9Sstevel@tonic-gate 	    softc->regs.addr + VGA_MISC_R) & VGA_MISC_IOA_SEL)
5287c478bd9Sstevel@tonic-gate 		softc->text_base = (caddr_t)softc->fb.addr + VGA_COLOR_BASE;
5297c478bd9Sstevel@tonic-gate 	else
5307c478bd9Sstevel@tonic-gate 		softc->text_base = (caddr_t)softc->fb.addr + VGA_MONO_BASE;
5317c478bd9Sstevel@tonic-gate 	softc->current_base = softc->text_base;
5327c478bd9Sstevel@tonic-gate 
5337c478bd9Sstevel@tonic-gate 	(void) sprintf(buf, "text-%d", unit);
5347c478bd9Sstevel@tonic-gate 	error = ddi_create_minor_node(devi, buf, S_IFCHR,
5357c478bd9Sstevel@tonic-gate 	    INST2NODE1(unit), DDI_NT_DISPLAY, NULL);
5367c478bd9Sstevel@tonic-gate 	if (error != DDI_SUCCESS)
5377c478bd9Sstevel@tonic-gate 		goto fail;
5387c478bd9Sstevel@tonic-gate 
5397c478bd9Sstevel@tonic-gate 	error = ddi_prop_create(makedevice(DDI_MAJOR_T_UNKNOWN, unit),
5407c478bd9Sstevel@tonic-gate 	    devi, DDI_PROP_CANSLEEP, DDI_KERNEL_IOCTL, NULL, 0);
5417c478bd9Sstevel@tonic-gate 	if (error != DDI_SUCCESS)
5427c478bd9Sstevel@tonic-gate 		goto fail;
5437c478bd9Sstevel@tonic-gate 
5447c478bd9Sstevel@tonic-gate 	if (ddi_prop_lookup_string(DDI_DEV_T_ANY, ddi_root_node(),
5457c478bd9Sstevel@tonic-gate 	    DDI_PROP_DONTPASS, "console", &cons) == DDI_SUCCESS) {
5467c478bd9Sstevel@tonic-gate 		if (strcmp(cons, "graphics") == 0) {
5477c478bd9Sstevel@tonic-gate 			happyface_boot = 1;
5487c478bd9Sstevel@tonic-gate 			vgatext_silent = 1;
5497c478bd9Sstevel@tonic-gate 		}
5507c478bd9Sstevel@tonic-gate 		ddi_prop_free(cons);
5517c478bd9Sstevel@tonic-gate 	}
5527c478bd9Sstevel@tonic-gate 
5534e93fb0fSrugrat 	vgatext_check_for_console(devi, softc, pci_pcie_bus);
5544e93fb0fSrugrat 
5557c478bd9Sstevel@tonic-gate 	/* only do this if not in graphics mode */
5564e93fb0fSrugrat 	if ((vgatext_silent == 0) && (VGATEXT_IS_CONSOLE(softc))) {
5577c478bd9Sstevel@tonic-gate 		vgatext_init(softc);
5587c478bd9Sstevel@tonic-gate 		vgatext_save_colormap(softc);
5597c478bd9Sstevel@tonic-gate 	}
5607c478bd9Sstevel@tonic-gate 
56160405de4Skz151634 	if (agpm != 0) { /* try AGP master attach */
56260405de4Skz151634 		/* setup mapping for PCI config space access */
56360405de4Skz151634 		softc->pci_cfg_hdlp = (ddi_acc_handle_t *)
56460405de4Skz151634 		    kmem_zalloc(sizeof (ddi_acc_handle_t), KM_SLEEP);
56560405de4Skz151634 		error = pci_config_setup(devi, softc->pci_cfg_hdlp);
56660405de4Skz151634 		if (error != DDI_SUCCESS) {
56760405de4Skz151634 			cmn_err(CE_WARN, "vgatext_attach: "
56860405de4Skz151634 			    "PCI configuration space setup failed");
56960405de4Skz151634 			goto fail;
5707c478bd9Sstevel@tonic-gate 		}
57160405de4Skz151634 
57260405de4Skz151634 		(void) agpmaster_attach(softc->devi, &softc->agp_master,
57360405de4Skz151634 		    *softc->pci_cfg_hdlp, INST2NODE2(unit));
5747c478bd9Sstevel@tonic-gate 	}
5757c478bd9Sstevel@tonic-gate 
5767c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
5777c478bd9Sstevel@tonic-gate 
5787c478bd9Sstevel@tonic-gate fail:
5797c478bd9Sstevel@tonic-gate 	if (parent_type != NULL)
5807c478bd9Sstevel@tonic-gate 		ddi_prop_free(parent_type);
5817c478bd9Sstevel@tonic-gate 	(void) vgatext_detach(devi, DDI_DETACH);
5827c478bd9Sstevel@tonic-gate 	return (error);
5837c478bd9Sstevel@tonic-gate }
5847c478bd9Sstevel@tonic-gate 
5857c478bd9Sstevel@tonic-gate static int
5867c478bd9Sstevel@tonic-gate vgatext_detach(dev_info_t *devi, ddi_detach_cmd_t cmd)
5877c478bd9Sstevel@tonic-gate {
5887c478bd9Sstevel@tonic-gate 	int instance = ddi_get_instance(devi);
5897c478bd9Sstevel@tonic-gate 	struct vgatext_softc *softc = getsoftc(instance);
5907c478bd9Sstevel@tonic-gate 
5917c478bd9Sstevel@tonic-gate 
5927c478bd9Sstevel@tonic-gate 	switch (cmd) {
5937c478bd9Sstevel@tonic-gate 	case DDI_DETACH:
5947c478bd9Sstevel@tonic-gate 		if (softc->agp_master != NULL) { /* agp initiated */
59560405de4Skz151634 			agpmaster_detach(&softc->agp_master);
59660405de4Skz151634 			pci_config_teardown(softc->pci_cfg_hdlp);
5977c478bd9Sstevel@tonic-gate 		}
5987c478bd9Sstevel@tonic-gate 
5997c478bd9Sstevel@tonic-gate 		if (softc->fb.mapped)
6007c478bd9Sstevel@tonic-gate 			ddi_regs_map_free(&softc->fb.handle);
6017c478bd9Sstevel@tonic-gate 		if (softc->regs.mapped)
6027c478bd9Sstevel@tonic-gate 			ddi_regs_map_free(&softc->regs.handle);
6037c478bd9Sstevel@tonic-gate 		ddi_remove_minor_node(devi, NULL);
6047c478bd9Sstevel@tonic-gate 		(void) ddi_soft_state_free(vgatext_softc_head, instance);
6057c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
6067c478bd9Sstevel@tonic-gate 
607*2df1fe9cSrandyf 	case DDI_SUSPEND:
608*2df1fe9cSrandyf 		/*
609*2df1fe9cSrandyf 		 * This is a generic VGA file, and therefore, cannot
610*2df1fe9cSrandyf 		 * understand how to deal with suspend and resume on
611*2df1fe9cSrandyf 		 * a generic interface.  So we fail any attempt to
612*2df1fe9cSrandyf 		 * suspend.  At some point in the future, we might use
613*2df1fe9cSrandyf 		 * this as an entrypoint for display drivers and this
614*2df1fe9cSrandyf 		 * assumption may change.
615*2df1fe9cSrandyf 		 *
616*2df1fe9cSrandyf 		 * However, from a platform development perspective,
617*2df1fe9cSrandyf 		 * it is important that this driver suspend if a
618*2df1fe9cSrandyf 		 * developer is using a serial console and/or working
619*2df1fe9cSrandyf 		 * on a framebuffer driver that will support suspend
620*2df1fe9cSrandyf 		 * and resume.  Therefore, we have this module tunable
621*2df1fe9cSrandyf 		 * (purposely using a long name) that will allow for
622*2df1fe9cSrandyf 		 * suspend it it is set.  Otherwise we fail.
623*2df1fe9cSrandyf 		 */
624*2df1fe9cSrandyf 		if (vgatext_force_suspend != 0)
625*2df1fe9cSrandyf 			return (DDI_SUCCESS);
626*2df1fe9cSrandyf 		else
627*2df1fe9cSrandyf 			return (DDI_FAILURE);
628*2df1fe9cSrandyf 
6297c478bd9Sstevel@tonic-gate 	default:
6307c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "vgatext_detach: unknown cmd 0x%x\n", cmd);
6317c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
6327c478bd9Sstevel@tonic-gate 	}
6337c478bd9Sstevel@tonic-gate }
6347c478bd9Sstevel@tonic-gate 
6357c478bd9Sstevel@tonic-gate /*ARGSUSED*/
6367c478bd9Sstevel@tonic-gate static int
6377c478bd9Sstevel@tonic-gate vgatext_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
6387c478bd9Sstevel@tonic-gate {
6397c478bd9Sstevel@tonic-gate 	dev_t dev;
6407c478bd9Sstevel@tonic-gate 	int error;
6417c478bd9Sstevel@tonic-gate 	int instance;
6427c478bd9Sstevel@tonic-gate 	struct vgatext_softc *softc;
6437c478bd9Sstevel@tonic-gate 
6447c478bd9Sstevel@tonic-gate 	error = DDI_SUCCESS;
6457c478bd9Sstevel@tonic-gate 
6467c478bd9Sstevel@tonic-gate 	dev = (dev_t)arg;
6477c478bd9Sstevel@tonic-gate 	instance = DEV2INST(dev);
6487c478bd9Sstevel@tonic-gate 	softc = getsoftc(instance);
6497c478bd9Sstevel@tonic-gate 
6507c478bd9Sstevel@tonic-gate 	switch (infocmd) {
6517c478bd9Sstevel@tonic-gate 	case DDI_INFO_DEVT2DEVINFO:
6527c478bd9Sstevel@tonic-gate 		if (softc == NULL || softc->devi == NULL) {
6537c478bd9Sstevel@tonic-gate 			error = DDI_FAILURE;
6547c478bd9Sstevel@tonic-gate 		} else {
6557c478bd9Sstevel@tonic-gate 			*result = (void *) softc->devi;
6567c478bd9Sstevel@tonic-gate 			error = DDI_SUCCESS;
6577c478bd9Sstevel@tonic-gate 		}
6587c478bd9Sstevel@tonic-gate 		break;
6597c478bd9Sstevel@tonic-gate 	case DDI_INFO_DEVT2INSTANCE:
6607c478bd9Sstevel@tonic-gate 		*result = (void *)(uintptr_t)instance;
6617c478bd9Sstevel@tonic-gate 		error = DDI_SUCCESS;
6627c478bd9Sstevel@tonic-gate 		break;
6637c478bd9Sstevel@tonic-gate 	default:
6647c478bd9Sstevel@tonic-gate 		error = DDI_FAILURE;
6657c478bd9Sstevel@tonic-gate 		break;
6667c478bd9Sstevel@tonic-gate 	}
6677c478bd9Sstevel@tonic-gate 	return (error);
6687c478bd9Sstevel@tonic-gate }
6697c478bd9Sstevel@tonic-gate 
6707c478bd9Sstevel@tonic-gate 
6717c478bd9Sstevel@tonic-gate /*ARGSUSED*/
6727c478bd9Sstevel@tonic-gate static int
6737c478bd9Sstevel@tonic-gate vgatext_open(dev_t *devp, int flag, int otyp, cred_t *cred)
6747c478bd9Sstevel@tonic-gate {
6757c478bd9Sstevel@tonic-gate 	struct vgatext_softc *softc = getsoftc(DEV2INST(*devp));
6767c478bd9Sstevel@tonic-gate 
6777c478bd9Sstevel@tonic-gate 	if (softc == NULL || otyp == OTYP_BLK)
6787c478bd9Sstevel@tonic-gate 		return (ENXIO);
6797c478bd9Sstevel@tonic-gate 
6807c478bd9Sstevel@tonic-gate 	return (0);
6817c478bd9Sstevel@tonic-gate }
6827c478bd9Sstevel@tonic-gate 
6837c478bd9Sstevel@tonic-gate /*ARGSUSED*/
6847c478bd9Sstevel@tonic-gate static int
6857c478bd9Sstevel@tonic-gate vgatext_close(dev_t devp, int flag, int otyp, cred_t *cred)
6867c478bd9Sstevel@tonic-gate {
6877c478bd9Sstevel@tonic-gate 	return (0);
6887c478bd9Sstevel@tonic-gate }
6897c478bd9Sstevel@tonic-gate 
6907c478bd9Sstevel@tonic-gate static int
69160405de4Skz151634 do_gfx_ioctl(int cmd, intptr_t data, int mode, struct vgatext_softc *softc)
6927c478bd9Sstevel@tonic-gate {
69360405de4Skz151634 	static char kernel_only[] =
69460405de4Skz151634 	    "do_gfx_ioctl: %s is a kernel only ioctl";
6957c478bd9Sstevel@tonic-gate 	int err;
6967c478bd9Sstevel@tonic-gate 	int kd_mode;
6977c478bd9Sstevel@tonic-gate 
6987c478bd9Sstevel@tonic-gate 	switch (cmd) {
6997c478bd9Sstevel@tonic-gate 	case KDSETMODE:
7007c478bd9Sstevel@tonic-gate 		return (vgatext_kdsetmode(softc, (int)data));
7017c478bd9Sstevel@tonic-gate 
7027c478bd9Sstevel@tonic-gate 	case KDGETMODE:
7037c478bd9Sstevel@tonic-gate 		kd_mode = softc->mode;
7047c478bd9Sstevel@tonic-gate 		if (ddi_copyout(&kd_mode, (void *)data, sizeof (int), mode))
7057c478bd9Sstevel@tonic-gate 			return (EFAULT);
7067c478bd9Sstevel@tonic-gate 		break;
7077c478bd9Sstevel@tonic-gate 
7087c478bd9Sstevel@tonic-gate 	case VIS_GETIDENTIFIER:
7097c478bd9Sstevel@tonic-gate 		if (ddi_copyout(&text_ident, (void *)data,
7107c478bd9Sstevel@tonic-gate 		    sizeof (struct vis_identifier), mode))
7117c478bd9Sstevel@tonic-gate 			return (EFAULT);
7127c478bd9Sstevel@tonic-gate 		break;
7137c478bd9Sstevel@tonic-gate 
7147c478bd9Sstevel@tonic-gate 	case VIS_DEVINIT:
7157c478bd9Sstevel@tonic-gate 
7167c478bd9Sstevel@tonic-gate 		if (!(mode & FKIOCTL)) {
7177c478bd9Sstevel@tonic-gate 			cmn_err(CE_CONT, kernel_only, "VIS_DEVINIT");
7187c478bd9Sstevel@tonic-gate 			return (ENXIO);
7197c478bd9Sstevel@tonic-gate 		}
7207c478bd9Sstevel@tonic-gate 
7217c478bd9Sstevel@tonic-gate 		err = vgatext_devinit(softc, (struct vis_devinit *)data);
7227c478bd9Sstevel@tonic-gate 		if (err != 0) {
7237c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN,
7247c478bd9Sstevel@tonic-gate 			    "vgatext_ioctl:  could not initialize console");
7257c478bd9Sstevel@tonic-gate 			return (err);
7267c478bd9Sstevel@tonic-gate 		}
7277c478bd9Sstevel@tonic-gate 		break;
7287c478bd9Sstevel@tonic-gate 
7297c478bd9Sstevel@tonic-gate 	case VIS_CONSCOPY:	/* move */
7307c478bd9Sstevel@tonic-gate 		{
7317c478bd9Sstevel@tonic-gate 		struct vis_conscopy pma;
7327c478bd9Sstevel@tonic-gate 
7337c478bd9Sstevel@tonic-gate 		if (ddi_copyin((void *)data, &pma,
7347c478bd9Sstevel@tonic-gate 		    sizeof (struct vis_conscopy), mode))
7357c478bd9Sstevel@tonic-gate 			return (EFAULT);
7367c478bd9Sstevel@tonic-gate 
7377c478bd9Sstevel@tonic-gate 		vgatext_cons_copy(softc, &pma);
7387c478bd9Sstevel@tonic-gate 		break;
7397c478bd9Sstevel@tonic-gate 		}
7407c478bd9Sstevel@tonic-gate 
7417c478bd9Sstevel@tonic-gate 	case VIS_CONSDISPLAY:	/* display */
7427c478bd9Sstevel@tonic-gate 		{
7437c478bd9Sstevel@tonic-gate 		struct vis_consdisplay display_request;
7447c478bd9Sstevel@tonic-gate 
7457c478bd9Sstevel@tonic-gate 		if (ddi_copyin((void *)data, &display_request,
7467c478bd9Sstevel@tonic-gate 		    sizeof (display_request), mode))
7477c478bd9Sstevel@tonic-gate 			return (EFAULT);
7487c478bd9Sstevel@tonic-gate 
7497c478bd9Sstevel@tonic-gate 		vgatext_cons_display(softc, &display_request);
7507c478bd9Sstevel@tonic-gate 		break;
7517c478bd9Sstevel@tonic-gate 		}
7527c478bd9Sstevel@tonic-gate 
7537c478bd9Sstevel@tonic-gate 	case VIS_CONSCURSOR:
7547c478bd9Sstevel@tonic-gate 		{
7557c478bd9Sstevel@tonic-gate 		struct vis_conscursor cursor_request;
7567c478bd9Sstevel@tonic-gate 
7577c478bd9Sstevel@tonic-gate 		if (ddi_copyin((void *)data, &cursor_request,
7587c478bd9Sstevel@tonic-gate 		    sizeof (cursor_request), mode))
7597c478bd9Sstevel@tonic-gate 			return (EFAULT);
7607c478bd9Sstevel@tonic-gate 
7617c478bd9Sstevel@tonic-gate 		vgatext_cons_cursor(softc, &cursor_request);
7627c478bd9Sstevel@tonic-gate 
7637c478bd9Sstevel@tonic-gate 		if (cursor_request.action == VIS_GET_CURSOR &&
7647c478bd9Sstevel@tonic-gate 		    ddi_copyout(&cursor_request, (void *)data,
7657c478bd9Sstevel@tonic-gate 		    sizeof (cursor_request), mode))
7667c478bd9Sstevel@tonic-gate 			return (EFAULT);
7677c478bd9Sstevel@tonic-gate 		break;
7687c478bd9Sstevel@tonic-gate 		}
7697c478bd9Sstevel@tonic-gate 
7707c478bd9Sstevel@tonic-gate 	case VIS_GETCMAP:
7717c478bd9Sstevel@tonic-gate 	case VIS_PUTCMAP:
7727c478bd9Sstevel@tonic-gate 	case FBIOPUTCMAP:
7737c478bd9Sstevel@tonic-gate 	case FBIOGETCMAP:
7747c478bd9Sstevel@tonic-gate 		/*
7757c478bd9Sstevel@tonic-gate 		 * At the moment, text mode is not considered to have
7767c478bd9Sstevel@tonic-gate 		 * a color map.
7777c478bd9Sstevel@tonic-gate 		 */
7787c478bd9Sstevel@tonic-gate 		return (EINVAL);
7797c478bd9Sstevel@tonic-gate 
7807c478bd9Sstevel@tonic-gate 	case FBIOGATTR:
7817c478bd9Sstevel@tonic-gate 		if (copyout(&vgatext_attr, (void *)data,
7827c478bd9Sstevel@tonic-gate 		    sizeof (struct fbgattr)))
7837c478bd9Sstevel@tonic-gate 			return (EFAULT);
7847c478bd9Sstevel@tonic-gate 		break;
7857c478bd9Sstevel@tonic-gate 
7867c478bd9Sstevel@tonic-gate 	case FBIOGTYPE:
7877c478bd9Sstevel@tonic-gate 		if (copyout(&vgatext_attr.fbtype, (void *)data,
7887c478bd9Sstevel@tonic-gate 		    sizeof (struct fbtype)))
7897c478bd9Sstevel@tonic-gate 			return (EFAULT);
7907c478bd9Sstevel@tonic-gate 		break;
7917c478bd9Sstevel@tonic-gate 
7927c478bd9Sstevel@tonic-gate 	default:
7937c478bd9Sstevel@tonic-gate 		return (ENXIO);
7947c478bd9Sstevel@tonic-gate 	}
7957c478bd9Sstevel@tonic-gate 	return (0);
7967c478bd9Sstevel@tonic-gate }
7977c478bd9Sstevel@tonic-gate 
79860405de4Skz151634 
79960405de4Skz151634 /*ARGSUSED*/
80060405de4Skz151634 static int
80160405de4Skz151634 vgatext_ioctl(
80260405de4Skz151634     dev_t dev,
80360405de4Skz151634     int cmd,
80460405de4Skz151634     intptr_t data,
80560405de4Skz151634     int mode,
80660405de4Skz151634     cred_t *cred,
80760405de4Skz151634     int *rval)
80860405de4Skz151634 {
80960405de4Skz151634 	struct vgatext_softc *softc = getsoftc(DEV2INST(dev));
81060405de4Skz151634 	int err;
81160405de4Skz151634 
81260405de4Skz151634 	switch (DEV2MINOR(dev)) {
81360405de4Skz151634 	case GFX_MINOR:
81460405de4Skz151634 		err = do_gfx_ioctl(cmd, data, mode, softc);
81560405de4Skz151634 		break;
81660405de4Skz151634 
81760405de4Skz151634 	case AGPMASTER_MINOR:
81860405de4Skz151634 		err = agpmaster_ioctl(dev, cmd, data, mode, cred, rval,
81960405de4Skz151634 		    softc->agp_master);
82060405de4Skz151634 		break;
82160405de4Skz151634 
82260405de4Skz151634 	default:
82360405de4Skz151634 		/* not a valid minor node */
82460405de4Skz151634 		return (EBADF);
82560405de4Skz151634 	}
82660405de4Skz151634 	return (err);
82760405de4Skz151634 
82860405de4Skz151634 }
82960405de4Skz151634 
8307c478bd9Sstevel@tonic-gate static int
8317c478bd9Sstevel@tonic-gate vgatext_kdsetmode(struct vgatext_softc *softc, int mode)
8327c478bd9Sstevel@tonic-gate {
8337c478bd9Sstevel@tonic-gate 	int i;
8347c478bd9Sstevel@tonic-gate 
8354e93fb0fSrugrat 	if ((mode == softc->mode) || (!VGATEXT_IS_CONSOLE(softc)))
8367c478bd9Sstevel@tonic-gate 		return (0);
8377c478bd9Sstevel@tonic-gate 
8387c478bd9Sstevel@tonic-gate 	switch (mode) {
8397c478bd9Sstevel@tonic-gate 	case KD_TEXT:
8407c478bd9Sstevel@tonic-gate 		vgatext_init(softc);
8417c478bd9Sstevel@tonic-gate 		for (i = 0; i < sizeof (softc->shadow); i++) {
8427c478bd9Sstevel@tonic-gate 			softc->text_base[i] = softc->shadow[i];
8437c478bd9Sstevel@tonic-gate 		}
8447c478bd9Sstevel@tonic-gate 		softc->current_base = softc->text_base;
8457c478bd9Sstevel@tonic-gate 		if (softc->cursor.visible) {
8467c478bd9Sstevel@tonic-gate 			vgatext_set_cursor(softc,
8477c478bd9Sstevel@tonic-gate 			    softc->cursor.row, softc->cursor.col);
8487c478bd9Sstevel@tonic-gate 		}
8497c478bd9Sstevel@tonic-gate 		vgatext_restore_colormap(softc);
8507c478bd9Sstevel@tonic-gate 		break;
8517c478bd9Sstevel@tonic-gate 
8527c478bd9Sstevel@tonic-gate 	case KD_GRAPHICS:
8537c478bd9Sstevel@tonic-gate 		if (vgatext_silent == 1) {
8547c478bd9Sstevel@tonic-gate 			extern void progressbar_stop(void);
8557c478bd9Sstevel@tonic-gate 
8567c478bd9Sstevel@tonic-gate 			vgatext_silent = 0;
8577c478bd9Sstevel@tonic-gate 			progressbar_stop();
8587c478bd9Sstevel@tonic-gate 		}
8597c478bd9Sstevel@tonic-gate 		for (i = 0; i < sizeof (softc->shadow); i++) {
8607c478bd9Sstevel@tonic-gate 			softc->shadow[i] = softc->text_base[i];
8617c478bd9Sstevel@tonic-gate 		}
8627c478bd9Sstevel@tonic-gate 		softc->current_base = softc->shadow;
8637c478bd9Sstevel@tonic-gate #if	defined(USE_BORDERS)
8647c478bd9Sstevel@tonic-gate 		vgatext_init_graphics(softc);
8657c478bd9Sstevel@tonic-gate #endif
8667c478bd9Sstevel@tonic-gate 		break;
8677c478bd9Sstevel@tonic-gate 
8687c478bd9Sstevel@tonic-gate 	default:
8697c478bd9Sstevel@tonic-gate 		return (EINVAL);
8707c478bd9Sstevel@tonic-gate 	}
8717c478bd9Sstevel@tonic-gate 	softc->mode = mode;
8727c478bd9Sstevel@tonic-gate 	return (0);
8737c478bd9Sstevel@tonic-gate }
8747c478bd9Sstevel@tonic-gate 
8757c478bd9Sstevel@tonic-gate /*ARGSUSED*/
8767c478bd9Sstevel@tonic-gate static int
8777c478bd9Sstevel@tonic-gate vgatext_devmap(dev_t dev, devmap_cookie_t dhp, offset_t off, size_t len,
8787c478bd9Sstevel@tonic-gate 		size_t *maplen, uint_t model)
8797c478bd9Sstevel@tonic-gate {
8807c478bd9Sstevel@tonic-gate 	struct vgatext_softc *softc;
8817c478bd9Sstevel@tonic-gate 	int err;
8827c478bd9Sstevel@tonic-gate 	size_t length;
8837c478bd9Sstevel@tonic-gate 
8847c478bd9Sstevel@tonic-gate 
8857c478bd9Sstevel@tonic-gate 	softc = getsoftc(DEV2INST(dev));
8867c478bd9Sstevel@tonic-gate 	if (softc == NULL) {
8877c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "vgatext: Can't find softstate");
8887c478bd9Sstevel@tonic-gate 		return (-1);
8897c478bd9Sstevel@tonic-gate 	}
8907c478bd9Sstevel@tonic-gate 
8917c478bd9Sstevel@tonic-gate 	if (!(off >= VGA_MMAP_FB_BASE &&
8927c478bd9Sstevel@tonic-gate 	    off < VGA_MMAP_FB_BASE + softc->fb_size)) {
8937c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "vgatext: Can't map offset 0x%llx", off);
8947c478bd9Sstevel@tonic-gate 		return (-1);
8957c478bd9Sstevel@tonic-gate 	}
8967c478bd9Sstevel@tonic-gate 
8977c478bd9Sstevel@tonic-gate 	if (off + len > VGA_MMAP_FB_BASE + softc->fb_size)
8987c478bd9Sstevel@tonic-gate 		length = VGA_MMAP_FB_BASE + softc->fb_size - off;
8997c478bd9Sstevel@tonic-gate 	else
9007c478bd9Sstevel@tonic-gate 		length = len;
9017c478bd9Sstevel@tonic-gate 
9027c478bd9Sstevel@tonic-gate 	if ((err = devmap_devmem_setup(dhp, softc->devi, NULL, softc->fb_regno,
9037c478bd9Sstevel@tonic-gate 	    off - VGA_MMAP_FB_BASE,
9047c478bd9Sstevel@tonic-gate 	    length, PROT_ALL, 0, &dev_attr)) < 0) {
9057c478bd9Sstevel@tonic-gate 		return (err);
9067c478bd9Sstevel@tonic-gate 	}
9077c478bd9Sstevel@tonic-gate 
9087c478bd9Sstevel@tonic-gate 
9097c478bd9Sstevel@tonic-gate 	*maplen = length;
9107c478bd9Sstevel@tonic-gate 	return (0);
9117c478bd9Sstevel@tonic-gate }
9127c478bd9Sstevel@tonic-gate 
9137c478bd9Sstevel@tonic-gate 
9147c478bd9Sstevel@tonic-gate static int
9157c478bd9Sstevel@tonic-gate vgatext_devinit(struct vgatext_softc *softc, struct vis_devinit *data)
9167c478bd9Sstevel@tonic-gate {
9177c478bd9Sstevel@tonic-gate 	/* initialize console instance */
9187c478bd9Sstevel@tonic-gate 	data->version = VIS_CONS_REV;
9197c478bd9Sstevel@tonic-gate 	data->width = TEXT_COLS;
9207c478bd9Sstevel@tonic-gate 	data->height = TEXT_ROWS;
9217c478bd9Sstevel@tonic-gate 	data->linebytes = TEXT_COLS;
9227c478bd9Sstevel@tonic-gate 	data->depth = 4;
9237c478bd9Sstevel@tonic-gate 	data->mode = VIS_TEXT;
9247c478bd9Sstevel@tonic-gate 	data->polledio = &softc->polledio;
9257c478bd9Sstevel@tonic-gate 
9267c478bd9Sstevel@tonic-gate 	return (0);
9277c478bd9Sstevel@tonic-gate }
9287c478bd9Sstevel@tonic-gate 
9297c478bd9Sstevel@tonic-gate /*
9307c478bd9Sstevel@tonic-gate  * display a string on the screen at (row, col)
9317c478bd9Sstevel@tonic-gate  *	 assume it has been cropped to fit.
9327c478bd9Sstevel@tonic-gate  */
9337c478bd9Sstevel@tonic-gate 
9347c478bd9Sstevel@tonic-gate static void
9357c478bd9Sstevel@tonic-gate vgatext_cons_display(struct vgatext_softc *softc, struct vis_consdisplay *da)
9367c478bd9Sstevel@tonic-gate {
9377c478bd9Sstevel@tonic-gate 	unsigned char	*string;
9387c478bd9Sstevel@tonic-gate 	int	i;
9397c478bd9Sstevel@tonic-gate 	unsigned char	attr;
9407c478bd9Sstevel@tonic-gate 	struct cgatext {
9417c478bd9Sstevel@tonic-gate 		unsigned char ch;
9427c478bd9Sstevel@tonic-gate 		unsigned char attr;
9437c478bd9Sstevel@tonic-gate 	};
9447c478bd9Sstevel@tonic-gate 	struct cgatext *addr;
9457c478bd9Sstevel@tonic-gate 
9467c478bd9Sstevel@tonic-gate 	if (vgatext_silent)
9477c478bd9Sstevel@tonic-gate 		return;
9487c478bd9Sstevel@tonic-gate 	/*
9497c478bd9Sstevel@tonic-gate 	 * Sanity checks.  This is a last-ditch effort to avoid damage
9507c478bd9Sstevel@tonic-gate 	 * from brokenness or maliciousness above.
9517c478bd9Sstevel@tonic-gate 	 */
9527c478bd9Sstevel@tonic-gate 	if (da->row < 0 || da->row >= TEXT_ROWS ||
9537c478bd9Sstevel@tonic-gate 	    da->col < 0 || da->col >= TEXT_COLS ||
9547c478bd9Sstevel@tonic-gate 	    da->col + da->width > TEXT_COLS)
9557c478bd9Sstevel@tonic-gate 		return;
9567c478bd9Sstevel@tonic-gate 
9577c478bd9Sstevel@tonic-gate 	/*
9587c478bd9Sstevel@tonic-gate 	 * To be fully general, we should copyin the data.  This is not
9597c478bd9Sstevel@tonic-gate 	 * really relevant for this text-only driver, but a graphical driver
9607c478bd9Sstevel@tonic-gate 	 * should support these ioctls from userland to enable simple
9617c478bd9Sstevel@tonic-gate 	 * system startup graphics.
9627c478bd9Sstevel@tonic-gate 	 */
9637c478bd9Sstevel@tonic-gate 	attr = (solaris_color_to_pc_color[da->bg_color & 0xf] << 4)
9647c478bd9Sstevel@tonic-gate 	    | solaris_color_to_pc_color[da->fg_color & 0xf];
9657c478bd9Sstevel@tonic-gate 	string = da->data;
9667c478bd9Sstevel@tonic-gate 	addr = (struct cgatext *)softc->current_base
9677c478bd9Sstevel@tonic-gate 	    +  (da->row * TEXT_COLS + da->col);
9687c478bd9Sstevel@tonic-gate 	for (i = 0; i < da->width; i++) {
9697c478bd9Sstevel@tonic-gate 		addr->ch = string[i];
9707c478bd9Sstevel@tonic-gate 		addr->attr = attr;
9717c478bd9Sstevel@tonic-gate 		addr++;
9727c478bd9Sstevel@tonic-gate 	}
9737c478bd9Sstevel@tonic-gate }
9747c478bd9Sstevel@tonic-gate 
9757c478bd9Sstevel@tonic-gate static void
9767c478bd9Sstevel@tonic-gate vgatext_polled_display(
9777c478bd9Sstevel@tonic-gate 	struct vis_polledio_arg *arg,
9787c478bd9Sstevel@tonic-gate 	struct vis_consdisplay *da)
9797c478bd9Sstevel@tonic-gate {
9807c478bd9Sstevel@tonic-gate 	vgatext_cons_display((struct vgatext_softc *)arg, da);
9817c478bd9Sstevel@tonic-gate }
9827c478bd9Sstevel@tonic-gate 
9837c478bd9Sstevel@tonic-gate /*
9847c478bd9Sstevel@tonic-gate  * screen-to-screen copy
9857c478bd9Sstevel@tonic-gate  */
9867c478bd9Sstevel@tonic-gate 
9877c478bd9Sstevel@tonic-gate static void
9887c478bd9Sstevel@tonic-gate vgatext_cons_copy(struct vgatext_softc *softc, struct vis_conscopy *ma)
9897c478bd9Sstevel@tonic-gate {
9907c478bd9Sstevel@tonic-gate 	unsigned short	*from;
9917c478bd9Sstevel@tonic-gate 	unsigned short	*to;
9927c478bd9Sstevel@tonic-gate 	int		cnt;
9937c478bd9Sstevel@tonic-gate 	screen_size_t chars_per_row;
9947c478bd9Sstevel@tonic-gate 	unsigned short	*to_row_start;
9957c478bd9Sstevel@tonic-gate 	unsigned short	*from_row_start;
9967c478bd9Sstevel@tonic-gate 	screen_size_t	rows_to_move;
9977c478bd9Sstevel@tonic-gate 	unsigned short	*base;
9987c478bd9Sstevel@tonic-gate 
9997c478bd9Sstevel@tonic-gate 	if (vgatext_silent)
10007c478bd9Sstevel@tonic-gate 		return;
10017c478bd9Sstevel@tonic-gate 
10027c478bd9Sstevel@tonic-gate 	/*
10037c478bd9Sstevel@tonic-gate 	 * Sanity checks.  Note that this is a last-ditch effort to avoid
10047c478bd9Sstevel@tonic-gate 	 * damage caused by broken-ness or maliciousness above.
10057c478bd9Sstevel@tonic-gate 	 */
10067c478bd9Sstevel@tonic-gate 	if (ma->s_col < 0 || ma->s_col >= TEXT_COLS ||
10077c478bd9Sstevel@tonic-gate 	    ma->s_row < 0 || ma->s_row >= TEXT_ROWS ||
10087c478bd9Sstevel@tonic-gate 	    ma->e_col < 0 || ma->e_col >= TEXT_COLS ||
10097c478bd9Sstevel@tonic-gate 	    ma->e_row < 0 || ma->e_row >= TEXT_ROWS ||
10107c478bd9Sstevel@tonic-gate 	    ma->t_col < 0 || ma->t_col >= TEXT_COLS ||
10117c478bd9Sstevel@tonic-gate 	    ma->t_row < 0 || ma->t_row >= TEXT_ROWS ||
10127c478bd9Sstevel@tonic-gate 	    ma->s_col > ma->e_col ||
10137c478bd9Sstevel@tonic-gate 	    ma->s_row > ma->e_row)
10147c478bd9Sstevel@tonic-gate 		return;
10157c478bd9Sstevel@tonic-gate 
10167c478bd9Sstevel@tonic-gate 	/*
10177c478bd9Sstevel@tonic-gate 	 * Remember we're going to copy shorts because each
10187c478bd9Sstevel@tonic-gate 	 * character/attribute pair is 16 bits.
10197c478bd9Sstevel@tonic-gate 	 */
10207c478bd9Sstevel@tonic-gate 	chars_per_row = ma->e_col - ma->s_col + 1;
10217c478bd9Sstevel@tonic-gate 	rows_to_move = ma->e_row - ma->s_row + 1;
10227c478bd9Sstevel@tonic-gate 
10237c478bd9Sstevel@tonic-gate 	/* More sanity checks. */
10247c478bd9Sstevel@tonic-gate 	if (ma->t_row + rows_to_move > TEXT_ROWS ||
10257c478bd9Sstevel@tonic-gate 	    ma->t_col + chars_per_row > TEXT_COLS)
10267c478bd9Sstevel@tonic-gate 		return;
10277c478bd9Sstevel@tonic-gate 
10287c478bd9Sstevel@tonic-gate 	base = (unsigned short *)softc->current_base;
10297c478bd9Sstevel@tonic-gate 
10307c478bd9Sstevel@tonic-gate 	to_row_start = base + ((ma->t_row * TEXT_COLS) + ma->t_col);
10317c478bd9Sstevel@tonic-gate 	from_row_start = base + ((ma->s_row * TEXT_COLS) + ma->s_col);
10327c478bd9Sstevel@tonic-gate 
10337c478bd9Sstevel@tonic-gate 	if (to_row_start < from_row_start) {
10347c478bd9Sstevel@tonic-gate 		while (rows_to_move-- > 0) {
10357c478bd9Sstevel@tonic-gate 			to = to_row_start;
10367c478bd9Sstevel@tonic-gate 			from = from_row_start;
10377c478bd9Sstevel@tonic-gate 			to_row_start += TEXT_COLS;
10387c478bd9Sstevel@tonic-gate 			from_row_start += TEXT_COLS;
10397c478bd9Sstevel@tonic-gate 			for (cnt = chars_per_row; cnt-- > 0; )
10407c478bd9Sstevel@tonic-gate 				*to++ = *from++;
10417c478bd9Sstevel@tonic-gate 		}
10427c478bd9Sstevel@tonic-gate 	} else {
10437c478bd9Sstevel@tonic-gate 		/*
10447c478bd9Sstevel@tonic-gate 		 * Offset to the end of the region and copy backwards.
10457c478bd9Sstevel@tonic-gate 		 */
10467c478bd9Sstevel@tonic-gate 		cnt = rows_to_move * TEXT_COLS + chars_per_row;
10477c478bd9Sstevel@tonic-gate 		to_row_start += cnt;
10487c478bd9Sstevel@tonic-gate 		from_row_start += cnt;
10497c478bd9Sstevel@tonic-gate 
10507c478bd9Sstevel@tonic-gate 		while (rows_to_move-- > 0) {
10517c478bd9Sstevel@tonic-gate 			to_row_start -= TEXT_COLS;
10527c478bd9Sstevel@tonic-gate 			from_row_start -= TEXT_COLS;
10537c478bd9Sstevel@tonic-gate 			to = to_row_start;
10547c478bd9Sstevel@tonic-gate 			from = from_row_start;
10557c478bd9Sstevel@tonic-gate 			for (cnt = chars_per_row; cnt-- > 0; )
10567c478bd9Sstevel@tonic-gate 				*--to = *--from;
10577c478bd9Sstevel@tonic-gate 		}
10587c478bd9Sstevel@tonic-gate 	}
10597c478bd9Sstevel@tonic-gate }
10607c478bd9Sstevel@tonic-gate 
10617c478bd9Sstevel@tonic-gate static void
10627c478bd9Sstevel@tonic-gate vgatext_polled_copy(
10637c478bd9Sstevel@tonic-gate 	struct vis_polledio_arg *arg,
10647c478bd9Sstevel@tonic-gate 	struct vis_conscopy *ca)
10657c478bd9Sstevel@tonic-gate {
10667c478bd9Sstevel@tonic-gate 	vgatext_cons_copy((struct vgatext_softc *)arg, ca);
10677c478bd9Sstevel@tonic-gate }
10687c478bd9Sstevel@tonic-gate 
10697c478bd9Sstevel@tonic-gate 
10707c478bd9Sstevel@tonic-gate static void
10717c478bd9Sstevel@tonic-gate vgatext_cons_cursor(struct vgatext_softc *softc, struct vis_conscursor *ca)
10727c478bd9Sstevel@tonic-gate {
10737c478bd9Sstevel@tonic-gate 	if (vgatext_silent)
10747c478bd9Sstevel@tonic-gate 		return;
10757c478bd9Sstevel@tonic-gate 
10767c478bd9Sstevel@tonic-gate 	switch (ca->action) {
10777c478bd9Sstevel@tonic-gate 	case VIS_HIDE_CURSOR:
10787c478bd9Sstevel@tonic-gate 		softc->cursor.visible = B_FALSE;
10797c478bd9Sstevel@tonic-gate 		if (softc->current_base == softc->text_base)
10807c478bd9Sstevel@tonic-gate 			vgatext_hide_cursor(softc);
10817c478bd9Sstevel@tonic-gate 		break;
10827c478bd9Sstevel@tonic-gate 	case VIS_DISPLAY_CURSOR:
10837c478bd9Sstevel@tonic-gate 		/*
10847c478bd9Sstevel@tonic-gate 		 * Sanity check.  This is a last-ditch effort to avoid
10857c478bd9Sstevel@tonic-gate 		 * damage from brokenness or maliciousness above.
10867c478bd9Sstevel@tonic-gate 		 */
10877c478bd9Sstevel@tonic-gate 		if (ca->col < 0 || ca->col >= TEXT_COLS ||
10887c478bd9Sstevel@tonic-gate 		    ca->row < 0 || ca->row >= TEXT_ROWS)
10897c478bd9Sstevel@tonic-gate 			return;
10907c478bd9Sstevel@tonic-gate 
10917c478bd9Sstevel@tonic-gate 		softc->cursor.visible = B_TRUE;
10927c478bd9Sstevel@tonic-gate 		softc->cursor.col = ca->col;
10937c478bd9Sstevel@tonic-gate 		softc->cursor.row = ca->row;
10947c478bd9Sstevel@tonic-gate 		if (softc->current_base == softc->text_base)
10957c478bd9Sstevel@tonic-gate 			vgatext_set_cursor(softc, ca->row, ca->col);
10967c478bd9Sstevel@tonic-gate 		break;
10977c478bd9Sstevel@tonic-gate 	case VIS_GET_CURSOR:
10987c478bd9Sstevel@tonic-gate 		if (softc->current_base == softc->text_base) {
10997c478bd9Sstevel@tonic-gate 			vgatext_get_cursor(softc, &ca->row, &ca->col);
11007c478bd9Sstevel@tonic-gate 		}
11017c478bd9Sstevel@tonic-gate 		break;
11027c478bd9Sstevel@tonic-gate 	}
11037c478bd9Sstevel@tonic-gate }
11047c478bd9Sstevel@tonic-gate 
11057c478bd9Sstevel@tonic-gate static void
11067c478bd9Sstevel@tonic-gate vgatext_polled_cursor(
11077c478bd9Sstevel@tonic-gate 	struct vis_polledio_arg *arg,
11087c478bd9Sstevel@tonic-gate 	struct vis_conscursor *ca)
11097c478bd9Sstevel@tonic-gate {
11107c478bd9Sstevel@tonic-gate 	vgatext_cons_cursor((struct vgatext_softc *)arg, ca);
11117c478bd9Sstevel@tonic-gate }
11127c478bd9Sstevel@tonic-gate 
11137c478bd9Sstevel@tonic-gate 
11147c478bd9Sstevel@tonic-gate 
11157c478bd9Sstevel@tonic-gate /*ARGSUSED*/
11167c478bd9Sstevel@tonic-gate static void
11177c478bd9Sstevel@tonic-gate vgatext_hide_cursor(struct vgatext_softc *softc)
11187c478bd9Sstevel@tonic-gate {
11197c478bd9Sstevel@tonic-gate 	/* Nothing at present */
11207c478bd9Sstevel@tonic-gate }
11217c478bd9Sstevel@tonic-gate 
11227c478bd9Sstevel@tonic-gate static void
11237c478bd9Sstevel@tonic-gate vgatext_set_cursor(struct vgatext_softc *softc, int row, int col)
11247c478bd9Sstevel@tonic-gate {
11257c478bd9Sstevel@tonic-gate 	short	addr;
11267c478bd9Sstevel@tonic-gate 
11277c478bd9Sstevel@tonic-gate 	if (vgatext_silent)
11287c478bd9Sstevel@tonic-gate 		return;
11297c478bd9Sstevel@tonic-gate 
11307c478bd9Sstevel@tonic-gate 	addr = row * TEXT_COLS + col;
11317c478bd9Sstevel@tonic-gate 
11327c478bd9Sstevel@tonic-gate 	vga_set_crtc(&softc->regs, VGA_CRTC_CLAH, addr >> 8);
11337c478bd9Sstevel@tonic-gate 	vga_set_crtc(&softc->regs, VGA_CRTC_CLAL, addr & 0xff);
11347c478bd9Sstevel@tonic-gate }
11357c478bd9Sstevel@tonic-gate 
11367c478bd9Sstevel@tonic-gate static int vga_row, vga_col;
11377c478bd9Sstevel@tonic-gate 
11387c478bd9Sstevel@tonic-gate static void
11397c478bd9Sstevel@tonic-gate vgatext_get_cursor(struct vgatext_softc *softc,
11407c478bd9Sstevel@tonic-gate     screen_pos_t *row, screen_pos_t *col)
11417c478bd9Sstevel@tonic-gate {
11427c478bd9Sstevel@tonic-gate 	short   addr;
11437c478bd9Sstevel@tonic-gate 
11447c478bd9Sstevel@tonic-gate 	addr = (vga_get_crtc(&softc->regs, VGA_CRTC_CLAH) << 8) +
11457c478bd9Sstevel@tonic-gate 	    vga_get_crtc(&softc->regs, VGA_CRTC_CLAL);
11467c478bd9Sstevel@tonic-gate 
11477c478bd9Sstevel@tonic-gate 	vga_row = *row = addr / TEXT_COLS;
11487c478bd9Sstevel@tonic-gate 	vga_col = *col = addr % TEXT_COLS;
11497c478bd9Sstevel@tonic-gate }
11507c478bd9Sstevel@tonic-gate 
11517c478bd9Sstevel@tonic-gate /*
11527c478bd9Sstevel@tonic-gate  * This code is experimental. It's only enabled if console is
11537c478bd9Sstevel@tonic-gate  * set to graphics, a preliminary implementation of happyface boot.
11547c478bd9Sstevel@tonic-gate  */
11557c478bd9Sstevel@tonic-gate static void
11567c478bd9Sstevel@tonic-gate vgatext_set_text(struct vgatext_softc *softc)
11577c478bd9Sstevel@tonic-gate {
11587c478bd9Sstevel@tonic-gate 	int i;
11597c478bd9Sstevel@tonic-gate 
11607c478bd9Sstevel@tonic-gate 	if (happyface_boot == 0)
11617c478bd9Sstevel@tonic-gate 		return;
11627c478bd9Sstevel@tonic-gate 
11637c478bd9Sstevel@tonic-gate 	/* we are in graphics mode, set to text 80X25 mode */
11647c478bd9Sstevel@tonic-gate 
11657c478bd9Sstevel@tonic-gate 	/* set misc registers */
11667c478bd9Sstevel@tonic-gate 	vga_set_reg(&softc->regs, VGA_MISC_W, VGA_MISC_TEXT);
11677c478bd9Sstevel@tonic-gate 
11687c478bd9Sstevel@tonic-gate 	/* set sequencer registers */
11697c478bd9Sstevel@tonic-gate 	vga_set_seq(&softc->regs, VGA_SEQ_RST_SYN,
11707c478bd9Sstevel@tonic-gate 	    (vga_get_seq(&softc->regs, VGA_SEQ_RST_SYN) &
11717c478bd9Sstevel@tonic-gate 	    ~VGA_SEQ_RST_SYN_NO_SYNC_RESET));
11727c478bd9Sstevel@tonic-gate 	for (i = 1; i < NUM_SEQ_REG; i++) {
11737c478bd9Sstevel@tonic-gate 		vga_set_seq(&softc->regs, i, VGA_SEQ_TEXT[i]);
11747c478bd9Sstevel@tonic-gate 	}
11757c478bd9Sstevel@tonic-gate 	vga_set_seq(&softc->regs, VGA_SEQ_RST_SYN,
11767c478bd9Sstevel@tonic-gate 	    (vga_get_seq(&softc->regs, VGA_SEQ_RST_SYN) |
11777c478bd9Sstevel@tonic-gate 	    VGA_SEQ_RST_SYN_NO_ASYNC_RESET |
11787c478bd9Sstevel@tonic-gate 	    VGA_SEQ_RST_SYN_NO_SYNC_RESET));
11797c478bd9Sstevel@tonic-gate 
11807c478bd9Sstevel@tonic-gate 	/* set crt controller registers */
11817c478bd9Sstevel@tonic-gate 	vga_set_crtc(&softc->regs, VGA_CRTC_VRE,
11827c478bd9Sstevel@tonic-gate 	    (vga_get_crtc(&softc->regs, VGA_CRTC_VRE) &
11837c478bd9Sstevel@tonic-gate 	    ~VGA_CRTC_VRE_LOCK));
11847c478bd9Sstevel@tonic-gate 	for (i = 0; i < NUM_CRTC_REG; i++) {
11857c478bd9Sstevel@tonic-gate 		vga_set_crtc(&softc->regs, i, VGA_CRTC_TEXT[i]);
11867c478bd9Sstevel@tonic-gate 	}
11877c478bd9Sstevel@tonic-gate 
11887c478bd9Sstevel@tonic-gate 	/* set graphics controller registers */
11897c478bd9Sstevel@tonic-gate 	for (i = 0; i < NUM_GRC_REG; i++) {
11907c478bd9Sstevel@tonic-gate 		vga_set_grc(&softc->regs, i, VGA_GRC_TEXT[i]);
11917c478bd9Sstevel@tonic-gate 	}
11927c478bd9Sstevel@tonic-gate 
11937c478bd9Sstevel@tonic-gate 	/* set attribute registers */
11947c478bd9Sstevel@tonic-gate 	for (i = 0; i < NUM_ATR_REG; i++) {
11957c478bd9Sstevel@tonic-gate 		vga_set_atr(&softc->regs, i, VGA_ATR_TEXT[i]);
11967c478bd9Sstevel@tonic-gate 	}
11977c478bd9Sstevel@tonic-gate 
11987c478bd9Sstevel@tonic-gate 	/* set palette */
11997c478bd9Sstevel@tonic-gate 	for (i = 0; i < VGA_TEXT_CMAP_ENTRIES; i++) {
12007c478bd9Sstevel@tonic-gate 		vga_put_cmap(&softc->regs, i, VGA_TEXT_PALETTES[i][0] << 2,
12017c478bd9Sstevel@tonic-gate 		    VGA_TEXT_PALETTES[i][1] << 2,
12027c478bd9Sstevel@tonic-gate 		    VGA_TEXT_PALETTES[i][2] << 2);
12037c478bd9Sstevel@tonic-gate 	}
12047c478bd9Sstevel@tonic-gate 	for (i = VGA_TEXT_CMAP_ENTRIES; i < VGA8_CMAP_ENTRIES; i++) {
12057c478bd9Sstevel@tonic-gate 		vga_put_cmap(&softc->regs, i, 0, 0, 0);
12067c478bd9Sstevel@tonic-gate 	}
12077c478bd9Sstevel@tonic-gate 
12087c478bd9Sstevel@tonic-gate 	vgatext_save_colormap(softc);
12097c478bd9Sstevel@tonic-gate }
12107c478bd9Sstevel@tonic-gate 
12117c478bd9Sstevel@tonic-gate static void
12127c478bd9Sstevel@tonic-gate vgatext_init(struct vgatext_softc *softc)
12137c478bd9Sstevel@tonic-gate {
12147c478bd9Sstevel@tonic-gate 	unsigned char atr_mode;
12157c478bd9Sstevel@tonic-gate 
12167c478bd9Sstevel@tonic-gate 	atr_mode = vga_get_atr(&softc->regs, VGA_ATR_MODE);
12177c478bd9Sstevel@tonic-gate 	if (atr_mode & VGA_ATR_MODE_GRAPH)
12187c478bd9Sstevel@tonic-gate 		vgatext_set_text(softc);
12197c478bd9Sstevel@tonic-gate 	atr_mode = vga_get_atr(&softc->regs, VGA_ATR_MODE);
12207c478bd9Sstevel@tonic-gate 	atr_mode &= ~VGA_ATR_MODE_BLINK;
12217c478bd9Sstevel@tonic-gate 	atr_mode &= ~VGA_ATR_MODE_9WIDE;
12227c478bd9Sstevel@tonic-gate 	vga_set_atr(&softc->regs, VGA_ATR_MODE, atr_mode);
12237c478bd9Sstevel@tonic-gate #if	defined(USE_BORDERS)
12247c478bd9Sstevel@tonic-gate 	vga_set_atr(&softc->regs, VGA_ATR_BDR_CLR,
12257c478bd9Sstevel@tonic-gate 	    vga_get_atr(&softc->regs, VGA_BRIGHT_WHITE));
12267c478bd9Sstevel@tonic-gate #else
12277c478bd9Sstevel@tonic-gate 	vga_set_atr(&softc->regs, VGA_ATR_BDR_CLR,
12287c478bd9Sstevel@tonic-gate 	    vga_get_atr(&softc->regs, VGA_BLACK));
12297c478bd9Sstevel@tonic-gate #endif
12307c478bd9Sstevel@tonic-gate 	vgatext_setfont(softc);	/* need selectable font? */
12317c478bd9Sstevel@tonic-gate }
12327c478bd9Sstevel@tonic-gate 
12337c478bd9Sstevel@tonic-gate #if	defined(USE_BORDERS)
12347c478bd9Sstevel@tonic-gate static void
12357c478bd9Sstevel@tonic-gate vgatext_init_graphics(struct vgatext_softc *softc)
12367c478bd9Sstevel@tonic-gate {
12377c478bd9Sstevel@tonic-gate 	vga_set_atr(&softc->regs, VGA_ATR_BDR_CLR,
12387c478bd9Sstevel@tonic-gate 	    vga_get_atr(&softc->regs, VGA_BLACK));
12397c478bd9Sstevel@tonic-gate }
12407c478bd9Sstevel@tonic-gate #endif
12417c478bd9Sstevel@tonic-gate 
12422269adc8Sszhou static char vga_fontslot = 0;
12432269adc8Sszhou 
12447c478bd9Sstevel@tonic-gate static void
12457c478bd9Sstevel@tonic-gate vgatext_setfont(struct vgatext_softc *softc)
12467c478bd9Sstevel@tonic-gate {
12472269adc8Sszhou 	static uchar_t fsreg[8] = {0x0, 0x30, 0x5, 0x35, 0xa, 0x3a, 0xf, 0x3f};
12482269adc8Sszhou 
12497c478bd9Sstevel@tonic-gate 	extern unsigned char *ENCODINGS[];
12502269adc8Sszhou 	uchar_t *from;
12512269adc8Sszhou 	uchar_t volatile *to;
12522269adc8Sszhou 	int	i, j, s;
12532269adc8Sszhou 	int	bpc, f_offset;
12547c478bd9Sstevel@tonic-gate 
12557c478bd9Sstevel@tonic-gate 	/* Sync-reset the sequencer registers */
12567c478bd9Sstevel@tonic-gate 	vga_set_seq(&softc->regs, 0x00, 0x01);
12577c478bd9Sstevel@tonic-gate 	/*
12587c478bd9Sstevel@tonic-gate 	 *  enable write to plane2, since fonts
12597c478bd9Sstevel@tonic-gate 	 * could only be loaded into plane2
12607c478bd9Sstevel@tonic-gate 	 */
12617c478bd9Sstevel@tonic-gate 	vga_set_seq(&softc->regs, 0x02, 0x04);
12627c478bd9Sstevel@tonic-gate 	/*
12637c478bd9Sstevel@tonic-gate 	 *  sequentially access data in the bit map being
12647c478bd9Sstevel@tonic-gate 	 * selected by MapMask register (index 0x02)
12657c478bd9Sstevel@tonic-gate 	 */
12667c478bd9Sstevel@tonic-gate 	vga_set_seq(&softc->regs, 0x04, 0x07);
12677c478bd9Sstevel@tonic-gate 	/* Sync-reset ended, and allow the sequencer to operate */
12687c478bd9Sstevel@tonic-gate 	vga_set_seq(&softc->regs, 0x00, 0x03);
12697c478bd9Sstevel@tonic-gate 
12707c478bd9Sstevel@tonic-gate 	/*
12717c478bd9Sstevel@tonic-gate 	 *  select plane 2 on Read Mode 0
12727c478bd9Sstevel@tonic-gate 	 */
12737c478bd9Sstevel@tonic-gate 	vga_set_grc(&softc->regs, 0x04, 0x02);
12747c478bd9Sstevel@tonic-gate 	/*
12757c478bd9Sstevel@tonic-gate 	 *  system addresses sequentially access data, follow
12767c478bd9Sstevel@tonic-gate 	 * Memory Mode register bit 2 in the sequencer
12777c478bd9Sstevel@tonic-gate 	 */
12787c478bd9Sstevel@tonic-gate 	vga_set_grc(&softc->regs, 0x05, 0x00);
12797c478bd9Sstevel@tonic-gate 	/*
12807c478bd9Sstevel@tonic-gate 	 * set range of host memory addresses decoded by VGA
12817c478bd9Sstevel@tonic-gate 	 * hardware -- A0000h-BFFFFh (128K region)
12827c478bd9Sstevel@tonic-gate 	 */
12837c478bd9Sstevel@tonic-gate 	vga_set_grc(&softc->regs, 0x06, 0x00);
12847c478bd9Sstevel@tonic-gate 
12857c478bd9Sstevel@tonic-gate 	/*
12867c478bd9Sstevel@tonic-gate 	 * This assumes 8x16 characters, which yield the traditional 80x25
12877c478bd9Sstevel@tonic-gate 	 * screen.  It really should support other character heights.
12887c478bd9Sstevel@tonic-gate 	 */
12897c478bd9Sstevel@tonic-gate 	bpc = 16;
12902269adc8Sszhou 	s = vga_fontslot;
12912269adc8Sszhou 	f_offset = s * 8 * 1024;
12927c478bd9Sstevel@tonic-gate 	for (i = 0; i < 256; i++) {
12937c478bd9Sstevel@tonic-gate 		from = ENCODINGS[i];
12942269adc8Sszhou 		to = (unsigned char *)softc->fb.addr + f_offset + i * 0x20;
12957c478bd9Sstevel@tonic-gate 		for (j = 0; j < bpc; j++)
12967c478bd9Sstevel@tonic-gate 			*to++ = *from++;
12977c478bd9Sstevel@tonic-gate 	}
12987c478bd9Sstevel@tonic-gate 
12997c478bd9Sstevel@tonic-gate 	/* Sync-reset the sequencer registers */
13007c478bd9Sstevel@tonic-gate 	vga_set_seq(&softc->regs, 0x00, 0x01);
13017c478bd9Sstevel@tonic-gate 	/* enable write to plane 0 and 1 */
13027c478bd9Sstevel@tonic-gate 	vga_set_seq(&softc->regs, 0x02, 0x03);
13037c478bd9Sstevel@tonic-gate 	/*
13047c478bd9Sstevel@tonic-gate 	 * enable character map selection
13057c478bd9Sstevel@tonic-gate 	 * and odd/even addressing
13067c478bd9Sstevel@tonic-gate 	 */
13077c478bd9Sstevel@tonic-gate 	vga_set_seq(&softc->regs, 0x04, 0x03);
13087c478bd9Sstevel@tonic-gate 	/*
13092269adc8Sszhou 	 * select font map
13107c478bd9Sstevel@tonic-gate 	 */
13112269adc8Sszhou 	vga_set_seq(&softc->regs, 0x03, fsreg[s]);
13127c478bd9Sstevel@tonic-gate 	/* Sync-reset ended, and allow the sequencer to operate */
13137c478bd9Sstevel@tonic-gate 	vga_set_seq(&softc->regs, 0x00, 0x03);
13147c478bd9Sstevel@tonic-gate 
13157c478bd9Sstevel@tonic-gate 	/* restore graphic registers */
13167c478bd9Sstevel@tonic-gate 
13177c478bd9Sstevel@tonic-gate 	/* select plane 0 */
13187c478bd9Sstevel@tonic-gate 	vga_set_grc(&softc->regs, 0x04, 0x00);
13197c478bd9Sstevel@tonic-gate 	/* enable odd/even addressing mode */
13207c478bd9Sstevel@tonic-gate 	vga_set_grc(&softc->regs, 0x05, 0x10);
13217c478bd9Sstevel@tonic-gate 	/*
13227c478bd9Sstevel@tonic-gate 	 * range of host memory addresses decoded by VGA
13237c478bd9Sstevel@tonic-gate 	 * hardware -- B8000h-BFFFFh (32K region)
13247c478bd9Sstevel@tonic-gate 	 */
13257c478bd9Sstevel@tonic-gate 	vga_set_grc(&softc->regs, 0x06, 0x0e);
13267c478bd9Sstevel@tonic-gate 	/* enable all color plane */
13277c478bd9Sstevel@tonic-gate 	vga_set_atr(&softc->regs, 0x12, 0x0f);
13287c478bd9Sstevel@tonic-gate 
13297c478bd9Sstevel@tonic-gate }
13307c478bd9Sstevel@tonic-gate 
13317c478bd9Sstevel@tonic-gate static void
13327c478bd9Sstevel@tonic-gate vgatext_save_colormap(struct vgatext_softc *softc)
13337c478bd9Sstevel@tonic-gate {
13347c478bd9Sstevel@tonic-gate 	int i;
13357c478bd9Sstevel@tonic-gate 
13367c478bd9Sstevel@tonic-gate 	for (i = 0; i < VGA_ATR_NUM_PLT; i++) {
13377c478bd9Sstevel@tonic-gate 		softc->attrib_palette[i] = vga_get_atr(&softc->regs, i);
13387c478bd9Sstevel@tonic-gate 	}
13397c478bd9Sstevel@tonic-gate 	for (i = 0; i < VGA8_CMAP_ENTRIES; i++) {
13407c478bd9Sstevel@tonic-gate 		vga_get_cmap(&softc->regs, i,
13417c478bd9Sstevel@tonic-gate 		    &softc->colormap[i].red,
13427c478bd9Sstevel@tonic-gate 		    &softc->colormap[i].green,
13437c478bd9Sstevel@tonic-gate 		    &softc->colormap[i].blue);
13447c478bd9Sstevel@tonic-gate 	}
13457c478bd9Sstevel@tonic-gate }
13467c478bd9Sstevel@tonic-gate 
13477c478bd9Sstevel@tonic-gate static void
13487c478bd9Sstevel@tonic-gate vgatext_restore_colormap(struct vgatext_softc *softc)
13497c478bd9Sstevel@tonic-gate {
13507c478bd9Sstevel@tonic-gate 	int i;
13517c478bd9Sstevel@tonic-gate 
13527c478bd9Sstevel@tonic-gate 	for (i = 0; i < VGA_ATR_NUM_PLT; i++) {
13537c478bd9Sstevel@tonic-gate 		vga_set_atr(&softc->regs, i, softc->attrib_palette[i]);
13547c478bd9Sstevel@tonic-gate 	}
13557c478bd9Sstevel@tonic-gate 	for (i = 0; i < VGA8_CMAP_ENTRIES; i++) {
13567c478bd9Sstevel@tonic-gate 		vga_put_cmap(&softc->regs, i,
13577c478bd9Sstevel@tonic-gate 		    softc->colormap[i].red,
13587c478bd9Sstevel@tonic-gate 		    softc->colormap[i].green,
13597c478bd9Sstevel@tonic-gate 		    softc->colormap[i].blue);
13607c478bd9Sstevel@tonic-gate 	}
13617c478bd9Sstevel@tonic-gate }
13627c478bd9Sstevel@tonic-gate 
13637c478bd9Sstevel@tonic-gate /*
13647c478bd9Sstevel@tonic-gate  * search the entries of the "reg" property for one which has the desired
13657c478bd9Sstevel@tonic-gate  * combination of phys_hi bits and contains the desired address.
13667c478bd9Sstevel@tonic-gate  *
13677c478bd9Sstevel@tonic-gate  * This version searches a PCI-style "reg" property.  It was prompted by
13687c478bd9Sstevel@tonic-gate  * issues surrounding the presence or absence of an entry for the ROM:
13697c478bd9Sstevel@tonic-gate  * (a) a transition problem with PowerPC Virtual Open Firmware
13707c478bd9Sstevel@tonic-gate  * (b) uncertainty as to whether an entry will be included on a device
13717c478bd9Sstevel@tonic-gate  *     with ROM support (and so an "active" ROM base address register),
13727c478bd9Sstevel@tonic-gate  *     but no ROM actually installed.
13737c478bd9Sstevel@tonic-gate  *
13747c478bd9Sstevel@tonic-gate  * See the note below on vgatext_get_isa_reg_index for the reasons for
13757c478bd9Sstevel@tonic-gate  * returning the offset.
13767c478bd9Sstevel@tonic-gate  *
13777c478bd9Sstevel@tonic-gate  * Note that this routine may not be fully general; it is intended for the
13787c478bd9Sstevel@tonic-gate  * specific purpose of finding a couple of particular VGA reg entries and
13797c478bd9Sstevel@tonic-gate  * may not be suitable for all reg-searching purposes.
13807c478bd9Sstevel@tonic-gate  */
13817c478bd9Sstevel@tonic-gate static int
13827c478bd9Sstevel@tonic-gate vgatext_get_pci_reg_index(
13837c478bd9Sstevel@tonic-gate 	dev_info_t *const devi,
13847c478bd9Sstevel@tonic-gate 	unsigned long himask,
13857c478bd9Sstevel@tonic-gate 	unsigned long hival,
13867c478bd9Sstevel@tonic-gate 	unsigned long addr,
13877c478bd9Sstevel@tonic-gate 	off_t *offset)
13887c478bd9Sstevel@tonic-gate {
13897c478bd9Sstevel@tonic-gate 
13907c478bd9Sstevel@tonic-gate 	int			length, index;
13917c478bd9Sstevel@tonic-gate 	pci_regspec_t	*reg;
13927c478bd9Sstevel@tonic-gate 
13937c478bd9Sstevel@tonic-gate 	if (ddi_getlongprop(DDI_DEV_T_ANY, devi, DDI_PROP_DONTPASS,
13947c478bd9Sstevel@tonic-gate 	    "reg", (caddr_t)&reg, &length) != DDI_PROP_SUCCESS) {
13957c478bd9Sstevel@tonic-gate 		return (-1);
13967c478bd9Sstevel@tonic-gate 	}
13977c478bd9Sstevel@tonic-gate 
13987c478bd9Sstevel@tonic-gate 	for (index = 0; index < length / sizeof (pci_regspec_t); index++) {
13997c478bd9Sstevel@tonic-gate 		if ((reg[index].pci_phys_hi & himask) != hival)
14007c478bd9Sstevel@tonic-gate 			continue;
14017c478bd9Sstevel@tonic-gate 		if (reg[index].pci_size_hi != 0)
14027c478bd9Sstevel@tonic-gate 			continue;
14037c478bd9Sstevel@tonic-gate 		if (reg[index].pci_phys_mid != 0)
14047c478bd9Sstevel@tonic-gate 			continue;
14057c478bd9Sstevel@tonic-gate 		if (reg[index].pci_phys_low > addr)
14067c478bd9Sstevel@tonic-gate 			continue;
14077c478bd9Sstevel@tonic-gate 		if (reg[index].pci_phys_low + reg[index].pci_size_low <= addr)
14087c478bd9Sstevel@tonic-gate 			continue;
14097c478bd9Sstevel@tonic-gate 
14107c478bd9Sstevel@tonic-gate 		*offset = addr - reg[index].pci_phys_low;
14117c478bd9Sstevel@tonic-gate 		kmem_free(reg, (size_t)length);
14127c478bd9Sstevel@tonic-gate 		return (index);
14137c478bd9Sstevel@tonic-gate 	}
14147c478bd9Sstevel@tonic-gate 	kmem_free(reg, (size_t)length);
14157c478bd9Sstevel@tonic-gate 
14167c478bd9Sstevel@tonic-gate 	return (-1);
14177c478bd9Sstevel@tonic-gate }
14187c478bd9Sstevel@tonic-gate 
14197c478bd9Sstevel@tonic-gate /*
14207c478bd9Sstevel@tonic-gate  * search the entries of the "reg" property for one which has the desired
14217c478bd9Sstevel@tonic-gate  * combination of phys_hi bits and contains the desired address.
14227c478bd9Sstevel@tonic-gate  *
14237c478bd9Sstevel@tonic-gate  * This version searches a ISA-style "reg" property.  It was prompted by
14247c478bd9Sstevel@tonic-gate  * issues surrounding 8514/A support.  By IEEE 1275 compatibility conventions,
14257c478bd9Sstevel@tonic-gate  * 8514/A registers should have been added after all standard VGA registers.
14267c478bd9Sstevel@tonic-gate  * Unfortunately, the Solaris/Intel device configuration framework
14277c478bd9Sstevel@tonic-gate  * (a) lists the 8514/A registers before the video memory, and then
14287c478bd9Sstevel@tonic-gate  * (b) also sorts the entries so that I/O entries come before memory
14297c478bd9Sstevel@tonic-gate  *     entries.
14307c478bd9Sstevel@tonic-gate  *
14317c478bd9Sstevel@tonic-gate  * It returns the "reg" index and offset into that register set.
14327c478bd9Sstevel@tonic-gate  * The offset is needed because there exist (broken?) BIOSes that
14337c478bd9Sstevel@tonic-gate  * report larger ranges enclosing the standard ranges.  One reports
14347c478bd9Sstevel@tonic-gate  * 0x3bf for 0x21 instead of 0x3c0 for 0x20, for instance.  Using the
14357c478bd9Sstevel@tonic-gate  * offset adjusts for this difference in the base of the register set.
14367c478bd9Sstevel@tonic-gate  *
14377c478bd9Sstevel@tonic-gate  * Note that this routine may not be fully general; it is intended for the
14387c478bd9Sstevel@tonic-gate  * specific purpose of finding a couple of particular VGA reg entries and
14397c478bd9Sstevel@tonic-gate  * may not be suitable for all reg-searching purposes.
14407c478bd9Sstevel@tonic-gate  */
14417c478bd9Sstevel@tonic-gate static int
14427c478bd9Sstevel@tonic-gate vgatext_get_isa_reg_index(
14437c478bd9Sstevel@tonic-gate 	dev_info_t *const devi,
14447c478bd9Sstevel@tonic-gate 	unsigned long hival,
14457c478bd9Sstevel@tonic-gate 	unsigned long addr,
14467c478bd9Sstevel@tonic-gate 	off_t *offset)
14477c478bd9Sstevel@tonic-gate {
14487c478bd9Sstevel@tonic-gate 
14497c478bd9Sstevel@tonic-gate 	int		length, index;
14507c478bd9Sstevel@tonic-gate 	struct regspec	*reg;
14517c478bd9Sstevel@tonic-gate 
14527c478bd9Sstevel@tonic-gate 	if (ddi_getlongprop(DDI_DEV_T_ANY, devi, DDI_PROP_DONTPASS,
14537c478bd9Sstevel@tonic-gate 	    "reg", (caddr_t)&reg, &length) != DDI_PROP_SUCCESS) {
14547c478bd9Sstevel@tonic-gate 		return (-1);
14557c478bd9Sstevel@tonic-gate 	}
14567c478bd9Sstevel@tonic-gate 
14577c478bd9Sstevel@tonic-gate 	for (index = 0; index < length / sizeof (struct regspec); index++) {
14587c478bd9Sstevel@tonic-gate 		if (reg[index].regspec_bustype != hival)
14597c478bd9Sstevel@tonic-gate 			continue;
14607c478bd9Sstevel@tonic-gate 		if (reg[index].regspec_addr > addr)
14617c478bd9Sstevel@tonic-gate 			continue;
14627c478bd9Sstevel@tonic-gate 		if (reg[index].regspec_addr + reg[index].regspec_size <= addr)
14637c478bd9Sstevel@tonic-gate 			continue;
14647c478bd9Sstevel@tonic-gate 
14657c478bd9Sstevel@tonic-gate 		*offset = addr - reg[index].regspec_addr;
14667c478bd9Sstevel@tonic-gate 		kmem_free(reg, (size_t)length);
14677c478bd9Sstevel@tonic-gate 		return (index);
14687c478bd9Sstevel@tonic-gate 	}
14697c478bd9Sstevel@tonic-gate 	kmem_free(reg, (size_t)length);
14707c478bd9Sstevel@tonic-gate 
14717c478bd9Sstevel@tonic-gate 	return (-1);
14727c478bd9Sstevel@tonic-gate }
1473