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 /*
23*93a18d6dSEnrico Perla - Sun Microsystems * Copyright 2010 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 #include <sys/errno.h>
327c478bd9Sstevel@tonic-gate #include <sys/types.h>
337c478bd9Sstevel@tonic-gate #include <sys/conf.h>
347c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
357c478bd9Sstevel@tonic-gate #include <sys/visual_io.h>
367c478bd9Sstevel@tonic-gate #include <sys/font.h>
377c478bd9Sstevel@tonic-gate #include <sys/fbio.h>
387c478bd9Sstevel@tonic-gate
397c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
407c478bd9Sstevel@tonic-gate #include <sys/stat.h>
417c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
427c478bd9Sstevel@tonic-gate #include <sys/file.h>
437c478bd9Sstevel@tonic-gate #include <sys/open.h>
447c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
457c478bd9Sstevel@tonic-gate #include <sys/vgareg.h>
467c478bd9Sstevel@tonic-gate #include <sys/vgasubr.h>
477c478bd9Sstevel@tonic-gate #include <sys/pci.h>
487c478bd9Sstevel@tonic-gate #include <sys/kd.h>
497c478bd9Sstevel@tonic-gate #include <sys/ddi_impldefs.h>
507c478bd9Sstevel@tonic-gate #include <sys/sunldi.h>
517c478bd9Sstevel@tonic-gate #include <sys/agpgart.h>
527c478bd9Sstevel@tonic-gate #include <sys/agp/agpdefs.h>
537c478bd9Sstevel@tonic-gate #include <sys/agp/agpmaster_io.h>
547c478bd9Sstevel@tonic-gate
557c478bd9Sstevel@tonic-gate #define MYNAME "vgatext"
567c478bd9Sstevel@tonic-gate
577c478bd9Sstevel@tonic-gate /*
5860405de4Skz151634 * Each instance of this driver has 2 minor nodes:
5960405de4Skz151634 * 0: for common graphics operations
6060405de4Skz151634 * 1: for agpmaster operations
617c478bd9Sstevel@tonic-gate */
6260405de4Skz151634 #define GFX_MINOR 0
6360405de4Skz151634 #define AGPMASTER_MINOR 1
64d6bb6a84Sms148562
6560405de4Skz151634 #define MY_NBITSMINOR 1
6660405de4Skz151634 #define DEV2INST(dev) (getminor(dev) >> MY_NBITSMINOR)
6760405de4Skz151634 #define DEV2MINOR(dev) (getminor(dev) & ((1 << MY_NBITSMINOR) - 1))
6860405de4Skz151634 #define INST2NODE1(inst) ((inst) << MY_NBITSMINOR + GFX_MINOR)
6960405de4Skz151634 #define INST2NODE2(inst) (((inst) << MY_NBITSMINOR) + AGPMASTER_MINOR)
707c478bd9Sstevel@tonic-gate
717c478bd9Sstevel@tonic-gate /* I don't know exactly where these should be defined, but this is a */
727c478bd9Sstevel@tonic-gate /* heck of a lot better than constants in the code. */
737c478bd9Sstevel@tonic-gate #define TEXT_ROWS 25
747c478bd9Sstevel@tonic-gate #define TEXT_COLS 80
757c478bd9Sstevel@tonic-gate
767c478bd9Sstevel@tonic-gate #define VGA_BRIGHT_WHITE 0x0f
777c478bd9Sstevel@tonic-gate #define VGA_BLACK 0x00
787c478bd9Sstevel@tonic-gate
797c478bd9Sstevel@tonic-gate #define VGA_REG_ADDR 0x3c0
807c478bd9Sstevel@tonic-gate #define VGA_REG_SIZE 0x20
817c478bd9Sstevel@tonic-gate
827c478bd9Sstevel@tonic-gate #define VGA_MEM_ADDR 0xa0000
837c478bd9Sstevel@tonic-gate #define VGA_MEM_SIZE 0x20000
847c478bd9Sstevel@tonic-gate
857c478bd9Sstevel@tonic-gate #define VGA_MMAP_FB_BASE VGA_MEM_ADDR
867c478bd9Sstevel@tonic-gate
872df1fe9cSrandyf /*
882df1fe9cSrandyf * This variable allows for this driver to suspend even if it
892df1fe9cSrandyf * shouldn't. Note that by setting it, the framebuffer will probably
902df1fe9cSrandyf * not come back. So use it with a serial console, or with serial
912df1fe9cSrandyf * line debugging (say, for example, if this driver is being modified
922df1fe9cSrandyf * to support _some_ hardware doing suspend and resume).
932df1fe9cSrandyf */
942df1fe9cSrandyf int vgatext_force_suspend = 0;
952df1fe9cSrandyf
967c478bd9Sstevel@tonic-gate static int vgatext_open(dev_t *, int, int, cred_t *);
977c478bd9Sstevel@tonic-gate static int vgatext_close(dev_t, int, int, cred_t *);
987c478bd9Sstevel@tonic-gate static int vgatext_ioctl(dev_t, int, intptr_t, int, cred_t *, int *);
997c478bd9Sstevel@tonic-gate static int vgatext_devmap(dev_t, devmap_cookie_t, offset_t, size_t,
1007c478bd9Sstevel@tonic-gate size_t *, uint_t);
1017c478bd9Sstevel@tonic-gate
1027c478bd9Sstevel@tonic-gate static struct cb_ops cb_vgatext_ops = {
1037c478bd9Sstevel@tonic-gate vgatext_open, /* cb_open */
1047c478bd9Sstevel@tonic-gate vgatext_close, /* cb_close */
1057c478bd9Sstevel@tonic-gate nodev, /* cb_strategy */
1067c478bd9Sstevel@tonic-gate nodev, /* cb_print */
1077c478bd9Sstevel@tonic-gate nodev, /* cb_dump */
1087c478bd9Sstevel@tonic-gate nodev, /* cb_read */
1097c478bd9Sstevel@tonic-gate nodev, /* cb_write */
1107c478bd9Sstevel@tonic-gate vgatext_ioctl, /* cb_ioctl */
1117c478bd9Sstevel@tonic-gate vgatext_devmap, /* cb_devmap */
1127c478bd9Sstevel@tonic-gate nodev, /* cb_mmap */
1137c478bd9Sstevel@tonic-gate ddi_devmap_segmap, /* cb_segmap */
1147c478bd9Sstevel@tonic-gate nochpoll, /* cb_chpoll */
1157c478bd9Sstevel@tonic-gate ddi_prop_op, /* cb_prop_op */
1167c478bd9Sstevel@tonic-gate 0, /* cb_stream */
1177c478bd9Sstevel@tonic-gate D_NEW | D_MTSAFE /* cb_flag */
1187c478bd9Sstevel@tonic-gate };
1197c478bd9Sstevel@tonic-gate
1207c478bd9Sstevel@tonic-gate static int vgatext_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg,
1217c478bd9Sstevel@tonic-gate void **result);
1227c478bd9Sstevel@tonic-gate static int vgatext_attach(dev_info_t *, ddi_attach_cmd_t);
1237c478bd9Sstevel@tonic-gate static int vgatext_detach(dev_info_t *, ddi_detach_cmd_t);
1247c478bd9Sstevel@tonic-gate
1257c478bd9Sstevel@tonic-gate static struct vis_identifier text_ident = { "SUNWtext" };
1267c478bd9Sstevel@tonic-gate
1277c478bd9Sstevel@tonic-gate static struct dev_ops vgatext_ops = {
1287c478bd9Sstevel@tonic-gate DEVO_REV, /* devo_rev */
1297c478bd9Sstevel@tonic-gate 0, /* devo_refcnt */
1307c478bd9Sstevel@tonic-gate vgatext_info, /* devo_getinfo */
1317c478bd9Sstevel@tonic-gate nulldev, /* devo_identify */
1327c478bd9Sstevel@tonic-gate nulldev, /* devo_probe */
1337c478bd9Sstevel@tonic-gate vgatext_attach, /* devo_attach */
1347c478bd9Sstevel@tonic-gate vgatext_detach, /* devo_detach */
1357c478bd9Sstevel@tonic-gate nodev, /* devo_reset */
1367c478bd9Sstevel@tonic-gate &cb_vgatext_ops, /* devo_cb_ops */
1377c478bd9Sstevel@tonic-gate (struct bus_ops *)NULL, /* devo_bus_ops */
13819397407SSherry Moore NULL, /* power */
13919397407SSherry Moore ddi_quiesce_not_needed, /* quiesce */
1407c478bd9Sstevel@tonic-gate };
1417c478bd9Sstevel@tonic-gate
1427c478bd9Sstevel@tonic-gate struct vgatext_softc {
1437c478bd9Sstevel@tonic-gate struct vgaregmap regs;
1447c478bd9Sstevel@tonic-gate struct vgaregmap fb;
1457c478bd9Sstevel@tonic-gate off_t fb_size;
1467c478bd9Sstevel@tonic-gate int fb_regno;
1477c478bd9Sstevel@tonic-gate dev_info_t *devi;
1487c478bd9Sstevel@tonic-gate int mode; /* KD_TEXT or KD_GRAPHICS */
1497c478bd9Sstevel@tonic-gate caddr_t text_base; /* hardware text base */
1507c478bd9Sstevel@tonic-gate char shadow[TEXT_ROWS*TEXT_COLS*2];
1517c478bd9Sstevel@tonic-gate caddr_t current_base; /* hardware or shadow */
1527c478bd9Sstevel@tonic-gate struct {
1537c478bd9Sstevel@tonic-gate boolean_t visible;
1547c478bd9Sstevel@tonic-gate int row;
1557c478bd9Sstevel@tonic-gate int col;
1567c478bd9Sstevel@tonic-gate } cursor;
1577c478bd9Sstevel@tonic-gate struct vis_polledio polledio;
1587c478bd9Sstevel@tonic-gate struct {
1597c478bd9Sstevel@tonic-gate unsigned char red;
1607c478bd9Sstevel@tonic-gate unsigned char green;
1617c478bd9Sstevel@tonic-gate unsigned char blue;
1627c478bd9Sstevel@tonic-gate } colormap[VGA8_CMAP_ENTRIES];
1637c478bd9Sstevel@tonic-gate unsigned char attrib_palette[VGA_ATR_NUM_PLT];
16448633f18SJan Setje-Eilers agp_master_softc_t *agp_master; /* NULL means not PCI, for AGP */
16560405de4Skz151634 ddi_acc_handle_t *pci_cfg_hdlp; /* PCI conf handle */
1664e93fb0fSrugrat unsigned int flags;
16748633f18SJan Setje-Eilers kmutex_t lock;
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 */
212613b2871SRichard Bean "VGA text driver", /* 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
_init(void)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
_fini(void)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
_info(struct modinfo * modinfop)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
328*93a18d6dSEnrico Perla - Sun Microsystems /*
329*93a18d6dSEnrico Perla - Sun Microsystems * NOTE: this function is duplicated here and in gfx_private/vgatext while
330*93a18d6dSEnrico Perla - Sun Microsystems * we work on a set of commitable interfaces to sunpci.c.
331*93a18d6dSEnrico Perla - Sun Microsystems *
332*93a18d6dSEnrico Perla - Sun Microsystems * Use the class code to determine if the device is a PCI-to-PCI bridge.
333*93a18d6dSEnrico Perla - Sun Microsystems * Returns: B_TRUE if the device is a bridge.
334*93a18d6dSEnrico Perla - Sun Microsystems * B_FALSE if the device is not a bridge or the property cannot be
335*93a18d6dSEnrico Perla - Sun Microsystems * retrieved.
336*93a18d6dSEnrico Perla - Sun Microsystems */
337*93a18d6dSEnrico Perla - Sun Microsystems static boolean_t
is_pci_bridge(dev_info_t * dip)338*93a18d6dSEnrico Perla - Sun Microsystems is_pci_bridge(dev_info_t *dip)
339*93a18d6dSEnrico Perla - Sun Microsystems {
340*93a18d6dSEnrico Perla - Sun Microsystems uint32_t class_code;
341*93a18d6dSEnrico Perla - Sun Microsystems
342*93a18d6dSEnrico Perla - Sun Microsystems class_code = (uint32_t)ddi_prop_get_int(DDI_DEV_T_ANY, dip,
343*93a18d6dSEnrico Perla - Sun Microsystems DDI_PROP_DONTPASS, "class-code", 0xffffffff);
344*93a18d6dSEnrico Perla - Sun Microsystems
345*93a18d6dSEnrico Perla - Sun Microsystems if (class_code == 0xffffffff || class_code == DDI_PROP_NOT_FOUND)
346*93a18d6dSEnrico Perla - Sun Microsystems return (B_FALSE);
347*93a18d6dSEnrico Perla - Sun Microsystems
348*93a18d6dSEnrico Perla - Sun Microsystems class_code &= 0x00ffff00;
349*93a18d6dSEnrico Perla - Sun Microsystems if (class_code == ((PCI_CLASS_BRIDGE << 16) | (PCI_BRIDGE_PCI << 8)))
350*93a18d6dSEnrico Perla - Sun Microsystems return (B_TRUE);
351*93a18d6dSEnrico Perla - Sun Microsystems
352*93a18d6dSEnrico Perla - Sun Microsystems return (B_FALSE);
353*93a18d6dSEnrico Perla - Sun Microsystems }
354*93a18d6dSEnrico Perla - Sun Microsystems
3554e93fb0fSrugrat static void
vgatext_check_for_console(dev_info_t * devi,struct vgatext_softc * softc,int pci_pcie_bus)3564e93fb0fSrugrat vgatext_check_for_console(dev_info_t *devi, struct vgatext_softc *softc,
3574e93fb0fSrugrat int pci_pcie_bus)
3584e93fb0fSrugrat {
3594e93fb0fSrugrat ddi_acc_handle_t pci_conf;
3604e93fb0fSrugrat dev_info_t *pdevi;
3614e93fb0fSrugrat uint16_t data16;
3624e93fb0fSrugrat
3634e93fb0fSrugrat /*
3644e93fb0fSrugrat * Based on Section 11.3, "PCI Display Subsystem Initialization",
3654e93fb0fSrugrat * of the 1.1 PCI-to-PCI Bridge Architecture Specification
3664e93fb0fSrugrat * determine if this is the boot console device. First, see
3674e93fb0fSrugrat * if the SBIOS has turned on PCI I/O for this device. Then if
3684e93fb0fSrugrat * this is PCI/PCI-E, verify the parent bridge has VGAEnable set.
3694e93fb0fSrugrat */
3704e93fb0fSrugrat
3714e93fb0fSrugrat if (pci_config_setup(devi, &pci_conf) != DDI_SUCCESS) {
3724e93fb0fSrugrat cmn_err(CE_WARN,
3734e93fb0fSrugrat MYNAME ": can't get PCI conf handle");
3744e93fb0fSrugrat return;
3754e93fb0fSrugrat }
3764e93fb0fSrugrat
3774e93fb0fSrugrat data16 = pci_config_get16(pci_conf, PCI_CONF_COMM);
3784e93fb0fSrugrat if (data16 & PCI_COMM_IO)
3794e93fb0fSrugrat softc->flags |= VGATEXT_FLAG_CONSOLE;
3804e93fb0fSrugrat
3814e93fb0fSrugrat pci_config_teardown(&pci_conf);
3824e93fb0fSrugrat
3834e93fb0fSrugrat /* If IO not enabled or ISA/EISA, just return */
3844e93fb0fSrugrat if (!(softc->flags & VGATEXT_FLAG_CONSOLE) || !pci_pcie_bus)
3854e93fb0fSrugrat return;
3864e93fb0fSrugrat
3874e93fb0fSrugrat /*
3884e93fb0fSrugrat * Check for VGA Enable in the Bridge Control register for all
3894e93fb0fSrugrat * PCI/PCIEX parents. If not set all the way up the chain,
3904e93fb0fSrugrat * this cannot be the boot console.
3914e93fb0fSrugrat */
3924e93fb0fSrugrat
393*93a18d6dSEnrico Perla - Sun Microsystems pdevi = devi;
394*93a18d6dSEnrico Perla - Sun Microsystems while (pdevi = ddi_get_parent(pdevi)) {
3954e93fb0fSrugrat int error;
3964e93fb0fSrugrat ddi_acc_handle_t ppci_conf;
3974e93fb0fSrugrat char *parent_type = NULL;
3984e93fb0fSrugrat
3994e93fb0fSrugrat error = ddi_prop_lookup_string(DDI_DEV_T_ANY, pdevi,
4004e93fb0fSrugrat DDI_PROP_DONTPASS, "device_type", &parent_type);
4014e93fb0fSrugrat if (error != DDI_SUCCESS) {
4024e93fb0fSrugrat return;
4034e93fb0fSrugrat }
4044e93fb0fSrugrat
4054e93fb0fSrugrat /* Verify still on the PCI/PCIEX parent tree */
4064e93fb0fSrugrat if (!STREQ(parent_type, "pci") &&
4074e93fb0fSrugrat !STREQ(parent_type, "pciex")) {
4084e93fb0fSrugrat ddi_prop_free(parent_type);
4094e93fb0fSrugrat return;
4104e93fb0fSrugrat }
4114e93fb0fSrugrat
4124e93fb0fSrugrat ddi_prop_free(parent_type);
4134e93fb0fSrugrat parent_type = NULL;
4144e93fb0fSrugrat
415*93a18d6dSEnrico Perla - Sun Microsystems /* VGAEnable is set only for PCI-to-PCI bridges. */
416*93a18d6dSEnrico Perla - Sun Microsystems if (is_pci_bridge(pdevi) == B_FALSE)
417*93a18d6dSEnrico Perla - Sun Microsystems continue;
418*93a18d6dSEnrico Perla - Sun Microsystems
419*93a18d6dSEnrico Perla - Sun Microsystems if (pci_config_setup(pdevi, &ppci_conf) != DDI_SUCCESS)
420*93a18d6dSEnrico Perla - Sun Microsystems continue;
4214e93fb0fSrugrat
4224e93fb0fSrugrat data16 = pci_config_get16(ppci_conf, PCI_BCNF_BCNTRL);
4234e93fb0fSrugrat pci_config_teardown(&ppci_conf);
4244e93fb0fSrugrat
4254e93fb0fSrugrat if (!(data16 & PCI_BCNF_BCNTRL_VGA_ENABLE)) {
4264e93fb0fSrugrat softc->flags &= ~VGATEXT_FLAG_CONSOLE;
4274e93fb0fSrugrat return;
4284e93fb0fSrugrat }
4294e93fb0fSrugrat }
4304e93fb0fSrugrat }
4314e93fb0fSrugrat
4327c478bd9Sstevel@tonic-gate static int
vgatext_attach(dev_info_t * devi,ddi_attach_cmd_t cmd)4337c478bd9Sstevel@tonic-gate vgatext_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
4347c478bd9Sstevel@tonic-gate {
4357c478bd9Sstevel@tonic-gate struct vgatext_softc *softc;
4367c478bd9Sstevel@tonic-gate int unit = ddi_get_instance(devi);
4377c478bd9Sstevel@tonic-gate int error;
4387c478bd9Sstevel@tonic-gate char *parent_type = NULL;
4397c478bd9Sstevel@tonic-gate int reg_rnumber;
44060405de4Skz151634 int agpm = 0;
4417c478bd9Sstevel@tonic-gate off_t reg_offset;
4427c478bd9Sstevel@tonic-gate off_t mem_offset;
4437c478bd9Sstevel@tonic-gate char buf[80], *cons;
4444e93fb0fSrugrat int pci_pcie_bus = 0;
4457c478bd9Sstevel@tonic-gate
4467c478bd9Sstevel@tonic-gate
4477c478bd9Sstevel@tonic-gate switch (cmd) {
4487c478bd9Sstevel@tonic-gate case DDI_ATTACH:
4497c478bd9Sstevel@tonic-gate break;
4507c478bd9Sstevel@tonic-gate
4517c478bd9Sstevel@tonic-gate case DDI_RESUME:
4522df1fe9cSrandyf /*
4532df1fe9cSrandyf * Though vgatext doesn't really know how to resume
4542df1fe9cSrandyf * on a generic framebuffer, we should succeed, as
4552df1fe9cSrandyf * it is far better to have no console, than potentiall
4562df1fe9cSrandyf * have no machine.
4572df1fe9cSrandyf */
4587c478bd9Sstevel@tonic-gate return (DDI_SUCCESS);
4597c478bd9Sstevel@tonic-gate default:
4607c478bd9Sstevel@tonic-gate return (DDI_FAILURE);
4617c478bd9Sstevel@tonic-gate }
4627c478bd9Sstevel@tonic-gate
4637c478bd9Sstevel@tonic-gate /* DDI_ATTACH */
4647c478bd9Sstevel@tonic-gate
4657c478bd9Sstevel@tonic-gate /* Allocate softc struct */
4667c478bd9Sstevel@tonic-gate if (ddi_soft_state_zalloc(vgatext_softc_head, unit) != DDI_SUCCESS) {
4677c478bd9Sstevel@tonic-gate return (DDI_FAILURE);
4687c478bd9Sstevel@tonic-gate }
4697c478bd9Sstevel@tonic-gate softc = getsoftc(unit);
4707c478bd9Sstevel@tonic-gate
4717c478bd9Sstevel@tonic-gate /* link it in */
4727c478bd9Sstevel@tonic-gate softc->devi = devi;
4737c478bd9Sstevel@tonic-gate ddi_set_driver_private(devi, softc);
4747c478bd9Sstevel@tonic-gate
4757c478bd9Sstevel@tonic-gate softc->polledio.arg = (struct vis_polledio_arg *)softc;
4767c478bd9Sstevel@tonic-gate softc->polledio.display = vgatext_polled_display;
4777c478bd9Sstevel@tonic-gate softc->polledio.copy = vgatext_polled_copy;
4787c478bd9Sstevel@tonic-gate softc->polledio.cursor = vgatext_polled_cursor;
4797c478bd9Sstevel@tonic-gate
48048633f18SJan Setje-Eilers mutex_init(&(softc->lock), NULL, MUTEX_DRIVER, NULL);
48148633f18SJan Setje-Eilers
4827c478bd9Sstevel@tonic-gate error = ddi_prop_lookup_string(DDI_DEV_T_ANY, ddi_get_parent(devi),
4837c478bd9Sstevel@tonic-gate DDI_PROP_DONTPASS, "device_type", &parent_type);
4847c478bd9Sstevel@tonic-gate if (error != DDI_SUCCESS) {
4857c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, MYNAME ": can't determine parent type.");
4867c478bd9Sstevel@tonic-gate goto fail;
4877c478bd9Sstevel@tonic-gate }
4887c478bd9Sstevel@tonic-gate
4897c478bd9Sstevel@tonic-gate if (STREQ(parent_type, "isa") || STREQ(parent_type, "eisa")) {
4907c478bd9Sstevel@tonic-gate reg_rnumber = vgatext_get_isa_reg_index(devi, 1, VGA_REG_ADDR,
4917c478bd9Sstevel@tonic-gate ®_offset);
4927c478bd9Sstevel@tonic-gate if (reg_rnumber < 0) {
4937c478bd9Sstevel@tonic-gate cmn_err(CE_WARN,
4947c478bd9Sstevel@tonic-gate MYNAME ": can't find reg entry for registers");
4957ae111d4Sms148562 error = DDI_FAILURE;
4967c478bd9Sstevel@tonic-gate goto fail;
4977c478bd9Sstevel@tonic-gate }
4987c478bd9Sstevel@tonic-gate softc->fb_regno = vgatext_get_isa_reg_index(devi, 0,
4997c478bd9Sstevel@tonic-gate VGA_MEM_ADDR, &mem_offset);
5007c478bd9Sstevel@tonic-gate if (softc->fb_regno < 0) {
5017c478bd9Sstevel@tonic-gate cmn_err(CE_WARN,
5027c478bd9Sstevel@tonic-gate MYNAME ": can't find reg entry for memory");
5037ae111d4Sms148562 error = DDI_FAILURE;
5047c478bd9Sstevel@tonic-gate goto fail;
5057c478bd9Sstevel@tonic-gate }
50670025d76Sjohnny } else if (STREQ(parent_type, "pci") || STREQ(parent_type, "pciex")) {
5074e93fb0fSrugrat pci_pcie_bus = 1;
5087c478bd9Sstevel@tonic-gate reg_rnumber = vgatext_get_pci_reg_index(devi,
5097c478bd9Sstevel@tonic-gate PCI_REG_ADDR_M|PCI_REG_REL_M,
5107c478bd9Sstevel@tonic-gate PCI_ADDR_IO|PCI_RELOCAT_B, VGA_REG_ADDR,
5117c478bd9Sstevel@tonic-gate ®_offset);
5127c478bd9Sstevel@tonic-gate if (reg_rnumber < 0) {
5137c478bd9Sstevel@tonic-gate cmn_err(CE_WARN,
5147c478bd9Sstevel@tonic-gate MYNAME ": can't find reg entry for registers");
5157ae111d4Sms148562 error = DDI_FAILURE;
5167c478bd9Sstevel@tonic-gate goto fail;
5177c478bd9Sstevel@tonic-gate }
5187c478bd9Sstevel@tonic-gate softc->fb_regno = vgatext_get_pci_reg_index(devi,
5197c478bd9Sstevel@tonic-gate PCI_REG_ADDR_M|PCI_REG_REL_M,
5207c478bd9Sstevel@tonic-gate PCI_ADDR_MEM32|PCI_RELOCAT_B, VGA_MEM_ADDR,
5217c478bd9Sstevel@tonic-gate &mem_offset);
5227c478bd9Sstevel@tonic-gate if (softc->fb_regno < 0) {
5237c478bd9Sstevel@tonic-gate cmn_err(CE_WARN,
5247c478bd9Sstevel@tonic-gate MYNAME ": can't find reg entry for memory");
5257ae111d4Sms148562 error = DDI_FAILURE;
5267c478bd9Sstevel@tonic-gate goto fail;
5277c478bd9Sstevel@tonic-gate }
52860405de4Skz151634 agpm = 1; /* should have AGP master support */
5297c478bd9Sstevel@tonic-gate } else {
5307c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, MYNAME ": unknown parent type \"%s\".",
5317c478bd9Sstevel@tonic-gate parent_type);
5327ae111d4Sms148562 error = DDI_FAILURE;
5337c478bd9Sstevel@tonic-gate goto fail;
5347c478bd9Sstevel@tonic-gate }
5357c478bd9Sstevel@tonic-gate ddi_prop_free(parent_type);
5367c478bd9Sstevel@tonic-gate parent_type = NULL;
5377c478bd9Sstevel@tonic-gate
5387c478bd9Sstevel@tonic-gate error = ddi_regs_map_setup(devi, reg_rnumber,
5397c478bd9Sstevel@tonic-gate (caddr_t *)&softc->regs.addr, reg_offset, VGA_REG_SIZE,
5407c478bd9Sstevel@tonic-gate &dev_attr, &softc->regs.handle);
5417c478bd9Sstevel@tonic-gate if (error != DDI_SUCCESS)
5427c478bd9Sstevel@tonic-gate goto fail;
5437c478bd9Sstevel@tonic-gate softc->regs.mapped = B_TRUE;
5447c478bd9Sstevel@tonic-gate
5457c478bd9Sstevel@tonic-gate softc->fb_size = VGA_MEM_SIZE;
5467c478bd9Sstevel@tonic-gate
5477c478bd9Sstevel@tonic-gate error = ddi_regs_map_setup(devi, softc->fb_regno,
5487c478bd9Sstevel@tonic-gate (caddr_t *)&softc->fb.addr,
5497c478bd9Sstevel@tonic-gate mem_offset, softc->fb_size,
5507c478bd9Sstevel@tonic-gate &dev_attr, &softc->fb.handle);
5517c478bd9Sstevel@tonic-gate if (error != DDI_SUCCESS)
5527c478bd9Sstevel@tonic-gate goto fail;
5537c478bd9Sstevel@tonic-gate softc->fb.mapped = B_TRUE;
5547c478bd9Sstevel@tonic-gate
5554ab75253Smrj if (ddi_get8(softc->regs.handle,
5567c478bd9Sstevel@tonic-gate softc->regs.addr + VGA_MISC_R) & VGA_MISC_IOA_SEL)
5577c478bd9Sstevel@tonic-gate softc->text_base = (caddr_t)softc->fb.addr + VGA_COLOR_BASE;
5587c478bd9Sstevel@tonic-gate else
5597c478bd9Sstevel@tonic-gate softc->text_base = (caddr_t)softc->fb.addr + VGA_MONO_BASE;
56048633f18SJan Setje-Eilers
56148633f18SJan Setje-Eilers if (ddi_prop_lookup_string(DDI_DEV_T_ANY, ddi_root_node(),
56248633f18SJan Setje-Eilers DDI_PROP_DONTPASS, "console", &cons) == DDI_SUCCESS) {
56348633f18SJan Setje-Eilers if (strcmp(cons, "graphics") == 0) {
56448633f18SJan Setje-Eilers happyface_boot = 1;
56548633f18SJan Setje-Eilers vgatext_silent = 1;
56648633f18SJan Setje-Eilers softc->current_base = softc->shadow;
56748633f18SJan Setje-Eilers } else {
5687c478bd9Sstevel@tonic-gate softc->current_base = softc->text_base;
56948633f18SJan Setje-Eilers }
57048633f18SJan Setje-Eilers ddi_prop_free(cons);
57148633f18SJan Setje-Eilers } else {
57248633f18SJan Setje-Eilers softc->current_base = softc->text_base;
57348633f18SJan Setje-Eilers }
5747c478bd9Sstevel@tonic-gate
5757c478bd9Sstevel@tonic-gate (void) sprintf(buf, "text-%d", unit);
5767c478bd9Sstevel@tonic-gate error = ddi_create_minor_node(devi, buf, S_IFCHR,
5777c478bd9Sstevel@tonic-gate INST2NODE1(unit), DDI_NT_DISPLAY, NULL);
5787c478bd9Sstevel@tonic-gate if (error != DDI_SUCCESS)
5797c478bd9Sstevel@tonic-gate goto fail;
5807c478bd9Sstevel@tonic-gate
5817c478bd9Sstevel@tonic-gate error = ddi_prop_create(makedevice(DDI_MAJOR_T_UNKNOWN, unit),
5827c478bd9Sstevel@tonic-gate devi, DDI_PROP_CANSLEEP, DDI_KERNEL_IOCTL, NULL, 0);
5837c478bd9Sstevel@tonic-gate if (error != DDI_SUCCESS)
5847c478bd9Sstevel@tonic-gate goto fail;
5857c478bd9Sstevel@tonic-gate
5864e93fb0fSrugrat vgatext_check_for_console(devi, softc, pci_pcie_bus);
5874e93fb0fSrugrat
5887c478bd9Sstevel@tonic-gate /* only do this if not in graphics mode */
5894e93fb0fSrugrat if ((vgatext_silent == 0) && (VGATEXT_IS_CONSOLE(softc))) {
5907c478bd9Sstevel@tonic-gate vgatext_init(softc);
5917c478bd9Sstevel@tonic-gate vgatext_save_colormap(softc);
5927c478bd9Sstevel@tonic-gate }
5937c478bd9Sstevel@tonic-gate
59460405de4Skz151634 if (agpm != 0) { /* try AGP master attach */
59560405de4Skz151634 /* setup mapping for PCI config space access */
59660405de4Skz151634 softc->pci_cfg_hdlp = (ddi_acc_handle_t *)
59760405de4Skz151634 kmem_zalloc(sizeof (ddi_acc_handle_t), KM_SLEEP);
59860405de4Skz151634 error = pci_config_setup(devi, softc->pci_cfg_hdlp);
59960405de4Skz151634 if (error != DDI_SUCCESS) {
60060405de4Skz151634 cmn_err(CE_WARN, "vgatext_attach: "
60160405de4Skz151634 "PCI configuration space setup failed");
60260405de4Skz151634 goto fail;
6037c478bd9Sstevel@tonic-gate }
60460405de4Skz151634
60560405de4Skz151634 (void) agpmaster_attach(softc->devi, &softc->agp_master,
60660405de4Skz151634 *softc->pci_cfg_hdlp, INST2NODE2(unit));
6077c478bd9Sstevel@tonic-gate }
6087c478bd9Sstevel@tonic-gate
6097c478bd9Sstevel@tonic-gate return (DDI_SUCCESS);
6107c478bd9Sstevel@tonic-gate
6117c478bd9Sstevel@tonic-gate fail:
6127c478bd9Sstevel@tonic-gate if (parent_type != NULL)
6137c478bd9Sstevel@tonic-gate ddi_prop_free(parent_type);
6147c478bd9Sstevel@tonic-gate (void) vgatext_detach(devi, DDI_DETACH);
6157c478bd9Sstevel@tonic-gate return (error);
6167c478bd9Sstevel@tonic-gate }
6177c478bd9Sstevel@tonic-gate
6187c478bd9Sstevel@tonic-gate static int
vgatext_detach(dev_info_t * devi,ddi_detach_cmd_t cmd)6197c478bd9Sstevel@tonic-gate vgatext_detach(dev_info_t *devi, ddi_detach_cmd_t cmd)
6207c478bd9Sstevel@tonic-gate {
6217c478bd9Sstevel@tonic-gate int instance = ddi_get_instance(devi);
6227c478bd9Sstevel@tonic-gate struct vgatext_softc *softc = getsoftc(instance);
6237c478bd9Sstevel@tonic-gate
6247c478bd9Sstevel@tonic-gate
6257c478bd9Sstevel@tonic-gate switch (cmd) {
6267c478bd9Sstevel@tonic-gate case DDI_DETACH:
6277c478bd9Sstevel@tonic-gate if (softc->agp_master != NULL) { /* agp initiated */
62860405de4Skz151634 agpmaster_detach(&softc->agp_master);
62960405de4Skz151634 pci_config_teardown(softc->pci_cfg_hdlp);
6307c478bd9Sstevel@tonic-gate }
6317c478bd9Sstevel@tonic-gate
6327c478bd9Sstevel@tonic-gate if (softc->fb.mapped)
6337c478bd9Sstevel@tonic-gate ddi_regs_map_free(&softc->fb.handle);
6347c478bd9Sstevel@tonic-gate if (softc->regs.mapped)
6357c478bd9Sstevel@tonic-gate ddi_regs_map_free(&softc->regs.handle);
63648633f18SJan Setje-Eilers mutex_destroy(&(softc->lock));
6377c478bd9Sstevel@tonic-gate ddi_remove_minor_node(devi, NULL);
6387c478bd9Sstevel@tonic-gate (void) ddi_soft_state_free(vgatext_softc_head, instance);
6397c478bd9Sstevel@tonic-gate return (DDI_SUCCESS);
6407c478bd9Sstevel@tonic-gate
6412df1fe9cSrandyf case DDI_SUSPEND:
6422df1fe9cSrandyf /*
6432df1fe9cSrandyf * This is a generic VGA file, and therefore, cannot
6442df1fe9cSrandyf * understand how to deal with suspend and resume on
6452df1fe9cSrandyf * a generic interface. So we fail any attempt to
6462df1fe9cSrandyf * suspend. At some point in the future, we might use
6472df1fe9cSrandyf * this as an entrypoint for display drivers and this
6482df1fe9cSrandyf * assumption may change.
6492df1fe9cSrandyf *
6502df1fe9cSrandyf * However, from a platform development perspective,
6512df1fe9cSrandyf * it is important that this driver suspend if a
6522df1fe9cSrandyf * developer is using a serial console and/or working
6532df1fe9cSrandyf * on a framebuffer driver that will support suspend
6542df1fe9cSrandyf * and resume. Therefore, we have this module tunable
6552df1fe9cSrandyf * (purposely using a long name) that will allow for
6562df1fe9cSrandyf * suspend it it is set. Otherwise we fail.
6572df1fe9cSrandyf */
6582df1fe9cSrandyf if (vgatext_force_suspend != 0)
6592df1fe9cSrandyf return (DDI_SUCCESS);
6602df1fe9cSrandyf else
6612df1fe9cSrandyf return (DDI_FAILURE);
6622df1fe9cSrandyf
6637c478bd9Sstevel@tonic-gate default:
6647c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "vgatext_detach: unknown cmd 0x%x\n", cmd);
6657c478bd9Sstevel@tonic-gate return (DDI_FAILURE);
6667c478bd9Sstevel@tonic-gate }
6677c478bd9Sstevel@tonic-gate }
6687c478bd9Sstevel@tonic-gate
6697c478bd9Sstevel@tonic-gate /*ARGSUSED*/
6707c478bd9Sstevel@tonic-gate static int
vgatext_info(dev_info_t * dip,ddi_info_cmd_t infocmd,void * arg,void ** result)6717c478bd9Sstevel@tonic-gate vgatext_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
6727c478bd9Sstevel@tonic-gate {
6737c478bd9Sstevel@tonic-gate dev_t dev;
6747c478bd9Sstevel@tonic-gate int error;
6757c478bd9Sstevel@tonic-gate int instance;
6767c478bd9Sstevel@tonic-gate struct vgatext_softc *softc;
6777c478bd9Sstevel@tonic-gate
6787c478bd9Sstevel@tonic-gate error = DDI_SUCCESS;
6797c478bd9Sstevel@tonic-gate
6807c478bd9Sstevel@tonic-gate dev = (dev_t)arg;
6817c478bd9Sstevel@tonic-gate instance = DEV2INST(dev);
6827c478bd9Sstevel@tonic-gate softc = getsoftc(instance);
6837c478bd9Sstevel@tonic-gate
6847c478bd9Sstevel@tonic-gate switch (infocmd) {
6857c478bd9Sstevel@tonic-gate case DDI_INFO_DEVT2DEVINFO:
6867c478bd9Sstevel@tonic-gate if (softc == NULL || softc->devi == NULL) {
6877c478bd9Sstevel@tonic-gate error = DDI_FAILURE;
6887c478bd9Sstevel@tonic-gate } else {
6897c478bd9Sstevel@tonic-gate *result = (void *) softc->devi;
6907c478bd9Sstevel@tonic-gate error = DDI_SUCCESS;
6917c478bd9Sstevel@tonic-gate }
6927c478bd9Sstevel@tonic-gate break;
6937c478bd9Sstevel@tonic-gate case DDI_INFO_DEVT2INSTANCE:
6947c478bd9Sstevel@tonic-gate *result = (void *)(uintptr_t)instance;
6957c478bd9Sstevel@tonic-gate error = DDI_SUCCESS;
6967c478bd9Sstevel@tonic-gate break;
6977c478bd9Sstevel@tonic-gate default:
6987c478bd9Sstevel@tonic-gate error = DDI_FAILURE;
6997c478bd9Sstevel@tonic-gate break;
7007c478bd9Sstevel@tonic-gate }
7017c478bd9Sstevel@tonic-gate return (error);
7027c478bd9Sstevel@tonic-gate }
7037c478bd9Sstevel@tonic-gate
7047c478bd9Sstevel@tonic-gate
7057c478bd9Sstevel@tonic-gate /*ARGSUSED*/
7067c478bd9Sstevel@tonic-gate static int
vgatext_open(dev_t * devp,int flag,int otyp,cred_t * cred)7077c478bd9Sstevel@tonic-gate vgatext_open(dev_t *devp, int flag, int otyp, cred_t *cred)
7087c478bd9Sstevel@tonic-gate {
7097c478bd9Sstevel@tonic-gate struct vgatext_softc *softc = getsoftc(DEV2INST(*devp));
7107c478bd9Sstevel@tonic-gate
7117c478bd9Sstevel@tonic-gate if (softc == NULL || otyp == OTYP_BLK)
7127c478bd9Sstevel@tonic-gate return (ENXIO);
7137c478bd9Sstevel@tonic-gate
7147c478bd9Sstevel@tonic-gate return (0);
7157c478bd9Sstevel@tonic-gate }
7167c478bd9Sstevel@tonic-gate
7177c478bd9Sstevel@tonic-gate /*ARGSUSED*/
7187c478bd9Sstevel@tonic-gate static int
vgatext_close(dev_t devp,int flag,int otyp,cred_t * cred)7197c478bd9Sstevel@tonic-gate vgatext_close(dev_t devp, int flag, int otyp, cred_t *cred)
7207c478bd9Sstevel@tonic-gate {
7217c478bd9Sstevel@tonic-gate return (0);
7227c478bd9Sstevel@tonic-gate }
7237c478bd9Sstevel@tonic-gate
7247c478bd9Sstevel@tonic-gate static int
do_gfx_ioctl(int cmd,intptr_t data,int mode,struct vgatext_softc * softc)72560405de4Skz151634 do_gfx_ioctl(int cmd, intptr_t data, int mode, struct vgatext_softc *softc)
7267c478bd9Sstevel@tonic-gate {
72760405de4Skz151634 static char kernel_only[] =
72860405de4Skz151634 "do_gfx_ioctl: %s is a kernel only ioctl";
7297c478bd9Sstevel@tonic-gate int err;
7307c478bd9Sstevel@tonic-gate int kd_mode;
7317c478bd9Sstevel@tonic-gate
7327c478bd9Sstevel@tonic-gate switch (cmd) {
7337c478bd9Sstevel@tonic-gate case KDSETMODE:
7347c478bd9Sstevel@tonic-gate return (vgatext_kdsetmode(softc, (int)data));
7357c478bd9Sstevel@tonic-gate
7367c478bd9Sstevel@tonic-gate case KDGETMODE:
7377c478bd9Sstevel@tonic-gate kd_mode = softc->mode;
7387c478bd9Sstevel@tonic-gate if (ddi_copyout(&kd_mode, (void *)data, sizeof (int), mode))
7397c478bd9Sstevel@tonic-gate return (EFAULT);
7407c478bd9Sstevel@tonic-gate break;
7417c478bd9Sstevel@tonic-gate
7427c478bd9Sstevel@tonic-gate case VIS_GETIDENTIFIER:
7437c478bd9Sstevel@tonic-gate if (ddi_copyout(&text_ident, (void *)data,
7447c478bd9Sstevel@tonic-gate sizeof (struct vis_identifier), mode))
7457c478bd9Sstevel@tonic-gate return (EFAULT);
7467c478bd9Sstevel@tonic-gate break;
7477c478bd9Sstevel@tonic-gate
7487c478bd9Sstevel@tonic-gate case VIS_DEVINIT:
7497c478bd9Sstevel@tonic-gate
7507c478bd9Sstevel@tonic-gate if (!(mode & FKIOCTL)) {
7517c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, kernel_only, "VIS_DEVINIT");
7527c478bd9Sstevel@tonic-gate return (ENXIO);
7537c478bd9Sstevel@tonic-gate }
7547c478bd9Sstevel@tonic-gate
7557c478bd9Sstevel@tonic-gate err = vgatext_devinit(softc, (struct vis_devinit *)data);
7567c478bd9Sstevel@tonic-gate if (err != 0) {
7577c478bd9Sstevel@tonic-gate cmn_err(CE_WARN,
7587c478bd9Sstevel@tonic-gate "vgatext_ioctl: could not initialize console");
7597c478bd9Sstevel@tonic-gate return (err);
7607c478bd9Sstevel@tonic-gate }
7617c478bd9Sstevel@tonic-gate break;
7627c478bd9Sstevel@tonic-gate
7637c478bd9Sstevel@tonic-gate case VIS_CONSCOPY: /* move */
7647c478bd9Sstevel@tonic-gate {
7657c478bd9Sstevel@tonic-gate struct vis_conscopy pma;
7667c478bd9Sstevel@tonic-gate
7677c478bd9Sstevel@tonic-gate if (ddi_copyin((void *)data, &pma,
7687c478bd9Sstevel@tonic-gate sizeof (struct vis_conscopy), mode))
7697c478bd9Sstevel@tonic-gate return (EFAULT);
7707c478bd9Sstevel@tonic-gate
7717c478bd9Sstevel@tonic-gate vgatext_cons_copy(softc, &pma);
7727c478bd9Sstevel@tonic-gate break;
7737c478bd9Sstevel@tonic-gate }
7747c478bd9Sstevel@tonic-gate
7757c478bd9Sstevel@tonic-gate case VIS_CONSDISPLAY: /* display */
7767c478bd9Sstevel@tonic-gate {
7777c478bd9Sstevel@tonic-gate struct vis_consdisplay display_request;
7787c478bd9Sstevel@tonic-gate
7797c478bd9Sstevel@tonic-gate if (ddi_copyin((void *)data, &display_request,
7807c478bd9Sstevel@tonic-gate sizeof (display_request), mode))
7817c478bd9Sstevel@tonic-gate return (EFAULT);
7827c478bd9Sstevel@tonic-gate
7837c478bd9Sstevel@tonic-gate vgatext_cons_display(softc, &display_request);
7847c478bd9Sstevel@tonic-gate break;
7857c478bd9Sstevel@tonic-gate }
7867c478bd9Sstevel@tonic-gate
7877c478bd9Sstevel@tonic-gate case VIS_CONSCURSOR:
7887c478bd9Sstevel@tonic-gate {
7897c478bd9Sstevel@tonic-gate struct vis_conscursor cursor_request;
7907c478bd9Sstevel@tonic-gate
7917c478bd9Sstevel@tonic-gate if (ddi_copyin((void *)data, &cursor_request,
7927c478bd9Sstevel@tonic-gate sizeof (cursor_request), mode))
7937c478bd9Sstevel@tonic-gate return (EFAULT);
7947c478bd9Sstevel@tonic-gate
7957c478bd9Sstevel@tonic-gate vgatext_cons_cursor(softc, &cursor_request);
7967c478bd9Sstevel@tonic-gate
7977c478bd9Sstevel@tonic-gate if (cursor_request.action == VIS_GET_CURSOR &&
7987c478bd9Sstevel@tonic-gate ddi_copyout(&cursor_request, (void *)data,
7997c478bd9Sstevel@tonic-gate sizeof (cursor_request), mode))
8007c478bd9Sstevel@tonic-gate return (EFAULT);
8017c478bd9Sstevel@tonic-gate break;
8027c478bd9Sstevel@tonic-gate }
8037c478bd9Sstevel@tonic-gate
8047c478bd9Sstevel@tonic-gate case VIS_GETCMAP:
8057c478bd9Sstevel@tonic-gate case VIS_PUTCMAP:
8067c478bd9Sstevel@tonic-gate case FBIOPUTCMAP:
8077c478bd9Sstevel@tonic-gate case FBIOGETCMAP:
8087c478bd9Sstevel@tonic-gate /*
8097c478bd9Sstevel@tonic-gate * At the moment, text mode is not considered to have
8107c478bd9Sstevel@tonic-gate * a color map.
8117c478bd9Sstevel@tonic-gate */
8127c478bd9Sstevel@tonic-gate return (EINVAL);
8137c478bd9Sstevel@tonic-gate
8147c478bd9Sstevel@tonic-gate case FBIOGATTR:
8157c478bd9Sstevel@tonic-gate if (copyout(&vgatext_attr, (void *)data,
8167c478bd9Sstevel@tonic-gate sizeof (struct fbgattr)))
8177c478bd9Sstevel@tonic-gate return (EFAULT);
8187c478bd9Sstevel@tonic-gate break;
8197c478bd9Sstevel@tonic-gate
8207c478bd9Sstevel@tonic-gate case FBIOGTYPE:
8217c478bd9Sstevel@tonic-gate if (copyout(&vgatext_attr.fbtype, (void *)data,
8227c478bd9Sstevel@tonic-gate sizeof (struct fbtype)))
8237c478bd9Sstevel@tonic-gate return (EFAULT);
8247c478bd9Sstevel@tonic-gate break;
8257c478bd9Sstevel@tonic-gate
8267c478bd9Sstevel@tonic-gate default:
8277c478bd9Sstevel@tonic-gate return (ENXIO);
8287c478bd9Sstevel@tonic-gate }
8297c478bd9Sstevel@tonic-gate return (0);
8307c478bd9Sstevel@tonic-gate }
8317c478bd9Sstevel@tonic-gate
83260405de4Skz151634
83360405de4Skz151634 /*ARGSUSED*/
83460405de4Skz151634 static int
vgatext_ioctl(dev_t dev,int cmd,intptr_t data,int mode,cred_t * cred,int * rval)83560405de4Skz151634 vgatext_ioctl(
83660405de4Skz151634 dev_t dev,
83760405de4Skz151634 int cmd,
83860405de4Skz151634 intptr_t data,
83960405de4Skz151634 int mode,
84060405de4Skz151634 cred_t *cred,
84160405de4Skz151634 int *rval)
84260405de4Skz151634 {
84360405de4Skz151634 struct vgatext_softc *softc = getsoftc(DEV2INST(dev));
84460405de4Skz151634 int err;
84560405de4Skz151634
84660405de4Skz151634 switch (DEV2MINOR(dev)) {
84760405de4Skz151634 case GFX_MINOR:
84848633f18SJan Setje-Eilers mutex_enter(&(softc->lock));
84960405de4Skz151634 err = do_gfx_ioctl(cmd, data, mode, softc);
85048633f18SJan Setje-Eilers mutex_exit(&(softc->lock));
85160405de4Skz151634 break;
85260405de4Skz151634
85360405de4Skz151634 case AGPMASTER_MINOR:
85460405de4Skz151634 err = agpmaster_ioctl(dev, cmd, data, mode, cred, rval,
85560405de4Skz151634 softc->agp_master);
85660405de4Skz151634 break;
85760405de4Skz151634
85860405de4Skz151634 default:
85960405de4Skz151634 /* not a valid minor node */
86060405de4Skz151634 return (EBADF);
86160405de4Skz151634 }
86260405de4Skz151634 return (err);
86360405de4Skz151634 }
86460405de4Skz151634
86548633f18SJan Setje-Eilers static void
vgatext_save_text(struct vgatext_softc * softc)86648633f18SJan Setje-Eilers vgatext_save_text(struct vgatext_softc *softc)
86748633f18SJan Setje-Eilers {
86848633f18SJan Setje-Eilers unsigned i;
86948633f18SJan Setje-Eilers
87048633f18SJan Setje-Eilers for (i = 0; i < sizeof (softc->shadow); i++)
87148633f18SJan Setje-Eilers softc->shadow[i] = softc->current_base[i];
87248633f18SJan Setje-Eilers }
87348633f18SJan Setje-Eilers
87448633f18SJan Setje-Eilers static void
vgatext_progressbar_stop()87548633f18SJan Setje-Eilers vgatext_progressbar_stop()
87648633f18SJan Setje-Eilers {
87748633f18SJan Setje-Eilers extern void progressbar_stop(void);
87848633f18SJan Setje-Eilers
87948633f18SJan Setje-Eilers if (vgatext_silent == 1) {
88048633f18SJan Setje-Eilers vgatext_silent = 0;
88148633f18SJan Setje-Eilers progressbar_stop();
88248633f18SJan Setje-Eilers }
88348633f18SJan Setje-Eilers }
88448633f18SJan Setje-Eilers
88548633f18SJan Setje-Eilers static void
vgatext_kdsettext(struct vgatext_softc * softc)88648633f18SJan Setje-Eilers vgatext_kdsettext(struct vgatext_softc *softc)
8877c478bd9Sstevel@tonic-gate {
8887c478bd9Sstevel@tonic-gate int i;
8897c478bd9Sstevel@tonic-gate
8907c478bd9Sstevel@tonic-gate vgatext_init(softc);
8917c478bd9Sstevel@tonic-gate for (i = 0; i < sizeof (softc->shadow); i++) {
8927c478bd9Sstevel@tonic-gate softc->text_base[i] = softc->shadow[i];
8937c478bd9Sstevel@tonic-gate }
8947c478bd9Sstevel@tonic-gate softc->current_base = softc->text_base;
8957c478bd9Sstevel@tonic-gate if (softc->cursor.visible) {
8967c478bd9Sstevel@tonic-gate vgatext_set_cursor(softc,
8977c478bd9Sstevel@tonic-gate softc->cursor.row, softc->cursor.col);
8987c478bd9Sstevel@tonic-gate }
8997c478bd9Sstevel@tonic-gate vgatext_restore_colormap(softc);
9007c478bd9Sstevel@tonic-gate }
90148633f18SJan Setje-Eilers
90248633f18SJan Setje-Eilers static void
vgatext_kdsetgraphics(struct vgatext_softc * softc)90348633f18SJan Setje-Eilers vgatext_kdsetgraphics(struct vgatext_softc *softc)
90448633f18SJan Setje-Eilers {
90548633f18SJan Setje-Eilers vgatext_progressbar_stop();
90648633f18SJan Setje-Eilers vgatext_save_text(softc);
9077c478bd9Sstevel@tonic-gate softc->current_base = softc->shadow;
9087c478bd9Sstevel@tonic-gate #if defined(USE_BORDERS)
9097c478bd9Sstevel@tonic-gate vgatext_init_graphics(softc);
9107c478bd9Sstevel@tonic-gate #endif
91148633f18SJan Setje-Eilers }
91248633f18SJan Setje-Eilers
91348633f18SJan Setje-Eilers static int
vgatext_kdsetmode(struct vgatext_softc * softc,int mode)91448633f18SJan Setje-Eilers vgatext_kdsetmode(struct vgatext_softc *softc, int mode)
91548633f18SJan Setje-Eilers {
91648633f18SJan Setje-Eilers if ((mode == softc->mode) || (!VGATEXT_IS_CONSOLE(softc)))
91748633f18SJan Setje-Eilers return (0);
91848633f18SJan Setje-Eilers
91948633f18SJan Setje-Eilers switch (mode) {
92048633f18SJan Setje-Eilers case KD_TEXT:
92148633f18SJan Setje-Eilers vgatext_kdsettext(softc);
92248633f18SJan Setje-Eilers break;
92348633f18SJan Setje-Eilers
92448633f18SJan Setje-Eilers case KD_GRAPHICS:
92548633f18SJan Setje-Eilers vgatext_kdsetgraphics(softc);
92648633f18SJan Setje-Eilers break;
92748633f18SJan Setje-Eilers
92848633f18SJan Setje-Eilers case KD_RESETTEXT:
92948633f18SJan Setje-Eilers /*
93048633f18SJan Setje-Eilers * In order to avoid racing with a starting X server,
93148633f18SJan Setje-Eilers * this needs to be a test and set that is performed in
93248633f18SJan Setje-Eilers * a single (softc->lock protected) ioctl into this driver.
93348633f18SJan Setje-Eilers */
93448633f18SJan Setje-Eilers if (softc->mode == KD_TEXT && vgatext_silent == 1) {
93548633f18SJan Setje-Eilers vgatext_progressbar_stop();
93648633f18SJan Setje-Eilers vgatext_kdsettext(softc);
93748633f18SJan Setje-Eilers }
9387c478bd9Sstevel@tonic-gate break;
9397c478bd9Sstevel@tonic-gate
9407c478bd9Sstevel@tonic-gate default:
9417c478bd9Sstevel@tonic-gate return (EINVAL);
9427c478bd9Sstevel@tonic-gate }
9437c478bd9Sstevel@tonic-gate softc->mode = mode;
9447c478bd9Sstevel@tonic-gate return (0);
9457c478bd9Sstevel@tonic-gate }
9467c478bd9Sstevel@tonic-gate
9477c478bd9Sstevel@tonic-gate /*ARGSUSED*/
9487c478bd9Sstevel@tonic-gate static int
vgatext_devmap(dev_t dev,devmap_cookie_t dhp,offset_t off,size_t len,size_t * maplen,uint_t model)9497c478bd9Sstevel@tonic-gate vgatext_devmap(dev_t dev, devmap_cookie_t dhp, offset_t off, size_t len,
9507c478bd9Sstevel@tonic-gate size_t *maplen, uint_t model)
9517c478bd9Sstevel@tonic-gate {
9527c478bd9Sstevel@tonic-gate struct vgatext_softc *softc;
9537c478bd9Sstevel@tonic-gate int err;
9547c478bd9Sstevel@tonic-gate size_t length;
9557c478bd9Sstevel@tonic-gate
9567c478bd9Sstevel@tonic-gate
9577c478bd9Sstevel@tonic-gate softc = getsoftc(DEV2INST(dev));
9587c478bd9Sstevel@tonic-gate if (softc == NULL) {
9597c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "vgatext: Can't find softstate");
9607c478bd9Sstevel@tonic-gate return (-1);
9617c478bd9Sstevel@tonic-gate }
9627c478bd9Sstevel@tonic-gate
9637c478bd9Sstevel@tonic-gate if (!(off >= VGA_MMAP_FB_BASE &&
9647c478bd9Sstevel@tonic-gate off < VGA_MMAP_FB_BASE + softc->fb_size)) {
9657c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "vgatext: Can't map offset 0x%llx", off);
9667c478bd9Sstevel@tonic-gate return (-1);
9677c478bd9Sstevel@tonic-gate }
9687c478bd9Sstevel@tonic-gate
9697c478bd9Sstevel@tonic-gate if (off + len > VGA_MMAP_FB_BASE + softc->fb_size)
9707c478bd9Sstevel@tonic-gate length = VGA_MMAP_FB_BASE + softc->fb_size - off;
9717c478bd9Sstevel@tonic-gate else
9727c478bd9Sstevel@tonic-gate length = len;
9737c478bd9Sstevel@tonic-gate
9747c478bd9Sstevel@tonic-gate if ((err = devmap_devmem_setup(dhp, softc->devi, NULL, softc->fb_regno,
9757c478bd9Sstevel@tonic-gate off - VGA_MMAP_FB_BASE,
9767c478bd9Sstevel@tonic-gate length, PROT_ALL, 0, &dev_attr)) < 0) {
9777c478bd9Sstevel@tonic-gate return (err);
9787c478bd9Sstevel@tonic-gate }
9797c478bd9Sstevel@tonic-gate
9807c478bd9Sstevel@tonic-gate
9817c478bd9Sstevel@tonic-gate *maplen = length;
9827c478bd9Sstevel@tonic-gate return (0);
9837c478bd9Sstevel@tonic-gate }
9847c478bd9Sstevel@tonic-gate
9857c478bd9Sstevel@tonic-gate
9867c478bd9Sstevel@tonic-gate static int
vgatext_devinit(struct vgatext_softc * softc,struct vis_devinit * data)9877c478bd9Sstevel@tonic-gate vgatext_devinit(struct vgatext_softc *softc, struct vis_devinit *data)
9887c478bd9Sstevel@tonic-gate {
9897c478bd9Sstevel@tonic-gate /* initialize console instance */
9907c478bd9Sstevel@tonic-gate data->version = VIS_CONS_REV;
9917c478bd9Sstevel@tonic-gate data->width = TEXT_COLS;
9927c478bd9Sstevel@tonic-gate data->height = TEXT_ROWS;
9937c478bd9Sstevel@tonic-gate data->linebytes = TEXT_COLS;
9947c478bd9Sstevel@tonic-gate data->depth = 4;
9957c478bd9Sstevel@tonic-gate data->mode = VIS_TEXT;
9967c478bd9Sstevel@tonic-gate data->polledio = &softc->polledio;
9977c478bd9Sstevel@tonic-gate
9987c478bd9Sstevel@tonic-gate return (0);
9997c478bd9Sstevel@tonic-gate }
10007c478bd9Sstevel@tonic-gate
10017c478bd9Sstevel@tonic-gate /*
10027c478bd9Sstevel@tonic-gate * display a string on the screen at (row, col)
10037c478bd9Sstevel@tonic-gate * assume it has been cropped to fit.
10047c478bd9Sstevel@tonic-gate */
10057c478bd9Sstevel@tonic-gate
10067c478bd9Sstevel@tonic-gate static void
vgatext_cons_display(struct vgatext_softc * softc,struct vis_consdisplay * da)10077c478bd9Sstevel@tonic-gate vgatext_cons_display(struct vgatext_softc *softc, struct vis_consdisplay *da)
10087c478bd9Sstevel@tonic-gate {
10097c478bd9Sstevel@tonic-gate unsigned char *string;
10107c478bd9Sstevel@tonic-gate int i;
10117c478bd9Sstevel@tonic-gate unsigned char attr;
10127c478bd9Sstevel@tonic-gate struct cgatext {
10137c478bd9Sstevel@tonic-gate unsigned char ch;
10147c478bd9Sstevel@tonic-gate unsigned char attr;
10157c478bd9Sstevel@tonic-gate };
10167c478bd9Sstevel@tonic-gate struct cgatext *addr;
10177c478bd9Sstevel@tonic-gate
10187c478bd9Sstevel@tonic-gate /*
10197c478bd9Sstevel@tonic-gate * Sanity checks. This is a last-ditch effort to avoid damage
10207c478bd9Sstevel@tonic-gate * from brokenness or maliciousness above.
10217c478bd9Sstevel@tonic-gate */
10227c478bd9Sstevel@tonic-gate if (da->row < 0 || da->row >= TEXT_ROWS ||
10237c478bd9Sstevel@tonic-gate da->col < 0 || da->col >= TEXT_COLS ||
10247c478bd9Sstevel@tonic-gate da->col + da->width > TEXT_COLS)
10257c478bd9Sstevel@tonic-gate return;
10267c478bd9Sstevel@tonic-gate
10277c478bd9Sstevel@tonic-gate /*
10287c478bd9Sstevel@tonic-gate * To be fully general, we should copyin the data. This is not
10297c478bd9Sstevel@tonic-gate * really relevant for this text-only driver, but a graphical driver
10307c478bd9Sstevel@tonic-gate * should support these ioctls from userland to enable simple
10317c478bd9Sstevel@tonic-gate * system startup graphics.
10327c478bd9Sstevel@tonic-gate */
10337c478bd9Sstevel@tonic-gate attr = (solaris_color_to_pc_color[da->bg_color & 0xf] << 4)
10347c478bd9Sstevel@tonic-gate | solaris_color_to_pc_color[da->fg_color & 0xf];
10357c478bd9Sstevel@tonic-gate string = da->data;
10367c478bd9Sstevel@tonic-gate addr = (struct cgatext *)softc->current_base
10377c478bd9Sstevel@tonic-gate + (da->row * TEXT_COLS + da->col);
10387c478bd9Sstevel@tonic-gate for (i = 0; i < da->width; i++) {
10397c478bd9Sstevel@tonic-gate addr->ch = string[i];
10407c478bd9Sstevel@tonic-gate addr->attr = attr;
10417c478bd9Sstevel@tonic-gate addr++;
10427c478bd9Sstevel@tonic-gate }
10437c478bd9Sstevel@tonic-gate }
10447c478bd9Sstevel@tonic-gate
10457c478bd9Sstevel@tonic-gate static void
vgatext_polled_display(struct vis_polledio_arg * arg,struct vis_consdisplay * da)10467c478bd9Sstevel@tonic-gate vgatext_polled_display(
10477c478bd9Sstevel@tonic-gate struct vis_polledio_arg *arg,
10487c478bd9Sstevel@tonic-gate struct vis_consdisplay *da)
10497c478bd9Sstevel@tonic-gate {
10507c478bd9Sstevel@tonic-gate vgatext_cons_display((struct vgatext_softc *)arg, da);
10517c478bd9Sstevel@tonic-gate }
10527c478bd9Sstevel@tonic-gate
10537c478bd9Sstevel@tonic-gate /*
10547c478bd9Sstevel@tonic-gate * screen-to-screen copy
10557c478bd9Sstevel@tonic-gate */
10567c478bd9Sstevel@tonic-gate
10577c478bd9Sstevel@tonic-gate static void
vgatext_cons_copy(struct vgatext_softc * softc,struct vis_conscopy * ma)10587c478bd9Sstevel@tonic-gate vgatext_cons_copy(struct vgatext_softc *softc, struct vis_conscopy *ma)
10597c478bd9Sstevel@tonic-gate {
10607c478bd9Sstevel@tonic-gate unsigned short *from;
10617c478bd9Sstevel@tonic-gate unsigned short *to;
10627c478bd9Sstevel@tonic-gate int cnt;
10637c478bd9Sstevel@tonic-gate screen_size_t chars_per_row;
10647c478bd9Sstevel@tonic-gate unsigned short *to_row_start;
10657c478bd9Sstevel@tonic-gate unsigned short *from_row_start;
10667c478bd9Sstevel@tonic-gate screen_size_t rows_to_move;
10677c478bd9Sstevel@tonic-gate unsigned short *base;
10687c478bd9Sstevel@tonic-gate
10697c478bd9Sstevel@tonic-gate /*
10707c478bd9Sstevel@tonic-gate * Sanity checks. Note that this is a last-ditch effort to avoid
10717c478bd9Sstevel@tonic-gate * damage caused by broken-ness or maliciousness above.
10727c478bd9Sstevel@tonic-gate */
10737c478bd9Sstevel@tonic-gate if (ma->s_col < 0 || ma->s_col >= TEXT_COLS ||
10747c478bd9Sstevel@tonic-gate ma->s_row < 0 || ma->s_row >= TEXT_ROWS ||
10757c478bd9Sstevel@tonic-gate ma->e_col < 0 || ma->e_col >= TEXT_COLS ||
10767c478bd9Sstevel@tonic-gate ma->e_row < 0 || ma->e_row >= TEXT_ROWS ||
10777c478bd9Sstevel@tonic-gate ma->t_col < 0 || ma->t_col >= TEXT_COLS ||
10787c478bd9Sstevel@tonic-gate ma->t_row < 0 || ma->t_row >= TEXT_ROWS ||
10797c478bd9Sstevel@tonic-gate ma->s_col > ma->e_col ||
10807c478bd9Sstevel@tonic-gate ma->s_row > ma->e_row)
10817c478bd9Sstevel@tonic-gate return;
10827c478bd9Sstevel@tonic-gate
10837c478bd9Sstevel@tonic-gate /*
10847c478bd9Sstevel@tonic-gate * Remember we're going to copy shorts because each
10857c478bd9Sstevel@tonic-gate * character/attribute pair is 16 bits.
10867c478bd9Sstevel@tonic-gate */
10877c478bd9Sstevel@tonic-gate chars_per_row = ma->e_col - ma->s_col + 1;
10887c478bd9Sstevel@tonic-gate rows_to_move = ma->e_row - ma->s_row + 1;
10897c478bd9Sstevel@tonic-gate
10907c478bd9Sstevel@tonic-gate /* More sanity checks. */
10917c478bd9Sstevel@tonic-gate if (ma->t_row + rows_to_move > TEXT_ROWS ||
10927c478bd9Sstevel@tonic-gate ma->t_col + chars_per_row > TEXT_COLS)
10937c478bd9Sstevel@tonic-gate return;
10947c478bd9Sstevel@tonic-gate
10957c478bd9Sstevel@tonic-gate base = (unsigned short *)softc->current_base;
10967c478bd9Sstevel@tonic-gate
10977c478bd9Sstevel@tonic-gate to_row_start = base + ((ma->t_row * TEXT_COLS) + ma->t_col);
10987c478bd9Sstevel@tonic-gate from_row_start = base + ((ma->s_row * TEXT_COLS) + ma->s_col);
10997c478bd9Sstevel@tonic-gate
11007c478bd9Sstevel@tonic-gate if (to_row_start < from_row_start) {
11017c478bd9Sstevel@tonic-gate while (rows_to_move-- > 0) {
11027c478bd9Sstevel@tonic-gate to = to_row_start;
11037c478bd9Sstevel@tonic-gate from = from_row_start;
11047c478bd9Sstevel@tonic-gate to_row_start += TEXT_COLS;
11057c478bd9Sstevel@tonic-gate from_row_start += TEXT_COLS;
11067c478bd9Sstevel@tonic-gate for (cnt = chars_per_row; cnt-- > 0; )
11077c478bd9Sstevel@tonic-gate *to++ = *from++;
11087c478bd9Sstevel@tonic-gate }
11097c478bd9Sstevel@tonic-gate } else {
11107c478bd9Sstevel@tonic-gate /*
11117c478bd9Sstevel@tonic-gate * Offset to the end of the region and copy backwards.
11127c478bd9Sstevel@tonic-gate */
11137c478bd9Sstevel@tonic-gate cnt = rows_to_move * TEXT_COLS + chars_per_row;
11147c478bd9Sstevel@tonic-gate to_row_start += cnt;
11157c478bd9Sstevel@tonic-gate from_row_start += cnt;
11167c478bd9Sstevel@tonic-gate
11177c478bd9Sstevel@tonic-gate while (rows_to_move-- > 0) {
11187c478bd9Sstevel@tonic-gate to_row_start -= TEXT_COLS;
11197c478bd9Sstevel@tonic-gate from_row_start -= TEXT_COLS;
11207c478bd9Sstevel@tonic-gate to = to_row_start;
11217c478bd9Sstevel@tonic-gate from = from_row_start;
11227c478bd9Sstevel@tonic-gate for (cnt = chars_per_row; cnt-- > 0; )
11237c478bd9Sstevel@tonic-gate *--to = *--from;
11247c478bd9Sstevel@tonic-gate }
11257c478bd9Sstevel@tonic-gate }
11267c478bd9Sstevel@tonic-gate }
11277c478bd9Sstevel@tonic-gate
11287c478bd9Sstevel@tonic-gate static void
vgatext_polled_copy(struct vis_polledio_arg * arg,struct vis_conscopy * ca)11297c478bd9Sstevel@tonic-gate vgatext_polled_copy(
11307c478bd9Sstevel@tonic-gate struct vis_polledio_arg *arg,
11317c478bd9Sstevel@tonic-gate struct vis_conscopy *ca)
11327c478bd9Sstevel@tonic-gate {
11337c478bd9Sstevel@tonic-gate vgatext_cons_copy((struct vgatext_softc *)arg, ca);
11347c478bd9Sstevel@tonic-gate }
11357c478bd9Sstevel@tonic-gate
11367c478bd9Sstevel@tonic-gate
11377c478bd9Sstevel@tonic-gate static void
vgatext_cons_cursor(struct vgatext_softc * softc,struct vis_conscursor * ca)11387c478bd9Sstevel@tonic-gate vgatext_cons_cursor(struct vgatext_softc *softc, struct vis_conscursor *ca)
11397c478bd9Sstevel@tonic-gate {
11407c478bd9Sstevel@tonic-gate if (vgatext_silent)
11417c478bd9Sstevel@tonic-gate return;
11427c478bd9Sstevel@tonic-gate
11437c478bd9Sstevel@tonic-gate switch (ca->action) {
11447c478bd9Sstevel@tonic-gate case VIS_HIDE_CURSOR:
11457c478bd9Sstevel@tonic-gate softc->cursor.visible = B_FALSE;
11467c478bd9Sstevel@tonic-gate if (softc->current_base == softc->text_base)
11477c478bd9Sstevel@tonic-gate vgatext_hide_cursor(softc);
11487c478bd9Sstevel@tonic-gate break;
11497c478bd9Sstevel@tonic-gate case VIS_DISPLAY_CURSOR:
11507c478bd9Sstevel@tonic-gate /*
11517c478bd9Sstevel@tonic-gate * Sanity check. This is a last-ditch effort to avoid
11527c478bd9Sstevel@tonic-gate * damage from brokenness or maliciousness above.
11537c478bd9Sstevel@tonic-gate */
11547c478bd9Sstevel@tonic-gate if (ca->col < 0 || ca->col >= TEXT_COLS ||
11557c478bd9Sstevel@tonic-gate ca->row < 0 || ca->row >= TEXT_ROWS)
11567c478bd9Sstevel@tonic-gate return;
11577c478bd9Sstevel@tonic-gate
11587c478bd9Sstevel@tonic-gate softc->cursor.visible = B_TRUE;
11597c478bd9Sstevel@tonic-gate softc->cursor.col = ca->col;
11607c478bd9Sstevel@tonic-gate softc->cursor.row = ca->row;
11617c478bd9Sstevel@tonic-gate if (softc->current_base == softc->text_base)
11627c478bd9Sstevel@tonic-gate vgatext_set_cursor(softc, ca->row, ca->col);
11637c478bd9Sstevel@tonic-gate break;
11647c478bd9Sstevel@tonic-gate case VIS_GET_CURSOR:
11657c478bd9Sstevel@tonic-gate if (softc->current_base == softc->text_base) {
11667c478bd9Sstevel@tonic-gate vgatext_get_cursor(softc, &ca->row, &ca->col);
11677c478bd9Sstevel@tonic-gate }
11687c478bd9Sstevel@tonic-gate break;
11697c478bd9Sstevel@tonic-gate }
11707c478bd9Sstevel@tonic-gate }
11717c478bd9Sstevel@tonic-gate
11727c478bd9Sstevel@tonic-gate static void
vgatext_polled_cursor(struct vis_polledio_arg * arg,struct vis_conscursor * ca)11737c478bd9Sstevel@tonic-gate vgatext_polled_cursor(
11747c478bd9Sstevel@tonic-gate struct vis_polledio_arg *arg,
11757c478bd9Sstevel@tonic-gate struct vis_conscursor *ca)
11767c478bd9Sstevel@tonic-gate {
11777c478bd9Sstevel@tonic-gate vgatext_cons_cursor((struct vgatext_softc *)arg, ca);
11787c478bd9Sstevel@tonic-gate }
11797c478bd9Sstevel@tonic-gate
11807c478bd9Sstevel@tonic-gate
11817c478bd9Sstevel@tonic-gate
11827c478bd9Sstevel@tonic-gate /*ARGSUSED*/
11837c478bd9Sstevel@tonic-gate static void
vgatext_hide_cursor(struct vgatext_softc * softc)11847c478bd9Sstevel@tonic-gate vgatext_hide_cursor(struct vgatext_softc *softc)
11857c478bd9Sstevel@tonic-gate {
11867c478bd9Sstevel@tonic-gate /* Nothing at present */
11877c478bd9Sstevel@tonic-gate }
11887c478bd9Sstevel@tonic-gate
11897c478bd9Sstevel@tonic-gate static void
vgatext_set_cursor(struct vgatext_softc * softc,int row,int col)11907c478bd9Sstevel@tonic-gate vgatext_set_cursor(struct vgatext_softc *softc, int row, int col)
11917c478bd9Sstevel@tonic-gate {
11927c478bd9Sstevel@tonic-gate short addr;
11937c478bd9Sstevel@tonic-gate
11947c478bd9Sstevel@tonic-gate if (vgatext_silent)
11957c478bd9Sstevel@tonic-gate return;
11967c478bd9Sstevel@tonic-gate
11977c478bd9Sstevel@tonic-gate addr = row * TEXT_COLS + col;
11987c478bd9Sstevel@tonic-gate
11997c478bd9Sstevel@tonic-gate vga_set_crtc(&softc->regs, VGA_CRTC_CLAH, addr >> 8);
12007c478bd9Sstevel@tonic-gate vga_set_crtc(&softc->regs, VGA_CRTC_CLAL, addr & 0xff);
12017c478bd9Sstevel@tonic-gate }
12027c478bd9Sstevel@tonic-gate
12037c478bd9Sstevel@tonic-gate static int vga_row, vga_col;
12047c478bd9Sstevel@tonic-gate
12057c478bd9Sstevel@tonic-gate static void
vgatext_get_cursor(struct vgatext_softc * softc,screen_pos_t * row,screen_pos_t * col)12067c478bd9Sstevel@tonic-gate vgatext_get_cursor(struct vgatext_softc *softc,
12077c478bd9Sstevel@tonic-gate screen_pos_t *row, screen_pos_t *col)
12087c478bd9Sstevel@tonic-gate {
12097c478bd9Sstevel@tonic-gate short addr;
12107c478bd9Sstevel@tonic-gate
12117c478bd9Sstevel@tonic-gate addr = (vga_get_crtc(&softc->regs, VGA_CRTC_CLAH) << 8) +
12127c478bd9Sstevel@tonic-gate vga_get_crtc(&softc->regs, VGA_CRTC_CLAL);
12137c478bd9Sstevel@tonic-gate
12147c478bd9Sstevel@tonic-gate vga_row = *row = addr / TEXT_COLS;
12157c478bd9Sstevel@tonic-gate vga_col = *col = addr % TEXT_COLS;
12167c478bd9Sstevel@tonic-gate }
12177c478bd9Sstevel@tonic-gate
12187c478bd9Sstevel@tonic-gate /*
12197c478bd9Sstevel@tonic-gate * This code is experimental. It's only enabled if console is
12207c478bd9Sstevel@tonic-gate * set to graphics, a preliminary implementation of happyface boot.
12217c478bd9Sstevel@tonic-gate */
12227c478bd9Sstevel@tonic-gate static void
vgatext_set_text(struct vgatext_softc * softc)12237c478bd9Sstevel@tonic-gate vgatext_set_text(struct vgatext_softc *softc)
12247c478bd9Sstevel@tonic-gate {
12257c478bd9Sstevel@tonic-gate int i;
12267c478bd9Sstevel@tonic-gate
12277c478bd9Sstevel@tonic-gate if (happyface_boot == 0)
12287c478bd9Sstevel@tonic-gate return;
12297c478bd9Sstevel@tonic-gate
12307c478bd9Sstevel@tonic-gate /* we are in graphics mode, set to text 80X25 mode */
12317c478bd9Sstevel@tonic-gate
12327c478bd9Sstevel@tonic-gate /* set misc registers */
12337c478bd9Sstevel@tonic-gate vga_set_reg(&softc->regs, VGA_MISC_W, VGA_MISC_TEXT);
12347c478bd9Sstevel@tonic-gate
12357c478bd9Sstevel@tonic-gate /* set sequencer registers */
12367c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, VGA_SEQ_RST_SYN,
12377c478bd9Sstevel@tonic-gate (vga_get_seq(&softc->regs, VGA_SEQ_RST_SYN) &
12387c478bd9Sstevel@tonic-gate ~VGA_SEQ_RST_SYN_NO_SYNC_RESET));
12397c478bd9Sstevel@tonic-gate for (i = 1; i < NUM_SEQ_REG; i++) {
12407c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, i, VGA_SEQ_TEXT[i]);
12417c478bd9Sstevel@tonic-gate }
12427c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, VGA_SEQ_RST_SYN,
12437c478bd9Sstevel@tonic-gate (vga_get_seq(&softc->regs, VGA_SEQ_RST_SYN) |
12447c478bd9Sstevel@tonic-gate VGA_SEQ_RST_SYN_NO_ASYNC_RESET |
12457c478bd9Sstevel@tonic-gate VGA_SEQ_RST_SYN_NO_SYNC_RESET));
12467c478bd9Sstevel@tonic-gate
12477c478bd9Sstevel@tonic-gate /* set crt controller registers */
12487c478bd9Sstevel@tonic-gate vga_set_crtc(&softc->regs, VGA_CRTC_VRE,
12497c478bd9Sstevel@tonic-gate (vga_get_crtc(&softc->regs, VGA_CRTC_VRE) &
12507c478bd9Sstevel@tonic-gate ~VGA_CRTC_VRE_LOCK));
12517c478bd9Sstevel@tonic-gate for (i = 0; i < NUM_CRTC_REG; i++) {
12527c478bd9Sstevel@tonic-gate vga_set_crtc(&softc->regs, i, VGA_CRTC_TEXT[i]);
12537c478bd9Sstevel@tonic-gate }
12547c478bd9Sstevel@tonic-gate
12557c478bd9Sstevel@tonic-gate /* set graphics controller registers */
12567c478bd9Sstevel@tonic-gate for (i = 0; i < NUM_GRC_REG; i++) {
12577c478bd9Sstevel@tonic-gate vga_set_grc(&softc->regs, i, VGA_GRC_TEXT[i]);
12587c478bd9Sstevel@tonic-gate }
12597c478bd9Sstevel@tonic-gate
12607c478bd9Sstevel@tonic-gate /* set attribute registers */
12617c478bd9Sstevel@tonic-gate for (i = 0; i < NUM_ATR_REG; i++) {
12627c478bd9Sstevel@tonic-gate vga_set_atr(&softc->regs, i, VGA_ATR_TEXT[i]);
12637c478bd9Sstevel@tonic-gate }
12647c478bd9Sstevel@tonic-gate
12657c478bd9Sstevel@tonic-gate /* set palette */
12667c478bd9Sstevel@tonic-gate for (i = 0; i < VGA_TEXT_CMAP_ENTRIES; i++) {
12677c478bd9Sstevel@tonic-gate vga_put_cmap(&softc->regs, i, VGA_TEXT_PALETTES[i][0] << 2,
12687c478bd9Sstevel@tonic-gate VGA_TEXT_PALETTES[i][1] << 2,
12697c478bd9Sstevel@tonic-gate VGA_TEXT_PALETTES[i][2] << 2);
12707c478bd9Sstevel@tonic-gate }
12717c478bd9Sstevel@tonic-gate for (i = VGA_TEXT_CMAP_ENTRIES; i < VGA8_CMAP_ENTRIES; i++) {
12727c478bd9Sstevel@tonic-gate vga_put_cmap(&softc->regs, i, 0, 0, 0);
12737c478bd9Sstevel@tonic-gate }
12747c478bd9Sstevel@tonic-gate
12757c478bd9Sstevel@tonic-gate vgatext_save_colormap(softc);
12767c478bd9Sstevel@tonic-gate }
12777c478bd9Sstevel@tonic-gate
12787c478bd9Sstevel@tonic-gate static void
vgatext_init(struct vgatext_softc * softc)12797c478bd9Sstevel@tonic-gate vgatext_init(struct vgatext_softc *softc)
12807c478bd9Sstevel@tonic-gate {
12817c478bd9Sstevel@tonic-gate unsigned char atr_mode;
12827c478bd9Sstevel@tonic-gate
12837c478bd9Sstevel@tonic-gate atr_mode = vga_get_atr(&softc->regs, VGA_ATR_MODE);
12847c478bd9Sstevel@tonic-gate if (atr_mode & VGA_ATR_MODE_GRAPH)
12857c478bd9Sstevel@tonic-gate vgatext_set_text(softc);
12867c478bd9Sstevel@tonic-gate atr_mode = vga_get_atr(&softc->regs, VGA_ATR_MODE);
12877c478bd9Sstevel@tonic-gate atr_mode &= ~VGA_ATR_MODE_BLINK;
12887c478bd9Sstevel@tonic-gate atr_mode &= ~VGA_ATR_MODE_9WIDE;
12897c478bd9Sstevel@tonic-gate vga_set_atr(&softc->regs, VGA_ATR_MODE, atr_mode);
12907c478bd9Sstevel@tonic-gate #if defined(USE_BORDERS)
12917c478bd9Sstevel@tonic-gate vga_set_atr(&softc->regs, VGA_ATR_BDR_CLR,
12927c478bd9Sstevel@tonic-gate vga_get_atr(&softc->regs, VGA_BRIGHT_WHITE));
12937c478bd9Sstevel@tonic-gate #else
12947c478bd9Sstevel@tonic-gate vga_set_atr(&softc->regs, VGA_ATR_BDR_CLR,
12957c478bd9Sstevel@tonic-gate vga_get_atr(&softc->regs, VGA_BLACK));
12967c478bd9Sstevel@tonic-gate #endif
12977c478bd9Sstevel@tonic-gate vgatext_setfont(softc); /* need selectable font? */
12987c478bd9Sstevel@tonic-gate }
12997c478bd9Sstevel@tonic-gate
13007c478bd9Sstevel@tonic-gate #if defined(USE_BORDERS)
13017c478bd9Sstevel@tonic-gate static void
vgatext_init_graphics(struct vgatext_softc * softc)13027c478bd9Sstevel@tonic-gate vgatext_init_graphics(struct vgatext_softc *softc)
13037c478bd9Sstevel@tonic-gate {
13047c478bd9Sstevel@tonic-gate vga_set_atr(&softc->regs, VGA_ATR_BDR_CLR,
13057c478bd9Sstevel@tonic-gate vga_get_atr(&softc->regs, VGA_BLACK));
13067c478bd9Sstevel@tonic-gate }
13077c478bd9Sstevel@tonic-gate #endif
13087c478bd9Sstevel@tonic-gate
13092269adc8Sszhou static char vga_fontslot = 0;
13102269adc8Sszhou
13117c478bd9Sstevel@tonic-gate static void
vgatext_setfont(struct vgatext_softc * softc)13127c478bd9Sstevel@tonic-gate vgatext_setfont(struct vgatext_softc *softc)
13137c478bd9Sstevel@tonic-gate {
13142269adc8Sszhou static uchar_t fsreg[8] = {0x0, 0x30, 0x5, 0x35, 0xa, 0x3a, 0xf, 0x3f};
13152269adc8Sszhou
13167c478bd9Sstevel@tonic-gate extern unsigned char *ENCODINGS[];
13172269adc8Sszhou uchar_t *from;
13182269adc8Sszhou uchar_t volatile *to;
13192269adc8Sszhou int i, j, s;
13202269adc8Sszhou int bpc, f_offset;
13217c478bd9Sstevel@tonic-gate
13227c478bd9Sstevel@tonic-gate /* Sync-reset the sequencer registers */
13237c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, 0x00, 0x01);
13247c478bd9Sstevel@tonic-gate /*
13257c478bd9Sstevel@tonic-gate * enable write to plane2, since fonts
13267c478bd9Sstevel@tonic-gate * could only be loaded into plane2
13277c478bd9Sstevel@tonic-gate */
13287c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, 0x02, 0x04);
13297c478bd9Sstevel@tonic-gate /*
13307c478bd9Sstevel@tonic-gate * sequentially access data in the bit map being
13317c478bd9Sstevel@tonic-gate * selected by MapMask register (index 0x02)
13327c478bd9Sstevel@tonic-gate */
13337c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, 0x04, 0x07);
13347c478bd9Sstevel@tonic-gate /* Sync-reset ended, and allow the sequencer to operate */
13357c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, 0x00, 0x03);
13367c478bd9Sstevel@tonic-gate
13377c478bd9Sstevel@tonic-gate /*
13387c478bd9Sstevel@tonic-gate * select plane 2 on Read Mode 0
13397c478bd9Sstevel@tonic-gate */
13407c478bd9Sstevel@tonic-gate vga_set_grc(&softc->regs, 0x04, 0x02);
13417c478bd9Sstevel@tonic-gate /*
13427c478bd9Sstevel@tonic-gate * system addresses sequentially access data, follow
13437c478bd9Sstevel@tonic-gate * Memory Mode register bit 2 in the sequencer
13447c478bd9Sstevel@tonic-gate */
13457c478bd9Sstevel@tonic-gate vga_set_grc(&softc->regs, 0x05, 0x00);
13467c478bd9Sstevel@tonic-gate /*
13477c478bd9Sstevel@tonic-gate * set range of host memory addresses decoded by VGA
13487c478bd9Sstevel@tonic-gate * hardware -- A0000h-BFFFFh (128K region)
13497c478bd9Sstevel@tonic-gate */
13507c478bd9Sstevel@tonic-gate vga_set_grc(&softc->regs, 0x06, 0x00);
13517c478bd9Sstevel@tonic-gate
13527c478bd9Sstevel@tonic-gate /*
13537c478bd9Sstevel@tonic-gate * This assumes 8x16 characters, which yield the traditional 80x25
13547c478bd9Sstevel@tonic-gate * screen. It really should support other character heights.
13557c478bd9Sstevel@tonic-gate */
13567c478bd9Sstevel@tonic-gate bpc = 16;
13572269adc8Sszhou s = vga_fontslot;
13582269adc8Sszhou f_offset = s * 8 * 1024;
13597c478bd9Sstevel@tonic-gate for (i = 0; i < 256; i++) {
13607c478bd9Sstevel@tonic-gate from = ENCODINGS[i];
13612269adc8Sszhou to = (unsigned char *)softc->fb.addr + f_offset + i * 0x20;
13627c478bd9Sstevel@tonic-gate for (j = 0; j < bpc; j++)
13637c478bd9Sstevel@tonic-gate *to++ = *from++;
13647c478bd9Sstevel@tonic-gate }
13657c478bd9Sstevel@tonic-gate
13667c478bd9Sstevel@tonic-gate /* Sync-reset the sequencer registers */
13677c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, 0x00, 0x01);
13687c478bd9Sstevel@tonic-gate /* enable write to plane 0 and 1 */
13697c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, 0x02, 0x03);
13707c478bd9Sstevel@tonic-gate /*
13717c478bd9Sstevel@tonic-gate * enable character map selection
13727c478bd9Sstevel@tonic-gate * and odd/even addressing
13737c478bd9Sstevel@tonic-gate */
13747c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, 0x04, 0x03);
13757c478bd9Sstevel@tonic-gate /*
13762269adc8Sszhou * select font map
13777c478bd9Sstevel@tonic-gate */
13782269adc8Sszhou vga_set_seq(&softc->regs, 0x03, fsreg[s]);
13797c478bd9Sstevel@tonic-gate /* Sync-reset ended, and allow the sequencer to operate */
13807c478bd9Sstevel@tonic-gate vga_set_seq(&softc->regs, 0x00, 0x03);
13817c478bd9Sstevel@tonic-gate
13827c478bd9Sstevel@tonic-gate /* restore graphic registers */
13837c478bd9Sstevel@tonic-gate
13847c478bd9Sstevel@tonic-gate /* select plane 0 */
13857c478bd9Sstevel@tonic-gate vga_set_grc(&softc->regs, 0x04, 0x00);
13867c478bd9Sstevel@tonic-gate /* enable odd/even addressing mode */
13877c478bd9Sstevel@tonic-gate vga_set_grc(&softc->regs, 0x05, 0x10);
13887c478bd9Sstevel@tonic-gate /*
13897c478bd9Sstevel@tonic-gate * range of host memory addresses decoded by VGA
13907c478bd9Sstevel@tonic-gate * hardware -- B8000h-BFFFFh (32K region)
13917c478bd9Sstevel@tonic-gate */
13927c478bd9Sstevel@tonic-gate vga_set_grc(&softc->regs, 0x06, 0x0e);
13937c478bd9Sstevel@tonic-gate /* enable all color plane */
13947c478bd9Sstevel@tonic-gate vga_set_atr(&softc->regs, 0x12, 0x0f);
13957c478bd9Sstevel@tonic-gate
13967c478bd9Sstevel@tonic-gate }
13977c478bd9Sstevel@tonic-gate
13987c478bd9Sstevel@tonic-gate static void
vgatext_save_colormap(struct vgatext_softc * softc)13997c478bd9Sstevel@tonic-gate vgatext_save_colormap(struct vgatext_softc *softc)
14007c478bd9Sstevel@tonic-gate {
14017c478bd9Sstevel@tonic-gate int i;
14027c478bd9Sstevel@tonic-gate
14037c478bd9Sstevel@tonic-gate for (i = 0; i < VGA_ATR_NUM_PLT; i++) {
14047c478bd9Sstevel@tonic-gate softc->attrib_palette[i] = vga_get_atr(&softc->regs, i);
14057c478bd9Sstevel@tonic-gate }
14067c478bd9Sstevel@tonic-gate for (i = 0; i < VGA8_CMAP_ENTRIES; i++) {
14077c478bd9Sstevel@tonic-gate vga_get_cmap(&softc->regs, i,
14087c478bd9Sstevel@tonic-gate &softc->colormap[i].red,
14097c478bd9Sstevel@tonic-gate &softc->colormap[i].green,
14107c478bd9Sstevel@tonic-gate &softc->colormap[i].blue);
14117c478bd9Sstevel@tonic-gate }
14127c478bd9Sstevel@tonic-gate }
14137c478bd9Sstevel@tonic-gate
14147c478bd9Sstevel@tonic-gate static void
vgatext_restore_colormap(struct vgatext_softc * softc)14157c478bd9Sstevel@tonic-gate vgatext_restore_colormap(struct vgatext_softc *softc)
14167c478bd9Sstevel@tonic-gate {
14177c478bd9Sstevel@tonic-gate int i;
14187c478bd9Sstevel@tonic-gate
14197c478bd9Sstevel@tonic-gate for (i = 0; i < VGA_ATR_NUM_PLT; i++) {
14207c478bd9Sstevel@tonic-gate vga_set_atr(&softc->regs, i, softc->attrib_palette[i]);
14217c478bd9Sstevel@tonic-gate }
14227c478bd9Sstevel@tonic-gate for (i = 0; i < VGA8_CMAP_ENTRIES; i++) {
14237c478bd9Sstevel@tonic-gate vga_put_cmap(&softc->regs, i,
14247c478bd9Sstevel@tonic-gate softc->colormap[i].red,
14257c478bd9Sstevel@tonic-gate softc->colormap[i].green,
14267c478bd9Sstevel@tonic-gate softc->colormap[i].blue);
14277c478bd9Sstevel@tonic-gate }
14287c478bd9Sstevel@tonic-gate }
14297c478bd9Sstevel@tonic-gate
14307c478bd9Sstevel@tonic-gate /*
14317c478bd9Sstevel@tonic-gate * search the entries of the "reg" property for one which has the desired
14327c478bd9Sstevel@tonic-gate * combination of phys_hi bits and contains the desired address.
14337c478bd9Sstevel@tonic-gate *
14347c478bd9Sstevel@tonic-gate * This version searches a PCI-style "reg" property. It was prompted by
14357c478bd9Sstevel@tonic-gate * issues surrounding the presence or absence of an entry for the ROM:
14367c478bd9Sstevel@tonic-gate * (a) a transition problem with PowerPC Virtual Open Firmware
14377c478bd9Sstevel@tonic-gate * (b) uncertainty as to whether an entry will be included on a device
14387c478bd9Sstevel@tonic-gate * with ROM support (and so an "active" ROM base address register),
14397c478bd9Sstevel@tonic-gate * but no ROM actually installed.
14407c478bd9Sstevel@tonic-gate *
14417c478bd9Sstevel@tonic-gate * See the note below on vgatext_get_isa_reg_index for the reasons for
14427c478bd9Sstevel@tonic-gate * returning the offset.
14437c478bd9Sstevel@tonic-gate *
14447c478bd9Sstevel@tonic-gate * Note that this routine may not be fully general; it is intended for the
14457c478bd9Sstevel@tonic-gate * specific purpose of finding a couple of particular VGA reg entries and
14467c478bd9Sstevel@tonic-gate * may not be suitable for all reg-searching purposes.
14477c478bd9Sstevel@tonic-gate */
14487c478bd9Sstevel@tonic-gate static int
vgatext_get_pci_reg_index(dev_info_t * const devi,unsigned long himask,unsigned long hival,unsigned long addr,off_t * offset)14497c478bd9Sstevel@tonic-gate vgatext_get_pci_reg_index(
14507c478bd9Sstevel@tonic-gate dev_info_t *const devi,
14517c478bd9Sstevel@tonic-gate unsigned long himask,
14527c478bd9Sstevel@tonic-gate unsigned long hival,
14537c478bd9Sstevel@tonic-gate unsigned long addr,
14547c478bd9Sstevel@tonic-gate off_t *offset)
14557c478bd9Sstevel@tonic-gate {
14567c478bd9Sstevel@tonic-gate
14577c478bd9Sstevel@tonic-gate int length, index;
14587c478bd9Sstevel@tonic-gate pci_regspec_t *reg;
14597c478bd9Sstevel@tonic-gate
14607c478bd9Sstevel@tonic-gate if (ddi_getlongprop(DDI_DEV_T_ANY, devi, DDI_PROP_DONTPASS,
14617c478bd9Sstevel@tonic-gate "reg", (caddr_t)®, &length) != DDI_PROP_SUCCESS) {
14627c478bd9Sstevel@tonic-gate return (-1);
14637c478bd9Sstevel@tonic-gate }
14647c478bd9Sstevel@tonic-gate
14657c478bd9Sstevel@tonic-gate for (index = 0; index < length / sizeof (pci_regspec_t); index++) {
14667c478bd9Sstevel@tonic-gate if ((reg[index].pci_phys_hi & himask) != hival)
14677c478bd9Sstevel@tonic-gate continue;
14687c478bd9Sstevel@tonic-gate if (reg[index].pci_size_hi != 0)
14697c478bd9Sstevel@tonic-gate continue;
14707c478bd9Sstevel@tonic-gate if (reg[index].pci_phys_mid != 0)
14717c478bd9Sstevel@tonic-gate continue;
14727c478bd9Sstevel@tonic-gate if (reg[index].pci_phys_low > addr)
14737c478bd9Sstevel@tonic-gate continue;
14747c478bd9Sstevel@tonic-gate if (reg[index].pci_phys_low + reg[index].pci_size_low <= addr)
14757c478bd9Sstevel@tonic-gate continue;
14767c478bd9Sstevel@tonic-gate
14777c478bd9Sstevel@tonic-gate *offset = addr - reg[index].pci_phys_low;
14787c478bd9Sstevel@tonic-gate kmem_free(reg, (size_t)length);
14797c478bd9Sstevel@tonic-gate return (index);
14807c478bd9Sstevel@tonic-gate }
14817c478bd9Sstevel@tonic-gate kmem_free(reg, (size_t)length);
14827c478bd9Sstevel@tonic-gate
14837c478bd9Sstevel@tonic-gate return (-1);
14847c478bd9Sstevel@tonic-gate }
14857c478bd9Sstevel@tonic-gate
14867c478bd9Sstevel@tonic-gate /*
14877c478bd9Sstevel@tonic-gate * search the entries of the "reg" property for one which has the desired
14887c478bd9Sstevel@tonic-gate * combination of phys_hi bits and contains the desired address.
14897c478bd9Sstevel@tonic-gate *
14907c478bd9Sstevel@tonic-gate * This version searches a ISA-style "reg" property. It was prompted by
14917c478bd9Sstevel@tonic-gate * issues surrounding 8514/A support. By IEEE 1275 compatibility conventions,
14927c478bd9Sstevel@tonic-gate * 8514/A registers should have been added after all standard VGA registers.
14937c478bd9Sstevel@tonic-gate * Unfortunately, the Solaris/Intel device configuration framework
14947c478bd9Sstevel@tonic-gate * (a) lists the 8514/A registers before the video memory, and then
14957c478bd9Sstevel@tonic-gate * (b) also sorts the entries so that I/O entries come before memory
14967c478bd9Sstevel@tonic-gate * entries.
14977c478bd9Sstevel@tonic-gate *
14987c478bd9Sstevel@tonic-gate * It returns the "reg" index and offset into that register set.
14997c478bd9Sstevel@tonic-gate * The offset is needed because there exist (broken?) BIOSes that
15007c478bd9Sstevel@tonic-gate * report larger ranges enclosing the standard ranges. One reports
15017c478bd9Sstevel@tonic-gate * 0x3bf for 0x21 instead of 0x3c0 for 0x20, for instance. Using the
15027c478bd9Sstevel@tonic-gate * offset adjusts for this difference in the base of the register set.
15037c478bd9Sstevel@tonic-gate *
15047c478bd9Sstevel@tonic-gate * Note that this routine may not be fully general; it is intended for the
15057c478bd9Sstevel@tonic-gate * specific purpose of finding a couple of particular VGA reg entries and
15067c478bd9Sstevel@tonic-gate * may not be suitable for all reg-searching purposes.
15077c478bd9Sstevel@tonic-gate */
15087c478bd9Sstevel@tonic-gate static int
vgatext_get_isa_reg_index(dev_info_t * const devi,unsigned long hival,unsigned long addr,off_t * offset)15097c478bd9Sstevel@tonic-gate vgatext_get_isa_reg_index(
15107c478bd9Sstevel@tonic-gate dev_info_t *const devi,
15117c478bd9Sstevel@tonic-gate unsigned long hival,
15127c478bd9Sstevel@tonic-gate unsigned long addr,
15137c478bd9Sstevel@tonic-gate off_t *offset)
15147c478bd9Sstevel@tonic-gate {
15157c478bd9Sstevel@tonic-gate
15167c478bd9Sstevel@tonic-gate int length, index;
15177c478bd9Sstevel@tonic-gate struct regspec *reg;
15187c478bd9Sstevel@tonic-gate
15197c478bd9Sstevel@tonic-gate if (ddi_getlongprop(DDI_DEV_T_ANY, devi, DDI_PROP_DONTPASS,
15207c478bd9Sstevel@tonic-gate "reg", (caddr_t)®, &length) != DDI_PROP_SUCCESS) {
15217c478bd9Sstevel@tonic-gate return (-1);
15227c478bd9Sstevel@tonic-gate }
15237c478bd9Sstevel@tonic-gate
15247c478bd9Sstevel@tonic-gate for (index = 0; index < length / sizeof (struct regspec); index++) {
15257c478bd9Sstevel@tonic-gate if (reg[index].regspec_bustype != hival)
15267c478bd9Sstevel@tonic-gate continue;
15277c478bd9Sstevel@tonic-gate if (reg[index].regspec_addr > addr)
15287c478bd9Sstevel@tonic-gate continue;
15297c478bd9Sstevel@tonic-gate if (reg[index].regspec_addr + reg[index].regspec_size <= addr)
15307c478bd9Sstevel@tonic-gate continue;
15317c478bd9Sstevel@tonic-gate
15327c478bd9Sstevel@tonic-gate *offset = addr - reg[index].regspec_addr;
15337c478bd9Sstevel@tonic-gate kmem_free(reg, (size_t)length);
15347c478bd9Sstevel@tonic-gate return (index);
15357c478bd9Sstevel@tonic-gate }
15367c478bd9Sstevel@tonic-gate kmem_free(reg, (size_t)length);
15377c478bd9Sstevel@tonic-gate
15387c478bd9Sstevel@tonic-gate return (-1);
15397c478bd9Sstevel@tonic-gate }
1540