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