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