Home | History | Annotate | Line # | Download | only in pci
machfb.c revision 1.71.2.3
      1  1.71.2.3      yamt /*	$NetBSD: machfb.c,v 1.71.2.3 2012/10/30 17:21:36 yamt Exp $	*/
      2       1.1  junyoung 
      3       1.1  junyoung /*
      4       1.1  junyoung  * Copyright (c) 2002 Bang Jun-Young
      5      1.59  macallan  * Copyright (c) 2005, 2006, 2007 Michael Lorenz
      6       1.1  junyoung  * All rights reserved.
      7       1.1  junyoung  *
      8       1.1  junyoung  * Redistribution and use in source and binary forms, with or without
      9       1.1  junyoung  * modification, are permitted provided that the following conditions
     10       1.1  junyoung  * are met:
     11       1.1  junyoung  * 1. Redistributions of source code must retain the above copyright
     12       1.1  junyoung  *    notice, this list of conditions and the following disclaimer.
     13       1.1  junyoung  * 2. Redistributions in binary form must reproduce the above copyright
     14       1.1  junyoung  *    notice, this list of conditions and the following disclaimer in the
     15       1.1  junyoung  *    documentation and/or other materials provided with the distribution.
     16       1.1  junyoung  * 3. The name of the author may not be used to endorse or promote products
     17      1.10  junyoung  *    derived from this software without specific prior written permission.
     18       1.1  junyoung  *
     19       1.1  junyoung  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     20       1.1  junyoung  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     21       1.1  junyoung  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     22       1.1  junyoung  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     23       1.1  junyoung  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     24       1.1  junyoung  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     25       1.1  junyoung  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     26       1.1  junyoung  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     27       1.1  junyoung  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     28       1.1  junyoung  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     29       1.1  junyoung  */
     30       1.1  junyoung 
     31       1.1  junyoung /*
     32       1.1  junyoung  * Some code is derived from ATI Rage Pro and Derivatives Programmer's Guide.
     33       1.1  junyoung  */
     34       1.1  junyoung 
     35       1.1  junyoung #include <sys/cdefs.h>
     36      1.25  macallan __KERNEL_RCSID(0,
     37  1.71.2.3      yamt 	"$NetBSD: machfb.c,v 1.71.2.3 2012/10/30 17:21:36 yamt Exp $");
     38       1.1  junyoung 
     39       1.1  junyoung #include <sys/param.h>
     40       1.1  junyoung #include <sys/systm.h>
     41       1.1  junyoung #include <sys/kernel.h>
     42       1.1  junyoung #include <sys/device.h>
     43       1.1  junyoung #include <sys/malloc.h>
     44       1.1  junyoung #include <sys/callout.h>
     45      1.59  macallan #include <sys/lwp.h>
     46      1.51      elad #include <sys/kauth.h>
     47       1.1  junyoung 
     48      1.41  macallan #include <dev/videomode/videomode.h>
     49      1.59  macallan #include <dev/videomode/edidvar.h>
     50       1.1  junyoung 
     51       1.1  junyoung #include <dev/pci/pcivar.h>
     52       1.1  junyoung #include <dev/pci/pcireg.h>
     53       1.1  junyoung #include <dev/pci/pcidevs.h>
     54       1.1  junyoung #include <dev/pci/pciio.h>
     55       1.1  junyoung #include <dev/pci/machfbreg.h>
     56       1.1  junyoung 
     57      1.41  macallan #ifdef __sparc__
     58      1.41  macallan #include <dev/sun/fbio.h>
     59      1.41  macallan #include <dev/sun/fbvar.h>
     60      1.41  macallan #include <sys/conf.h>
     61      1.41  macallan #else
     62       1.1  junyoung #include <dev/wscons/wsdisplayvar.h>
     63      1.41  macallan #endif
     64      1.41  macallan 
     65       1.1  junyoung #include <dev/wscons/wsconsio.h>
     66       1.1  junyoung #include <dev/wsfont/wsfont.h>
     67       1.1  junyoung #include <dev/rasops/rasops.h>
     68      1.63    cegger #include <dev/pci/wsdisplay_pci.h>
     69       1.1  junyoung 
     70      1.41  macallan #include <dev/wscons/wsdisplay_vconsvar.h>
     71  1.71.2.3      yamt #include <dev/wscons/wsdisplay_glyphcachevar.h>
     72      1.41  macallan 
     73      1.59  macallan #include "opt_wsemul.h"
     74      1.59  macallan #include "opt_machfb.h"
     75      1.59  macallan 
     76  1.71.2.3      yamt #define MACH64_REG_SIZE		0x800
     77  1.71.2.3      yamt #define MACH64_REG_OFF		0x7ff800
     78       1.1  junyoung 
     79       1.1  junyoung #define	NBARS		3	/* number of Mach64 PCI BARs */
     80       1.1  junyoung 
     81       1.1  junyoung struct vga_bar {
     82       1.1  junyoung 	bus_addr_t vb_base;
     83       1.1  junyoung 	bus_size_t vb_size;
     84       1.1  junyoung 	pcireg_t vb_type;
     85       1.1  junyoung 	int vb_flags;
     86       1.1  junyoung };
     87       1.1  junyoung 
     88       1.1  junyoung struct mach64_softc {
     89      1.59  macallan 	device_t sc_dev;
     90      1.41  macallan #ifdef __sparc__
     91      1.41  macallan 	struct fbdevice sc_fb;
     92      1.41  macallan #endif
     93       1.1  junyoung 	pci_chipset_tag_t sc_pc;
     94       1.1  junyoung 	pcitag_t sc_pcitag;
     95       1.1  junyoung 
     96       1.1  junyoung 	struct vga_bar sc_bars[NBARS];
     97       1.1  junyoung 	struct vga_bar sc_rom;
     98       1.1  junyoung 
     99       1.1  junyoung #define sc_aperbase 	sc_bars[0].vb_base
    100       1.1  junyoung #define sc_apersize	sc_bars[0].vb_size
    101       1.1  junyoung 
    102       1.1  junyoung #define sc_iobase	sc_bars[1].vb_base
    103       1.1  junyoung #define sc_iosize	sc_bars[1].vb_size
    104       1.1  junyoung 
    105       1.1  junyoung #define sc_regbase	sc_bars[2].vb_base
    106       1.1  junyoung #define sc_regsize	sc_bars[2].vb_size
    107       1.1  junyoung 
    108       1.4  junyoung 	bus_space_tag_t sc_regt;
    109       1.3    martin 	bus_space_tag_t sc_memt;
    110      1.59  macallan 	bus_space_tag_t sc_iot;
    111       1.4  junyoung 	bus_space_handle_t sc_regh;
    112       1.1  junyoung 	bus_space_handle_t sc_memh;
    113  1.71.2.3      yamt #if 0
    114      1.49  christos 	void *sc_aperture;		/* mapped aperture vaddr */
    115      1.49  christos 	void *sc_registers;		/* mapped registers vaddr */
    116  1.71.2.3      yamt #endif
    117      1.41  macallan 	uint32_t sc_nbus, sc_ndev, sc_nfunc;
    118       1.1  junyoung 	size_t memsize;
    119       1.1  junyoung 	int memtype;
    120      1.24  macallan 
    121      1.21    martin 	int sc_mode;
    122      1.21    martin 	int sc_bg;
    123      1.41  macallan 	int sc_locked;
    124       1.1  junyoung 
    125       1.1  junyoung 	int has_dsp;
    126       1.1  junyoung 	int bits_per_pixel;
    127      1.25  macallan 	int max_x;
    128      1.25  macallan 	int max_y;
    129      1.25  macallan 	int virt_x;
    130      1.25  macallan 	int virt_y;
    131       1.1  junyoung 	int color_depth;
    132       1.1  junyoung 
    133       1.1  junyoung 	int mem_freq;
    134       1.1  junyoung 	int ramdac_freq;
    135       1.1  junyoung 	int ref_freq;
    136       1.1  junyoung 
    137       1.1  junyoung 	int ref_div;
    138       1.1  junyoung 	int log2_vclk_post_div;
    139       1.1  junyoung 	int vclk_post_div;
    140       1.1  junyoung 	int vclk_fb_div;
    141       1.1  junyoung 	int mclk_post_div;
    142       1.1  junyoung 	int mclk_fb_div;
    143      1.59  macallan 	int sc_clock;	/* which clock to use */
    144       1.1  junyoung 
    145      1.33  macallan 	struct videomode *sc_my_mode;
    146      1.59  macallan 	int sc_edid_size;
    147      1.59  macallan 	uint8_t sc_edid_data[1024];
    148      1.59  macallan 
    149      1.19    martin 	u_char sc_cmap_red[256];
    150      1.19    martin 	u_char sc_cmap_green[256];
    151      1.22     perry 	u_char sc_cmap_blue[256];
    152      1.41  macallan 	int sc_dacw, sc_blanked, sc_console;
    153      1.41  macallan 	struct vcons_data vd;
    154      1.67  macallan 	struct wsdisplay_accessops sc_accessops;
    155  1.71.2.3      yamt 	glyphcache sc_gc;
    156       1.1  junyoung };
    157       1.1  junyoung 
    158       1.1  junyoung struct mach64_crtcregs {
    159      1.41  macallan 	uint32_t h_total_disp;
    160      1.41  macallan 	uint32_t h_sync_strt_wid;
    161      1.41  macallan 	uint32_t v_total_disp;
    162      1.41  macallan 	uint32_t v_sync_strt_wid;
    163      1.41  macallan 	uint32_t gen_cntl;
    164      1.41  macallan 	uint32_t clock_cntl;
    165      1.41  macallan 	uint32_t color_depth;
    166      1.41  macallan 	uint32_t dot_clock;
    167       1.1  junyoung };
    168       1.1  junyoung 
    169      1.46  christos static struct {
    170      1.41  macallan 	uint16_t chip_id;
    171      1.41  macallan 	uint32_t ramdac_freq;
    172      1.46  christos } const mach64_info[] = {
    173      1.64  macallan 	{ PCI_PRODUCT_ATI_MACH64_GX, 135000 },
    174      1.64  macallan 	{ PCI_PRODUCT_ATI_MACH64_CX, 135000 },
    175       1.1  junyoung 	{ PCI_PRODUCT_ATI_MACH64_CT, 135000 },
    176       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_PRO_AGP, 230000 },
    177       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_PRO_AGP1X, 230000 },
    178       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_PRO_PCI_B, 230000 },
    179       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_XL_AGP, 230000 },
    180       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_PRO_PCI_P, 230000 },
    181       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_PRO_PCI_L, 230000 },
    182       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_XL_PCI, 230000 },
    183      1.59  macallan 	{ PCI_PRODUCT_ATI_RAGE_XL_PCI66, 230000 },
    184       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_II, 135000 },
    185       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_IIP, 200000 },
    186       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_IIC_PCI, 230000 },
    187       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_IIC_AGP_B, 230000 },
    188       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_IIC_AGP_P, 230000 },
    189      1.55    dyoung #if 0
    190       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_MOB_M3_PCI, 230000 },
    191       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_MOB_M3_AGP, 230000 },
    192       1.1  junyoung 	{ PCI_PRODUCT_ATI_RAGE_MOBILITY, 230000 },
    193      1.55    dyoung #endif
    194  1.71.2.3      yamt 	{ PCI_PRODUCT_ATI_RAGE_L_MOB_M1_PCI, 230000 },
    195      1.64  macallan 	{ PCI_PRODUCT_ATI_RAGE_LT_PRO_AGP, 230000 },
    196      1.59  macallan 	{ PCI_PRODUCT_ATI_RAGE_LT_PRO, 230000 },
    197      1.59  macallan 	{ PCI_PRODUCT_ATI_RAGE_LT, 230000 },
    198      1.59  macallan 	{ PCI_PRODUCT_ATI_RAGE_LT_PRO_PCI, 230000 },
    199       1.1  junyoung 	{ PCI_PRODUCT_ATI_MACH64_VT, 170000 },
    200       1.1  junyoung 	{ PCI_PRODUCT_ATI_MACH64_VTB, 200000 },
    201       1.1  junyoung 	{ PCI_PRODUCT_ATI_MACH64_VT4, 230000 }
    202       1.1  junyoung };
    203       1.1  junyoung 
    204       1.1  junyoung static int mach64_chip_id, mach64_chip_rev;
    205      1.46  christos static struct videomode default_mode = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, };
    206       1.1  junyoung 
    207      1.64  macallan static const char *mach64_gx_memtype_names[] = {
    208      1.64  macallan 	"DRAM", "VRAM", "VRAM", "DRAM",
    209      1.64  macallan 	"DRAM", "VRAM", "VRAM", "(unknown type)"
    210      1.64  macallan };
    211      1.64  macallan 
    212      1.27  christos static const char *mach64_memtype_names[] = {
    213       1.1  junyoung 	"(N/A)", "DRAM", "EDO DRAM", "EDO DRAM", "SDRAM", "SGRAM", "WRAM",
    214       1.1  junyoung 	"(unknown type)"
    215       1.1  junyoung };
    216       1.1  junyoung 
    217      1.30   thorpej static struct videomode mach64_modes[] = {
    218       1.1  junyoung 	/* 640x400 @ 70 Hz, 31.5 kHz */
    219      1.46  christos 	{ 25175, 640, 664, 760, 800, 400, 409, 411, 450, 0, NULL, },
    220       1.1  junyoung 	/* 640x480 @ 72 Hz, 36.5 kHz */
    221      1.46  christos 	{ 25175, 640, 664, 760, 800, 480, 491, 493, 525, 0, NULL, },
    222       1.1  junyoung 	/* 800x600 @ 72 Hz, 48.0 kHz */
    223       1.1  junyoung 	{ 50000, 800, 856, 976, 1040, 600, 637, 643, 666,
    224      1.46  christos 	  VID_PHSYNC | VID_PVSYNC, NULL, },
    225       1.1  junyoung 	/* 1024x768 @ 70 Hz, 56.5 kHz */
    226       1.1  junyoung 	{ 75000, 1024, 1048, 1184, 1328, 768, 771, 777, 806,
    227      1.46  christos 	  VID_NHSYNC | VID_NVSYNC, NULL, },
    228       1.1  junyoung 	/* 1152x864 @ 70 Hz, 62.4 kHz */
    229      1.46  christos 	{ 92000, 1152, 1208, 1368, 1474, 864, 865, 875, 895, 0, NULL, },
    230       1.1  junyoung 	/* 1280x1024 @ 70 Hz, 74.59 kHz */
    231       1.1  junyoung 	{ 126500, 1280, 1312, 1472, 1696, 1024, 1032, 1040, 1068,
    232      1.46  christos 	  VID_NHSYNC | VID_NVSYNC, NULL, }
    233       1.1  junyoung };
    234       1.1  junyoung 
    235      1.19    martin extern const u_char rasops_cmap[768];
    236       1.1  junyoung 
    237      1.54    dyoung static int	mach64_match(device_t, cfdata_t, void *);
    238      1.54    dyoung static void	mach64_attach(device_t, device_t, void *);
    239       1.1  junyoung 
    240      1.59  macallan CFATTACH_DECL_NEW(machfb, sizeof(struct mach64_softc), mach64_match, mach64_attach,
    241       1.1  junyoung     NULL, NULL);
    242       1.1  junyoung 
    243      1.30   thorpej static void	mach64_init(struct mach64_softc *);
    244      1.30   thorpej static int	mach64_get_memsize(struct mach64_softc *);
    245      1.30   thorpej static int	mach64_get_max_ramdac(struct mach64_softc *);
    246      1.35  macallan 
    247      1.41  macallan #if defined(__sparc__) || defined(__powerpc__)
    248      1.30   thorpej static void	mach64_get_mode(struct mach64_softc *, struct videomode *);
    249      1.35  macallan #endif
    250      1.35  macallan 
    251      1.30   thorpej static int	mach64_calc_crtcregs(struct mach64_softc *,
    252      1.30   thorpej 				     struct mach64_crtcregs *,
    253      1.30   thorpej 				     struct videomode *);
    254      1.30   thorpej static void	mach64_set_crtcregs(struct mach64_softc *,
    255      1.30   thorpej 				    struct mach64_crtcregs *);
    256      1.33  macallan 
    257      1.30   thorpej static int	mach64_modeswitch(struct mach64_softc *, struct videomode *);
    258      1.30   thorpej static void	mach64_set_dsp(struct mach64_softc *);
    259      1.30   thorpej static void	mach64_set_pll(struct mach64_softc *, int);
    260      1.30   thorpej static void	mach64_reset_engine(struct mach64_softc *);
    261      1.30   thorpej static void	mach64_init_engine(struct mach64_softc *);
    262      1.30   thorpej #if 0
    263      1.30   thorpej static void	mach64_adjust_frame(struct mach64_softc *, int, int);
    264      1.30   thorpej #endif
    265      1.30   thorpej static void	mach64_init_lut(struct mach64_softc *);
    266      1.41  macallan 
    267      1.41  macallan static void	mach64_init_screen(void *, struct vcons_screen *, int, long *);
    268      1.30   thorpej static int 	mach64_set_screentype(struct mach64_softc *,
    269      1.30   thorpej 				      const struct wsscreen_descr *);
    270      1.59  macallan static int	mach64_is_console(struct mach64_softc *);
    271      1.30   thorpej 
    272      1.30   thorpej static void	mach64_cursor(void *, int, int, int);
    273      1.30   thorpej #if 0
    274      1.30   thorpej static int	mach64_mapchar(void *, int, u_int *);
    275      1.30   thorpej #endif
    276  1.71.2.3      yamt static void	mach64_putchar_mono(void *, int, int, u_int, long);
    277  1.71.2.3      yamt static void	mach64_putchar_aa8(void *, int, int, u_int, long);
    278      1.30   thorpej static void	mach64_copycols(void *, int, int, int, int);
    279      1.30   thorpej static void	mach64_erasecols(void *, int, int, int, long);
    280      1.30   thorpej static void	mach64_copyrows(void *, int, int, int);
    281      1.30   thorpej static void	mach64_eraserows(void *, int, int, long);
    282      1.30   thorpej static void 	mach64_clearscreen(struct mach64_softc *);
    283      1.30   thorpej 
    284      1.30   thorpej static int	mach64_putcmap(struct mach64_softc *, struct wsdisplay_cmap *);
    285      1.30   thorpej static int	mach64_getcmap(struct mach64_softc *, struct wsdisplay_cmap *);
    286      1.30   thorpej static int	mach64_putpalreg(struct mach64_softc *, uint8_t, uint8_t,
    287      1.30   thorpej 				 uint8_t, uint8_t);
    288  1.71.2.3      yamt static void	mach64_bitblt(void *, int, int, int, int, int, int, int);
    289      1.30   thorpej static void	mach64_rectfill(struct mach64_softc *, int, int, int, int, int);
    290      1.30   thorpej static void	mach64_setup_mono(struct mach64_softc *, int, int, int, int,
    291      1.30   thorpej 				  uint32_t, uint32_t);
    292      1.30   thorpej static void	mach64_feed_bytes(struct mach64_softc *, int, uint8_t *);
    293      1.30   thorpej #if 0
    294      1.30   thorpej static void	mach64_showpal(struct mach64_softc *);
    295      1.30   thorpej #endif
    296      1.21    martin 
    297      1.34  macallan static void	machfb_blank(struct mach64_softc *, int);
    298      1.59  macallan static int	machfb_drm_print(void *, const char *);
    299       1.1  junyoung 
    300      1.30   thorpej static struct wsscreen_descr mach64_defaultscreen = {
    301       1.1  junyoung 	"default",
    302      1.33  macallan 	80, 30,
    303      1.33  macallan 	NULL,
    304       1.1  junyoung 	8, 16,
    305       1.1  junyoung 	WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    306       1.1  junyoung 	&default_mode
    307       1.1  junyoung }, mach64_80x25_screen = {
    308       1.1  junyoung 	"80x25", 80, 25,
    309      1.33  macallan 	NULL,
    310       1.1  junyoung 	8, 16,
    311       1.1  junyoung 	WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    312       1.1  junyoung 	&mach64_modes[0]
    313       1.1  junyoung }, mach64_80x30_screen = {
    314       1.1  junyoung 	"80x30", 80, 30,
    315      1.33  macallan 	NULL,
    316       1.1  junyoung 	8, 16,
    317       1.1  junyoung 	WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    318       1.1  junyoung 	&mach64_modes[1]
    319       1.1  junyoung }, mach64_80x40_screen = {
    320       1.1  junyoung 	"80x40", 80, 40,
    321      1.33  macallan 	NULL,
    322       1.1  junyoung 	8, 10,
    323       1.1  junyoung 	WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    324       1.1  junyoung 	&mach64_modes[0]
    325       1.1  junyoung }, mach64_80x50_screen = {
    326       1.1  junyoung 	"80x50", 80, 50,
    327      1.33  macallan 	NULL,
    328       1.1  junyoung 	8, 8,
    329       1.1  junyoung 	WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    330       1.1  junyoung 	&mach64_modes[0]
    331       1.1  junyoung }, mach64_100x37_screen = {
    332       1.1  junyoung 	"100x37", 100, 37,
    333      1.33  macallan 	NULL,
    334       1.1  junyoung 	8, 16,
    335       1.1  junyoung 	WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    336       1.1  junyoung 	&mach64_modes[2]
    337       1.1  junyoung }, mach64_128x48_screen = {
    338       1.1  junyoung 	"128x48", 128, 48,
    339      1.33  macallan 	NULL,
    340       1.1  junyoung 	8, 16,
    341       1.1  junyoung 	WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    342       1.1  junyoung 	&mach64_modes[3]
    343       1.1  junyoung }, mach64_144x54_screen = {
    344       1.1  junyoung 	"144x54", 144, 54,
    345      1.33  macallan 	NULL,
    346       1.1  junyoung 	8, 16,
    347       1.1  junyoung 	WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    348       1.1  junyoung 	&mach64_modes[4]
    349       1.1  junyoung }, mach64_160x64_screen = {
    350       1.1  junyoung 	"160x54", 160, 64,
    351      1.33  macallan 	NULL,
    352       1.1  junyoung 	8, 16,
    353       1.1  junyoung 	WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    354       1.1  junyoung 	&mach64_modes[5]
    355       1.1  junyoung };
    356       1.1  junyoung 
    357      1.30   thorpej static const struct wsscreen_descr *_mach64_scrlist[] = {
    358       1.1  junyoung 	&mach64_defaultscreen,
    359       1.1  junyoung 	&mach64_80x25_screen,
    360       1.1  junyoung 	&mach64_80x30_screen,
    361       1.1  junyoung 	&mach64_80x40_screen,
    362       1.1  junyoung 	&mach64_80x50_screen,
    363       1.1  junyoung 	&mach64_100x37_screen,
    364       1.1  junyoung 	&mach64_128x48_screen,
    365       1.1  junyoung 	&mach64_144x54_screen,
    366       1.1  junyoung 	&mach64_160x64_screen
    367       1.1  junyoung };
    368       1.1  junyoung 
    369      1.30   thorpej static struct wsscreen_list mach64_screenlist = {
    370      1.54    dyoung 	__arraycount(_mach64_scrlist),
    371       1.1  junyoung 	_mach64_scrlist
    372       1.1  junyoung };
    373       1.1  junyoung 
    374      1.49  christos static int	mach64_ioctl(void *, void *, u_long, void *, int,
    375      1.40      jmmv 		             struct lwp *);
    376      1.40      jmmv static paddr_t	mach64_mmap(void *, void *, off_t, int);
    377      1.41  macallan 
    378      1.30   thorpej #if 0
    379      1.30   thorpej static int	mach64_load_font(void *, void *, struct wsdisplay_font *);
    380      1.30   thorpej #endif
    381       1.1  junyoung 
    382       1.1  junyoung 
    383      1.41  macallan static struct vcons_screen mach64_console_screen;
    384      1.41  macallan 
    385      1.41  macallan /* framebuffer device, SPARC-only so far */
    386      1.41  macallan #ifdef __sparc__
    387      1.41  macallan 
    388      1.54    dyoung static void	machfb_unblank(device_t);
    389      1.41  macallan static void	machfb_fbattach(struct mach64_softc *);
    390      1.41  macallan 
    391      1.41  macallan extern struct cfdriver machfb_cd;
    392      1.41  macallan 
    393      1.41  macallan dev_type_open(machfb_fbopen);
    394      1.41  macallan dev_type_close(machfb_fbclose);
    395      1.41  macallan dev_type_ioctl(machfb_fbioctl);
    396      1.41  macallan dev_type_mmap(machfb_fbmmap);
    397      1.41  macallan 
    398      1.41  macallan /* frame buffer generic driver */
    399      1.41  macallan static struct fbdriver machfb_fbdriver = {
    400      1.41  macallan 	machfb_unblank, machfb_fbopen, machfb_fbclose, machfb_fbioctl, nopoll,
    401      1.41  macallan 	machfb_fbmmap, nokqfilter
    402      1.41  macallan };
    403      1.41  macallan 
    404      1.41  macallan #endif /* __sparc__ */
    405      1.41  macallan 
    406       1.1  junyoung /*
    407       1.1  junyoung  * Inline functions for getting access to register aperture.
    408       1.1  junyoung  */
    409       1.1  junyoung 
    410      1.41  macallan static inline uint32_t
    411      1.41  macallan regr(struct mach64_softc *sc, uint32_t index)
    412       1.1  junyoung {
    413  1.71.2.3      yamt 	return bus_space_read_4(sc->sc_regt, sc->sc_regh, index + 0x400);
    414       1.1  junyoung }
    415       1.1  junyoung 
    416      1.41  macallan static inline uint8_t
    417      1.41  macallan regrb(struct mach64_softc *sc, uint32_t index)
    418       1.1  junyoung {
    419  1.71.2.3      yamt 	return bus_space_read_1(sc->sc_regt, sc->sc_regh, index + 0x400);
    420       1.1  junyoung }
    421       1.1  junyoung 
    422       1.1  junyoung static inline void
    423      1.41  macallan regw(struct mach64_softc *sc, uint32_t index, uint32_t data)
    424       1.1  junyoung {
    425  1.71.2.3      yamt 	bus_space_write_4(sc->sc_regt, sc->sc_regh, index + 0x400, data);
    426      1.25  macallan 	bus_space_barrier(sc->sc_regt, sc->sc_regh, index, 4,
    427      1.25  macallan 	    BUS_SPACE_BARRIER_WRITE);
    428       1.1  junyoung }
    429       1.1  junyoung 
    430       1.1  junyoung static inline void
    431  1.71.2.3      yamt regws(struct mach64_softc *sc, uint32_t index, uint32_t data)
    432  1.71.2.3      yamt {
    433  1.71.2.3      yamt 	bus_space_write_stream_4(sc->sc_regt, sc->sc_regh, index + 0x400, data);
    434  1.71.2.3      yamt 	bus_space_barrier(sc->sc_regt, sc->sc_regh, index + 0x400, 4,
    435  1.71.2.3      yamt 	    BUS_SPACE_BARRIER_WRITE);
    436  1.71.2.3      yamt }
    437  1.71.2.3      yamt 
    438  1.71.2.3      yamt static inline void
    439      1.41  macallan regwb(struct mach64_softc *sc, uint32_t index, uint8_t data)
    440       1.1  junyoung {
    441  1.71.2.3      yamt 	bus_space_write_1(sc->sc_regt, sc->sc_regh, index + 0x400, data);
    442  1.71.2.3      yamt 	bus_space_barrier(sc->sc_regt, sc->sc_regh, index + 0x400, 1,
    443      1.25  macallan 	    BUS_SPACE_BARRIER_WRITE);
    444       1.1  junyoung }
    445       1.1  junyoung 
    446       1.1  junyoung static inline void
    447      1.41  macallan regwb_pll(struct mach64_softc *sc, uint32_t index, uint8_t data)
    448       1.1  junyoung {
    449      1.59  macallan 	uint32_t reg;
    450      1.59  macallan 
    451      1.59  macallan 	reg = regr(sc, CLOCK_CNTL);
    452      1.59  macallan 	reg |= PLL_WR_EN;
    453      1.59  macallan 	regw(sc, CLOCK_CNTL, reg);
    454      1.59  macallan 	reg &= ~(PLL_ADDR | PLL_DATA);
    455      1.59  macallan 	reg |= (index & 0x3f) << PLL_ADDR_SHIFT;
    456      1.59  macallan 	reg |= data << PLL_DATA_SHIFT;
    457      1.59  macallan 	reg |= CLOCK_STROBE;
    458      1.59  macallan 	regw(sc, CLOCK_CNTL, reg);
    459      1.59  macallan 	reg &= ~PLL_WR_EN;
    460      1.59  macallan 	regw(sc, CLOCK_CNTL, reg);
    461      1.59  macallan }
    462      1.59  macallan 
    463      1.59  macallan static inline uint8_t
    464      1.59  macallan regrb_pll(struct mach64_softc *sc, uint32_t index)
    465      1.59  macallan {
    466      1.59  macallan 
    467      1.59  macallan 	regwb(sc, CLOCK_CNTL + 1, index << 2);
    468      1.59  macallan 	return regrb(sc, CLOCK_CNTL + 2);
    469       1.1  junyoung }
    470       1.1  junyoung 
    471       1.1  junyoung static inline void
    472      1.41  macallan wait_for_fifo(struct mach64_softc *sc, uint8_t v)
    473       1.1  junyoung {
    474       1.1  junyoung 	while ((regr(sc, FIFO_STAT) & 0xffff) > (0x8000 >> v))
    475      1.28  christos 		continue;
    476       1.1  junyoung }
    477       1.1  junyoung 
    478       1.1  junyoung static inline void
    479       1.1  junyoung wait_for_idle(struct mach64_softc *sc)
    480       1.1  junyoung {
    481       1.1  junyoung 	wait_for_fifo(sc, 16);
    482       1.1  junyoung 	while ((regr(sc, GUI_STAT) & 1) != 0)
    483      1.28  christos 		continue;
    484       1.1  junyoung }
    485       1.1  junyoung 
    486      1.30   thorpej static int
    487      1.54    dyoung mach64_match(device_t parent, cfdata_t match, void *aux)
    488       1.1  junyoung {
    489       1.1  junyoung 	struct pci_attach_args *pa = (struct pci_attach_args *)aux;
    490       1.1  junyoung 	int i;
    491       1.1  junyoung 
    492       1.1  junyoung 	if (PCI_CLASS(pa->pa_class) != PCI_CLASS_DISPLAY ||
    493       1.1  junyoung 	    PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_DISPLAY_VGA)
    494       1.1  junyoung 		return 0;
    495       1.1  junyoung 
    496      1.54    dyoung 	for (i = 0; i < __arraycount(mach64_info); i++)
    497       1.1  junyoung 		if (PCI_PRODUCT(pa->pa_id) == mach64_info[i].chip_id) {
    498       1.1  junyoung 			mach64_chip_id = PCI_PRODUCT(pa->pa_id);
    499       1.1  junyoung 			mach64_chip_rev = PCI_REVISION(pa->pa_class);
    500      1.24  macallan 			return 100;
    501       1.1  junyoung 		}
    502      1.22     perry 
    503       1.1  junyoung 	return 0;
    504       1.1  junyoung }
    505       1.1  junyoung 
    506      1.30   thorpej static void
    507      1.54    dyoung mach64_attach(device_t parent, device_t self, void *aux)
    508       1.1  junyoung {
    509      1.54    dyoung 	struct mach64_softc *sc = device_private(self);
    510       1.1  junyoung 	struct pci_attach_args *pa = aux;
    511      1.41  macallan 	struct rasops_info *ri;
    512      1.59  macallan 	prop_data_t edid_data;
    513      1.71  jakllsch #if defined(__sparc__) || defined(__powerpc__)
    514      1.59  macallan 	const struct videomode *mode = NULL;
    515      1.71  jakllsch #endif
    516      1.64  macallan 	int bar, id, expected_id;
    517      1.64  macallan 	int is_gx;
    518      1.64  macallan 	const char **memtype_names;
    519       1.1  junyoung 	struct wsemuldisplaydev_attach_args aa;
    520       1.1  junyoung 	long defattr;
    521      1.59  macallan 	int setmode, width, height;
    522      1.21    martin 	pcireg_t screg;
    523      1.59  macallan 	uint32_t reg;
    524  1.71.2.2      yamt 	const pcireg_t enables = PCI_COMMAND_MEM_ENABLE;
    525  1.71.2.3      yamt 	int use_mmio = FALSE;
    526       1.1  junyoung 
    527      1.59  macallan 	sc->sc_dev = self;
    528       1.1  junyoung 	sc->sc_pc = pa->pa_pc;
    529       1.1  junyoung 	sc->sc_pcitag = pa->pa_tag;
    530      1.26  macallan 	sc->sc_dacw = -1;
    531      1.26  macallan 	sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
    532      1.41  macallan 	sc->sc_nbus = pa->pa_bus;
    533      1.41  macallan 	sc->sc_ndev = pa->pa_device;
    534      1.41  macallan 	sc->sc_nfunc = pa->pa_function;
    535      1.41  macallan 	sc->sc_locked = 0;
    536      1.59  macallan 	sc->sc_iot = pa->pa_iot;
    537      1.67  macallan 	sc->sc_accessops.ioctl = mach64_ioctl;
    538      1.67  macallan 	sc->sc_accessops.mmap = mach64_mmap;
    539      1.24  macallan 
    540  1.71.2.1      yamt 	pci_aprint_devinfo(pa, "Graphics processor");
    541      1.61  macallan #ifdef MACHFB_DEBUG
    542      1.59  macallan 	printf(prop_dictionary_externalize(device_properties(self)));
    543      1.59  macallan #endif
    544      1.24  macallan 
    545  1.71.2.3      yamt 	/* enable memory access */
    546      1.26  macallan 	screg = pci_conf_read(sc->sc_pc, sc->sc_pcitag, PCI_COMMAND_STATUS_REG);
    547      1.65    dyoung 	if ((screg & enables) != enables) {
    548      1.65    dyoung 		screg |= enables;
    549      1.59  macallan 		pci_conf_write(sc->sc_pc, sc->sc_pcitag,
    550      1.59  macallan 		    PCI_COMMAND_STATUS_REG, screg);
    551      1.59  macallan 	}
    552       1.1  junyoung 	for (bar = 0; bar < NBARS; bar++) {
    553       1.1  junyoung 		reg = PCI_MAPREG_START + (bar * 4);
    554       1.1  junyoung 		sc->sc_bars[bar].vb_type = pci_mapreg_type(sc->sc_pc,
    555       1.1  junyoung 		    sc->sc_pcitag, reg);
    556       1.1  junyoung 		(void)pci_mapreg_info(sc->sc_pc, sc->sc_pcitag, reg,
    557       1.1  junyoung 		    sc->sc_bars[bar].vb_type, &sc->sc_bars[bar].vb_base,
    558       1.1  junyoung 		    &sc->sc_bars[bar].vb_size, &sc->sc_bars[bar].vb_flags);
    559       1.1  junyoung 	}
    560  1.71.2.3      yamt 	aprint_debug_dev(sc->sc_dev, "aperture size %08x\n",
    561      1.59  macallan 	    (uint32_t)sc->sc_apersize);
    562      1.59  macallan 
    563      1.59  macallan 	sc->sc_rom.vb_type = PCI_MAPREG_TYPE_ROM;
    564      1.59  macallan 	pci_mapreg_info(sc->sc_pc, sc->sc_pcitag, PCI_MAPREG_ROM,
    565      1.59  macallan 		    sc->sc_rom.vb_type, &sc->sc_rom.vb_base,
    566      1.59  macallan 		    &sc->sc_rom.vb_size, &sc->sc_rom.vb_flags);
    567       1.3    martin 	sc->sc_memt = pa->pa_memt;
    568       1.1  junyoung 
    569  1.71.2.3      yamt 	/* use MMIO register aperture if available */
    570  1.71.2.3      yamt 	if ((sc->sc_regbase != 0) && (sc->sc_regbase != 0xffffffff)) {
    571  1.71.2.3      yamt 		if (pci_mapreg_map(pa, MACH64_BAR_MMIO,  PCI_MAPREG_TYPE_MEM, 0,
    572  1.71.2.3      yamt 		    &sc->sc_regt, &sc->sc_regh, &sc->sc_regbase,
    573  1.71.2.3      yamt 		    &sc->sc_regsize) == 0) {
    574  1.71.2.3      yamt 
    575  1.71.2.3      yamt 			/*
    576  1.71.2.3      yamt 			 * the MMIO aperture maps both 1KB register blocks, but
    577  1.71.2.3      yamt 			 * all register offsets are relative to the 2nd one so
    578  1.71.2.3      yamt 			 * for now fix this up in MACH64_REG_OFF and the access
    579  1.71.2.3      yamt 			 * functions
    580  1.71.2.3      yamt 			 */
    581  1.71.2.3      yamt 			aprint_normal_dev(sc->sc_dev, "using MMIO aperture\n");
    582  1.71.2.3      yamt 			use_mmio = TRUE;
    583  1.71.2.3      yamt 		}
    584  1.71.2.3      yamt 	}
    585  1.71.2.3      yamt 	if (!use_mmio) {
    586  1.71.2.3      yamt 		if (bus_space_map(sc->sc_memt, sc->sc_aperbase, sc->sc_apersize,
    587  1.71.2.3      yamt 			BUS_SPACE_MAP_LINEAR, &sc->sc_memh)) {
    588  1.71.2.3      yamt 			panic("%s: failed to map aperture",
    589  1.71.2.3      yamt 			    device_xname(sc->sc_dev));
    590  1.71.2.3      yamt 		}
    591  1.71.2.3      yamt 
    592  1.71.2.3      yamt 		sc->sc_regt = sc->sc_memt;
    593  1.71.2.3      yamt 		bus_space_subregion(sc->sc_regt, sc->sc_memh, MACH64_REG_OFF,
    594  1.71.2.3      yamt 		    MACH64_REG_SIZE, &sc->sc_regh);
    595  1.71.2.3      yamt 	}
    596      1.59  macallan 
    597       1.3    martin 	mach64_init(sc);
    598       1.1  junyoung 
    599      1.59  macallan 	aprint_normal_dev(sc->sc_dev,
    600      1.58       mrg 	    "%d MB aperture at 0x%08x, %d KB registers at 0x%08x\n",
    601      1.58       mrg 	    (u_int)(sc->sc_apersize / (1024 * 1024)),
    602  1.71.2.3      yamt 	    (u_int)sc->sc_aperbase, (u_int)(sc->sc_regsize / 1024),
    603  1.71.2.3      yamt 	    (u_int)sc->sc_regbase);
    604       1.1  junyoung 
    605      1.59  macallan 	printf("%s: %d KB ROM at 0x%08x\n", device_xname(sc->sc_dev),
    606      1.59  macallan 	    (int)sc->sc_rom.vb_size >> 10, (uint32_t)sc->sc_rom.vb_base);
    607      1.59  macallan 
    608      1.59  macallan 	prop_dictionary_get_uint32(device_properties(self), "width", &width);
    609      1.59  macallan 	prop_dictionary_get_uint32(device_properties(self), "height", &height);
    610      1.59  macallan 
    611      1.60  macallan 	if ((edid_data = prop_dictionary_get(device_properties(self), "EDID"))
    612      1.59  macallan 	    != NULL) {
    613      1.59  macallan 	    	struct edid_info ei;
    614      1.59  macallan 
    615      1.59  macallan 		sc->sc_edid_size = min(1024, prop_data_size(edid_data));
    616      1.59  macallan 		memset(sc->sc_edid_data, 0, sizeof(sc->sc_edid_data));
    617      1.59  macallan 		memcpy(sc->sc_edid_data, prop_data_data_nocopy(edid_data),
    618      1.59  macallan 		    sc->sc_edid_size);
    619      1.59  macallan 
    620      1.59  macallan 		edid_parse(sc->sc_edid_data, &ei);
    621      1.59  macallan 
    622      1.61  macallan #ifdef MACHFB_DEBUG
    623      1.59  macallan 		edid_print(&ei);
    624      1.59  macallan #endif
    625      1.59  macallan 	}
    626      1.64  macallan 
    627      1.64  macallan 	is_gx = 0;
    628      1.64  macallan 	switch(mach64_chip_id) {
    629      1.64  macallan 		case PCI_PRODUCT_ATI_MACH64_GX:
    630      1.64  macallan 		case PCI_PRODUCT_ATI_MACH64_CX:
    631      1.64  macallan 			is_gx = 1;
    632      1.64  macallan 		case PCI_PRODUCT_ATI_MACH64_CT:
    633      1.64  macallan 			sc->has_dsp = 0;
    634      1.64  macallan 			break;
    635      1.64  macallan 		case PCI_PRODUCT_ATI_MACH64_VT:
    636      1.64  macallan 		case PCI_PRODUCT_ATI_RAGE_II:
    637      1.64  macallan 			if((mach64_chip_rev & 0x07) == 0) {
    638      1.64  macallan 				sc->has_dsp = 0;
    639      1.64  macallan 				break;
    640      1.64  macallan 			}
    641      1.64  macallan 			/* Otherwise fall through. */
    642      1.64  macallan 		default:
    643      1.64  macallan 			sc->has_dsp = 1;
    644      1.64  macallan 	}
    645      1.64  macallan 
    646      1.64  macallan 	memtype_names = is_gx ? mach64_gx_memtype_names : mach64_memtype_names;
    647       1.1  junyoung 
    648       1.1  junyoung 	sc->memsize = mach64_get_memsize(sc);
    649  1.71.2.3      yamt 
    650      1.64  macallan 	if(is_gx)
    651      1.64  macallan 		sc->memtype = (regr(sc, CONFIG_STAT0) >> 3) & 0x07;
    652      1.64  macallan 	else
    653      1.64  macallan 		sc->memtype = regr(sc, CONFIG_STAT0) & 0x07;
    654       1.1  junyoung 
    655  1.71.2.3      yamt 	/*
    656  1.71.2.3      yamt 	 * XXX is there any way to calculate reference frequency from
    657  1.71.2.3      yamt 	 * known values?
    658  1.71.2.3      yamt 	 */
    659      1.22     perry 	if ((mach64_chip_id == PCI_PRODUCT_ATI_RAGE_XL_PCI) ||
    660      1.26  macallan 	    ((mach64_chip_id >= PCI_PRODUCT_ATI_RAGE_LT_PRO_PCI) &&
    661      1.26  macallan 	    (mach64_chip_id <= PCI_PRODUCT_ATI_RAGE_LT_PRO))) {
    662      1.59  macallan 		aprint_normal_dev(sc->sc_dev, "ref_freq=29.498MHz\n");
    663       1.1  junyoung 		sc->ref_freq = 29498;
    664      1.21    martin 	} else
    665       1.1  junyoung 		sc->ref_freq = 14318;
    666       1.1  junyoung 
    667      1.59  macallan 	reg = regr(sc, CLOCK_CNTL);
    668  1.71.2.3      yamt 	aprint_debug("CLOCK_CNTL: %08x\n", reg);
    669      1.59  macallan 	sc->sc_clock = reg & 3;
    670  1.71.2.3      yamt 	aprint_debug("using clock %d\n", sc->sc_clock);
    671      1.59  macallan 
    672      1.59  macallan 	sc->ref_div = regrb_pll(sc, PLL_REF_DIV);
    673  1.71.2.3      yamt 	aprint_debug("ref_div: %d\n", sc->ref_div);
    674      1.59  macallan 	sc->mclk_fb_div = regrb_pll(sc, MCLK_FB_DIV);
    675  1.71.2.3      yamt 	aprint_debug("mclk_fb_div: %d\n", sc->mclk_fb_div);
    676      1.22     perry 	sc->mem_freq = (2 * sc->ref_freq * sc->mclk_fb_div) /
    677       1.1  junyoung 	    (sc->ref_div * 2);
    678       1.1  junyoung 	sc->mclk_post_div = (sc->mclk_fb_div * 2 * sc->ref_freq) /
    679       1.1  junyoung 	    (sc->mem_freq * sc->ref_div);
    680       1.1  junyoung 	sc->ramdac_freq = mach64_get_max_ramdac(sc);
    681      1.59  macallan 	aprint_normal_dev(sc->sc_dev,
    682      1.58       mrg 	    "%ld KB %s %d.%d MHz, maximum RAMDAC clock %d MHz\n",
    683      1.58       mrg 	    (u_long)sc->memsize,
    684      1.64  macallan 	    memtype_names[sc->memtype],
    685       1.1  junyoung 	    sc->mem_freq / 1000, sc->mem_freq % 1000,
    686       1.1  junyoung 	    sc->ramdac_freq / 1000);
    687      1.22     perry 
    688       1.1  junyoung 	id = regr(sc, CONFIG_CHIP_ID) & 0xffff;
    689      1.64  macallan 	switch(mach64_chip_id) {
    690      1.64  macallan 		case PCI_PRODUCT_ATI_MACH64_GX:
    691      1.64  macallan 			expected_id = 0x00d7;
    692      1.64  macallan 			break;
    693      1.64  macallan 		case PCI_PRODUCT_ATI_MACH64_CX:
    694      1.64  macallan 			expected_id = 0x0057;
    695      1.64  macallan 			break;
    696      1.64  macallan 		default:
    697      1.64  macallan 			/* Most chip IDs match their PCI product ID. */
    698      1.64  macallan 			expected_id = mach64_chip_id;
    699      1.64  macallan 	}
    700      1.64  macallan 
    701      1.64  macallan 	if (id != expected_id) {
    702      1.59  macallan 		aprint_error_dev(sc->sc_dev,
    703      1.64  macallan 		    "chip ID mismatch, 0x%x != 0x%x\n", id, expected_id);
    704       1.1  junyoung 		return;
    705       1.1  junyoung 	}
    706       1.1  junyoung 
    707      1.59  macallan 	sc->sc_console = mach64_is_console(sc);
    708  1.71.2.3      yamt 	aprint_debug("gen_cntl: %08x\n", regr(sc, CRTC_GEN_CNTL));
    709      1.20    martin #if defined(__sparc__) || defined(__powerpc__)
    710      1.41  macallan 	if (sc->sc_console) {
    711      1.59  macallan 		if (mode != NULL) {
    712      1.59  macallan 			memcpy(&default_mode, mode, sizeof(struct videomode));
    713      1.59  macallan 			setmode = 1;
    714      1.59  macallan 		} else {
    715      1.59  macallan 			mach64_get_mode(sc, &default_mode);
    716      1.59  macallan 			setmode = 0;
    717      1.59  macallan 		}
    718      1.33  macallan 		sc->sc_my_mode = &default_mode;
    719       1.7    martin 	} else {
    720      1.33  macallan 		/* fill in default_mode if it's empty */
    721      1.41  macallan 		mach64_get_mode(sc, &default_mode);
    722      1.33  macallan 		if (default_mode.dot_clock == 0) {
    723      1.33  macallan 			memcpy(&default_mode, &mach64_modes[4],
    724      1.33  macallan 			    sizeof(default_mode));
    725      1.33  macallan 		}
    726      1.34  macallan 		sc->sc_my_mode = &default_mode;
    727       1.7    martin 		setmode = 1;
    728       1.7    martin 	}
    729       1.1  junyoung #else
    730      1.35  macallan 	if (default_mode.dot_clock == 0) {
    731      1.35  macallan 		memcpy(&default_mode, &mach64_modes[0],
    732      1.35  macallan 		    sizeof(default_mode));
    733      1.35  macallan 	}
    734      1.35  macallan 	sc->sc_my_mode = &mach64_modes[0];
    735      1.35  macallan 	setmode = 1;
    736       1.1  junyoung #endif
    737       1.1  junyoung 
    738       1.1  junyoung 	sc->bits_per_pixel = 8;
    739      1.33  macallan 	sc->virt_x = sc->sc_my_mode->hdisplay;
    740      1.33  macallan 	sc->virt_y = sc->sc_my_mode->vdisplay;
    741       1.1  junyoung 	sc->max_x = sc->virt_x - 1;
    742       1.1  junyoung 	sc->max_y = (sc->memsize * 1024) /
    743       1.1  junyoung 	    (sc->virt_x * (sc->bits_per_pixel / 8)) - 1;
    744      1.22     perry 
    745       1.1  junyoung 	sc->color_depth = CRTC_PIX_WIDTH_8BPP;
    746       1.1  junyoung 
    747       1.1  junyoung 	mach64_init_engine(sc);
    748      1.59  macallan 
    749      1.59  macallan 	if (setmode)
    750      1.59  macallan 		mach64_modeswitch(sc, sc->sc_my_mode);
    751       1.1  junyoung 
    752      1.59  macallan 	aprint_normal_dev(sc->sc_dev,
    753      1.58       mrg 	    "initial resolution %dx%d at %d bpp\n",
    754      1.33  macallan 	    sc->sc_my_mode->hdisplay, sc->sc_my_mode->vdisplay,
    755       1.1  junyoung 	    sc->bits_per_pixel);
    756       1.1  junyoung 
    757      1.41  macallan #ifdef __sparc__
    758      1.41  macallan 	machfb_fbattach(sc);
    759      1.41  macallan #endif
    760      1.41  macallan 
    761      1.34  macallan 	wsfont_init();
    762      1.41  macallan 
    763      1.67  macallan 	vcons_init(&sc->vd, sc, &mach64_defaultscreen, &sc->sc_accessops);
    764      1.41  macallan 	sc->vd.init_screen = mach64_init_screen;
    765      1.41  macallan 
    766  1.71.2.3      yamt 	sc->sc_gc.gc_bitblt = mach64_bitblt;
    767  1.71.2.3      yamt 	sc->sc_gc.gc_blitcookie = sc;
    768  1.71.2.3      yamt 	sc->sc_gc.gc_rop = MIX_SRC;
    769      1.59  macallan 
    770  1.71.2.3      yamt 	ri = &mach64_console_screen.scr_ri;
    771      1.41  macallan 	if (sc->sc_console) {
    772      1.64  macallan 
    773      1.41  macallan 		vcons_init_screen(&sc->vd, &mach64_console_screen, 1,
    774      1.41  macallan 		    &defattr);
    775      1.41  macallan 		mach64_console_screen.scr_flags |= VCONS_SCREEN_IS_STATIC;
    776      1.41  macallan 
    777      1.41  macallan 		mach64_defaultscreen.textops = &ri->ri_ops;
    778      1.41  macallan 		mach64_defaultscreen.capabilities = ri->ri_caps;
    779      1.41  macallan 		mach64_defaultscreen.nrows = ri->ri_rows;
    780      1.41  macallan 		mach64_defaultscreen.ncols = ri->ri_cols;
    781  1.71.2.3      yamt 		glyphcache_init(&sc->sc_gc, sc->sc_my_mode->vdisplay + 5,
    782  1.71.2.3      yamt 		    ((sc->memsize * 1024) / sc->sc_my_mode->hdisplay) -
    783  1.71.2.3      yamt 		      sc->sc_my_mode->vdisplay - 5,
    784  1.71.2.3      yamt 		    sc->sc_my_mode->hdisplay,
    785  1.71.2.3      yamt 		    ri->ri_font->fontwidth,
    786  1.71.2.3      yamt 		    ri->ri_font->fontheight,
    787  1.71.2.3      yamt 		    defattr);
    788      1.41  macallan 		wsdisplay_cnattach(&mach64_defaultscreen, ri, 0, 0, defattr);
    789      1.33  macallan 	} else {
    790      1.33  macallan 		/*
    791      1.33  macallan 		 * since we're not the console we can postpone the rest
    792      1.33  macallan 		 * until someone actually allocates a screen for us
    793      1.33  macallan 		 */
    794  1.71.2.3      yamt 		mach64_modeswitch(sc, sc->sc_my_mode);
    795  1.71.2.3      yamt 		if (mach64_console_screen.scr_ri.ri_rows == 0) {
    796  1.71.2.3      yamt 			/* do some minimal setup to avoid weirdnesses later */
    797  1.71.2.3      yamt 			vcons_init_screen(&sc->vd, &mach64_console_screen, 1,
    798  1.71.2.3      yamt 			    &defattr);
    799  1.71.2.3      yamt 		}
    800  1.71.2.3      yamt 
    801  1.71.2.3      yamt 		glyphcache_init(&sc->sc_gc, sc->sc_my_mode->vdisplay + 5,
    802  1.71.2.3      yamt 		    ((sc->memsize * 1024) / sc->sc_my_mode->hdisplay) -
    803  1.71.2.3      yamt 		      sc->sc_my_mode->vdisplay - 5,
    804  1.71.2.3      yamt 		    sc->sc_my_mode->hdisplay,
    805  1.71.2.3      yamt 		    ri->ri_font->fontwidth,
    806  1.71.2.3      yamt 		    ri->ri_font->fontheight,
    807  1.71.2.3      yamt 		    defattr);
    808       1.7    martin 	}
    809  1.71.2.3      yamt 
    810  1.71.2.3      yamt 	sc->sc_bg = mach64_console_screen.scr_ri.ri_devcmap[WS_DEFAULT_BG];
    811  1.71.2.3      yamt 	mach64_clearscreen(sc);
    812  1.71.2.3      yamt 	mach64_init_lut(sc);
    813  1.71.2.3      yamt 
    814  1.71.2.3      yamt 	if (sc->sc_console)
    815  1.71.2.3      yamt 		vcons_replay_msgbuf(&mach64_console_screen);
    816  1.71.2.3      yamt 
    817  1.71.2.3      yamt 	machfb_blank(sc, 0);	/* unblank the screen */
    818      1.59  macallan 
    819      1.41  macallan 	aa.console = sc->sc_console;
    820       1.1  junyoung 	aa.scrdata = &mach64_screenlist;
    821      1.67  macallan 	aa.accessops = &sc->sc_accessops;
    822      1.41  macallan 	aa.accesscookie = &sc->vd;
    823       1.1  junyoung 
    824       1.1  junyoung 	config_found(self, &aa, wsemuldisplaydevprint);
    825  1.71.2.3      yamt 	if (use_mmio) {
    826  1.71.2.3      yamt 		/*
    827  1.71.2.3      yamt 		 * Now that we took over, turn off the aperture registers if we
    828  1.71.2.3      yamt 		 * don't use them. Can't do this earlier since on some hardware
    829  1.71.2.3      yamt 		 * we use firmware calls as early console output which may in
    830  1.71.2.3      yamt 		 * turn try to access these registers.
    831  1.71.2.3      yamt 		 */
    832  1.71.2.3      yamt 		reg = regr(sc, BUS_CNTL);
    833  1.71.2.3      yamt 		aprint_debug_dev(sc->sc_dev, "BUS_CNTL: %08x\n", reg);
    834  1.71.2.3      yamt 		reg |= BUS_APER_REG_DIS;
    835  1.71.2.3      yamt 		regw(sc, BUS_CNTL, reg);
    836  1.71.2.3      yamt 	}
    837      1.59  macallan 	config_found_ia(self, "drm", aux, machfb_drm_print);
    838      1.59  macallan }
    839      1.59  macallan 
    840      1.59  macallan static int
    841      1.59  macallan machfb_drm_print(void *aux, const char *pnp)
    842      1.59  macallan {
    843      1.59  macallan 	if (pnp)
    844      1.59  macallan 		aprint_normal("direct rendering for %s", pnp);
    845      1.59  macallan 	return (UNSUPP);
    846       1.1  junyoung }
    847       1.1  junyoung 
    848      1.30   thorpej static void
    849      1.41  macallan mach64_init_screen(void *cookie, struct vcons_screen *scr, int existing,
    850      1.48  christos     long *defattr)
    851       1.1  junyoung {
    852      1.41  macallan 	struct mach64_softc *sc = cookie;
    853      1.41  macallan 	struct rasops_info *ri = &scr->scr_ri;
    854      1.41  macallan 
    855      1.41  macallan /* XXX for now */
    856      1.41  macallan #define setmode 0
    857      1.26  macallan 
    858      1.21    martin 	ri->ri_depth = sc->bits_per_pixel;
    859      1.33  macallan 	ri->ri_width = sc->sc_my_mode->hdisplay;
    860      1.33  macallan 	ri->ri_height = sc->sc_my_mode->vdisplay;
    861      1.21    martin 	ri->ri_stride = ri->ri_width;
    862      1.21    martin 	ri->ri_flg = RI_CENTER;
    863  1.71.2.3      yamt 	if (ri->ri_depth == 8)
    864  1.71.2.3      yamt 		ri->ri_flg |= RI_8BIT_IS_RGB | RI_ENABLE_ALPHA;
    865      1.21    martin 
    866      1.66  macallan #ifdef VCONS_DRAW_INTR
    867      1.66  macallan 	scr->scr_flags |= VCONS_DONT_READ;
    868      1.66  macallan #endif
    869      1.66  macallan 
    870       1.1  junyoung 	if (existing) {
    871      1.41  macallan 		if (setmode && mach64_set_screentype(sc, scr->scr_type)) {
    872       1.1  junyoung 			panic("%s: failed to switch video mode",
    873      1.59  macallan 			    device_xname(sc->sc_dev));
    874       1.1  junyoung 		}
    875       1.1  junyoung 	}
    876      1.41  macallan 
    877  1.71.2.1      yamt 	rasops_init(ri, 0, 0);
    878      1.41  macallan 	ri->ri_caps = WSSCREEN_WSCOLORS;
    879      1.41  macallan 	rasops_reconfig(ri, sc->sc_my_mode->vdisplay / ri->ri_font->fontheight,
    880      1.41  macallan 		    sc->sc_my_mode->hdisplay / ri->ri_font->fontwidth);
    881      1.41  macallan 
    882      1.41  macallan 	/* enable acceleration */
    883      1.41  macallan 	ri->ri_hw = scr;
    884      1.41  macallan 	ri->ri_ops.copyrows = mach64_copyrows;
    885      1.41  macallan 	ri->ri_ops.copycols = mach64_copycols;
    886      1.41  macallan 	ri->ri_ops.eraserows = mach64_eraserows;
    887      1.41  macallan 	ri->ri_ops.erasecols = mach64_erasecols;
    888      1.41  macallan 	ri->ri_ops.cursor = mach64_cursor;
    889  1.71.2.3      yamt 	if (FONT_IS_ALPHA(ri->ri_font)) {
    890  1.71.2.3      yamt 		ri->ri_ops.putchar = mach64_putchar_aa8;
    891  1.71.2.3      yamt 	} else
    892  1.71.2.3      yamt 		ri->ri_ops.putchar = mach64_putchar_mono;
    893       1.1  junyoung }
    894       1.1  junyoung 
    895      1.30   thorpej static void
    896       1.3    martin mach64_init(struct mach64_softc *sc)
    897       1.1  junyoung {
    898      1.41  macallan 	sc->sc_blanked = 0;
    899       1.1  junyoung }
    900       1.1  junyoung 
    901      1.30   thorpej static int
    902       1.1  junyoung mach64_get_memsize(struct mach64_softc *sc)
    903       1.1  junyoung {
    904       1.1  junyoung 	int tmp, memsize;
    905       1.1  junyoung 	int mem_tab[] = {
    906       1.1  junyoung 		512, 1024, 2048, 4096, 6144, 8192, 12288, 16384
    907       1.1  junyoung 	};
    908       1.1  junyoung 	tmp = regr(sc, MEM_CNTL);
    909      1.41  macallan #ifdef DIAGNOSTIC
    910      1.59  macallan 	aprint_debug_dev(sc->sc_dev, "memctl %08x\n", tmp);
    911      1.41  macallan #endif
    912       1.1  junyoung 	if (sc->has_dsp) {
    913       1.1  junyoung 		tmp &= 0x0000000f;
    914       1.1  junyoung 		if (tmp < 8)
    915       1.1  junyoung 			memsize = (tmp + 1) * 512;
    916       1.1  junyoung 		else if (tmp < 12)
    917       1.1  junyoung 			memsize = (tmp - 3) * 1024;
    918       1.1  junyoung 		else
    919       1.1  junyoung 			memsize = (tmp - 7) * 2048;
    920       1.1  junyoung 	} else {
    921       1.1  junyoung 		memsize = mem_tab[tmp & 0x07];
    922       1.1  junyoung 	}
    923       1.1  junyoung 
    924       1.1  junyoung 	return memsize;
    925       1.1  junyoung }
    926       1.1  junyoung 
    927      1.30   thorpej static int
    928       1.1  junyoung mach64_get_max_ramdac(struct mach64_softc *sc)
    929       1.1  junyoung {
    930       1.1  junyoung 	int i;
    931       1.1  junyoung 
    932      1.22     perry 	if ((mach64_chip_id == PCI_PRODUCT_ATI_MACH64_VT ||
    933       1.1  junyoung 	     mach64_chip_id == PCI_PRODUCT_ATI_RAGE_II) &&
    934       1.1  junyoung 	     (mach64_chip_rev & 0x07))
    935       1.1  junyoung 		return 170000;
    936       1.1  junyoung 
    937      1.54    dyoung 	for (i = 0; i < __arraycount(mach64_info); i++)
    938       1.1  junyoung 		if (mach64_chip_id == mach64_info[i].chip_id)
    939       1.1  junyoung 			return mach64_info[i].ramdac_freq;
    940       1.1  junyoung 
    941       1.1  junyoung 	if (sc->bits_per_pixel == 8)
    942       1.1  junyoung 		return 135000;
    943       1.1  junyoung 	else
    944       1.1  junyoung 		return 80000;
    945       1.1  junyoung }
    946       1.1  junyoung 
    947      1.41  macallan #if defined(__sparc__) || defined(__powerpc__)
    948      1.30   thorpej static void
    949       1.1  junyoung mach64_get_mode(struct mach64_softc *sc, struct videomode *mode)
    950       1.1  junyoung {
    951       1.1  junyoung 	struct mach64_crtcregs crtc;
    952      1.22     perry 
    953       1.1  junyoung 	crtc.h_total_disp = regr(sc, CRTC_H_TOTAL_DISP);
    954       1.1  junyoung 	crtc.h_sync_strt_wid = regr(sc, CRTC_H_SYNC_STRT_WID);
    955       1.1  junyoung 	crtc.v_total_disp = regr(sc, CRTC_V_TOTAL_DISP);
    956       1.1  junyoung 	crtc.v_sync_strt_wid = regr(sc, CRTC_V_SYNC_STRT_WID);
    957       1.1  junyoung 
    958       1.1  junyoung 	mode->htotal = ((crtc.h_total_disp & 0xffff) + 1) << 3;
    959       1.1  junyoung 	mode->hdisplay = ((crtc.h_total_disp >> 16) + 1) << 3;
    960       1.1  junyoung 	mode->hsync_start = ((crtc.h_sync_strt_wid & 0xffff) + 1) << 3;
    961       1.1  junyoung 	mode->hsync_end = ((crtc.h_sync_strt_wid >> 16) << 3) +
    962       1.1  junyoung 	    mode->hsync_start;
    963       1.1  junyoung 	mode->vtotal = (crtc.v_total_disp & 0xffff) + 1;
    964       1.1  junyoung 	mode->vdisplay = (crtc.v_total_disp >> 16) + 1;
    965       1.1  junyoung 	mode->vsync_start = (crtc.v_sync_strt_wid & 0xffff) + 1;
    966       1.1  junyoung 	mode->vsync_end = (crtc.v_sync_strt_wid >> 16) + mode->vsync_start;
    967       1.1  junyoung 
    968      1.61  macallan #ifdef MACHFB_DEBUG
    969       1.1  junyoung 	printf("mach64_get_mode: %d %d %d %d %d %d %d %d\n",
    970       1.1  junyoung 	    mode->hdisplay, mode->hsync_start, mode->hsync_end, mode->htotal,
    971       1.1  junyoung 	    mode->vdisplay, mode->vsync_start, mode->vsync_end, mode->vtotal);
    972       1.1  junyoung #endif
    973       1.1  junyoung }
    974      1.35  macallan #endif
    975       1.1  junyoung 
    976      1.30   thorpej static int
    977       1.1  junyoung mach64_calc_crtcregs(struct mach64_softc *sc, struct mach64_crtcregs *crtc,
    978       1.1  junyoung     struct videomode *mode)
    979       1.1  junyoung {
    980       1.1  junyoung 
    981       1.1  junyoung 	if (mode->dot_clock > sc->ramdac_freq)
    982       1.1  junyoung 		/* Clock too high. */
    983       1.1  junyoung 		return 1;
    984       1.1  junyoung 
    985       1.1  junyoung 	crtc->h_total_disp = (((mode->hdisplay >> 3) - 1) << 16) |
    986       1.1  junyoung 	    ((mode->htotal >> 3) - 1);
    987      1.22     perry 	crtc->h_sync_strt_wid =
    988       1.1  junyoung 	    (((mode->hsync_end - mode->hsync_start) >> 3) << 16) |
    989       1.1  junyoung 	    ((mode->hsync_start >> 3) - 1);
    990       1.1  junyoung 
    991       1.1  junyoung 	crtc->v_total_disp = ((mode->vdisplay - 1) << 16) |
    992       1.1  junyoung 	    (mode->vtotal - 1);
    993       1.1  junyoung 	crtc->v_sync_strt_wid =
    994       1.1  junyoung 	    ((mode->vsync_end - mode->vsync_start) << 16) |
    995       1.1  junyoung 	    (mode->vsync_start - 1);
    996       1.1  junyoung 
    997       1.1  junyoung 	if (mode->flags & VID_NVSYNC)
    998       1.1  junyoung 		crtc->v_sync_strt_wid |= CRTC_VSYNC_NEG;
    999       1.1  junyoung 
   1000       1.1  junyoung 	switch (sc->bits_per_pixel) {
   1001       1.1  junyoung 	case 8:
   1002       1.1  junyoung 		crtc->color_depth = CRTC_PIX_WIDTH_8BPP;
   1003       1.1  junyoung 		break;
   1004       1.1  junyoung 	case 16:
   1005       1.1  junyoung 		crtc->color_depth = CRTC_PIX_WIDTH_16BPP;
   1006      1.22     perry 		break;
   1007       1.1  junyoung 	case 32:
   1008       1.1  junyoung 		crtc->color_depth = CRTC_PIX_WIDTH_32BPP;
   1009      1.22     perry 		break;
   1010       1.1  junyoung 	}
   1011      1.22     perry 
   1012       1.1  junyoung 	crtc->gen_cntl = 0;
   1013       1.1  junyoung 	if (mode->flags & VID_INTERLACE)
   1014       1.1  junyoung 		crtc->gen_cntl |= CRTC_INTERLACE_EN;
   1015      1.41  macallan 
   1016       1.1  junyoung 	if (mode->flags & VID_CSYNC)
   1017       1.1  junyoung 		crtc->gen_cntl |= CRTC_CSYNC_EN;
   1018      1.22     perry 
   1019       1.1  junyoung 	crtc->dot_clock = mode->dot_clock;
   1020       1.1  junyoung 
   1021       1.1  junyoung 	return 0;
   1022       1.1  junyoung }
   1023       1.1  junyoung 
   1024      1.30   thorpej static void
   1025       1.1  junyoung mach64_set_crtcregs(struct mach64_softc *sc, struct mach64_crtcregs *crtc)
   1026       1.1  junyoung {
   1027       1.1  junyoung 
   1028       1.1  junyoung 	mach64_set_pll(sc, crtc->dot_clock);
   1029       1.1  junyoung 
   1030       1.1  junyoung 	if (sc->has_dsp)
   1031       1.1  junyoung 		mach64_set_dsp(sc);
   1032  1.71.2.3      yamt 
   1033       1.1  junyoung 	regw(sc, CRTC_H_TOTAL_DISP, crtc->h_total_disp);
   1034       1.1  junyoung 	regw(sc, CRTC_H_SYNC_STRT_WID, crtc->h_sync_strt_wid);
   1035       1.1  junyoung 	regw(sc, CRTC_V_TOTAL_DISP, crtc->v_total_disp);
   1036       1.1  junyoung 	regw(sc, CRTC_V_SYNC_STRT_WID, crtc->v_sync_strt_wid);
   1037      1.22     perry 
   1038       1.1  junyoung 	regw(sc, CRTC_VLINE_CRNT_VLINE, 0);
   1039       1.1  junyoung 
   1040       1.1  junyoung 	regw(sc, CRTC_OFF_PITCH, (sc->virt_x >> 3) << 22);
   1041      1.22     perry 
   1042       1.1  junyoung 	regw(sc, CRTC_GEN_CNTL, crtc->gen_cntl | crtc->color_depth |
   1043      1.41  macallan /* XXX this unconditionally enables composite sync on SPARC */
   1044      1.41  macallan #ifdef __sparc__
   1045      1.41  macallan 	    CRTC_CSYNC_EN |
   1046      1.41  macallan #endif
   1047       1.1  junyoung 	    CRTC_EXT_DISP_EN | CRTC_EXT_EN);
   1048       1.1  junyoung }
   1049       1.1  junyoung 
   1050      1.30   thorpej static int
   1051       1.1  junyoung mach64_modeswitch(struct mach64_softc *sc, struct videomode *mode)
   1052       1.1  junyoung {
   1053       1.1  junyoung 	struct mach64_crtcregs crtc;
   1054       1.1  junyoung 
   1055      1.45       mrg 	memset(&crtc, 0, sizeof crtc);	/* XXX gcc */
   1056      1.45       mrg 
   1057       1.1  junyoung 	if (mach64_calc_crtcregs(sc, &crtc, mode))
   1058       1.1  junyoung 		return 1;
   1059      1.59  macallan 	aprint_debug("crtc dot clock: %d\n", crtc.dot_clock);
   1060      1.59  macallan 	if (crtc.dot_clock == 0) {
   1061      1.59  macallan 		aprint_error("%s: preposterous dot clock (%d)\n",
   1062      1.59  macallan 		    device_xname(sc->sc_dev), crtc.dot_clock);
   1063      1.59  macallan 		return 1;
   1064      1.59  macallan 	}
   1065       1.1  junyoung 	mach64_set_crtcregs(sc, &crtc);
   1066       1.1  junyoung 	return 0;
   1067       1.1  junyoung }
   1068       1.1  junyoung 
   1069      1.30   thorpej static void
   1070       1.1  junyoung mach64_reset_engine(struct mach64_softc *sc)
   1071       1.1  junyoung {
   1072       1.1  junyoung 
   1073       1.1  junyoung 	/* Reset engine.*/
   1074       1.1  junyoung 	regw(sc, GEN_TEST_CNTL, regr(sc, GEN_TEST_CNTL) & ~GUI_ENGINE_ENABLE);
   1075       1.1  junyoung 
   1076       1.1  junyoung 	/* Enable engine. */
   1077       1.1  junyoung 	regw(sc, GEN_TEST_CNTL, regr(sc, GEN_TEST_CNTL) | GUI_ENGINE_ENABLE);
   1078       1.1  junyoung 
   1079       1.1  junyoung 	/* Ensure engine is not locked up by clearing any FIFO or
   1080       1.1  junyoung 	   host errors. */
   1081       1.1  junyoung 	regw(sc, BUS_CNTL, regr(sc, BUS_CNTL) | BUS_HOST_ERR_ACK |
   1082       1.1  junyoung 	    BUS_FIFO_ERR_ACK);
   1083       1.1  junyoung }
   1084       1.1  junyoung 
   1085      1.30   thorpej static void
   1086       1.1  junyoung mach64_init_engine(struct mach64_softc *sc)
   1087       1.1  junyoung {
   1088      1.41  macallan 	uint32_t pitch_value;
   1089      1.22     perry 
   1090       1.1  junyoung 	pitch_value = sc->virt_x;
   1091       1.1  junyoung 
   1092       1.1  junyoung 	if (sc->bits_per_pixel == 24)
   1093       1.1  junyoung 		pitch_value *= 3;
   1094       1.1  junyoung 
   1095       1.1  junyoung 	mach64_reset_engine(sc);
   1096      1.22     perry 
   1097       1.1  junyoung 	wait_for_fifo(sc, 14);
   1098      1.22     perry 
   1099       1.1  junyoung 	regw(sc, CONTEXT_MASK, 0xffffffff);
   1100       1.1  junyoung 
   1101       1.1  junyoung 	regw(sc, DST_OFF_PITCH, (pitch_value / 8) << 22);
   1102       1.1  junyoung 
   1103      1.64  macallan 	/* make sure the visible area starts where we're going to draw */
   1104      1.64  macallan 	regw(sc, CRTC_OFF_PITCH, (sc->virt_x >> 3) << 22);
   1105      1.64  macallan 
   1106       1.1  junyoung 	regw(sc, DST_Y_X, 0);
   1107       1.1  junyoung 	regw(sc, DST_HEIGHT, 0);
   1108       1.1  junyoung 	regw(sc, DST_BRES_ERR, 0);
   1109       1.1  junyoung 	regw(sc, DST_BRES_INC, 0);
   1110       1.1  junyoung 	regw(sc, DST_BRES_DEC, 0);
   1111       1.1  junyoung 
   1112       1.1  junyoung 	regw(sc, DST_CNTL, DST_LAST_PEL | DST_X_LEFT_TO_RIGHT |
   1113       1.1  junyoung 	    DST_Y_TOP_TO_BOTTOM);
   1114       1.1  junyoung 
   1115       1.1  junyoung 	regw(sc, SRC_OFF_PITCH, (pitch_value / 8) << 22);
   1116       1.1  junyoung 
   1117       1.1  junyoung 	regw(sc, SRC_Y_X, 0);
   1118       1.1  junyoung 	regw(sc, SRC_HEIGHT1_WIDTH1, 1);
   1119       1.1  junyoung 	regw(sc, SRC_Y_X_START, 0);
   1120       1.1  junyoung 	regw(sc, SRC_HEIGHT2_WIDTH2, 1);
   1121       1.1  junyoung 
   1122       1.1  junyoung 	regw(sc, SRC_CNTL, SRC_LINE_X_LEFT_TO_RIGHT);
   1123       1.1  junyoung 
   1124       1.1  junyoung 	wait_for_fifo(sc, 13);
   1125       1.1  junyoung 	regw(sc, HOST_CNTL, 0);
   1126      1.22     perry 
   1127       1.1  junyoung 	regw(sc, PAT_REG0, 0);
   1128       1.1  junyoung 	regw(sc, PAT_REG1, 0);
   1129       1.1  junyoung 	regw(sc, PAT_CNTL, 0);
   1130       1.1  junyoung 
   1131       1.1  junyoung 	regw(sc, SC_LEFT, 0);
   1132       1.1  junyoung 	regw(sc, SC_TOP, 0);
   1133  1.71.2.3      yamt 	regw(sc, SC_BOTTOM, 0x3fff);
   1134       1.1  junyoung 	regw(sc, SC_RIGHT, pitch_value - 1);
   1135       1.1  junyoung 
   1136      1.66  macallan 	regw(sc, DP_BKGD_CLR, WS_DEFAULT_BG);
   1137      1.66  macallan 	regw(sc, DP_FRGD_CLR, WS_DEFAULT_FG);
   1138       1.1  junyoung 	regw(sc, DP_WRITE_MASK, 0xffffffff);
   1139       1.1  junyoung 	regw(sc, DP_MIX, (MIX_SRC << 16) | MIX_DST);
   1140       1.1  junyoung 
   1141       1.1  junyoung 	regw(sc, DP_SRC, FRGD_SRC_FRGD_CLR);
   1142       1.1  junyoung 
   1143       1.1  junyoung 	wait_for_fifo(sc, 3);
   1144       1.1  junyoung 	regw(sc, CLR_CMP_CLR, 0);
   1145       1.1  junyoung 	regw(sc, CLR_CMP_MASK, 0xffffffff);
   1146       1.1  junyoung 	regw(sc, CLR_CMP_CNTL, 0);
   1147       1.1  junyoung 
   1148  1.71.2.3      yamt 	wait_for_fifo(sc, 3);
   1149       1.1  junyoung 	switch (sc->bits_per_pixel) {
   1150       1.1  junyoung 	case 8:
   1151      1.64  macallan 		regw(sc, DP_PIX_WIDTH, HOST_1BPP | SRC_8BPP | DST_8BPP);
   1152       1.1  junyoung 		regw(sc, DP_CHAIN_MASK, DP_CHAIN_8BPP);
   1153      1.25  macallan 		/* We want 8 bit per channel */
   1154      1.19    martin 		regw(sc, DAC_CNTL, regr(sc, DAC_CNTL) | DAC_8BIT_EN);
   1155       1.1  junyoung 		break;
   1156       1.1  junyoung 	case 32:
   1157      1.64  macallan 		regw(sc, DP_PIX_WIDTH, HOST_1BPP | SRC_32BPP | DST_32BPP);
   1158       1.1  junyoung 		regw(sc, DP_CHAIN_MASK, DP_CHAIN_32BPP);
   1159       1.1  junyoung 		regw(sc, DAC_CNTL, regr(sc, DAC_CNTL) | DAC_8BIT_EN);
   1160       1.1  junyoung 		break;
   1161       1.1  junyoung 	}
   1162  1.71.2.3      yamt 	regw(sc, DP_WRITE_MASK, 0xff);
   1163       1.1  junyoung 
   1164       1.1  junyoung 	wait_for_fifo(sc, 5);
   1165       1.1  junyoung 	regw(sc, CRTC_INT_CNTL, regr(sc, CRTC_INT_CNTL) & ~0x20);
   1166       1.1  junyoung 	regw(sc, GUI_TRAJ_CNTL, DST_X_LEFT_TO_RIGHT | DST_Y_TOP_TO_BOTTOM);
   1167       1.1  junyoung 
   1168       1.1  junyoung 	wait_for_idle(sc);
   1169       1.1  junyoung }
   1170       1.1  junyoung 
   1171      1.30   thorpej #if 0
   1172      1.30   thorpej static void
   1173       1.1  junyoung mach64_adjust_frame(struct mach64_softc *sc, int x, int y)
   1174       1.1  junyoung {
   1175       1.1  junyoung 	int offset;
   1176       1.1  junyoung 
   1177       1.1  junyoung 	offset = ((x + y * sc->virt_x) * (sc->bits_per_pixel >> 3)) >> 3;
   1178      1.22     perry 
   1179       1.1  junyoung 	regw(sc, CRTC_OFF_PITCH, (regr(sc, CRTC_OFF_PITCH) & 0xfff00000) |
   1180       1.1  junyoung 	     offset);
   1181       1.1  junyoung }
   1182      1.30   thorpej #endif
   1183       1.1  junyoung 
   1184      1.30   thorpej static void
   1185       1.1  junyoung mach64_set_dsp(struct mach64_softc *sc)
   1186       1.1  junyoung {
   1187      1.41  macallan 	uint32_t fifo_depth, page_size, dsp_precision, dsp_loop_latency;
   1188      1.41  macallan 	uint32_t dsp_off, dsp_on, dsp_xclks_per_qw;
   1189      1.41  macallan 	uint32_t xclks_per_qw, y;
   1190      1.41  macallan 	uint32_t fifo_off, fifo_on;
   1191      1.22     perry 
   1192      1.59  macallan 	aprint_normal_dev(sc->sc_dev, "initializing the DSP\n");
   1193      1.59  macallan 
   1194       1.1  junyoung 	if (mach64_chip_id == PCI_PRODUCT_ATI_MACH64_VT ||
   1195       1.1  junyoung 	    mach64_chip_id == PCI_PRODUCT_ATI_RAGE_II ||
   1196       1.1  junyoung 	    mach64_chip_id == PCI_PRODUCT_ATI_RAGE_IIP ||
   1197       1.1  junyoung 	    mach64_chip_id == PCI_PRODUCT_ATI_RAGE_IIC_PCI ||
   1198       1.1  junyoung 	    mach64_chip_id == PCI_PRODUCT_ATI_RAGE_IIC_AGP_B ||
   1199       1.1  junyoung 	    mach64_chip_id == PCI_PRODUCT_ATI_RAGE_IIC_AGP_P) {
   1200       1.1  junyoung 		dsp_loop_latency = 0;
   1201       1.1  junyoung 		fifo_depth = 24;
   1202       1.1  junyoung 	} else {
   1203       1.1  junyoung 		dsp_loop_latency = 2;
   1204       1.1  junyoung 		fifo_depth = 32;
   1205       1.1  junyoung 	}
   1206       1.1  junyoung 
   1207       1.1  junyoung 	dsp_precision = 0;
   1208       1.1  junyoung 	xclks_per_qw = (sc->mclk_fb_div * sc->vclk_post_div * 64 << 11) /
   1209       1.1  junyoung 	    (sc->vclk_fb_div * sc->mclk_post_div * sc->bits_per_pixel);
   1210       1.1  junyoung 	y = (xclks_per_qw * fifo_depth) >> 11;
   1211       1.1  junyoung 	while (y) {
   1212       1.1  junyoung 		y >>= 1;
   1213       1.1  junyoung 		dsp_precision++;
   1214       1.1  junyoung 	}
   1215       1.1  junyoung 	dsp_precision -= 5;
   1216       1.1  junyoung 	fifo_off = ((xclks_per_qw * (fifo_depth - 1)) >> 5) + (3 << 6);
   1217      1.22     perry 
   1218       1.1  junyoung 	switch (sc->memtype) {
   1219       1.1  junyoung 	case DRAM:
   1220       1.1  junyoung 	case EDO_DRAM:
   1221       1.1  junyoung 	case PSEUDO_EDO:
   1222       1.1  junyoung 		if (sc->memsize > 1024) {
   1223       1.1  junyoung 			page_size = 9;
   1224       1.1  junyoung 			dsp_loop_latency += 6;
   1225       1.1  junyoung 		} else {
   1226       1.1  junyoung 			page_size = 10;
   1227       1.1  junyoung 			if (sc->memtype == DRAM)
   1228       1.1  junyoung 				dsp_loop_latency += 8;
   1229       1.1  junyoung 			else
   1230       1.1  junyoung 				dsp_loop_latency += 7;
   1231       1.1  junyoung 		}
   1232       1.1  junyoung 		break;
   1233       1.1  junyoung 	case SDRAM:
   1234       1.1  junyoung 	case SGRAM:
   1235       1.1  junyoung 		if (sc->memsize > 1024) {
   1236       1.1  junyoung 			page_size = 8;
   1237       1.1  junyoung 			dsp_loop_latency += 8;
   1238       1.1  junyoung 		} else {
   1239      1.22     perry 			page_size = 10;
   1240       1.1  junyoung 			dsp_loop_latency += 9;
   1241       1.1  junyoung 		}
   1242       1.1  junyoung 		break;
   1243       1.1  junyoung 	default:
   1244       1.1  junyoung 		page_size = 10;
   1245       1.1  junyoung 		dsp_loop_latency += 9;
   1246       1.1  junyoung 		break;
   1247       1.1  junyoung 	}
   1248       1.1  junyoung 
   1249       1.1  junyoung 	if (xclks_per_qw >= (page_size << 11))
   1250       1.1  junyoung 		fifo_on = ((2 * page_size + 1) << 6) + (xclks_per_qw >> 5);
   1251       1.1  junyoung 	else
   1252       1.1  junyoung 		fifo_on = (3 * page_size + 2) << 6;
   1253       1.1  junyoung 
   1254       1.1  junyoung 	dsp_xclks_per_qw = xclks_per_qw >> dsp_precision;
   1255       1.1  junyoung 	dsp_on = fifo_on >> dsp_precision;
   1256       1.1  junyoung 	dsp_off = fifo_off >> dsp_precision;
   1257       1.1  junyoung 
   1258      1.59  macallan #ifdef MACHFB_DEBUG
   1259       1.1  junyoung 	printf("dsp_xclks_per_qw = %d, dsp_on = %d, dsp_off = %d,\n"
   1260       1.1  junyoung 	    "dsp_precision = %d, dsp_loop_latency = %d,\n"
   1261       1.1  junyoung 	    "mclk_fb_div = %d, vclk_fb_div = %d,\n"
   1262       1.1  junyoung 	    "mclk_post_div = %d, vclk_post_div = %d\n",
   1263       1.1  junyoung 	    dsp_xclks_per_qw, dsp_on, dsp_off, dsp_precision, dsp_loop_latency,
   1264       1.1  junyoung 	    sc->mclk_fb_div, sc->vclk_fb_div,
   1265       1.1  junyoung 	    sc->mclk_post_div, sc->vclk_post_div);
   1266      1.22     perry #endif
   1267       1.1  junyoung 
   1268       1.1  junyoung 	regw(sc, DSP_ON_OFF, ((dsp_on << 16) & DSP_ON) | (dsp_off & DSP_OFF));
   1269       1.1  junyoung 	regw(sc, DSP_CONFIG, ((dsp_precision << 20) & DSP_PRECISION) |
   1270      1.22     perry 	    ((dsp_loop_latency << 16) & DSP_LOOP_LATENCY) |
   1271       1.1  junyoung 	    (dsp_xclks_per_qw & DSP_XCLKS_PER_QW));
   1272       1.1  junyoung }
   1273       1.1  junyoung 
   1274      1.30   thorpej static void
   1275       1.1  junyoung mach64_set_pll(struct mach64_softc *sc, int clock)
   1276       1.1  junyoung {
   1277      1.59  macallan 	uint32_t q, clockreg;
   1278      1.59  macallan 	int clockshift = sc->sc_clock << 1;
   1279      1.59  macallan 	uint8_t reg, vclk_ctl;
   1280       1.1  junyoung 
   1281       1.1  junyoung 	q = (clock * sc->ref_div * 100) / (2 * sc->ref_freq);
   1282      1.59  macallan #ifdef MACHFB_DEBUG
   1283       1.1  junyoung 	printf("q = %d\n", q);
   1284       1.1  junyoung #endif
   1285       1.1  junyoung 	if (q > 25500) {
   1286  1.71.2.3      yamt 		aprint_error_dev(sc->sc_dev, "Warning: q > 25500\n");
   1287       1.1  junyoung 		q = 25500;
   1288       1.1  junyoung 		sc->vclk_post_div = 1;
   1289       1.1  junyoung 		sc->log2_vclk_post_div = 0;
   1290       1.1  junyoung 	} else if (q > 12750) {
   1291       1.1  junyoung 		sc->vclk_post_div = 1;
   1292       1.1  junyoung 		sc->log2_vclk_post_div = 0;
   1293       1.1  junyoung 	} else if (q > 6350) {
   1294       1.1  junyoung 		sc->vclk_post_div = 2;
   1295       1.1  junyoung 		sc->log2_vclk_post_div = 1;
   1296       1.1  junyoung 	} else if (q > 3150) {
   1297       1.1  junyoung 		sc->vclk_post_div = 4;
   1298       1.1  junyoung 		sc->log2_vclk_post_div = 2;
   1299       1.1  junyoung 	} else if (q >= 1600) {
   1300       1.1  junyoung 		sc->vclk_post_div = 8;
   1301       1.1  junyoung 		sc->log2_vclk_post_div = 3;
   1302       1.1  junyoung 	} else {
   1303  1.71.2.3      yamt 		aprint_error_dev(sc->sc_dev, "Warning: q < 1600\n");
   1304       1.1  junyoung 		sc->vclk_post_div = 8;
   1305       1.1  junyoung 		sc->log2_vclk_post_div = 3;
   1306       1.1  junyoung 	}
   1307       1.1  junyoung 	sc->vclk_fb_div = q * sc->vclk_post_div / 100;
   1308  1.71.2.3      yamt 	aprint_debug("post_div: %d log2_post_div: %d mclk_div: %d\n",
   1309  1.71.2.3      yamt 	    sc->vclk_post_div, sc->log2_vclk_post_div, sc->mclk_fb_div);
   1310       1.1  junyoung 
   1311      1.59  macallan 	vclk_ctl = regrb_pll(sc, PLL_VCLK_CNTL);
   1312  1.71.2.3      yamt 	aprint_debug("vclk_ctl: %02x\n", vclk_ctl);
   1313      1.59  macallan 	vclk_ctl |= PLL_VCLK_RESET;
   1314      1.59  macallan 	regwb_pll(sc, PLL_VCLK_CNTL, vclk_ctl);
   1315      1.59  macallan 
   1316       1.1  junyoung 	regwb_pll(sc, MCLK_FB_DIV, sc->mclk_fb_div);
   1317      1.59  macallan 	reg = regrb_pll(sc, VCLK_POST_DIV);
   1318      1.59  macallan 	reg &= ~(3 << clockshift);
   1319      1.59  macallan 	reg |= (sc->log2_vclk_post_div << clockshift);
   1320      1.59  macallan 	regwb_pll(sc, VCLK_POST_DIV, reg);
   1321      1.59  macallan 	regwb_pll(sc, VCLK0_FB_DIV + sc->sc_clock, sc->vclk_fb_div);
   1322      1.59  macallan 
   1323      1.59  macallan 	vclk_ctl &= ~PLL_VCLK_RESET;
   1324      1.59  macallan 	regwb_pll(sc, PLL_VCLK_CNTL, vclk_ctl);
   1325      1.59  macallan 
   1326      1.59  macallan 	clockreg = regr(sc, CLOCK_CNTL);
   1327      1.59  macallan 	clockreg &= ~CLOCK_SEL;
   1328      1.59  macallan 	clockreg |= sc->sc_clock | CLOCK_STROBE;
   1329      1.59  macallan 	regw(sc, CLOCK_CNTL, clockreg);
   1330      1.22     perry }
   1331       1.1  junyoung 
   1332      1.30   thorpej static void
   1333       1.1  junyoung mach64_init_lut(struct mach64_softc *sc)
   1334       1.1  junyoung {
   1335  1.71.2.3      yamt 	uint8_t cmap[768];
   1336      1.28  christos 	int i, idx;
   1337      1.26  macallan 
   1338  1.71.2.3      yamt 	rasops_get_cmap(&mach64_console_screen.scr_ri, cmap, sizeof(cmap));
   1339      1.26  macallan 	idx = 0;
   1340      1.26  macallan 	for (i = 0; i < 256; i++) {
   1341  1.71.2.3      yamt 		mach64_putpalreg(sc, i, cmap[idx], cmap[idx + 1],
   1342  1.71.2.3      yamt 		    cmap[idx + 2]);
   1343      1.26  macallan 		idx += 3;
   1344      1.19    martin 	}
   1345      1.24  macallan }
   1346       1.1  junyoung 
   1347      1.30   thorpej static int
   1348      1.26  macallan mach64_putpalreg(struct mach64_softc *sc, uint8_t index, uint8_t r, uint8_t g,
   1349      1.26  macallan     uint8_t b)
   1350      1.19    martin {
   1351      1.26  macallan 	sc->sc_cmap_red[index] = r;
   1352      1.26  macallan 	sc->sc_cmap_green[index] = g;
   1353      1.26  macallan 	sc->sc_cmap_blue[index] = b;
   1354      1.25  macallan 	/*
   1355      1.25  macallan 	 * writing the dac index takes a while, in theory we can poll some
   1356      1.25  macallan 	 * register to see when it's ready - but we better avoid writing it
   1357      1.25  macallan 	 * unnecessarily
   1358      1.25  macallan 	 */
   1359      1.28  christos 	if (index != sc->sc_dacw) {
   1360      1.19    martin 		regwb(sc, DAC_MASK, 0xff);
   1361      1.19    martin 		regwb(sc, DAC_WINDEX, index);
   1362      1.19    martin 	}
   1363      1.26  macallan 	sc->sc_dacw = index + 1;
   1364      1.19    martin 	regwb(sc, DAC_DATA, r);
   1365      1.19    martin 	regwb(sc, DAC_DATA, g);
   1366      1.19    martin 	regwb(sc, DAC_DATA, b);
   1367      1.19    martin 	return 0;
   1368      1.19    martin }
   1369       1.1  junyoung 
   1370      1.30   thorpej static int
   1371      1.21    martin mach64_putcmap(struct mach64_softc *sc, struct wsdisplay_cmap *cm)
   1372      1.19    martin {
   1373      1.41  macallan 	uint index = cm->index;
   1374      1.41  macallan 	uint count = cm->count;
   1375      1.19    martin 	int i, error;
   1376      1.41  macallan 	uint8_t rbuf[256], gbuf[256], bbuf[256];
   1377      1.41  macallan 	uint8_t *r, *g, *b;
   1378      1.19    martin 
   1379      1.19    martin 	if (cm->index >= 256 || cm->count > 256 ||
   1380      1.19    martin 	    (cm->index + cm->count) > 256)
   1381      1.19    martin 		return EINVAL;
   1382      1.19    martin 	error = copyin(cm->red, &rbuf[index], count);
   1383      1.19    martin 	if (error)
   1384      1.19    martin 		return error;
   1385      1.19    martin 	error = copyin(cm->green, &gbuf[index], count);
   1386      1.19    martin 	if (error)
   1387      1.19    martin 		return error;
   1388      1.19    martin 	error = copyin(cm->blue, &bbuf[index], count);
   1389      1.19    martin 	if (error)
   1390      1.19    martin 		return error;
   1391      1.19    martin 
   1392      1.19    martin 	memcpy(&sc->sc_cmap_red[index], &rbuf[index], count);
   1393      1.19    martin 	memcpy(&sc->sc_cmap_green[index], &gbuf[index], count);
   1394      1.19    martin 	memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
   1395      1.19    martin 
   1396      1.19    martin 	r = &sc->sc_cmap_red[index];
   1397      1.19    martin 	g = &sc->sc_cmap_green[index];
   1398      1.19    martin 	b = &sc->sc_cmap_blue[index];
   1399      1.22     perry 
   1400      1.19    martin 	for (i = 0; i < count; i++) {
   1401      1.26  macallan 		mach64_putpalreg(sc, index, *r, *g, *b);
   1402      1.19    martin 		index++;
   1403      1.19    martin 		r++, g++, b++;
   1404       1.1  junyoung 	}
   1405      1.19    martin 	return 0;
   1406      1.19    martin }
   1407      1.19    martin 
   1408      1.30   thorpej static int
   1409      1.21    martin mach64_getcmap(struct mach64_softc *sc, struct wsdisplay_cmap *cm)
   1410      1.19    martin {
   1411      1.19    martin 	u_int index = cm->index;
   1412      1.19    martin 	u_int count = cm->count;
   1413      1.19    martin 	int error;
   1414      1.19    martin 
   1415      1.19    martin 	if (index >= 255 || count > 256 || index + count > 256)
   1416      1.19    martin 		return EINVAL;
   1417      1.22     perry 
   1418      1.19    martin 	error = copyout(&sc->sc_cmap_red[index],   cm->red,   count);
   1419      1.19    martin 	if (error)
   1420      1.19    martin 		return error;
   1421      1.19    martin 	error = copyout(&sc->sc_cmap_green[index], cm->green, count);
   1422      1.19    martin 	if (error)
   1423      1.19    martin 		return error;
   1424      1.19    martin 	error = copyout(&sc->sc_cmap_blue[index],  cm->blue,  count);
   1425      1.19    martin 	if (error)
   1426      1.19    martin 		return error;
   1427      1.19    martin 
   1428      1.19    martin 	return 0;
   1429       1.1  junyoung }
   1430       1.1  junyoung 
   1431      1.30   thorpej static int
   1432       1.1  junyoung mach64_set_screentype(struct mach64_softc *sc, const struct wsscreen_descr *des)
   1433       1.1  junyoung {
   1434       1.6  junyoung 	struct mach64_crtcregs regs;
   1435       1.1  junyoung 
   1436       1.6  junyoung 	if (mach64_calc_crtcregs(sc, &regs,
   1437       1.6  junyoung 	    (struct videomode *)des->modecookie))
   1438       1.6  junyoung 		return 1;
   1439       1.6  junyoung 
   1440       1.6  junyoung 	mach64_set_crtcregs(sc, &regs);
   1441       1.6  junyoung 	return 0;
   1442       1.1  junyoung }
   1443       1.1  junyoung 
   1444      1.30   thorpej static int
   1445      1.59  macallan mach64_is_console(struct mach64_softc *sc)
   1446       1.5  junyoung {
   1447      1.59  macallan 	bool console = 0;
   1448       1.5  junyoung 
   1449      1.59  macallan 	prop_dictionary_get_bool(device_properties(sc->sc_dev),
   1450      1.59  macallan 	    "is_console", &console);
   1451      1.59  macallan 	return console;
   1452       1.5  junyoung }
   1453       1.5  junyoung 
   1454       1.1  junyoung /*
   1455       1.1  junyoung  * wsdisplay_emulops
   1456       1.1  junyoung  */
   1457       1.1  junyoung 
   1458      1.30   thorpej static void
   1459       1.1  junyoung mach64_cursor(void *cookie, int on, int row, int col)
   1460       1.1  junyoung {
   1461      1.28  christos 	struct rasops_info *ri = cookie;
   1462      1.41  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1463      1.41  macallan 	struct mach64_softc *sc = scr->scr_cookie;
   1464      1.41  macallan 	int x, y, wi, he;
   1465      1.26  macallan 
   1466      1.26  macallan 	wi = ri->ri_font->fontwidth;
   1467      1.26  macallan 	he = ri->ri_font->fontheight;
   1468      1.26  macallan 
   1469      1.41  macallan 	if ((!sc->sc_locked) && (sc->sc_mode == WSDISPLAYIO_MODE_EMUL)) {
   1470      1.41  macallan 		x = ri->ri_ccol * wi + ri->ri_xorigin;
   1471      1.41  macallan 		y = ri->ri_crow * he + ri->ri_yorigin;
   1472      1.41  macallan 		if (ri->ri_flg & RI_CURSOR) {
   1473  1.71.2.3      yamt 			mach64_bitblt(sc, x, y, x, y, wi, he, MIX_NOT_SRC);
   1474      1.41  macallan 			ri->ri_flg &= ~RI_CURSOR;
   1475      1.21    martin 		}
   1476      1.41  macallan 		ri->ri_crow = row;
   1477      1.41  macallan 		ri->ri_ccol = col;
   1478      1.41  macallan 		if (on) {
   1479      1.41  macallan 			x = ri->ri_ccol * wi + ri->ri_xorigin;
   1480      1.41  macallan 			y = ri->ri_crow * he + ri->ri_yorigin;
   1481  1.71.2.3      yamt 			mach64_bitblt(sc, x, y, x, y, wi, he, MIX_NOT_SRC);
   1482      1.56      yamt 			ri->ri_flg |= RI_CURSOR;
   1483      1.21    martin 		}
   1484      1.21    martin 	} else {
   1485      1.41  macallan 		scr->scr_ri.ri_crow = row;
   1486      1.41  macallan 		scr->scr_ri.ri_ccol = col;
   1487      1.41  macallan 		scr->scr_ri.ri_flg &= ~RI_CURSOR;
   1488      1.21    martin 	}
   1489       1.1  junyoung }
   1490       1.1  junyoung 
   1491       1.7    martin #if 0
   1492      1.30   thorpej static int
   1493       1.1  junyoung mach64_mapchar(void *cookie, int uni, u_int *index)
   1494       1.1  junyoung {
   1495       1.1  junyoung 	return 0;
   1496       1.1  junyoung }
   1497      1.21    martin #endif
   1498       1.1  junyoung 
   1499      1.30   thorpej static void
   1500  1.71.2.3      yamt mach64_putchar_mono(void *cookie, int row, int col, u_int c, long attr)
   1501       1.1  junyoung {
   1502      1.28  christos 	struct rasops_info *ri = cookie;
   1503      1.59  macallan 	struct wsdisplay_font *font = PICK_FONT(ri, c);
   1504      1.41  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1505      1.41  macallan 	struct mach64_softc *sc = scr->scr_cookie;
   1506      1.41  macallan 
   1507      1.41  macallan 	if (sc->sc_mode == WSDISPLAYIO_MODE_EMUL) {
   1508      1.26  macallan 		int fg, bg, uc;
   1509      1.21    martin 		uint8_t *data;
   1510      1.26  macallan 		int x, y, wi, he;
   1511      1.59  macallan 		wi = font->fontwidth;
   1512      1.59  macallan 		he = font->fontheight;
   1513      1.22     perry 
   1514      1.59  macallan 		if (!CHAR_IN_FONT(c, font))
   1515      1.21    martin 			return;
   1516  1.71.2.3      yamt 		bg = ri->ri_devcmap[(attr >> 16) & 0x0f];
   1517  1.71.2.3      yamt 		fg = ri->ri_devcmap[(attr >> 24) & 0x0f];
   1518      1.26  macallan 		x = ri->ri_xorigin + col * wi;
   1519      1.26  macallan 		y = ri->ri_yorigin + row * he;
   1520      1.26  macallan 		if (c == 0x20) {
   1521      1.26  macallan 			mach64_rectfill(sc, x, y, wi, he, bg);
   1522      1.21    martin 		} else {
   1523      1.59  macallan 			uc = c - font->firstchar;
   1524      1.59  macallan 			data = (uint8_t *)font->data + uc *
   1525      1.25  macallan 			    ri->ri_fontscale;
   1526       1.1  junyoung 
   1527      1.26  macallan 			mach64_setup_mono(sc, x, y, wi, he, fg, bg);
   1528      1.26  macallan 			mach64_feed_bytes(sc, ri->ri_fontscale, data);
   1529      1.21    martin 		}
   1530      1.21    martin 	}
   1531       1.1  junyoung }
   1532      1.21    martin 
   1533  1.71.2.3      yamt static void
   1534  1.71.2.3      yamt mach64_putchar_aa8(void *cookie, int row, int col, u_int c, long attr)
   1535  1.71.2.3      yamt {
   1536  1.71.2.3      yamt 	struct rasops_info *ri = cookie;
   1537  1.71.2.3      yamt 	struct wsdisplay_font *font = PICK_FONT(ri, c);
   1538  1.71.2.3      yamt 	struct vcons_screen *scr = ri->ri_hw;
   1539  1.71.2.3      yamt 	struct mach64_softc *sc = scr->scr_cookie;
   1540  1.71.2.3      yamt 	uint32_t bg, latch = 0, bg8, fg8, pixel;
   1541  1.71.2.3      yamt 	int i, x, y, wi, he, r, g, b, aval;
   1542  1.71.2.3      yamt 	int r1, g1, b1, r0, g0, b0, fgo, bgo;
   1543  1.71.2.3      yamt 	uint8_t *data8;
   1544  1.71.2.3      yamt 	int rv = 0, cnt = 0;
   1545  1.71.2.3      yamt 
   1546  1.71.2.3      yamt 	if (sc->sc_mode != WSDISPLAYIO_MODE_EMUL)
   1547  1.71.2.3      yamt 		return;
   1548  1.71.2.3      yamt 
   1549  1.71.2.3      yamt 	if (!CHAR_IN_FONT(c, font))
   1550  1.71.2.3      yamt 		return;
   1551  1.71.2.3      yamt 
   1552  1.71.2.3      yamt 	wi = font->fontwidth;
   1553  1.71.2.3      yamt 	he = font->fontheight;
   1554  1.71.2.3      yamt 	bg = (u_char)ri->ri_devcmap[(attr >> 16) & 0x0f];
   1555  1.71.2.3      yamt 	x = ri->ri_xorigin + col * wi;
   1556  1.71.2.3      yamt 	y = ri->ri_yorigin + row * he;
   1557  1.71.2.3      yamt 
   1558  1.71.2.3      yamt 	if (c == 0x20) {
   1559  1.71.2.3      yamt 		mach64_rectfill(sc, x, y, wi, he, bg);
   1560  1.71.2.3      yamt 		return;
   1561  1.71.2.3      yamt 	}
   1562  1.71.2.3      yamt 
   1563  1.71.2.3      yamt 	rv = glyphcache_try(&sc->sc_gc, c, x, y, attr);
   1564  1.71.2.3      yamt 	if (rv == GC_OK)
   1565  1.71.2.3      yamt 		return;
   1566  1.71.2.3      yamt 
   1567  1.71.2.3      yamt 	data8 = WSFONT_GLYPH(c, font);
   1568  1.71.2.3      yamt 
   1569  1.71.2.3      yamt 	wait_for_fifo(sc, 11);
   1570  1.71.2.3      yamt 	regw(sc, DP_PIX_WIDTH, DST_8BPP | SRC_8BPP | HOST_8BPP);
   1571  1.71.2.3      yamt 	regw(sc, DP_SRC, MONO_SRC_ONE | BKGD_SRC_HOST | FRGD_SRC_HOST);
   1572  1.71.2.3      yamt 	regw(sc, DP_MIX, ((MIX_SRC & 0xffff) << 16) | MIX_SRC);
   1573  1.71.2.3      yamt 	regw(sc, CLR_CMP_CNTL ,0);	/* no transparency */
   1574  1.71.2.3      yamt 	regw(sc, SRC_CNTL, SRC_LINE_X_LEFT_TO_RIGHT);
   1575  1.71.2.3      yamt 	regw(sc, DST_CNTL, DST_Y_TOP_TO_BOTTOM | DST_X_LEFT_TO_RIGHT);
   1576  1.71.2.3      yamt 	regw(sc, HOST_CNTL, HOST_BYTE_ALIGN);
   1577  1.71.2.3      yamt 	regw(sc, SRC_Y_X, 0);
   1578  1.71.2.3      yamt 	regw(sc, SRC_WIDTH1, wi);
   1579  1.71.2.3      yamt 	regw(sc, DST_Y_X, (x << 16) | y);
   1580  1.71.2.3      yamt 	regw(sc, DST_HEIGHT_WIDTH, (wi << 16) | he);
   1581  1.71.2.3      yamt 
   1582  1.71.2.3      yamt 	/*
   1583  1.71.2.3      yamt 	 * we need the RGB colours here, so get offsets into rasops_cmap
   1584  1.71.2.3      yamt 	 */
   1585  1.71.2.3      yamt 	fgo = ((attr >> 24) & 0xf) * 3;
   1586  1.71.2.3      yamt 	bgo = ((attr >> 16) & 0xf) * 3;
   1587  1.71.2.3      yamt 
   1588  1.71.2.3      yamt 	r0 = rasops_cmap[bgo];
   1589  1.71.2.3      yamt 	r1 = rasops_cmap[fgo];
   1590  1.71.2.3      yamt 	g0 = rasops_cmap[bgo + 1];
   1591  1.71.2.3      yamt 	g1 = rasops_cmap[fgo + 1];
   1592  1.71.2.3      yamt 	b0 = rasops_cmap[bgo + 2];
   1593  1.71.2.3      yamt 	b1 = rasops_cmap[fgo + 2];
   1594  1.71.2.3      yamt #define R3G3B2(r, g, b) ((r & 0xe0) | ((g >> 3) & 0x1c) | (b >> 6))
   1595  1.71.2.3      yamt 	bg8 = R3G3B2(r0, g0, b0);
   1596  1.71.2.3      yamt 	fg8 = R3G3B2(r1, g1, b1);
   1597  1.71.2.3      yamt 
   1598  1.71.2.3      yamt 	wait_for_fifo(sc, 10);
   1599  1.71.2.3      yamt 
   1600  1.71.2.3      yamt 	for (i = 0; i < ri->ri_fontscale; i++) {
   1601  1.71.2.3      yamt 		aval = *data8;
   1602  1.71.2.3      yamt 		if (aval == 0) {
   1603  1.71.2.3      yamt 			pixel = bg8;
   1604  1.71.2.3      yamt 		} else if (aval == 255) {
   1605  1.71.2.3      yamt 			pixel = fg8;
   1606  1.71.2.3      yamt 		} else {
   1607  1.71.2.3      yamt 			r = aval * r1 + (255 - aval) * r0;
   1608  1.71.2.3      yamt 			g = aval * g1 + (255 - aval) * g0;
   1609  1.71.2.3      yamt 			b = aval * b1 + (255 - aval) * b0;
   1610  1.71.2.3      yamt 			pixel = ((r & 0xe000) >> 8) |
   1611  1.71.2.3      yamt 				((g & 0xe000) >> 11) |
   1612  1.71.2.3      yamt 				((b & 0xc000) >> 14);
   1613  1.71.2.3      yamt 		}
   1614  1.71.2.3      yamt 		latch = (latch << 8) | pixel;
   1615  1.71.2.3      yamt 		/* write in 32bit chunks */
   1616  1.71.2.3      yamt 		if ((i & 3) == 3) {
   1617  1.71.2.3      yamt 			regws(sc, HOST_DATA0, latch);
   1618  1.71.2.3      yamt 			/*
   1619  1.71.2.3      yamt 			 * not strictly necessary, old data should be shifted
   1620  1.71.2.3      yamt 			 * out
   1621  1.71.2.3      yamt 			 */
   1622  1.71.2.3      yamt 			latch = 0;
   1623  1.71.2.3      yamt 			cnt++;
   1624  1.71.2.3      yamt 			if (cnt > 8) {
   1625  1.71.2.3      yamt 				wait_for_fifo(sc, 10);
   1626  1.71.2.3      yamt 				cnt = 0;
   1627  1.71.2.3      yamt 			}
   1628  1.71.2.3      yamt 		}
   1629  1.71.2.3      yamt 		data8++;
   1630  1.71.2.3      yamt 	}
   1631  1.71.2.3      yamt 	/* if we have pixels left in latch write them out */
   1632  1.71.2.3      yamt 	if ((i & 3) != 0) {
   1633  1.71.2.3      yamt 		latch = latch << ((4 - (i & 3)) << 3);
   1634  1.71.2.3      yamt 		regws(sc, HOST_DATA0, latch);
   1635  1.71.2.3      yamt 	}
   1636  1.71.2.3      yamt 
   1637  1.71.2.3      yamt 	if (rv == GC_ADD) {
   1638  1.71.2.3      yamt 		glyphcache_add(&sc->sc_gc, c, x, y);
   1639  1.71.2.3      yamt 	}
   1640  1.71.2.3      yamt }
   1641       1.1  junyoung 
   1642      1.30   thorpej static void
   1643       1.1  junyoung mach64_copycols(void *cookie, int row, int srccol, int dstcol, int ncols)
   1644       1.1  junyoung {
   1645      1.41  macallan 	struct rasops_info *ri = cookie;
   1646      1.41  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1647      1.41  macallan 	struct mach64_softc *sc = scr->scr_cookie;
   1648      1.41  macallan 	int32_t xs, xd, y, width, height;
   1649      1.26  macallan 
   1650      1.41  macallan 	if ((sc->sc_locked == 0) && (sc->sc_mode == WSDISPLAYIO_MODE_EMUL)) {
   1651      1.26  macallan 		xs = ri->ri_xorigin + ri->ri_font->fontwidth * srccol;
   1652      1.26  macallan 		xd = ri->ri_xorigin + ri->ri_font->fontwidth * dstcol;
   1653      1.26  macallan 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1654      1.26  macallan 		width = ri->ri_font->fontwidth * ncols;
   1655      1.26  macallan 		height = ri->ri_font->fontheight;
   1656  1.71.2.3      yamt 		mach64_bitblt(sc, xs, y, xd, y, width, height, MIX_SRC);
   1657      1.24  macallan 	}
   1658      1.21    martin }
   1659       1.1  junyoung 
   1660      1.30   thorpej static void
   1661       1.1  junyoung mach64_erasecols(void *cookie, int row, int startcol, int ncols, long fillattr)
   1662       1.1  junyoung {
   1663      1.41  macallan 	struct rasops_info *ri = cookie;
   1664      1.41  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1665      1.41  macallan 	struct mach64_softc *sc = scr->scr_cookie;
   1666      1.26  macallan 	int32_t x, y, width, height, fg, bg, ul;
   1667      1.26  macallan 
   1668      1.41  macallan 	if ((sc->sc_locked == 0) && (sc->sc_mode == WSDISPLAYIO_MODE_EMUL)) {
   1669      1.26  macallan 		x = ri->ri_xorigin + ri->ri_font->fontwidth * startcol;
   1670      1.26  macallan 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1671      1.26  macallan 		width = ri->ri_font->fontwidth * ncols;
   1672      1.26  macallan 		height = ri->ri_font->fontheight;
   1673      1.26  macallan 		rasops_unpack_attr(fillattr, &fg, &bg, &ul);
   1674      1.22     perry 
   1675  1.71.2.3      yamt 		mach64_rectfill(sc, x, y, width, height, ri->ri_devcmap[bg]);
   1676      1.21    martin 	}
   1677       1.1  junyoung }
   1678       1.1  junyoung 
   1679      1.30   thorpej static void
   1680       1.1  junyoung mach64_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
   1681       1.1  junyoung {
   1682      1.41  macallan 	struct rasops_info *ri = cookie;
   1683      1.41  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1684      1.41  macallan 	struct mach64_softc *sc = scr->scr_cookie;
   1685      1.25  macallan 	int32_t x, ys, yd, width, height;
   1686      1.22     perry 
   1687      1.41  macallan 	if ((sc->sc_locked == 0) && (sc->sc_mode == WSDISPLAYIO_MODE_EMUL)) {
   1688      1.26  macallan 		x = ri->ri_xorigin;
   1689      1.26  macallan 		ys = ri->ri_yorigin + ri->ri_font->fontheight * srcrow;
   1690      1.26  macallan 		yd = ri->ri_yorigin + ri->ri_font->fontheight * dstrow;
   1691      1.26  macallan 		width = ri->ri_emuwidth;
   1692      1.26  macallan 		height = ri->ri_font->fontheight*nrows;
   1693  1.71.2.3      yamt 		mach64_bitblt(sc, x, ys, x, yd, width, height, MIX_SRC);
   1694      1.24  macallan 	}
   1695      1.21    martin }
   1696      1.19    martin 
   1697      1.30   thorpej static void
   1698      1.21    martin mach64_eraserows(void *cookie, int row, int nrows, long fillattr)
   1699      1.21    martin {
   1700      1.41  macallan 	struct rasops_info *ri = cookie;
   1701      1.41  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1702      1.41  macallan 	struct mach64_softc *sc = scr->scr_cookie;
   1703      1.34  macallan 	int32_t x, y, width, height, fg, bg, ul;
   1704      1.26  macallan 
   1705      1.41  macallan 	if ((sc->sc_locked == 0) && (sc->sc_mode == WSDISPLAYIO_MODE_EMUL)) {
   1706      1.26  macallan 		x = ri->ri_xorigin;
   1707      1.26  macallan 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1708      1.26  macallan 		width = ri->ri_emuwidth;
   1709      1.26  macallan 		height = ri->ri_font->fontheight * nrows;
   1710      1.26  macallan 		rasops_unpack_attr(fillattr, &fg, &bg, &ul);
   1711      1.22     perry 
   1712  1.71.2.3      yamt 		mach64_rectfill(sc, x, y, width, height, ri->ri_devcmap[bg]);
   1713      1.21    martin 	}
   1714      1.21    martin }
   1715      1.21    martin 
   1716      1.30   thorpej static void
   1717  1.71.2.3      yamt mach64_bitblt(void *cookie, int xs, int ys, int xd, int yd, int width, int height, int rop)
   1718      1.19    martin {
   1719  1.71.2.3      yamt 	struct mach64_softc *sc = cookie;
   1720      1.26  macallan 	uint32_t dest_ctl = 0;
   1721      1.26  macallan 
   1722  1.71.2.3      yamt 	wait_for_fifo(sc, 10);
   1723      1.26  macallan 	regw(sc, DP_PIX_WIDTH, DST_8BPP | SRC_8BPP | HOST_8BPP);
   1724      1.26  macallan 	regw(sc, DP_SRC, FRGD_SRC_BLIT);
   1725      1.26  macallan 	regw(sc, DP_MIX, (rop & 0xffff) << 16);
   1726      1.26  macallan 	regw(sc, CLR_CMP_CNTL, 0);	/* no transparency */
   1727      1.26  macallan 	if (yd < ys) {
   1728      1.26  macallan 		dest_ctl = DST_Y_TOP_TO_BOTTOM;
   1729      1.19    martin 	} else {
   1730      1.26  macallan 		ys += height - 1;
   1731      1.26  macallan 		yd += height - 1;
   1732      1.26  macallan 		dest_ctl = DST_Y_BOTTOM_TO_TOP;
   1733      1.26  macallan 	}
   1734      1.26  macallan 	if (xd < xs) {
   1735      1.26  macallan 		dest_ctl |= DST_X_LEFT_TO_RIGHT;
   1736      1.26  macallan 		regw(sc, SRC_CNTL, SRC_LINE_X_LEFT_TO_RIGHT);
   1737      1.19    martin 	} else {
   1738      1.26  macallan 		dest_ctl |= DST_X_RIGHT_TO_LEFT;
   1739      1.26  macallan 		xs += width - 1;
   1740      1.26  macallan 		xd += width - 1;
   1741      1.26  macallan 		regw(sc, SRC_CNTL, SRC_LINE_X_RIGHT_TO_LEFT);
   1742      1.26  macallan 	}
   1743      1.26  macallan 	regw(sc, DST_CNTL, dest_ctl);
   1744      1.26  macallan 
   1745      1.26  macallan 	regw(sc, SRC_Y_X, (xs << 16) | ys);
   1746      1.26  macallan 	regw(sc, SRC_WIDTH1, width);
   1747      1.26  macallan 	regw(sc, DST_Y_X, (xd << 16) | yd);
   1748      1.26  macallan 	regw(sc, DST_HEIGHT_WIDTH, (width << 16) | height);
   1749      1.19    martin }
   1750      1.22     perry 
   1751      1.30   thorpej static void
   1752      1.25  macallan mach64_setup_mono(struct mach64_softc *sc, int xd, int yd, int width,
   1753      1.25  macallan      int height, uint32_t fg, uint32_t bg)
   1754      1.21    martin {
   1755      1.22     perry 	wait_for_idle(sc);
   1756      1.26  macallan 	regw(sc, DP_WRITE_MASK, 0xff);	/* XXX only good for 8 bit */
   1757      1.26  macallan 	regw(sc, DP_PIX_WIDTH, DST_8BPP | SRC_1BPP | HOST_1BPP);
   1758      1.26  macallan 	regw(sc, DP_SRC, MONO_SRC_HOST | BKGD_SRC_BKGD_CLR | FRGD_SRC_FRGD_CLR);
   1759      1.26  macallan 	regw(sc, DP_MIX, ((MIX_SRC & 0xffff) << 16) | MIX_SRC);
   1760      1.26  macallan 	regw(sc, CLR_CMP_CNTL ,0);	/* no transparency */
   1761      1.26  macallan 	regw(sc, SRC_CNTL, SRC_LINE_X_LEFT_TO_RIGHT);
   1762      1.26  macallan 	regw(sc, DST_CNTL, DST_Y_TOP_TO_BOTTOM | DST_X_LEFT_TO_RIGHT);
   1763      1.26  macallan 	regw(sc, HOST_CNTL, HOST_BYTE_ALIGN);
   1764      1.26  macallan 	regw(sc, DP_BKGD_CLR, bg);
   1765      1.26  macallan 	regw(sc, DP_FRGD_CLR, fg);
   1766      1.26  macallan 	regw(sc, SRC_Y_X, 0);
   1767      1.26  macallan 	regw(sc, SRC_WIDTH1, width);
   1768      1.26  macallan 	regw(sc, DST_Y_X, (xd << 16) | yd);
   1769      1.26  macallan 	regw(sc, DST_HEIGHT_WIDTH, (width << 16) | height);
   1770      1.21    martin 	/* now feed the data into the chip */
   1771      1.21    martin }
   1772      1.21    martin 
   1773      1.30   thorpej static void
   1774      1.21    martin mach64_feed_bytes(struct mach64_softc *sc, int count, uint8_t *data)
   1775      1.21    martin {
   1776      1.21    martin 	int i;
   1777      1.26  macallan 	uint32_t latch = 0, bork;
   1778      1.26  macallan 	int shift = 0;
   1779      1.26  macallan 	int reg = 0;
   1780      1.26  macallan 
   1781      1.64  macallan 	for (i = 0; i < count; i++) {
   1782      1.26  macallan 		bork = data[i];
   1783      1.26  macallan 		latch |= (bork << shift);
   1784      1.26  macallan 		if (shift == 24) {
   1785      1.26  macallan 			regw(sc, HOST_DATA0 + reg, latch);
   1786      1.26  macallan 			latch = 0;
   1787      1.26  macallan 			shift = 0;
   1788      1.26  macallan 			reg = (reg + 4) & 0x3c;
   1789      1.21    martin 		} else
   1790      1.26  macallan 			shift += 8;
   1791      1.21    martin 	}
   1792      1.26  macallan 	if (shift != 0)	/* 24 */
   1793      1.26  macallan 		regw(sc, HOST_DATA0 + reg, latch);
   1794      1.22     perry }
   1795      1.21    martin 
   1796      1.22     perry 
   1797      1.30   thorpej static void
   1798      1.25  macallan mach64_rectfill(struct mach64_softc *sc, int x, int y, int width, int height,
   1799      1.25  macallan     int colour)
   1800      1.19    martin {
   1801  1.71.2.3      yamt 	wait_for_fifo(sc, 11);
   1802      1.26  macallan 	regw(sc, DP_FRGD_CLR, colour);
   1803      1.26  macallan 	regw(sc, DP_PIX_WIDTH, DST_8BPP | SRC_8BPP | HOST_8BPP);
   1804      1.26  macallan 	regw(sc, DP_SRC, FRGD_SRC_FRGD_CLR);
   1805      1.26  macallan 	regw(sc, DP_MIX, MIX_SRC << 16);
   1806      1.26  macallan 	regw(sc, CLR_CMP_CNTL, 0);	/* no transparency */
   1807      1.26  macallan 	regw(sc, SRC_CNTL, SRC_LINE_X_LEFT_TO_RIGHT);
   1808      1.26  macallan 	regw(sc, DST_CNTL, DST_X_LEFT_TO_RIGHT | DST_Y_TOP_TO_BOTTOM);
   1809      1.26  macallan 
   1810      1.26  macallan 	regw(sc, SRC_Y_X, (x << 16) | y);
   1811      1.26  macallan 	regw(sc, SRC_WIDTH1, width);
   1812      1.26  macallan 	regw(sc, DST_Y_X, (x << 16) | y);
   1813      1.26  macallan 	regw(sc, DST_HEIGHT_WIDTH, (width << 16) | height);
   1814      1.19    martin }
   1815       1.1  junyoung 
   1816      1.30   thorpej static void
   1817      1.21    martin mach64_clearscreen(struct mach64_softc *sc)
   1818      1.21    martin {
   1819      1.26  macallan 	mach64_rectfill(sc, 0, 0, sc->virt_x, sc->virt_y, sc->sc_bg);
   1820      1.21    martin }
   1821      1.21    martin 
   1822      1.21    martin 
   1823      1.30   thorpej #if 0
   1824      1.30   thorpej static void
   1825      1.22     perry mach64_showpal(struct mach64_softc *sc)
   1826      1.19    martin {
   1827      1.26  macallan 	int i, x = 0;
   1828      1.26  macallan 
   1829      1.26  macallan 	for (i = 0; i < 16; i++) {
   1830      1.26  macallan 		mach64_rectfill(sc, x, 0, 64, 64, i);
   1831      1.26  macallan 		x += 64;
   1832      1.19    martin 	}
   1833       1.1  junyoung }
   1834      1.30   thorpej #endif
   1835      1.22     perry 
   1836       1.1  junyoung /*
   1837       1.1  junyoung  * wsdisplay_accessops
   1838       1.1  junyoung  */
   1839       1.1  junyoung 
   1840      1.30   thorpej static int
   1841      1.49  christos mach64_ioctl(void *v, void *vs, u_long cmd, void *data, int flag,
   1842      1.40      jmmv 	struct lwp *l)
   1843       1.1  junyoung {
   1844      1.41  macallan 	struct vcons_data *vd = v;
   1845      1.41  macallan 	struct mach64_softc *sc = vd->cookie;
   1846      1.19    martin 	struct wsdisplay_fbinfo *wdf;
   1847      1.41  macallan 	struct vcons_screen *ms = vd->active;
   1848      1.26  macallan 
   1849      1.19    martin 	switch (cmd) {
   1850      1.62    cegger 	case WSDISPLAYIO_GTYPE:
   1851      1.62    cegger 		*(u_int *)data = WSDISPLAY_TYPE_PCIMISC;
   1852      1.62    cegger 		return 0;
   1853      1.62    cegger 
   1854      1.62    cegger 	case WSDISPLAYIO_LINEBYTES:
   1855      1.62    cegger 		*(u_int *)data = sc->virt_x * sc->bits_per_pixel / 8;
   1856      1.62    cegger 		return 0;
   1857      1.62    cegger 
   1858      1.62    cegger 	case WSDISPLAYIO_GINFO:
   1859      1.62    cegger 		wdf = (void *)data;
   1860      1.62    cegger 		wdf->height = sc->virt_y;
   1861      1.62    cegger 		wdf->width = sc->virt_x;
   1862      1.62    cegger 		wdf->depth = sc->bits_per_pixel;
   1863      1.62    cegger 		wdf->cmsize = 256;
   1864      1.62    cegger 		return 0;
   1865      1.62    cegger 
   1866      1.62    cegger 	case WSDISPLAYIO_GETCMAP:
   1867      1.62    cegger 		return mach64_getcmap(sc,
   1868      1.62    cegger 		    (struct wsdisplay_cmap *)data);
   1869      1.62    cegger 
   1870      1.62    cegger 	case WSDISPLAYIO_PUTCMAP:
   1871      1.62    cegger 		return mach64_putcmap(sc,
   1872      1.62    cegger 		    (struct wsdisplay_cmap *)data);
   1873      1.62    cegger 
   1874      1.62    cegger 	/* PCI config read/write passthrough. */
   1875      1.62    cegger 	case PCI_IOC_CFGREAD:
   1876      1.62    cegger 	case PCI_IOC_CFGWRITE:
   1877      1.62    cegger 		return pci_devioctl(sc->sc_pc, sc->sc_pcitag,
   1878      1.62    cegger 		    cmd, data, flag, l);
   1879      1.63    cegger 
   1880      1.63    cegger 	case WSDISPLAYIO_GET_BUSID:
   1881      1.63    cegger 		return wsdisplayio_busid_pci(sc->sc_dev, sc->sc_pc,
   1882      1.63    cegger 		    sc->sc_pcitag, data);
   1883      1.63    cegger 
   1884      1.62    cegger 	case WSDISPLAYIO_SMODE: {
   1885      1.62    cegger 		int new_mode = *(int*)data;
   1886      1.62    cegger 		if (new_mode != sc->sc_mode) {
   1887      1.62    cegger 			sc->sc_mode = new_mode;
   1888      1.62    cegger 			if ((new_mode == WSDISPLAYIO_MODE_EMUL)
   1889      1.62    cegger 			    && (ms != NULL))
   1890      1.19    martin 			{
   1891      1.62    cegger 				/* restore initial video mode */
   1892      1.62    cegger 				mach64_init(sc);
   1893      1.62    cegger 				mach64_init_engine(sc);
   1894      1.62    cegger 				mach64_init_lut(sc);
   1895      1.62    cegger 				mach64_modeswitch(sc, sc->sc_my_mode);
   1896  1.71.2.3      yamt 				mach64_clearscreen(sc);
   1897  1.71.2.3      yamt 				glyphcache_wipe(&sc->sc_gc);
   1898      1.62    cegger 				vcons_redraw_screen(ms);
   1899      1.19    martin 			}
   1900      1.62    cegger 		}
   1901      1.62    cegger 		}
   1902      1.62    cegger 		return 0;
   1903      1.68  macallan 	case WSDISPLAYIO_GET_EDID: {
   1904      1.68  macallan 		struct wsdisplayio_edid_info *d = data;
   1905      1.68  macallan 		return wsdisplayio_get_edid(sc->sc_dev, d);
   1906      1.68  macallan 	}
   1907      1.19    martin 	}
   1908      1.19    martin 	return EPASSTHROUGH;
   1909       1.1  junyoung }
   1910       1.1  junyoung 
   1911      1.30   thorpej static paddr_t
   1912      1.48  christos mach64_mmap(void *v, void *vs, off_t offset, int prot)
   1913       1.1  junyoung {
   1914      1.41  macallan 	struct vcons_data *vd = v;
   1915      1.41  macallan 	struct mach64_softc *sc = vd->cookie;
   1916      1.19    martin 	paddr_t pa;
   1917  1.71.2.3      yamt #if 0
   1918      1.33  macallan 	pcireg_t reg;
   1919  1.71.2.3      yamt #endif
   1920      1.32  macallan #ifndef __sparc64__
   1921      1.31  macallan 	/*
   1922      1.31  macallan 	 *'regular' framebuffer mmap()ing
   1923      1.31  macallan 	 * disabled on sparc64 because some ATI firmware likes to map some PCI
   1924      1.31  macallan 	 * resources to addresses that would collide with this ( like some Rage
   1925      1.31  macallan 	 * IIc which uses 0x2000 for the 2nd register block )
   1926      1.31  macallan 	 * Other 64bit architectures might run into similar problems.
   1927      1.31  macallan 	 */
   1928  1.71.2.3      yamt 	if (offset < (sc->memsize * 1024)) {
   1929      1.44  macallan 		pa = bus_space_mmap(sc->sc_memt, sc->sc_aperbase, offset,
   1930      1.25  macallan 		    prot, BUS_SPACE_MAP_LINEAR);
   1931      1.19    martin 		return pa;
   1932      1.19    martin 	}
   1933      1.31  macallan #endif
   1934      1.51      elad 	/*
   1935      1.51      elad 	 * restrict all other mappings to processes with superuser privileges
   1936      1.51      elad 	 * or the kernel itself
   1937      1.51      elad 	 */
   1938  1.71.2.1      yamt 	if (kauth_authorize_machdep(kauth_cred_get(), KAUTH_MACHDEP_UNMANAGEDMEM,
   1939  1.71.2.1      yamt 	    NULL, NULL, NULL, NULL) != 0) {
   1940      1.57      elad 		return -1;
   1941      1.51      elad 	}
   1942  1.71.2.3      yamt #if 0
   1943      1.33  macallan 	reg = (pci_conf_read(sc->sc_pc, sc->sc_pcitag, 0x18) & 0xffffff00);
   1944  1.71.2.3      yamt 	if (reg != sc->sc_regbase) {
   1945      1.41  macallan #ifdef DIAGNOSTIC
   1946      1.33  macallan 		printf("%s: BAR 0x18 changed! (%x %x)\n",
   1947  1.71.2.3      yamt 		    device_xname(sc->sc_dev), (uint32_t)sc->sc_regbase,
   1948      1.33  macallan 		    (uint32_t)reg);
   1949      1.41  macallan #endif
   1950  1.71.2.3      yamt 		sc->sc_regbase = reg;
   1951      1.33  macallan 	}
   1952      1.33  macallan 
   1953      1.33  macallan 	reg = (pci_conf_read(sc->sc_pc, sc->sc_pcitag, 0x10) & 0xffffff00);
   1954  1.71.2.3      yamt 	if (reg != sc->sc_aperbase) {
   1955      1.41  macallan #ifdef DIAGNOSTIC
   1956      1.33  macallan 		printf("%s: BAR 0x10 changed! (%x %x)\n",
   1957  1.71.2.3      yamt 		    device_xname(sc->sc_dev), (uint32_t)sc->sc_aperbase,
   1958      1.33  macallan 		    (uint32_t)reg);
   1959      1.41  macallan #endif
   1960  1.71.2.3      yamt 		sc->sc_aperbase = reg;
   1961      1.33  macallan 	}
   1962  1.71.2.3      yamt #endif
   1963  1.71.2.3      yamt 	if ((offset >= sc->sc_aperbase) &&
   1964  1.71.2.3      yamt 	    (offset < (sc->sc_aperbase + sc->sc_apersize))) {
   1965      1.25  macallan 		pa = bus_space_mmap(sc->sc_memt, offset, 0, prot,
   1966      1.25  macallan 		    BUS_SPACE_MAP_LINEAR);
   1967      1.19    martin 		return pa;
   1968      1.19    martin 	}
   1969      1.20    martin 
   1970  1.71.2.3      yamt 	if ((offset >= sc->sc_regbase) &&
   1971  1.71.2.3      yamt 	    (offset < (sc->sc_regbase + sc->sc_regsize))) {
   1972  1.71.2.3      yamt 		pa = bus_space_mmap(sc->sc_regt, offset, 0, prot,
   1973      1.25  macallan 		    BUS_SPACE_MAP_LINEAR);
   1974      1.20    martin 		return pa;
   1975      1.20    martin 	}
   1976      1.20    martin 
   1977      1.59  macallan 	if ((offset >= sc->sc_rom.vb_base) &&
   1978      1.59  macallan 	    (offset < (sc->sc_rom.vb_base + sc->sc_rom.vb_size))) {
   1979      1.25  macallan 		pa = bus_space_mmap(sc->sc_memt, offset, 0, prot,
   1980      1.25  macallan 		    BUS_SPACE_MAP_LINEAR);
   1981      1.20    martin 		return pa;
   1982      1.20    martin 	}
   1983      1.20    martin 
   1984      1.59  macallan #ifdef PCI_MAGIC_IO_RANGE
   1985      1.59  macallan 	if ((offset >= PCI_MAGIC_IO_RANGE) &&
   1986      1.59  macallan 	    (offset <= PCI_MAGIC_IO_RANGE + 0x10000)) {
   1987      1.59  macallan 	    	return bus_space_mmap(sc->sc_iot, offset - PCI_MAGIC_IO_RANGE,
   1988  1.71.2.3      yamt 	    	   0, prot, 0);
   1989      1.59  macallan 	}
   1990      1.59  macallan #endif
   1991       1.1  junyoung 	return -1;
   1992       1.1  junyoung }
   1993       1.1  junyoung 
   1994      1.34  macallan #if 0
   1995      1.30   thorpej static int
   1996      1.41  macallan mach64_load_font(void *v, void *cookie, struct wsdisplay_font *data)
   1997       1.1  junyoung {
   1998       1.1  junyoung 
   1999       1.1  junyoung 	return 0;
   2000       1.1  junyoung }
   2001      1.41  macallan #endif
   2002       1.1  junyoung 
   2003      1.41  macallan void
   2004      1.41  macallan machfb_blank(struct mach64_softc *sc, int blank)
   2005      1.21    martin {
   2006      1.41  macallan 	uint32_t reg;
   2007      1.21    martin 
   2008      1.41  macallan #define MACH64_BLANK (CRTC_DISPLAY_DIS | CRTC_HSYNC_DIS | CRTC_VSYNC_DIS)
   2009      1.21    martin 
   2010      1.41  macallan 	switch (blank)
   2011      1.41  macallan 	{
   2012      1.41  macallan     		case 0:
   2013      1.41  macallan 			reg = regr(sc, CRTC_GEN_CNTL);
   2014      1.41  macallan 			regw(sc, CRTC_GEN_CNTL, reg & ~(MACH64_BLANK));
   2015      1.41  macallan 			sc->sc_blanked = 0;
   2016      1.41  macallan 			break;
   2017      1.41  macallan 		case 1:
   2018      1.41  macallan 			reg = regr(sc, CRTC_GEN_CNTL);
   2019      1.41  macallan 			regw(sc, CRTC_GEN_CNTL, reg | (MACH64_BLANK));
   2020      1.41  macallan 			sc->sc_blanked = 1;
   2021      1.41  macallan 			break;
   2022      1.41  macallan 		default:
   2023      1.41  macallan         		break;
   2024      1.21    martin 	}
   2025      1.41  macallan }
   2026      1.21    martin 
   2027      1.41  macallan /* framebuffer device support */
   2028      1.41  macallan #ifdef __sparc__
   2029      1.21    martin 
   2030      1.41  macallan static void
   2031      1.54    dyoung machfb_unblank(device_t dev)
   2032      1.41  macallan {
   2033      1.54    dyoung 	struct mach64_softc *sc = device_private(dev);
   2034      1.41  macallan 
   2035      1.41  macallan 	machfb_blank(sc, 0);
   2036      1.21    martin }
   2037      1.21    martin 
   2038      1.30   thorpej static void
   2039      1.41  macallan machfb_fbattach(struct mach64_softc *sc)
   2040      1.21    martin {
   2041      1.41  macallan 	struct fbdevice *fb = &sc->sc_fb;
   2042      1.41  macallan 
   2043      1.59  macallan 	fb->fb_device = sc->sc_dev;
   2044      1.41  macallan 	fb->fb_driver = &machfb_fbdriver;
   2045      1.41  macallan 
   2046      1.41  macallan 	fb->fb_type.fb_cmsize = 256;
   2047      1.41  macallan 	fb->fb_type.fb_size = sc->memsize;
   2048      1.41  macallan 
   2049      1.41  macallan 	fb->fb_type.fb_type = FBTYPE_GENERIC_PCI;
   2050  1.71.2.3      yamt 	fb->fb_flags = device_cfdata(sc->sc_dev)->cf_flags & FB_USERMASK;
   2051      1.41  macallan 	fb->fb_type.fb_depth = sc->bits_per_pixel;
   2052      1.41  macallan 	fb->fb_type.fb_width = sc->virt_x;
   2053      1.41  macallan 	fb->fb_type.fb_height = sc->virt_y;
   2054      1.26  macallan 
   2055      1.41  macallan 	fb_attach(fb, sc->sc_console);
   2056      1.21    martin }
   2057      1.21    martin 
   2058      1.41  macallan int
   2059      1.41  macallan machfb_fbopen(dev_t dev, int flags, int mode, struct lwp *l)
   2060      1.21    martin {
   2061      1.41  macallan 	struct mach64_softc *sc;
   2062      1.41  macallan 
   2063      1.53    cegger 	sc = device_lookup_private(&machfb_cd, minor(dev));
   2064      1.53    cegger 	if (sc == NULL)
   2065      1.53    cegger 		return ENXIO;
   2066      1.41  macallan 	sc->sc_locked = 1;
   2067      1.41  macallan 
   2068      1.59  macallan #ifdef MACHFB_DEBUG
   2069      1.53    cegger 	printf("machfb_fbopen(%d)\n", minor(dev));
   2070      1.28  christos #endif
   2071      1.41  macallan 	return 0;
   2072      1.21    martin }
   2073      1.21    martin 
   2074      1.41  macallan int
   2075      1.41  macallan machfb_fbclose(dev_t dev, int flags, int mode, struct lwp *l)
   2076      1.21    martin {
   2077      1.53    cegger 	struct mach64_softc *sc = device_lookup_private(&machfb_cd, minor(dev));
   2078      1.26  macallan 
   2079      1.59  macallan #ifdef MACHFB_DEBUG
   2080      1.41  macallan 	printf("machfb_fbclose()\n");
   2081      1.41  macallan #endif
   2082      1.41  macallan 	mach64_init_engine(sc);
   2083      1.41  macallan 	mach64_init_lut(sc);
   2084      1.41  macallan 	sc->sc_locked = 0;
   2085      1.41  macallan 	return 0;
   2086      1.21    martin }
   2087      1.21    martin 
   2088      1.41  macallan int
   2089      1.49  christos machfb_fbioctl(dev_t dev, u_long cmd, void *data, int flags, struct lwp *l)
   2090      1.21    martin {
   2091      1.53    cegger 	struct mach64_softc *sc = device_lookup_private(&machfb_cd, minor(dev));
   2092      1.41  macallan 
   2093      1.59  macallan #ifdef MACHFB_DEBUG
   2094      1.41  macallan 	printf("machfb_fbioctl(%d, %lx)\n", minor(dev), cmd);
   2095      1.41  macallan #endif
   2096      1.41  macallan 	switch (cmd) {
   2097      1.62    cegger 	case FBIOGTYPE:
   2098      1.62    cegger 		*(struct fbtype *)data = sc->sc_fb.fb_type;
   2099      1.62    cegger 		break;
   2100      1.21    martin 
   2101      1.62    cegger 	case FBIOGATTR:
   2102      1.41  macallan #define fba ((struct fbgattr *)data)
   2103      1.62    cegger 		fba->real_type = sc->sc_fb.fb_type.fb_type;
   2104      1.62    cegger 		fba->owner = 0;		/* XXX ??? */
   2105      1.62    cegger 		fba->fbtype = sc->sc_fb.fb_type;
   2106      1.62    cegger 		fba->sattr.flags = 0;
   2107      1.62    cegger 		fba->sattr.emu_type = sc->sc_fb.fb_type.fb_type;
   2108      1.62    cegger 		fba->sattr.dev_specific[0] = sc->sc_nbus;
   2109      1.62    cegger 		fba->sattr.dev_specific[1] = sc->sc_ndev;
   2110      1.62    cegger 		fba->sattr.dev_specific[2] = sc->sc_nfunc;
   2111      1.62    cegger 		fba->sattr.dev_specific[3] = -1;
   2112      1.62    cegger 		fba->emu_types[0] = sc->sc_fb.fb_type.fb_type;
   2113      1.62    cegger 		fba->emu_types[1] = -1;
   2114      1.41  macallan #undef fba
   2115      1.62    cegger 		break;
   2116      1.62    cegger 
   2117       1.7    martin #if 0
   2118      1.62    cegger 	case FBIOGETCMAP:
   2119      1.41  macallan #define	p ((struct fbcmap *)data)
   2120      1.62    cegger 		return bt_getcmap(p, &sc->sc_cmap, 256, 1);
   2121      1.41  macallan 
   2122      1.62    cegger 	case FBIOPUTCMAP:
   2123      1.62    cegger 		/* copy to software map */
   2124      1.62    cegger 		error = bt_putcmap(p, &sc->sc_cmap, 256, 1);
   2125      1.62    cegger 		if (error)
   2126      1.62    cegger 			return error;
   2127      1.62    cegger 		/* now blast them into the chip */
   2128      1.62    cegger 		/* XXX should use retrace interrupt */
   2129      1.62    cegger 		cg6_loadcmap(sc, p->index, p->count);
   2130      1.41  macallan #undef p
   2131      1.62    cegger 		break;
   2132      1.41  macallan #endif
   2133      1.62    cegger 	case FBIOGVIDEO:
   2134      1.62    cegger 		*(int *)data = sc->sc_blanked;
   2135      1.62    cegger 		break;
   2136       1.1  junyoung 
   2137      1.62    cegger 	case FBIOSVIDEO:
   2138      1.62    cegger 		machfb_blank(sc, *(int *)data);
   2139      1.62    cegger 		break;
   2140      1.34  macallan 
   2141      1.41  macallan #if 0
   2142      1.62    cegger 	case FBIOGCURSOR:
   2143      1.62    cegger 		break;
   2144      1.62    cegger 
   2145      1.62    cegger 	case FBIOSCURSOR:
   2146      1.62    cegger 		break;
   2147      1.34  macallan 
   2148      1.62    cegger 	case FBIOGCURPOS:
   2149      1.62    cegger 		*(struct fbcurpos *)data = sc->sc_cursor.cc_pos;
   2150      1.62    cegger 		break;
   2151      1.34  macallan 
   2152      1.62    cegger 	case FBIOSCURPOS:
   2153      1.62    cegger 		sc->sc_cursor.cc_pos = *(struct fbcurpos *)data;
   2154      1.62    cegger 		break;
   2155      1.41  macallan 
   2156      1.62    cegger 	case FBIOGCURMAX:
   2157      1.62    cegger 		/* max cursor size is 32x32 */
   2158      1.62    cegger 		((struct fbcurpos *)data)->x = 32;
   2159      1.62    cegger 		((struct fbcurpos *)data)->y = 32;
   2160      1.62    cegger 		break;
   2161      1.41  macallan #endif
   2162      1.62    cegger 	case PCI_IOC_CFGREAD:
   2163      1.62    cegger 	case PCI_IOC_CFGWRITE: {
   2164      1.62    cegger 		int ret;
   2165      1.62    cegger 		ret = pci_devioctl(sc->sc_pc, sc->sc_pcitag,
   2166      1.62    cegger 		    cmd, data, flags, l);
   2167      1.62    cegger 
   2168      1.59  macallan #ifdef MACHFB_DEBUG
   2169      1.62    cegger 		printf("pci_devioctl: %d\n", ret);
   2170      1.41  macallan #endif
   2171      1.62    cegger 		return ret;
   2172      1.41  macallan 		}
   2173      1.63    cegger 
   2174      1.63    cegger 	case WSDISPLAYIO_GET_BUSID:
   2175      1.63    cegger 		return wsdisplayio_busid_pci(sc->sc_dev, sc->sc_pc,
   2176      1.63    cegger 		    sc->sc_pcitag, data);
   2177      1.63    cegger 
   2178      1.62    cegger 	default:
   2179      1.62    cegger 		return ENOTTY;
   2180      1.34  macallan 	}
   2181      1.59  macallan #ifdef MACHFB_DEBUG
   2182      1.41  macallan 	printf("machfb_fbioctl done\n");
   2183      1.41  macallan #endif
   2184      1.41  macallan 	return 0;
   2185      1.34  macallan }
   2186      1.41  macallan 
   2187      1.41  macallan paddr_t
   2188      1.41  macallan machfb_fbmmap(dev_t dev, off_t off, int prot)
   2189      1.41  macallan {
   2190      1.53    cegger 	struct mach64_softc *sc = device_lookup_private(&machfb_cd, minor(dev));
   2191      1.41  macallan 
   2192      1.41  macallan 	if (sc != NULL)
   2193      1.41  macallan 		return mach64_mmap(&sc->vd, NULL, off, prot);
   2194      1.41  macallan 
   2195      1.41  macallan 	return 0;
   2196      1.41  macallan }
   2197      1.41  macallan 
   2198      1.41  macallan #endif /* __sparc__ */
   2199