Home | History | Annotate | Line # | Download | only in dev
crmfb.c revision 1.34
      1  1.34  macallan /* $NetBSD: crmfb.c,v 1.34 2011/05/17 22:52:28 macallan Exp $ */
      2   1.1  jmcneill 
      3   1.1  jmcneill /*-
      4   1.1  jmcneill  * Copyright (c) 2007 Jared D. McNeill <jmcneill (at) invisible.ca>
      5  1.12  macallan  *               2008 Michael Lorenz <macallan (at) netbsd.org>
      6   1.1  jmcneill  * All rights reserved.
      7   1.1  jmcneill  *
      8   1.1  jmcneill  * Redistribution and use in source and binary forms, with or without
      9   1.1  jmcneill  * modification, are permitted provided that the following conditions
     10   1.1  jmcneill  * are met:
     11   1.1  jmcneill  * 1. Redistributions of source code must retain the above copyright
     12   1.1  jmcneill  *    notice, this list of conditions and the following disclaimer.
     13   1.1  jmcneill  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1  jmcneill  *    notice, this list of conditions and the following disclaimer in the
     15   1.1  jmcneill  *    documentation and/or other materials provided with the distribution.
     16   1.1  jmcneill  *
     17   1.1  jmcneill  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     18   1.1  jmcneill  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     19   1.1  jmcneill  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     20   1.1  jmcneill  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     21   1.1  jmcneill  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     22   1.1  jmcneill  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     23   1.1  jmcneill  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     24   1.1  jmcneill  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     25   1.1  jmcneill  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     26   1.1  jmcneill  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     27   1.1  jmcneill  * POSSIBILITY OF SUCH DAMAGE.
     28   1.1  jmcneill  */
     29   1.1  jmcneill 
     30   1.1  jmcneill /*
     31   1.1  jmcneill  * SGI-CRM (O2) Framebuffer driver
     32   1.1  jmcneill  */
     33   1.1  jmcneill 
     34   1.1  jmcneill #include <sys/cdefs.h>
     35  1.34  macallan __KERNEL_RCSID(0, "$NetBSD: crmfb.c,v 1.34 2011/05/17 22:52:28 macallan Exp $");
     36   1.1  jmcneill 
     37   1.1  jmcneill #include <sys/param.h>
     38   1.1  jmcneill #include <sys/systm.h>
     39   1.1  jmcneill #include <sys/device.h>
     40   1.1  jmcneill #include <sys/malloc.h>
     41   1.1  jmcneill 
     42   1.1  jmcneill #define _SGIMIPS_BUS_DMA_PRIVATE
     43   1.1  jmcneill #include <machine/autoconf.h>
     44   1.1  jmcneill #include <machine/bus.h>
     45   1.1  jmcneill #include <machine/machtype.h>
     46   1.1  jmcneill #include <machine/vmparam.h>
     47   1.1  jmcneill 
     48   1.2  jmcneill #include <dev/arcbios/arcbios.h>
     49   1.2  jmcneill #include <dev/arcbios/arcbiosvar.h>
     50   1.2  jmcneill 
     51   1.1  jmcneill #include <dev/wscons/wsdisplayvar.h>
     52   1.1  jmcneill #include <dev/wscons/wsconsio.h>
     53   1.1  jmcneill #include <dev/wsfont/wsfont.h>
     54   1.1  jmcneill #include <dev/rasops/rasops.h>
     55   1.1  jmcneill #include <dev/wscons/wsdisplay_vconsvar.h>
     56   1.1  jmcneill 
     57  1.30  macallan #include <dev/i2c/i2cvar.h>
     58  1.30  macallan #include <dev/i2c/i2c_bitbang.h>
     59  1.30  macallan #include <dev/i2c/ddcvar.h>
     60  1.30  macallan #include <dev/videomode/videomode.h>
     61  1.30  macallan #include <dev/videomode/edidvar.h>
     62  1.30  macallan 
     63   1.7  macallan #include <arch/sgimips/dev/crmfbreg.h>
     64   1.7  macallan 
     65  1.32  macallan #include "opt_crmfb.h"
     66  1.32  macallan 
     67  1.32  macallan #ifdef CRMFB_DEBUG
     68  1.32  macallan #define DPRINTF printf
     69  1.32  macallan #else
     70  1.32  macallan #define DPRINTF while (0) printf
     71  1.32  macallan #endif
     72   1.3  jmcneill 
     73   1.1  jmcneill struct wsscreen_descr crmfb_defaultscreen = {
     74   1.1  jmcneill 	"default",
     75   1.1  jmcneill 	0, 0,
     76   1.1  jmcneill 	NULL,
     77   1.1  jmcneill 	8, 16,
     78   1.1  jmcneill 	WSSCREEN_WSCOLORS,
     79   1.1  jmcneill 	NULL,
     80   1.1  jmcneill };
     81   1.1  jmcneill 
     82   1.1  jmcneill const struct wsscreen_descr *_crmfb_scrlist[] = {
     83   1.1  jmcneill 	&crmfb_defaultscreen,
     84   1.1  jmcneill };
     85   1.1  jmcneill 
     86   1.1  jmcneill struct wsscreen_list crmfb_screenlist = {
     87   1.1  jmcneill 	sizeof(_crmfb_scrlist) / sizeof(struct wsscreen_descr *),
     88   1.1  jmcneill 	_crmfb_scrlist
     89   1.1  jmcneill };
     90   1.1  jmcneill 
     91   1.1  jmcneill static struct vcons_screen crmfb_console_screen;
     92   1.1  jmcneill 
     93   1.1  jmcneill static int	crmfb_ioctl(void *, void *, u_long, void *, int, struct lwp *);
     94   1.1  jmcneill static paddr_t	crmfb_mmap(void *, void *, off_t, int);
     95   1.1  jmcneill static void	crmfb_init_screen(void *, struct vcons_screen *, int, long *);
     96   1.1  jmcneill 
     97   1.1  jmcneill struct wsdisplay_accessops crmfb_accessops = {
     98   1.1  jmcneill 	crmfb_ioctl,
     99   1.1  jmcneill 	crmfb_mmap,
    100   1.1  jmcneill 	NULL,	/* alloc_screen */
    101   1.1  jmcneill 	NULL,	/* free_screen */
    102   1.1  jmcneill 	NULL,	/* show_screen */
    103   1.1  jmcneill 	NULL,	/* load_font */
    104   1.1  jmcneill 	NULL,	/* pollc */
    105   1.1  jmcneill 	NULL,	/* scroll */
    106   1.1  jmcneill };
    107   1.1  jmcneill 
    108   1.1  jmcneill /* Memory to allocate to SGI-CRM -- remember, this is stolen from
    109   1.1  jmcneill  * host memory!
    110   1.1  jmcneill  */
    111   1.1  jmcneill #define CRMFB_TILESIZE	(512*128)
    112   1.1  jmcneill 
    113  1.29  macallan static int	crmfb_match(device_t, struct cfdata *, void *);
    114  1.29  macallan static void	crmfb_attach(device_t, device_t, void *);
    115   1.1  jmcneill int		crmfb_probe(void);
    116   1.1  jmcneill 
    117   1.1  jmcneill #define KERNADDR(p)	((void *)((p).addr))
    118   1.1  jmcneill #define DMAADDR(p)	((p).map->dm_segs[0].ds_addr)
    119   1.1  jmcneill 
    120  1.10    sekiya #define CRMFB_REG_MASK(msb, lsb) \
    121  1.10    sekiya 	( (((uint32_t) 1 << ((msb)-(lsb)+1)) - 1) << (lsb) )
    122  1.10    sekiya 
    123  1.10    sekiya 
    124   1.1  jmcneill struct crmfb_dma {
    125   1.1  jmcneill 	bus_dmamap_t		map;
    126   1.1  jmcneill 	void			*addr;
    127   1.1  jmcneill 	bus_dma_segment_t	segs[1];
    128   1.1  jmcneill 	int			nsegs;
    129   1.1  jmcneill 	size_t			size;
    130   1.1  jmcneill };
    131   1.1  jmcneill 
    132   1.1  jmcneill struct crmfb_softc {
    133  1.29  macallan 	device_t		sc_dev;
    134   1.1  jmcneill 	struct vcons_data	sc_vd;
    135  1.30  macallan 	struct i2c_controller	sc_i2c;
    136  1.30  macallan 	int sc_dir;
    137   1.1  jmcneill 
    138   1.1  jmcneill 	bus_space_tag_t		sc_iot;
    139   1.1  jmcneill 	bus_space_handle_t	sc_ioh;
    140  1.11  macallan 	bus_space_handle_t	sc_reh;
    141   1.7  macallan 
    142   1.1  jmcneill 	bus_dma_tag_t		sc_dmat;
    143   1.1  jmcneill 
    144   1.1  jmcneill 	struct crmfb_dma	sc_dma;
    145   1.1  jmcneill 	struct crmfb_dma	sc_dmai;
    146   1.1  jmcneill 
    147   1.1  jmcneill 	int			sc_width;
    148   1.1  jmcneill 	int			sc_height;
    149   1.1  jmcneill 	int			sc_depth;
    150  1.34  macallan 	int			sc_console_depth;
    151  1.11  macallan 	int			sc_tiles_x, sc_tiles_y;
    152   1.1  jmcneill 	uint32_t		sc_fbsize;
    153  1.18  macallan 	int			sc_mte_direction;
    154  1.34  macallan 	int			sc_mte_x_shift;
    155  1.34  macallan 	uint32_t		sc_mte_mode;
    156  1.11  macallan 	uint8_t			*sc_scratch;
    157  1.21  macallan 	paddr_t			sc_linear;
    158   1.1  jmcneill 	int			sc_wsmode;
    159  1.32  macallan 	struct edid_info sc_edid_info;
    160   1.6  macallan 
    161   1.6  macallan 	/* cursor stuff */
    162   1.6  macallan 	int			sc_cur_x;
    163   1.6  macallan 	int			sc_cur_y;
    164   1.6  macallan 	int			sc_hot_x;
    165   1.6  macallan 	int			sc_hot_y;
    166   1.6  macallan 
    167   1.1  jmcneill 	u_char			sc_cmap_red[256];
    168   1.1  jmcneill 	u_char			sc_cmap_green[256];
    169   1.1  jmcneill 	u_char			sc_cmap_blue[256];
    170   1.1  jmcneill };
    171   1.1  jmcneill 
    172   1.1  jmcneill static int	crmfb_putcmap(struct crmfb_softc *, struct wsdisplay_cmap *);
    173   1.1  jmcneill static int	crmfb_getcmap(struct crmfb_softc *, struct wsdisplay_cmap *);
    174   1.1  jmcneill static void	crmfb_set_palette(struct crmfb_softc *,
    175   1.1  jmcneill 				  int, uint8_t, uint8_t, uint8_t);
    176   1.6  macallan static int	crmfb_set_curpos(struct crmfb_softc *, int, int);
    177   1.6  macallan static int	crmfb_gcursor(struct crmfb_softc *, struct wsdisplay_cursor *);
    178   1.6  macallan static int	crmfb_scursor(struct crmfb_softc *, struct wsdisplay_cursor *);
    179   1.7  macallan static inline void	crmfb_write_reg(struct crmfb_softc *, int, uint32_t);
    180  1.11  macallan static inline uint32_t	crmfb_read_reg(struct crmfb_softc *, int);
    181  1.11  macallan static int	crmfb_wait_dma_idle(struct crmfb_softc *);
    182   1.7  macallan 
    183   1.7  macallan /* setup video hw in given colour depth */
    184   1.7  macallan static int	crmfb_setup_video(struct crmfb_softc *, int);
    185   1.7  macallan static void	crmfb_setup_palette(struct crmfb_softc *);
    186   1.1  jmcneill 
    187  1.11  macallan static void crmfb_fill_rect(struct crmfb_softc *, int, int, int, int, uint32_t);
    188  1.11  macallan static void crmfb_bitblt(struct crmfb_softc *, int, int, int, int, int, int,
    189  1.11  macallan 			 uint32_t);
    190  1.15  macallan static void crmfb_scroll(struct crmfb_softc *, int, int, int, int, int, int);
    191  1.11  macallan 
    192  1.11  macallan static void	crmfb_copycols(void *, int, int, int, int);
    193  1.11  macallan static void	crmfb_erasecols(void *, int, int, int, long);
    194  1.11  macallan static void	crmfb_copyrows(void *, int, int, int);
    195  1.11  macallan static void	crmfb_eraserows(void *, int, int, long);
    196  1.11  macallan static void	crmfb_cursor(void *, int, int, int);
    197  1.11  macallan static void	crmfb_putchar(void *, int, int, u_int, long);
    198  1.11  macallan 
    199  1.30  macallan /* I2C glue */
    200  1.30  macallan static int crmfb_i2c_acquire_bus(void *, int);
    201  1.30  macallan static void crmfb_i2c_release_bus(void *, int);
    202  1.30  macallan static int crmfb_i2c_send_start(void *, int);
    203  1.30  macallan static int crmfb_i2c_send_stop(void *, int);
    204  1.30  macallan static int crmfb_i2c_initiate_xfer(void *, i2c_addr_t, int);
    205  1.30  macallan static int crmfb_i2c_read_byte(void *, uint8_t *, int);
    206  1.30  macallan static int crmfb_i2c_write_byte(void *, uint8_t, int);
    207  1.30  macallan 
    208  1.30  macallan /* I2C bitbang glue */
    209  1.30  macallan static void crmfb_i2cbb_set_bits(void *, uint32_t);
    210  1.30  macallan static void crmfb_i2cbb_set_dir(void *, uint32_t);
    211  1.30  macallan static uint32_t crmfb_i2cbb_read(void *);
    212  1.30  macallan 
    213  1.30  macallan static const struct i2c_bitbang_ops crmfb_i2cbb_ops = {
    214  1.30  macallan 	crmfb_i2cbb_set_bits,
    215  1.30  macallan 	crmfb_i2cbb_set_dir,
    216  1.30  macallan 	crmfb_i2cbb_read,
    217  1.30  macallan 	{
    218  1.30  macallan 		CRMFB_I2C_SDA,
    219  1.30  macallan 		CRMFB_I2C_SCL,
    220  1.30  macallan 		0,
    221  1.30  macallan 		1
    222  1.30  macallan 	}
    223  1.30  macallan };
    224  1.30  macallan static void crmfb_setup_ddc(struct crmfb_softc *);
    225  1.30  macallan 
    226  1.32  macallan /* mode setting stuff */
    227  1.32  macallan static uint32_t calc_pll(int);	/* frequency in kHz */
    228  1.32  macallan static int crmfb_set_mode(struct crmfb_softc *, const struct videomode *);
    229  1.32  macallan 
    230  1.29  macallan CFATTACH_DECL_NEW(crmfb, sizeof(struct crmfb_softc),
    231   1.1  jmcneill     crmfb_match, crmfb_attach, NULL, NULL);
    232   1.1  jmcneill 
    233   1.1  jmcneill static int
    234  1.29  macallan crmfb_match(device_t parent, struct cfdata *cf, void *opaque)
    235   1.1  jmcneill {
    236   1.1  jmcneill 	return crmfb_probe();
    237   1.1  jmcneill }
    238   1.1  jmcneill 
    239   1.1  jmcneill static void
    240  1.29  macallan crmfb_attach(device_t parent, device_t self, void *opaque)
    241   1.1  jmcneill {
    242   1.1  jmcneill 	struct mainbus_attach_args *ma;
    243   1.1  jmcneill 	struct crmfb_softc *sc;
    244   1.1  jmcneill 	struct rasops_info *ri;
    245   1.1  jmcneill 	struct wsemuldisplaydev_attach_args aa;
    246   1.1  jmcneill 	uint32_t d, h;
    247   1.1  jmcneill 	uint16_t *p;
    248   1.1  jmcneill 	unsigned long v;
    249   1.1  jmcneill 	long defattr;
    250   1.2  jmcneill 	const char *consdev;
    251  1.11  macallan 	int rv, i;
    252   1.1  jmcneill 
    253  1.29  macallan 	sc = device_private(self);
    254  1.29  macallan 	sc->sc_dev = self;
    255  1.29  macallan 
    256   1.1  jmcneill 	ma = (struct mainbus_attach_args *)opaque;
    257   1.1  jmcneill 
    258   1.1  jmcneill 	sc->sc_iot = SGIMIPS_BUS_SPACE_CRIME;
    259   1.1  jmcneill 	sc->sc_dmat = &sgimips_default_bus_dma_tag;
    260   1.1  jmcneill 	sc->sc_wsmode = WSDISPLAYIO_MODE_EMUL;
    261   1.1  jmcneill 
    262   1.1  jmcneill 	aprint_normal(": SGI CRIME Graphics Display Engine\n");
    263   1.1  jmcneill 	rv = bus_space_map(sc->sc_iot, ma->ma_addr, 0 /* XXX */,
    264   1.1  jmcneill 	    BUS_SPACE_MAP_LINEAR, &sc->sc_ioh);
    265   1.1  jmcneill 	if (rv)
    266   1.1  jmcneill 		panic("crmfb_attach: can't map I/O space");
    267  1.11  macallan 	rv = bus_space_map(sc->sc_iot, 0x15000000, 0x6000, 0, &sc->sc_reh);
    268  1.11  macallan 	if (rv)
    269  1.11  macallan 		panic("crmfb_attach: can't map rendering engine");
    270   1.1  jmcneill 
    271   1.1  jmcneill 	/* determine mode configured by firmware */
    272   1.9  jmcneill 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_VT_HCMAP);
    273   1.9  jmcneill 	sc->sc_width = (d >> CRMFB_VT_HCMAP_ON_SHIFT) & 0xfff;
    274   1.1  jmcneill 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_VT_VCMAP);
    275   1.9  jmcneill 	sc->sc_height = (d >> CRMFB_VT_VCMAP_ON_SHIFT) & 0xfff;
    276   1.1  jmcneill 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_FRM_TILESIZE);
    277   1.1  jmcneill 	h = (d >> CRMFB_FRM_TILESIZE_DEPTH_SHIFT) & 0x3;
    278   1.1  jmcneill 	if (h == 0)
    279   1.1  jmcneill 		sc->sc_depth = 8;
    280   1.1  jmcneill 	else if (h == 1)
    281   1.1  jmcneill 		sc->sc_depth = 16;
    282   1.1  jmcneill 	else
    283   1.1  jmcneill 		sc->sc_depth = 32;
    284   1.1  jmcneill 
    285   1.4    martin 	if (sc->sc_width == 0 || sc->sc_height == 0) {
    286  1.29  macallan 		aprint_error_dev(sc->sc_dev,
    287  1.29  macallan 		    "device unusable if not setup by firmware\n");
    288   1.4    martin 		bus_space_unmap(sc->sc_iot, sc->sc_ioh, 0 /* XXX */);
    289   1.4    martin 		return;
    290   1.4    martin 	}
    291   1.4    martin 
    292  1.29  macallan 	aprint_normal_dev(sc->sc_dev, "initial resolution %dx%d\n",
    293  1.29  macallan 	    sc->sc_width, sc->sc_height);
    294   1.1  jmcneill 
    295  1.34  macallan 	sc->sc_console_depth = 8;
    296  1.34  macallan 
    297  1.32  macallan 	crmfb_setup_ddc(sc);
    298  1.32  macallan 	if ((sc->sc_edid_info.edid_preferred_mode != NULL)) {
    299  1.32  macallan 		if (crmfb_set_mode(sc, sc->sc_edid_info.edid_preferred_mode))
    300  1.32  macallan 			aprint_normal_dev(sc->sc_dev, "using %dx%d\n",
    301  1.32  macallan 			    sc->sc_width, sc->sc_height);
    302  1.32  macallan 	}
    303   1.7  macallan 	/*
    304   1.7  macallan 	 * first determine how many tiles we need
    305   1.7  macallan 	 * in 32bit each tile is 128x128 pixels
    306   1.7  macallan 	 */
    307  1.11  macallan 	sc->sc_tiles_x = (sc->sc_width + 127) >> 7;
    308  1.11  macallan 	sc->sc_tiles_y = (sc->sc_height + 127) >> 7;
    309  1.11  macallan 	sc->sc_fbsize = 0x10000 * sc->sc_tiles_x * sc->sc_tiles_y;
    310   1.1  jmcneill 
    311   1.7  macallan 	sc->sc_dmai.size = 256 * sizeof(uint16_t);
    312   1.1  jmcneill 	rv = bus_dmamem_alloc(sc->sc_dmat, sc->sc_dmai.size, 65536, 0,
    313   1.1  jmcneill 	    sc->sc_dmai.segs,
    314   1.1  jmcneill 	    sizeof(sc->sc_dmai.segs) / sizeof(sc->sc_dmai.segs[0]),
    315   1.1  jmcneill 	    &sc->sc_dmai.nsegs, BUS_DMA_NOWAIT);
    316   1.1  jmcneill 	if (rv)
    317   1.1  jmcneill 		panic("crmfb_attach: can't allocate DMA memory");
    318   1.1  jmcneill 	rv = bus_dmamem_map(sc->sc_dmat, sc->sc_dmai.segs, sc->sc_dmai.nsegs,
    319   1.1  jmcneill 	    sc->sc_dmai.size, &sc->sc_dmai.addr,
    320   1.1  jmcneill 	    BUS_DMA_NOWAIT);
    321   1.1  jmcneill 	if (rv)
    322   1.1  jmcneill 		panic("crmfb_attach: can't map DMA memory");
    323   1.1  jmcneill 	rv = bus_dmamap_create(sc->sc_dmat, sc->sc_dmai.size, 1,
    324   1.1  jmcneill 	    sc->sc_dmai.size, 0, BUS_DMA_NOWAIT, &sc->sc_dmai.map);
    325   1.1  jmcneill 	if (rv)
    326   1.1  jmcneill 		panic("crmfb_attach: can't create DMA map");
    327   1.1  jmcneill 	rv = bus_dmamap_load(sc->sc_dmat, sc->sc_dmai.map, sc->sc_dmai.addr,
    328   1.1  jmcneill 	    sc->sc_dmai.size, NULL, BUS_DMA_NOWAIT);
    329   1.1  jmcneill 	if (rv)
    330   1.1  jmcneill 		panic("crmfb_attach: can't load DMA map");
    331   1.1  jmcneill 
    332  1.21  macallan 	/* allocate an extra 64Kb for a linear buffer */
    333  1.21  macallan 	sc->sc_dma.size = 0x10000 * (16 * sc->sc_tiles_x + 1);
    334   1.1  jmcneill 	rv = bus_dmamem_alloc(sc->sc_dmat, sc->sc_dma.size, 65536, 0,
    335   1.1  jmcneill 	    sc->sc_dma.segs,
    336   1.1  jmcneill 	    sizeof(sc->sc_dma.segs) / sizeof(sc->sc_dma.segs[0]),
    337   1.1  jmcneill 	    &sc->sc_dma.nsegs, BUS_DMA_NOWAIT);
    338   1.1  jmcneill 	if (rv)
    339   1.1  jmcneill 		panic("crmfb_attach: can't allocate DMA memory");
    340   1.1  jmcneill 	rv = bus_dmamem_map(sc->sc_dmat, sc->sc_dma.segs, sc->sc_dma.nsegs,
    341   1.1  jmcneill 	    sc->sc_dma.size, &sc->sc_dma.addr,
    342   1.1  jmcneill 	    BUS_DMA_NOWAIT | BUS_DMA_COHERENT);
    343   1.1  jmcneill 	if (rv)
    344   1.1  jmcneill 		panic("crmfb_attach: can't map DMA memory");
    345   1.1  jmcneill 	rv = bus_dmamap_create(sc->sc_dmat, sc->sc_dma.size, 1,
    346   1.1  jmcneill 	    sc->sc_dma.size, 0, BUS_DMA_NOWAIT, &sc->sc_dma.map);
    347   1.1  jmcneill 	if (rv)
    348   1.1  jmcneill 		panic("crmfb_attach: can't create DMA map");
    349   1.1  jmcneill 	rv = bus_dmamap_load(sc->sc_dmat, sc->sc_dma.map, sc->sc_dma.addr,
    350   1.1  jmcneill 	    sc->sc_dma.size, NULL, BUS_DMA_NOWAIT);
    351   1.1  jmcneill 	if (rv)
    352   1.1  jmcneill 		panic("crmfb_attach: can't load DMA map");
    353   1.1  jmcneill 
    354   1.1  jmcneill 	p = KERNADDR(sc->sc_dmai);
    355   1.1  jmcneill 	v = (unsigned long)DMAADDR(sc->sc_dma);
    356  1.11  macallan 	for (i = 0; i < (sc->sc_tiles_x * sc->sc_tiles_y); i++) {
    357   1.1  jmcneill 		p[i] = ((uint32_t)v >> 16) + i;
    358   1.1  jmcneill 	}
    359  1.26   tsutsui 	bus_dmamap_sync(sc->sc_dmat, sc->sc_dmai.map, 0, sc->sc_dmai.size,
    360  1.26   tsutsui 	    BUS_DMASYNC_PREWRITE);
    361  1.21  macallan 	sc->sc_scratch = (char *)KERNADDR(sc->sc_dma) + (0xf0000 * sc->sc_tiles_x);
    362  1.21  macallan 	sc->sc_linear = (paddr_t)DMAADDR(sc->sc_dma) + 0x100000 * sc->sc_tiles_x;
    363   1.1  jmcneill 
    364  1.29  macallan 	aprint_normal_dev(sc->sc_dev, "allocated %d byte fb @ %p (%p)\n",
    365   1.1  jmcneill 	    sc->sc_fbsize, KERNADDR(sc->sc_dmai), KERNADDR(sc->sc_dma));
    366   1.1  jmcneill 
    367  1.34  macallan 	crmfb_setup_video(sc, sc->sc_console_depth);
    368   1.1  jmcneill 	ri = &crmfb_console_screen.scr_ri;
    369   1.1  jmcneill 	memset(ri, 0, sizeof(struct rasops_info));
    370   1.1  jmcneill 
    371   1.1  jmcneill 	vcons_init(&sc->sc_vd, sc, &crmfb_defaultscreen, &crmfb_accessops);
    372   1.1  jmcneill 	sc->sc_vd.init_screen = crmfb_init_screen;
    373   1.1  jmcneill 	crmfb_console_screen.scr_flags |= VCONS_SCREEN_IS_STATIC;
    374   1.1  jmcneill 	vcons_init_screen(&sc->sc_vd, &crmfb_console_screen, 1, &defattr);
    375   1.1  jmcneill 
    376   1.1  jmcneill 	crmfb_defaultscreen.ncols = ri->ri_cols;
    377   1.1  jmcneill 	crmfb_defaultscreen.nrows = ri->ri_rows;
    378   1.1  jmcneill 	crmfb_defaultscreen.textops = &ri->ri_ops;
    379   1.1  jmcneill 	crmfb_defaultscreen.capabilities = ri->ri_caps;
    380   1.1  jmcneill 	crmfb_defaultscreen.modecookie = NULL;
    381   1.1  jmcneill 
    382   1.7  macallan 	crmfb_setup_palette(sc);
    383  1.14  macallan 	crmfb_fill_rect(sc, 0, 0, sc->sc_width, sc->sc_height,
    384  1.17  macallan 	    ri->ri_devcmap[(defattr >> 16) & 0xff]);
    385   1.1  jmcneill 
    386  1.27      matt 	consdev = arcbios_GetEnvironmentVariable("ConsoleOut");
    387   1.2  jmcneill 	if (consdev != NULL && strcmp(consdev, "video()") == 0) {
    388   1.2  jmcneill 		wsdisplay_cnattach(&crmfb_defaultscreen, ri, 0, 0, defattr);
    389  1.28  macallan 		vcons_replay_msgbuf(&crmfb_console_screen);
    390   1.2  jmcneill 		aa.console = 1;
    391   1.2  jmcneill 	} else
    392   1.2  jmcneill 		aa.console = 0;
    393   1.1  jmcneill 	aa.scrdata = &crmfb_screenlist;
    394   1.1  jmcneill 	aa.accessops = &crmfb_accessops;
    395   1.1  jmcneill 	aa.accesscookie = &sc->sc_vd;
    396   1.1  jmcneill 
    397   1.1  jmcneill 	config_found(self, &aa, wsemuldisplaydevprint);
    398   1.1  jmcneill 
    399   1.6  macallan 	sc->sc_cur_x = 0;
    400   1.6  macallan 	sc->sc_cur_y = 0;
    401   1.6  macallan 	sc->sc_hot_x = 0;
    402   1.6  macallan 	sc->sc_hot_y = 0;
    403   1.6  macallan 
    404   1.1  jmcneill 	return;
    405   1.1  jmcneill }
    406   1.1  jmcneill 
    407   1.1  jmcneill int
    408   1.1  jmcneill crmfb_probe(void)
    409   1.1  jmcneill {
    410   1.1  jmcneill 
    411   1.1  jmcneill         if (mach_type != MACH_SGI_IP32)
    412   1.1  jmcneill                 return 0;
    413   1.1  jmcneill 
    414   1.1  jmcneill 	return 1;
    415   1.1  jmcneill }
    416   1.1  jmcneill 
    417   1.1  jmcneill static int
    418   1.1  jmcneill crmfb_ioctl(void *v, void *vs, u_long cmd, void *data, int flag, struct lwp *l)
    419   1.1  jmcneill {
    420   1.1  jmcneill 	struct vcons_data *vd;
    421   1.1  jmcneill 	struct crmfb_softc *sc;
    422   1.1  jmcneill 	struct vcons_screen *ms;
    423   1.1  jmcneill 	struct wsdisplay_fbinfo *wdf;
    424   1.1  jmcneill 	int nmode;
    425   1.1  jmcneill 
    426   1.1  jmcneill 	vd = (struct vcons_data *)v;
    427   1.1  jmcneill 	sc = (struct crmfb_softc *)vd->cookie;
    428   1.1  jmcneill 	ms = (struct vcons_screen *)vd->active;
    429   1.1  jmcneill 
    430   1.1  jmcneill 	switch (cmd) {
    431   1.1  jmcneill 	case WSDISPLAYIO_GTYPE:
    432   1.1  jmcneill 		/* not really, but who cares? */
    433   1.7  macallan 		/* wsfb does */
    434   1.7  macallan 		*(u_int *)data = WSDISPLAY_TYPE_CRIME;
    435   1.1  jmcneill 		return 0;
    436   1.1  jmcneill 	case WSDISPLAYIO_GINFO:
    437   1.1  jmcneill 		if (vd->active != NULL) {
    438   1.1  jmcneill 			wdf = (void *)data;
    439   1.1  jmcneill 			wdf->height = sc->sc_height;
    440   1.1  jmcneill 			wdf->width = sc->sc_width;
    441   1.7  macallan 			wdf->depth = 32;
    442   1.1  jmcneill 			wdf->cmsize = 256;
    443   1.1  jmcneill 			return 0;
    444   1.1  jmcneill 		} else
    445   1.1  jmcneill 			return ENODEV;
    446   1.1  jmcneill 	case WSDISPLAYIO_GETCMAP:
    447   1.1  jmcneill 		if (sc->sc_depth == 8)
    448   1.1  jmcneill 			return crmfb_getcmap(sc, (struct wsdisplay_cmap *)data);
    449   1.1  jmcneill 		else
    450   1.1  jmcneill 			return EINVAL;
    451   1.1  jmcneill 	case WSDISPLAYIO_PUTCMAP:
    452   1.1  jmcneill 		if (sc->sc_depth == 8)
    453   1.1  jmcneill 			return crmfb_putcmap(sc, (struct wsdisplay_cmap *)data);
    454   1.1  jmcneill 		else
    455   1.1  jmcneill 			return EINVAL;
    456   1.1  jmcneill 	case WSDISPLAYIO_LINEBYTES:
    457   1.1  jmcneill 		*(u_int *)data = sc->sc_width * sc->sc_depth / 8;
    458   1.1  jmcneill 		return 0;
    459   1.1  jmcneill 	case WSDISPLAYIO_SMODE:
    460   1.1  jmcneill 		nmode = *(int *)data;
    461   1.1  jmcneill 		if (nmode != sc->sc_wsmode) {
    462   1.1  jmcneill 			sc->sc_wsmode = nmode;
    463   1.7  macallan 			if (nmode == WSDISPLAYIO_MODE_EMUL) {
    464  1.34  macallan 				crmfb_setup_video(sc, sc->sc_console_depth);
    465   1.7  macallan 				crmfb_setup_palette(sc);
    466   1.1  jmcneill 				vcons_redraw_screen(vd->active);
    467   1.7  macallan 			} else {
    468   1.7  macallan 				crmfb_setup_video(sc, 32);
    469   1.7  macallan 			}
    470   1.1  jmcneill 		}
    471   1.1  jmcneill 		return 0;
    472   1.5  jmcneill 	case WSDISPLAYIO_SVIDEO:
    473   1.5  jmcneill 	case WSDISPLAYIO_GVIDEO:
    474   1.5  jmcneill 		return ENODEV;	/* not supported yet */
    475   1.6  macallan 
    476   1.6  macallan 	case WSDISPLAYIO_GCURPOS:
    477   1.6  macallan 		{
    478   1.6  macallan 			struct wsdisplay_curpos *pos;
    479   1.6  macallan 
    480   1.6  macallan 			pos = (struct wsdisplay_curpos *)data;
    481   1.6  macallan 			pos->x = sc->sc_cur_x;
    482   1.6  macallan 			pos->y = sc->sc_cur_y;
    483   1.6  macallan 		}
    484   1.6  macallan 		return 0;
    485   1.6  macallan 	case WSDISPLAYIO_SCURPOS:
    486   1.6  macallan 		{
    487   1.6  macallan 			struct wsdisplay_curpos *pos;
    488   1.6  macallan 
    489   1.6  macallan 			pos = (struct wsdisplay_curpos *)data;
    490   1.6  macallan 			crmfb_set_curpos(sc, pos->x, pos->y);
    491   1.6  macallan 		}
    492   1.6  macallan 		return 0;
    493   1.6  macallan 	case WSDISPLAYIO_GCURMAX:
    494   1.6  macallan 		{
    495   1.6  macallan 			struct wsdisplay_curpos *pos;
    496   1.6  macallan 
    497   1.6  macallan 			pos = (struct wsdisplay_curpos *)data;
    498   1.6  macallan 			pos->x = 32;
    499   1.6  macallan 			pos->y = 32;
    500   1.6  macallan 		}
    501   1.6  macallan 		return 0;
    502   1.6  macallan 	case WSDISPLAYIO_GCURSOR:
    503   1.6  macallan 		{
    504   1.6  macallan 			struct wsdisplay_cursor *cu;
    505   1.6  macallan 
    506   1.6  macallan 			cu = (struct wsdisplay_cursor *)data;
    507   1.6  macallan 			return crmfb_gcursor(sc, cu);
    508   1.6  macallan 		}
    509   1.6  macallan 	case WSDISPLAYIO_SCURSOR:
    510   1.6  macallan 		{
    511   1.6  macallan 			struct wsdisplay_cursor *cu;
    512   1.6  macallan 
    513   1.6  macallan 			cu = (struct wsdisplay_cursor *)data;
    514   1.6  macallan 			return crmfb_scursor(sc, cu);
    515   1.6  macallan 		}
    516   1.1  jmcneill 	}
    517   1.1  jmcneill 	return EPASSTHROUGH;
    518   1.1  jmcneill }
    519   1.1  jmcneill 
    520   1.1  jmcneill static paddr_t
    521   1.1  jmcneill crmfb_mmap(void *v, void *vs, off_t offset, int prot)
    522   1.1  jmcneill {
    523   1.1  jmcneill 	struct vcons_data *vd;
    524   1.1  jmcneill 	struct crmfb_softc *sc;
    525   1.1  jmcneill 	paddr_t pa;
    526   1.1  jmcneill 
    527   1.1  jmcneill 	vd = (struct vcons_data *)v;
    528   1.1  jmcneill 	sc = (struct crmfb_softc *)vd->cookie;
    529   1.1  jmcneill 
    530  1.14  macallan 	/* we probably shouldn't let anyone mmap the framebuffer */
    531   1.7  macallan #if 1
    532  1.22  macallan 	if (offset >= 0 && offset < (0x100000 * sc->sc_tiles_x)) {
    533   1.1  jmcneill 		pa = bus_dmamem_mmap(sc->sc_dmat, sc->sc_dma.segs,
    534   1.1  jmcneill 		    sc->sc_dma.nsegs, offset, prot,
    535   1.3  jmcneill 		    BUS_DMA_WAITOK | BUS_DMA_COHERENT);
    536   1.1  jmcneill 		return pa;
    537   1.1  jmcneill 	}
    538   1.7  macallan #endif
    539  1.14  macallan 	/*
    540  1.14  macallan 	 * here would the TLBs be but we don't want to show them to userland
    541  1.14  macallan 	 * so we return the page containing the status register
    542  1.14  macallan 	 */
    543  1.14  macallan 	if ((offset >= 0x15000000) && (offset < 0x15002000))
    544  1.14  macallan 		return bus_space_mmap(sc->sc_iot, 0x15004000, 0, prot, 0);
    545  1.14  macallan 	/* now the actual engine registers */
    546  1.14  macallan 	if ((offset >= 0x15002000) && (offset < 0x15005000))
    547  1.14  macallan 		return bus_space_mmap(sc->sc_iot, offset, 0, prot, 0);
    548  1.14  macallan 	/* and now the scratch area */
    549  1.14  macallan 	if ((offset >= 0x15010000) && (offset < 0x15020000))
    550  1.14  macallan 		return bus_dmamem_mmap(sc->sc_dmat, sc->sc_dma.segs,
    551  1.21  macallan 		     sc->sc_dma.nsegs,
    552  1.21  macallan 		     offset + (0x100000 * sc->sc_tiles_x) - 0x15010000,
    553  1.21  macallan 		     prot, BUS_DMA_WAITOK | BUS_DMA_COHERENT);
    554   1.1  jmcneill 	return -1;
    555   1.1  jmcneill }
    556   1.1  jmcneill 
    557   1.1  jmcneill static void
    558   1.1  jmcneill crmfb_init_screen(void *c, struct vcons_screen *scr, int existing,
    559   1.1  jmcneill     long *defattr)
    560   1.1  jmcneill {
    561   1.1  jmcneill 	struct crmfb_softc *sc;
    562   1.1  jmcneill 	struct rasops_info *ri;
    563   1.1  jmcneill 
    564   1.1  jmcneill 	sc = (struct crmfb_softc *)c;
    565   1.1  jmcneill 	ri = &scr->scr_ri;
    566   1.1  jmcneill 
    567  1.11  macallan 	ri->ri_flg = RI_CENTER | RI_FULLCLEAR;
    568  1.34  macallan 	ri->ri_depth = sc->sc_console_depth;
    569   1.1  jmcneill 	ri->ri_width = sc->sc_width;
    570   1.1  jmcneill 	ri->ri_height = sc->sc_height;
    571   1.1  jmcneill 	ri->ri_stride = ri->ri_width * (ri->ri_depth / 8);
    572  1.34  macallan #if 1
    573   1.1  jmcneill 	switch (ri->ri_depth) {
    574   1.1  jmcneill 	case 16:
    575   1.1  jmcneill 		ri->ri_rnum = ri->ri_gnum = ri->ri_bnum = 5;
    576  1.34  macallan 		ri->ri_rpos = 11;
    577  1.34  macallan 		ri->ri_gpos = 6;
    578  1.34  macallan 		ri->ri_bpos = 1;
    579   1.1  jmcneill 		break;
    580   1.1  jmcneill 	case 32:
    581   1.1  jmcneill 		ri->ri_rnum = ri->ri_gnum = ri->ri_bnum = 8;
    582   1.1  jmcneill 		ri->ri_rpos = 8;
    583   1.1  jmcneill 		ri->ri_gpos = 16;
    584   1.1  jmcneill 		ri->ri_bpos = 24;
    585   1.1  jmcneill 		break;
    586   1.1  jmcneill 	}
    587  1.34  macallan #endif
    588  1.11  macallan 	ri->ri_bits = KERNADDR(sc->sc_dma);
    589   1.1  jmcneill 
    590   1.1  jmcneill 	if (existing)
    591   1.1  jmcneill 		ri->ri_flg |= RI_CLEAR;
    592   1.1  jmcneill 
    593   1.1  jmcneill 	rasops_init(ri, ri->ri_height / 16, ri->ri_width / 8);
    594   1.1  jmcneill 	ri->ri_caps = WSSCREEN_WSCOLORS;
    595   1.1  jmcneill 	rasops_reconfig(ri, ri->ri_height / ri->ri_font->fontheight,
    596   1.1  jmcneill 	    ri->ri_width / ri->ri_font->fontwidth);
    597   1.1  jmcneill 	ri->ri_hw = scr;
    598   1.1  jmcneill 
    599  1.11  macallan 	ri->ri_ops.cursor    = crmfb_cursor;
    600  1.11  macallan 	ri->ri_ops.copyrows  = crmfb_copyrows;
    601  1.11  macallan 	ri->ri_ops.eraserows = crmfb_eraserows;
    602  1.11  macallan 	ri->ri_ops.copycols  = crmfb_copycols;
    603  1.11  macallan 	ri->ri_ops.erasecols = crmfb_erasecols;
    604  1.11  macallan 	ri->ri_ops.putchar   = crmfb_putchar;
    605  1.11  macallan 
    606   1.1  jmcneill 	return;
    607   1.1  jmcneill }
    608   1.1  jmcneill 
    609   1.1  jmcneill static int
    610   1.1  jmcneill crmfb_putcmap(struct crmfb_softc *sc, struct wsdisplay_cmap *cm)
    611   1.1  jmcneill {
    612   1.1  jmcneill 	u_int idx, cnt;
    613   1.1  jmcneill 	u_char r[256], g[256], b[256];
    614   1.1  jmcneill 	u_char *rp, *gp, *bp;
    615   1.1  jmcneill 	int rv, i;
    616   1.1  jmcneill 
    617   1.1  jmcneill 	idx = cm->index;
    618   1.1  jmcneill 	cnt = cm->count;
    619   1.1  jmcneill 
    620   1.1  jmcneill 	if (idx >= 255 || cnt > 256 || idx + cnt > 256)
    621   1.1  jmcneill 		return EINVAL;
    622   1.1  jmcneill 
    623   1.1  jmcneill 	rv = copyin(cm->red, &r[idx], cnt);
    624   1.1  jmcneill 	if (rv)
    625   1.1  jmcneill 		return rv;
    626   1.1  jmcneill 	rv = copyin(cm->green, &g[idx], cnt);
    627   1.1  jmcneill 	if (rv)
    628   1.1  jmcneill 		return rv;
    629   1.1  jmcneill 	rv = copyin(cm->blue, &b[idx], cnt);
    630   1.1  jmcneill 	if (rv)
    631   1.1  jmcneill 		return rv;
    632   1.1  jmcneill 
    633   1.1  jmcneill 	memcpy(&sc->sc_cmap_red[idx], &r[idx], cnt);
    634   1.1  jmcneill 	memcpy(&sc->sc_cmap_green[idx], &g[idx], cnt);
    635   1.1  jmcneill 	memcpy(&sc->sc_cmap_blue[idx], &b[idx], cnt);
    636   1.1  jmcneill 
    637   1.1  jmcneill 	rp = &sc->sc_cmap_red[idx];
    638   1.1  jmcneill 	gp = &sc->sc_cmap_green[idx];
    639   1.1  jmcneill 	bp = &sc->sc_cmap_blue[idx];
    640   1.1  jmcneill 
    641   1.1  jmcneill 	for (i = 0; i < cnt; i++) {
    642   1.1  jmcneill 		crmfb_set_palette(sc, idx, *rp, *gp, *bp);
    643   1.1  jmcneill 		idx++;
    644   1.1  jmcneill 		rp++, gp++, bp++;
    645   1.1  jmcneill 	}
    646   1.1  jmcneill 
    647   1.1  jmcneill 	return 0;
    648   1.1  jmcneill }
    649   1.1  jmcneill 
    650   1.1  jmcneill static int
    651   1.1  jmcneill crmfb_getcmap(struct crmfb_softc *sc, struct wsdisplay_cmap *cm)
    652   1.1  jmcneill {
    653   1.1  jmcneill 	u_int idx, cnt;
    654   1.1  jmcneill 	int rv;
    655   1.1  jmcneill 
    656   1.1  jmcneill 	idx = cm->index;
    657   1.1  jmcneill 	cnt = cm->count;
    658   1.1  jmcneill 
    659   1.1  jmcneill 	if (idx >= 255 || cnt > 256 || idx + cnt > 256)
    660   1.1  jmcneill 		return EINVAL;
    661   1.1  jmcneill 
    662   1.1  jmcneill 	rv = copyout(&sc->sc_cmap_red[idx], cm->red, cnt);
    663   1.1  jmcneill 	if (rv)
    664   1.1  jmcneill 		return rv;
    665   1.1  jmcneill 	rv = copyout(&sc->sc_cmap_green[idx], cm->green, cnt);
    666   1.1  jmcneill 	if (rv)
    667   1.1  jmcneill 		return rv;
    668   1.1  jmcneill 	rv = copyout(&sc->sc_cmap_blue[idx], cm->blue, cnt);
    669   1.1  jmcneill 	if (rv)
    670   1.1  jmcneill 		return rv;
    671   1.1  jmcneill 
    672   1.1  jmcneill 	return 0;
    673   1.1  jmcneill }
    674   1.1  jmcneill 
    675   1.1  jmcneill static void
    676   1.1  jmcneill crmfb_set_palette(struct crmfb_softc *sc, int reg, uint8_t r, uint8_t g,
    677   1.1  jmcneill     uint8_t b)
    678   1.1  jmcneill {
    679   1.1  jmcneill 	uint32_t val;
    680   1.1  jmcneill 
    681   1.1  jmcneill 	if (reg > 255 || sc->sc_depth != 8)
    682   1.1  jmcneill 		return;
    683   1.1  jmcneill 
    684   1.1  jmcneill 	while (bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_CMAP_FIFO) >= 63)
    685   1.1  jmcneill 		DELAY(10);
    686   1.1  jmcneill 
    687  1.23  jmcneill 	val = (r << 8) | (g << 16) | (b << 24);
    688   1.7  macallan 	crmfb_write_reg(sc, CRMFB_CMAP + (reg * 4), val);
    689   1.1  jmcneill 
    690   1.1  jmcneill 	return;
    691   1.1  jmcneill }
    692   1.6  macallan 
    693   1.6  macallan static int
    694   1.6  macallan crmfb_set_curpos(struct crmfb_softc *sc, int x, int y)
    695   1.6  macallan {
    696   1.6  macallan 	uint32_t val;
    697   1.6  macallan 
    698   1.6  macallan 	sc->sc_cur_x = x;
    699   1.6  macallan 	sc->sc_cur_y = y;
    700   1.6  macallan 
    701   1.6  macallan 	val = ((x - sc->sc_hot_x) & 0xffff) | ((y - sc->sc_hot_y) << 16);
    702   1.7  macallan 	crmfb_write_reg(sc, CRMFB_CURSOR_POS, val);
    703   1.6  macallan 
    704   1.6  macallan 	return 0;
    705   1.6  macallan }
    706   1.6  macallan 
    707   1.6  macallan static int
    708   1.6  macallan crmfb_gcursor(struct crmfb_softc *sc, struct wsdisplay_cursor *cur)
    709   1.6  macallan {
    710   1.6  macallan 	/* do nothing for now */
    711   1.6  macallan 	return 0;
    712   1.6  macallan }
    713   1.6  macallan 
    714   1.6  macallan static int
    715   1.6  macallan crmfb_scursor(struct crmfb_softc *sc, struct wsdisplay_cursor *cur)
    716   1.6  macallan {
    717   1.6  macallan 	if (cur->which & WSDISPLAY_CURSOR_DOCUR) {
    718   1.6  macallan 
    719   1.7  macallan 		crmfb_write_reg(sc, CRMFB_CURSOR_CONTROL, cur->enable ? 1 : 0);
    720   1.6  macallan 	}
    721   1.6  macallan 	if (cur->which & WSDISPLAY_CURSOR_DOHOT) {
    722   1.6  macallan 
    723   1.6  macallan 		sc->sc_hot_x = cur->hot.x;
    724   1.6  macallan 		sc->sc_hot_y = cur->hot.y;
    725   1.6  macallan 	}
    726   1.6  macallan 	if (cur->which & WSDISPLAY_CURSOR_DOPOS) {
    727   1.6  macallan 
    728   1.6  macallan 		crmfb_set_curpos(sc, cur->pos.x, cur->pos.y);
    729   1.6  macallan 	}
    730   1.6  macallan 	if (cur->which & WSDISPLAY_CURSOR_DOCMAP) {
    731   1.6  macallan 		int i;
    732   1.6  macallan 		uint32_t val;
    733   1.6  macallan 
    734   1.6  macallan 		for (i = 0; i < cur->cmap.count; i++) {
    735   1.6  macallan 			val = (cur->cmap.red[i] << 24) |
    736   1.6  macallan 			      (cur->cmap.green[i] << 16) |
    737   1.6  macallan 			      (cur->cmap.blue[i] << 8);
    738   1.7  macallan 			crmfb_write_reg(sc, CRMFB_CURSOR_CMAP0 +
    739   1.7  macallan 			    ((i + cur->cmap.index) << 2), val);
    740   1.6  macallan 		}
    741   1.6  macallan 	}
    742   1.6  macallan 	if (cur->which & WSDISPLAY_CURSOR_DOSHAPE) {
    743   1.6  macallan 
    744   1.6  macallan 		int i, j, cnt = 0;
    745   1.6  macallan 		uint32_t latch = 0, omask;
    746   1.6  macallan 		uint8_t imask;
    747   1.6  macallan 		for (i = 0; i < 64; i++) {
    748   1.6  macallan 			omask = 0x80000000;
    749   1.6  macallan 			imask = 0x01;
    750   1.6  macallan 			cur->image[cnt] &= cur->mask[cnt];
    751   1.6  macallan 			for (j = 0; j < 8; j++) {
    752   1.6  macallan 				if (cur->image[cnt] & imask)
    753   1.6  macallan 					latch |= omask;
    754   1.6  macallan 				omask >>= 1;
    755   1.6  macallan 				if (cur->mask[cnt] & imask)
    756   1.6  macallan 					latch |= omask;
    757   1.6  macallan 				omask >>= 1;
    758   1.6  macallan 				imask <<= 1;
    759   1.6  macallan 			}
    760   1.6  macallan 			cnt++;
    761   1.6  macallan 			imask = 0x01;
    762   1.6  macallan 			cur->image[cnt] &= cur->mask[cnt];
    763   1.6  macallan 			for (j = 0; j < 8; j++) {
    764   1.6  macallan 				if (cur->image[cnt] & imask)
    765   1.6  macallan 					latch |= omask;
    766   1.6  macallan 				omask >>= 1;
    767   1.6  macallan 				if (cur->mask[cnt] & imask)
    768   1.6  macallan 					latch |= omask;
    769   1.6  macallan 				omask >>= 1;
    770   1.6  macallan 				imask <<= 1;
    771   1.6  macallan 			}
    772   1.6  macallan 			cnt++;
    773   1.7  macallan 			crmfb_write_reg(sc, CRMFB_CURSOR_BITMAP + (i << 2),
    774   1.7  macallan 			    latch);
    775   1.6  macallan 			latch = 0;
    776   1.6  macallan 		}
    777   1.6  macallan 	}
    778   1.6  macallan 	return 0;
    779   1.6  macallan }
    780   1.7  macallan 
    781   1.7  macallan static inline void
    782   1.7  macallan crmfb_write_reg(struct crmfb_softc *sc, int offset, uint32_t val)
    783   1.7  macallan {
    784   1.7  macallan 
    785   1.7  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, offset, val);
    786   1.7  macallan 	wbflush();
    787   1.7  macallan }
    788   1.7  macallan 
    789  1.11  macallan static inline uint32_t
    790  1.11  macallan crmfb_read_reg(struct crmfb_softc *sc, int offset)
    791  1.11  macallan {
    792  1.11  macallan 
    793  1.11  macallan 	return bus_space_read_4(sc->sc_iot, sc->sc_ioh, offset);
    794  1.11  macallan }
    795  1.11  macallan 
    796  1.11  macallan static int
    797  1.11  macallan crmfb_wait_dma_idle(struct crmfb_softc *sc)
    798  1.11  macallan {
    799  1.11  macallan 	int bail = 100000, idle;
    800  1.11  macallan 
    801  1.11  macallan 	do {
    802  1.11  macallan 		idle = ((bus_space_read_4(sc->sc_iot, sc->sc_ioh,
    803  1.11  macallan 		         CRMFB_OVR_CONTROL) & 1) == 0) &&
    804  1.11  macallan 		       ((bus_space_read_4(sc->sc_iot, sc->sc_ioh,
    805  1.11  macallan 		         CRMFB_FRM_CONTROL) & 1) == 0) &&
    806  1.11  macallan 		       ((bus_space_read_4(sc->sc_iot, sc->sc_ioh,
    807  1.11  macallan 		         CRMFB_DID_CONTROL) & 1) == 0);
    808  1.11  macallan 		if (!idle)
    809  1.11  macallan 			delay(10);
    810  1.11  macallan 		bail--;
    811  1.11  macallan 	} while ((!idle) && (bail > 0));
    812  1.11  macallan 	return idle;
    813  1.11  macallan }
    814  1.11  macallan 
    815   1.7  macallan static int
    816   1.7  macallan crmfb_setup_video(struct crmfb_softc *sc, int depth)
    817   1.7  macallan {
    818  1.11  macallan 	uint64_t reg;
    819  1.21  macallan 	uint32_t d, h, mode, page;
    820  1.32  macallan 	int i, bail, tile_width, tlbptr, lptr, j, tx, shift, overhang;
    821  1.10    sekiya 	const char *wantsync;
    822  1.11  macallan 	uint16_t v;
    823  1.11  macallan 
    824   1.7  macallan 	/* disable DMA */
    825   1.7  macallan 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_OVR_CONTROL);
    826   1.7  macallan 	d &= ~(1 << CRMFB_OVR_CONTROL_DMAEN_SHIFT);
    827   1.7  macallan 	crmfb_write_reg(sc, CRMFB_OVR_CONTROL, d);
    828   1.7  macallan 	DELAY(50000);
    829   1.7  macallan 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_FRM_CONTROL);
    830   1.7  macallan 	d &= ~(1 << CRMFB_FRM_CONTROL_DMAEN_SHIFT);
    831   1.7  macallan 	crmfb_write_reg(sc, CRMFB_FRM_CONTROL, d);
    832   1.7  macallan 	DELAY(50000);
    833  1.32  macallan 	crmfb_write_reg(sc, CRMFB_DID_CONTROL, d);
    834   1.7  macallan 	DELAY(50000);
    835   1.7  macallan 
    836  1.11  macallan 	if (!crmfb_wait_dma_idle(sc))
    837  1.11  macallan 		aprint_error("crmfb: crmfb_wait_dma_idle timed out\n");
    838  1.11  macallan 
    839   1.7  macallan 	/* ensure that CRM starts drawing at the top left of the screen
    840   1.7  macallan 	 * when we re-enable DMA later
    841   1.7  macallan 	 */
    842   1.7  macallan 	d = (1 << CRMFB_VT_XY_FREEZE_SHIFT);
    843   1.7  macallan 	crmfb_write_reg(sc, CRMFB_VT_XY, d);
    844   1.7  macallan 	delay(1000);
    845   1.7  macallan 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_DOTCLOCK);
    846   1.7  macallan 	d &= ~(1 << CRMFB_DOTCLOCK_CLKRUN_SHIFT);
    847   1.7  macallan 	crmfb_write_reg(sc, CRMFB_DOTCLOCK, d);
    848  1.11  macallan 
    849  1.11  macallan 	/* wait for dotclock to turn off */
    850  1.11  macallan 	bail = 10000;
    851  1.11  macallan 	while ((bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_DOTCLOCK) &
    852  1.11  macallan 	    (1 << CRMFB_DOTCLOCK_CLKRUN_SHIFT)) && (bail > 0)) {
    853  1.11  macallan 		delay(10);
    854  1.11  macallan 		bail--;
    855  1.11  macallan 	}
    856   1.7  macallan 
    857   1.7  macallan 	/* reset FIFO */
    858   1.7  macallan 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_FRM_TILESIZE);
    859   1.7  macallan 	d |= (1 << CRMFB_FRM_TILESIZE_FIFOR_SHIFT);
    860   1.7  macallan 	crmfb_write_reg(sc, CRMFB_FRM_TILESIZE, d);
    861   1.7  macallan 	d &= ~(1 << CRMFB_FRM_TILESIZE_FIFOR_SHIFT);
    862   1.7  macallan 	crmfb_write_reg(sc, CRMFB_FRM_TILESIZE, d);
    863   1.7  macallan 
    864   1.7  macallan 	/* setup colour mode */
    865   1.7  macallan 	switch (depth) {
    866   1.7  macallan 	case 8:
    867   1.7  macallan 		h = CRMFB_MODE_TYP_I8;
    868  1.11  macallan 		tile_width = 512;
    869   1.7  macallan 		break;
    870   1.7  macallan 	case 16:
    871   1.7  macallan 		h = CRMFB_MODE_TYP_ARGB5;
    872  1.11  macallan 		tile_width = 256;
    873   1.7  macallan 		break;
    874   1.7  macallan 	case 32:
    875   1.7  macallan 		h = CRMFB_MODE_TYP_RGB8;
    876  1.11  macallan 		tile_width = 128;
    877   1.7  macallan 		break;
    878   1.7  macallan 	default:
    879   1.7  macallan 		panic("Unsupported depth");
    880   1.7  macallan 	}
    881   1.7  macallan 	d = h << CRMFB_MODE_TYP_SHIFT;
    882   1.7  macallan 	d |= CRMFB_MODE_BUF_BOTH << CRMFB_MODE_BUF_SHIFT;
    883   1.7  macallan 	for (i = 0; i < (32 * 4); i += 4)
    884   1.7  macallan 		bus_space_write_4(sc->sc_iot, sc->sc_ioh, CRMFB_MODE + i, d);
    885   1.7  macallan 	wbflush();
    886   1.7  macallan 
    887   1.7  macallan 	/* setup tile pointer, but don't turn on DMA yet! */
    888   1.7  macallan 	h = DMAADDR(sc->sc_dmai);
    889   1.7  macallan 	d = (h >> 9) << CRMFB_FRM_CONTROL_TILEPTR_SHIFT;
    890   1.7  macallan 	crmfb_write_reg(sc, CRMFB_FRM_CONTROL, d);
    891   1.7  macallan 
    892   1.7  macallan 	/* init framebuffer width and pixel size */
    893  1.11  macallan 	/*d = (1 << CRMFB_FRM_TILESIZE_WIDTH_SHIFT);*/
    894  1.11  macallan 
    895  1.11  macallan 	d = ((int)(sc->sc_width / tile_width)) <<
    896  1.11  macallan 	    CRMFB_FRM_TILESIZE_WIDTH_SHIFT;
    897  1.32  macallan 	overhang = sc->sc_width % tile_width;
    898  1.32  macallan 	if (overhang != 0) {
    899  1.32  macallan 		uint32_t val;
    900  1.32  macallan 		DPRINTF("tile width: %d\n", tile_width);
    901  1.32  macallan 		DPRINTF("overhang: %d\n", overhang);
    902  1.32  macallan 		val = (overhang * (depth >> 3)) >> 5;
    903  1.32  macallan 		DPRINTF("reg: %08x\n", val);
    904  1.32  macallan 		d |= (val & 0x1f);
    905  1.32  macallan 		DPRINTF("d: %08x\n", d);
    906  1.32  macallan 	}
    907  1.11  macallan 
    908   1.7  macallan 	switch (depth) {
    909   1.7  macallan 	case 8:
    910   1.7  macallan 		h = CRMFB_FRM_TILESIZE_DEPTH_8;
    911   1.7  macallan 		break;
    912   1.7  macallan 	case 16:
    913   1.7  macallan 		h = CRMFB_FRM_TILESIZE_DEPTH_16;
    914   1.7  macallan 		break;
    915   1.7  macallan 	case 32:
    916   1.7  macallan 		h = CRMFB_FRM_TILESIZE_DEPTH_32;
    917   1.7  macallan 		break;
    918   1.7  macallan 	default:
    919   1.7  macallan 		panic("Unsupported depth");
    920   1.7  macallan 	}
    921   1.7  macallan 	d |= (h << CRMFB_FRM_TILESIZE_DEPTH_SHIFT);
    922   1.7  macallan 	crmfb_write_reg(sc, CRMFB_FRM_TILESIZE, d);
    923   1.7  macallan 
    924  1.11  macallan 	/*h = sc->sc_width * sc->sc_height / (512 / (depth >> 3));*/
    925  1.11  macallan 	h = sc->sc_height;
    926   1.7  macallan 	d = h << CRMFB_FRM_PIXSIZE_HEIGHT_SHIFT;
    927   1.7  macallan 	crmfb_write_reg(sc, CRMFB_FRM_PIXSIZE, d);
    928   1.7  macallan 
    929   1.7  macallan 	/* turn off firmware overlay and hardware cursor */
    930   1.7  macallan 	crmfb_write_reg(sc, CRMFB_OVR_WIDTH_TILE, 0);
    931   1.7  macallan 	crmfb_write_reg(sc, CRMFB_CURSOR_CONTROL, 0);
    932   1.7  macallan 
    933  1.32  macallan 	/* turn on DMA for the framebuffer */
    934  1.32  macallan 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_FRM_CONTROL);
    935  1.32  macallan 	d |= (1 << CRMFB_FRM_CONTROL_DMAEN_SHIFT);
    936  1.32  macallan 	crmfb_write_reg(sc, CRMFB_FRM_CONTROL, d);
    937  1.32  macallan 
    938   1.7  macallan 	/* enable drawing again */
    939  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_XY, 0);
    940   1.7  macallan 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_DOTCLOCK);
    941   1.7  macallan 	d |= (1 << CRMFB_DOTCLOCK_CLKRUN_SHIFT);
    942   1.7  macallan 	crmfb_write_reg(sc, CRMFB_DOTCLOCK, d);
    943   1.7  macallan 
    944  1.10    sekiya 	/* turn off sync-on-green */
    945  1.10    sekiya 
    946  1.27      matt 	wantsync = arcbios_GetEnvironmentVariable("SyncOnGreen");
    947  1.10    sekiya 	if ( (wantsync != NULL) && (wantsync[0] == 'n') ) {
    948  1.15  macallan 		d = ( 1 << CRMFB_VT_FLAGS_SYNC_LOW_LSB) &
    949  1.15  macallan 		    CRMFB_REG_MASK(CRMFB_VT_FLAGS_SYNC_LOW_MSB,
    950  1.15  macallan 		    CRMFB_VT_FLAGS_SYNC_LOW_LSB);
    951  1.10    sekiya 		crmfb_write_reg(sc, CRMFB_VT_FLAGS, d);
    952  1.10    sekiya 	}
    953  1.10    sekiya 
    954   1.7  macallan 	sc->sc_depth = depth;
    955  1.11  macallan 
    956  1.11  macallan 	/* finally set up the drawing engine's TLB A */
    957  1.11  macallan 	v = (DMAADDR(sc->sc_dma) >> 16) & 0xffff;
    958  1.11  macallan 	tlbptr = 0;
    959  1.15  macallan 	tx = ((sc->sc_width + (tile_width - 1)) & ~(tile_width - 1)) /
    960  1.15  macallan 	    tile_width;
    961  1.14  macallan 
    962  1.32  macallan 	DPRINTF("tx: %d\n", tx);
    963  1.21  macallan 
    964  1.21  macallan 	for (i = 0; i < 16; i++) {
    965  1.11  macallan 		reg = 0;
    966  1.11  macallan 		shift = 64;
    967  1.21  macallan 		lptr = 0;
    968  1.11  macallan 		for (j = 0; j < tx; j++) {
    969  1.11  macallan 			shift -= 16;
    970  1.11  macallan 			reg |= (((uint64_t)(v | 0x8000)) << shift);
    971  1.11  macallan 			if (shift == 0) {
    972  1.11  macallan 				shift = 64;
    973  1.11  macallan 				bus_space_write_8(sc->sc_iot, sc->sc_reh,
    974  1.21  macallan 				    CRIME_RE_TLB_A + tlbptr + lptr,
    975  1.15  macallan 				    reg);
    976  1.33    plunky 				DPRINTF("%04x: %016"PRIx64"\n", tlbptr + lptr, reg);
    977  1.21  macallan 				reg = 0;
    978  1.21  macallan 				lptr += 8;
    979  1.11  macallan 			}
    980  1.11  macallan 			v++;
    981  1.11  macallan 		}
    982  1.11  macallan 		if (shift != 64) {
    983  1.11  macallan 			bus_space_write_8(sc->sc_iot, sc->sc_reh,
    984  1.21  macallan 			    CRIME_RE_TLB_A + tlbptr + lptr, reg);
    985  1.33    plunky 			DPRINTF("%04x: %016"PRIx64"\n", tlbptr + lptr, reg);
    986  1.11  macallan 		}
    987  1.11  macallan 		tlbptr += 32;
    988  1.11  macallan 	}
    989  1.21  macallan 	sc->sc_scratch = (char *)KERNADDR(sc->sc_dma) + (0xf0000 * tx);
    990  1.11  macallan 
    991  1.21  macallan 	/* now put the last 64kB into the 1st linear TLB */
    992  1.21  macallan 	page = (sc->sc_linear >> 12) | 0x80000000;
    993  1.21  macallan 	tlbptr = 0;
    994  1.21  macallan 	for (i = 0; i < 8; i++) {
    995  1.21  macallan 		reg = ((uint64_t)page << 32) | (page + 1);
    996  1.21  macallan 		bus_space_write_8(sc->sc_iot, sc->sc_reh,
    997  1.21  macallan 		    CRIME_RE_LINEAR_A + tlbptr, reg);
    998  1.21  macallan 		page += 2;
    999  1.21  macallan 		tlbptr += 8;
   1000  1.21  macallan 	}
   1001  1.11  macallan 	wbflush();
   1002  1.11  macallan 
   1003  1.11  macallan 	/* do some very basic engine setup */
   1004  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_CLIPMODE, 0);
   1005  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_WINOFFSET_SRC, 0);
   1006  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_WINOFFSET_DST, 0);
   1007  1.15  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_PLANEMASK,
   1008  1.15  macallan 	    0xffffffff);
   1009  1.11  macallan 
   1010  1.11  macallan 	bus_space_write_8(sc->sc_iot, sc->sc_reh, 0x20, 0);
   1011  1.11  macallan 	bus_space_write_8(sc->sc_iot, sc->sc_reh, 0x28, 0);
   1012  1.11  macallan 	bus_space_write_8(sc->sc_iot, sc->sc_reh, 0x30, 0);
   1013  1.11  macallan 	bus_space_write_8(sc->sc_iot, sc->sc_reh, 0x38, 0);
   1014  1.11  macallan 	bus_space_write_8(sc->sc_iot, sc->sc_reh, 0x40, 0);
   1015  1.11  macallan 
   1016  1.11  macallan 	switch (depth) {
   1017  1.11  macallan 		case 8:
   1018  1.11  macallan 			mode = DE_MODE_TLB_A | DE_MODE_BUFDEPTH_8 |
   1019  1.11  macallan 			    DE_MODE_TYPE_CI | DE_MODE_PIXDEPTH_8;
   1020  1.34  macallan 			sc->sc_mte_mode = MTE_MODE_DST_ECC |
   1021  1.34  macallan 			    (MTE_TLB_A << MTE_DST_TLB_SHIFT) |
   1022  1.34  macallan 			    (MTE_TLB_A << MTE_SRC_TLB_SHIFT) |
   1023  1.34  macallan 			    (MTE_DEPTH_8 << MTE_DEPTH_SHIFT);
   1024  1.34  macallan 			sc->sc_mte_x_shift = 0;
   1025  1.11  macallan 			break;
   1026  1.11  macallan 		case 16:
   1027  1.11  macallan 			mode = DE_MODE_TLB_A | DE_MODE_BUFDEPTH_16 |
   1028  1.34  macallan 			    DE_MODE_TYPE_RGBA | DE_MODE_PIXDEPTH_16;
   1029  1.34  macallan 			sc->sc_mte_mode = MTE_MODE_DST_ECC |
   1030  1.34  macallan 			    (MTE_TLB_A << MTE_DST_TLB_SHIFT) |
   1031  1.34  macallan 			    (MTE_TLB_A << MTE_SRC_TLB_SHIFT) |
   1032  1.34  macallan 			    (MTE_DEPTH_16 << MTE_DEPTH_SHIFT);
   1033  1.34  macallan 			sc->sc_mte_x_shift = 1;
   1034  1.14  macallan 			break;
   1035  1.11  macallan 		case 32:
   1036  1.11  macallan 			mode = DE_MODE_TLB_A | DE_MODE_BUFDEPTH_32 |
   1037  1.11  macallan 			    DE_MODE_TYPE_RGBA | DE_MODE_PIXDEPTH_32;
   1038  1.14  macallan 			break;
   1039  1.34  macallan 			sc->sc_mte_mode = MTE_MODE_DST_ECC |
   1040  1.34  macallan 			    (MTE_TLB_A << MTE_DST_TLB_SHIFT) |
   1041  1.34  macallan 			    (MTE_TLB_A << MTE_SRC_TLB_SHIFT) |
   1042  1.34  macallan 			    (MTE_DEPTH_32 << MTE_DEPTH_SHIFT);
   1043  1.34  macallan 			sc->sc_mte_x_shift = 2;
   1044  1.11  macallan 		default:
   1045  1.11  macallan 			panic("%s: unsuported colour depth %d\n", __func__,
   1046  1.11  macallan 			    depth);
   1047  1.11  macallan 	}
   1048  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_MODE_DST, mode);
   1049  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_MODE_SRC, mode);
   1050  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_XFER_STEP_X, 1);
   1051  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_XFER_STEP_Y, 1);
   1052  1.15  macallan 
   1053  1.15  macallan 	/* initialize memory transfer engine */
   1054  1.15  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_MODE,
   1055  1.34  macallan 	    sc->sc_mte_mode | MTE_MODE_COPY);
   1056  1.18  macallan 	sc->sc_mte_direction = 1;
   1057  1.16  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_DST_Y_STEP, 1);
   1058  1.16  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_SRC_Y_STEP, 1);
   1059  1.15  macallan 
   1060   1.7  macallan 	return 0;
   1061   1.7  macallan }
   1062   1.7  macallan 
   1063  1.19  macallan static void
   1064  1.18  macallan crmfb_set_mte_direction(struct crmfb_softc *sc, int dir)
   1065  1.18  macallan {
   1066  1.18  macallan 	if (dir == sc->sc_mte_direction)
   1067  1.18  macallan 		return;
   1068  1.18  macallan 
   1069  1.18  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_DST_Y_STEP, dir);
   1070  1.18  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_SRC_Y_STEP, dir);
   1071  1.20  macallan 	sc->sc_mte_direction = dir;
   1072  1.18  macallan }
   1073  1.18  macallan 
   1074   1.7  macallan static void
   1075   1.7  macallan crmfb_setup_palette(struct crmfb_softc *sc)
   1076   1.7  macallan {
   1077   1.7  macallan 	int i;
   1078   1.7  macallan 
   1079   1.7  macallan 	for (i = 0; i < 256; i++) {
   1080   1.7  macallan 		crmfb_set_palette(sc, i, rasops_cmap[(i * 3) + 2],
   1081   1.7  macallan 		    rasops_cmap[(i * 3) + 1], rasops_cmap[(i * 3) + 0]);
   1082   1.7  macallan 		sc->sc_cmap_red[i] = rasops_cmap[(i * 3) + 2];
   1083   1.7  macallan 		sc->sc_cmap_green[i] = rasops_cmap[(i * 3) + 1];
   1084   1.7  macallan 		sc->sc_cmap_blue[i] = rasops_cmap[(i * 3) + 0];
   1085   1.7  macallan 	}
   1086   1.7  macallan }
   1087  1.11  macallan 
   1088  1.11  macallan static inline void
   1089  1.11  macallan crmfb_wait_idle(struct crmfb_softc *sc)
   1090  1.11  macallan {
   1091  1.11  macallan 	int i = 0;
   1092  1.11  macallan 
   1093  1.11  macallan 	do {
   1094  1.11  macallan 		i++;
   1095  1.11  macallan 	} while (((bus_space_read_4(sc->sc_iot, sc->sc_reh, CRIME_DE_STATUS) &
   1096  1.11  macallan 		   CRIME_DE_IDLE) == 0) && (i < 100000000));
   1097  1.11  macallan 	if (i >= 100000000)
   1098  1.11  macallan 		aprint_error("crmfb_wait_idle() timed out\n");
   1099  1.11  macallan }
   1100  1.11  macallan 
   1101  1.11  macallan static void
   1102  1.11  macallan crmfb_fill_rect(struct crmfb_softc *sc, int x, int y, int width, int height,
   1103  1.11  macallan     uint32_t colour)
   1104  1.11  macallan {
   1105  1.34  macallan 	int rxa, rxe;
   1106  1.34  macallan 
   1107  1.34  macallan 	rxa = x << sc->sc_mte_x_shift;
   1108  1.34  macallan 	rxe = ((x + width) << sc->sc_mte_x_shift) - 1;
   1109  1.11  macallan 	crmfb_wait_idle(sc);
   1110  1.18  macallan 	crmfb_set_mte_direction(sc, 1);
   1111  1.17  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_MODE,
   1112  1.34  macallan 	    sc->sc_mte_mode | 0);
   1113  1.17  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_BG, colour);
   1114  1.17  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_DST0,
   1115  1.34  macallan 	    (rxa << 16) | (y & 0xffff));
   1116  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh,
   1117  1.17  macallan 	    CRIME_MTE_DST1 | CRIME_DE_START,
   1118  1.34  macallan 	    (rxe << 16) | ((y + height - 1) & 0xffff));
   1119  1.11  macallan }
   1120  1.11  macallan 
   1121  1.11  macallan static void
   1122  1.11  macallan crmfb_bitblt(struct crmfb_softc *sc, int xs, int ys, int xd, int yd,
   1123  1.11  macallan     int wi, int he, uint32_t rop)
   1124  1.11  macallan {
   1125  1.11  macallan 	uint32_t prim = DE_PRIM_RECTANGLE;
   1126  1.11  macallan 	int rxa, rya, rxe, rye, rxs, rys;
   1127  1.11  macallan 	crmfb_wait_idle(sc);
   1128  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_DRAWMODE,
   1129  1.11  macallan 	    DE_DRAWMODE_PLANEMASK | DE_DRAWMODE_BYTEMASK | DE_DRAWMODE_ROP |
   1130  1.11  macallan 	    DE_DRAWMODE_XFER_EN);
   1131  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_ROP, rop);
   1132  1.11  macallan 	if (xs < xd) {
   1133  1.11  macallan 		prim |= DE_PRIM_RL;
   1134  1.11  macallan 		rxe = xd;
   1135  1.11  macallan 		rxa = xd + wi - 1;
   1136  1.11  macallan 		rxs = xs + wi - 1;
   1137  1.11  macallan 	} else {
   1138  1.11  macallan 		prim |= DE_PRIM_LR;
   1139  1.11  macallan 		rxe = xd + wi - 1;
   1140  1.11  macallan 		rxa = xd;
   1141  1.11  macallan 		rxs = xs;
   1142  1.11  macallan 	}
   1143  1.11  macallan 	if (ys < yd) {
   1144  1.11  macallan 		prim |= DE_PRIM_BT;
   1145  1.11  macallan 		rye = yd;
   1146  1.11  macallan 		rya = yd + he - 1;
   1147  1.11  macallan 		rys = ys + he - 1;
   1148  1.11  macallan 	} else {
   1149  1.11  macallan 		prim |= DE_PRIM_TB;
   1150  1.11  macallan 		rye = yd + he - 1;
   1151  1.11  macallan 		rya = yd;
   1152  1.11  macallan 		rys = ys;
   1153  1.11  macallan 	}
   1154  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_PRIMITIVE, prim);
   1155  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_XFER_ADDR_SRC,
   1156  1.11  macallan 	    (rxs << 16) | (rys & 0xffff));
   1157  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_X_VERTEX_0,
   1158  1.11  macallan 	    (rxa << 16) | (rya & 0xffff));
   1159  1.11  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh,
   1160  1.11  macallan 	    CRIME_DE_X_VERTEX_1 | CRIME_DE_START,
   1161  1.11  macallan 	    (rxe << 16) | (rye & 0xffff));
   1162  1.11  macallan }
   1163  1.11  macallan 
   1164  1.15  macallan static void
   1165  1.15  macallan crmfb_scroll(struct crmfb_softc *sc, int xs, int ys, int xd, int yd,
   1166  1.15  macallan     int wi, int he)
   1167  1.15  macallan {
   1168  1.15  macallan 	int rxa, rya, rxe, rye, rxd, ryd, rxde, ryde;
   1169  1.15  macallan 
   1170  1.34  macallan 	rxa = xs << sc->sc_mte_x_shift;
   1171  1.34  macallan 	rxd = xd << sc->sc_mte_x_shift;
   1172  1.34  macallan 	rxe = ((xs + wi) << sc->sc_mte_x_shift) - 1;
   1173  1.34  macallan 	rxde = ((xd + wi) << sc->sc_mte_x_shift) - 1;
   1174  1.16  macallan 
   1175  1.15  macallan 	crmfb_wait_idle(sc);
   1176  1.16  macallan 
   1177  1.17  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_MODE,
   1178  1.34  macallan 	    sc->sc_mte_mode | MTE_MODE_COPY);
   1179  1.17  macallan 
   1180  1.15  macallan 	if (ys < yd) {
   1181  1.15  macallan 		/* bottom to top */
   1182  1.15  macallan 		rye = ys;
   1183  1.15  macallan 		rya = ys + he - 1;
   1184  1.15  macallan 		ryd = yd + he - 1;
   1185  1.15  macallan 		ryde = yd;
   1186  1.18  macallan 		crmfb_set_mte_direction(sc, -1);
   1187  1.15  macallan 	} else {
   1188  1.15  macallan 		/* top to bottom */
   1189  1.15  macallan 		rye = ys + he - 1;
   1190  1.15  macallan 		rya = ys;
   1191  1.15  macallan 		ryd = yd;
   1192  1.15  macallan 		ryde = yd + he - 1;
   1193  1.18  macallan 		crmfb_set_mte_direction(sc, 1);
   1194  1.15  macallan 	}
   1195  1.15  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_SRC0,
   1196  1.15  macallan 	    (rxa << 16) | rya);
   1197  1.15  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_SRC1,
   1198  1.15  macallan 	    (rxe << 16) | rye);
   1199  1.15  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh,
   1200  1.15  macallan 	    CRIME_MTE_DST0,
   1201  1.15  macallan 	    (rxd << 16) | ryd);
   1202  1.15  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_MTE_DST1 |
   1203  1.15  macallan 	    CRIME_DE_START,
   1204  1.15  macallan 	    (rxde << 16) | ryde);
   1205  1.15  macallan }
   1206  1.15  macallan 
   1207  1.11  macallan static void
   1208  1.11  macallan crmfb_copycols(void *cookie, int row, int srccol, int dstcol, int ncols)
   1209  1.11  macallan {
   1210  1.11  macallan 	struct rasops_info *ri = cookie;
   1211  1.11  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1212  1.11  macallan 	int32_t xs, xd, y, width, height;
   1213  1.11  macallan 
   1214  1.11  macallan 	xs = ri->ri_xorigin + ri->ri_font->fontwidth * srccol;
   1215  1.11  macallan 	xd = ri->ri_xorigin + ri->ri_font->fontwidth * dstcol;
   1216  1.11  macallan 	y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1217  1.11  macallan 	width = ri->ri_font->fontwidth * ncols;
   1218  1.11  macallan 	height = ri->ri_font->fontheight;
   1219  1.11  macallan 	crmfb_bitblt(scr->scr_cookie, xs, y, xd, y, width, height, 3);
   1220  1.11  macallan }
   1221  1.11  macallan 
   1222  1.11  macallan static void
   1223  1.11  macallan crmfb_erasecols(void *cookie, int row, int startcol, int ncols, long fillattr)
   1224  1.11  macallan {
   1225  1.11  macallan 	struct rasops_info *ri = cookie;
   1226  1.11  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1227  1.11  macallan 	int32_t x, y, width, height, bg;
   1228  1.11  macallan 
   1229  1.11  macallan 	x = ri->ri_xorigin + ri->ri_font->fontwidth * startcol;
   1230  1.11  macallan 	y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1231  1.11  macallan 	width = ri->ri_font->fontwidth * ncols;
   1232  1.11  macallan 	height = ri->ri_font->fontheight;
   1233  1.11  macallan 	bg = (uint32_t)ri->ri_devcmap[(fillattr >> 16) & 0xff];
   1234  1.11  macallan 	crmfb_fill_rect(scr->scr_cookie, x, y, width, height, bg);
   1235  1.11  macallan }
   1236  1.11  macallan 
   1237  1.11  macallan static void
   1238  1.11  macallan crmfb_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
   1239  1.11  macallan {
   1240  1.11  macallan 	struct rasops_info *ri = cookie;
   1241  1.11  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1242  1.11  macallan 	int32_t x, ys, yd, width, height;
   1243  1.11  macallan 
   1244  1.11  macallan 	x = ri->ri_xorigin;
   1245  1.11  macallan 	ys = ri->ri_yorigin + ri->ri_font->fontheight * srcrow;
   1246  1.11  macallan 	yd = ri->ri_yorigin + ri->ri_font->fontheight * dstrow;
   1247  1.11  macallan 	width = ri->ri_emuwidth;
   1248  1.11  macallan 	height = ri->ri_font->fontheight * nrows;
   1249  1.15  macallan 
   1250  1.16  macallan 	crmfb_scroll(scr->scr_cookie, x, ys, x, yd, width, height);
   1251  1.11  macallan }
   1252  1.11  macallan 
   1253  1.11  macallan static void
   1254  1.11  macallan crmfb_eraserows(void *cookie, int row, int nrows, long fillattr)
   1255  1.11  macallan {
   1256  1.11  macallan 	struct rasops_info *ri = cookie;
   1257  1.11  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1258  1.11  macallan 	int32_t x, y, width, height, bg;
   1259  1.11  macallan 
   1260  1.11  macallan 	if ((row == 0) && (nrows == ri->ri_rows)) {
   1261  1.11  macallan 		x = y = 0;
   1262  1.11  macallan 		width = ri->ri_width;
   1263  1.11  macallan 		height = ri->ri_height;
   1264  1.11  macallan 	} else {
   1265  1.11  macallan 		x = ri->ri_xorigin;
   1266  1.11  macallan 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
   1267  1.11  macallan 		width = ri->ri_emuwidth;
   1268  1.11  macallan 		height = ri->ri_font->fontheight * nrows;
   1269  1.11  macallan 	}
   1270  1.11  macallan 	bg = (uint32_t)ri->ri_devcmap[(fillattr >> 16) & 0xff];
   1271  1.11  macallan 	crmfb_fill_rect(scr->scr_cookie, x, y, width, height, bg);
   1272  1.11  macallan }
   1273  1.11  macallan 
   1274  1.11  macallan static void
   1275  1.11  macallan crmfb_cursor(void *cookie, int on, int row, int col)
   1276  1.11  macallan {
   1277  1.11  macallan 	struct rasops_info *ri = cookie;
   1278  1.11  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1279  1.11  macallan 	struct crmfb_softc *sc = scr->scr_cookie;
   1280  1.11  macallan 	int x, y, wi,he;
   1281  1.11  macallan 
   1282  1.11  macallan 	wi = ri->ri_font->fontwidth;
   1283  1.11  macallan 	he = ri->ri_font->fontheight;
   1284  1.11  macallan 
   1285  1.11  macallan 	if (ri->ri_flg & RI_CURSOR) {
   1286  1.11  macallan 		x = ri->ri_ccol * wi + ri->ri_xorigin;
   1287  1.11  macallan 		y = ri->ri_crow * he + ri->ri_yorigin;
   1288  1.11  macallan 		crmfb_bitblt(sc, x, y, x, y, wi, he, 12);
   1289  1.11  macallan 		ri->ri_flg &= ~RI_CURSOR;
   1290  1.11  macallan 	}
   1291  1.11  macallan 
   1292  1.11  macallan 	ri->ri_crow = row;
   1293  1.11  macallan 	ri->ri_ccol = col;
   1294  1.11  macallan 
   1295  1.11  macallan 	if (on)
   1296  1.11  macallan 	{
   1297  1.11  macallan 		x = ri->ri_ccol * wi + ri->ri_xorigin;
   1298  1.11  macallan 		y = ri->ri_crow * he + ri->ri_yorigin;
   1299  1.11  macallan 		crmfb_bitblt(sc, x, y, x, y, wi, he, 12);
   1300  1.11  macallan 		ri->ri_flg |= RI_CURSOR;
   1301  1.11  macallan 	}
   1302  1.11  macallan }
   1303  1.11  macallan 
   1304  1.11  macallan static void
   1305  1.11  macallan crmfb_putchar(void *cookie, int row, int col, u_int c, long attr)
   1306  1.11  macallan {
   1307  1.11  macallan 	struct rasops_info *ri = cookie;
   1308  1.11  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1309  1.11  macallan 	struct crmfb_softc *sc = scr->scr_cookie;
   1310  1.28  macallan 	struct wsdisplay_font *font = PICK_FONT(ri, c);
   1311  1.28  macallan 	uint32_t bg, fg;
   1312  1.28  macallan 	int x, y, wi, he, i, uc;
   1313  1.28  macallan 	uint8_t *fd8;
   1314  1.28  macallan 	uint16_t *fd16;
   1315  1.28  macallan 	void *fd;
   1316  1.11  macallan 
   1317  1.28  macallan 	wi = font->fontwidth;
   1318  1.28  macallan 	he = font->fontheight;
   1319  1.11  macallan 
   1320  1.11  macallan 	x = ri->ri_xorigin + col * wi;
   1321  1.11  macallan 	y = ri->ri_yorigin + row * he;
   1322  1.11  macallan 
   1323  1.17  macallan 	bg = ri->ri_devcmap[(attr >> 16) & 0xff];
   1324  1.28  macallan 	fg = ri->ri_devcmap[(attr >> 24) & 0xff];
   1325  1.28  macallan 	uc = c - font->firstchar;
   1326  1.28  macallan 	fd = (uint8_t *)font->data + uc * ri->ri_fontscale;
   1327  1.11  macallan 	if (c == 0x20) {
   1328  1.11  macallan 		crmfb_fill_rect(sc, x, y, wi, he, bg);
   1329  1.11  macallan 	} else {
   1330  1.28  macallan 		crmfb_wait_idle(sc);
   1331  1.28  macallan 		/* setup */
   1332  1.28  macallan 		bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_DRAWMODE,
   1333  1.28  macallan 		    DE_DRAWMODE_PLANEMASK | DE_DRAWMODE_BYTEMASK |
   1334  1.28  macallan 		    DE_DRAWMODE_ROP |
   1335  1.28  macallan 		    DE_DRAWMODE_OPAQUE_STIP | DE_DRAWMODE_POLY_STIP);
   1336  1.34  macallan 		wbflush();
   1337  1.34  macallan 		bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_ROP, 3);
   1338  1.34  macallan 		bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_FG, fg);
   1339  1.34  macallan 		bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_BG, bg);
   1340  1.28  macallan 		bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_PRIMITIVE,
   1341  1.28  macallan 		    DE_PRIM_RECTANGLE | DE_PRIM_LR | DE_PRIM_TB);
   1342  1.28  macallan 		bus_space_write_4(sc->sc_iot, sc->sc_reh, CRIME_DE_STIPPLE_MODE,
   1343  1.28  macallan 		    0x001f0000);
   1344  1.28  macallan 		/* now let's feed the engine */
   1345  1.28  macallan 		if (font->stride == 1) {
   1346  1.28  macallan 			/* shovel in 8 bit quantities */
   1347  1.28  macallan 			fd8 = fd;
   1348  1.28  macallan 			for (i = 0; i < he; i++) {
   1349  1.28  macallan 				/*
   1350  1.28  macallan 				 * the pipeline should be long enough to
   1351  1.28  macallan 				 * draw any character without having to wait
   1352  1.28  macallan 				 */
   1353  1.28  macallan 				bus_space_write_4(sc->sc_iot, sc->sc_reh,
   1354  1.28  macallan 				    CRIME_DE_STIPPLE_PAT, *fd8 << 24);
   1355  1.28  macallan 				bus_space_write_4(sc->sc_iot, sc->sc_reh,
   1356  1.28  macallan 				    CRIME_DE_X_VERTEX_0, (x << 16) | y);
   1357  1.28  macallan 				bus_space_write_4(sc->sc_iot, sc->sc_reh,
   1358  1.28  macallan 				    CRIME_DE_X_VERTEX_1 | CRIME_DE_START,
   1359  1.28  macallan 				    ((x + wi) << 16) | y);
   1360  1.28  macallan 				y++;
   1361  1.28  macallan 				fd8++;
   1362  1.28  macallan 			}
   1363  1.28  macallan 		} else if (font->stride == 2) {
   1364  1.28  macallan 			/* shovel in 16 bit quantities */
   1365  1.28  macallan 			fd16 = fd;
   1366  1.28  macallan 			for (i = 0; i < he; i++) {
   1367  1.28  macallan 				/*
   1368  1.28  macallan 				 * the pipeline should be long enough to
   1369  1.28  macallan 				 * draw any character without having to wait
   1370  1.28  macallan 				 */
   1371  1.28  macallan 				bus_space_write_4(sc->sc_iot, sc->sc_reh,
   1372  1.28  macallan 				    CRIME_DE_STIPPLE_PAT, *fd16 << 16);
   1373  1.28  macallan 				bus_space_write_4(sc->sc_iot, sc->sc_reh,
   1374  1.28  macallan 				    CRIME_DE_X_VERTEX_0, (x << 16) | y);
   1375  1.28  macallan 				bus_space_write_4(sc->sc_iot, sc->sc_reh,
   1376  1.28  macallan 				    CRIME_DE_X_VERTEX_1 | CRIME_DE_START,
   1377  1.28  macallan 				    ((x + wi) << 16) | y);
   1378  1.28  macallan 				y++;
   1379  1.28  macallan 				fd16++;
   1380  1.28  macallan 			}
   1381  1.28  macallan 		}
   1382  1.11  macallan 	}
   1383  1.11  macallan }
   1384  1.30  macallan 
   1385  1.30  macallan static void
   1386  1.30  macallan crmfb_setup_ddc(struct crmfb_softc *sc)
   1387  1.30  macallan {
   1388  1.30  macallan 	int i;
   1389  1.30  macallan 	char edid_data[128];
   1390  1.30  macallan 
   1391  1.30  macallan 	memset(edid_data, 0, 128);
   1392  1.30  macallan 	sc->sc_i2c.ic_cookie = sc;
   1393  1.30  macallan 	sc->sc_i2c.ic_acquire_bus = crmfb_i2c_acquire_bus;
   1394  1.30  macallan 	sc->sc_i2c.ic_release_bus = crmfb_i2c_release_bus;
   1395  1.30  macallan 	sc->sc_i2c.ic_send_start = crmfb_i2c_send_start;
   1396  1.30  macallan 	sc->sc_i2c.ic_send_stop = crmfb_i2c_send_stop;
   1397  1.30  macallan 	sc->sc_i2c.ic_initiate_xfer = crmfb_i2c_initiate_xfer;
   1398  1.30  macallan 	sc->sc_i2c.ic_read_byte = crmfb_i2c_read_byte;
   1399  1.30  macallan 	sc->sc_i2c.ic_write_byte = crmfb_i2c_write_byte;
   1400  1.30  macallan 	sc->sc_i2c.ic_exec = NULL;
   1401  1.30  macallan 	i = 0;
   1402  1.30  macallan 	while (edid_data[1] == 0 && i++ < 10)
   1403  1.30  macallan 		ddc_read_edid(&sc->sc_i2c, edid_data, 128);
   1404  1.30  macallan 	if (i > 1)
   1405  1.30  macallan 		aprint_debug_dev(sc->sc_dev,
   1406  1.30  macallan 		    "had to try %d times to get EDID data\n", i);
   1407  1.30  macallan 	if (i < 11) {
   1408  1.32  macallan 		edid_parse(edid_data, &sc->sc_edid_info);
   1409  1.32  macallan 		edid_print(&sc->sc_edid_info);
   1410  1.30  macallan 	}
   1411  1.30  macallan }
   1412  1.30  macallan 
   1413  1.30  macallan /* I2C bitbanging */
   1414  1.30  macallan static void
   1415  1.30  macallan crmfb_i2cbb_set_bits(void *cookie, uint32_t bits)
   1416  1.30  macallan {
   1417  1.30  macallan 	struct crmfb_softc *sc = cookie;
   1418  1.30  macallan 
   1419  1.30  macallan 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, CRMFB_I2C_VGA, bits ^ 3);
   1420  1.30  macallan }
   1421  1.30  macallan 
   1422  1.30  macallan static void
   1423  1.30  macallan crmfb_i2cbb_set_dir(void *cookie, uint32_t dir)
   1424  1.30  macallan {
   1425  1.30  macallan 
   1426  1.30  macallan 	/* Nothing to do */
   1427  1.30  macallan }
   1428  1.30  macallan 
   1429  1.30  macallan static uint32_t
   1430  1.30  macallan crmfb_i2cbb_read(void *cookie)
   1431  1.30  macallan {
   1432  1.30  macallan 	struct crmfb_softc *sc = cookie;
   1433  1.30  macallan 
   1434  1.30  macallan 	return bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_I2C_VGA) ^ 3;
   1435  1.30  macallan }
   1436  1.30  macallan 
   1437  1.30  macallan /* higher level I2C stuff */
   1438  1.30  macallan static int
   1439  1.30  macallan crmfb_i2c_acquire_bus(void *cookie, int flags)
   1440  1.30  macallan {
   1441  1.30  macallan 
   1442  1.30  macallan 	/* private bus */
   1443  1.30  macallan 	return 0;
   1444  1.30  macallan }
   1445  1.30  macallan 
   1446  1.30  macallan static void
   1447  1.30  macallan crmfb_i2c_release_bus(void *cookie, int flags)
   1448  1.30  macallan {
   1449  1.30  macallan 
   1450  1.30  macallan 	/* private bus */
   1451  1.30  macallan }
   1452  1.30  macallan 
   1453  1.30  macallan static int
   1454  1.30  macallan crmfb_i2c_send_start(void *cookie, int flags)
   1455  1.30  macallan {
   1456  1.30  macallan 
   1457  1.30  macallan 	return i2c_bitbang_send_start(cookie, flags, &crmfb_i2cbb_ops);
   1458  1.30  macallan }
   1459  1.30  macallan 
   1460  1.30  macallan static int
   1461  1.30  macallan crmfb_i2c_send_stop(void *cookie, int flags)
   1462  1.30  macallan {
   1463  1.30  macallan 
   1464  1.30  macallan 	return i2c_bitbang_send_stop(cookie, flags, &crmfb_i2cbb_ops);
   1465  1.30  macallan }
   1466  1.30  macallan 
   1467  1.30  macallan static int
   1468  1.30  macallan crmfb_i2c_initiate_xfer(void *cookie, i2c_addr_t addr, int flags)
   1469  1.30  macallan {
   1470  1.30  macallan 
   1471  1.30  macallan 	return i2c_bitbang_initiate_xfer(cookie, addr, flags,
   1472  1.30  macallan 	    &crmfb_i2cbb_ops);
   1473  1.30  macallan }
   1474  1.30  macallan 
   1475  1.30  macallan static int
   1476  1.30  macallan crmfb_i2c_read_byte(void *cookie, uint8_t *valp, int flags)
   1477  1.30  macallan {
   1478  1.30  macallan 
   1479  1.30  macallan 	return i2c_bitbang_read_byte(cookie, valp, flags, &crmfb_i2cbb_ops);
   1480  1.30  macallan }
   1481  1.30  macallan 
   1482  1.30  macallan static int
   1483  1.30  macallan crmfb_i2c_write_byte(void *cookie, uint8_t val, int flags)
   1484  1.30  macallan {
   1485  1.30  macallan 
   1486  1.30  macallan 	return i2c_bitbang_write_byte(cookie, val, flags, &crmfb_i2cbb_ops);
   1487  1.30  macallan }
   1488  1.32  macallan 
   1489  1.32  macallan /* mode setting stuff */
   1490  1.32  macallan static uint32_t
   1491  1.32  macallan calc_pll(int f_out)
   1492  1.32  macallan {
   1493  1.32  macallan 	uint32_t ret;
   1494  1.32  macallan 	int f_in = 20000;	/* 20MHz in */
   1495  1.32  macallan 	int M, N, P;
   1496  1.32  macallan 	int error, div, best = 9999999;
   1497  1.32  macallan 	int ff1, ff2;
   1498  1.32  macallan 	int MM = 0, NN = 0, PP = 0, ff = 0;
   1499  1.32  macallan 
   1500  1.32  macallan 	/* f_out = M * f_in / (N * (1 << P) */
   1501  1.32  macallan 
   1502  1.32  macallan 	for (P = 0; P < 4; P++) {
   1503  1.32  macallan 		for (N = 64; N > 0; N--) {
   1504  1.32  macallan 			div = N * (1 << P);
   1505  1.32  macallan 			M = f_out * div / f_in;
   1506  1.32  macallan 			if ((M < 257) && (M > 100)) {
   1507  1.32  macallan 				ff1 = M * f_in / div;
   1508  1.32  macallan 				ff2 = (M + 1) * f_in / div;
   1509  1.32  macallan 				error = abs(ff1 - f_out);
   1510  1.32  macallan 				if (error < best) {
   1511  1.32  macallan 					MM = M;
   1512  1.32  macallan 					NN = N;
   1513  1.32  macallan 					PP = P;
   1514  1.32  macallan 					ff = ff1;
   1515  1.32  macallan 					best = error;
   1516  1.32  macallan 				}
   1517  1.32  macallan 				error = abs(ff2 - f_out);
   1518  1.32  macallan 				if ((error < best) && ( M < 256)){
   1519  1.32  macallan 					MM = M + 1;
   1520  1.32  macallan 					NN = N;
   1521  1.32  macallan 					PP = P;
   1522  1.32  macallan 					ff = ff2;
   1523  1.32  macallan 					best = error;
   1524  1.32  macallan 				}
   1525  1.32  macallan 			}
   1526  1.32  macallan 		}
   1527  1.32  macallan 	}
   1528  1.32  macallan 	DPRINTF("%d: M %d N %d P %d -> %d\n", f_out, MM, NN, PP, ff);
   1529  1.32  macallan 	/* now shove the parameters into the register's format */
   1530  1.32  macallan 	ret = (MM - 1) | ((NN - 1) << 8) | (P << 14);
   1531  1.32  macallan 	return ret;
   1532  1.32  macallan }
   1533  1.32  macallan 
   1534  1.32  macallan static int
   1535  1.32  macallan crmfb_set_mode(struct crmfb_softc *sc, const struct videomode *mode)
   1536  1.32  macallan {
   1537  1.32  macallan 	uint32_t d, dc;
   1538  1.32  macallan 	int tmp, diff;
   1539  1.32  macallan 
   1540  1.34  macallan 	switch (mode->hdisplay % 32) {
   1541  1.34  macallan 		case 0:
   1542  1.34  macallan 			sc->sc_console_depth = 8;
   1543  1.34  macallan 			break;
   1544  1.34  macallan 		case 16:
   1545  1.34  macallan 			sc->sc_console_depth = 16;
   1546  1.34  macallan 			break;
   1547  1.34  macallan 		case 8:
   1548  1.34  macallan 		case 24:
   1549  1.34  macallan 			sc->sc_console_depth = 32;
   1550  1.34  macallan 			break;
   1551  1.34  macallan 		default:
   1552  1.34  macallan 			aprint_error_dev(sc->sc_dev,
   1553  1.34  macallan 			    "hdisplay (%d) is not a multiple of 32\n",
   1554  1.34  macallan 			    mode->hdisplay);
   1555  1.34  macallan 			return FALSE;
   1556  1.32  macallan 	}
   1557  1.34  macallan 	if (mode->dot_clock > 150000) {
   1558  1.34  macallan 		aprint_error_dev(sc->sc_dev,
   1559  1.34  macallan 		    "requested dot clock is too high ( %d MHz )\n",
   1560  1.34  macallan 		    mode->dot_clock / 1000);
   1561  1.32  macallan 		return FALSE;
   1562  1.32  macallan 	}
   1563  1.32  macallan 
   1564  1.32  macallan 	/* disable DMA */
   1565  1.32  macallan 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_OVR_CONTROL);
   1566  1.32  macallan 	d &= ~(1 << CRMFB_OVR_CONTROL_DMAEN_SHIFT);
   1567  1.32  macallan 	crmfb_write_reg(sc, CRMFB_OVR_CONTROL, d);
   1568  1.32  macallan 	DELAY(50000);
   1569  1.32  macallan 	d = bus_space_read_4(sc->sc_iot, sc->sc_ioh, CRMFB_FRM_CONTROL);
   1570  1.32  macallan 	d &= ~(1 << CRMFB_FRM_CONTROL_DMAEN_SHIFT);
   1571  1.32  macallan 	crmfb_write_reg(sc, CRMFB_FRM_CONTROL, d);
   1572  1.32  macallan 	DELAY(50000);
   1573  1.32  macallan 	crmfb_write_reg(sc, CRMFB_DID_CONTROL, d);
   1574  1.32  macallan 	DELAY(50000);
   1575  1.32  macallan 
   1576  1.32  macallan 	if (!crmfb_wait_dma_idle(sc))
   1577  1.32  macallan 		aprint_error("crmfb: crmfb_wait_dma_idle timed out\n");
   1578  1.32  macallan 
   1579  1.32  macallan 	/* ok, now we're good to go */
   1580  1.32  macallan 	dc = calc_pll(mode->dot_clock);
   1581  1.32  macallan 
   1582  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_XY, 1 << CRMFB_VT_XY_FREEZE_SHIFT);
   1583  1.32  macallan 	delay(1000);
   1584  1.32  macallan 
   1585  1.32  macallan 	/* set the dot clock pll but don't start it yet */
   1586  1.32  macallan 	crmfb_write_reg(sc, CRMFB_DOTCLOCK, dc);
   1587  1.32  macallan 	delay(10000);
   1588  1.32  macallan 
   1589  1.32  macallan 	/* pixel counter */
   1590  1.32  macallan 	d = mode->htotal | (mode->vtotal << 12);
   1591  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_XYMAX, d);
   1592  1.32  macallan 
   1593  1.32  macallan 	/* video timings */
   1594  1.32  macallan 	d = mode->vsync_end | (mode->vsync_start << 12);
   1595  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_VSYNC, d);
   1596  1.32  macallan 
   1597  1.32  macallan 	d = mode->hsync_end | (mode->hsync_start << 12);
   1598  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_HSYNC, d);
   1599  1.32  macallan 
   1600  1.32  macallan 	d = mode->vtotal | (mode->vdisplay << 12);
   1601  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_VBLANK, d);
   1602  1.32  macallan 
   1603  1.32  macallan 	d = (mode->htotal - 5) | ((mode->hdisplay - 5) << 12);
   1604  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_HBLANK, d);
   1605  1.32  macallan 
   1606  1.32  macallan 	d = mode->vtotal | (mode->vdisplay << 12);
   1607  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_VCMAP, d);
   1608  1.32  macallan 	d = mode->htotal | (mode->hdisplay << 12);
   1609  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_HCMAP, d);
   1610  1.32  macallan 
   1611  1.32  macallan 	d = 0;
   1612  1.32  macallan 	if (mode->flags & VID_NHSYNC) d |= CRMFB_VT_FLAGS_HDRV_INVERT;
   1613  1.32  macallan 	if (mode->flags & VID_NVSYNC) d |= CRMFB_VT_FLAGS_VDRV_INVERT;
   1614  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_FLAGS, d);
   1615  1.32  macallan 
   1616  1.32  macallan 	diff = -abs(mode->vtotal - mode->vdisplay - 1);
   1617  1.32  macallan 	d = ((uint32_t)diff << 12) & 0x00fff000;
   1618  1.32  macallan 	d |= (mode->htotal - 20);
   1619  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_DID_STARTXY, d);
   1620  1.32  macallan 
   1621  1.32  macallan 	d = ((uint32_t)(diff + 1) << 12) & 0x00fff000;
   1622  1.32  macallan 	d |= (mode->htotal - 54);
   1623  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_CRS_STARTXY, d);
   1624  1.32  macallan 
   1625  1.32  macallan 	d = ((uint32_t)diff << 12) & 0x00fff000;
   1626  1.32  macallan 	d |= (mode->htotal - 4);
   1627  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_VC_STARTXY, d);
   1628  1.32  macallan 
   1629  1.32  macallan 	tmp = mode->htotal - 19;
   1630  1.32  macallan 	d = tmp << 12;
   1631  1.32  macallan 	d |= ((tmp + mode->hdisplay - 2) % mode->htotal);
   1632  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_HPIX_EN, d);
   1633  1.32  macallan 
   1634  1.32  macallan 	d = mode->vdisplay | (mode->vtotal << 12);
   1635  1.32  macallan 	crmfb_write_reg(sc, CRMFB_VT_VPIX_EN, d);
   1636  1.32  macallan 
   1637  1.32  macallan 	sc->sc_width = mode->hdisplay;
   1638  1.32  macallan 	sc->sc_height = mode->vdisplay;
   1639  1.32  macallan 
   1640  1.32  macallan 	return TRUE;
   1641  1.32  macallan }
   1642  1.32  macallan 
   1643