Home | History | Annotate | Line # | Download | only in tc
pxg.c revision 1.6
      1  1.6  ad /* 	$NetBSD: pxg.c,v 1.6 2001/09/18 19:51:23 ad Exp $	*/
      2  1.1  ad 
      3  1.1  ad /*-
      4  1.3  ad  * Copyright (c) 1999, 2000, 2001 The NetBSD Foundation, Inc.
      5  1.1  ad  * All rights reserved.
      6  1.1  ad  *
      7  1.1  ad  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  ad  * by Andrew Doran.
      9  1.1  ad  *
     10  1.1  ad  * Redistribution and use in source and binary forms, with or without
     11  1.1  ad  * modification, are permitted provided that the following conditions
     12  1.1  ad  * are met:
     13  1.1  ad  * 1. Redistributions of source code must retain the above copyright
     14  1.1  ad  *    notice, this list of conditions and the following disclaimer.
     15  1.1  ad  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  ad  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  ad  *    documentation and/or other materials provided with the distribution.
     18  1.1  ad  * 3. All advertising materials mentioning features or use of this software
     19  1.1  ad  *    must display the following acknowledgement:
     20  1.1  ad  *	This product includes software developed by the NetBSD
     21  1.1  ad  *	Foundation, Inc. and its contributors.
     22  1.1  ad  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  ad  *    contributors may be used to endorse or promote products derived
     24  1.1  ad  *    from this software without specific prior written permission.
     25  1.1  ad  *
     26  1.1  ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  ad  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  ad  */
     38  1.1  ad 
     39  1.1  ad /*
     40  1.1  ad  * Driver for DEC PixelStamp graphics accelerators with onboard SRAM and
     41  1.1  ad  * Intel i860 co-processor (PMAG-D, E and F).
     42  1.1  ad  */
     43  1.1  ad 
     44  1.1  ad #include <sys/param.h>
     45  1.1  ad #include <sys/types.h>
     46  1.1  ad #include <sys/systm.h>
     47  1.1  ad #include <sys/device.h>
     48  1.1  ad #include <sys/malloc.h>
     49  1.1  ad #include <sys/callout.h>
     50  1.2  ad #include <sys/proc.h>
     51  1.1  ad 
     52  1.1  ad #if defined(pmax)
     53  1.1  ad #include <mips/cpuregs.h>
     54  1.1  ad #elif defined(alpha)
     55  1.1  ad #include <alpha/alpha_cpu.h>
     56  1.1  ad #endif
     57  1.1  ad 
     58  1.1  ad #include <machine/autoconf.h>
     59  1.1  ad #include <machine/cpu.h>
     60  1.1  ad #include <machine/bus.h>
     61  1.1  ad 
     62  1.1  ad #include <dev/cons.h>
     63  1.1  ad 
     64  1.1  ad #include <dev/wscons/wsconsio.h>
     65  1.1  ad #include <dev/wscons/wsdisplayvar.h>
     66  1.1  ad 
     67  1.1  ad #include <dev/ic/bt459reg.h>
     68  1.1  ad 
     69  1.1  ad #include <dev/tc/tcvar.h>
     70  1.1  ad #include <dev/tc/sticreg.h>
     71  1.6  ad #include <dev/tc/sticio.h>
     72  1.1  ad #include <dev/tc/sticvar.h>
     73  1.6  ad #include <dev/tc/pxgvar.h>
     74  1.1  ad 
     75  1.1  ad #define	PXG_STIC_POLL_OFFSET	0x000000	/* STIC DMA poll space */
     76  1.1  ad #define	PXG_STAMP_OFFSET	0x0c0000	/* pixelstamp space on STIC */
     77  1.1  ad #define	PXG_STIC_OFFSET		0x180000	/* STIC registers */
     78  1.3  ad #define	PXG_SRAM_OFFSET		0x200000	/* 128 or 256kB of SRAM */
     79  1.2  ad #define	PXG_HOST_INTR_OFFSET	0x280000	/* i860 host interrupt */
     80  1.2  ad #define	PXG_COPROC_INTR_OFFSET	0x2c0000	/* i860 coprocessor interrupt */
     81  1.1  ad #define	PXG_VDAC_OFFSET		0x300000	/* VDAC registers (bt459) */
     82  1.1  ad #define	PXG_VDAC_RESET_OFFSET	0x340000	/* VDAC reset register */
     83  1.1  ad #define	PXG_ROM_OFFSET		0x380000	/* ROM code */
     84  1.2  ad #define	PXG_I860_START_OFFSET	0x380000	/* i860 start register */
     85  1.2  ad #define	PXG_I860_RESET_OFFSET	0x3c0000	/* i860 stop register */
     86  1.1  ad 
     87  1.6  ad void	pxg_attach(struct device *, struct device *, void *);
     88  1.6  ad int	pxg_intr(void *);
     89  1.6  ad int	pxg_match(struct device *, struct cfdata *, void *);
     90  1.6  ad 
     91  1.6  ad void	pxg_init(struct stic_info *);
     92  1.6  ad int	pxg_ioctl(struct stic_info *, u_long, caddr_t, int, struct proc *);
     93  1.6  ad u_int32_t	*pxg_pbuf_get(struct stic_info *);
     94  1.6  ad int	pxg_pbuf_post(struct stic_info *, u_int32_t *);
     95  1.6  ad int	pxg_probe_planes(struct stic_info *);
     96  1.6  ad int	pxg_probe_sram(struct stic_info *);
     97  1.1  ad 
     98  1.1  ad void	pxg_cnattach(tc_addr_t);
     99  1.1  ad 
    100  1.1  ad struct pxg_softc {
    101  1.1  ad 	struct	device pxg_dv;
    102  1.1  ad 	struct	stic_info *pxg_si;
    103  1.1  ad };
    104  1.1  ad 
    105  1.1  ad struct cfattach pxg_ca = {
    106  1.1  ad 	sizeof(struct pxg_softc), pxg_match, pxg_attach
    107  1.1  ad };
    108  1.1  ad 
    109  1.1  ad static const char *pxg_types[] = {
    110  1.5  ad 	"PMAG-DA ",
    111  1.5  ad 	"PMAG-FA ",
    112  1.5  ad 	"PMAG-FB ",
    113  1.5  ad 	"PMAGB-FA",
    114  1.5  ad 	"PMAGB-FB",
    115  1.1  ad };
    116  1.1  ad 
    117  1.6  ad int
    118  1.1  ad pxg_match(struct device *parent, struct cfdata *match, void *aux)
    119  1.1  ad {
    120  1.1  ad 	struct tc_attach_args *ta;
    121  1.1  ad 	int i;
    122  1.1  ad 
    123  1.1  ad 	ta = aux;
    124  1.1  ad 
    125  1.5  ad 	for (i = 0; i < sizeof(pxg_types) / sizeof(pxg_types[0]); i++)
    126  1.1  ad 		if (strncmp(pxg_types[i], ta->ta_modname, TC_ROM_LLEN) == 0)
    127  1.1  ad 			return (1);
    128  1.1  ad 
    129  1.1  ad 	return (0);
    130  1.1  ad }
    131  1.1  ad 
    132  1.6  ad void
    133  1.1  ad pxg_attach(struct device *parent, struct device *self, void *aux)
    134  1.1  ad {
    135  1.1  ad 	struct stic_info *si;
    136  1.1  ad 	struct tc_attach_args *ta;
    137  1.1  ad 	struct pxg_softc *pxg;
    138  1.5  ad 	int console;
    139  1.1  ad 
    140  1.1  ad 	pxg = (struct pxg_softc *)self;
    141  1.1  ad 	ta = (struct tc_attach_args *)aux;
    142  1.1  ad 
    143  1.1  ad 	if (ta->ta_addr == stic_consinfo.si_slotbase) {
    144  1.1  ad 		si = &stic_consinfo;
    145  1.1  ad 		console = 1;
    146  1.1  ad 	} else {
    147  1.1  ad 		if (stic_consinfo.si_slotbase == NULL)
    148  1.1  ad 			si = &stic_consinfo;
    149  1.1  ad 		else {
    150  1.1  ad 			si = malloc(sizeof(*si), M_DEVBUF, M_NOWAIT);
    151  1.1  ad 			memset(si, 0, sizeof(*si));
    152  1.1  ad 		}
    153  1.1  ad 		si->si_slotbase = ta->ta_addr;
    154  1.1  ad 		pxg_init(si);
    155  1.1  ad 		console = 0;
    156  1.1  ad 	}
    157  1.1  ad 
    158  1.1  ad 	pxg->pxg_si = si;
    159  1.6  ad 	si->si_dv = self;
    160  1.1  ad 	tc_intr_establish(parent, ta->ta_cookie, IPL_TTY, pxg_intr, si);
    161  1.1  ad 
    162  1.5  ad 	printf(": %d plane, %dx%d stamp, %dkB SRAM\n", si->si_depth,
    163  1.5  ad 	    si->si_stampw, si->si_stamph, (int)si->si_buf_size >> 10);
    164  1.1  ad 
    165  1.1  ad 	stic_attach(self, si, console);
    166  1.6  ad 
    167  1.6  ad #ifdef notyet
    168  1.6  ad 	/* Load the co-processor "firmware". */
    169  1.6  ad 	for (i = 0; i < sizeof(pxg_fwsegs) / sizeof(pxg_fwsegs[0]); i++)
    170  1.6  ad 		pxg_load_fwseg(si, &pxg_fwsegs[i]);
    171  1.6  ad 
    172  1.6  ad 	/* Start the i860. */
    173  1.6  ad 	si->si_slotbase[PXG_I860_START_OFFSET >> 2] = 1;
    174  1.6  ad 	tc_wmb();
    175  1.6  ad 	tc_syncbus();
    176  1.6  ad 	DELAY(40000);
    177  1.6  ad #endif
    178  1.1  ad }
    179  1.1  ad 
    180  1.1  ad void
    181  1.1  ad pxg_cnattach(tc_addr_t addr)
    182  1.1  ad {
    183  1.1  ad 	struct stic_info *si;
    184  1.1  ad 
    185  1.1  ad 	si = &stic_consinfo;
    186  1.1  ad 	si->si_slotbase = addr;
    187  1.1  ad 	pxg_init(si);
    188  1.1  ad 	stic_cnattach(si);
    189  1.1  ad }
    190  1.1  ad 
    191  1.6  ad void
    192  1.1  ad pxg_init(struct stic_info *si)
    193  1.1  ad {
    194  1.1  ad 	volatile u_int32_t *slot;
    195  1.1  ad 	caddr_t kva;
    196  1.1  ad 
    197  1.4  ad 	kva = (caddr_t)si->si_slotbase;
    198  1.1  ad 
    199  1.1  ad 	si->si_vdac = (u_int32_t *)(kva + PXG_VDAC_OFFSET);
    200  1.1  ad 	si->si_vdac_reset = (u_int32_t *)(kva + PXG_VDAC_RESET_OFFSET);
    201  1.1  ad 	si->si_stic = (volatile struct stic_regs *)(kva + PXG_STIC_OFFSET);
    202  1.1  ad 	si->si_stamp = (u_int32_t *)(kva + PXG_STAMP_OFFSET);
    203  1.4  ad 	si->si_buf = (u_int32_t *)(kva + PXG_SRAM_OFFSET);
    204  1.4  ad 	si->si_buf_phys = STIC_KSEG_TO_PHYS(si->si_buf);
    205  1.1  ad 	si->si_buf_size = pxg_probe_sram(si);
    206  1.1  ad 	si->si_disptype = WSDISPLAY_TYPE_PXG;
    207  1.6  ad 	si->si_sxc = (volatile struct stic_xcomm *)si->si_buf;
    208  1.1  ad 
    209  1.1  ad 	si->si_pbuf_get = pxg_pbuf_get;
    210  1.1  ad 	si->si_pbuf_post = pxg_pbuf_post;
    211  1.2  ad 	si->si_ioctl = pxg_ioctl;
    212  1.1  ad 
    213  1.1  ad 	/* Disable the co-processor. */
    214  1.4  ad 	slot = (volatile u_int32_t *)kva;
    215  1.2  ad 	slot[PXG_I860_RESET_OFFSET >> 2] = 0;
    216  1.4  ad 	tc_wmb();
    217  1.1  ad 	slot[PXG_HOST_INTR_OFFSET >> 2] = 0;
    218  1.4  ad 	tc_wmb();
    219  1.1  ad 	tc_syncbus();
    220  1.1  ad 	DELAY(40000);
    221  1.1  ad 
    222  1.1  ad 	/* XXX Check for a second PixelStamp. */
    223  1.1  ad 	if (((si->si_stic->sr_modcl & 0x600) >> 9) > 1)
    224  1.1  ad 		si->si_depth = 24;
    225  1.1  ad 	else
    226  1.1  ad 		si->si_depth = pxg_probe_planes(si);
    227  1.1  ad 
    228  1.1  ad 	stic_init(si);
    229  1.1  ad }
    230  1.1  ad 
    231  1.6  ad int
    232  1.1  ad pxg_probe_sram(struct stic_info *si)
    233  1.1  ad {
    234  1.1  ad 	volatile u_int32_t *a, *b;
    235  1.1  ad 
    236  1.4  ad 	a = (volatile u_int32_t *)si->si_slotbase + (PXG_SRAM_OFFSET >> 2);
    237  1.4  ad 	b = a + (0x20000 >> 2);
    238  1.1  ad 	*a = 4321;
    239  1.1  ad 	*b = 1234;
    240  1.4  ad 	tc_mb();
    241  1.1  ad 	return ((*a == *b) ? 0x20000 : 0x40000);
    242  1.1  ad }
    243  1.1  ad 
    244  1.6  ad int
    245  1.1  ad pxg_probe_planes(struct stic_info *si)
    246  1.1  ad {
    247  1.1  ad 	volatile u_int32_t *vdac;
    248  1.1  ad 	int id;
    249  1.1  ad 
    250  1.1  ad 	/*
    251  1.1  ad 	 * For the visible framebuffer (# 0), we can cheat and use the VDAC
    252  1.1  ad 	 * ID.
    253  1.1  ad 	 */
    254  1.1  ad 	vdac = si->si_vdac;
    255  1.1  ad 	vdac[BT459_REG_ADDR_LOW] = (BT459_IREG_ID & 0xff) |
    256  1.1  ad 	    ((BT459_IREG_ID & 0xff) << 8) | ((BT459_IREG_ID & 0xff) << 16);
    257  1.1  ad 	vdac[BT459_REG_ADDR_HIGH] = ((BT459_IREG_ID & 0xff00) >> 8) |
    258  1.1  ad 	    (BT459_IREG_ID & 0xff00) | ((BT459_IREG_ID & 0xff00) << 8);
    259  1.4  ad 	tc_mb();
    260  1.1  ad 	id = vdac[BT459_REG_IREG_DATA] & 0x00ffffff;
    261  1.1  ad 
    262  1.1  ad 	/* 3 VDACs */
    263  1.1  ad 	if (id == 0x004a4a4a)
    264  1.1  ad 		return (24);
    265  1.1  ad 
    266  1.1  ad 	/* 1 VDAC */
    267  1.1  ad 	if ((id & 0xff0000) == 0x4a0000 || (id & 0x00ff00) == 0x004a00 ||
    268  1.1  ad 	    (id & 0x0000ff) == 0x00004a)
    269  1.1  ad 		return (8);
    270  1.1  ad 
    271  1.1  ad 	/* XXX Assume 8 planes. */
    272  1.1  ad 	printf("pxg_probe_planes: invalid VDAC ID %x\n", id);
    273  1.1  ad 	return (8);
    274  1.1  ad }
    275  1.1  ad 
    276  1.6  ad int
    277  1.1  ad pxg_intr(void *cookie)
    278  1.1  ad {
    279  1.6  ad #ifdef notyet
    280  1.1  ad 	struct stic_info *si;
    281  1.1  ad 	volatile struct stic_regs *sr;
    282  1.1  ad 	volatile u_int32_t *hi;
    283  1.1  ad 	u_int32_t state;
    284  1.1  ad 	int it;
    285  1.1  ad 
    286  1.1  ad 	si = cookie;
    287  1.1  ad 	sr = si->si_stic;
    288  1.1  ad 	state = sr->sr_ipdvint;
    289  1.4  ad 	hi = (volatile u_int32_t *)si->si_slotbase +
    290  1.4  ad 	    (PXG_HOST_INTR_OFFSET / sizeof(u_int32_t));
    291  1.1  ad 
    292  1.1  ad 	/* Clear the interrupt condition */
    293  1.1  ad 	it = hi[0] & 15;
    294  1.1  ad 	hi[0] = 0;
    295  1.1  ad 	tc_wmb();
    296  1.1  ad 	hi[2] = 0;
    297  1.1  ad 	tc_wmb();
    298  1.1  ad 
    299  1.6  ad 	switch (it) {
    300  1.6  ad 	case 3:
    301  1.6  ad 		sr->sr_ipdvint = STIC_INT_V_WE | STIC_INT_V_EN;
    302  1.1  ad 		tc_wmb();
    303  1.1  ad 		stic_flush(si);
    304  1.6  ad 		break;
    305  1.1  ad 	}
    306  1.6  ad #else
    307  1.6  ad 	printf("pxg_intr: how did this happen?\n");
    308  1.6  ad #endif
    309  1.1  ad 	return (1);
    310  1.1  ad }
    311  1.1  ad 
    312  1.6  ad u_int32_t *
    313  1.1  ad pxg_pbuf_get(struct stic_info *si)
    314  1.1  ad {
    315  1.6  ad 	u_long off;
    316  1.1  ad 
    317  1.1  ad 	si->si_pbuf_select ^= STIC_PACKET_SIZE;
    318  1.6  ad 	off = si->si_pbuf_select + STIC_XCOMM_SIZE;
    319  1.6  ad 	return ((u_int32_t *)((caddr_t)si->si_buf + off));
    320  1.1  ad }
    321  1.1  ad 
    322  1.6  ad int
    323  1.1  ad pxg_pbuf_post(struct stic_info *si, u_int32_t *buf)
    324  1.1  ad {
    325  1.4  ad 	volatile u_int32_t *poll, junk;
    326  1.4  ad 	volatile struct stic_regs *sr;
    327  1.1  ad 	u_long v;
    328  1.1  ad 	int c;
    329  1.1  ad 
    330  1.4  ad 	sr = si->si_stic;
    331  1.4  ad 
    332  1.1  ad 	/* Get address of poll register for this buffer. */
    333  1.1  ad 	v = ((u_long)buf - (u_long)si->si_buf) >> 9;
    334  1.4  ad 	poll = (volatile u_int32_t *)((caddr_t)si->si_slotbase + v);
    335  1.1  ad 
    336  1.1  ad 	/*
    337  1.1  ad 	 * Read the poll register and make sure the stamp wants to accept
    338  1.1  ad 	 * our packet.  This read will initiate the DMA.  Don't wait for
    339  1.1  ad 	 * ever, just in case something's wrong.
    340  1.1  ad 	 */
    341  1.4  ad 	tc_mb();
    342  1.1  ad 
    343  1.1  ad 	for (c = STAMP_RETRIES; c != 0; c--) {
    344  1.4  ad 		if ((sr->sr_ipdvint & STIC_INT_P) != 0) {
    345  1.6  ad 			sr->sr_ipdvint = STIC_INT_P_WE;
    346  1.4  ad 			tc_wmb();
    347  1.4  ad 			junk = *poll;
    348  1.3  ad 			return (0);
    349  1.4  ad 		}
    350  1.1  ad 		DELAY(STAMP_DELAY);
    351  1.1  ad 	}
    352  1.1  ad 
    353  1.1  ad 	/* STIC has lost the plot, punish it. */
    354  1.1  ad 	stic_reset(si);
    355  1.1  ad 	return (-1);
    356  1.2  ad }
    357  1.2  ad 
    358  1.6  ad int
    359  1.2  ad pxg_ioctl(struct stic_info *si, u_long cmd, caddr_t data, int flag,
    360  1.2  ad 	  struct proc *p)
    361  1.2  ad {
    362  1.6  ad 	struct stic_xinfo *sxi;
    363  1.4  ad 	volatile u_int32_t *ptr;
    364  1.6  ad 	int rv, s;
    365  1.2  ad 
    366  1.6  ad 	switch (cmd) {
    367  1.6  ad 	case STICIO_START860:
    368  1.6  ad 	case STICIO_RESET860:
    369  1.2  ad 		if ((rv = suser(p->p_ucred, &p->p_acflag)) != 0)
    370  1.2  ad 			return (rv);
    371  1.6  ad 		if (si->si_dispmode != WSDISPLAYIO_MODE_MAPPED)
    372  1.6  ad 			return (EBUSY);
    373  1.4  ad 		ptr = (volatile u_int32_t *)si->si_slotbase;
    374  1.6  ad 		break;
    375  1.6  ad 	}
    376  1.6  ad 
    377  1.6  ad 	switch (cmd) {
    378  1.6  ad 	case STICIO_START860:
    379  1.6  ad 		s = spltty();
    380  1.6  ad 		ptr[PXG_I860_START_OFFSET >> 2] = 1;
    381  1.4  ad 		tc_wmb();
    382  1.6  ad 		splx(s);
    383  1.2  ad 		rv = 0;
    384  1.6  ad 		break;
    385  1.6  ad 
    386  1.6  ad 	case STICIO_RESET860:
    387  1.6  ad 		s = spltty();
    388  1.6  ad 		ptr[PXG_I860_RESET_OFFSET >> 2] = 0;
    389  1.6  ad 		tc_wmb();
    390  1.6  ad 		splx(s);
    391  1.6  ad 		rv = 0;
    392  1.6  ad 		break;
    393  1.6  ad 
    394  1.6  ad 	case STICIO_GXINFO:
    395  1.6  ad 		sxi = (struct stic_xinfo *)data;
    396  1.6  ad 		sxi->sxi_unit = si->si_unit;
    397  1.6  ad 		sxi->sxi_stampw = si->si_stampw;
    398  1.6  ad 		sxi->sxi_stamph = si->si_stamph;
    399  1.6  ad 		sxi->sxi_buf_size = si->si_buf_size;
    400  1.6  ad 		sxi->sxi_buf_phys = 0;
    401  1.6  ad 		sxi->sxi_buf_pktoff = STIC_XCOMM_SIZE;
    402  1.6  ad 		sxi->sxi_buf_pktcnt = 2;
    403  1.6  ad 		sxi->sxi_buf_imgoff = STIC_XCOMM_SIZE + STIC_PACKET_SIZE * 2;
    404  1.6  ad 		rv = 0;
    405  1.6  ad 		break;
    406  1.6  ad 
    407  1.6  ad 	default:
    408  1.2  ad 		rv = ENOTTY;
    409  1.6  ad 		break;
    410  1.6  ad 	}
    411  1.2  ad 
    412  1.2  ad 	return (rv);
    413  1.1  ad }
    414  1.6  ad 
    415  1.6  ad #ifdef notyet
    416  1.6  ad void
    417  1.6  ad pxg_load_fwseg(struct stic_info *si, struct pxg_fwseg *pfs)
    418  1.6  ad {
    419  1.6  ad 	const u_int32_t *src;
    420  1.6  ad 	u_int32_t *dst;
    421  1.6  ad 	u_int left, i;
    422  1.6  ad 
    423  1.6  ad 	dst = (u_int32_t *)((caddr_t)si->si_buf + pfs->pfs_addr);
    424  1.6  ad 	src = pfs->pfs_data;
    425  1.6  ad 
    426  1.6  ad 	for (left = pfs->pfs_compsize; left != 0; left -= 4) {
    427  1.6  ad 		if (src[0] == PXGFW_RLE_MAGIC) {
    428  1.6  ad 			for (i = src[2]; i != 0; i--)
    429  1.6  ad 				*dst++ = src[1];
    430  1.6  ad 			src += 3;
    431  1.6  ad 		} else {
    432  1.6  ad 			*dst++ = src[0];
    433  1.6  ad 			src++;
    434  1.6  ad 		}
    435  1.6  ad 	}
    436  1.6  ad 
    437  1.6  ad 	if (src == NULL)
    438  1.6  ad 		memset(dst, 0, pfs->pfs_realsize);
    439  1.6  ad }
    440  1.6  ad #endif
    441