Home | History | Annotate | Line # | Download | only in pci
pm3fb.c revision 1.11
      1  1.11  macallan /* $NetBSD: pm3fb.c,v 1.11 2025/05/25 06:17:37 macallan Exp $ */
      2   1.8    andvar 
      3   1.1  macallan /*
      4   1.1  macallan  * Copyright (c) 2015 Naruaki Etomi
      5   1.1  macallan  * All rights reserved.
      6   1.1  macallan  *
      7   1.1  macallan  * Redistribution and use in source and binary forms, with or without
      8   1.1  macallan  * modification, are permitted provided that the following conditions
      9   1.1  macallan  * are met:
     10   1.1  macallan  * 1. Redistributions of source code must retain the above copyright
     11   1.1  macallan  *    notice, this list of conditions and the following disclaimer.
     12   1.1  macallan  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  macallan  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  macallan  *    documentation and/or other materials provided with the distribution.
     15   1.1  macallan  *
     16   1.1  macallan  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17   1.1  macallan  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18   1.1  macallan  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19   1.1  macallan  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20   1.1  macallan  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     21   1.1  macallan  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     22   1.1  macallan  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     23   1.1  macallan  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     24   1.1  macallan  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     25   1.1  macallan  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26   1.1  macallan  */
     27   1.1  macallan 
     28   1.1  macallan /*
     29   1.1  macallan  * A console driver for Permedia 3 graphics controllers
     30   1.1  macallan  * most of the following was adapted from the xf86-video-glint driver's
     31   1.1  macallan  * pm3_accel.c, pm3_dac.c and pm2fb framebuffer console driver
     32   1.1  macallan  */
     33   1.1  macallan 
     34   1.8    andvar #include <sys/cdefs.h>
     35  1.11  macallan __KERNEL_RCSID(0, "$NetBSD: pm3fb.c,v 1.11 2025/05/25 06:17:37 macallan Exp $");
     36   1.8    andvar 
     37   1.1  macallan #include <sys/param.h>
     38   1.1  macallan #include <sys/systm.h>
     39   1.1  macallan #include <sys/kernel.h>
     40   1.1  macallan #include <sys/device.h>
     41   1.1  macallan #include <sys/lwp.h>
     42   1.1  macallan #include <sys/kauth.h>
     43   1.1  macallan #include <sys/atomic.h>
     44   1.1  macallan 
     45   1.1  macallan #include <dev/videomode/videomode.h>
     46   1.1  macallan 
     47   1.1  macallan #include <dev/pci/pcivar.h>
     48   1.1  macallan #include <dev/pci/pcireg.h>
     49   1.1  macallan #include <dev/pci/pcidevs.h>
     50   1.1  macallan #include <dev/pci/pciio.h>
     51   1.1  macallan #include <dev/pci/pm3reg.h>
     52   1.1  macallan 
     53   1.1  macallan #include <dev/wscons/wsdisplayvar.h>
     54   1.1  macallan #include <dev/wscons/wsconsio.h>
     55   1.1  macallan #include <dev/wsfont/wsfont.h>
     56   1.1  macallan #include <dev/rasops/rasops.h>
     57   1.1  macallan #include <dev/wscons/wsdisplay_vconsvar.h>
     58   1.1  macallan #include <dev/pci/wsdisplay_pci.h>
     59   1.1  macallan 
     60   1.1  macallan #include <dev/i2c/i2cvar.h>
     61   1.1  macallan #include <dev/i2c/i2c_bitbang.h>
     62   1.1  macallan #include <dev/i2c/ddcvar.h>
     63   1.1  macallan #include <dev/videomode/videomode.h>
     64   1.1  macallan #include <dev/videomode/edidvar.h>
     65   1.1  macallan #include <dev/videomode/edidreg.h>
     66   1.1  macallan 
     67   1.1  macallan struct pm3fb_softc {
     68   1.1  macallan 	device_t sc_dev;
     69   1.1  macallan 
     70   1.1  macallan 	pci_chipset_tag_t sc_pc;
     71   1.1  macallan 	pcitag_t sc_pcitag;
     72   1.1  macallan 
     73   1.1  macallan 	bus_space_tag_t sc_memt;
     74   1.1  macallan 	bus_space_tag_t sc_iot;
     75   1.1  macallan 
     76   1.1  macallan 	bus_space_handle_t sc_regh;
     77   1.1  macallan 	bus_addr_t sc_fb, sc_reg;
     78   1.1  macallan 	bus_size_t sc_fbsize, sc_regsize;
     79   1.1  macallan 
     80   1.1  macallan 	int sc_width, sc_height, sc_depth, sc_stride;
     81   1.1  macallan 	int sc_locked;
     82   1.1  macallan 	struct vcons_screen sc_console_screen;
     83   1.1  macallan 	struct wsscreen_descr sc_defaultscreen_descr;
     84   1.1  macallan 	const struct wsscreen_descr *sc_screens[1];
     85   1.1  macallan 	struct wsscreen_list sc_screenlist;
     86   1.1  macallan 	struct vcons_data vd;
     87   1.1  macallan 	int sc_mode;
     88   1.1  macallan 	u_char sc_cmap_red[256];
     89   1.1  macallan 	u_char sc_cmap_green[256];
     90   1.1  macallan 	u_char sc_cmap_blue[256];
     91   1.1  macallan 	/* i2c stuff */
     92   1.1  macallan 	struct i2c_controller sc_i2c;
     93   1.1  macallan 	uint8_t sc_edid_data[128];
     94   1.1  macallan 	struct edid_info sc_ei;
     95   1.1  macallan 	const struct videomode *sc_videomode;
     96   1.1  macallan };
     97   1.1  macallan 
     98   1.1  macallan static int	pm3fb_match(device_t, cfdata_t, void *);
     99   1.1  macallan static void	pm3fb_attach(device_t, device_t, void *);
    100   1.1  macallan 
    101   1.1  macallan CFATTACH_DECL_NEW(pm3fb, sizeof(struct pm3fb_softc),
    102   1.1  macallan     pm3fb_match, pm3fb_attach, NULL, NULL);
    103   1.1  macallan 
    104   1.1  macallan extern const u_char rasops_cmap[768];
    105   1.1  macallan 
    106   1.1  macallan static int	pm3fb_ioctl(void *, void *, u_long, void *, int, struct lwp *);
    107   1.1  macallan static paddr_t	pm3fb_mmap(void *, void *, off_t, int);
    108   1.1  macallan static void	pm3fb_init_screen(void *, struct vcons_screen *, int, long *);
    109   1.1  macallan 
    110   1.1  macallan static int	pm3fb_putcmap(struct pm3fb_softc *, struct wsdisplay_cmap *);
    111   1.1  macallan static int	pm3fb_getcmap(struct pm3fb_softc *, struct wsdisplay_cmap *);
    112   1.1  macallan static void	pm3fb_init_palette(struct pm3fb_softc *);
    113   1.1  macallan static int	pm3fb_putpalreg(struct pm3fb_softc *, uint8_t, uint8_t, uint8_t, uint8_t);
    114   1.1  macallan 
    115   1.1  macallan static void	pm3fb_init(struct pm3fb_softc *);
    116   1.1  macallan static inline void pm3fb_wait(struct pm3fb_softc *, int);
    117   1.1  macallan static void	pm3fb_flush_engine(struct pm3fb_softc *);
    118   1.1  macallan static void	pm3fb_rectfill(struct pm3fb_softc *, int, int, int, int, uint32_t);
    119   1.1  macallan static void	pm3fb_bitblt(void *, int, int, int, int, int, int, int);
    120   1.1  macallan 
    121   1.1  macallan static void	pm3fb_cursor(void *, int, int, int);
    122   1.1  macallan static void	pm3fb_putchar(void *, int, int, u_int, long);
    123   1.1  macallan static void	pm3fb_copycols(void *, int, int, int, int);
    124   1.1  macallan static void	pm3fb_erasecols(void *, int, int, int, long);
    125   1.1  macallan static void	pm3fb_copyrows(void *, int, int, int);
    126   1.1  macallan static void	pm3fb_eraserows(void *, int, int, long);
    127   1.1  macallan 
    128   1.1  macallan struct wsdisplay_accessops pm3fb_accessops = {
    129   1.1  macallan 	pm3fb_ioctl,
    130   1.1  macallan 	pm3fb_mmap,
    131   1.1  macallan 	NULL,    /* alloc_screen */
    132   1.1  macallan 	NULL,    /* free_screen */
    133   1.1  macallan 	NULL,    /* show_screen */
    134   1.1  macallan 	NULL,    /* load_font */
    135   1.1  macallan 	NULL,    /* pollc */
    136   1.1  macallan 	NULL     /* scroll */
    137   1.1  macallan };
    138   1.1  macallan 
    139   1.1  macallan /* I2C glue */
    140   1.1  macallan static int pm3fb_i2c_send_start(void *, int);
    141   1.1  macallan static int pm3fb_i2c_send_stop(void *, int);
    142   1.1  macallan static int pm3fb_i2c_initiate_xfer(void *, i2c_addr_t, int);
    143   1.1  macallan static int pm3fb_i2c_read_byte(void *, uint8_t *, int);
    144   1.1  macallan static int pm3fb_i2c_write_byte(void *, uint8_t, int);
    145   1.1  macallan 
    146   1.1  macallan /* I2C bitbang glue */
    147   1.1  macallan static void pm3fb_i2cbb_set_bits(void *, uint32_t);
    148   1.1  macallan static void pm3fb_i2cbb_set_dir(void *, uint32_t);
    149   1.1  macallan static uint32_t pm3fb_i2cbb_read(void *);
    150   1.1  macallan 
    151   1.1  macallan static void pm3_setup_i2c(struct pm3fb_softc *);
    152   1.1  macallan 
    153   1.1  macallan static const struct i2c_bitbang_ops pm3fb_i2cbb_ops = {
    154   1.1  macallan pm3fb_i2cbb_set_bits,
    155   1.1  macallan 	pm3fb_i2cbb_set_dir,
    156   1.1  macallan 	pm3fb_i2cbb_read,
    157   1.1  macallan 	{
    158   1.1  macallan 		PM3_DD_SDA_IN,
    159   1.1  macallan 		PM3_DD_SCL_IN,
    160   1.1  macallan 		0,
    161   1.1  macallan 		0
    162   1.1  macallan 	}
    163   1.1  macallan };
    164   1.1  macallan 
    165   1.1  macallan /* mode setting stuff */
    166   1.1  macallan static int pm3fb_set_pll(struct pm3fb_softc *, int);
    167   1.1  macallan static void pm3fb_write_dac(struct pm3fb_softc *, int, uint8_t);
    168   1.1  macallan static void pm3fb_set_mode(struct pm3fb_softc *, const struct videomode *);
    169   1.1  macallan 
    170   1.1  macallan static inline void
    171   1.1  macallan pm3fb_wait(struct pm3fb_softc *sc, int slots)
    172   1.1  macallan {
    173   1.1  macallan     uint32_t reg;
    174   1.1  macallan 
    175   1.1  macallan     do {
    176   1.1  macallan 		reg = bus_space_read_4(sc->sc_memt, sc->sc_regh,
    177   1.1  macallan 		    PM3_INPUT_FIFO_SPACE);
    178   1.1  macallan 	} while (reg <= slots);
    179   1.1  macallan }
    180   1.1  macallan 
    181   1.1  macallan static void
    182   1.1  macallan pm3fb_flush_engine(struct pm3fb_softc *sc)
    183   1.1  macallan {
    184   1.1  macallan 
    185   1.1  macallan 	pm3fb_wait(sc, 2);
    186   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FILTER_MODE, PM3_FM_PASS_SYNC);
    187   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_SYNC, 0);
    188   1.1  macallan 
    189   1.1  macallan 	do {
    190   1.1  macallan 		while (bus_space_read_4(sc->sc_memt, sc->sc_regh, PM3_OUTPUT_FIFO_WORDS) == 0);
    191   1.1  macallan 	} while (bus_space_read_4(sc->sc_memt, sc->sc_regh, PM3_OUTPUT_FIFO) !=
    192   1.1  macallan 	    PM3_SYNC_TAG);
    193   1.1  macallan }
    194   1.1  macallan 
    195   1.1  macallan static int
    196   1.1  macallan pm3fb_match(device_t parent, cfdata_t match, void *aux)
    197   1.1  macallan {
    198   1.1  macallan 	struct pci_attach_args *pa = (struct pci_attach_args *)aux;
    199   1.1  macallan 
    200   1.1  macallan 	if (PCI_CLASS(pa->pa_class) != PCI_CLASS_DISPLAY)
    201   1.1  macallan 		return 0;
    202   1.1  macallan 	if (PCI_VENDOR(pa->pa_id) != PCI_VENDOR_3DLABS)
    203   1.1  macallan 		return 0;
    204   1.1  macallan 
    205   1.1  macallan 	if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_3DLABS_PERMEDIA3)
    206   1.1  macallan 		return 100;
    207   1.1  macallan 	return (0);
    208   1.1  macallan }
    209   1.1  macallan 
    210   1.1  macallan static void
    211   1.1  macallan pm3fb_attach(device_t parent, device_t self, void *aux)
    212   1.1  macallan {
    213   1.1  macallan 	struct pm3fb_softc	*sc = device_private(self);
    214   1.1  macallan 	struct pci_attach_args	*pa = aux;
    215   1.1  macallan 	struct rasops_info	*ri;
    216   1.1  macallan 	struct wsemuldisplaydev_attach_args aa;
    217   1.1  macallan 	prop_dictionary_t	dict;
    218   1.1  macallan 	unsigned long		defattr;
    219   1.1  macallan 	bool			is_console;
    220   1.1  macallan 	uint32_t		flags;
    221   1.1  macallan 
    222   1.1  macallan 	sc->sc_pc = pa->pa_pc;
    223   1.1  macallan 	sc->sc_pcitag = pa->pa_tag;
    224   1.1  macallan 	sc->sc_memt = pa->pa_memt;
    225   1.1  macallan 	sc->sc_iot = pa->pa_iot;
    226   1.1  macallan 	sc->sc_dev = self;
    227   1.1  macallan 
    228   1.1  macallan 	pci_aprint_devinfo(pa, NULL);
    229   1.1  macallan 
    230   1.1  macallan 	/*
    231   1.1  macallan 	 * fill in parameters from properties
    232   1.1  macallan 	 * if we can't get a usable mode via DDC2 we'll use this to pick one,
    233   1.1  macallan 	 * which is why we fill them in with some conservative values that
    234   1.1  macallan 	 * hopefully work as a last resort
    235   1.1  macallan 	 */
    236   1.1  macallan 	dict = device_properties(self);
    237   1.1  macallan 	if (!prop_dictionary_get_uint32(dict, "width", &sc->sc_width)) {
    238   1.1  macallan 		aprint_error("%s: no width property\n", device_xname(self));
    239   1.1  macallan 		sc->sc_width = 1280;
    240   1.1  macallan 	}
    241   1.1  macallan 	if (!prop_dictionary_get_uint32(dict, "height", &sc->sc_height)) {
    242   1.1  macallan 		aprint_error("%s: no height property\n", device_xname(self));
    243   1.1  macallan 		sc->sc_height = 1024;
    244   1.1  macallan 	}
    245   1.1  macallan 	if (!prop_dictionary_get_uint32(dict, "depth", &sc->sc_depth)) {
    246   1.1  macallan 		aprint_error("%s: no depth property\n", device_xname(self));
    247   1.1  macallan 		sc->sc_depth = 8;
    248   1.1  macallan 	}
    249   1.1  macallan 
    250   1.1  macallan 	sc->sc_stride = sc->sc_width * (sc->sc_depth >> 3);
    251   1.1  macallan 
    252   1.1  macallan 	prop_dictionary_get_bool(dict, "is_console", &is_console);
    253   1.1  macallan 
    254   1.1  macallan 	pci_mapreg_info(pa->pa_pc, pa->pa_tag, 0x14, PCI_MAPREG_TYPE_MEM,
    255   1.1  macallan 	    &sc->sc_fb, &sc->sc_fbsize, &flags);
    256   1.1  macallan 
    257   1.1  macallan 	if (pci_mapreg_map(pa, 0x10, PCI_MAPREG_TYPE_MEM, 0,
    258   1.1  macallan 	    &sc->sc_memt, &sc->sc_regh, &sc->sc_reg, &sc->sc_regsize)) {
    259   1.1  macallan 		aprint_error("%s: failed to map registers.\n",
    260   1.1  macallan 		    device_xname(sc->sc_dev));
    261   1.1  macallan 	}
    262   1.1  macallan 
    263   1.1  macallan 	/*
    264   1.1  macallan 	 * Permedia 3 always return 64MB fbsize
    265   1.1  macallan 	 * 16 MB should be enough -- more just wastes map entries
    266   1.1  macallan 	 */
    267   1.1  macallan 	if (sc->sc_fbsize != 0)
    268   1.1  macallan 	    sc->sc_fbsize = (16 << 20);
    269   1.1  macallan 
    270   1.1  macallan 	/*
    271   1.1  macallan 	 * Some Power Mac G4 model could not initialize these registers,
    272   1.1  macallan 	 * Power Mac G4 (Mirrored Drive Doors), for example
    273   1.1  macallan 	 */
    274   1.1  macallan #if defined(__powerpc__)
    275   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_LOCALMEMCAPS, 0x02e311B8);
    276   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_LOCALMEMTIMINGS, 0x07424905);
    277   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_LOCALMEMCONTROL, 0x0c000003);
    278   1.1  macallan #endif
    279   1.1  macallan 
    280   1.1  macallan 	aprint_normal("%s: %d MB aperture at 0x%08x\n", device_xname(self),
    281   1.1  macallan 	    (int)(sc->sc_fbsize >> 20), (uint32_t)sc->sc_fb);
    282   1.1  macallan 
    283   1.1  macallan 	sc->sc_defaultscreen_descr = (struct wsscreen_descr){
    284   1.1  macallan 		"default",
    285   1.1  macallan 		0, 0,
    286   1.1  macallan 		NULL,
    287   1.1  macallan 		8, 16,
    288   1.1  macallan 		WSSCREEN_WSCOLORS | WSSCREEN_HILIT,
    289   1.1  macallan 		NULL
    290   1.1  macallan 	};
    291   1.1  macallan 
    292   1.1  macallan 	sc->sc_screens[0] = &sc->sc_defaultscreen_descr;
    293   1.1  macallan 	sc->sc_screenlist = (struct wsscreen_list){1, sc->sc_screens};
    294   1.1  macallan 	sc->sc_mode = WSDISPLAYIO_MODE_EMUL;
    295   1.1  macallan 	sc->sc_locked = 0;
    296   1.1  macallan 
    297   1.1  macallan 	pm3_setup_i2c(sc);
    298   1.1  macallan 
    299   1.1  macallan 	vcons_init(&sc->vd, sc, &sc->sc_defaultscreen_descr,
    300   1.1  macallan 	    &pm3fb_accessops);
    301   1.1  macallan 
    302   1.1  macallan 	sc->vd.init_screen = pm3fb_init_screen;
    303   1.1  macallan 
    304   1.1  macallan 	/* init engine here */
    305   1.1  macallan 	pm3fb_init(sc);
    306   1.1  macallan 
    307   1.1  macallan 	ri = &sc->sc_console_screen.scr_ri;
    308   1.1  macallan 
    309  1.10  macallan 	vcons_init_screen(&sc->vd, &sc->sc_console_screen, 1, &defattr);
    310  1.10  macallan 	sc->sc_console_screen.scr_flags |= VCONS_SCREEN_IS_STATIC;
    311  1.10  macallan 
    312  1.10  macallan 	pm3fb_rectfill(sc, 0, 0, sc->sc_width, sc->sc_height,
    313  1.10  macallan 	    ri->ri_devcmap[(defattr >> 16) & 0xff]);
    314  1.10  macallan 	pm3fb_init_palette(sc);
    315  1.10  macallan 
    316  1.10  macallan 	sc->sc_defaultscreen_descr.textops = &ri->ri_ops;
    317  1.10  macallan 	sc->sc_defaultscreen_descr.capabilities = ri->ri_caps;
    318  1.10  macallan 	sc->sc_defaultscreen_descr.nrows = ri->ri_rows;
    319  1.10  macallan 	sc->sc_defaultscreen_descr.ncols = ri->ri_cols;
    320  1.10  macallan 
    321   1.1  macallan 	if (is_console) {
    322   1.1  macallan 
    323   1.1  macallan 		wsdisplay_cnattach(&sc->sc_defaultscreen_descr, ri, 0, 0,
    324   1.1  macallan 		    defattr);
    325   1.1  macallan 		vcons_replay_msgbuf(&sc->sc_console_screen);
    326   1.1  macallan 	}
    327   1.1  macallan 
    328   1.1  macallan 
    329   1.1  macallan 	aa.console = is_console;
    330   1.1  macallan 	aa.scrdata = &sc->sc_screenlist;
    331   1.1  macallan 	aa.accessops = &pm3fb_accessops;
    332   1.1  macallan 	aa.accesscookie = &sc->vd;
    333   1.1  macallan 
    334   1.7   thorpej 	config_found(sc->sc_dev, &aa, wsemuldisplaydevprint, CFARGS_NONE);
    335   1.1  macallan }
    336   1.1  macallan 
    337   1.1  macallan static int
    338   1.1  macallan pm3fb_ioctl(void *v, void *vs, u_long cmd, void *data, int flag,
    339   1.1  macallan 	struct lwp *l)
    340   1.1  macallan {
    341   1.1  macallan 	struct vcons_data *vd = v;
    342   1.1  macallan 	struct pm3fb_softc *sc = vd->cookie;
    343   1.1  macallan 	struct wsdisplay_fbinfo *wdf;
    344   1.1  macallan 	struct vcons_screen *ms = vd->active;
    345   1.1  macallan 
    346   1.1  macallan 	switch (cmd) {
    347   1.1  macallan 	case WSDISPLAYIO_GTYPE:
    348   1.1  macallan 		*(u_int *)data = WSDISPLAY_TYPE_PCIMISC;
    349   1.1  macallan 		return 0;
    350   1.1  macallan 
    351   1.1  macallan 	/* PCI config read/write passthrough. */
    352   1.1  macallan 	case PCI_IOC_CFGREAD:
    353   1.1  macallan 	case PCI_IOC_CFGWRITE:
    354   1.1  macallan 		return pci_devioctl(sc->sc_pc, sc->sc_pcitag,
    355   1.1  macallan 		    cmd, data, flag, l);
    356   1.1  macallan 
    357   1.1  macallan 	case WSDISPLAYIO_GET_BUSID:
    358   1.1  macallan 		return wsdisplayio_busid_pci(sc->sc_dev, sc->sc_pc,
    359   1.1  macallan 		    sc->sc_pcitag, data);
    360   1.1  macallan 
    361   1.1  macallan 	case WSDISPLAYIO_GINFO:
    362   1.1  macallan 		if (ms == NULL)
    363   1.1  macallan 			return ENODEV;
    364   1.1  macallan 		wdf = (void *)data;
    365   1.1  macallan 		wdf->height = ms->scr_ri.ri_height;
    366   1.1  macallan 		wdf->width = ms->scr_ri.ri_width;
    367   1.1  macallan 		wdf->depth = ms->scr_ri.ri_depth;
    368   1.1  macallan 		wdf->cmsize = 256;
    369   1.1  macallan 		return 0;
    370   1.1  macallan 
    371   1.1  macallan 	case WSDISPLAYIO_GETCMAP:
    372   1.1  macallan 		return pm3fb_getcmap(sc,
    373   1.1  macallan 		    (struct wsdisplay_cmap *)data);
    374   1.1  macallan 
    375   1.1  macallan 	case WSDISPLAYIO_PUTCMAP:
    376   1.1  macallan 		return pm3fb_putcmap(sc,
    377   1.1  macallan 		    (struct wsdisplay_cmap *)data);
    378   1.1  macallan 
    379   1.1  macallan 	case WSDISPLAYIO_LINEBYTES:
    380   1.1  macallan 		*(u_int *)data = sc->sc_stride;
    381   1.1  macallan 		return 0;
    382   1.1  macallan 
    383   1.1  macallan 	case WSDISPLAYIO_SMODE: {
    384   1.1  macallan 		int new_mode = *(int*)data;
    385   1.1  macallan 		if (new_mode != sc->sc_mode) {
    386   1.1  macallan 			sc->sc_mode = new_mode;
    387   1.1  macallan 			if(new_mode == WSDISPLAYIO_MODE_EMUL) {
    388   1.1  macallan 				/* first set the video mode */
    389   1.1  macallan 				if (sc->sc_videomode != NULL) {
    390   1.1  macallan 					pm3fb_set_mode(sc, sc->sc_videomode);
    391   1.1  macallan 				}
    392   1.1  macallan 				/* then initialize the drawing engine */
    393   1.1  macallan 				pm3fb_init(sc);
    394   1.1  macallan 				pm3fb_init_palette(sc);
    395   1.1  macallan 				vcons_redraw_screen(ms);
    396   1.1  macallan 			} else
    397   1.1  macallan 				pm3fb_flush_engine(sc);
    398   1.1  macallan 		}
    399   1.1  macallan 		}
    400   1.1  macallan 		return 0;
    401   1.1  macallan 	case WSDISPLAYIO_GET_EDID: {
    402   1.1  macallan 		struct wsdisplayio_edid_info *d = data;
    403   1.1  macallan 		d->data_size = 128;
    404   1.1  macallan 		if (d->buffer_size < 128)
    405   1.1  macallan 			return EAGAIN;
    406   1.1  macallan 		return copyout(sc->sc_edid_data, d->edid_data, 128);
    407   1.1  macallan 	}
    408   1.1  macallan 
    409   1.1  macallan 	case WSDISPLAYIO_GET_FBINFO: {
    410   1.1  macallan 		struct wsdisplayio_fbinfo *fbi = data;
    411   1.1  macallan 		return wsdisplayio_get_fbinfo(&ms->scr_ri, fbi);
    412   1.1  macallan 	}
    413   1.1  macallan 	}
    414   1.1  macallan 	return EPASSTHROUGH;
    415   1.1  macallan }
    416   1.1  macallan 
    417   1.1  macallan static paddr_t
    418   1.1  macallan pm3fb_mmap(void *v, void *vs, off_t offset, int prot)
    419   1.1  macallan {
    420   1.1  macallan 	struct vcons_data *vd = v;
    421   1.1  macallan 	struct pm3fb_softc *sc = vd->cookie;
    422   1.1  macallan 	paddr_t pa;
    423   1.1  macallan 
    424   1.1  macallan 	/* 'regular' framebuffer mmap()ing */
    425   1.1  macallan 	if (offset < sc->sc_fbsize) {
    426   1.1  macallan 		pa = bus_space_mmap(sc->sc_memt, sc->sc_fb + offset, 0, prot,
    427   1.2  macallan 		    BUS_SPACE_MAP_LINEAR | BUS_SPACE_MAP_PREFETCHABLE);
    428   1.1  macallan 		return pa;
    429   1.1  macallan 	}
    430   1.1  macallan 
    431   1.1  macallan 	/*
    432   1.1  macallan 	 * restrict all other mappings to processes with superuser privileges
    433   1.1  macallan 	 * or the kernel itself
    434   1.1  macallan 	 */
    435   1.1  macallan 	if (kauth_authorize_machdep(kauth_cred_get(),
    436   1.1  macallan 	    KAUTH_MACHDEP_UNMANAGEDMEM,
    437   1.1  macallan 	    NULL, NULL, NULL, NULL) != 0) {
    438   1.1  macallan 		aprint_normal("%s: mmap() rejected.\n",
    439   1.1  macallan 		    device_xname(sc->sc_dev));
    440   1.1  macallan 		return -1;
    441   1.1  macallan 	}
    442   1.1  macallan 
    443   1.1  macallan 	if ((offset >= sc->sc_fb) && (offset < (sc->sc_fb + sc->sc_fbsize))) {
    444   1.1  macallan 		pa = bus_space_mmap(sc->sc_memt, offset, 0, prot,
    445   1.2  macallan 		    BUS_SPACE_MAP_LINEAR | BUS_SPACE_MAP_PREFETCHABLE);
    446   1.1  macallan 		return pa;
    447   1.1  macallan 	}
    448   1.1  macallan 
    449   1.1  macallan 	if ((offset >= sc->sc_reg) &&
    450   1.1  macallan 	    (offset < (sc->sc_reg + sc->sc_regsize))) {
    451   1.1  macallan 		pa = bus_space_mmap(sc->sc_memt, offset, 0, prot,
    452   1.1  macallan 		    BUS_SPACE_MAP_LINEAR);
    453   1.1  macallan 		return pa;
    454   1.1  macallan 	}
    455   1.1  macallan 
    456   1.1  macallan #ifdef PCI_MAGIC_IO_RANGE
    457   1.1  macallan 	/* allow mapping of IO space */
    458   1.1  macallan 	if ((offset >= PCI_MAGIC_IO_RANGE) &&
    459   1.1  macallan 	    (offset < PCI_MAGIC_IO_RANGE + 0x10000)) {
    460   1.1  macallan 		pa = bus_space_mmap(sc->sc_iot, offset - PCI_MAGIC_IO_RANGE,
    461   1.1  macallan 		    0, prot, BUS_SPACE_MAP_LINEAR);
    462   1.1  macallan 		return pa;
    463   1.1  macallan 	}
    464   1.1  macallan #endif
    465   1.1  macallan 	return -1;
    466   1.1  macallan }
    467   1.1  macallan 
    468   1.1  macallan static void
    469   1.1  macallan pm3fb_init_screen(void *cookie, struct vcons_screen *scr,
    470   1.1  macallan     int existing, long *defattr)
    471   1.1  macallan {
    472   1.1  macallan 	struct pm3fb_softc *sc = cookie;
    473   1.1  macallan 	struct rasops_info *ri = &scr->scr_ri;
    474   1.1  macallan 
    475   1.1  macallan 	ri->ri_depth = sc->sc_depth;
    476   1.1  macallan 	ri->ri_width = sc->sc_width;
    477   1.1  macallan 	ri->ri_height = sc->sc_height;
    478   1.1  macallan 	ri->ri_stride = sc->sc_stride;
    479   1.1  macallan 	ri->ri_flg = RI_CENTER;
    480   1.1  macallan 	if (sc->sc_depth == 8)
    481   1.1  macallan 		ri->ri_flg |= RI_8BIT_IS_RGB;
    482   1.1  macallan 
    483   1.1  macallan 	rasops_init(ri, 0, 0);
    484   1.1  macallan 	ri->ri_caps = WSSCREEN_WSCOLORS | WSSCREEN_UNDERLINE;
    485   1.1  macallan 
    486   1.1  macallan 	rasops_reconfig(ri, sc->sc_height / ri->ri_font->fontheight,
    487   1.1  macallan 		    sc->sc_width / ri->ri_font->fontwidth);
    488   1.1  macallan 
    489   1.1  macallan 	ri->ri_hw = scr;
    490   1.1  macallan 	ri->ri_ops.copyrows = pm3fb_copyrows;
    491   1.1  macallan 	ri->ri_ops.copycols = pm3fb_copycols;
    492   1.1  macallan 	ri->ri_ops.cursor = pm3fb_cursor;
    493   1.1  macallan 	ri->ri_ops.eraserows = pm3fb_eraserows;
    494   1.1  macallan 	ri->ri_ops.erasecols = pm3fb_erasecols;
    495   1.1  macallan 	ri->ri_ops.putchar = pm3fb_putchar;
    496   1.1  macallan }
    497   1.1  macallan 
    498   1.1  macallan static int
    499   1.1  macallan pm3fb_putcmap(struct pm3fb_softc *sc, struct wsdisplay_cmap *cm)
    500   1.1  macallan {
    501   1.1  macallan 	u_char *r, *g, *b;
    502   1.1  macallan 	u_int index = cm->index;
    503   1.1  macallan 	u_int count = cm->count;
    504   1.1  macallan 	int i, error;
    505   1.1  macallan 	u_char rbuf[256], gbuf[256], bbuf[256];
    506   1.1  macallan 
    507   1.1  macallan 	if (cm->index >= 256 || cm->count > 256 ||
    508   1.1  macallan 	    (cm->index + cm->count) > 256)
    509   1.1  macallan 		return EINVAL;
    510   1.1  macallan 	error = copyin(cm->red, &rbuf[index], count);
    511   1.1  macallan 	if (error)
    512   1.1  macallan 		return error;
    513   1.1  macallan 	error = copyin(cm->green, &gbuf[index], count);
    514   1.1  macallan 	if (error)
    515   1.1  macallan 		return error;
    516   1.1  macallan 	error = copyin(cm->blue, &bbuf[index], count);
    517   1.1  macallan 	if (error)
    518   1.1  macallan 		return error;
    519   1.1  macallan 
    520   1.1  macallan 	memcpy(&sc->sc_cmap_red[index], &rbuf[index], count);
    521   1.1  macallan 	memcpy(&sc->sc_cmap_green[index], &gbuf[index], count);
    522   1.1  macallan 	memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
    523   1.1  macallan 
    524   1.1  macallan 	r = &sc->sc_cmap_red[index];
    525   1.1  macallan 	g = &sc->sc_cmap_green[index];
    526   1.1  macallan 	b = &sc->sc_cmap_blue[index];
    527   1.1  macallan 
    528   1.1  macallan 	for (i = 0; i < count; i++) {
    529   1.1  macallan 		pm3fb_putpalreg(sc, index, *r, *g, *b);
    530   1.1  macallan 		index++;
    531   1.1  macallan 		r++, g++, b++;
    532   1.1  macallan 	}
    533   1.1  macallan 	return 0;
    534   1.1  macallan }
    535   1.1  macallan 
    536   1.1  macallan static int
    537   1.1  macallan pm3fb_getcmap(struct pm3fb_softc *sc, struct wsdisplay_cmap *cm)
    538   1.1  macallan {
    539   1.1  macallan 	u_int index = cm->index;
    540   1.1  macallan 	u_int count = cm->count;
    541   1.1  macallan 	int error;
    542   1.1  macallan 
    543   1.1  macallan 	if (index >= 255 || count > 256 || index + count > 256)
    544   1.1  macallan 		return EINVAL;
    545   1.1  macallan 
    546   1.1  macallan 	error = copyout(&sc->sc_cmap_red[index],   cm->red,   count);
    547   1.1  macallan 	if (error)
    548   1.1  macallan 		return error;
    549   1.1  macallan 	error = copyout(&sc->sc_cmap_green[index], cm->green, count);
    550   1.1  macallan 	if (error)
    551   1.1  macallan 		return error;
    552   1.1  macallan 	error = copyout(&sc->sc_cmap_blue[index],  cm->blue,  count);
    553   1.1  macallan 	if (error)
    554   1.1  macallan 		return error;
    555   1.1  macallan 
    556   1.1  macallan 	return 0;
    557   1.1  macallan }
    558   1.1  macallan 
    559   1.1  macallan static void
    560   1.1  macallan pm3fb_init_palette(struct pm3fb_softc *sc)
    561   1.1  macallan {
    562   1.1  macallan 	struct rasops_info *ri = &sc->sc_console_screen.scr_ri;
    563   1.1  macallan 	int i, j = 0;
    564   1.1  macallan 	uint8_t cmap[768];
    565   1.1  macallan 
    566   1.1  macallan 	rasops_get_cmap(ri, cmap, sizeof(cmap));
    567   1.1  macallan 
    568   1.1  macallan 	for (i = 0; i < 256; i++) {
    569   1.1  macallan 		sc->sc_cmap_red[i] = cmap[j];
    570   1.1  macallan 		sc->sc_cmap_green[i] = cmap[j + 1];
    571   1.1  macallan 		sc->sc_cmap_blue[i] = cmap[j + 2];
    572   1.1  macallan 		pm3fb_putpalreg(sc, i, cmap[j], cmap[j + 1], cmap[j + 2]);
    573   1.1  macallan 		j += 3;
    574   1.1  macallan 	}
    575   1.1  macallan }
    576   1.1  macallan 
    577   1.1  macallan static int
    578   1.1  macallan pm3fb_putpalreg(struct pm3fb_softc *sc, uint8_t idx, uint8_t r, uint8_t g, uint8_t b)
    579   1.1  macallan {
    580   1.1  macallan 
    581   1.1  macallan 	pm3fb_wait(sc, 4);
    582   1.1  macallan 	bus_space_write_1(sc->sc_memt, sc->sc_regh, PM3_DAC_PAL_WRITE_IDX, idx);
    583   1.1  macallan 	bus_space_write_1(sc->sc_memt, sc->sc_regh, PM3_DAC_PAL_DATA, r);
    584   1.1  macallan 	bus_space_write_1(sc->sc_memt, sc->sc_regh, PM3_DAC_PAL_DATA, g);
    585   1.1  macallan 	bus_space_write_1(sc->sc_memt, sc->sc_regh, PM3_DAC_PAL_DATA, b);
    586   1.1  macallan 	return 0;
    587   1.1  macallan }
    588   1.1  macallan 
    589   1.1  macallan static void
    590   1.1  macallan pm3fb_write_dac(struct pm3fb_softc *sc, int reg, uint8_t data)
    591   1.1  macallan {
    592   1.1  macallan 
    593   1.1  macallan 	pm3fb_wait(sc, 3);
    594   1.1  macallan 	bus_space_write_1(sc->sc_memt, sc->sc_regh, PM3_DAC_INDEX_LOW, reg & 0xff);
    595   1.1  macallan 	bus_space_write_1(sc->sc_memt, sc->sc_regh, PM3_DAC_INDEX_HIGH, (reg >> 8) & 0xff);
    596   1.1  macallan 	bus_space_write_1(sc->sc_memt, sc->sc_regh, PM3_DAC_INDEX_DATA, data);
    597   1.1  macallan }
    598   1.1  macallan 
    599   1.1  macallan static void
    600   1.1  macallan pm3fb_init(struct pm3fb_softc *sc)
    601   1.1  macallan {
    602   1.1  macallan 
    603   1.3  macallan 	pm3fb_wait(sc, 16);
    604   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_LB_DESTREAD_MODE, 0);
    605   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_LB_DESTREAD_ENABLES, 0);
    606   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_LB_SOURCEREAD_MODE, 0);
    607   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_LB_WRITE_MODE, 0);
    608   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FILTER_MODE, PM3_FM_PASS_SYNC);
    609   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_STATISTIC_MODE, 0);
    610   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_DELTA_MODE, 0);
    611   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_RASTERIZER_MODE, 0);
    612   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_SCISSOR_MODE, 0);
    613   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_LINESTIPPLE_MODE, 0);
    614   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_AREASTIPPLE_MODE, 0);
    615   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_GID_MODE, 0);
    616   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_DEPTH_MODE, 0);
    617   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_STENCIL_MODE, 0);
    618   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_STENCIL_DATA, 0);
    619   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_COLORDDA_MODE, 0);
    620   1.3  macallan 
    621   1.3  macallan 	pm3fb_wait(sc, 16);
    622   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTUREADDRESS_MODE, 0);
    623   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTUREINDEX_MODE0, 0);
    624   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTUREINDEX_MODE1, 0);
    625   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTUREREAD_MODE, 0);
    626   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXELLUT_MODE, 0);
    627   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTUREFILTER_MODE, 0);
    628   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTURECOMPOSITE_MODE, 0);
    629   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTURECOLOR_MODE, 0);
    630   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTURECOMPOSITECOLOR_MODE1, 0);
    631   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTURECOMPOSITEALPHA_MODE1, 0);
    632   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTURECOMPOSITECOLOR_MODE0, 0);
    633   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_TEXTURECOMPOSITEALPHA_MODE0, 0);
    634   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FOG_MODE, 0);
    635   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_CHROMATEST_MODE, 0);
    636   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_ALPHATEST_MODE, 0);
    637   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_ANTIALIAS_MODE, 0);
    638   1.3  macallan 
    639   1.3  macallan 	pm3fb_wait(sc, 16);
    640   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_YUV_MODE, 0);
    641   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_ALPHABLENDCOLOR_MODE, 0);
    642   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_ALPHABLENDALPHA_MODE, 0);
    643   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_DITHER_MODE, 0);
    644   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_LOGICALOP_MODE, 0);
    645   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_ROUTER_MODE, 0);
    646   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_WINDOW, 0);
    647   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_CONFIG2D, 0);
    648   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_SPANCOLORMASK, 0xffffffff);
    649   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_XBIAS, 0);
    650   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_YBIAS, 0);
    651   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_DELTACONTROL, 0);
    652   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_BITMASKPATTERN, 0xffffffff);
    653   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBDESTREAD_ENABLE,
    654   1.1  macallan 	    PM3_FBDESTREAD_SET(0xff, 0xff, 0xff));
    655   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBDESTREAD_BUFFERADDRESS0, 0);
    656   1.3  macallan 
    657   1.3  macallan 	pm3fb_wait(sc, 16);
    658   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBDESTREAD_BUFFEROFFSET0, 0);
    659   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBDESTREAD_BUFFERWIDTH0,
    660   1.1  macallan 	    PM3_FBDESTREAD_BUFFERWIDTH_WIDTH(sc->sc_stride));
    661   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FB_DESTREAD_MODE,
    662   1.1  macallan 	    PM3_FBDRM_ENABLE | PM3_FBDRM_ENABLE0);
    663   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBSOURCEREAD_BUFFERADDRESS, 0);
    664   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBSOURCEREAD_BUFFEROFFSET, 0);
    665   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBSOURCEREAD_BUFFERWIDTH,
    666   1.1  macallan 	    PM3_FBSOURCEREAD_BUFFERWIDTH_WIDTH(sc->sc_stride));
    667   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBSOURCEREAD_MODE,
    668   1.1  macallan 	    PM3_FBSOURCEREAD_MODE_BLOCKING | PM3_FBSOURCEREAD_MODE_ENABLE);
    669   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_PIXEL_SIZE, PM3_PS_8BIT);
    670   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBSOFTWAREWRITEMASK, 0xffffffff);
    671   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBHARDWAREWRITEMASK, 0xffffffff);
    672   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBWRITE_MODE,
    673   1.1  macallan 	    PM3_FBWRITEMODE_WRITEENABLE | PM3_FBWRITEMODE_OPAQUESPAN | PM3_FBWRITEMODE_ENABLE0);
    674   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBWRITEBUFFERADDRESS0, 0);
    675   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBWRITEBUFFEROFFSET0, 0);
    676   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBWRITEBUFFERWIDTH0,
    677   1.1  macallan 	    PM3_FBWRITEBUFFERWIDTH_WIDTH(sc->sc_stride));
    678   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_SIZEOF_FRAMEBUFFER, 4095);
    679   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_DITHER_MODE, PM3_CF_TO_DIM_CF(4));
    680   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_DXDOM, 0);
    681   1.3  macallan 
    682   1.3  macallan 	pm3fb_wait(sc, 6);
    683   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_DXSUB, 0);
    684   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_DY, 1 << 16);
    685   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_STARTXDOM, 0);
    686   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_STARTXSUB, 0);
    687   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_STARTY, 0);
    688   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_COUNT, 0);
    689   1.1  macallan }
    690   1.1  macallan 
    691   1.1  macallan static void
    692   1.1  macallan pm3fb_rectfill(struct pm3fb_softc *sc, int x, int y, int wi, int he,
    693   1.1  macallan      uint32_t colour)
    694   1.1  macallan {
    695   1.1  macallan 	pm3fb_wait(sc, 4);
    696   1.1  macallan 
    697   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_CONFIG2D,
    698   1.1  macallan 	    PM3_CONFIG2D_USECONSTANTSOURCE | PM3_CONFIG2D_FOREGROUNDROP_ENABLE |
    699   1.1  macallan 	    (PM3_CONFIG2D_FOREGROUNDROP(0x3)) | PM3_CONFIG2D_FBWRITE_ENABLE);
    700   1.1  macallan 
    701   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FOREGROUNDCOLOR, colour);
    702   1.1  macallan 
    703   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_RECTANGLEPOSITION,
    704   1.1  macallan 	    (((y) & 0xffff) << 16) | ((x) & 0xffff) );
    705   1.1  macallan 
    706   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_RENDER2D,
    707   1.1  macallan 	    PM3_RENDER2D_XPOSITIVE | PM3_RENDER2D_YPOSITIVE |
    708   1.1  macallan 	    PM3_RENDER2D_OPERATION_NORMAL | PM3_RENDER2D_SPANOPERATION |
    709   1.1  macallan 	    (((he) & 0x0fff) << 16) | ((wi) & 0x0fff));
    710   1.1  macallan 
    711   1.3  macallan #ifdef PM3FB_DEBUG
    712   1.1  macallan 	pm3fb_flush_engine(sc);
    713   1.3  macallan #endif
    714   1.1  macallan }
    715   1.1  macallan 
    716   1.1  macallan static void
    717   1.1  macallan pm3fb_bitblt(void *cookie, int srcx, int srcy, int dstx, int dsty,
    718   1.1  macallan     int width, int height, int rop)
    719   1.1  macallan {
    720   1.1  macallan 	struct pm3fb_softc *sc = cookie;
    721   1.1  macallan 	int x_align,  offset_x, offset_y;
    722   1.1  macallan 	uint32_t dir = 0;
    723   1.1  macallan 
    724   1.2  macallan 	offset_x = srcx - dstx;
    725   1.2  macallan 	offset_y = srcy - dsty;
    726   1.1  macallan 
    727   1.1  macallan 	if (dsty <= srcy) {
    728   1.1  macallan 		dir |= PM3_RENDER2D_YPOSITIVE;
    729   1.1  macallan 	}
    730   1.1  macallan 
    731   1.1  macallan 	if (dstx <= srcx) {
    732   1.1  macallan 		dir |= PM3_RENDER2D_XPOSITIVE;
    733   1.1  macallan 	}
    734   1.1  macallan 
    735   1.1  macallan 	x_align = (srcx & 0x1f);
    736   1.1  macallan 
    737   1.1  macallan 	pm3fb_wait(sc, 6);
    738   1.1  macallan 
    739   1.1  macallan 	if (rop == 3){
    740   1.1  macallan 		bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_CONFIG2D,
    741   1.1  macallan 		    PM3_CONFIG2D_USERSCISSOR_ENABLE | PM3_CONFIG2D_FOREGROUNDROP_ENABLE | PM3_CONFIG2D_BLOCKING |
    742   1.1  macallan 		    PM3_CONFIG2D_FOREGROUNDROP(rop) | PM3_CONFIG2D_FBWRITE_ENABLE);
    743   1.1  macallan 	} else {
    744   1.1  macallan 		bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_CONFIG2D,
    745   1.1  macallan 		    PM3_CONFIG2D_USERSCISSOR_ENABLE | PM3_CONFIG2D_FOREGROUNDROP_ENABLE | PM3_CONFIG2D_BLOCKING |
    746   1.1  macallan 		    PM3_CONFIG2D_FOREGROUNDROP(rop) | PM3_CONFIG2D_FBWRITE_ENABLE | PM3_CONFIG2D_FBDESTREAD_ENABLE);
    747   1.1  macallan 	}
    748   1.1  macallan 
    749   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_SCISSORMINXY,
    750   1.1  macallan 	    ((dsty & 0x0fff) << 16) | (dstx & 0x0fff));
    751   1.1  macallan 
    752   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_SCISSORMAXXY,
    753   1.1  macallan 	    (((dsty + height) & 0x0fff) << 16) | ((dstx + width) & 0x0fff));
    754   1.1  macallan 
    755   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FBSOURCEREAD_BUFFEROFFSET,
    756   1.1  macallan 	    (((offset_y) & 0xffff) << 16) | ((offset_x) & 0xffff));
    757   1.1  macallan 
    758   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_RECTANGLEPOSITION,
    759   1.1  macallan 	    (((dsty) & 0xffff) << 16) | ((dstx - x_align) & 0xffff));
    760   1.1  macallan 
    761   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_RENDER2D,
    762   1.1  macallan 	    dir |
    763   1.1  macallan 	    PM3_RENDER2D_OPERATION_NORMAL | PM3_RENDER2D_SPANOPERATION | PM3_RENDER2D_FBSOURCEREADENABLE |
    764   1.1  macallan 	    (((height) & 0x0fff) << 16) | ((width + x_align) & 0x0fff));
    765   1.1  macallan 
    766   1.3  macallan #ifdef PM3FB_DEBUG
    767   1.1  macallan 	pm3fb_flush_engine(sc);
    768   1.3  macallan #endif
    769   1.1  macallan }
    770   1.1  macallan 
    771   1.1  macallan static void
    772   1.1  macallan pm3fb_cursor(void *cookie, int on, int row, int col)
    773   1.1  macallan {
    774   1.1  macallan 	struct rasops_info *ri = cookie;
    775   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
    776   1.1  macallan 	struct pm3fb_softc *sc = scr->scr_cookie;
    777   1.1  macallan 	int x, y, wi, he;
    778   1.1  macallan 
    779   1.1  macallan 	wi = ri->ri_font->fontwidth;
    780   1.1  macallan 	he = ri->ri_font->fontheight;
    781   1.1  macallan 
    782   1.1  macallan 	if (sc->sc_mode == WSDISPLAYIO_MODE_EMUL) {
    783   1.1  macallan 		x = ri->ri_ccol * wi + ri->ri_xorigin;
    784   1.1  macallan 		y = ri->ri_crow * he + ri->ri_yorigin;
    785   1.1  macallan 		if (ri->ri_flg & RI_CURSOR) {
    786   1.1  macallan 			pm3fb_bitblt(sc, x, y, x, y, wi, he, 12);
    787   1.1  macallan 			ri->ri_flg &= ~RI_CURSOR;
    788   1.1  macallan 		}
    789   1.1  macallan 		ri->ri_crow = row;
    790   1.1  macallan 		ri->ri_ccol = col;
    791   1.1  macallan 		if (on) {
    792   1.1  macallan 			x = ri->ri_ccol * wi + ri->ri_xorigin;
    793   1.1  macallan 			y = ri->ri_crow * he + ri->ri_yorigin;
    794   1.1  macallan 			pm3fb_bitblt(sc, x, y, x, y, wi, he, 12);
    795   1.1  macallan 			ri->ri_flg |= RI_CURSOR;
    796   1.1  macallan 		}
    797   1.1  macallan 	} else {
    798   1.1  macallan 		scr->scr_ri.ri_crow = row;
    799   1.1  macallan 		scr->scr_ri.ri_ccol = col;
    800   1.1  macallan 		scr->scr_ri.ri_flg &= ~RI_CURSOR;
    801   1.1  macallan 	}
    802   1.1  macallan }
    803   1.1  macallan 
    804   1.1  macallan static void
    805   1.1  macallan pm3fb_putchar(void *cookie, int row, int col, u_int c, long attr)
    806   1.1  macallan {
    807   1.1  macallan 	struct rasops_info *ri = cookie;
    808   1.1  macallan 	struct wsdisplay_font *font = PICK_FONT(ri, c);
    809   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
    810   1.1  macallan 	struct pm3fb_softc *sc = scr->scr_cookie;
    811   1.1  macallan 	uint32_t mode;
    812   1.1  macallan 
    813   1.1  macallan 	if (sc->sc_mode == WSDISPLAYIO_MODE_EMUL) {
    814   1.1  macallan 		void *data;
    815   1.1  macallan 		uint32_t fg, bg;
    816   1.1  macallan 		int uc, i;
    817   1.1  macallan 		int x, y, wi, he;
    818   1.1  macallan 
    819   1.1  macallan 		wi = font->fontwidth;
    820   1.1  macallan 		he = font->fontheight;
    821   1.1  macallan 
    822   1.1  macallan 		if (!CHAR_IN_FONT(c, font))
    823   1.1  macallan 			return;
    824   1.1  macallan 
    825   1.1  macallan 		bg = ri->ri_devcmap[(attr >> 16) & 0xf];
    826   1.1  macallan 		fg = ri->ri_devcmap[(attr >> 24) & 0xf];
    827   1.1  macallan 		x = ri->ri_xorigin + col * wi;
    828   1.1  macallan 		y = ri->ri_yorigin + row * he;
    829   1.1  macallan 		if (c == 0x20) {
    830   1.1  macallan 			pm3fb_rectfill(sc, x, y, wi, he, bg);
    831   1.1  macallan 		} else {
    832   1.1  macallan 			uc = c - font->firstchar;
    833   1.1  macallan 			data = (uint8_t *)font->data + uc * ri->ri_fontscale;
    834   1.1  macallan 			mode = PM3_RM_MASK_MIRROR;
    835   1.1  macallan 
    836   1.1  macallan #if BYTE_ORDER == LITTLE_ENDIAN
    837   1.1  macallan 			switch (ri->ri_font->stride) {
    838   1.1  macallan 			case 1:
    839   1.1  macallan 				mode |= 4 << 7;
    840   1.1  macallan 				break;
    841   1.1  macallan 			case 2:
    842   1.1  macallan 				mode |= 3 << 7;
    843   1.1  macallan 				break;
    844   1.1  macallan 			}
    845   1.1  macallan #else
    846   1.1  macallan 			switch (ri->ri_font->stride) {
    847   1.1  macallan 			case 1:
    848   1.1  macallan 				mode |= 3 << 7;
    849   1.1  macallan 				break;
    850   1.1  macallan 			case 2:
    851   1.1  macallan 				mode |= 2 << 7;
    852   1.1  macallan 				break;
    853   1.1  macallan 			}
    854   1.1  macallan #endif
    855   1.1  macallan 			pm3fb_wait(sc, 8);
    856   1.1  macallan 			bus_space_write_4(sc->sc_memt, sc->sc_regh,
    857   1.1  macallan 			    PM3_FOREGROUNDCOLOR, fg);
    858   1.1  macallan 			bus_space_write_4(sc->sc_memt, sc->sc_regh,
    859   1.1  macallan 			    PM3_BACKGROUNDCOLOR, bg);
    860   1.1  macallan 
    861   1.1  macallan 			bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_RASTERIZER_MODE, mode);
    862   1.1  macallan 
    863   1.1  macallan 			bus_space_write_4(sc->sc_memt, sc->sc_regh,
    864   1.1  macallan 			    PM3_CONFIG2D,
    865   1.1  macallan 			    PM3_CONFIG2D_USERSCISSOR_ENABLE |
    866   1.1  macallan 			    PM3_CONFIG2D_USECONSTANTSOURCE |
    867   1.1  macallan 			    PM3_CONFIG2D_FOREGROUNDROP_ENABLE |
    868   1.1  macallan 			    PM3_CONFIG2D_FOREGROUNDROP(0x03) |
    869   1.1  macallan 			    PM3_CONFIG2D_OPAQUESPAN |
    870   1.1  macallan 			    PM3_CONFIG2D_FBWRITE_ENABLE);
    871   1.1  macallan 
    872   1.1  macallan 			bus_space_write_4(sc->sc_memt, sc->sc_regh,
    873   1.1  macallan 			    PM3_SCISSORMINXY, ((y & 0x0fff) << 16) | (x & 0x0fff));
    874   1.1  macallan 
    875   1.1  macallan 			bus_space_write_4(sc->sc_memt, sc->sc_regh,
    876   1.1  macallan 			    PM3_SCISSORMAXXY, (((y + he) & 0x0fff) << 16) | ((x + wi) & 0x0fff));
    877   1.1  macallan 
    878   1.1  macallan 			bus_space_write_4(sc->sc_memt, sc->sc_regh,
    879   1.1  macallan 			    PM3_RECTANGLEPOSITION, (((y) & 0xffff)<<16) | ((x) & 0xffff));
    880   1.1  macallan 
    881   1.1  macallan 			bus_space_write_4(sc->sc_memt, sc->sc_regh,
    882   1.1  macallan 			    PM3_RENDER2D,
    883   1.1  macallan 			    PM3_RENDER2D_XPOSITIVE |
    884   1.1  macallan 			    PM3_RENDER2D_YPOSITIVE |
    885   1.1  macallan 			    PM3_RENDER2D_OPERATION_SYNCONBITMASK |
    886   1.1  macallan 			    PM3_RENDER2D_SPANOPERATION |
    887   1.1  macallan 			    ((wi) & 0x0fff) | (((he) & 0x0fff) << 16));
    888   1.1  macallan 
    889   1.1  macallan 			pm3fb_wait(sc, he);
    890   1.1  macallan 
    891   1.1  macallan 			switch (ri->ri_font->stride) {
    892   1.1  macallan 			case 1: {
    893   1.1  macallan 				uint8_t *data8 = data;
    894   1.1  macallan 				uint32_t reg;
    895   1.1  macallan 				for (i = 0; i < he; i++) {
    896   1.1  macallan 					reg = *data8;
    897   1.1  macallan 					bus_space_write_4(sc->sc_memt,
    898   1.1  macallan 					    sc->sc_regh,
    899   1.1  macallan 					    PM3_BITMASKPATTERN, reg);
    900   1.1  macallan 					data8++;
    901   1.1  macallan 				}
    902   1.1  macallan 				break;
    903   1.1  macallan 				}
    904   1.1  macallan 			case 2: {
    905   1.1  macallan 				uint16_t *data16 = data;
    906   1.1  macallan 				uint32_t reg;
    907   1.1  macallan 				for (i = 0; i < he; i++) {
    908   1.1  macallan 					reg = *data16;
    909   1.1  macallan 					bus_space_write_4(sc->sc_memt,
    910   1.1  macallan 					    sc->sc_regh,
    911   1.1  macallan 					    PM3_BITMASKPATTERN, reg);
    912   1.1  macallan 					data16++;
    913   1.1  macallan 				}
    914   1.1  macallan 				break;
    915   1.1  macallan 			}
    916   1.1  macallan 			}
    917   1.1  macallan 		}
    918   1.1  macallan 	}
    919   1.1  macallan }
    920   1.1  macallan 
    921   1.1  macallan static void
    922   1.1  macallan pm3fb_copycols(void *cookie, int row, int srccol, int dstcol, int ncols)
    923   1.1  macallan {
    924   1.1  macallan 	struct rasops_info *ri = cookie;
    925   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
    926   1.1  macallan 	struct pm3fb_softc *sc = scr->scr_cookie;
    927   1.1  macallan 	int32_t xs, xd, y, width, height;
    928   1.1  macallan 
    929   1.1  macallan 	if ((sc->sc_locked == 0) && (sc->sc_mode == WSDISPLAYIO_MODE_EMUL)) {
    930   1.1  macallan 		xs = ri->ri_xorigin + ri->ri_font->fontwidth * srccol;
    931   1.1  macallan 		xd = ri->ri_xorigin + ri->ri_font->fontwidth * dstcol;
    932   1.1  macallan 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
    933   1.1  macallan 		width = ri->ri_font->fontwidth * ncols;
    934   1.1  macallan 		height = ri->ri_font->fontheight;
    935   1.1  macallan 		pm3fb_bitblt(sc, xs, y, xd, y, width, height, 3);
    936   1.1  macallan 	}
    937   1.1  macallan }
    938   1.1  macallan 
    939   1.1  macallan static void
    940   1.1  macallan pm3fb_erasecols(void *cookie, int row, int startcol, int ncols, long fillattr)
    941   1.1  macallan {
    942   1.1  macallan 	struct rasops_info *ri = cookie;
    943   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
    944   1.1  macallan 	struct pm3fb_softc *sc = scr->scr_cookie;
    945   1.1  macallan 	int32_t x, y, width, height, fg, bg, ul;
    946   1.1  macallan 
    947   1.1  macallan 	if ((sc->sc_locked == 0) && (sc->sc_mode == WSDISPLAYIO_MODE_EMUL)) {
    948   1.1  macallan 		x = ri->ri_xorigin + ri->ri_font->fontwidth * startcol;
    949   1.1  macallan 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
    950   1.1  macallan 		width = ri->ri_font->fontwidth * ncols;
    951   1.1  macallan 		height = ri->ri_font->fontheight;
    952   1.1  macallan 		rasops_unpack_attr(fillattr, &fg, &bg, &ul);
    953   1.1  macallan 
    954   1.1  macallan 		pm3fb_rectfill(sc, x, y, width, height, ri->ri_devcmap[bg]);
    955   1.1  macallan 	}
    956   1.1  macallan }
    957   1.1  macallan 
    958   1.1  macallan static void
    959   1.1  macallan pm3fb_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
    960   1.1  macallan {
    961   1.1  macallan 	struct rasops_info *ri = cookie;
    962   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
    963   1.1  macallan 	struct pm3fb_softc *sc = scr->scr_cookie;
    964   1.1  macallan 	int32_t x, ys, yd, width, height;
    965   1.1  macallan 
    966   1.1  macallan 	if ((sc->sc_locked == 0) && (sc->sc_mode == WSDISPLAYIO_MODE_EMUL)) {
    967   1.1  macallan 		x = ri->ri_xorigin;
    968   1.1  macallan 		ys = ri->ri_yorigin + ri->ri_font->fontheight * srcrow;
    969   1.1  macallan 		yd = ri->ri_yorigin + ri->ri_font->fontheight * dstrow;
    970   1.1  macallan 		width = ri->ri_emuwidth;
    971   1.1  macallan 		height = ri->ri_font->fontheight*nrows;
    972   1.1  macallan 		pm3fb_bitblt(sc, x, ys, x, yd, width, height, 3);
    973   1.1  macallan 	}
    974   1.1  macallan }
    975   1.1  macallan 
    976   1.1  macallan static void
    977   1.1  macallan pm3fb_eraserows(void *cookie, int row, int nrows, long fillattr)
    978   1.1  macallan {
    979   1.1  macallan 	struct rasops_info *ri = cookie;
    980   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
    981   1.1  macallan 	struct pm3fb_softc *sc = scr->scr_cookie;
    982   1.1  macallan 	int32_t x, y, width, height, fg, bg, ul;
    983   1.1  macallan 
    984   1.1  macallan 	if ((sc->sc_locked == 0) && (sc->sc_mode == WSDISPLAYIO_MODE_EMUL)) {
    985   1.1  macallan 		x = ri->ri_xorigin;
    986   1.1  macallan 		y = ri->ri_yorigin + ri->ri_font->fontheight * row;
    987   1.1  macallan 		width = ri->ri_emuwidth;
    988   1.1  macallan 		height = ri->ri_font->fontheight * nrows;
    989   1.1  macallan 		rasops_unpack_attr(fillattr, &fg, &bg, &ul);
    990   1.1  macallan 
    991   1.1  macallan 		pm3fb_rectfill(sc, x, y, width, height, ri->ri_devcmap[bg]);
    992   1.1  macallan 	}
    993   1.1  macallan }
    994   1.1  macallan 
    995   1.1  macallan /* should be enough */
    996   1.1  macallan #define MODE_IS_VALID(m) (((m)->hdisplay < 2048))
    997   1.1  macallan 
    998   1.1  macallan static void
    999   1.1  macallan pm3_setup_i2c(struct pm3fb_softc *sc)
   1000   1.1  macallan {
   1001   1.1  macallan 	int i;
   1002   1.1  macallan 
   1003   1.1  macallan 	/* Fill in the i2c tag */
   1004   1.5   thorpej 	iic_tag_init(&sc->sc_i2c);
   1005   1.1  macallan 	sc->sc_i2c.ic_cookie = sc;
   1006   1.1  macallan 	sc->sc_i2c.ic_send_start = pm3fb_i2c_send_start;
   1007   1.1  macallan 	sc->sc_i2c.ic_send_stop = pm3fb_i2c_send_stop;
   1008   1.1  macallan 	sc->sc_i2c.ic_initiate_xfer = pm3fb_i2c_initiate_xfer;
   1009   1.1  macallan 	sc->sc_i2c.ic_read_byte = pm3fb_i2c_read_byte;
   1010   1.1  macallan 	sc->sc_i2c.ic_write_byte = pm3fb_i2c_write_byte;
   1011   1.1  macallan 	sc->sc_i2c.ic_exec = NULL;
   1012   1.1  macallan 
   1013   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_DISPLAY_DATA, 0);
   1014   1.1  macallan 
   1015   1.1  macallan 	/* zero out the EDID buffer */
   1016   1.1  macallan 	memset(sc->sc_edid_data, 0, 128);
   1017   1.1  macallan 
   1018   1.1  macallan 	/* Some monitors don't respond first time */
   1019   1.1  macallan 	i = 0;
   1020   1.1  macallan 	while (sc->sc_edid_data[1] == 0 && i < 10) {
   1021   1.1  macallan 		ddc_read_edid(&sc->sc_i2c, sc->sc_edid_data, 128);
   1022   1.1  macallan 		i++;
   1023   1.1  macallan 	}
   1024   1.1  macallan 
   1025   1.1  macallan 	if (edid_parse(&sc->sc_edid_data[0], &sc->sc_ei) != -1) {
   1026   1.1  macallan 		/*
   1027   1.1  macallan 		 * Now pick a mode.
   1028   1.1  macallan 		 */
   1029  1.11  macallan #ifdef PM3FB_DEBUG
   1030  1.11  macallan 		edid_print(&sc->sc_ei);
   1031  1.11  macallan #endif
   1032   1.1  macallan 		if ((sc->sc_ei.edid_preferred_mode != NULL)) {
   1033   1.1  macallan 			struct videomode *m = sc->sc_ei.edid_preferred_mode;
   1034   1.1  macallan 			if (MODE_IS_VALID(m)) {
   1035   1.1  macallan 				sc->sc_videomode = m;
   1036   1.1  macallan 			} else {
   1037   1.1  macallan 				aprint_error_dev(sc->sc_dev,
   1038   1.1  macallan 				    "unable to use preferred mode\n");
   1039   1.1  macallan 			}
   1040   1.1  macallan 		}
   1041   1.1  macallan 		/*
   1042   1.1  macallan 		 * if we can't use the preferred mode go look for the
   1043   1.1  macallan 		 * best one we can support
   1044   1.1  macallan 		 */
   1045   1.1  macallan 		if (sc->sc_videomode == NULL) {
   1046   1.1  macallan 			struct videomode *m = sc->sc_ei.edid_modes;
   1047   1.1  macallan 
   1048   1.1  macallan 			sort_modes(sc->sc_ei.edid_modes,
   1049   1.1  macallan 			    &sc->sc_ei.edid_preferred_mode,
   1050   1.1  macallan 			    sc->sc_ei.edid_nmodes);
   1051   1.1  macallan 			if (sc->sc_videomode == NULL)
   1052   1.1  macallan 				for (int n = 0; n < sc->sc_ei.edid_nmodes; n++)
   1053   1.1  macallan 					if (MODE_IS_VALID(&m[n])) {
   1054   1.1  macallan 						sc->sc_videomode = &m[n];
   1055   1.1  macallan 						break;
   1056   1.1  macallan 					}
   1057   1.1  macallan 		}
   1058   1.1  macallan 	}
   1059   1.1  macallan 	if (sc->sc_videomode == NULL) {
   1060   1.1  macallan 		/* no EDID data? */
   1061   1.1  macallan 		sc->sc_videomode = pick_mode_by_ref(sc->sc_width,
   1062   1.1  macallan 		    sc->sc_height, 60);
   1063   1.1  macallan 	}
   1064   1.1  macallan 	if (sc->sc_videomode != NULL) {
   1065   1.1  macallan 		pm3fb_set_mode(sc, sc->sc_videomode);
   1066   1.1  macallan 	}
   1067   1.1  macallan }
   1068   1.1  macallan 
   1069   1.1  macallan /* I2C bitbanging */
   1070   1.1  macallan static void pm3fb_i2cbb_set_bits(void *cookie, uint32_t bits)
   1071   1.1  macallan {
   1072   1.1  macallan 	struct pm3fb_softc *sc = cookie;
   1073   1.1  macallan 	uint32_t out;
   1074   1.1  macallan 
   1075   1.1  macallan 	out = bits << 2;	/* bitmasks match the IN bits */
   1076   1.1  macallan 
   1077   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_DISPLAY_DATA, out);
   1078   1.1  macallan 	delay(100);
   1079   1.1  macallan }
   1080   1.1  macallan 
   1081   1.1  macallan static void pm3fb_i2cbb_set_dir(void *cookie, uint32_t dir)
   1082   1.1  macallan {
   1083   1.1  macallan 	/* Nothing to do */
   1084   1.1  macallan }
   1085   1.1  macallan 
   1086   1.1  macallan static uint32_t pm3fb_i2cbb_read(void *cookie)
   1087   1.1  macallan {
   1088   1.1  macallan 	struct pm3fb_softc *sc = cookie;
   1089   1.1  macallan 	uint32_t bits;
   1090   1.1  macallan 
   1091   1.1  macallan 	bits = bus_space_read_4(sc->sc_memt, sc->sc_regh, PM3_DISPLAY_DATA);
   1092   1.1  macallan 	return bits;
   1093   1.1  macallan }
   1094   1.1  macallan 
   1095   1.1  macallan /* higher level I2C stuff */
   1096   1.1  macallan static int
   1097   1.1  macallan pm3fb_i2c_send_start(void *cookie, int flags)
   1098   1.1  macallan {
   1099   1.1  macallan 
   1100   1.1  macallan 	return (i2c_bitbang_send_start(cookie, flags, &pm3fb_i2cbb_ops));
   1101   1.1  macallan }
   1102   1.1  macallan 
   1103   1.1  macallan static int
   1104   1.1  macallan pm3fb_i2c_send_stop(void *cookie, int flags)
   1105   1.1  macallan {
   1106   1.1  macallan 
   1107   1.1  macallan 	return (i2c_bitbang_send_stop(cookie, flags, &pm3fb_i2cbb_ops));
   1108   1.1  macallan }
   1109   1.1  macallan 
   1110   1.1  macallan static int
   1111   1.1  macallan pm3fb_i2c_initiate_xfer(void *cookie, i2c_addr_t addr, int flags)
   1112   1.1  macallan {
   1113   1.1  macallan 
   1114   1.1  macallan 	return (i2c_bitbang_initiate_xfer(cookie, addr, flags,
   1115   1.1  macallan 	    &pm3fb_i2cbb_ops));
   1116   1.1  macallan }
   1117   1.1  macallan 
   1118   1.1  macallan static int
   1119   1.1  macallan pm3fb_i2c_read_byte(void *cookie, uint8_t *valp, int flags)
   1120   1.1  macallan {
   1121   1.1  macallan 
   1122   1.1  macallan 	return (i2c_bitbang_read_byte(cookie, valp, flags, &pm3fb_i2cbb_ops));
   1123   1.1  macallan }
   1124   1.1  macallan 
   1125   1.1  macallan static int
   1126   1.1  macallan pm3fb_i2c_write_byte(void *cookie, uint8_t val, int flags)
   1127   1.1  macallan {
   1128   1.1  macallan 	return (i2c_bitbang_write_byte(cookie, val, flags, &pm3fb_i2cbb_ops));
   1129   1.1  macallan }
   1130   1.1  macallan 
   1131   1.1  macallan static int
   1132   1.1  macallan pm3fb_set_pll(struct pm3fb_softc *sc, int freq)
   1133   1.1  macallan {
   1134   1.1  macallan 	uint8_t bf = 0, bpre = 0, bpost = 0;
   1135   1.1  macallan 	int count;
   1136   1.1  macallan 	unsigned long feedback, prescale, postscale, IntRef, VCO, out_freq, diff,  VCOlow, VCOhigh, bdiff = 1000000;
   1137   1.1  macallan 
   1138   1.1  macallan 	freq *= 10; /* convert into 100Hz units */
   1139   1.1  macallan 
   1140   1.1  macallan 	for (postscale = 0; postscale <= 5; postscale++) {
   1141   1.1  macallan 		/*
   1142   1.1  macallan 		 * It is pointless going through the main loop if all values of
   1143   1.1  macallan 		 * prescale produce an VCO outside the acceptable range
   1144   1.1  macallan 		 */
   1145   1.1  macallan 		prescale = 1;
   1146   1.1  macallan 		feedback = (prescale * (1UL << postscale) * freq) / (2 * PM3_EXT_CLOCK_FREQ);
   1147   1.1  macallan 		VCOlow = (2 * PM3_EXT_CLOCK_FREQ * feedback) / prescale;
   1148   1.1  macallan 		if (VCOlow > PM3_VCO_FREQ_MAX)
   1149   1.1  macallan 			continue;
   1150   1.1  macallan 
   1151   1.1  macallan 		prescale = 255;
   1152   1.1  macallan 		feedback = (prescale * (1UL << postscale) * freq) / (2 * PM3_EXT_CLOCK_FREQ);
   1153   1.1  macallan 		VCOhigh = (2 * PM3_EXT_CLOCK_FREQ * feedback) / prescale;
   1154   1.1  macallan 		if (VCOhigh < PM3_VCO_FREQ_MIN)
   1155   1.1  macallan 			continue;
   1156   1.1  macallan 
   1157   1.1  macallan 		for (prescale = 1; prescale <= 255; prescale++) {
   1158   1.1  macallan 			IntRef = PM3_EXT_CLOCK_FREQ / prescale;
   1159   1.1  macallan 			if (IntRef < PM3_INTREF_MIN || IntRef > PM3_INTREF_MAX) {
   1160   1.1  macallan 				if (IntRef > PM3_INTREF_MAX) {
   1161   1.1  macallan 				/*
   1162   1.1  macallan 				 * Hopefully we will get into range as the prescale
   1163   1.1  macallan 				 * value increases
   1164   1.1  macallan 				 */
   1165   1.1  macallan 					continue;
   1166   1.1  macallan 				} else {
   1167   1.1  macallan 					/*
   1168   1.1  macallan 					 * already below minimum and it will only get worse
   1169   1.1  macallan 					 * move to the next postscale value
   1170   1.1  macallan 					 */
   1171   1.1  macallan 					break;
   1172   1.1  macallan 				}
   1173   1.1  macallan 			}
   1174   1.1  macallan 
   1175   1.1  macallan 			feedback = (prescale * (1UL << postscale) * freq) / (2 * PM3_EXT_CLOCK_FREQ);
   1176   1.1  macallan 
   1177   1.1  macallan 			if (feedback > 255) {
   1178   1.1  macallan 				/*
   1179   1.1  macallan 				 * prescale, feedbackscale & postscale registers
   1180   1.1  macallan 				 * are only 8 bits wide
   1181   1.1  macallan 				 */
   1182   1.1  macallan 				break;
   1183   1.1  macallan 			} else if (feedback == 255) {
   1184   1.1  macallan 				count = 1;
   1185   1.1  macallan 			} else {
   1186   1.1  macallan 				count = 2;
   1187   1.1  macallan 			}
   1188   1.1  macallan 
   1189   1.1  macallan 			do {
   1190   1.1  macallan 				VCO = (2 * PM3_EXT_CLOCK_FREQ * feedback) / prescale;
   1191   1.1  macallan 				if (VCO >= PM3_VCO_FREQ_MIN && VCO <= PM3_VCO_FREQ_MAX) {
   1192   1.1  macallan 					out_freq = VCO / (1UL << postscale);
   1193   1.1  macallan 					diff = abs(out_freq - freq);
   1194   1.1  macallan 					if (diff < bdiff) {
   1195   1.1  macallan 						bdiff = diff;
   1196   1.1  macallan 						bf = feedback;
   1197   1.1  macallan 						bpre = prescale;
   1198   1.1  macallan 						bpost = postscale;
   1199   1.1  macallan 						if (diff == 0)
   1200   1.1  macallan 							goto out;
   1201   1.1  macallan 					}
   1202   1.1  macallan 				}
   1203   1.1  macallan 				feedback++;
   1204   1.1  macallan 			} while (--count >= 0);
   1205   1.1  macallan 		}
   1206   1.1  macallan 	}
   1207   1.1  macallan out:
   1208   1.1  macallan 	pm3fb_write_dac(sc, PM3_RAMDAC_CMD_CLOCK0_PRE_SCALE, bpre);
   1209   1.1  macallan 	pm3fb_write_dac(sc, PM3_RAMDAC_CMD_CLOCK0_FEEDBACK_SCALE, bf);
   1210   1.1  macallan 	pm3fb_write_dac(sc, PM3_RAMDAC_CMD_CLOCK0_POST_SCALE, bpost);
   1211   1.1  macallan 	return 0;
   1212   1.1  macallan }
   1213   1.1  macallan 
   1214   1.1  macallan static void
   1215   1.1  macallan pm3fb_set_mode(struct pm3fb_softc *sc, const struct videomode *mode)
   1216   1.1  macallan {
   1217   1.1  macallan 	int t1, t2, t3, t4, stride;
   1218   1.1  macallan 	uint32_t vclk, tmp1;
   1219   1.1  macallan 	uint8_t sync = 0;
   1220   1.1  macallan 
   1221   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_BYPASS_MASK, 0xffffffff);
   1222   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_APERTURE1_CONTROL, 0x00000000);
   1223   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_APERTURE2_CONTROL, 0x00000000);
   1224   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FIFODISCONNECT, 0x00000007);
   1225   1.1  macallan 
   1226   1.1  macallan 	t1 = mode->hsync_start - mode->hdisplay;
   1227   1.1  macallan 	t2 = mode->vsync_start - mode->vdisplay;
   1228   1.1  macallan 	t3 = mode->hsync_end - mode->hsync_start;
   1229   1.1  macallan 	t4 = mode->vsync_end - mode->vsync_start;
   1230   1.1  macallan         stride = (mode->hdisplay + 31) & ~31;
   1231   1.1  macallan 
   1232   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_HORIZ_TOTAL,
   1233  1.11  macallan 	    (mode->htotal >> 4) - 1);
   1234   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_HORIZ_SYNC_END,
   1235   1.1  macallan 	    (t1 + t3) >> 4);
   1236   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_HORIZ_SYNC_START,
   1237   1.1  macallan 	    (t1 >> 4));
   1238   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_HORIZ_BLANK_END,
   1239   1.1  macallan 	    (mode->htotal - mode->hdisplay) >> 4);
   1240   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_HORIZ_GATE_END,
   1241   1.1  macallan 	    (mode->htotal - mode->hdisplay) >> 4);
   1242   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_SCREEN_STRIDE,
   1243   1.1  macallan 	    (stride >> 4));
   1244   1.1  macallan 
   1245   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh,
   1246   1.1  macallan 	    PM3_VERT_TOTAL, mode->vtotal - 1);
   1247   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh,
   1248   1.1  macallan 	    PM3_VERT_SYNC_END, t2 + t4 - 1);
   1249   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh,
   1250   1.1  macallan 	    PM3_VERT_SYNC_START, t2 - 1);
   1251   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh,
   1252   1.1  macallan 	    PM3_VERT_BLANK_END, mode->vtotal - mode->vdisplay);
   1253   1.1  macallan 
   1254   1.1  macallan 	/*8bpp*/
   1255   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh,
   1256   1.1  macallan 	    PM3_BYAPERTURE1MODE, PM3_BYAPERTUREMODE_PIXELSIZE_8BIT);
   1257   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh,
   1258   1.1  macallan 	    PM3_BYAPERTURE2MODE, PM3_BYAPERTUREMODE_PIXELSIZE_8BIT);
   1259   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_VIDEO_CONTROL,
   1260   1.1  macallan 	    (PM3_VC_ENABLE | PM3_VC_HSC_ACTIVE_HIGH | PM3_VC_VSC_ACTIVE_HIGH | PM3_VC_PIXELSIZE_8BIT));
   1261   1.1  macallan 
   1262   1.1  macallan 	vclk = bus_space_read_4(sc->sc_memt, sc->sc_regh, PM3_V_CLOCK_CTL);
   1263   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_V_CLOCK_CTL, (vclk & 0xFFFFFFFC));
   1264   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_SCREEN_BASE, 0x0);
   1265   1.1  macallan 
   1266   1.1  macallan 	tmp1 = bus_space_read_4(sc->sc_memt, sc->sc_regh, PM3_CHIP_CONFIG);
   1267   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_CHIP_CONFIG, tmp1 & 0xFFFFFFFD);
   1268   1.1  macallan 
   1269   1.1  macallan 	pm3fb_set_pll(sc, mode->dot_clock);
   1270   1.1  macallan 
   1271   1.1  macallan 	if (mode->flags & VID_PHSYNC)
   1272   1.1  macallan 		sync |= PM3_SC_HSYNC_ACTIVE_HIGH;
   1273   1.1  macallan 	if (mode->flags & VID_PVSYNC)
   1274   1.1  macallan 		sync |= PM3_SC_VSYNC_ACTIVE_HIGH;
   1275   1.1  macallan 
   1276   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh,
   1277   1.1  macallan 	    PM3_RD_PM3_INDEX_CONTROL, PM3_INCREMENT_DISABLE);
   1278   1.1  macallan 	pm3fb_write_dac(sc, PM3_RAMDAC_CMD_SYNC_CONTROL, sync);
   1279   1.1  macallan 	pm3fb_write_dac(sc, PM3_RAMDAC_CMD_DAC_CONTROL, 0x00);
   1280   1.1  macallan 
   1281   1.1  macallan 	pm3fb_write_dac(sc, PM3_RAMDAC_CMD_PIXEL_SIZE, PM3_DACPS_8BIT);
   1282   1.1  macallan 	pm3fb_write_dac(sc, PM3_RAMDAC_CMD_COLOR_FORMAT,
   1283   1.1  macallan 	    (PM3_CF_ORDER_BGR | PM3_CF_VISUAL_256_COLOR));
   1284   1.1  macallan 	pm3fb_write_dac(sc, PM3_RAMDAC_CMD_MISC_CONTROL, PM3_MC_DAC_SIZE_8BIT);
   1285   1.1  macallan 
   1286   1.1  macallan 	bus_space_write_4(sc->sc_memt, sc->sc_regh, PM3_FIFOCONTROL, 0x00000905);
   1287   1.1  macallan 
   1288   1.1  macallan 	sc->sc_width = mode->hdisplay;
   1289   1.1  macallan 	sc->sc_height = mode->vdisplay;
   1290   1.1  macallan 	sc->sc_depth = 8;
   1291   1.1  macallan 	sc->sc_stride = stride;
   1292   1.1  macallan 	aprint_normal_dev(sc->sc_dev, "pm3 using %d x %d in 8 bit, stride %d\n",
   1293   1.4  macallan 	    sc->sc_width, sc->sc_height, stride);
   1294   1.1  macallan }
   1295