Home | History | Annotate | Line # | Download | only in pci
hifn7751.c revision 1.61.16.2
      1  1.61.16.2  pgoyette /*	$NetBSD: hifn7751.c,v 1.61.16.2 2019/01/18 08:50:27 pgoyette Exp $	*/
      2       1.20  jonathan /*	$FreeBSD: hifn7751.c,v 1.5.2.7 2003/10/08 23:52:00 sam Exp $ */
      3       1.17   thorpej /*	$OpenBSD: hifn7751.c,v 1.140 2003/08/01 17:55:54 deraadt Exp $	*/
      4        1.1    itojun 
      5        1.1    itojun /*
      6       1.15  jonathan  * Invertex AEON / Hifn 7751 driver
      7        1.1    itojun  * Copyright (c) 1999 Invertex Inc. All rights reserved.
      8        1.1    itojun  * Copyright (c) 1999 Theo de Raadt
      9       1.15  jonathan  * Copyright (c) 2000-2001 Network Security Technologies, Inc.
     10        1.1    itojun  *			http://www.netsec.net
     11       1.20  jonathan  * Copyright (c) 2003 Hifn Inc.
     12        1.1    itojun  *
     13        1.1    itojun  * This driver is based on a previous driver by Invertex, for which they
     14        1.1    itojun  * requested:  Please send any comments, feedback, bug-fixes, or feature
     15        1.1    itojun  * requests to software (at) invertex.com.
     16        1.1    itojun  *
     17        1.1    itojun  * Redistribution and use in source and binary forms, with or without
     18        1.1    itojun  * modification, are permitted provided that the following conditions
     19        1.1    itojun  * are met:
     20        1.1    itojun  *
     21        1.1    itojun  * 1. Redistributions of source code must retain the above copyright
     22        1.1    itojun  *   notice, this list of conditions and the following disclaimer.
     23        1.1    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     24        1.1    itojun  *   notice, this list of conditions and the following disclaimer in the
     25        1.1    itojun  *   documentation and/or other materials provided with the distribution.
     26        1.1    itojun  * 3. The name of the author may not be used to endorse or promote products
     27        1.1    itojun  *   derived from this software without specific prior written permission.
     28        1.1    itojun  *
     29        1.1    itojun  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     30        1.1    itojun  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     31        1.1    itojun  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     32        1.1    itojun  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     33        1.1    itojun  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     34        1.1    itojun  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     35        1.1    itojun  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     36        1.1    itojun  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     37        1.1    itojun  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     38        1.1    itojun  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     39       1.15  jonathan  *
     40       1.15  jonathan  * Effort sponsored in part by the Defense Advanced Research Projects
     41       1.15  jonathan  * Agency (DARPA) and Air Force Research Laboratory, Air Force
     42       1.15  jonathan  * Materiel Command, USAF, under agreement number F30602-01-2-0537.
     43       1.15  jonathan  *
     44        1.1    itojun  */
     45        1.1    itojun 
     46        1.1    itojun /*
     47       1.20  jonathan  * Driver for various  Hifn pre-HIPP encryption processors.
     48        1.1    itojun  */
     49        1.6     lukem 
     50        1.6     lukem #include <sys/cdefs.h>
     51  1.61.16.2  pgoyette __KERNEL_RCSID(0, "$NetBSD: hifn7751.c,v 1.61.16.2 2019/01/18 08:50:27 pgoyette Exp $");
     52        1.1    itojun 
     53        1.1    itojun #include <sys/param.h>
     54        1.1    itojun #include <sys/systm.h>
     55       1.52       tls #include <sys/mutex.h>
     56        1.1    itojun #include <sys/proc.h>
     57        1.1    itojun #include <sys/errno.h>
     58        1.1    itojun #include <sys/malloc.h>
     59        1.1    itojun #include <sys/kernel.h>
     60        1.1    itojun #include <sys/mbuf.h>
     61       1.15  jonathan #include <sys/device.h>
     62       1.53  pgoyette #include <sys/module.h>
     63       1.15  jonathan 
     64        1.1    itojun #ifdef __OpenBSD__
     65        1.1    itojun #include <crypto/crypto.h>
     66        1.1    itojun #include <dev/rndvar.h>
     67       1.15  jonathan #else
     68       1.15  jonathan #include <opencrypto/cryptodev.h>
     69       1.47       tls #include <sys/cprng.h>
     70       1.57  riastrad #include <sys/rndpool.h>
     71       1.57  riastrad #include <sys/rndsource.h>
     72       1.48       tls #include <sys/sha1.h>
     73        1.1    itojun #endif
     74        1.1    itojun 
     75        1.1    itojun #include <dev/pci/pcireg.h>
     76        1.1    itojun #include <dev/pci/pcivar.h>
     77        1.1    itojun #include <dev/pci/pcidevs.h>
     78        1.1    itojun 
     79       1.15  jonathan #include <dev/pci/hifn7751reg.h>
     80        1.1    itojun #include <dev/pci/hifn7751var.h>
     81        1.1    itojun 
     82        1.1    itojun #undef HIFN_DEBUG
     83        1.1    itojun 
     84       1.15  jonathan #ifdef __NetBSD__
     85  1.61.16.2  pgoyette #define M_DUP_PKTHDR m_copy_pkthdr	/* XXX */
     86       1.15  jonathan #endif
     87       1.15  jonathan 
     88       1.15  jonathan #ifdef HIFN_DEBUG
     89       1.15  jonathan extern int hifn_debug;		/* patchable */
     90       1.15  jonathan int hifn_debug = 1;
     91       1.15  jonathan #endif
     92       1.15  jonathan 
     93       1.15  jonathan #ifdef __OpenBSD__
     94       1.15  jonathan #define HAVE_CRYPTO_LZS		/* OpenBSD OCF supports CRYPTO_COMP_LZS */
     95       1.15  jonathan #endif
     96       1.15  jonathan 
     97        1.1    itojun /*
     98        1.1    itojun  * Prototypes and count for the pci_device structure
     99        1.1    itojun  */
    100        1.1    itojun #ifdef __OpenBSD__
    101       1.23   thorpej static int hifn_probe((struct device *, void *, void *);
    102        1.1    itojun #else
    103       1.42    dyoung static int hifn_probe(device_t, cfdata_t, void *);
    104        1.1    itojun #endif
    105       1.42    dyoung static void hifn_attach(device_t, device_t, void *);
    106       1.53  pgoyette #ifdef __NetBSD__
    107       1.53  pgoyette static int hifn_detach(device_t, int);
    108        1.1    itojun 
    109       1.51       chs CFATTACH_DECL_NEW(hifn, sizeof(struct hifn_softc),
    110       1.53  pgoyette     hifn_probe, hifn_attach, hifn_detach, NULL);
    111       1.53  pgoyette #else
    112       1.53  pgoyette CFATTACH_DECL_NEW(hifn, sizeof(struct hifn_softc),
    113       1.10   thorpej     hifn_probe, hifn_attach, NULL, NULL);
    114       1.53  pgoyette #endif
    115        1.1    itojun 
    116        1.1    itojun #ifdef __OpenBSD__
    117        1.1    itojun struct cfdriver hifn_cd = {
    118        1.1    itojun 	0, "hifn", DV_DULL
    119        1.1    itojun };
    120        1.1    itojun #endif
    121        1.1    itojun 
    122       1.23   thorpej static void	hifn_reset_board(struct hifn_softc *, int);
    123       1.23   thorpej static void	hifn_reset_puc(struct hifn_softc *);
    124       1.23   thorpej static void	hifn_puc_wait(struct hifn_softc *);
    125       1.23   thorpej static const char *hifn_enable_crypto(struct hifn_softc *, pcireg_t);
    126       1.23   thorpej static void	hifn_set_retry(struct hifn_softc *);
    127       1.23   thorpej static void	hifn_init_dma(struct hifn_softc *);
    128       1.23   thorpej static void	hifn_init_pci_registers(struct hifn_softc *);
    129       1.23   thorpej static int	hifn_sramsize(struct hifn_softc *);
    130       1.23   thorpej static int	hifn_dramsize(struct hifn_softc *);
    131       1.23   thorpej static int	hifn_ramtype(struct hifn_softc *);
    132       1.23   thorpej static void	hifn_sessions(struct hifn_softc *);
    133       1.23   thorpej static int	hifn_intr(void *);
    134       1.23   thorpej static u_int	hifn_write_command(struct hifn_command *, u_int8_t *);
    135       1.23   thorpej static u_int32_t hifn_next_signature(u_int32_t a, u_int cnt);
    136       1.23   thorpej static int	hifn_newsession(void*, u_int32_t *, struct cryptoini *);
    137       1.23   thorpej static int	hifn_freesession(void*, u_int64_t);
    138       1.23   thorpej static int	hifn_process(void*, struct cryptop *, int);
    139       1.23   thorpej static void	hifn_callback(struct hifn_softc *, struct hifn_command *,
    140       1.23   thorpej 			      u_int8_t *);
    141       1.23   thorpej static int	hifn_crypto(struct hifn_softc *, struct hifn_command *,
    142       1.23   thorpej 			    struct cryptop*, int);
    143       1.23   thorpej static int	hifn_readramaddr(struct hifn_softc *, int, u_int8_t *);
    144       1.23   thorpej static int	hifn_writeramaddr(struct hifn_softc *, int, u_int8_t *);
    145       1.23   thorpej static int	hifn_dmamap_aligned(bus_dmamap_t);
    146       1.23   thorpej static int	hifn_dmamap_load_src(struct hifn_softc *,
    147       1.23   thorpej 				     struct hifn_command *);
    148       1.23   thorpej static int	hifn_dmamap_load_dst(struct hifn_softc *,
    149       1.23   thorpej 				     struct hifn_command *);
    150       1.23   thorpej static int	hifn_init_pubrng(struct hifn_softc *);
    151       1.25       tls static void	hifn_rng(void *);
    152       1.52       tls static void	hifn_rng_locked(void *);
    153       1.23   thorpej static void	hifn_tick(void *);
    154       1.23   thorpej static void	hifn_abort(struct hifn_softc *);
    155       1.23   thorpej static void	hifn_alloc_slot(struct hifn_softc *, int *, int *, int *,
    156       1.23   thorpej 				int *);
    157       1.23   thorpej static void	hifn_write_4(struct hifn_softc *, int, bus_size_t, u_int32_t);
    158       1.23   thorpej static u_int32_t hifn_read_4(struct hifn_softc *, int, bus_size_t);
    159       1.15  jonathan #ifdef	HAVE_CRYPTO_LZS
    160       1.23   thorpej static int	hifn_compression(struct hifn_softc *, struct cryptop *,
    161       1.23   thorpej 				 struct hifn_command *);
    162       1.23   thorpej static struct mbuf *hifn_mkmbuf_chain(int, struct mbuf *);
    163       1.23   thorpej static int	hifn_compress_enter(struct hifn_softc *, struct hifn_command *);
    164       1.23   thorpej static void	hifn_callback_comp(struct hifn_softc *, struct hifn_command *,
    165       1.23   thorpej 				   u_int8_t *);
    166       1.15  jonathan #endif	/* HAVE_CRYPTO_LZS */
    167       1.15  jonathan 
    168       1.15  jonathan struct hifn_stats hifnstats;
    169        1.1    itojun 
    170       1.16   thorpej static const struct hifn_product {
    171       1.16   thorpej 	pci_vendor_id_t		hifn_vendor;
    172       1.16   thorpej 	pci_product_id_t	hifn_product;
    173       1.16   thorpej 	int			hifn_flags;
    174       1.16   thorpej 	const char		*hifn_name;
    175       1.16   thorpej } hifn_products[] = {
    176       1.16   thorpej 	{ PCI_VENDOR_INVERTEX,	PCI_PRODUCT_INVERTEX_AEON,
    177       1.16   thorpej 	  0,
    178       1.16   thorpej 	  "Invertex AEON",
    179       1.16   thorpej 	},
    180       1.16   thorpej 
    181       1.16   thorpej 	{ PCI_VENDOR_HIFN,	PCI_PRODUCT_HIFN_7751,
    182       1.16   thorpej 	  0,
    183       1.18   thorpej 	  "Hifn 7751",
    184       1.16   thorpej 	},
    185       1.16   thorpej 	{ PCI_VENDOR_NETSEC,	PCI_PRODUCT_NETSEC_7751,
    186       1.16   thorpej 	  0,
    187       1.18   thorpej 	  "Hifn 7751 (NetSec)"
    188       1.16   thorpej 	},
    189       1.16   thorpej 
    190       1.16   thorpej 	{ PCI_VENDOR_HIFN,	PCI_PRODUCT_HIFN_7811,
    191       1.16   thorpej 	  HIFN_IS_7811 | HIFN_HAS_RNG | HIFN_HAS_LEDS | HIFN_NO_BURSTWRITE,
    192       1.18   thorpej 	  "Hifn 7811",
    193       1.16   thorpej 	},
    194       1.16   thorpej 
    195       1.16   thorpej 	{ PCI_VENDOR_HIFN,	PCI_PRODUCT_HIFN_7951,
    196       1.16   thorpej 	  HIFN_HAS_RNG | HIFN_HAS_PUBLIC,
    197       1.18   thorpej 	  "Hifn 7951",
    198       1.16   thorpej 	},
    199       1.16   thorpej 
    200       1.20  jonathan 	{ PCI_VENDOR_HIFN,	PCI_PRODUCT_HIFN_7955,
    201       1.20  jonathan 	  HIFN_HAS_RNG | HIFN_HAS_PUBLIC | HIFN_IS_7956 | HIFN_HAS_AES,
    202       1.20  jonathan 	  "Hifn 7955",
    203       1.20  jonathan 	},
    204       1.20  jonathan 
    205       1.20  jonathan 	{ PCI_VENDOR_HIFN,	PCI_PRODUCT_HIFN_7956,
    206       1.20  jonathan 	  HIFN_HAS_RNG | HIFN_HAS_PUBLIC | HIFN_IS_7956 | HIFN_HAS_AES,
    207       1.20  jonathan 	  "Hifn 7956",
    208       1.20  jonathan 	},
    209       1.20  jonathan 
    210       1.16   thorpej 
    211       1.16   thorpej 	{ 0,			0,
    212       1.16   thorpej 	  0,
    213       1.16   thorpej 	  NULL
    214       1.16   thorpej 	}
    215       1.16   thorpej };
    216       1.16   thorpej 
    217       1.16   thorpej static const struct hifn_product *
    218       1.16   thorpej hifn_lookup(const struct pci_attach_args *pa)
    219       1.16   thorpej {
    220       1.16   thorpej 	const struct hifn_product *hp;
    221       1.16   thorpej 
    222       1.16   thorpej 	for (hp = hifn_products; hp->hifn_name != NULL; hp++) {
    223       1.16   thorpej 		if (PCI_VENDOR(pa->pa_id) == hp->hifn_vendor &&
    224       1.16   thorpej 		    PCI_PRODUCT(pa->pa_id) == hp->hifn_product)
    225       1.16   thorpej 			return (hp);
    226       1.16   thorpej 	}
    227       1.16   thorpej 	return (NULL);
    228       1.16   thorpej }
    229       1.16   thorpej 
    230       1.23   thorpej static int
    231       1.42    dyoung hifn_probe(device_t parent, cfdata_t match, void *aux)
    232        1.1    itojun {
    233       1.42    dyoung 	struct pci_attach_args *pa = aux;
    234        1.1    itojun 
    235       1.16   thorpej 	if (hifn_lookup(pa) != NULL)
    236       1.42    dyoung 		return 1;
    237       1.16   thorpej 
    238       1.42    dyoung 	return 0;
    239        1.1    itojun }
    240        1.1    itojun 
    241       1.23   thorpej static void
    242       1.42    dyoung hifn_attach(device_t parent, device_t self, void *aux)
    243        1.1    itojun {
    244       1.42    dyoung 	struct hifn_softc *sc = device_private(self);
    245        1.1    itojun 	struct pci_attach_args *pa = aux;
    246       1.16   thorpej 	const struct hifn_product *hp;
    247        1.1    itojun 	pci_chipset_tag_t pc = pa->pa_pc;
    248        1.1    itojun 	pci_intr_handle_t ih;
    249        1.1    itojun 	const char *intrstr = NULL;
    250       1.16   thorpej 	const char *hifncap;
    251        1.1    itojun 	char rbase;
    252       1.53  pgoyette #ifdef __NetBSD__
    253       1.53  pgoyette #define iosize0 sc->sc_iosz0
    254       1.53  pgoyette #define iosize1 sc->sc_iosz1
    255       1.53  pgoyette #else
    256        1.1    itojun 	bus_size_t iosize0, iosize1;
    257       1.53  pgoyette #endif
    258        1.1    itojun 	u_int32_t cmd;
    259        1.1    itojun 	u_int16_t ena;
    260        1.1    itojun 	bus_dma_segment_t seg;
    261        1.1    itojun 	bus_dmamap_t dmamap;
    262        1.1    itojun 	int rseg;
    263       1.34  christos 	void *kva;
    264       1.54  christos 	char intrbuf[PCI_INTRSTR_LEN];
    265        1.1    itojun 
    266       1.16   thorpej 	hp = hifn_lookup(pa);
    267       1.16   thorpej 	if (hp == NULL) {
    268       1.16   thorpej 		printf("\n");
    269       1.16   thorpej 		panic("hifn_attach: impossible");
    270       1.16   thorpej 	}
    271       1.16   thorpej 
    272       1.49  drochner 	pci_aprint_devinfo_fancy(pa, "Crypto processor", hp->hifn_name, 1);
    273       1.13   thorpej 
    274       1.51       chs 	sc->sc_dv = self;
    275       1.15  jonathan 	sc->sc_pci_pc = pa->pa_pc;
    276       1.15  jonathan 	sc->sc_pci_tag = pa->pa_tag;
    277       1.15  jonathan 
    278       1.16   thorpej 	sc->sc_flags = hp->hifn_flags;
    279       1.15  jonathan 
    280        1.1    itojun 	cmd = pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
    281       1.16   thorpej 	cmd |= PCI_COMMAND_MASTER_ENABLE;
    282        1.1    itojun 	pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, cmd);
    283        1.1    itojun 
    284        1.1    itojun 	if (pci_mapreg_map(pa, HIFN_BAR0, PCI_MAPREG_TYPE_MEM, 0,
    285        1.1    itojun 	    &sc->sc_st0, &sc->sc_sh0, NULL, &iosize0)) {
    286       1.51       chs 		aprint_error_dev(sc->sc_dv, "can't map mem space %d\n", 0);
    287        1.1    itojun 		return;
    288        1.1    itojun 	}
    289        1.1    itojun 
    290        1.1    itojun 	if (pci_mapreg_map(pa, HIFN_BAR1, PCI_MAPREG_TYPE_MEM, 0,
    291        1.1    itojun 	    &sc->sc_st1, &sc->sc_sh1, NULL, &iosize1)) {
    292       1.51       chs 		aprint_error_dev(sc->sc_dv, "can't find mem space %d\n", 1);
    293        1.1    itojun 		goto fail_io0;
    294        1.1    itojun 	}
    295        1.1    itojun 
    296       1.15  jonathan 	hifn_set_retry(sc);
    297       1.15  jonathan 
    298       1.15  jonathan 	if (sc->sc_flags & HIFN_NO_BURSTWRITE) {
    299       1.15  jonathan 		sc->sc_waw_lastgroup = -1;
    300       1.15  jonathan 		sc->sc_waw_lastreg = 1;
    301       1.15  jonathan 	}
    302       1.15  jonathan 
    303        1.1    itojun 	sc->sc_dmat = pa->pa_dmat;
    304        1.1    itojun 	if (bus_dmamem_alloc(sc->sc_dmat, sizeof(*sc->sc_dma), PAGE_SIZE, 0,
    305        1.1    itojun 	    &seg, 1, &rseg, BUS_DMA_NOWAIT)) {
    306       1.51       chs 		aprint_error_dev(sc->sc_dv, "can't alloc DMA buffer\n");
    307        1.1    itojun 		goto fail_io1;
    308        1.1    itojun         }
    309        1.1    itojun 	if (bus_dmamem_map(sc->sc_dmat, &seg, rseg, sizeof(*sc->sc_dma), &kva,
    310        1.1    itojun 	    BUS_DMA_NOWAIT)) {
    311       1.51       chs 		aprint_error_dev(sc->sc_dv, "can't map DMA buffers (%lu bytes)\n",
    312       1.37    cegger 		    (u_long)sizeof(*sc->sc_dma));
    313        1.1    itojun 		bus_dmamem_free(sc->sc_dmat, &seg, rseg);
    314        1.1    itojun 		goto fail_io1;
    315        1.1    itojun 	}
    316        1.1    itojun 	if (bus_dmamap_create(sc->sc_dmat, sizeof(*sc->sc_dma), 1,
    317        1.1    itojun 	    sizeof(*sc->sc_dma), 0, BUS_DMA_NOWAIT, &dmamap)) {
    318       1.51       chs 		aprint_error_dev(sc->sc_dv, "can't create DMA map\n");
    319        1.1    itojun 		bus_dmamem_unmap(sc->sc_dmat, kva, sizeof(*sc->sc_dma));
    320        1.1    itojun 		bus_dmamem_free(sc->sc_dmat, &seg, rseg);
    321        1.1    itojun 		goto fail_io1;
    322        1.1    itojun 	}
    323        1.1    itojun 	if (bus_dmamap_load(sc->sc_dmat, dmamap, kva, sizeof(*sc->sc_dma),
    324        1.1    itojun 	    NULL, BUS_DMA_NOWAIT)) {
    325       1.51       chs 		aprint_error_dev(sc->sc_dv, "can't load DMA map\n");
    326        1.1    itojun 		bus_dmamap_destroy(sc->sc_dmat, dmamap);
    327        1.1    itojun 		bus_dmamem_unmap(sc->sc_dmat, kva, sizeof(*sc->sc_dma));
    328        1.1    itojun 		bus_dmamem_free(sc->sc_dmat, &seg, rseg);
    329        1.1    itojun 		goto fail_io1;
    330        1.1    itojun 	}
    331       1.15  jonathan 	sc->sc_dmamap = dmamap;
    332        1.1    itojun 	sc->sc_dma = (struct hifn_dma *)kva;
    333       1.39    cegger 	memset(sc->sc_dma, 0, sizeof(*sc->sc_dma));
    334        1.1    itojun 
    335       1.15  jonathan 	hifn_reset_board(sc, 0);
    336        1.1    itojun 
    337       1.16   thorpej 	if ((hifncap = hifn_enable_crypto(sc, pa->pa_id)) == NULL) {
    338       1.51       chs 		aprint_error_dev(sc->sc_dv, "crypto enabling failed\n");
    339        1.1    itojun 		goto fail_mem;
    340        1.1    itojun 	}
    341       1.15  jonathan 	hifn_reset_puc(sc);
    342        1.1    itojun 
    343        1.1    itojun 	hifn_init_dma(sc);
    344        1.1    itojun 	hifn_init_pci_registers(sc);
    345        1.1    itojun 
    346       1.20  jonathan 	/* XXX can't dynamically determine ram type for 795x; force dram */
    347       1.20  jonathan 	if (sc->sc_flags & HIFN_IS_7956)
    348       1.20  jonathan 		sc->sc_drammodel = 1;
    349       1.20  jonathan 	else if (hifn_ramtype(sc))
    350       1.15  jonathan 		goto fail_mem;
    351        1.1    itojun 
    352        1.1    itojun 	if (sc->sc_drammodel == 0)
    353        1.1    itojun 		hifn_sramsize(sc);
    354        1.1    itojun 	else
    355        1.1    itojun 		hifn_dramsize(sc);
    356        1.1    itojun 
    357       1.15  jonathan 	/*
    358       1.15  jonathan 	 * Workaround for NetSec 7751 rev A: half ram size because two
    359       1.15  jonathan 	 * of the address lines were left floating
    360       1.15  jonathan 	 */
    361        1.1    itojun 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_NETSEC &&
    362        1.1    itojun 	    PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_NETSEC_7751 &&
    363        1.1    itojun 	    PCI_REVISION(pa->pa_class) == 0x61)
    364        1.1    itojun 		sc->sc_ramsize >>= 1;
    365        1.1    itojun 
    366        1.2  sommerfe 	if (pci_intr_map(pa, &ih)) {
    367       1.51       chs 		aprint_error_dev(sc->sc_dv, "couldn't map interrupt\n");
    368        1.1    itojun 		goto fail_mem;
    369        1.1    itojun 	}
    370       1.54  christos 	intrstr = pci_intr_string(pc, ih, intrbuf, sizeof(intrbuf));
    371       1.15  jonathan #ifdef	__OpenBSD__
    372        1.1    itojun 	sc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, hifn_intr, sc,
    373       1.51       chs 	    device_xname(self));
    374        1.1    itojun #else
    375  1.61.16.1  pgoyette 	sc->sc_ih = pci_intr_establish_xname(pc, ih, IPL_NET, hifn_intr, sc,
    376  1.61.16.1  pgoyette 	    device_xname(self));
    377        1.1    itojun #endif
    378        1.1    itojun 	if (sc->sc_ih == NULL) {
    379       1.51       chs 		aprint_error_dev(sc->sc_dv, "couldn't establish interrupt\n");
    380        1.1    itojun 		if (intrstr != NULL)
    381       1.43     njoly 			aprint_error(" at %s", intrstr);
    382       1.43     njoly 		aprint_error("\n");
    383        1.1    itojun 		goto fail_mem;
    384        1.1    itojun 	}
    385        1.1    itojun 
    386        1.1    itojun 	hifn_sessions(sc);
    387        1.1    itojun 
    388        1.1    itojun 	rseg = sc->sc_ramsize / 1024;
    389        1.1    itojun 	rbase = 'K';
    390        1.1    itojun 	if (sc->sc_ramsize >= (1024 * 1024)) {
    391        1.1    itojun 		rbase = 'M';
    392        1.1    itojun 		rseg /= 1024;
    393        1.1    itojun 	}
    394       1.51       chs 	aprint_normal_dev(sc->sc_dv, "%s, %d%cB %cRAM, interrupting at %s\n",
    395       1.37    cegger 	    hifncap, rseg, rbase,
    396       1.44   hubertf 	    sc->sc_drammodel ? 'D' : 'S', intrstr);
    397        1.1    itojun 
    398       1.15  jonathan 	sc->sc_cid = crypto_get_driverid(0);
    399       1.15  jonathan 	if (sc->sc_cid < 0) {
    400       1.51       chs 		aprint_error_dev(sc->sc_dv, "couldn't get crypto driver id\n");
    401        1.1    itojun 		goto fail_intr;
    402       1.15  jonathan 	}
    403        1.1    itojun 
    404        1.1    itojun 	WRITE_REG_0(sc, HIFN_0_PUCNFG,
    405        1.1    itojun 	    READ_REG_0(sc, HIFN_0_PUCNFG) | HIFN_PUCNFG_CHIPID);
    406        1.1    itojun 	ena = READ_REG_0(sc, HIFN_0_PUSTAT) & HIFN_PUSTAT_CHIPENA;
    407        1.1    itojun 
    408        1.1    itojun 	switch (ena) {
    409        1.1    itojun 	case HIFN_PUSTAT_ENA_2:
    410       1.15  jonathan 		crypto_register(sc->sc_cid, CRYPTO_3DES_CBC, 0, 0,
    411       1.15  jonathan 		    hifn_newsession, hifn_freesession, hifn_process, sc);
    412       1.15  jonathan 		crypto_register(sc->sc_cid, CRYPTO_ARC4, 0, 0,
    413       1.15  jonathan 		    hifn_newsession, hifn_freesession, hifn_process, sc);
    414       1.20  jonathan 		if (sc->sc_flags & HIFN_HAS_AES)
    415       1.20  jonathan 			crypto_register(sc->sc_cid, CRYPTO_AES_CBC,  0, 0,
    416       1.20  jonathan 				hifn_newsession, hifn_freesession,
    417       1.20  jonathan 				hifn_process, sc);
    418        1.1    itojun 		/*FALLTHROUGH*/
    419        1.1    itojun 	case HIFN_PUSTAT_ENA_1:
    420       1.15  jonathan 		crypto_register(sc->sc_cid, CRYPTO_MD5, 0, 0,
    421       1.15  jonathan 		    hifn_newsession, hifn_freesession, hifn_process, sc);
    422       1.15  jonathan 		crypto_register(sc->sc_cid, CRYPTO_SHA1, 0, 0,
    423       1.15  jonathan 		    hifn_newsession, hifn_freesession, hifn_process, sc);
    424       1.36       tls 		crypto_register(sc->sc_cid, CRYPTO_MD5_HMAC_96, 0, 0,
    425       1.15  jonathan 		    hifn_newsession, hifn_freesession, hifn_process, sc);
    426       1.36       tls 		crypto_register(sc->sc_cid, CRYPTO_SHA1_HMAC_96, 0, 0,
    427       1.15  jonathan 		    hifn_newsession, hifn_freesession, hifn_process, sc);
    428       1.15  jonathan 		crypto_register(sc->sc_cid, CRYPTO_DES_CBC, 0, 0,
    429       1.15  jonathan 		    hifn_newsession, hifn_freesession, hifn_process, sc);
    430       1.15  jonathan 		break;
    431        1.1    itojun 	}
    432       1.15  jonathan 
    433       1.15  jonathan 	bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap, 0,
    434       1.15  jonathan 	    sc->sc_dmamap->dm_mapsize,
    435       1.15  jonathan 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    436       1.15  jonathan 
    437       1.59       mrg 	mutex_init(&sc->sc_mtx, MUTEX_DEFAULT, IPL_VM);
    438       1.59       mrg 
    439       1.52       tls 	if (sc->sc_flags & (HIFN_HAS_PUBLIC | HIFN_HAS_RNG)) {
    440       1.15  jonathan 		hifn_init_pubrng(sc);
    441       1.52       tls 		sc->sc_rng_need = RND_POOLBITS / NBBY;
    442       1.52       tls 	}
    443       1.52       tls 
    444       1.15  jonathan #ifdef	__OpenBSD__
    445       1.15  jonathan 	timeout_set(&sc->sc_tickto, hifn_tick, sc);
    446       1.15  jonathan 	timeout_add(&sc->sc_tickto, hz);
    447       1.15  jonathan #else
    448       1.52       tls 	callout_init(&sc->sc_tickto, CALLOUT_MPSAFE);
    449       1.15  jonathan 	callout_reset(&sc->sc_tickto, hz, hifn_tick, sc);
    450        1.1    itojun #endif
    451        1.1    itojun 	return;
    452        1.1    itojun 
    453        1.1    itojun fail_intr:
    454        1.1    itojun 	pci_intr_disestablish(pc, sc->sc_ih);
    455        1.1    itojun fail_mem:
    456        1.1    itojun 	bus_dmamap_unload(sc->sc_dmat, dmamap);
    457        1.1    itojun 	bus_dmamap_destroy(sc->sc_dmat, dmamap);
    458        1.1    itojun 	bus_dmamem_unmap(sc->sc_dmat, kva, sizeof(*sc->sc_dma));
    459        1.1    itojun 	bus_dmamem_free(sc->sc_dmat, &seg, rseg);
    460       1.15  jonathan 
    461       1.15  jonathan 	/* Turn off DMA polling */
    462       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_CNFG, HIFN_DMACNFG_MSTRESET |
    463       1.15  jonathan 	    HIFN_DMACNFG_DMARESET | HIFN_DMACNFG_MODE);
    464       1.15  jonathan 
    465        1.1    itojun fail_io1:
    466        1.1    itojun 	bus_space_unmap(sc->sc_st1, sc->sc_sh1, iosize1);
    467        1.1    itojun fail_io0:
    468        1.1    itojun 	bus_space_unmap(sc->sc_st0, sc->sc_sh0, iosize0);
    469        1.1    itojun }
    470        1.1    itojun 
    471       1.53  pgoyette #ifdef __NetBSD__
    472       1.53  pgoyette static int
    473       1.53  pgoyette hifn_detach(device_t self, int flags)
    474       1.53  pgoyette {
    475       1.53  pgoyette 	struct hifn_softc *sc = device_private(self);
    476       1.53  pgoyette 
    477       1.53  pgoyette 	hifn_abort(sc);
    478       1.53  pgoyette 
    479       1.53  pgoyette 	hifn_reset_board(sc, 1);
    480       1.53  pgoyette 
    481       1.53  pgoyette 	pci_intr_disestablish(sc->sc_pci_pc, sc->sc_ih);
    482       1.53  pgoyette 
    483       1.53  pgoyette 	crypto_unregister_all(sc->sc_cid);
    484       1.53  pgoyette 
    485       1.53  pgoyette 	rnd_detach_source(&sc->sc_rnd_source);
    486       1.53  pgoyette 
    487       1.53  pgoyette 	mutex_enter(&sc->sc_mtx);
    488       1.53  pgoyette 	callout_halt(&sc->sc_tickto, NULL);
    489       1.53  pgoyette 	if (sc->sc_flags & (HIFN_HAS_PUBLIC | HIFN_HAS_RNG))
    490       1.53  pgoyette 		callout_halt(&sc->sc_rngto, NULL);
    491       1.53  pgoyette 	mutex_exit(&sc->sc_mtx);
    492       1.53  pgoyette 
    493       1.53  pgoyette 	bus_space_unmap(sc->sc_st1, sc->sc_sh1, sc->sc_iosz1);
    494       1.53  pgoyette 	bus_space_unmap(sc->sc_st0, sc->sc_sh0, sc->sc_iosz0);
    495       1.53  pgoyette 
    496       1.53  pgoyette 	/*
    497       1.53  pgoyette 	 * XXX It's not clear if any additional buffers have been
    498       1.53  pgoyette 	 * XXX allocated and require free()ing
    499       1.53  pgoyette 	 */
    500       1.53  pgoyette 
    501       1.53  pgoyette 	return 0;
    502       1.53  pgoyette }
    503       1.53  pgoyette 
    504       1.53  pgoyette MODULE(MODULE_CLASS_DRIVER, hifn, "pci,opencrypto");
    505       1.53  pgoyette 
    506       1.53  pgoyette #ifdef _MODULE
    507       1.53  pgoyette #include "ioconf.c"
    508       1.53  pgoyette #endif
    509       1.53  pgoyette 
    510       1.53  pgoyette static int
    511       1.53  pgoyette hifn_modcmd(modcmd_t cmd, void *data)
    512       1.53  pgoyette {
    513       1.53  pgoyette 	int error = 0;
    514       1.53  pgoyette 
    515       1.53  pgoyette 	switch(cmd) {
    516       1.53  pgoyette 	case MODULE_CMD_INIT:
    517       1.53  pgoyette #ifdef _MODULE
    518       1.53  pgoyette 		error = config_init_component(cfdriver_ioconf_hifn,
    519       1.53  pgoyette 		    cfattach_ioconf_hifn, cfdata_ioconf_hifn);
    520       1.53  pgoyette #endif
    521       1.53  pgoyette 		return error;
    522       1.53  pgoyette 	case MODULE_CMD_FINI:
    523       1.53  pgoyette #ifdef _MODULE
    524       1.53  pgoyette 		error = config_fini_component(cfdriver_ioconf_hifn,
    525       1.53  pgoyette 		    cfattach_ioconf_hifn, cfdata_ioconf_hifn);
    526       1.53  pgoyette #endif
    527       1.53  pgoyette 		return error;
    528       1.53  pgoyette 	default:
    529       1.53  pgoyette 		return ENOTTY;
    530       1.53  pgoyette 	}
    531       1.53  pgoyette }
    532       1.53  pgoyette 
    533       1.53  pgoyette #endif /* ifdef __NetBSD__ */
    534       1.53  pgoyette 
    535       1.52       tls static void
    536       1.52       tls hifn_rng_get(size_t bytes, void *priv)
    537       1.52       tls {
    538       1.52       tls 	struct hifn_softc *sc = priv;
    539       1.52       tls 
    540       1.52       tls 	mutex_enter(&sc->sc_mtx);
    541       1.52       tls 	sc->sc_rng_need = bytes;
    542       1.60  riastrad 	callout_reset(&sc->sc_rngto, 0, hifn_rng, sc);
    543       1.52       tls 	mutex_exit(&sc->sc_mtx);
    544       1.52       tls }
    545       1.52       tls 
    546       1.23   thorpej static int
    547       1.17   thorpej hifn_init_pubrng(struct hifn_softc *sc)
    548       1.15  jonathan {
    549       1.15  jonathan 	u_int32_t r;
    550       1.15  jonathan 	int i;
    551       1.15  jonathan 
    552       1.15  jonathan 	if ((sc->sc_flags & HIFN_IS_7811) == 0) {
    553       1.15  jonathan 		/* Reset 7951 public key/rng engine */
    554       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_PUB_RESET,
    555       1.15  jonathan 		    READ_REG_1(sc, HIFN_1_PUB_RESET) | HIFN_PUBRST_RESET);
    556       1.15  jonathan 
    557       1.15  jonathan 		for (i = 0; i < 100; i++) {
    558       1.15  jonathan 			DELAY(1000);
    559       1.15  jonathan 			if ((READ_REG_1(sc, HIFN_1_PUB_RESET) &
    560       1.15  jonathan 			    HIFN_PUBRST_RESET) == 0)
    561       1.15  jonathan 				break;
    562       1.15  jonathan 		}
    563       1.15  jonathan 
    564       1.15  jonathan 		if (i == 100) {
    565       1.15  jonathan 			printf("%s: public key init failed\n",
    566       1.51       chs 			    device_xname(sc->sc_dv));
    567       1.15  jonathan 			return (1);
    568       1.15  jonathan 		}
    569       1.15  jonathan 	}
    570       1.15  jonathan 
    571       1.15  jonathan 	/* Enable the rng, if available */
    572       1.15  jonathan 	if (sc->sc_flags & HIFN_HAS_RNG) {
    573       1.15  jonathan 		if (sc->sc_flags & HIFN_IS_7811) {
    574       1.15  jonathan 			r = READ_REG_1(sc, HIFN_1_7811_RNGENA);
    575       1.15  jonathan 			if (r & HIFN_7811_RNGENA_ENA) {
    576       1.15  jonathan 				r &= ~HIFN_7811_RNGENA_ENA;
    577       1.15  jonathan 				WRITE_REG_1(sc, HIFN_1_7811_RNGENA, r);
    578       1.15  jonathan 			}
    579       1.15  jonathan 			WRITE_REG_1(sc, HIFN_1_7811_RNGCFG,
    580       1.15  jonathan 			    HIFN_7811_RNGCFG_DEFL);
    581       1.15  jonathan 			r |= HIFN_7811_RNGENA_ENA;
    582       1.15  jonathan 			WRITE_REG_1(sc, HIFN_1_7811_RNGENA, r);
    583       1.15  jonathan 		} else
    584       1.15  jonathan 			WRITE_REG_1(sc, HIFN_1_RNG_CONFIG,
    585       1.15  jonathan 			    READ_REG_1(sc, HIFN_1_RNG_CONFIG) |
    586       1.15  jonathan 			    HIFN_RNGCFG_ENA);
    587       1.15  jonathan 
    588       1.25       tls 		/*
    589       1.25       tls 		 * The Hifn RNG documentation states that at their
    590       1.25       tls 		 * recommended "conservative" RNG config values,
    591       1.25       tls 		 * the RNG must warm up for 0.4s before providing
    592       1.25       tls 		 * data that meet their worst-case estimate of 0.06
    593       1.25       tls 		 * bits of random data per output register bit.
    594       1.25       tls 		 */
    595       1.25       tls 		DELAY(4000);
    596       1.25       tls 
    597       1.25       tls #ifdef __NetBSD__
    598       1.52       tls 		rndsource_setcb(&sc->sc_rnd_source, hifn_rng_get, sc);
    599       1.51       chs 		rnd_attach_source(&sc->sc_rnd_source, device_xname(sc->sc_dv),
    600       1.52       tls 				  RND_TYPE_RNG,
    601       1.56       tls 				  RND_FLAG_COLLECT_VALUE|RND_FLAG_HASCB);
    602       1.25       tls #endif
    603       1.25       tls 
    604       1.15  jonathan 		if (hz >= 100)
    605       1.15  jonathan 			sc->sc_rnghz = hz / 100;
    606       1.15  jonathan 		else
    607       1.15  jonathan 			sc->sc_rnghz = 1;
    608       1.15  jonathan #ifdef	__OpenBSD__
    609       1.15  jonathan 		timeout_set(&sc->sc_rngto, hifn_rng, sc);
    610       1.15  jonathan #else	/* !__OpenBSD__ */
    611       1.52       tls 		callout_init(&sc->sc_rngto, CALLOUT_MPSAFE);
    612       1.15  jonathan #endif	/* !__OpenBSD__ */
    613       1.15  jonathan 	}
    614       1.15  jonathan 
    615       1.15  jonathan 	/* Enable public key engine, if available */
    616       1.15  jonathan 	if (sc->sc_flags & HIFN_HAS_PUBLIC) {
    617       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_PUB_IEN, HIFN_PUBIEN_DONE);
    618       1.15  jonathan 		sc->sc_dmaier |= HIFN_DMAIER_PUBDONE;
    619       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_IER, sc->sc_dmaier);
    620       1.15  jonathan 	}
    621       1.15  jonathan 
    622       1.25       tls 	/* Call directly into the RNG once to prime the pool. */
    623       1.25       tls 	hifn_rng(sc);   /* Sets callout/timeout at end */
    624       1.25       tls 
    625       1.15  jonathan 	return (0);
    626       1.15  jonathan }
    627       1.15  jonathan 
    628       1.15  jonathan static void
    629       1.52       tls hifn_rng_locked(void *vsc)
    630       1.15  jonathan {
    631       1.15  jonathan 	struct hifn_softc *sc = vsc;
    632       1.25       tls #ifdef __NetBSD__
    633       1.50       tls 	uint32_t num[64];
    634       1.25       tls #else
    635       1.50       tls 	uint32_t num[2];
    636       1.25       tls #endif
    637       1.50       tls 	uint32_t sts;
    638       1.15  jonathan 	int i;
    639       1.52       tls 	size_t got, gotent;
    640       1.52       tls 
    641       1.52       tls 	if (sc->sc_rng_need < 1) {
    642       1.52       tls 		callout_stop(&sc->sc_rngto);
    643       1.52       tls 		return;
    644       1.52       tls 	}
    645       1.15  jonathan 
    646       1.15  jonathan 	if (sc->sc_flags & HIFN_IS_7811) {
    647       1.25       tls 		for (i = 0; i < 5; i++) {	/* XXX why 5? */
    648       1.15  jonathan 			sts = READ_REG_1(sc, HIFN_1_7811_RNGSTS);
    649       1.15  jonathan 			if (sts & HIFN_7811_RNGSTS_UFL) {
    650       1.15  jonathan 				printf("%s: RNG underflow: disabling\n",
    651       1.51       chs 				    device_xname(sc->sc_dv));
    652       1.15  jonathan 				return;
    653       1.15  jonathan 			}
    654       1.15  jonathan 			if ((sts & HIFN_7811_RNGSTS_RDY) == 0)
    655       1.15  jonathan 				break;
    656       1.15  jonathan 
    657       1.15  jonathan 			/*
    658       1.15  jonathan 			 * There are at least two words in the RNG FIFO
    659       1.15  jonathan 			 * at this point.
    660       1.15  jonathan 			 */
    661       1.25       tls 			num[0] = READ_REG_1(sc, HIFN_1_7811_RNGDAT);
    662       1.25       tls 			num[1] = READ_REG_1(sc, HIFN_1_7811_RNGDAT);
    663       1.52       tls 			got = 2 * sizeof(num[0]);
    664       1.52       tls 			gotent = (got * NBBY) / HIFN_RNG_BITSPER;
    665       1.25       tls 
    666       1.25       tls #ifdef __NetBSD__
    667       1.52       tls 			rnd_add_data(&sc->sc_rnd_source, num, got, gotent);
    668       1.52       tls 			sc->sc_rng_need -= gotent;
    669       1.25       tls #else
    670       1.25       tls 			/*
    671       1.25       tls 			 * XXX This is a really bad idea.
    672       1.25       tls 			 * XXX Hifn estimate as little as 0.06
    673       1.25       tls 			 * XXX actual bits of entropy per output
    674       1.25       tls 			 * XXX register bit.  How can we tell the
    675       1.25       tls 			 * XXX kernel RNG subsystem we're handing
    676       1.25       tls 			 * XXX it 64 "true" random bits, for any
    677       1.25       tls 			 * XXX sane value of "true"?
    678       1.25       tls 			 * XXX
    679       1.25       tls 			 * XXX The right thing to do here, if we
    680       1.25       tls 			 * XXX cannot supply an estimate ourselves,
    681       1.25       tls 			 * XXX would be to hash the bits locally.
    682       1.25       tls 			 */
    683       1.25       tls 			add_true_randomness(num[0]);
    684       1.25       tls 			add_true_randomness(num[1]);
    685       1.25       tls #endif
    686       1.25       tls 
    687       1.15  jonathan 		}
    688       1.15  jonathan 	} else {
    689       1.52       tls 		int nwords = 0;
    690       1.52       tls 
    691       1.52       tls 		if (sc->sc_rng_need) {
    692       1.52       tls 			nwords = (sc->sc_rng_need * NBBY) / HIFN_RNG_BITSPER;
    693       1.55   msaitoh 			nwords = MIN(__arraycount(num), nwords);
    694       1.52       tls 		}
    695       1.52       tls 
    696       1.52       tls 		if (nwords < 2) {
    697       1.52       tls 			nwords = 2;
    698       1.52       tls 		}
    699       1.52       tls 
    700       1.25       tls 		/*
    701       1.25       tls 		 * We must be *extremely* careful here.  The Hifn
    702       1.25       tls 		 * 795x differ from the published 6500 RNG design
    703       1.25       tls 		 * in more ways than the obvious lack of the output
    704       1.25       tls 		 * FIFO and LFSR control registers.  In fact, there
    705       1.25       tls 		 * is only one LFSR, instead of the 6500's two, and
    706       1.25       tls 		 * it's 32 bits, not 31.
    707       1.25       tls 		 *
    708       1.25       tls 		 * Further, a block diagram obtained from Hifn shows
    709       1.25       tls 		 * a very curious latching of this register: the LFSR
    710       1.25       tls 		 * rotates at a frequency of RNG_Clk / 8, but the
    711       1.25       tls 		 * RNG_Data register is latched at a frequency of
    712       1.25       tls 		 * RNG_Clk, which means that it is possible for
    713       1.25       tls 		 * consecutive reads of the RNG_Data register to read
    714       1.25       tls 		 * identical state from the LFSR.  The simplest
    715       1.25       tls 		 * workaround seems to be to read eight samples from
    716       1.25       tls 		 * the register for each one that we use.  Since each
    717       1.25       tls 		 * read must require at least one PCI cycle, and
    718       1.25       tls 		 * RNG_Clk is at least PCI_Clk, this is safe.
    719       1.25       tls 		 */
    720       1.25       tls 		for(i = 0 ; i < nwords * 8; i++)
    721       1.25       tls 		{
    722       1.25       tls 			volatile u_int32_t regtmp;
    723       1.25       tls 			regtmp = READ_REG_1(sc, HIFN_1_RNG_DATA);
    724       1.25       tls 			num[i / 8] = regtmp;
    725       1.25       tls 		}
    726       1.52       tls 
    727       1.52       tls 		got = nwords * sizeof(num[0]);
    728       1.52       tls 		gotent = (got * NBBY) / HIFN_RNG_BITSPER;
    729       1.25       tls #ifdef __NetBSD__
    730       1.52       tls 		rnd_add_data(&sc->sc_rnd_source, num, got, gotent);
    731       1.52       tls 		sc->sc_rng_need -= gotent;
    732       1.25       tls #else
    733       1.25       tls 		/* XXX a bad idea; see 7811 block above */
    734       1.25       tls 		add_true_randomness(num[0]);
    735       1.25       tls #endif
    736       1.15  jonathan 	}
    737       1.15  jonathan 
    738       1.15  jonathan #ifdef	__OpenBSD__
    739       1.15  jonathan 	timeout_add(&sc->sc_rngto, sc->sc_rnghz);
    740       1.15  jonathan #else
    741       1.52       tls 	if (sc->sc_rng_need > 0) {
    742       1.52       tls 		callout_reset(&sc->sc_rngto, sc->sc_rnghz, hifn_rng, sc);
    743       1.52       tls 	}
    744       1.15  jonathan #endif
    745       1.15  jonathan }
    746       1.15  jonathan 
    747       1.23   thorpej static void
    748       1.52       tls hifn_rng(void *vsc)
    749       1.52       tls {
    750       1.52       tls 	struct hifn_softc *sc = vsc;
    751       1.52       tls 
    752       1.52       tls 	mutex_spin_enter(&sc->sc_mtx);
    753       1.52       tls 	hifn_rng_locked(vsc);
    754       1.52       tls 	mutex_spin_exit(&sc->sc_mtx);
    755       1.52       tls }
    756       1.52       tls 
    757       1.52       tls static void
    758       1.17   thorpej hifn_puc_wait(struct hifn_softc *sc)
    759       1.15  jonathan {
    760       1.15  jonathan 	int i;
    761       1.15  jonathan 
    762       1.15  jonathan 	for (i = 5000; i > 0; i--) {
    763       1.15  jonathan 		DELAY(1);
    764       1.15  jonathan 		if (!(READ_REG_0(sc, HIFN_0_PUCTRL) & HIFN_PUCTRL_RESET))
    765       1.15  jonathan 			break;
    766       1.15  jonathan 	}
    767       1.15  jonathan 	if (!i)
    768       1.51       chs 		printf("%s: proc unit did not reset\n", device_xname(sc->sc_dv));
    769       1.15  jonathan }
    770       1.15  jonathan 
    771       1.15  jonathan /*
    772       1.15  jonathan  * Reset the processing unit.
    773       1.15  jonathan  */
    774       1.23   thorpej static void
    775       1.17   thorpej hifn_reset_puc(struct hifn_softc *sc)
    776       1.15  jonathan {
    777       1.15  jonathan 	/* Reset processing unit */
    778       1.15  jonathan 	WRITE_REG_0(sc, HIFN_0_PUCTRL, HIFN_PUCTRL_DMAENA);
    779       1.15  jonathan 	hifn_puc_wait(sc);
    780       1.15  jonathan }
    781       1.15  jonathan 
    782       1.23   thorpej static void
    783       1.17   thorpej hifn_set_retry(struct hifn_softc *sc)
    784       1.15  jonathan {
    785       1.15  jonathan 	u_int32_t r;
    786       1.15  jonathan 
    787       1.15  jonathan 	r = pci_conf_read(sc->sc_pci_pc, sc->sc_pci_tag, HIFN_TRDY_TIMEOUT);
    788       1.15  jonathan 	r &= 0xffff0000;
    789       1.15  jonathan 	pci_conf_write(sc->sc_pci_pc, sc->sc_pci_tag, HIFN_TRDY_TIMEOUT, r);
    790       1.15  jonathan }
    791       1.15  jonathan 
    792        1.1    itojun /*
    793        1.1    itojun  * Resets the board.  Values in the regesters are left as is
    794        1.1    itojun  * from the reset (i.e. initial values are assigned elsewhere).
    795        1.1    itojun  */
    796       1.23   thorpej static void
    797       1.15  jonathan hifn_reset_board(struct hifn_softc *sc, int full)
    798        1.1    itojun {
    799       1.15  jonathan 	u_int32_t reg;
    800       1.15  jonathan 
    801        1.1    itojun 	/*
    802        1.1    itojun 	 * Set polling in the DMA configuration register to zero.  0x7 avoids
    803        1.1    itojun 	 * resetting the board and zeros out the other fields.
    804        1.1    itojun 	 */
    805        1.1    itojun 	WRITE_REG_1(sc, HIFN_1_DMA_CNFG, HIFN_DMACNFG_MSTRESET |
    806        1.1    itojun 	    HIFN_DMACNFG_DMARESET | HIFN_DMACNFG_MODE);
    807        1.1    itojun 
    808        1.1    itojun 	/*
    809        1.1    itojun 	 * Now that polling has been disabled, we have to wait 1 ms
    810        1.1    itojun 	 * before resetting the board.
    811        1.1    itojun 	 */
    812        1.1    itojun 	DELAY(1000);
    813        1.1    itojun 
    814       1.15  jonathan 	/* Reset the DMA unit */
    815       1.15  jonathan 	if (full) {
    816       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_CNFG, HIFN_DMACNFG_MODE);
    817       1.15  jonathan 		DELAY(1000);
    818       1.15  jonathan 	} else {
    819       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_CNFG,
    820       1.15  jonathan 		    HIFN_DMACNFG_MODE | HIFN_DMACNFG_MSTRESET);
    821       1.15  jonathan 		hifn_reset_puc(sc);
    822       1.15  jonathan 	}
    823        1.1    itojun 
    824       1.39    cegger 	memset(sc->sc_dma, 0, sizeof(*sc->sc_dma));
    825        1.1    itojun 
    826       1.15  jonathan 	/* Bring dma unit out of reset */
    827        1.1    itojun 	WRITE_REG_1(sc, HIFN_1_DMA_CNFG, HIFN_DMACNFG_MSTRESET |
    828        1.1    itojun 	    HIFN_DMACNFG_DMARESET | HIFN_DMACNFG_MODE);
    829       1.15  jonathan 
    830       1.15  jonathan 	hifn_puc_wait(sc);
    831       1.15  jonathan 
    832       1.15  jonathan 	hifn_set_retry(sc);
    833       1.15  jonathan 
    834       1.15  jonathan 	if (sc->sc_flags & HIFN_IS_7811) {
    835       1.15  jonathan 		for (reg = 0; reg < 1000; reg++) {
    836       1.15  jonathan 			if (READ_REG_1(sc, HIFN_1_7811_MIPSRST) &
    837       1.15  jonathan 			    HIFN_MIPSRST_CRAMINIT)
    838       1.15  jonathan 				break;
    839       1.15  jonathan 			DELAY(1000);
    840       1.15  jonathan 		}
    841       1.15  jonathan 		if (reg == 1000)
    842       1.15  jonathan 			printf(": cram init timeout\n");
    843       1.15  jonathan 	}
    844        1.1    itojun }
    845        1.1    itojun 
    846       1.23   thorpej static u_int32_t
    847       1.17   thorpej hifn_next_signature(u_int32_t a, u_int cnt)
    848        1.1    itojun {
    849        1.1    itojun 	int i;
    850        1.1    itojun 	u_int32_t v;
    851        1.1    itojun 
    852        1.1    itojun 	for (i = 0; i < cnt; i++) {
    853        1.1    itojun 
    854        1.1    itojun 		/* get the parity */
    855        1.1    itojun 		v = a & 0x80080125;
    856        1.1    itojun 		v ^= v >> 16;
    857        1.1    itojun 		v ^= v >> 8;
    858        1.1    itojun 		v ^= v >> 4;
    859        1.1    itojun 		v ^= v >> 2;
    860        1.1    itojun 		v ^= v >> 1;
    861        1.1    itojun 
    862        1.1    itojun 		a = (v & 1) ^ (a << 1);
    863        1.1    itojun 	}
    864        1.1    itojun 
    865        1.1    itojun 	return a;
    866        1.1    itojun }
    867        1.1    itojun 
    868       1.31  christos static struct pci2id {
    869        1.1    itojun 	u_short		pci_vendor;
    870        1.1    itojun 	u_short		pci_prod;
    871        1.1    itojun 	char		card_id[13];
    872       1.31  christos } const pci2id[] = {
    873        1.1    itojun 	{
    874       1.15  jonathan 		PCI_VENDOR_HIFN,
    875       1.15  jonathan 		PCI_PRODUCT_HIFN_7951,
    876       1.15  jonathan 		{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    877       1.15  jonathan 		  0x00, 0x00, 0x00, 0x00, 0x00 }
    878       1.15  jonathan 	}, {
    879       1.20  jonathan 		PCI_VENDOR_HIFN,
    880       1.20  jonathan 		PCI_PRODUCT_HIFN_7955,
    881       1.20  jonathan 		{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    882       1.20  jonathan 		  0x00, 0x00, 0x00, 0x00, 0x00 }
    883       1.20  jonathan 	}, {
    884       1.20  jonathan 		PCI_VENDOR_HIFN,
    885       1.20  jonathan 		PCI_PRODUCT_HIFN_7956,
    886       1.20  jonathan 		{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    887       1.20  jonathan 		  0x00, 0x00, 0x00, 0x00, 0x00 }
    888       1.20  jonathan 	}, {
    889        1.1    itojun 		PCI_VENDOR_NETSEC,
    890        1.1    itojun 		PCI_PRODUCT_NETSEC_7751,
    891        1.1    itojun 		{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    892        1.1    itojun 		  0x00, 0x00, 0x00, 0x00, 0x00 }
    893        1.1    itojun 	}, {
    894        1.1    itojun 		PCI_VENDOR_INVERTEX,
    895        1.1    itojun 		PCI_PRODUCT_INVERTEX_AEON,
    896        1.1    itojun 		{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    897        1.1    itojun 		  0x00, 0x00, 0x00, 0x00, 0x00 }
    898        1.1    itojun 	}, {
    899       1.15  jonathan 		PCI_VENDOR_HIFN,
    900       1.15  jonathan 		PCI_PRODUCT_HIFN_7811,
    901       1.15  jonathan 		{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    902       1.15  jonathan 		  0x00, 0x00, 0x00, 0x00, 0x00 }
    903       1.15  jonathan 	}, {
    904        1.1    itojun 		/*
    905        1.1    itojun 		 * Other vendors share this PCI ID as well, such as
    906        1.1    itojun 		 * http://www.powercrypt.com, and obviously they also
    907        1.1    itojun 		 * use the same key.
    908        1.1    itojun 		 */
    909        1.1    itojun 		PCI_VENDOR_HIFN,
    910        1.1    itojun 		PCI_PRODUCT_HIFN_7751,
    911        1.1    itojun 		{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    912        1.1    itojun 		  0x00, 0x00, 0x00, 0x00, 0x00 }
    913        1.1    itojun 	},
    914        1.1    itojun };
    915        1.1    itojun 
    916        1.1    itojun /*
    917        1.1    itojun  * Checks to see if crypto is already enabled.  If crypto isn't enable,
    918        1.1    itojun  * "hifn_enable_crypto" is called to enable it.  The check is important,
    919        1.1    itojun  * as enabling crypto twice will lock the board.
    920        1.1    itojun  */
    921       1.23   thorpej static const char *
    922       1.17   thorpej hifn_enable_crypto(struct hifn_softc *sc, pcireg_t pciid)
    923        1.1    itojun {
    924        1.1    itojun 	u_int32_t dmacfg, ramcfg, encl, addr, i;
    925       1.23   thorpej 	const char *offtbl = NULL;
    926        1.1    itojun 
    927        1.1    itojun 	for (i = 0; i < sizeof(pci2id)/sizeof(pci2id[0]); i++) {
    928        1.1    itojun 		if (pci2id[i].pci_vendor == PCI_VENDOR(pciid) &&
    929        1.1    itojun 		    pci2id[i].pci_prod == PCI_PRODUCT(pciid)) {
    930        1.1    itojun 			offtbl = pci2id[i].card_id;
    931        1.1    itojun 			break;
    932        1.1    itojun 		}
    933        1.1    itojun 	}
    934        1.1    itojun 
    935        1.1    itojun 	if (offtbl == NULL) {
    936        1.1    itojun #ifdef HIFN_DEBUG
    937       1.51       chs 		aprint_debug_dev(sc->sc_dv, "Unknown card!\n");
    938        1.1    itojun #endif
    939       1.16   thorpej 		return (NULL);
    940        1.1    itojun 	}
    941        1.1    itojun 
    942        1.1    itojun 	ramcfg = READ_REG_0(sc, HIFN_0_PUCNFG);
    943        1.1    itojun 	dmacfg = READ_REG_1(sc, HIFN_1_DMA_CNFG);
    944        1.1    itojun 
    945        1.1    itojun 	/*
    946        1.1    itojun 	 * The RAM config register's encrypt level bit needs to be set before
    947        1.1    itojun 	 * every read performed on the encryption level register.
    948        1.1    itojun 	 */
    949        1.1    itojun 	WRITE_REG_0(sc, HIFN_0_PUCNFG, ramcfg | HIFN_PUCNFG_CHIPID);
    950        1.1    itojun 
    951        1.1    itojun 	encl = READ_REG_0(sc, HIFN_0_PUSTAT) & HIFN_PUSTAT_CHIPENA;
    952        1.1    itojun 
    953        1.1    itojun 	/*
    954        1.1    itojun 	 * Make sure we don't re-unlock.  Two unlocks kills chip until the
    955        1.1    itojun 	 * next reboot.
    956        1.1    itojun 	 */
    957        1.1    itojun 	if (encl == HIFN_PUSTAT_ENA_1 || encl == HIFN_PUSTAT_ENA_2) {
    958        1.1    itojun #ifdef HIFN_DEBUG
    959       1.51       chs 		aprint_debug_dev(sc->sc_dv, "Strong Crypto already enabled!\n");
    960        1.1    itojun #endif
    961       1.15  jonathan 		goto report;
    962        1.1    itojun 	}
    963        1.1    itojun 
    964        1.1    itojun 	if (encl != 0 && encl != HIFN_PUSTAT_ENA_0) {
    965        1.1    itojun #ifdef HIFN_DEBUG
    966       1.51       chs 		aprint_debug_dev(sc->sc_dv, "Unknown encryption level\n");
    967        1.1    itojun #endif
    968       1.16   thorpej 		return (NULL);
    969        1.1    itojun 	}
    970        1.1    itojun 
    971        1.1    itojun 	WRITE_REG_1(sc, HIFN_1_DMA_CNFG, HIFN_DMACNFG_UNLOCK |
    972        1.1    itojun 	    HIFN_DMACNFG_MSTRESET | HIFN_DMACNFG_DMARESET | HIFN_DMACNFG_MODE);
    973        1.1    itojun 	DELAY(1000);
    974       1.15  jonathan 	addr = READ_REG_1(sc, HIFN_1_UNLOCK_SECRET1);
    975        1.1    itojun 	DELAY(1000);
    976       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_UNLOCK_SECRET2, 0);
    977        1.1    itojun 	DELAY(1000);
    978        1.1    itojun 
    979        1.1    itojun 	for (i = 0; i <= 12; i++) {
    980        1.1    itojun 		addr = hifn_next_signature(addr, offtbl[i] + 0x101);
    981       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_UNLOCK_SECRET2, addr);
    982        1.1    itojun 
    983        1.1    itojun 		DELAY(1000);
    984        1.1    itojun 	}
    985        1.1    itojun 
    986        1.1    itojun 	WRITE_REG_0(sc, HIFN_0_PUCNFG, ramcfg | HIFN_PUCNFG_CHIPID);
    987        1.1    itojun 	encl = READ_REG_0(sc, HIFN_0_PUSTAT) & HIFN_PUSTAT_CHIPENA;
    988        1.1    itojun 
    989        1.1    itojun #ifdef HIFN_DEBUG
    990        1.1    itojun 	if (encl != HIFN_PUSTAT_ENA_1 && encl != HIFN_PUSTAT_ENA_2)
    991       1.13   thorpej 		aprint_debug("Encryption engine is permanently locked until next system reset.");
    992        1.1    itojun 	else
    993       1.13   thorpej 		aprint_debug("Encryption engine enabled successfully!");
    994        1.1    itojun #endif
    995        1.1    itojun 
    996       1.15  jonathan report:
    997        1.1    itojun 	WRITE_REG_0(sc, HIFN_0_PUCNFG, ramcfg);
    998        1.1    itojun 	WRITE_REG_1(sc, HIFN_1_DMA_CNFG, dmacfg);
    999        1.1    itojun 
   1000        1.1    itojun 	switch (encl) {
   1001        1.1    itojun 	case HIFN_PUSTAT_ENA_0:
   1002       1.16   thorpej 		return ("LZS-only (no encr/auth)");
   1003       1.16   thorpej 
   1004        1.1    itojun 	case HIFN_PUSTAT_ENA_1:
   1005       1.16   thorpej 		return ("DES");
   1006       1.16   thorpej 
   1007        1.1    itojun 	case HIFN_PUSTAT_ENA_2:
   1008       1.21  jonathan 		if (sc->sc_flags & HIFN_HAS_AES)
   1009       1.21  jonathan 		    return ("3DES/AES");
   1010       1.21  jonathan 		else
   1011       1.21  jonathan 		    return ("3DES");
   1012       1.16   thorpej 
   1013        1.1    itojun 	default:
   1014       1.16   thorpej 		return ("disabled");
   1015        1.1    itojun 	}
   1016       1.16   thorpej 	/* NOTREACHED */
   1017        1.1    itojun }
   1018        1.1    itojun 
   1019        1.1    itojun /*
   1020        1.1    itojun  * Give initial values to the registers listed in the "Register Space"
   1021        1.1    itojun  * section of the HIFN Software Development reference manual.
   1022        1.1    itojun  */
   1023       1.23   thorpej static void
   1024       1.17   thorpej hifn_init_pci_registers(struct hifn_softc *sc)
   1025        1.1    itojun {
   1026        1.1    itojun 	/* write fixed values needed by the Initialization registers */
   1027        1.1    itojun 	WRITE_REG_0(sc, HIFN_0_PUCTRL, HIFN_PUCTRL_DMAENA);
   1028        1.1    itojun 	WRITE_REG_0(sc, HIFN_0_FIFOCNFG, HIFN_FIFOCNFG_THRESHOLD);
   1029        1.1    itojun 	WRITE_REG_0(sc, HIFN_0_PUIER, HIFN_PUIER_DSTOVER);
   1030        1.1    itojun 
   1031        1.1    itojun 	/* write all 4 ring address registers */
   1032       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_CRAR, sc->sc_dmamap->dm_segs[0].ds_addr +
   1033       1.15  jonathan 	    offsetof(struct hifn_dma, cmdr[0]));
   1034       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_SRAR, sc->sc_dmamap->dm_segs[0].ds_addr +
   1035       1.15  jonathan 	    offsetof(struct hifn_dma, srcr[0]));
   1036       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_DRAR, sc->sc_dmamap->dm_segs[0].ds_addr +
   1037       1.15  jonathan 	    offsetof(struct hifn_dma, dstr[0]));
   1038       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_RRAR, sc->sc_dmamap->dm_segs[0].ds_addr +
   1039       1.15  jonathan 	    offsetof(struct hifn_dma, resr[0]));
   1040       1.15  jonathan 
   1041       1.15  jonathan 	DELAY(2000);
   1042        1.1    itojun 
   1043        1.1    itojun 	/* write status register */
   1044       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_CSR,
   1045       1.15  jonathan 	    HIFN_DMACSR_D_CTRL_DIS | HIFN_DMACSR_R_CTRL_DIS |
   1046       1.15  jonathan 	    HIFN_DMACSR_S_CTRL_DIS | HIFN_DMACSR_C_CTRL_DIS |
   1047       1.15  jonathan 	    HIFN_DMACSR_D_ABORT | HIFN_DMACSR_D_DONE | HIFN_DMACSR_D_LAST |
   1048       1.15  jonathan 	    HIFN_DMACSR_D_WAIT | HIFN_DMACSR_D_OVER |
   1049       1.15  jonathan 	    HIFN_DMACSR_R_ABORT | HIFN_DMACSR_R_DONE | HIFN_DMACSR_R_LAST |
   1050       1.15  jonathan 	    HIFN_DMACSR_R_WAIT | HIFN_DMACSR_R_OVER |
   1051       1.15  jonathan 	    HIFN_DMACSR_S_ABORT | HIFN_DMACSR_S_DONE | HIFN_DMACSR_S_LAST |
   1052       1.15  jonathan 	    HIFN_DMACSR_S_WAIT |
   1053       1.15  jonathan 	    HIFN_DMACSR_C_ABORT | HIFN_DMACSR_C_DONE | HIFN_DMACSR_C_LAST |
   1054       1.15  jonathan 	    HIFN_DMACSR_C_WAIT |
   1055       1.15  jonathan 	    HIFN_DMACSR_ENGINE |
   1056       1.15  jonathan 	    ((sc->sc_flags & HIFN_HAS_PUBLIC) ?
   1057       1.15  jonathan 		HIFN_DMACSR_PUBDONE : 0) |
   1058       1.15  jonathan 	    ((sc->sc_flags & HIFN_IS_7811) ?
   1059       1.15  jonathan 		HIFN_DMACSR_ILLW | HIFN_DMACSR_ILLR : 0));
   1060       1.15  jonathan 
   1061       1.15  jonathan 	sc->sc_d_busy = sc->sc_r_busy = sc->sc_s_busy = sc->sc_c_busy = 0;
   1062       1.15  jonathan 	sc->sc_dmaier |= HIFN_DMAIER_R_DONE | HIFN_DMAIER_C_ABORT |
   1063       1.15  jonathan 	    HIFN_DMAIER_D_OVER | HIFN_DMAIER_R_OVER |
   1064       1.15  jonathan 	    HIFN_DMAIER_S_ABORT | HIFN_DMAIER_D_ABORT | HIFN_DMAIER_R_ABORT |
   1065       1.15  jonathan 	    HIFN_DMAIER_ENGINE |
   1066       1.15  jonathan 	    ((sc->sc_flags & HIFN_IS_7811) ?
   1067       1.15  jonathan 		HIFN_DMAIER_ILLW | HIFN_DMAIER_ILLR : 0);
   1068       1.15  jonathan 	sc->sc_dmaier &= ~HIFN_DMAIER_C_WAIT;
   1069       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_IER, sc->sc_dmaier);
   1070       1.15  jonathan 	CLR_LED(sc, HIFN_MIPSRST_LED0 | HIFN_MIPSRST_LED1 | HIFN_MIPSRST_LED2);
   1071       1.15  jonathan 
   1072       1.20  jonathan 	if (sc->sc_flags & HIFN_IS_7956) {
   1073       1.20  jonathan 		WRITE_REG_0(sc, HIFN_0_PUCNFG, HIFN_PUCNFG_COMPSING |
   1074       1.20  jonathan 		    HIFN_PUCNFG_TCALLPHASES |
   1075       1.20  jonathan 		    HIFN_PUCNFG_TCDRVTOTEM | HIFN_PUCNFG_BUS32);
   1076       1.20  jonathan 		WRITE_REG_1(sc, HIFN_1_PLL, HIFN_PLL_7956);
   1077       1.20  jonathan 	} else {
   1078       1.20  jonathan 		WRITE_REG_0(sc, HIFN_0_PUCNFG, HIFN_PUCNFG_COMPSING |
   1079       1.20  jonathan 		    HIFN_PUCNFG_DRFR_128 | HIFN_PUCNFG_TCALLPHASES |
   1080       1.20  jonathan 		    HIFN_PUCNFG_TCDRVTOTEM | HIFN_PUCNFG_BUS32 |
   1081       1.20  jonathan 		    (sc->sc_drammodel ? HIFN_PUCNFG_DRAM : HIFN_PUCNFG_SRAM));
   1082       1.20  jonathan 	}
   1083        1.1    itojun 
   1084        1.1    itojun 	WRITE_REG_0(sc, HIFN_0_PUISR, HIFN_PUISR_DSTOVER);
   1085        1.1    itojun 	WRITE_REG_1(sc, HIFN_1_DMA_CNFG, HIFN_DMACNFG_MSTRESET |
   1086        1.1    itojun 	    HIFN_DMACNFG_DMARESET | HIFN_DMACNFG_MODE | HIFN_DMACNFG_LAST |
   1087        1.1    itojun 	    ((HIFN_POLL_FREQUENCY << 16 ) & HIFN_DMACNFG_POLLFREQ) |
   1088        1.1    itojun 	    ((HIFN_POLL_SCALAR << 8) & HIFN_DMACNFG_POLLINVAL));
   1089        1.1    itojun }
   1090        1.1    itojun 
   1091        1.1    itojun /*
   1092        1.1    itojun  * The maximum number of sessions supported by the card
   1093        1.1    itojun  * is dependent on the amount of context ram, which
   1094        1.1    itojun  * encryption algorithms are enabled, and how compression
   1095        1.1    itojun  * is configured.  This should be configured before this
   1096        1.1    itojun  * routine is called.
   1097        1.1    itojun  */
   1098       1.23   thorpej static void
   1099       1.17   thorpej hifn_sessions(struct hifn_softc *sc)
   1100        1.1    itojun {
   1101        1.1    itojun 	u_int32_t pucnfg;
   1102        1.1    itojun 	int ctxsize;
   1103        1.1    itojun 
   1104        1.1    itojun 	pucnfg = READ_REG_0(sc, HIFN_0_PUCNFG);
   1105        1.1    itojun 
   1106        1.1    itojun 	if (pucnfg & HIFN_PUCNFG_COMPSING) {
   1107        1.1    itojun 		if (pucnfg & HIFN_PUCNFG_ENCCNFG)
   1108        1.1    itojun 			ctxsize = 128;
   1109        1.1    itojun 		else
   1110        1.1    itojun 			ctxsize = 512;
   1111       1.20  jonathan 		/*
   1112       1.20  jonathan 		 * 7955/7956 has internal context memory of 32K
   1113       1.20  jonathan 		 */
   1114       1.20  jonathan 		if (sc->sc_flags & HIFN_IS_7956)
   1115       1.20  jonathan 			sc->sc_maxses = 32768 / ctxsize;
   1116       1.20  jonathan 		else
   1117       1.20  jonathan 			sc->sc_maxses = 1 +
   1118       1.20  jonathan 			    ((sc->sc_ramsize - 32768) / ctxsize);
   1119        1.1    itojun 	}
   1120        1.1    itojun 	else
   1121        1.1    itojun 		sc->sc_maxses = sc->sc_ramsize / 16384;
   1122        1.1    itojun 
   1123        1.1    itojun 	if (sc->sc_maxses > 2048)
   1124        1.1    itojun 		sc->sc_maxses = 2048;
   1125        1.1    itojun }
   1126        1.1    itojun 
   1127       1.15  jonathan /*
   1128       1.15  jonathan  * Determine ram type (sram or dram).  Board should be just out of a reset
   1129       1.15  jonathan  * state when this is called.
   1130       1.15  jonathan  */
   1131       1.23   thorpej static int
   1132       1.17   thorpej hifn_ramtype(struct hifn_softc *sc)
   1133        1.1    itojun {
   1134        1.1    itojun 	u_int8_t data[8], dataexpect[8];
   1135        1.1    itojun 	int i;
   1136        1.1    itojun 
   1137        1.1    itojun 	for (i = 0; i < sizeof(data); i++)
   1138        1.1    itojun 		data[i] = dataexpect[i] = 0x55;
   1139       1.15  jonathan 	if (hifn_writeramaddr(sc, 0, data))
   1140       1.15  jonathan 		return (-1);
   1141       1.15  jonathan 	if (hifn_readramaddr(sc, 0, data))
   1142       1.15  jonathan 		return (-1);
   1143       1.38    cegger 	if (memcmp(data, dataexpect, sizeof(data)) != 0) {
   1144        1.1    itojun 		sc->sc_drammodel = 1;
   1145       1.15  jonathan 		return (0);
   1146        1.1    itojun 	}
   1147        1.1    itojun 
   1148        1.1    itojun 	for (i = 0; i < sizeof(data); i++)
   1149        1.1    itojun 		data[i] = dataexpect[i] = 0xaa;
   1150       1.15  jonathan 	if (hifn_writeramaddr(sc, 0, data))
   1151       1.15  jonathan 		return (-1);
   1152       1.15  jonathan 	if (hifn_readramaddr(sc, 0, data))
   1153       1.15  jonathan 		return (-1);
   1154       1.38    cegger 	if (memcmp(data, dataexpect, sizeof(data)) != 0) {
   1155        1.1    itojun 		sc->sc_drammodel = 1;
   1156       1.15  jonathan 		return (0);
   1157       1.15  jonathan 	}
   1158       1.15  jonathan 
   1159       1.15  jonathan 	return (0);
   1160        1.1    itojun }
   1161        1.1    itojun 
   1162       1.15  jonathan #define	HIFN_SRAM_MAX		(32 << 20)
   1163       1.15  jonathan #define	HIFN_SRAM_STEP_SIZE	16384
   1164       1.15  jonathan #define	HIFN_SRAM_GRANULARITY	(HIFN_SRAM_MAX / HIFN_SRAM_STEP_SIZE)
   1165       1.15  jonathan 
   1166       1.23   thorpej static int
   1167       1.17   thorpej hifn_sramsize(struct hifn_softc *sc)
   1168        1.1    itojun {
   1169       1.15  jonathan 	u_int32_t a;
   1170       1.15  jonathan 	u_int8_t data[8];
   1171       1.15  jonathan 	u_int8_t dataexpect[sizeof(data)];
   1172       1.15  jonathan 	int32_t i;
   1173        1.1    itojun 
   1174       1.15  jonathan 	for (i = 0; i < sizeof(data); i++)
   1175       1.15  jonathan 		data[i] = dataexpect[i] = i ^ 0x5a;
   1176        1.1    itojun 
   1177       1.15  jonathan 	for (i = HIFN_SRAM_GRANULARITY - 1; i >= 0; i--) {
   1178       1.15  jonathan 		a = i * HIFN_SRAM_STEP_SIZE;
   1179       1.41   tsutsui 		memcpy(data, &i, sizeof(i));
   1180       1.15  jonathan 		hifn_writeramaddr(sc, a, data);
   1181        1.1    itojun 	}
   1182        1.1    itojun 
   1183       1.15  jonathan 	for (i = 0; i < HIFN_SRAM_GRANULARITY; i++) {
   1184       1.15  jonathan 		a = i * HIFN_SRAM_STEP_SIZE;
   1185       1.41   tsutsui 		memcpy(dataexpect, &i, sizeof(i));
   1186       1.15  jonathan 		if (hifn_readramaddr(sc, a, data) < 0)
   1187        1.1    itojun 			return (0);
   1188       1.38    cegger 		if (memcmp(data, dataexpect, sizeof(data)) != 0)
   1189        1.1    itojun 			return (0);
   1190       1.15  jonathan 		sc->sc_ramsize = a + HIFN_SRAM_STEP_SIZE;
   1191        1.1    itojun 	}
   1192        1.1    itojun 
   1193        1.1    itojun 	return (0);
   1194        1.1    itojun }
   1195        1.1    itojun 
   1196        1.1    itojun /*
   1197        1.1    itojun  * XXX For dram boards, one should really try all of the
   1198        1.1    itojun  * HIFN_PUCNFG_DSZ_*'s.  This just assumes that PUCNFG
   1199        1.1    itojun  * is already set up correctly.
   1200        1.1    itojun  */
   1201       1.23   thorpej static int
   1202       1.17   thorpej hifn_dramsize(struct hifn_softc *sc)
   1203        1.1    itojun {
   1204        1.1    itojun 	u_int32_t cnfg;
   1205        1.1    itojun 
   1206       1.20  jonathan 	if (sc->sc_flags & HIFN_IS_7956) {
   1207       1.20  jonathan 		/*
   1208       1.20  jonathan 		 * 7955/7956 have a fixed internal ram of only 32K.
   1209       1.20  jonathan 		 */
   1210       1.20  jonathan 		sc->sc_ramsize = 32768;
   1211       1.20  jonathan 	} else {
   1212       1.20  jonathan 		cnfg = READ_REG_0(sc, HIFN_0_PUCNFG) &
   1213       1.20  jonathan 		    HIFN_PUCNFG_DRAMMASK;
   1214       1.20  jonathan 		sc->sc_ramsize = 1 << ((cnfg >> 13) + 18);
   1215       1.20  jonathan 	}
   1216        1.1    itojun 	return (0);
   1217        1.1    itojun }
   1218        1.1    itojun 
   1219       1.23   thorpej static void
   1220       1.17   thorpej hifn_alloc_slot(struct hifn_softc *sc, int *cmdp, int *srcp, int *dstp,
   1221       1.17   thorpej     int *resp)
   1222       1.15  jonathan {
   1223       1.15  jonathan 	struct hifn_dma *dma = sc->sc_dma;
   1224       1.15  jonathan 
   1225       1.15  jonathan 	if (dma->cmdi == HIFN_D_CMD_RSIZE) {
   1226       1.15  jonathan 		dma->cmdi = 0;
   1227       1.15  jonathan 		dma->cmdr[HIFN_D_CMD_RSIZE].l = htole32(HIFN_D_VALID |
   1228       1.15  jonathan 		    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   1229       1.15  jonathan 		HIFN_CMDR_SYNC(sc, HIFN_D_CMD_RSIZE,
   1230       1.15  jonathan 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1231       1.15  jonathan 	}
   1232       1.15  jonathan 	*cmdp = dma->cmdi++;
   1233       1.15  jonathan 	dma->cmdk = dma->cmdi;
   1234       1.15  jonathan 
   1235       1.15  jonathan 	if (dma->srci == HIFN_D_SRC_RSIZE) {
   1236       1.15  jonathan 		dma->srci = 0;
   1237       1.15  jonathan 		dma->srcr[HIFN_D_SRC_RSIZE].l = htole32(HIFN_D_VALID |
   1238       1.15  jonathan 		    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   1239       1.15  jonathan 		HIFN_SRCR_SYNC(sc, HIFN_D_SRC_RSIZE,
   1240       1.15  jonathan 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1241       1.15  jonathan 	}
   1242       1.15  jonathan 	*srcp = dma->srci++;
   1243       1.15  jonathan 	dma->srck = dma->srci;
   1244       1.15  jonathan 
   1245       1.15  jonathan 	if (dma->dsti == HIFN_D_DST_RSIZE) {
   1246       1.15  jonathan 		dma->dsti = 0;
   1247       1.15  jonathan 		dma->dstr[HIFN_D_DST_RSIZE].l = htole32(HIFN_D_VALID |
   1248       1.15  jonathan 		    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   1249       1.15  jonathan 		HIFN_DSTR_SYNC(sc, HIFN_D_DST_RSIZE,
   1250       1.15  jonathan 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1251       1.15  jonathan 	}
   1252       1.15  jonathan 	*dstp = dma->dsti++;
   1253       1.15  jonathan 	dma->dstk = dma->dsti;
   1254       1.15  jonathan 
   1255       1.15  jonathan 	if (dma->resi == HIFN_D_RES_RSIZE) {
   1256       1.15  jonathan 		dma->resi = 0;
   1257       1.15  jonathan 		dma->resr[HIFN_D_RES_RSIZE].l = htole32(HIFN_D_VALID |
   1258       1.15  jonathan 		    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   1259       1.15  jonathan 		HIFN_RESR_SYNC(sc, HIFN_D_RES_RSIZE,
   1260       1.15  jonathan 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1261       1.15  jonathan 	}
   1262       1.15  jonathan 	*resp = dma->resi++;
   1263       1.15  jonathan 	dma->resk = dma->resi;
   1264       1.15  jonathan }
   1265       1.15  jonathan 
   1266       1.23   thorpej static int
   1267       1.17   thorpej hifn_writeramaddr(struct hifn_softc *sc, int addr, u_int8_t *data)
   1268        1.1    itojun {
   1269        1.1    itojun 	struct hifn_dma *dma = sc->sc_dma;
   1270       1.15  jonathan 	struct hifn_base_command wc;
   1271        1.1    itojun 	const u_int32_t masks = HIFN_D_VALID | HIFN_D_LAST | HIFN_D_MASKDONEIRQ;
   1272       1.15  jonathan 	int r, cmdi, resi, srci, dsti;
   1273        1.1    itojun 
   1274       1.15  jonathan 	wc.masks = htole16(3 << 13);
   1275       1.15  jonathan 	wc.session_num = htole16(addr >> 14);
   1276       1.15  jonathan 	wc.total_source_count = htole16(8);
   1277       1.15  jonathan 	wc.total_dest_count = htole16(addr & 0x3fff);
   1278       1.15  jonathan 
   1279       1.15  jonathan 	hifn_alloc_slot(sc, &cmdi, &srci, &dsti, &resi);
   1280       1.15  jonathan 
   1281       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_CSR,
   1282       1.15  jonathan 	    HIFN_DMACSR_C_CTRL_ENA | HIFN_DMACSR_S_CTRL_ENA |
   1283       1.15  jonathan 	    HIFN_DMACSR_D_CTRL_ENA | HIFN_DMACSR_R_CTRL_ENA);
   1284        1.1    itojun 
   1285        1.1    itojun 	/* build write command */
   1286       1.39    cegger 	memset(dma->command_bufs[cmdi], 0, HIFN_MAX_COMMAND);
   1287       1.15  jonathan 	*(struct hifn_base_command *)dma->command_bufs[cmdi] = wc;
   1288       1.41   tsutsui 	memcpy(&dma->test_src, data, sizeof(dma->test_src));
   1289       1.15  jonathan 
   1290       1.15  jonathan 	dma->srcr[srci].p = htole32(sc->sc_dmamap->dm_segs[0].ds_addr
   1291       1.15  jonathan 	    + offsetof(struct hifn_dma, test_src));
   1292       1.15  jonathan 	dma->dstr[dsti].p = htole32(sc->sc_dmamap->dm_segs[0].ds_addr
   1293       1.15  jonathan 	    + offsetof(struct hifn_dma, test_dst));
   1294       1.15  jonathan 
   1295       1.15  jonathan 	dma->cmdr[cmdi].l = htole32(16 | masks);
   1296       1.15  jonathan 	dma->srcr[srci].l = htole32(8 | masks);
   1297       1.15  jonathan 	dma->dstr[dsti].l = htole32(4 | masks);
   1298       1.15  jonathan 	dma->resr[resi].l = htole32(4 | masks);
   1299       1.15  jonathan 
   1300       1.15  jonathan 	bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
   1301       1.15  jonathan 	    0, sc->sc_dmamap->dm_mapsize,
   1302       1.15  jonathan 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1303       1.15  jonathan 
   1304       1.15  jonathan 	for (r = 10000; r >= 0; r--) {
   1305       1.15  jonathan 		DELAY(10);
   1306       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
   1307       1.15  jonathan 		    0, sc->sc_dmamap->dm_mapsize,
   1308       1.15  jonathan 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
   1309       1.15  jonathan 		if ((dma->resr[resi].l & htole32(HIFN_D_VALID)) == 0)
   1310       1.15  jonathan 			break;
   1311       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
   1312       1.15  jonathan 		    0, sc->sc_dmamap->dm_mapsize,
   1313       1.15  jonathan 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1314       1.15  jonathan 	}
   1315       1.15  jonathan 	if (r == 0) {
   1316       1.15  jonathan 		printf("%s: writeramaddr -- "
   1317       1.15  jonathan 		    "result[%d](addr %d) still valid\n",
   1318       1.51       chs 		    device_xname(sc->sc_dv), resi, addr);
   1319       1.15  jonathan 		r = -1;
   1320       1.15  jonathan 		return (-1);
   1321       1.15  jonathan 	} else
   1322       1.15  jonathan 		r = 0;
   1323        1.1    itojun 
   1324       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_CSR,
   1325       1.15  jonathan 	    HIFN_DMACSR_C_CTRL_DIS | HIFN_DMACSR_S_CTRL_DIS |
   1326       1.15  jonathan 	    HIFN_DMACSR_D_CTRL_DIS | HIFN_DMACSR_R_CTRL_DIS);
   1327        1.1    itojun 
   1328       1.15  jonathan 	return (r);
   1329        1.1    itojun }
   1330        1.1    itojun 
   1331       1.23   thorpej static int
   1332       1.17   thorpej hifn_readramaddr(struct hifn_softc *sc, int addr, u_int8_t *data)
   1333        1.1    itojun {
   1334        1.1    itojun 	struct hifn_dma *dma = sc->sc_dma;
   1335       1.15  jonathan 	struct hifn_base_command rc;
   1336        1.1    itojun 	const u_int32_t masks = HIFN_D_VALID | HIFN_D_LAST | HIFN_D_MASKDONEIRQ;
   1337       1.15  jonathan 	int r, cmdi, srci, dsti, resi;
   1338        1.1    itojun 
   1339       1.15  jonathan 	rc.masks = htole16(2 << 13);
   1340       1.15  jonathan 	rc.session_num = htole16(addr >> 14);
   1341       1.15  jonathan 	rc.total_source_count = htole16(addr & 0x3fff);
   1342       1.15  jonathan 	rc.total_dest_count = htole16(8);
   1343       1.15  jonathan 
   1344       1.15  jonathan 	hifn_alloc_slot(sc, &cmdi, &srci, &dsti, &resi);
   1345       1.15  jonathan 
   1346       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_CSR,
   1347       1.15  jonathan 	    HIFN_DMACSR_C_CTRL_ENA | HIFN_DMACSR_S_CTRL_ENA |
   1348       1.15  jonathan 	    HIFN_DMACSR_D_CTRL_ENA | HIFN_DMACSR_R_CTRL_ENA);
   1349       1.15  jonathan 
   1350       1.39    cegger 	memset(dma->command_bufs[cmdi], 0, HIFN_MAX_COMMAND);
   1351       1.15  jonathan 	*(struct hifn_base_command *)dma->command_bufs[cmdi] = rc;
   1352       1.15  jonathan 
   1353       1.15  jonathan 	dma->srcr[srci].p = htole32(sc->sc_dmamap->dm_segs[0].ds_addr +
   1354       1.15  jonathan 	    offsetof(struct hifn_dma, test_src));
   1355       1.15  jonathan 	dma->test_src = 0;
   1356       1.15  jonathan 	dma->dstr[dsti].p =  htole32(sc->sc_dmamap->dm_segs[0].ds_addr +
   1357       1.15  jonathan 	    offsetof(struct hifn_dma, test_dst));
   1358       1.15  jonathan 	dma->test_dst = 0;
   1359       1.15  jonathan 	dma->cmdr[cmdi].l = htole32(8 | masks);
   1360       1.15  jonathan 	dma->srcr[srci].l = htole32(8 | masks);
   1361       1.15  jonathan 	dma->dstr[dsti].l = htole32(8 | masks);
   1362       1.15  jonathan 	dma->resr[resi].l = htole32(HIFN_MAX_RESULT | masks);
   1363       1.15  jonathan 
   1364       1.15  jonathan 	bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
   1365       1.15  jonathan 	    0, sc->sc_dmamap->dm_mapsize,
   1366       1.15  jonathan 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1367       1.15  jonathan 
   1368       1.15  jonathan 	for (r = 10000; r >= 0; r--) {
   1369       1.15  jonathan 		DELAY(10);
   1370       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
   1371       1.15  jonathan 		    0, sc->sc_dmamap->dm_mapsize,
   1372       1.15  jonathan 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
   1373       1.15  jonathan 		if ((dma->resr[resi].l & htole32(HIFN_D_VALID)) == 0)
   1374       1.15  jonathan 			break;
   1375       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
   1376       1.15  jonathan 		    0, sc->sc_dmamap->dm_mapsize,
   1377       1.15  jonathan 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1378       1.15  jonathan 	}
   1379       1.15  jonathan 	if (r == 0) {
   1380       1.15  jonathan 		printf("%s: readramaddr -- "
   1381       1.15  jonathan 		    "result[%d](addr %d) still valid\n",
   1382       1.51       chs 		    device_xname(sc->sc_dv), resi, addr);
   1383       1.15  jonathan 		r = -1;
   1384       1.15  jonathan 	} else {
   1385       1.15  jonathan 		r = 0;
   1386       1.41   tsutsui 		memcpy(data, &dma->test_dst, sizeof(dma->test_dst));
   1387        1.1    itojun 	}
   1388       1.15  jonathan 
   1389       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_CSR,
   1390       1.15  jonathan 	    HIFN_DMACSR_C_CTRL_DIS | HIFN_DMACSR_S_CTRL_DIS |
   1391       1.15  jonathan 	    HIFN_DMACSR_D_CTRL_DIS | HIFN_DMACSR_R_CTRL_DIS);
   1392       1.15  jonathan 
   1393       1.15  jonathan 	return (r);
   1394        1.1    itojun }
   1395        1.1    itojun 
   1396        1.1    itojun /*
   1397        1.1    itojun  * Initialize the descriptor rings.
   1398        1.1    itojun  */
   1399       1.23   thorpej static void
   1400       1.17   thorpej hifn_init_dma(struct hifn_softc *sc)
   1401        1.1    itojun {
   1402        1.1    itojun 	struct hifn_dma *dma = sc->sc_dma;
   1403        1.1    itojun 	int i;
   1404        1.1    itojun 
   1405       1.15  jonathan 	hifn_set_retry(sc);
   1406       1.15  jonathan 
   1407        1.1    itojun 	/* initialize static pointer values */
   1408        1.1    itojun 	for (i = 0; i < HIFN_D_CMD_RSIZE; i++)
   1409       1.15  jonathan 		dma->cmdr[i].p = htole32(sc->sc_dmamap->dm_segs[0].ds_addr +
   1410       1.15  jonathan 		    offsetof(struct hifn_dma, command_bufs[i][0]));
   1411        1.1    itojun 	for (i = 0; i < HIFN_D_RES_RSIZE; i++)
   1412       1.15  jonathan 		dma->resr[i].p = htole32(sc->sc_dmamap->dm_segs[0].ds_addr +
   1413       1.15  jonathan 		    offsetof(struct hifn_dma, result_bufs[i][0]));
   1414       1.15  jonathan 
   1415       1.15  jonathan 	dma->cmdr[HIFN_D_CMD_RSIZE].p =
   1416       1.15  jonathan 	    htole32(sc->sc_dmamap->dm_segs[0].ds_addr +
   1417       1.15  jonathan 		offsetof(struct hifn_dma, cmdr[0]));
   1418       1.15  jonathan 	dma->srcr[HIFN_D_SRC_RSIZE].p =
   1419       1.15  jonathan 	    htole32(sc->sc_dmamap->dm_segs[0].ds_addr +
   1420       1.15  jonathan 		offsetof(struct hifn_dma, srcr[0]));
   1421       1.15  jonathan 	dma->dstr[HIFN_D_DST_RSIZE].p =
   1422       1.15  jonathan 	    htole32(sc->sc_dmamap->dm_segs[0].ds_addr +
   1423       1.15  jonathan 		offsetof(struct hifn_dma, dstr[0]));
   1424       1.15  jonathan 	dma->resr[HIFN_D_RES_RSIZE].p =
   1425       1.15  jonathan 	    htole32(sc->sc_dmamap->dm_segs[0].ds_addr +
   1426       1.15  jonathan 		offsetof(struct hifn_dma, resr[0]));
   1427        1.1    itojun 
   1428        1.1    itojun 	dma->cmdu = dma->srcu = dma->dstu = dma->resu = 0;
   1429        1.1    itojun 	dma->cmdi = dma->srci = dma->dsti = dma->resi = 0;
   1430        1.1    itojun 	dma->cmdk = dma->srck = dma->dstk = dma->resk = 0;
   1431        1.1    itojun }
   1432        1.1    itojun 
   1433        1.1    itojun /*
   1434        1.1    itojun  * Writes out the raw command buffer space.  Returns the
   1435        1.1    itojun  * command buffer size.
   1436        1.1    itojun  */
   1437       1.23   thorpej static u_int
   1438       1.17   thorpej hifn_write_command(struct hifn_command *cmd, u_int8_t *buf)
   1439        1.1    itojun {
   1440        1.1    itojun 	u_int8_t *buf_pos;
   1441       1.15  jonathan 	struct hifn_base_command *base_cmd;
   1442       1.15  jonathan 	struct hifn_mac_command *mac_cmd;
   1443       1.15  jonathan 	struct hifn_crypt_command *cry_cmd;
   1444       1.15  jonathan 	struct hifn_comp_command *comp_cmd;
   1445       1.20  jonathan 	int using_mac, using_crypt, using_comp, len, ivlen;
   1446       1.15  jonathan 	u_int32_t dlen, slen;
   1447        1.1    itojun 
   1448        1.1    itojun 	buf_pos = buf;
   1449        1.1    itojun 	using_mac = cmd->base_masks & HIFN_BASE_CMD_MAC;
   1450        1.1    itojun 	using_crypt = cmd->base_masks & HIFN_BASE_CMD_CRYPT;
   1451       1.15  jonathan 	using_comp = cmd->base_masks & HIFN_BASE_CMD_COMP;
   1452        1.1    itojun 
   1453       1.15  jonathan 	base_cmd = (struct hifn_base_command *)buf_pos;
   1454       1.15  jonathan 	base_cmd->masks = htole16(cmd->base_masks);
   1455       1.15  jonathan 	slen = cmd->src_map->dm_mapsize;
   1456       1.15  jonathan 	if (cmd->sloplen)
   1457       1.15  jonathan 		dlen = cmd->dst_map->dm_mapsize - cmd->sloplen +
   1458       1.15  jonathan 		    sizeof(u_int32_t);
   1459       1.15  jonathan 	else
   1460       1.15  jonathan 		dlen = cmd->dst_map->dm_mapsize;
   1461       1.15  jonathan 	base_cmd->total_source_count = htole16(slen & HIFN_BASE_CMD_LENMASK_LO);
   1462       1.15  jonathan 	base_cmd->total_dest_count = htole16(dlen & HIFN_BASE_CMD_LENMASK_LO);
   1463       1.15  jonathan 	dlen >>= 16;
   1464       1.15  jonathan 	slen >>= 16;
   1465       1.15  jonathan 	base_cmd->session_num = htole16(cmd->session_num |
   1466       1.15  jonathan 	    ((slen << HIFN_BASE_CMD_SRCLEN_S) & HIFN_BASE_CMD_SRCLEN_M) |
   1467       1.15  jonathan 	    ((dlen << HIFN_BASE_CMD_DSTLEN_S) & HIFN_BASE_CMD_DSTLEN_M));
   1468       1.15  jonathan 	buf_pos += sizeof(struct hifn_base_command);
   1469       1.15  jonathan 
   1470       1.15  jonathan 	if (using_comp) {
   1471       1.15  jonathan 		comp_cmd = (struct hifn_comp_command *)buf_pos;
   1472       1.15  jonathan 		dlen = cmd->compcrd->crd_len;
   1473       1.15  jonathan 		comp_cmd->source_count = htole16(dlen & 0xffff);
   1474       1.15  jonathan 		dlen >>= 16;
   1475       1.15  jonathan 		comp_cmd->masks = htole16(cmd->comp_masks |
   1476       1.15  jonathan 		    ((dlen << HIFN_COMP_CMD_SRCLEN_S) & HIFN_COMP_CMD_SRCLEN_M));
   1477       1.15  jonathan 		comp_cmd->header_skip = htole16(cmd->compcrd->crd_skip);
   1478       1.15  jonathan 		comp_cmd->reserved = 0;
   1479       1.15  jonathan 		buf_pos += sizeof(struct hifn_comp_command);
   1480       1.15  jonathan 	}
   1481        1.1    itojun 
   1482        1.1    itojun 	if (using_mac) {
   1483       1.15  jonathan 		mac_cmd = (struct hifn_mac_command *)buf_pos;
   1484       1.15  jonathan 		dlen = cmd->maccrd->crd_len;
   1485       1.15  jonathan 		mac_cmd->source_count = htole16(dlen & 0xffff);
   1486       1.15  jonathan 		dlen >>= 16;
   1487       1.15  jonathan 		mac_cmd->masks = htole16(cmd->mac_masks |
   1488       1.15  jonathan 		    ((dlen << HIFN_MAC_CMD_SRCLEN_S) & HIFN_MAC_CMD_SRCLEN_M));
   1489       1.15  jonathan 		mac_cmd->header_skip = htole16(cmd->maccrd->crd_skip);
   1490       1.15  jonathan 		mac_cmd->reserved = 0;
   1491       1.15  jonathan 		buf_pos += sizeof(struct hifn_mac_command);
   1492        1.1    itojun 	}
   1493        1.1    itojun 
   1494        1.1    itojun 	if (using_crypt) {
   1495       1.15  jonathan 		cry_cmd = (struct hifn_crypt_command *)buf_pos;
   1496       1.15  jonathan 		dlen = cmd->enccrd->crd_len;
   1497       1.15  jonathan 		cry_cmd->source_count = htole16(dlen & 0xffff);
   1498       1.15  jonathan 		dlen >>= 16;
   1499       1.15  jonathan 		cry_cmd->masks = htole16(cmd->cry_masks |
   1500       1.15  jonathan 		    ((dlen << HIFN_CRYPT_CMD_SRCLEN_S) & HIFN_CRYPT_CMD_SRCLEN_M));
   1501       1.15  jonathan 		cry_cmd->header_skip = htole16(cmd->enccrd->crd_skip);
   1502       1.15  jonathan 		cry_cmd->reserved = 0;
   1503       1.15  jonathan 		buf_pos += sizeof(struct hifn_crypt_command);
   1504        1.1    itojun 	}
   1505        1.1    itojun 
   1506       1.15  jonathan 	if (using_mac && cmd->mac_masks & HIFN_MAC_CMD_NEW_KEY) {
   1507       1.41   tsutsui 		memcpy(buf_pos, cmd->mac, HIFN_MAC_KEY_LENGTH);
   1508        1.1    itojun 		buf_pos += HIFN_MAC_KEY_LENGTH;
   1509        1.1    itojun 	}
   1510        1.1    itojun 
   1511       1.15  jonathan 	if (using_crypt && cmd->cry_masks & HIFN_CRYPT_CMD_NEW_KEY) {
   1512       1.15  jonathan 		switch (cmd->cry_masks & HIFN_CRYPT_CMD_ALG_MASK) {
   1513       1.15  jonathan 		case HIFN_CRYPT_CMD_ALG_3DES:
   1514       1.41   tsutsui 			memcpy(buf_pos, cmd->ck, HIFN_3DES_KEY_LENGTH);
   1515       1.15  jonathan 			buf_pos += HIFN_3DES_KEY_LENGTH;
   1516       1.15  jonathan 			break;
   1517       1.15  jonathan 		case HIFN_CRYPT_CMD_ALG_DES:
   1518       1.41   tsutsui 			memcpy(buf_pos, cmd->ck, HIFN_DES_KEY_LENGTH);
   1519       1.20  jonathan 			buf_pos += HIFN_DES_KEY_LENGTH;
   1520       1.15  jonathan 			break;
   1521       1.15  jonathan 		case HIFN_CRYPT_CMD_ALG_RC4:
   1522       1.15  jonathan 			len = 256;
   1523       1.15  jonathan 			do {
   1524       1.15  jonathan 				int clen;
   1525       1.15  jonathan 
   1526       1.15  jonathan 				clen = MIN(cmd->cklen, len);
   1527       1.41   tsutsui 				memcpy(buf_pos, cmd->ck, clen);
   1528       1.15  jonathan 				len -= clen;
   1529       1.15  jonathan 				buf_pos += clen;
   1530       1.15  jonathan 			} while (len > 0);
   1531       1.39    cegger 			memset(buf_pos, 0, 4);
   1532       1.15  jonathan 			buf_pos += 4;
   1533       1.15  jonathan 			break;
   1534       1.20  jonathan 		case HIFN_CRYPT_CMD_ALG_AES:
   1535       1.20  jonathan 			/*
   1536       1.20  jonathan 			 * AES keys are variable 128, 192 and
   1537       1.20  jonathan 			 * 256 bits (16, 24 and 32 bytes).
   1538       1.20  jonathan 			 */
   1539       1.41   tsutsui 			memcpy(buf_pos, cmd->ck, cmd->cklen);
   1540       1.20  jonathan 			buf_pos += cmd->cklen;
   1541       1.20  jonathan 			break;
   1542       1.15  jonathan 		}
   1543        1.1    itojun 	}
   1544        1.1    itojun 
   1545       1.15  jonathan 	if (using_crypt && cmd->cry_masks & HIFN_CRYPT_CMD_NEW_IV) {
   1546       1.20  jonathan 		switch (cmd->cry_masks & HIFN_CRYPT_CMD_ALG_MASK) {
   1547       1.20  jonathan 		case HIFN_CRYPT_CMD_ALG_AES:
   1548       1.20  jonathan 			ivlen = HIFN_AES_IV_LENGTH;
   1549       1.20  jonathan 			break;
   1550       1.20  jonathan 		default:
   1551       1.20  jonathan 			ivlen = HIFN_IV_LENGTH;
   1552       1.20  jonathan 			break;
   1553       1.20  jonathan 		}
   1554       1.41   tsutsui 		memcpy(buf_pos, cmd->iv, ivlen);
   1555       1.20  jonathan 		buf_pos += ivlen;
   1556        1.1    itojun 	}
   1557        1.1    itojun 
   1558       1.15  jonathan 	if ((cmd->base_masks & (HIFN_BASE_CMD_MAC | HIFN_BASE_CMD_CRYPT |
   1559       1.15  jonathan 	    HIFN_BASE_CMD_COMP)) == 0) {
   1560       1.39    cegger 		memset(buf_pos, 0, 8);
   1561        1.1    itojun 		buf_pos += 8;
   1562        1.1    itojun 	}
   1563        1.1    itojun 
   1564        1.1    itojun 	return (buf_pos - buf);
   1565        1.1    itojun }
   1566        1.1    itojun 
   1567       1.23   thorpej static int
   1568       1.17   thorpej hifn_dmamap_aligned(bus_dmamap_t map)
   1569       1.15  jonathan {
   1570       1.15  jonathan 	int i;
   1571       1.15  jonathan 
   1572       1.15  jonathan 	for (i = 0; i < map->dm_nsegs; i++) {
   1573       1.15  jonathan 		if (map->dm_segs[i].ds_addr & 3)
   1574       1.15  jonathan 			return (0);
   1575       1.15  jonathan 		if ((i != (map->dm_nsegs - 1)) &&
   1576       1.15  jonathan 		    (map->dm_segs[i].ds_len & 3))
   1577       1.15  jonathan 			return (0);
   1578       1.15  jonathan 	}
   1579       1.15  jonathan 	return (1);
   1580       1.15  jonathan }
   1581       1.15  jonathan 
   1582       1.23   thorpej static int
   1583       1.17   thorpej hifn_dmamap_load_dst(struct hifn_softc *sc, struct hifn_command *cmd)
   1584        1.1    itojun {
   1585       1.15  jonathan 	struct hifn_dma *dma = sc->sc_dma;
   1586       1.15  jonathan 	bus_dmamap_t map = cmd->dst_map;
   1587       1.15  jonathan 	u_int32_t p, l;
   1588       1.15  jonathan 	int idx, used = 0, i;
   1589       1.15  jonathan 
   1590       1.15  jonathan 	idx = dma->dsti;
   1591       1.15  jonathan 	for (i = 0; i < map->dm_nsegs - 1; i++) {
   1592       1.15  jonathan 		dma->dstr[idx].p = htole32(map->dm_segs[i].ds_addr);
   1593       1.15  jonathan 		dma->dstr[idx].l = htole32(HIFN_D_VALID |
   1594       1.15  jonathan 		    HIFN_D_MASKDONEIRQ | map->dm_segs[i].ds_len);
   1595       1.15  jonathan 		HIFN_DSTR_SYNC(sc, idx,
   1596       1.15  jonathan 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1597       1.15  jonathan 		used++;
   1598       1.15  jonathan 
   1599       1.15  jonathan 		if (++idx == HIFN_D_DST_RSIZE) {
   1600       1.15  jonathan 			dma->dstr[idx].l = htole32(HIFN_D_VALID |
   1601       1.15  jonathan 			    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   1602       1.15  jonathan 			HIFN_DSTR_SYNC(sc, idx,
   1603       1.15  jonathan 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1604       1.15  jonathan 			idx = 0;
   1605        1.1    itojun 		}
   1606       1.15  jonathan 	}
   1607        1.1    itojun 
   1608       1.15  jonathan 	if (cmd->sloplen == 0) {
   1609       1.15  jonathan 		p = map->dm_segs[i].ds_addr;
   1610       1.15  jonathan 		l = HIFN_D_VALID | HIFN_D_MASKDONEIRQ | HIFN_D_LAST |
   1611       1.15  jonathan 		    map->dm_segs[i].ds_len;
   1612       1.15  jonathan 	} else {
   1613       1.15  jonathan 		p = sc->sc_dmamap->dm_segs[0].ds_addr +
   1614       1.15  jonathan 		    offsetof(struct hifn_dma, slop[cmd->slopidx]);
   1615       1.15  jonathan 		l = HIFN_D_VALID | HIFN_D_MASKDONEIRQ | HIFN_D_LAST |
   1616       1.15  jonathan 		    sizeof(u_int32_t);
   1617       1.15  jonathan 
   1618       1.15  jonathan 		if ((map->dm_segs[i].ds_len - cmd->sloplen) != 0) {
   1619       1.15  jonathan 			dma->dstr[idx].p = htole32(map->dm_segs[i].ds_addr);
   1620       1.15  jonathan 			dma->dstr[idx].l = htole32(HIFN_D_VALID |
   1621       1.15  jonathan 			    HIFN_D_MASKDONEIRQ |
   1622       1.15  jonathan 			    (map->dm_segs[i].ds_len - cmd->sloplen));
   1623       1.15  jonathan 			HIFN_DSTR_SYNC(sc, idx,
   1624       1.15  jonathan 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1625       1.15  jonathan 			used++;
   1626       1.15  jonathan 
   1627       1.15  jonathan 			if (++idx == HIFN_D_DST_RSIZE) {
   1628       1.15  jonathan 				dma->dstr[idx].l = htole32(HIFN_D_VALID |
   1629       1.15  jonathan 				    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   1630       1.15  jonathan 				HIFN_DSTR_SYNC(sc, idx,
   1631       1.15  jonathan 				    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1632       1.15  jonathan 				idx = 0;
   1633        1.1    itojun 			}
   1634        1.1    itojun 		}
   1635        1.1    itojun 	}
   1636       1.15  jonathan 	dma->dstr[idx].p = htole32(p);
   1637       1.15  jonathan 	dma->dstr[idx].l = htole32(l);
   1638       1.15  jonathan 	HIFN_DSTR_SYNC(sc, idx, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1639       1.15  jonathan 	used++;
   1640       1.15  jonathan 
   1641       1.15  jonathan 	if (++idx == HIFN_D_DST_RSIZE) {
   1642       1.15  jonathan 		dma->dstr[idx].l = htole32(HIFN_D_VALID | HIFN_D_JUMP |
   1643       1.15  jonathan 		    HIFN_D_MASKDONEIRQ);
   1644       1.15  jonathan 		HIFN_DSTR_SYNC(sc, idx,
   1645       1.15  jonathan 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1646       1.15  jonathan 		idx = 0;
   1647       1.15  jonathan 	}
   1648       1.15  jonathan 
   1649       1.15  jonathan 	dma->dsti = idx;
   1650       1.15  jonathan 	dma->dstu += used;
   1651       1.15  jonathan 	return (idx);
   1652       1.15  jonathan }
   1653       1.15  jonathan 
   1654       1.23   thorpej static int
   1655       1.17   thorpej hifn_dmamap_load_src(struct hifn_softc *sc, struct hifn_command *cmd)
   1656       1.15  jonathan {
   1657       1.15  jonathan 	struct hifn_dma *dma = sc->sc_dma;
   1658       1.15  jonathan 	bus_dmamap_t map = cmd->src_map;
   1659       1.15  jonathan 	int idx, i;
   1660       1.15  jonathan 	u_int32_t last = 0;
   1661       1.15  jonathan 
   1662       1.15  jonathan 	idx = dma->srci;
   1663       1.15  jonathan 	for (i = 0; i < map->dm_nsegs; i++) {
   1664       1.15  jonathan 		if (i == map->dm_nsegs - 1)
   1665       1.15  jonathan 			last = HIFN_D_LAST;
   1666       1.15  jonathan 
   1667       1.15  jonathan 		dma->srcr[idx].p = htole32(map->dm_segs[i].ds_addr);
   1668       1.15  jonathan 		dma->srcr[idx].l = htole32(map->dm_segs[i].ds_len |
   1669       1.15  jonathan 		    HIFN_D_VALID | HIFN_D_MASKDONEIRQ | last);
   1670       1.15  jonathan 		HIFN_SRCR_SYNC(sc, idx,
   1671       1.15  jonathan 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1672       1.15  jonathan 
   1673       1.15  jonathan 		if (++idx == HIFN_D_SRC_RSIZE) {
   1674       1.15  jonathan 			dma->srcr[idx].l = htole32(HIFN_D_VALID |
   1675       1.15  jonathan 			    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   1676       1.15  jonathan 			HIFN_SRCR_SYNC(sc, HIFN_D_SRC_RSIZE,
   1677       1.15  jonathan 			    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1678       1.15  jonathan 			idx = 0;
   1679       1.15  jonathan 		}
   1680       1.15  jonathan 	}
   1681       1.15  jonathan 	dma->srci = idx;
   1682       1.15  jonathan 	dma->srcu += map->dm_nsegs;
   1683       1.15  jonathan 	return (idx);
   1684       1.15  jonathan }
   1685       1.15  jonathan 
   1686       1.23   thorpej static int
   1687       1.17   thorpej hifn_crypto(struct hifn_softc *sc, struct hifn_command *cmd,
   1688       1.33  christos     struct cryptop *crp, int hint)
   1689       1.15  jonathan {
   1690       1.15  jonathan 	struct	hifn_dma *dma = sc->sc_dma;
   1691       1.15  jonathan 	u_int32_t cmdlen;
   1692       1.52       tls 	int	cmdi, resi, err = 0;
   1693       1.15  jonathan 
   1694       1.15  jonathan 	if (bus_dmamap_create(sc->sc_dmat, HIFN_MAX_DMALEN, MAX_SCATTER,
   1695       1.15  jonathan 	    HIFN_MAX_SEGLEN, 0, BUS_DMA_NOWAIT, &cmd->src_map))
   1696       1.15  jonathan 		return (ENOMEM);
   1697       1.15  jonathan 
   1698       1.15  jonathan 	if (crp->crp_flags & CRYPTO_F_IMBUF) {
   1699       1.15  jonathan 		if (bus_dmamap_load_mbuf(sc->sc_dmat, cmd->src_map,
   1700       1.15  jonathan 		    cmd->srcu.src_m, BUS_DMA_NOWAIT)) {
   1701       1.15  jonathan 			err = ENOMEM;
   1702       1.15  jonathan 			goto err_srcmap1;
   1703       1.15  jonathan 		}
   1704       1.15  jonathan 	} else if (crp->crp_flags & CRYPTO_F_IOV) {
   1705       1.15  jonathan 		if (bus_dmamap_load_uio(sc->sc_dmat, cmd->src_map,
   1706       1.15  jonathan 		    cmd->srcu.src_io, BUS_DMA_NOWAIT)) {
   1707       1.15  jonathan 			err = ENOMEM;
   1708       1.15  jonathan 			goto err_srcmap1;
   1709       1.15  jonathan 		}
   1710       1.15  jonathan 	} else {
   1711       1.15  jonathan 		err = EINVAL;
   1712       1.15  jonathan 		goto err_srcmap1;
   1713       1.15  jonathan 	}
   1714       1.15  jonathan 
   1715       1.15  jonathan 	if (hifn_dmamap_aligned(cmd->src_map)) {
   1716       1.15  jonathan 		cmd->sloplen = cmd->src_map->dm_mapsize & 3;
   1717       1.15  jonathan 		if (crp->crp_flags & CRYPTO_F_IOV)
   1718       1.15  jonathan 			cmd->dstu.dst_io = cmd->srcu.src_io;
   1719       1.15  jonathan 		else if (crp->crp_flags & CRYPTO_F_IMBUF)
   1720       1.15  jonathan 			cmd->dstu.dst_m = cmd->srcu.src_m;
   1721       1.15  jonathan 		cmd->dst_map = cmd->src_map;
   1722       1.15  jonathan 	} else {
   1723       1.15  jonathan 		if (crp->crp_flags & CRYPTO_F_IOV) {
   1724       1.15  jonathan 			err = EINVAL;
   1725       1.15  jonathan 			goto err_srcmap;
   1726       1.15  jonathan 		} else if (crp->crp_flags & CRYPTO_F_IMBUF) {
   1727       1.15  jonathan 			int totlen, len;
   1728       1.15  jonathan 			struct mbuf *m, *m0, *mlast;
   1729       1.15  jonathan 
   1730       1.15  jonathan 			totlen = cmd->src_map->dm_mapsize;
   1731       1.15  jonathan 			if (cmd->srcu.src_m->m_flags & M_PKTHDR) {
   1732       1.15  jonathan 				len = MHLEN;
   1733       1.15  jonathan 				MGETHDR(m0, M_DONTWAIT, MT_DATA);
   1734       1.15  jonathan 			} else {
   1735       1.15  jonathan 				len = MLEN;
   1736       1.15  jonathan 				MGET(m0, M_DONTWAIT, MT_DATA);
   1737       1.15  jonathan 			}
   1738       1.15  jonathan 			if (m0 == NULL) {
   1739       1.15  jonathan 				err = ENOMEM;
   1740       1.15  jonathan 				goto err_srcmap;
   1741       1.15  jonathan 			}
   1742       1.15  jonathan 			if (len == MHLEN)
   1743       1.15  jonathan 				M_DUP_PKTHDR(m0, cmd->srcu.src_m);
   1744       1.15  jonathan 			if (totlen >= MINCLSIZE) {
   1745       1.15  jonathan 				MCLGET(m0, M_DONTWAIT);
   1746       1.15  jonathan 				if (m0->m_flags & M_EXT)
   1747       1.15  jonathan 					len = MCLBYTES;
   1748       1.15  jonathan 			}
   1749       1.15  jonathan 			totlen -= len;
   1750       1.15  jonathan 			m0->m_pkthdr.len = m0->m_len = len;
   1751       1.15  jonathan 			mlast = m0;
   1752       1.15  jonathan 
   1753       1.15  jonathan 			while (totlen > 0) {
   1754       1.15  jonathan 				MGET(m, M_DONTWAIT, MT_DATA);
   1755       1.15  jonathan 				if (m == NULL) {
   1756       1.15  jonathan 					err = ENOMEM;
   1757       1.15  jonathan 					m_freem(m0);
   1758       1.15  jonathan 					goto err_srcmap;
   1759       1.15  jonathan 				}
   1760       1.15  jonathan 				len = MLEN;
   1761       1.15  jonathan 				if (totlen >= MINCLSIZE) {
   1762       1.15  jonathan 					MCLGET(m, M_DONTWAIT);
   1763       1.15  jonathan 					if (m->m_flags & M_EXT)
   1764       1.15  jonathan 						len = MCLBYTES;
   1765       1.15  jonathan 				}
   1766       1.15  jonathan 
   1767       1.15  jonathan 				m->m_len = len;
   1768       1.15  jonathan 				if (m0->m_flags & M_PKTHDR)
   1769       1.15  jonathan 					m0->m_pkthdr.len += len;
   1770       1.15  jonathan 				totlen -= len;
   1771       1.15  jonathan 
   1772       1.15  jonathan 				mlast->m_next = m;
   1773       1.15  jonathan 				mlast = m;
   1774       1.15  jonathan 			}
   1775       1.15  jonathan 			cmd->dstu.dst_m = m0;
   1776       1.15  jonathan 		}
   1777       1.15  jonathan 	}
   1778        1.1    itojun 
   1779       1.15  jonathan 	if (cmd->dst_map == NULL) {
   1780       1.15  jonathan 		if (bus_dmamap_create(sc->sc_dmat,
   1781       1.15  jonathan 		    HIFN_MAX_SEGLEN * MAX_SCATTER, MAX_SCATTER,
   1782       1.15  jonathan 		    HIFN_MAX_SEGLEN, 0, BUS_DMA_NOWAIT, &cmd->dst_map)) {
   1783       1.15  jonathan 			err = ENOMEM;
   1784       1.15  jonathan 			goto err_srcmap;
   1785       1.15  jonathan 		}
   1786       1.15  jonathan 		if (crp->crp_flags & CRYPTO_F_IMBUF) {
   1787       1.15  jonathan 			if (bus_dmamap_load_mbuf(sc->sc_dmat, cmd->dst_map,
   1788       1.15  jonathan 			    cmd->dstu.dst_m, BUS_DMA_NOWAIT)) {
   1789       1.15  jonathan 				err = ENOMEM;
   1790       1.15  jonathan 				goto err_dstmap1;
   1791       1.15  jonathan 			}
   1792       1.15  jonathan 		} else if (crp->crp_flags & CRYPTO_F_IOV) {
   1793       1.15  jonathan 			if (bus_dmamap_load_uio(sc->sc_dmat, cmd->dst_map,
   1794       1.15  jonathan 			    cmd->dstu.dst_io, BUS_DMA_NOWAIT)) {
   1795       1.15  jonathan 				err = ENOMEM;
   1796       1.15  jonathan 				goto err_dstmap1;
   1797       1.15  jonathan 			}
   1798       1.15  jonathan 		}
   1799       1.15  jonathan 	}
   1800        1.1    itojun 
   1801        1.1    itojun #ifdef HIFN_DEBUG
   1802       1.15  jonathan 	if (hifn_debug)
   1803       1.15  jonathan 		printf("%s: Entering cmd: stat %8x ien %8x u %d/%d/%d/%d n %d/%d\n",
   1804       1.51       chs 		    device_xname(sc->sc_dv),
   1805       1.15  jonathan 		    READ_REG_1(sc, HIFN_1_DMA_CSR),
   1806       1.15  jonathan 		    READ_REG_1(sc, HIFN_1_DMA_IER),
   1807       1.15  jonathan 		    dma->cmdu, dma->srcu, dma->dstu, dma->resu,
   1808       1.15  jonathan 		    cmd->src_map->dm_nsegs, cmd->dst_map->dm_nsegs);
   1809       1.15  jonathan #endif
   1810       1.15  jonathan 
   1811       1.15  jonathan 	if (cmd->src_map == cmd->dst_map)
   1812       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->src_map,
   1813       1.15  jonathan 		    0, cmd->src_map->dm_mapsize,
   1814       1.15  jonathan 		    BUS_DMASYNC_PREWRITE|BUS_DMASYNC_PREREAD);
   1815       1.15  jonathan 	else {
   1816       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->src_map,
   1817       1.15  jonathan 		    0, cmd->src_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
   1818       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->dst_map,
   1819       1.15  jonathan 		    0, cmd->dst_map->dm_mapsize, BUS_DMASYNC_PREREAD);
   1820       1.15  jonathan 	}
   1821        1.1    itojun 
   1822        1.1    itojun 	/*
   1823        1.1    itojun 	 * need 1 cmd, and 1 res
   1824        1.1    itojun 	 * need N src, and N dst
   1825        1.1    itojun 	 */
   1826       1.15  jonathan 	if ((dma->cmdu + 1) > HIFN_D_CMD_RSIZE ||
   1827       1.15  jonathan 	    (dma->resu + 1) > HIFN_D_RES_RSIZE) {
   1828       1.15  jonathan 		err = ENOMEM;
   1829       1.15  jonathan 		goto err_dstmap;
   1830       1.15  jonathan 	}
   1831       1.15  jonathan 	if ((dma->srcu + cmd->src_map->dm_nsegs) > HIFN_D_SRC_RSIZE ||
   1832       1.15  jonathan 	    (dma->dstu + cmd->dst_map->dm_nsegs + 1) > HIFN_D_DST_RSIZE) {
   1833       1.15  jonathan 		err = ENOMEM;
   1834       1.15  jonathan 		goto err_dstmap;
   1835        1.1    itojun 	}
   1836        1.1    itojun 
   1837        1.1    itojun 	if (dma->cmdi == HIFN_D_CMD_RSIZE) {
   1838        1.1    itojun 		dma->cmdi = 0;
   1839       1.15  jonathan 		dma->cmdr[HIFN_D_CMD_RSIZE].l = htole32(HIFN_D_VALID |
   1840       1.15  jonathan 		    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   1841       1.15  jonathan 		HIFN_CMDR_SYNC(sc, HIFN_D_CMD_RSIZE,
   1842       1.15  jonathan 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1843        1.1    itojun 	}
   1844        1.1    itojun 	cmdi = dma->cmdi++;
   1845       1.15  jonathan 	cmdlen = hifn_write_command(cmd, dma->command_bufs[cmdi]);
   1846       1.15  jonathan 	HIFN_CMD_SYNC(sc, cmdi, BUS_DMASYNC_PREWRITE);
   1847        1.1    itojun 
   1848        1.1    itojun 	/* .p for command/result already set */
   1849       1.15  jonathan 	dma->cmdr[cmdi].l = htole32(cmdlen | HIFN_D_VALID | HIFN_D_LAST |
   1850       1.15  jonathan 	    HIFN_D_MASKDONEIRQ);
   1851       1.15  jonathan 	HIFN_CMDR_SYNC(sc, cmdi,
   1852       1.15  jonathan 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1853        1.1    itojun 	dma->cmdu++;
   1854       1.15  jonathan 	if (sc->sc_c_busy == 0) {
   1855       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_CSR, HIFN_DMACSR_C_CTRL_ENA);
   1856       1.15  jonathan 		sc->sc_c_busy = 1;
   1857       1.15  jonathan 		SET_LED(sc, HIFN_MIPSRST_LED0);
   1858       1.15  jonathan 	}
   1859        1.1    itojun 
   1860        1.1    itojun 	/*
   1861        1.1    itojun 	 * We don't worry about missing an interrupt (which a "command wait"
   1862        1.1    itojun 	 * interrupt salvages us from), unless there is more than one command
   1863        1.1    itojun 	 * in the queue.
   1864       1.24       tls 	 *
   1865       1.24       tls 	 * XXX We do seem to miss some interrupts.  So we always enable
   1866       1.24       tls 	 * XXX command wait.  From OpenBSD revision 1.149.
   1867       1.24       tls 	 *
   1868        1.1    itojun 	 */
   1869       1.24       tls #if 0
   1870       1.15  jonathan 	if (dma->cmdu > 1) {
   1871       1.24       tls #endif
   1872       1.15  jonathan 		sc->sc_dmaier |= HIFN_DMAIER_C_WAIT;
   1873       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_IER, sc->sc_dmaier);
   1874       1.24       tls #if 0
   1875       1.15  jonathan 	}
   1876       1.24       tls #endif
   1877        1.1    itojun 
   1878        1.1    itojun 	hifnstats.hst_ipackets++;
   1879       1.15  jonathan 	hifnstats.hst_ibytes += cmd->src_map->dm_mapsize;
   1880        1.1    itojun 
   1881       1.15  jonathan 	hifn_dmamap_load_src(sc, cmd);
   1882       1.15  jonathan 	if (sc->sc_s_busy == 0) {
   1883       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_CSR, HIFN_DMACSR_S_CTRL_ENA);
   1884       1.15  jonathan 		sc->sc_s_busy = 1;
   1885       1.15  jonathan 		SET_LED(sc, HIFN_MIPSRST_LED1);
   1886        1.1    itojun 	}
   1887        1.1    itojun 
   1888        1.1    itojun 	/*
   1889        1.1    itojun 	 * Unlike other descriptors, we don't mask done interrupt from
   1890        1.1    itojun 	 * result descriptor.
   1891        1.1    itojun 	 */
   1892        1.1    itojun #ifdef HIFN_DEBUG
   1893       1.15  jonathan 	if (hifn_debug)
   1894       1.15  jonathan 		printf("load res\n");
   1895        1.1    itojun #endif
   1896       1.15  jonathan 	if (dma->resi == HIFN_D_RES_RSIZE) {
   1897       1.15  jonathan 		dma->resi = 0;
   1898       1.15  jonathan 		dma->resr[HIFN_D_RES_RSIZE].l = htole32(HIFN_D_VALID |
   1899       1.15  jonathan 		    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   1900       1.15  jonathan 		HIFN_RESR_SYNC(sc, HIFN_D_RES_RSIZE,
   1901       1.15  jonathan 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1902       1.15  jonathan 	}
   1903       1.15  jonathan 	resi = dma->resi++;
   1904        1.1    itojun 	dma->hifn_commands[resi] = cmd;
   1905       1.15  jonathan 	HIFN_RES_SYNC(sc, resi, BUS_DMASYNC_PREREAD);
   1906       1.22     perry 	dma->resr[resi].l = htole32(HIFN_MAX_RESULT |
   1907       1.15  jonathan 	    HIFN_D_VALID | HIFN_D_LAST);
   1908       1.15  jonathan 	HIFN_RESR_SYNC(sc, resi,
   1909       1.15  jonathan 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1910        1.1    itojun 	dma->resu++;
   1911       1.15  jonathan 	if (sc->sc_r_busy == 0) {
   1912       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_CSR, HIFN_DMACSR_R_CTRL_ENA);
   1913       1.15  jonathan 		sc->sc_r_busy = 1;
   1914       1.15  jonathan 		SET_LED(sc, HIFN_MIPSRST_LED2);
   1915       1.15  jonathan 	}
   1916       1.15  jonathan 
   1917       1.15  jonathan 	if (cmd->sloplen)
   1918       1.15  jonathan 		cmd->slopidx = resi;
   1919       1.15  jonathan 
   1920       1.15  jonathan 	hifn_dmamap_load_dst(sc, cmd);
   1921       1.15  jonathan 
   1922       1.15  jonathan 	if (sc->sc_d_busy == 0) {
   1923       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_CSR, HIFN_DMACSR_D_CTRL_ENA);
   1924       1.15  jonathan 		sc->sc_d_busy = 1;
   1925       1.15  jonathan 	}
   1926        1.1    itojun 
   1927        1.1    itojun #ifdef HIFN_DEBUG
   1928       1.15  jonathan 	if (hifn_debug)
   1929       1.15  jonathan 		printf("%s: command: stat %8x ier %8x\n",
   1930       1.51       chs 		    device_xname(sc->sc_dv),
   1931       1.15  jonathan 		    READ_REG_1(sc, HIFN_1_DMA_CSR), READ_REG_1(sc, HIFN_1_DMA_IER));
   1932        1.1    itojun #endif
   1933        1.1    itojun 
   1934       1.15  jonathan 	sc->sc_active = 5;
   1935       1.15  jonathan 	return (err);		/* success */
   1936       1.15  jonathan 
   1937       1.15  jonathan err_dstmap:
   1938       1.15  jonathan 	if (cmd->src_map != cmd->dst_map)
   1939       1.15  jonathan 		bus_dmamap_unload(sc->sc_dmat, cmd->dst_map);
   1940       1.15  jonathan err_dstmap1:
   1941       1.15  jonathan 	if (cmd->src_map != cmd->dst_map)
   1942       1.15  jonathan 		bus_dmamap_destroy(sc->sc_dmat, cmd->dst_map);
   1943       1.15  jonathan err_srcmap:
   1944       1.15  jonathan 	if (crp->crp_flags & CRYPTO_F_IMBUF &&
   1945       1.15  jonathan 	    cmd->srcu.src_m != cmd->dstu.dst_m)
   1946       1.15  jonathan 		m_freem(cmd->dstu.dst_m);
   1947       1.15  jonathan 	bus_dmamap_unload(sc->sc_dmat, cmd->src_map);
   1948       1.15  jonathan err_srcmap1:
   1949       1.15  jonathan 	bus_dmamap_destroy(sc->sc_dmat, cmd->src_map);
   1950       1.15  jonathan 	return (err);
   1951       1.15  jonathan }
   1952       1.15  jonathan 
   1953       1.23   thorpej static void
   1954       1.17   thorpej hifn_tick(void *vsc)
   1955       1.15  jonathan {
   1956       1.15  jonathan 	struct hifn_softc *sc = vsc;
   1957       1.15  jonathan 
   1958       1.52       tls 	mutex_spin_enter(&sc->sc_mtx);
   1959       1.15  jonathan 	if (sc->sc_active == 0) {
   1960       1.15  jonathan 		struct hifn_dma *dma = sc->sc_dma;
   1961       1.15  jonathan 		u_int32_t r = 0;
   1962       1.15  jonathan 
   1963       1.15  jonathan 		if (dma->cmdu == 0 && sc->sc_c_busy) {
   1964       1.15  jonathan 			sc->sc_c_busy = 0;
   1965       1.15  jonathan 			r |= HIFN_DMACSR_C_CTRL_DIS;
   1966       1.15  jonathan 			CLR_LED(sc, HIFN_MIPSRST_LED0);
   1967       1.15  jonathan 		}
   1968       1.15  jonathan 		if (dma->srcu == 0 && sc->sc_s_busy) {
   1969       1.15  jonathan 			sc->sc_s_busy = 0;
   1970       1.15  jonathan 			r |= HIFN_DMACSR_S_CTRL_DIS;
   1971       1.15  jonathan 			CLR_LED(sc, HIFN_MIPSRST_LED1);
   1972       1.15  jonathan 		}
   1973       1.15  jonathan 		if (dma->dstu == 0 && sc->sc_d_busy) {
   1974       1.15  jonathan 			sc->sc_d_busy = 0;
   1975       1.15  jonathan 			r |= HIFN_DMACSR_D_CTRL_DIS;
   1976       1.15  jonathan 		}
   1977       1.15  jonathan 		if (dma->resu == 0 && sc->sc_r_busy) {
   1978       1.15  jonathan 			sc->sc_r_busy = 0;
   1979       1.15  jonathan 			r |= HIFN_DMACSR_R_CTRL_DIS;
   1980       1.15  jonathan 			CLR_LED(sc, HIFN_MIPSRST_LED2);
   1981       1.15  jonathan 		}
   1982       1.15  jonathan 		if (r)
   1983       1.15  jonathan 			WRITE_REG_1(sc, HIFN_1_DMA_CSR, r);
   1984       1.15  jonathan 	}
   1985       1.15  jonathan 	else
   1986       1.15  jonathan 		sc->sc_active--;
   1987       1.15  jonathan #ifdef	__OpenBSD__
   1988       1.15  jonathan 	timeout_add(&sc->sc_tickto, hz);
   1989       1.15  jonathan #else
   1990       1.15  jonathan 	callout_reset(&sc->sc_tickto, hz, hifn_tick, sc);
   1991        1.1    itojun #endif
   1992       1.52       tls 	mutex_spin_exit(&sc->sc_mtx);
   1993        1.1    itojun }
   1994        1.1    itojun 
   1995       1.23   thorpej static int
   1996       1.15  jonathan hifn_intr(void *arg)
   1997        1.1    itojun {
   1998        1.1    itojun 	struct hifn_softc *sc = arg;
   1999        1.1    itojun 	struct hifn_dma *dma = sc->sc_dma;
   2000       1.15  jonathan 	u_int32_t dmacsr, restart;
   2001        1.1    itojun 	int i, u;
   2002        1.1    itojun 
   2003        1.1    itojun 	dmacsr = READ_REG_1(sc, HIFN_1_DMA_CSR);
   2004        1.1    itojun 
   2005        1.1    itojun #ifdef HIFN_DEBUG
   2006       1.15  jonathan 	if (hifn_debug)
   2007       1.15  jonathan 		printf("%s: irq: stat %08x ien %08x u %d/%d/%d/%d\n",
   2008       1.51       chs 		       device_xname(sc->sc_dv),
   2009       1.15  jonathan 		       dmacsr, READ_REG_1(sc, HIFN_1_DMA_IER),
   2010       1.15  jonathan 		       dma->cmdu, dma->srcu, dma->dstu, dma->resu);
   2011        1.1    itojun #endif
   2012        1.1    itojun 
   2013       1.52       tls 	mutex_spin_enter(&sc->sc_mtx);
   2014       1.52       tls 
   2015       1.15  jonathan 	/* Nothing in the DMA unit interrupted */
   2016       1.52       tls 	if ((dmacsr & sc->sc_dmaier) == 0) {
   2017       1.52       tls 		mutex_spin_exit(&sc->sc_mtx);
   2018        1.1    itojun 		return (0);
   2019       1.52       tls 	}
   2020        1.1    itojun 
   2021       1.15  jonathan 	WRITE_REG_1(sc, HIFN_1_DMA_CSR, dmacsr & sc->sc_dmaier);
   2022       1.15  jonathan 
   2023       1.15  jonathan 	if (dmacsr & HIFN_DMACSR_ENGINE)
   2024       1.15  jonathan 		WRITE_REG_0(sc, HIFN_0_PUISR, READ_REG_0(sc, HIFN_0_PUISR));
   2025       1.15  jonathan 
   2026       1.15  jonathan 	if ((sc->sc_flags & HIFN_HAS_PUBLIC) &&
   2027       1.15  jonathan 	    (dmacsr & HIFN_DMACSR_PUBDONE))
   2028       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_PUB_STATUS,
   2029       1.15  jonathan 		    READ_REG_1(sc, HIFN_1_PUB_STATUS) | HIFN_PUBSTS_DONE);
   2030       1.15  jonathan 
   2031       1.15  jonathan 	restart = dmacsr & (HIFN_DMACSR_R_OVER | HIFN_DMACSR_D_OVER);
   2032       1.15  jonathan 	if (restart)
   2033       1.51       chs 		printf("%s: overrun %x\n", device_xname(sc->sc_dv), dmacsr);
   2034       1.15  jonathan 
   2035       1.15  jonathan 	if (sc->sc_flags & HIFN_IS_7811) {
   2036       1.15  jonathan 		if (dmacsr & HIFN_DMACSR_ILLR)
   2037       1.51       chs 			printf("%s: illegal read\n", device_xname(sc->sc_dv));
   2038       1.15  jonathan 		if (dmacsr & HIFN_DMACSR_ILLW)
   2039       1.51       chs 			printf("%s: illegal write\n", device_xname(sc->sc_dv));
   2040       1.15  jonathan 	}
   2041       1.15  jonathan 
   2042       1.15  jonathan 	restart = dmacsr & (HIFN_DMACSR_C_ABORT | HIFN_DMACSR_S_ABORT |
   2043       1.15  jonathan 	    HIFN_DMACSR_D_ABORT | HIFN_DMACSR_R_ABORT);
   2044       1.15  jonathan 	if (restart) {
   2045       1.51       chs 		printf("%s: abort, resetting.\n", device_xname(sc->sc_dv));
   2046       1.15  jonathan 		hifnstats.hst_abort++;
   2047       1.15  jonathan 		hifn_abort(sc);
   2048       1.52       tls 		goto out;
   2049       1.15  jonathan 	}
   2050        1.1    itojun 
   2051       1.15  jonathan 	if ((dmacsr & HIFN_DMACSR_C_WAIT) && (dma->resu == 0)) {
   2052        1.1    itojun 		/*
   2053        1.1    itojun 		 * If no slots to process and we receive a "waiting on
   2054        1.1    itojun 		 * command" interrupt, we disable the "waiting on command"
   2055        1.1    itojun 		 * (by clearing it).
   2056        1.1    itojun 		 */
   2057       1.15  jonathan 		sc->sc_dmaier &= ~HIFN_DMAIER_C_WAIT;
   2058       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_IER, sc->sc_dmaier);
   2059        1.1    itojun 	}
   2060        1.1    itojun 
   2061       1.15  jonathan 	/* clear the rings */
   2062       1.15  jonathan 	i = dma->resk;
   2063       1.15  jonathan 	while (dma->resu != 0) {
   2064       1.15  jonathan 		HIFN_RESR_SYNC(sc, i,
   2065       1.15  jonathan 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
   2066       1.15  jonathan 		if (dma->resr[i].l & htole32(HIFN_D_VALID)) {
   2067       1.15  jonathan 			HIFN_RESR_SYNC(sc, i,
   2068       1.15  jonathan 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   2069       1.15  jonathan 			break;
   2070       1.15  jonathan 		}
   2071        1.1    itojun 
   2072       1.15  jonathan 		if (i != HIFN_D_RES_RSIZE) {
   2073       1.15  jonathan 			struct hifn_command *cmd;
   2074       1.15  jonathan 
   2075       1.15  jonathan 			HIFN_RES_SYNC(sc, i, BUS_DMASYNC_POSTREAD);
   2076       1.15  jonathan 			cmd = dma->hifn_commands[i];
   2077       1.22     perry 			KASSERT(cmd != NULL
   2078       1.15  jonathan 				/*("hifn_intr: null command slot %u", i)*/);
   2079       1.15  jonathan 			dma->hifn_commands[i] = NULL;
   2080       1.15  jonathan 
   2081       1.28       tls 			hifn_callback(sc, cmd, dma->result_bufs[i]);
   2082       1.15  jonathan 			hifnstats.hst_opackets++;
   2083        1.1    itojun 		}
   2084        1.1    itojun 
   2085       1.15  jonathan 		if (++i == (HIFN_D_RES_RSIZE + 1))
   2086       1.15  jonathan 			i = 0;
   2087       1.15  jonathan 		else
   2088       1.15  jonathan 			dma->resu--;
   2089        1.1    itojun 	}
   2090       1.15  jonathan 	dma->resk = i;
   2091        1.1    itojun 
   2092        1.1    itojun 	i = dma->srck; u = dma->srcu;
   2093       1.15  jonathan 	while (u != 0) {
   2094       1.15  jonathan 		HIFN_SRCR_SYNC(sc, i,
   2095       1.15  jonathan 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
   2096       1.15  jonathan 		if (dma->srcr[i].l & htole32(HIFN_D_VALID)) {
   2097       1.15  jonathan 			HIFN_SRCR_SYNC(sc, i,
   2098       1.15  jonathan 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   2099       1.15  jonathan 			break;
   2100       1.15  jonathan 		}
   2101       1.15  jonathan 		if (++i == (HIFN_D_SRC_RSIZE + 1))
   2102        1.1    itojun 			i = 0;
   2103       1.15  jonathan 		else
   2104       1.15  jonathan 			u--;
   2105        1.1    itojun 	}
   2106        1.1    itojun 	dma->srck = i; dma->srcu = u;
   2107        1.1    itojun 
   2108        1.1    itojun 	i = dma->cmdk; u = dma->cmdu;
   2109       1.15  jonathan 	while (u != 0) {
   2110       1.15  jonathan 		HIFN_CMDR_SYNC(sc, i,
   2111       1.15  jonathan 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
   2112       1.15  jonathan 		if (dma->cmdr[i].l & htole32(HIFN_D_VALID)) {
   2113       1.15  jonathan 			HIFN_CMDR_SYNC(sc, i,
   2114       1.15  jonathan 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   2115       1.15  jonathan 			break;
   2116       1.15  jonathan 		}
   2117       1.15  jonathan 		if (i != HIFN_D_CMD_RSIZE) {
   2118       1.15  jonathan 			u--;
   2119       1.15  jonathan 			HIFN_CMD_SYNC(sc, i, BUS_DMASYNC_POSTWRITE);
   2120       1.15  jonathan 		}
   2121       1.15  jonathan 		if (++i == (HIFN_D_CMD_RSIZE + 1))
   2122        1.1    itojun 			i = 0;
   2123        1.1    itojun 	}
   2124        1.1    itojun 	dma->cmdk = i; dma->cmdu = u;
   2125        1.1    itojun 
   2126       1.52       tls out:
   2127       1.52       tls 	mutex_spin_exit(&sc->sc_mtx);
   2128        1.1    itojun 	return (1);
   2129        1.1    itojun }
   2130        1.1    itojun 
   2131        1.1    itojun /*
   2132        1.1    itojun  * Allocate a new 'session' and return an encoded session id.  'sidp'
   2133        1.1    itojun  * contains our registration id, and should contain an encoded session
   2134        1.1    itojun  * id on successful allocation.
   2135        1.1    itojun  */
   2136       1.23   thorpej static int
   2137       1.15  jonathan hifn_newsession(void *arg, u_int32_t *sidp, struct cryptoini *cri)
   2138        1.1    itojun {
   2139        1.1    itojun 	struct cryptoini *c;
   2140       1.15  jonathan 	struct hifn_softc *sc = arg;
   2141       1.52       tls 	int i, mac = 0, cry = 0, comp = 0, retval = EINVAL;
   2142        1.1    itojun 
   2143       1.15  jonathan 	KASSERT(sc != NULL /*, ("hifn_newsession: null softc")*/);
   2144       1.15  jonathan 	if (sidp == NULL || cri == NULL || sc == NULL)
   2145       1.52       tls 		return retval;
   2146       1.52       tls 
   2147       1.52       tls 	mutex_spin_enter(&sc->sc_mtx);
   2148        1.1    itojun 
   2149        1.1    itojun 	for (i = 0; i < sc->sc_maxses; i++)
   2150       1.15  jonathan 		if (sc->sc_sessions[i].hs_state == HS_STATE_FREE)
   2151        1.1    itojun 			break;
   2152       1.52       tls 	if (i == sc->sc_maxses) {
   2153       1.52       tls 		retval = ENOMEM;
   2154       1.52       tls 		goto out;
   2155       1.52       tls 	}
   2156        1.1    itojun 
   2157        1.1    itojun 	for (c = cri; c != NULL; c = c->cri_next) {
   2158       1.15  jonathan 		switch (c->cri_alg) {
   2159       1.15  jonathan 		case CRYPTO_MD5:
   2160       1.15  jonathan 		case CRYPTO_SHA1:
   2161       1.36       tls 		case CRYPTO_MD5_HMAC_96:
   2162       1.36       tls 		case CRYPTO_SHA1_HMAC_96:
   2163       1.52       tls 			if (mac) {
   2164       1.52       tls 				goto out;
   2165       1.52       tls 			}
   2166        1.1    itojun 			mac = 1;
   2167       1.15  jonathan 			break;
   2168       1.15  jonathan 		case CRYPTO_DES_CBC:
   2169       1.15  jonathan 		case CRYPTO_3DES_CBC:
   2170       1.20  jonathan 		case CRYPTO_AES_CBC:
   2171       1.26       tls 			/* Note that this is an initialization
   2172       1.26       tls 			   vector, not a cipher key; any function
   2173       1.26       tls 			   giving sufficient Hamming distance
   2174       1.26       tls 			   between outputs is fine.  Use of RC4
   2175       1.26       tls 			   to generate IVs has been FIPS140-2
   2176       1.26       tls 			   certified by several labs. */
   2177       1.15  jonathan #ifdef __NetBSD__
   2178       1.47       tls 			cprng_fast(sc->sc_sessions[i].hs_iv,
   2179       1.20  jonathan 			    c->cri_alg == CRYPTO_AES_CBC ?
   2180       1.26       tls 				HIFN_AES_IV_LENGTH : HIFN_IV_LENGTH);
   2181       1.15  jonathan #else	/* FreeBSD and OpenBSD have get_random_bytes */
   2182       1.15  jonathan 			/* XXX this may read fewer, does it matter? */
   2183       1.22     perry  			get_random_bytes(sc->sc_sessions[i].hs_iv,
   2184       1.20  jonathan 				c->cri_alg == CRYPTO_AES_CBC ?
   2185       1.20  jonathan 					HIFN_AES_IV_LENGTH : HIFN_IV_LENGTH);
   2186       1.15  jonathan #endif
   2187       1.15  jonathan 			/*FALLTHROUGH*/
   2188       1.15  jonathan 		case CRYPTO_ARC4:
   2189       1.52       tls 			if (cry) {
   2190       1.52       tls 				goto out;
   2191       1.52       tls 			}
   2192        1.1    itojun 			cry = 1;
   2193       1.15  jonathan 			break;
   2194       1.27       tls #ifdef HAVE_CRYPTO_LZS
   2195       1.15  jonathan 		case CRYPTO_LZS_COMP:
   2196       1.52       tls 			if (comp) {
   2197       1.52       tls 				goto out;
   2198       1.52       tls 			}
   2199       1.15  jonathan 			comp = 1;
   2200       1.15  jonathan 			break;
   2201       1.15  jonathan #endif
   2202       1.15  jonathan 		default:
   2203       1.52       tls 			goto out;
   2204        1.1    itojun 		}
   2205        1.1    itojun 	}
   2206       1.52       tls 	if (mac == 0 && cry == 0 && comp == 0) {
   2207       1.52       tls 		goto out;
   2208       1.52       tls 	}
   2209       1.15  jonathan 
   2210       1.15  jonathan 	/*
   2211       1.15  jonathan 	 * XXX only want to support compression without chaining to
   2212       1.15  jonathan 	 * MAC/crypt engine right now
   2213       1.15  jonathan 	 */
   2214       1.52       tls 	if ((comp && mac) || (comp && cry)) {
   2215       1.52       tls 		goto out;
   2216       1.52       tls 	}
   2217        1.1    itojun 
   2218       1.51       chs 	*sidp = HIFN_SID(device_unit(sc->sc_dv), i);
   2219       1.15  jonathan 	sc->sc_sessions[i].hs_state = HS_STATE_USED;
   2220        1.1    itojun 
   2221       1.52       tls 	retval = 0;
   2222       1.52       tls out:
   2223       1.52       tls 	mutex_spin_exit(&sc->sc_mtx);
   2224       1.52       tls 	return retval;
   2225        1.1    itojun }
   2226        1.1    itojun 
   2227        1.1    itojun /*
   2228        1.1    itojun  * Deallocate a session.
   2229        1.1    itojun  * XXX this routine should run a zero'd mac/encrypt key into context ram.
   2230        1.1    itojun  * XXX to blow away any keys already stored there.
   2231        1.1    itojun  */
   2232       1.23   thorpej static int
   2233       1.15  jonathan hifn_freesession(void *arg, u_int64_t tid)
   2234        1.1    itojun {
   2235       1.15  jonathan 	struct hifn_softc *sc = arg;
   2236       1.15  jonathan 	int session;
   2237        1.1    itojun 	u_int32_t sid = ((u_int32_t) tid) & 0xffffffff;
   2238        1.1    itojun 
   2239       1.15  jonathan 	KASSERT(sc != NULL /*, ("hifn_freesession: null softc")*/);
   2240       1.15  jonathan 	if (sc == NULL)
   2241        1.1    itojun 		return (EINVAL);
   2242        1.1    itojun 
   2243       1.52       tls 	mutex_spin_enter(&sc->sc_mtx);
   2244        1.1    itojun 	session = HIFN_SESSION(sid);
   2245       1.52       tls 	if (session >= sc->sc_maxses) {
   2246       1.52       tls 		mutex_spin_exit(&sc->sc_mtx);
   2247        1.1    itojun 		return (EINVAL);
   2248       1.52       tls 	}
   2249        1.1    itojun 
   2250       1.39    cegger 	memset(&sc->sc_sessions[session], 0, sizeof(sc->sc_sessions[session]));
   2251       1.52       tls 	mutex_spin_exit(&sc->sc_mtx);
   2252        1.1    itojun 	return (0);
   2253        1.1    itojun }
   2254        1.1    itojun 
   2255       1.23   thorpej static int
   2256       1.15  jonathan hifn_process(void *arg, struct cryptop *crp, int hint)
   2257        1.1    itojun {
   2258       1.15  jonathan 	struct hifn_softc *sc = arg;
   2259        1.1    itojun 	struct hifn_command *cmd = NULL;
   2260       1.20  jonathan 	int session, err, ivlen;
   2261        1.1    itojun 	struct cryptodesc *crd1, *crd2, *maccrd, *enccrd;
   2262        1.1    itojun 
   2263        1.1    itojun 	if (crp == NULL || crp->crp_callback == NULL) {
   2264        1.1    itojun 		hifnstats.hst_invalid++;
   2265        1.1    itojun 		return (EINVAL);
   2266        1.1    itojun 	}
   2267       1.52       tls 
   2268       1.52       tls 	mutex_spin_enter(&sc->sc_mtx);
   2269       1.15  jonathan 	session = HIFN_SESSION(crp->crp_sid);
   2270        1.1    itojun 
   2271       1.15  jonathan 	if (sc == NULL || session >= sc->sc_maxses) {
   2272        1.1    itojun 		err = EINVAL;
   2273        1.1    itojun 		goto errout;
   2274        1.1    itojun 	}
   2275        1.1    itojun 
   2276        1.1    itojun 	cmd = (struct hifn_command *)malloc(sizeof(struct hifn_command),
   2277        1.7   tsutsui 	    M_DEVBUF, M_NOWAIT|M_ZERO);
   2278        1.1    itojun 	if (cmd == NULL) {
   2279       1.15  jonathan 		hifnstats.hst_nomem++;
   2280        1.1    itojun 		err = ENOMEM;
   2281        1.1    itojun 		goto errout;
   2282        1.1    itojun 	}
   2283        1.1    itojun 
   2284        1.1    itojun 	if (crp->crp_flags & CRYPTO_F_IMBUF) {
   2285       1.15  jonathan 		cmd->srcu.src_m = (struct mbuf *)crp->crp_buf;
   2286       1.15  jonathan 		cmd->dstu.dst_m = (struct mbuf *)crp->crp_buf;
   2287       1.15  jonathan 	} else if (crp->crp_flags & CRYPTO_F_IOV) {
   2288       1.15  jonathan 		cmd->srcu.src_io = (struct uio *)crp->crp_buf;
   2289       1.15  jonathan 		cmd->dstu.dst_io = (struct uio *)crp->crp_buf;
   2290        1.1    itojun 	} else {
   2291        1.1    itojun 		err = EINVAL;
   2292       1.15  jonathan 		goto errout;	/* XXX we don't handle contiguous buffers! */
   2293        1.1    itojun 	}
   2294        1.1    itojun 
   2295        1.1    itojun 	crd1 = crp->crp_desc;
   2296        1.1    itojun 	if (crd1 == NULL) {
   2297        1.1    itojun 		err = EINVAL;
   2298        1.1    itojun 		goto errout;
   2299        1.1    itojun 	}
   2300        1.1    itojun 	crd2 = crd1->crd_next;
   2301        1.1    itojun 
   2302        1.1    itojun 	if (crd2 == NULL) {
   2303       1.36       tls 		if (crd1->crd_alg == CRYPTO_MD5_HMAC_96 ||
   2304       1.36       tls 		    crd1->crd_alg == CRYPTO_SHA1_HMAC_96 ||
   2305       1.15  jonathan 		    crd1->crd_alg == CRYPTO_SHA1 ||
   2306       1.15  jonathan 		    crd1->crd_alg == CRYPTO_MD5) {
   2307        1.1    itojun 			maccrd = crd1;
   2308        1.1    itojun 			enccrd = NULL;
   2309        1.1    itojun 		} else if (crd1->crd_alg == CRYPTO_DES_CBC ||
   2310       1.15  jonathan 			   crd1->crd_alg == CRYPTO_3DES_CBC ||
   2311       1.20  jonathan 			   crd1->crd_alg == CRYPTO_AES_CBC ||
   2312       1.15  jonathan 			   crd1->crd_alg == CRYPTO_ARC4) {
   2313        1.1    itojun 			if ((crd1->crd_flags & CRD_F_ENCRYPT) == 0)
   2314        1.1    itojun 				cmd->base_masks |= HIFN_BASE_CMD_DECODE;
   2315        1.1    itojun 			maccrd = NULL;
   2316        1.1    itojun 			enccrd = crd1;
   2317       1.27       tls #ifdef	HAVE_CRYPTO_LZS
   2318       1.15  jonathan 		} else if (crd1->crd_alg == CRYPTO_LZS_COMP) {
   2319       1.15  jonathan 		  return (hifn_compression(sc, crp, cmd));
   2320       1.15  jonathan #endif
   2321        1.1    itojun 		} else {
   2322        1.1    itojun 			err = EINVAL;
   2323        1.1    itojun 			goto errout;
   2324        1.1    itojun 		}
   2325        1.1    itojun 	} else {
   2326       1.36       tls 		if ((crd1->crd_alg == CRYPTO_MD5_HMAC_96 ||
   2327       1.36       tls 		     crd1->crd_alg == CRYPTO_SHA1_HMAC_96 ||
   2328       1.15  jonathan 		     crd1->crd_alg == CRYPTO_MD5 ||
   2329       1.15  jonathan 		     crd1->crd_alg == CRYPTO_SHA1) &&
   2330        1.1    itojun 		    (crd2->crd_alg == CRYPTO_DES_CBC ||
   2331       1.15  jonathan 		     crd2->crd_alg == CRYPTO_3DES_CBC ||
   2332       1.20  jonathan 		     crd2->crd_alg == CRYPTO_AES_CBC ||
   2333       1.15  jonathan 		     crd2->crd_alg == CRYPTO_ARC4) &&
   2334        1.1    itojun 		    ((crd2->crd_flags & CRD_F_ENCRYPT) == 0)) {
   2335        1.1    itojun 			cmd->base_masks = HIFN_BASE_CMD_DECODE;
   2336        1.1    itojun 			maccrd = crd1;
   2337        1.1    itojun 			enccrd = crd2;
   2338        1.1    itojun 		} else if ((crd1->crd_alg == CRYPTO_DES_CBC ||
   2339       1.15  jonathan 			    crd1->crd_alg == CRYPTO_ARC4 ||
   2340       1.20  jonathan 			    crd1->crd_alg == CRYPTO_3DES_CBC ||
   2341       1.20  jonathan 			    crd1->crd_alg == CRYPTO_AES_CBC) &&
   2342       1.36       tls 			   (crd2->crd_alg == CRYPTO_MD5_HMAC_96 ||
   2343       1.36       tls 			    crd2->crd_alg == CRYPTO_SHA1_HMAC_96 ||
   2344       1.15  jonathan 			    crd2->crd_alg == CRYPTO_MD5 ||
   2345       1.15  jonathan 			    crd2->crd_alg == CRYPTO_SHA1) &&
   2346       1.15  jonathan 			   (crd1->crd_flags & CRD_F_ENCRYPT)) {
   2347        1.1    itojun 			enccrd = crd1;
   2348        1.1    itojun 			maccrd = crd2;
   2349        1.1    itojun 		} else {
   2350        1.1    itojun 			/*
   2351        1.1    itojun 			 * We cannot order the 7751 as requested
   2352        1.1    itojun 			 */
   2353        1.1    itojun 			err = EINVAL;
   2354        1.1    itojun 			goto errout;
   2355        1.1    itojun 		}
   2356        1.1    itojun 	}
   2357        1.1    itojun 
   2358        1.1    itojun 	if (enccrd) {
   2359       1.15  jonathan 		cmd->enccrd = enccrd;
   2360        1.1    itojun 		cmd->base_masks |= HIFN_BASE_CMD_CRYPT;
   2361       1.15  jonathan 		switch (enccrd->crd_alg) {
   2362       1.15  jonathan 		case CRYPTO_ARC4:
   2363       1.15  jonathan 			cmd->cry_masks |= HIFN_CRYPT_CMD_ALG_RC4;
   2364       1.15  jonathan 			if ((enccrd->crd_flags & CRD_F_ENCRYPT)
   2365       1.15  jonathan 			    != sc->sc_sessions[session].hs_prev_op)
   2366       1.15  jonathan 				sc->sc_sessions[session].hs_state =
   2367       1.15  jonathan 				    HS_STATE_USED;
   2368       1.15  jonathan 			break;
   2369       1.15  jonathan 		case CRYPTO_DES_CBC:
   2370       1.15  jonathan 			cmd->cry_masks |= HIFN_CRYPT_CMD_ALG_DES |
   2371       1.15  jonathan 			    HIFN_CRYPT_CMD_MODE_CBC |
   2372       1.15  jonathan 			    HIFN_CRYPT_CMD_NEW_IV;
   2373       1.15  jonathan 			break;
   2374       1.15  jonathan 		case CRYPTO_3DES_CBC:
   2375       1.15  jonathan 			cmd->cry_masks |= HIFN_CRYPT_CMD_ALG_3DES |
   2376       1.15  jonathan 			    HIFN_CRYPT_CMD_MODE_CBC |
   2377       1.15  jonathan 			    HIFN_CRYPT_CMD_NEW_IV;
   2378       1.15  jonathan 			break;
   2379       1.20  jonathan 		case CRYPTO_AES_CBC:
   2380       1.20  jonathan 			cmd->cry_masks |= HIFN_CRYPT_CMD_ALG_AES |
   2381       1.20  jonathan 			    HIFN_CRYPT_CMD_MODE_CBC |
   2382       1.20  jonathan 			    HIFN_CRYPT_CMD_NEW_IV;
   2383       1.20  jonathan 			break;
   2384       1.15  jonathan 		default:
   2385       1.15  jonathan 			err = EINVAL;
   2386       1.15  jonathan 			goto errout;
   2387       1.15  jonathan 		}
   2388       1.15  jonathan 		if (enccrd->crd_alg != CRYPTO_ARC4) {
   2389       1.20  jonathan 			ivlen = ((enccrd->crd_alg == CRYPTO_AES_CBC) ?
   2390       1.20  jonathan 				HIFN_AES_IV_LENGTH : HIFN_IV_LENGTH);
   2391       1.15  jonathan 			if (enccrd->crd_flags & CRD_F_ENCRYPT) {
   2392       1.15  jonathan 				if (enccrd->crd_flags & CRD_F_IV_EXPLICIT)
   2393       1.41   tsutsui 					memcpy(cmd->iv, enccrd->crd_iv, ivlen);
   2394       1.15  jonathan 				else
   2395       1.15  jonathan 					bcopy(sc->sc_sessions[session].hs_iv,
   2396       1.20  jonathan 					    cmd->iv, ivlen);
   2397       1.15  jonathan 
   2398       1.15  jonathan 				if ((enccrd->crd_flags & CRD_F_IV_PRESENT)
   2399       1.15  jonathan 				    == 0) {
   2400       1.15  jonathan 					if (crp->crp_flags & CRYPTO_F_IMBUF)
   2401       1.15  jonathan 						m_copyback(cmd->srcu.src_m,
   2402       1.15  jonathan 						    enccrd->crd_inject,
   2403       1.20  jonathan 						    ivlen, cmd->iv);
   2404       1.15  jonathan 					else if (crp->crp_flags & CRYPTO_F_IOV)
   2405       1.15  jonathan 						cuio_copyback(cmd->srcu.src_io,
   2406       1.15  jonathan 						    enccrd->crd_inject,
   2407       1.20  jonathan 						    ivlen, cmd->iv);
   2408       1.15  jonathan 				}
   2409       1.15  jonathan 			} else {
   2410       1.15  jonathan 				if (enccrd->crd_flags & CRD_F_IV_EXPLICIT)
   2411       1.41   tsutsui 					memcpy(cmd->iv, enccrd->crd_iv, ivlen);
   2412       1.15  jonathan 				else if (crp->crp_flags & CRYPTO_F_IMBUF)
   2413       1.15  jonathan 					m_copydata(cmd->srcu.src_m,
   2414       1.20  jonathan 					    enccrd->crd_inject, ivlen, cmd->iv);
   2415       1.15  jonathan 				else if (crp->crp_flags & CRYPTO_F_IOV)
   2416       1.15  jonathan 					cuio_copydata(cmd->srcu.src_io,
   2417       1.20  jonathan 					    enccrd->crd_inject, ivlen, cmd->iv);
   2418       1.15  jonathan 			}
   2419        1.1    itojun 		}
   2420        1.1    itojun 
   2421        1.1    itojun 		cmd->ck = enccrd->crd_key;
   2422       1.15  jonathan 		cmd->cklen = enccrd->crd_klen >> 3;
   2423        1.1    itojun 
   2424       1.22     perry 		/*
   2425       1.20  jonathan 		 * Need to specify the size for the AES key in the masks.
   2426       1.20  jonathan 		 */
   2427       1.20  jonathan 		if ((cmd->cry_masks & HIFN_CRYPT_CMD_ALG_MASK) ==
   2428       1.20  jonathan 		    HIFN_CRYPT_CMD_ALG_AES) {
   2429       1.20  jonathan 			switch (cmd->cklen) {
   2430       1.20  jonathan 			case 16:
   2431       1.20  jonathan 				cmd->cry_masks |= HIFN_CRYPT_CMD_KSZ_128;
   2432       1.20  jonathan 				break;
   2433       1.20  jonathan 			case 24:
   2434       1.20  jonathan 				cmd->cry_masks |= HIFN_CRYPT_CMD_KSZ_192;
   2435       1.20  jonathan 				break;
   2436       1.20  jonathan 			case 32:
   2437       1.20  jonathan 				cmd->cry_masks |= HIFN_CRYPT_CMD_KSZ_256;
   2438       1.20  jonathan 				break;
   2439       1.20  jonathan 			default:
   2440       1.20  jonathan 				err = EINVAL;
   2441       1.20  jonathan 				goto errout;
   2442       1.20  jonathan 			}
   2443       1.20  jonathan 		}
   2444       1.20  jonathan 
   2445       1.15  jonathan 		if (sc->sc_sessions[session].hs_state == HS_STATE_USED)
   2446        1.1    itojun 			cmd->cry_masks |= HIFN_CRYPT_CMD_NEW_KEY;
   2447        1.1    itojun 	}
   2448        1.1    itojun 
   2449        1.1    itojun 	if (maccrd) {
   2450       1.15  jonathan 		cmd->maccrd = maccrd;
   2451        1.1    itojun 		cmd->base_masks |= HIFN_BASE_CMD_MAC;
   2452        1.1    itojun 
   2453       1.15  jonathan 		switch (maccrd->crd_alg) {
   2454       1.15  jonathan 		case CRYPTO_MD5:
   2455       1.15  jonathan 			cmd->mac_masks |= HIFN_MAC_CMD_ALG_MD5 |
   2456       1.15  jonathan 			    HIFN_MAC_CMD_RESULT | HIFN_MAC_CMD_MODE_HASH |
   2457       1.15  jonathan 			    HIFN_MAC_CMD_POS_IPSEC;
   2458       1.15  jonathan 			break;
   2459       1.36       tls 		case CRYPTO_MD5_HMAC_96:
   2460       1.15  jonathan 			cmd->mac_masks |= HIFN_MAC_CMD_ALG_MD5 |
   2461       1.15  jonathan 			    HIFN_MAC_CMD_RESULT | HIFN_MAC_CMD_MODE_HMAC |
   2462       1.15  jonathan 			    HIFN_MAC_CMD_POS_IPSEC | HIFN_MAC_CMD_TRUNC;
   2463       1.15  jonathan 			break;
   2464       1.15  jonathan 		case CRYPTO_SHA1:
   2465       1.15  jonathan 			cmd->mac_masks |= HIFN_MAC_CMD_ALG_SHA1 |
   2466       1.15  jonathan 			    HIFN_MAC_CMD_RESULT | HIFN_MAC_CMD_MODE_HASH |
   2467       1.15  jonathan 			    HIFN_MAC_CMD_POS_IPSEC;
   2468       1.15  jonathan 			break;
   2469       1.36       tls 		case CRYPTO_SHA1_HMAC_96:
   2470       1.15  jonathan 			cmd->mac_masks |= HIFN_MAC_CMD_ALG_SHA1 |
   2471       1.15  jonathan 			    HIFN_MAC_CMD_RESULT | HIFN_MAC_CMD_MODE_HMAC |
   2472       1.15  jonathan 			    HIFN_MAC_CMD_POS_IPSEC | HIFN_MAC_CMD_TRUNC;
   2473       1.15  jonathan 			break;
   2474       1.15  jonathan 		}
   2475        1.1    itojun 
   2476       1.36       tls 		if ((maccrd->crd_alg == CRYPTO_SHA1_HMAC_96 ||
   2477       1.36       tls 		     maccrd->crd_alg == CRYPTO_MD5_HMAC_96) &&
   2478       1.15  jonathan 		    sc->sc_sessions[session].hs_state == HS_STATE_USED) {
   2479        1.1    itojun 			cmd->mac_masks |= HIFN_MAC_CMD_NEW_KEY;
   2480       1.41   tsutsui 			memcpy(cmd->mac, maccrd->crd_key, maccrd->crd_klen >> 3);
   2481       1.39    cegger 			memset(cmd->mac + (maccrd->crd_klen >> 3), 0,
   2482        1.1    itojun 			    HIFN_MAC_KEY_LENGTH - (maccrd->crd_klen >> 3));
   2483        1.1    itojun 		}
   2484        1.1    itojun 	}
   2485        1.1    itojun 
   2486       1.15  jonathan 	cmd->crp = crp;
   2487        1.1    itojun 	cmd->session_num = session;
   2488        1.1    itojun 	cmd->softc = sc;
   2489        1.1    itojun 
   2490       1.15  jonathan 	err = hifn_crypto(sc, cmd, crp, hint);
   2491       1.15  jonathan 	if (err == 0) {
   2492       1.15  jonathan 		if (enccrd)
   2493       1.15  jonathan 			sc->sc_sessions[session].hs_prev_op =
   2494       1.15  jonathan 				enccrd->crd_flags & CRD_F_ENCRYPT;
   2495       1.15  jonathan 		if (sc->sc_sessions[session].hs_state == HS_STATE_USED)
   2496       1.15  jonathan 			sc->sc_sessions[session].hs_state = HS_STATE_KEY;
   2497       1.52       tls 		mutex_spin_exit(&sc->sc_mtx);
   2498       1.15  jonathan 		return 0;
   2499       1.15  jonathan 	} else if (err == ERESTART) {
   2500       1.15  jonathan 		/*
   2501       1.15  jonathan 		 * There weren't enough resources to dispatch the request
   2502       1.15  jonathan 		 * to the part.  Notify the caller so they'll requeue this
   2503       1.15  jonathan 		 * request and resubmit it again soon.
   2504       1.15  jonathan 		 */
   2505       1.15  jonathan #ifdef HIFN_DEBUG
   2506       1.15  jonathan 		if (hifn_debug)
   2507       1.51       chs 			printf("%s: requeue request\n", device_xname(sc->sc_dv));
   2508       1.15  jonathan #endif
   2509       1.15  jonathan 		free(cmd, M_DEVBUF);
   2510       1.15  jonathan 		sc->sc_needwakeup |= CRYPTO_SYMQ;
   2511       1.52       tls 		mutex_spin_exit(&sc->sc_mtx);
   2512       1.15  jonathan 		return (err);
   2513       1.15  jonathan 	}
   2514        1.1    itojun 
   2515        1.1    itojun errout:
   2516        1.1    itojun 	if (cmd != NULL)
   2517        1.1    itojun 		free(cmd, M_DEVBUF);
   2518        1.1    itojun 	if (err == EINVAL)
   2519        1.1    itojun 		hifnstats.hst_invalid++;
   2520        1.1    itojun 	else
   2521        1.1    itojun 		hifnstats.hst_nomem++;
   2522        1.1    itojun 	crp->crp_etype = err;
   2523       1.52       tls 	mutex_spin_exit(&sc->sc_mtx);
   2524       1.15  jonathan 	crypto_done(crp);
   2525        1.1    itojun 	return (0);
   2526        1.1    itojun }
   2527        1.1    itojun 
   2528       1.23   thorpej static void
   2529       1.15  jonathan hifn_abort(struct hifn_softc *sc)
   2530       1.15  jonathan {
   2531       1.15  jonathan 	struct hifn_dma *dma = sc->sc_dma;
   2532       1.15  jonathan 	struct hifn_command *cmd;
   2533       1.15  jonathan 	struct cryptop *crp;
   2534       1.15  jonathan 	int i, u;
   2535       1.15  jonathan 
   2536       1.15  jonathan 	i = dma->resk; u = dma->resu;
   2537       1.15  jonathan 	while (u != 0) {
   2538       1.15  jonathan 		cmd = dma->hifn_commands[i];
   2539       1.15  jonathan 		KASSERT(cmd != NULL /*, ("hifn_abort: null cmd slot %u", i)*/);
   2540       1.15  jonathan 		dma->hifn_commands[i] = NULL;
   2541       1.15  jonathan 		crp = cmd->crp;
   2542       1.15  jonathan 
   2543       1.15  jonathan 		if ((dma->resr[i].l & htole32(HIFN_D_VALID)) == 0) {
   2544       1.15  jonathan 			/* Salvage what we can. */
   2545       1.15  jonathan 			hifnstats.hst_opackets++;
   2546       1.28       tls 			hifn_callback(sc, cmd, dma->result_bufs[i]);
   2547       1.15  jonathan 		} else {
   2548       1.15  jonathan 			if (cmd->src_map == cmd->dst_map) {
   2549       1.15  jonathan 				bus_dmamap_sync(sc->sc_dmat, cmd->src_map,
   2550       1.15  jonathan 						0, cmd->src_map->dm_mapsize,
   2551       1.15  jonathan 				    BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
   2552       1.15  jonathan 			} else {
   2553       1.15  jonathan 				bus_dmamap_sync(sc->sc_dmat, cmd->src_map,
   2554       1.15  jonathan 				    0, cmd->src_map->dm_mapsize,
   2555       1.15  jonathan 				    BUS_DMASYNC_POSTWRITE);
   2556       1.15  jonathan 				bus_dmamap_sync(sc->sc_dmat, cmd->dst_map,
   2557       1.15  jonathan 				    0, cmd->dst_map->dm_mapsize,
   2558       1.15  jonathan 				    BUS_DMASYNC_POSTREAD);
   2559       1.15  jonathan 			}
   2560       1.15  jonathan 
   2561       1.15  jonathan 			if (cmd->srcu.src_m != cmd->dstu.dst_m) {
   2562       1.15  jonathan 				m_freem(cmd->srcu.src_m);
   2563       1.34  christos 				crp->crp_buf = (void *)cmd->dstu.dst_m;
   2564       1.15  jonathan 			}
   2565       1.15  jonathan 
   2566       1.15  jonathan 			/* non-shared buffers cannot be restarted */
   2567       1.15  jonathan 			if (cmd->src_map != cmd->dst_map) {
   2568       1.15  jonathan 				/*
   2569       1.15  jonathan 				 * XXX should be EAGAIN, delayed until
   2570       1.15  jonathan 				 * after the reset.
   2571       1.15  jonathan 				 */
   2572       1.15  jonathan 				crp->crp_etype = ENOMEM;
   2573       1.15  jonathan 				bus_dmamap_unload(sc->sc_dmat, cmd->dst_map);
   2574       1.15  jonathan 				bus_dmamap_destroy(sc->sc_dmat, cmd->dst_map);
   2575       1.15  jonathan 			} else
   2576       1.15  jonathan 				crp->crp_etype = ENOMEM;
   2577       1.15  jonathan 
   2578       1.15  jonathan 			bus_dmamap_unload(sc->sc_dmat, cmd->src_map);
   2579       1.15  jonathan 			bus_dmamap_destroy(sc->sc_dmat, cmd->src_map);
   2580       1.15  jonathan 
   2581       1.15  jonathan 			free(cmd, M_DEVBUF);
   2582       1.15  jonathan 			if (crp->crp_etype != EAGAIN)
   2583       1.15  jonathan 				crypto_done(crp);
   2584       1.15  jonathan 		}
   2585       1.15  jonathan 
   2586       1.15  jonathan 		if (++i == HIFN_D_RES_RSIZE)
   2587       1.15  jonathan 			i = 0;
   2588       1.15  jonathan 		u--;
   2589       1.15  jonathan 	}
   2590       1.15  jonathan 	dma->resk = i; dma->resu = u;
   2591       1.15  jonathan 
   2592       1.15  jonathan 	/* Force upload of key next time */
   2593       1.15  jonathan 	for (i = 0; i < sc->sc_maxses; i++)
   2594       1.15  jonathan 		if (sc->sc_sessions[i].hs_state == HS_STATE_KEY)
   2595       1.15  jonathan 			sc->sc_sessions[i].hs_state = HS_STATE_USED;
   2596       1.22     perry 
   2597       1.15  jonathan 	hifn_reset_board(sc, 1);
   2598       1.15  jonathan 	hifn_init_dma(sc);
   2599       1.15  jonathan 	hifn_init_pci_registers(sc);
   2600       1.15  jonathan }
   2601       1.15  jonathan 
   2602       1.23   thorpej static void
   2603       1.17   thorpej hifn_callback(struct hifn_softc *sc, struct hifn_command *cmd, u_int8_t *resbuf)
   2604        1.1    itojun {
   2605        1.1    itojun 	struct hifn_dma *dma = sc->sc_dma;
   2606       1.15  jonathan 	struct cryptop *crp = cmd->crp;
   2607        1.1    itojun 	struct cryptodesc *crd;
   2608        1.1    itojun 	struct mbuf *m;
   2609       1.20  jonathan 	int totlen, i, u, ivlen;
   2610        1.1    itojun 
   2611       1.15  jonathan 	if (cmd->src_map == cmd->dst_map)
   2612       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->src_map,
   2613       1.15  jonathan 		    0, cmd->src_map->dm_mapsize,
   2614       1.15  jonathan 		    BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD);
   2615       1.15  jonathan 	else {
   2616       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->src_map,
   2617       1.15  jonathan 		    0, cmd->src_map->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   2618       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->dst_map,
   2619       1.15  jonathan 		    0, cmd->dst_map->dm_mapsize, BUS_DMASYNC_POSTREAD);
   2620        1.1    itojun 	}
   2621        1.1    itojun 
   2622       1.15  jonathan 	if (crp->crp_flags & CRYPTO_F_IMBUF) {
   2623       1.15  jonathan 		if (cmd->srcu.src_m != cmd->dstu.dst_m) {
   2624       1.34  christos 			crp->crp_buf = (void *)cmd->dstu.dst_m;
   2625       1.15  jonathan 			totlen = cmd->src_map->dm_mapsize;
   2626       1.15  jonathan 			for (m = cmd->dstu.dst_m; m != NULL; m = m->m_next) {
   2627       1.15  jonathan 				if (totlen < m->m_len) {
   2628       1.15  jonathan 					m->m_len = totlen;
   2629       1.15  jonathan 					totlen = 0;
   2630       1.15  jonathan 				} else
   2631       1.15  jonathan 					totlen -= m->m_len;
   2632       1.15  jonathan 			}
   2633       1.15  jonathan 			cmd->dstu.dst_m->m_pkthdr.len =
   2634       1.15  jonathan 			    cmd->srcu.src_m->m_pkthdr.len;
   2635       1.15  jonathan 			m_freem(cmd->srcu.src_m);
   2636       1.15  jonathan 		}
   2637       1.15  jonathan 	}
   2638       1.15  jonathan 
   2639       1.15  jonathan 	if (cmd->sloplen != 0) {
   2640       1.15  jonathan 		if (crp->crp_flags & CRYPTO_F_IMBUF)
   2641       1.15  jonathan 			m_copyback((struct mbuf *)crp->crp_buf,
   2642       1.15  jonathan 			    cmd->src_map->dm_mapsize - cmd->sloplen,
   2643       1.34  christos 			    cmd->sloplen, (void *)&dma->slop[cmd->slopidx]);
   2644       1.15  jonathan 		else if (crp->crp_flags & CRYPTO_F_IOV)
   2645       1.15  jonathan 			cuio_copyback((struct uio *)crp->crp_buf,
   2646       1.15  jonathan 			    cmd->src_map->dm_mapsize - cmd->sloplen,
   2647       1.34  christos 			    cmd->sloplen, (void *)&dma->slop[cmd->slopidx]);
   2648       1.15  jonathan 	}
   2649       1.15  jonathan 
   2650       1.15  jonathan 	i = dma->dstk; u = dma->dstu;
   2651       1.15  jonathan 	while (u != 0) {
   2652       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
   2653       1.15  jonathan 		    offsetof(struct hifn_dma, dstr[i]), sizeof(struct hifn_desc),
   2654       1.15  jonathan 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
   2655       1.15  jonathan 		if (dma->dstr[i].l & htole32(HIFN_D_VALID)) {
   2656       1.15  jonathan 			bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
   2657       1.15  jonathan 			    offsetof(struct hifn_dma, dstr[i]),
   2658       1.15  jonathan 			    sizeof(struct hifn_desc),
   2659       1.15  jonathan 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   2660       1.15  jonathan 			break;
   2661        1.1    itojun 		}
   2662       1.15  jonathan 		if (++i == (HIFN_D_DST_RSIZE + 1))
   2663       1.15  jonathan 			i = 0;
   2664       1.15  jonathan 		else
   2665       1.15  jonathan 			u--;
   2666        1.1    itojun 	}
   2667       1.15  jonathan 	dma->dstk = i; dma->dstu = u;
   2668       1.15  jonathan 
   2669       1.15  jonathan 	hifnstats.hst_obytes += cmd->dst_map->dm_mapsize;
   2670        1.1    itojun 
   2671        1.1    itojun 	if ((cmd->base_masks & (HIFN_BASE_CMD_CRYPT | HIFN_BASE_CMD_DECODE)) ==
   2672        1.1    itojun 	    HIFN_BASE_CMD_CRYPT) {
   2673        1.1    itojun 		for (crd = crp->crp_desc; crd; crd = crd->crd_next) {
   2674        1.1    itojun 			if (crd->crd_alg != CRYPTO_DES_CBC &&
   2675       1.20  jonathan 			    crd->crd_alg != CRYPTO_3DES_CBC &&
   2676       1.20  jonathan 			    crd->crd_alg != CRYPTO_AES_CBC)
   2677        1.1    itojun 				continue;
   2678       1.20  jonathan 			ivlen = ((crd->crd_alg == CRYPTO_AES_CBC) ?
   2679       1.20  jonathan 				HIFN_AES_IV_LENGTH : HIFN_IV_LENGTH);
   2680       1.15  jonathan 			if (crp->crp_flags & CRYPTO_F_IMBUF)
   2681       1.15  jonathan 				m_copydata((struct mbuf *)crp->crp_buf,
   2682       1.20  jonathan 				    crd->crd_skip + crd->crd_len - ivlen,
   2683       1.20  jonathan 				    ivlen,
   2684       1.15  jonathan 				    cmd->softc->sc_sessions[cmd->session_num].hs_iv);
   2685       1.15  jonathan 			else if (crp->crp_flags & CRYPTO_F_IOV) {
   2686       1.15  jonathan 				cuio_copydata((struct uio *)crp->crp_buf,
   2687       1.20  jonathan 				    crd->crd_skip + crd->crd_len - ivlen,
   2688       1.20  jonathan 				    ivlen,
   2689       1.15  jonathan 				    cmd->softc->sc_sessions[cmd->session_num].hs_iv);
   2690       1.15  jonathan 			}
   2691       1.15  jonathan 			/* XXX We do not handle contig data */
   2692        1.1    itojun 			break;
   2693        1.1    itojun 		}
   2694        1.1    itojun 	}
   2695        1.1    itojun 
   2696       1.15  jonathan 	if (cmd->base_masks & HIFN_BASE_CMD_MAC) {
   2697       1.15  jonathan 		u_int8_t *macbuf;
   2698       1.15  jonathan 
   2699       1.15  jonathan 		macbuf = resbuf + sizeof(struct hifn_base_result);
   2700       1.15  jonathan 		if (cmd->base_masks & HIFN_BASE_CMD_COMP)
   2701       1.15  jonathan 			macbuf += sizeof(struct hifn_comp_result);
   2702       1.15  jonathan 		macbuf += sizeof(struct hifn_mac_result);
   2703       1.15  jonathan 
   2704        1.1    itojun 		for (crd = crp->crp_desc; crd; crd = crd->crd_next) {
   2705       1.15  jonathan 			int len;
   2706       1.15  jonathan 
   2707       1.15  jonathan 			if (crd->crd_alg == CRYPTO_MD5)
   2708       1.15  jonathan 				len = 16;
   2709       1.15  jonathan 			else if (crd->crd_alg == CRYPTO_SHA1)
   2710       1.15  jonathan 				len = 20;
   2711       1.36       tls 			else if (crd->crd_alg == CRYPTO_MD5_HMAC_96 ||
   2712       1.36       tls 			    crd->crd_alg == CRYPTO_SHA1_HMAC_96)
   2713       1.15  jonathan 				len = 12;
   2714       1.15  jonathan 			else
   2715        1.1    itojun 				continue;
   2716       1.15  jonathan 
   2717       1.15  jonathan 			if (crp->crp_flags & CRYPTO_F_IMBUF)
   2718       1.15  jonathan 				m_copyback((struct mbuf *)crp->crp_buf,
   2719       1.15  jonathan 				    crd->crd_inject, len, macbuf);
   2720       1.15  jonathan 			else if ((crp->crp_flags & CRYPTO_F_IOV) && crp->crp_mac)
   2721       1.41   tsutsui 				memcpy(crp->crp_mac, (void *)macbuf, len);
   2722       1.15  jonathan 			break;
   2723       1.15  jonathan 		}
   2724       1.15  jonathan 	}
   2725       1.15  jonathan 
   2726       1.15  jonathan 	if (cmd->src_map != cmd->dst_map) {
   2727       1.15  jonathan 		bus_dmamap_unload(sc->sc_dmat, cmd->dst_map);
   2728       1.15  jonathan 		bus_dmamap_destroy(sc->sc_dmat, cmd->dst_map);
   2729       1.15  jonathan 	}
   2730       1.15  jonathan 	bus_dmamap_unload(sc->sc_dmat, cmd->src_map);
   2731       1.15  jonathan 	bus_dmamap_destroy(sc->sc_dmat, cmd->src_map);
   2732       1.15  jonathan 	free(cmd, M_DEVBUF);
   2733       1.15  jonathan 	crypto_done(crp);
   2734       1.15  jonathan }
   2735       1.15  jonathan 
   2736       1.27       tls #ifdef HAVE_CRYPTO_LZS
   2737       1.15  jonathan 
   2738       1.23   thorpej static int
   2739       1.15  jonathan hifn_compression(struct hifn_softc *sc, struct cryptop *crp,
   2740       1.15  jonathan     struct hifn_command *cmd)
   2741       1.15  jonathan {
   2742       1.15  jonathan 	struct cryptodesc *crd = crp->crp_desc;
   2743       1.15  jonathan 	int s, err = 0;
   2744       1.15  jonathan 
   2745       1.15  jonathan 	cmd->compcrd = crd;
   2746       1.15  jonathan 	cmd->base_masks |= HIFN_BASE_CMD_COMP;
   2747       1.15  jonathan 
   2748       1.15  jonathan 	if ((crp->crp_flags & CRYPTO_F_IMBUF) == 0) {
   2749       1.15  jonathan 		/*
   2750       1.15  jonathan 		 * XXX can only handle mbufs right now since we can
   2751       1.15  jonathan 		 * XXX dynamically resize them.
   2752       1.15  jonathan 		 */
   2753       1.15  jonathan 		err = EINVAL;
   2754       1.15  jonathan 		return (ENOMEM);
   2755       1.15  jonathan 	}
   2756       1.15  jonathan 
   2757       1.15  jonathan 	if ((crd->crd_flags & CRD_F_COMP) == 0)
   2758       1.15  jonathan 		cmd->base_masks |= HIFN_BASE_CMD_DECODE;
   2759       1.15  jonathan 	if (crd->crd_alg == CRYPTO_LZS_COMP)
   2760       1.15  jonathan 		cmd->comp_masks |= HIFN_COMP_CMD_ALG_LZS |
   2761       1.15  jonathan 		    HIFN_COMP_CMD_CLEARHIST;
   2762       1.15  jonathan 
   2763       1.15  jonathan 	if (bus_dmamap_create(sc->sc_dmat, HIFN_MAX_DMALEN, MAX_SCATTER,
   2764       1.15  jonathan 	    HIFN_MAX_SEGLEN, 0, BUS_DMA_NOWAIT, &cmd->src_map)) {
   2765       1.15  jonathan 		err = ENOMEM;
   2766       1.15  jonathan 		goto fail;
   2767       1.15  jonathan 	}
   2768       1.15  jonathan 
   2769       1.15  jonathan 	if (bus_dmamap_create(sc->sc_dmat, HIFN_MAX_DMALEN, MAX_SCATTER,
   2770       1.15  jonathan 	    HIFN_MAX_SEGLEN, 0, BUS_DMA_NOWAIT, &cmd->dst_map)) {
   2771       1.15  jonathan 		err = ENOMEM;
   2772       1.15  jonathan 		goto fail;
   2773       1.15  jonathan 	}
   2774       1.15  jonathan 
   2775       1.15  jonathan 	if (crp->crp_flags & CRYPTO_F_IMBUF) {
   2776       1.15  jonathan 		int len;
   2777       1.15  jonathan 
   2778       1.15  jonathan 		if (bus_dmamap_load_mbuf(sc->sc_dmat, cmd->src_map,
   2779       1.15  jonathan 		    cmd->srcu.src_m, BUS_DMA_NOWAIT)) {
   2780       1.15  jonathan 			err = ENOMEM;
   2781       1.15  jonathan 			goto fail;
   2782       1.15  jonathan 		}
   2783       1.15  jonathan 
   2784       1.15  jonathan 		len = cmd->src_map->dm_mapsize / MCLBYTES;
   2785       1.15  jonathan 		if ((cmd->src_map->dm_mapsize % MCLBYTES) != 0)
   2786       1.15  jonathan 			len++;
   2787       1.15  jonathan 		len *= MCLBYTES;
   2788       1.15  jonathan 
   2789       1.15  jonathan 		if ((crd->crd_flags & CRD_F_COMP) == 0)
   2790       1.15  jonathan 			len *= 4;
   2791       1.15  jonathan 
   2792       1.15  jonathan 		if (len > HIFN_MAX_DMALEN)
   2793       1.15  jonathan 			len = HIFN_MAX_DMALEN;
   2794       1.15  jonathan 
   2795       1.15  jonathan 		cmd->dstu.dst_m = hifn_mkmbuf_chain(len, cmd->srcu.src_m);
   2796       1.15  jonathan 		if (cmd->dstu.dst_m == NULL) {
   2797       1.15  jonathan 			err = ENOMEM;
   2798       1.15  jonathan 			goto fail;
   2799       1.15  jonathan 		}
   2800       1.15  jonathan 
   2801       1.15  jonathan 		if (bus_dmamap_load_mbuf(sc->sc_dmat, cmd->dst_map,
   2802       1.15  jonathan 		    cmd->dstu.dst_m, BUS_DMA_NOWAIT)) {
   2803       1.15  jonathan 			err = ENOMEM;
   2804       1.15  jonathan 			goto fail;
   2805       1.15  jonathan 		}
   2806       1.15  jonathan 	} else if (crp->crp_flags & CRYPTO_F_IOV) {
   2807       1.15  jonathan 		if (bus_dmamap_load_uio(sc->sc_dmat, cmd->src_map,
   2808       1.15  jonathan 		    cmd->srcu.src_io, BUS_DMA_NOWAIT)) {
   2809       1.15  jonathan 			err = ENOMEM;
   2810       1.15  jonathan 			goto fail;
   2811       1.15  jonathan 		}
   2812       1.15  jonathan 		if (bus_dmamap_load_uio(sc->sc_dmat, cmd->dst_map,
   2813       1.15  jonathan 		    cmd->dstu.dst_io, BUS_DMA_NOWAIT)) {
   2814       1.15  jonathan 			err = ENOMEM;
   2815       1.15  jonathan 			goto fail;
   2816       1.15  jonathan 		}
   2817       1.15  jonathan 	}
   2818       1.15  jonathan 
   2819       1.15  jonathan 	if (cmd->src_map == cmd->dst_map)
   2820       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->src_map,
   2821       1.15  jonathan 		    0, cmd->src_map->dm_mapsize,
   2822       1.15  jonathan 		    BUS_DMASYNC_PREWRITE|BUS_DMASYNC_PREREAD);
   2823       1.15  jonathan 	else {
   2824       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->src_map,
   2825       1.15  jonathan 		    0, cmd->src_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
   2826       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->dst_map,
   2827       1.15  jonathan 		    0, cmd->dst_map->dm_mapsize, BUS_DMASYNC_PREREAD);
   2828       1.15  jonathan 	}
   2829       1.15  jonathan 
   2830       1.15  jonathan 	cmd->crp = crp;
   2831       1.15  jonathan 	/*
   2832       1.15  jonathan 	 * Always use session 0.  The modes of compression we use are
   2833       1.15  jonathan 	 * stateless and there is always at least one compression
   2834       1.15  jonathan 	 * context, zero.
   2835       1.15  jonathan 	 */
   2836       1.15  jonathan 	cmd->session_num = 0;
   2837       1.15  jonathan 	cmd->softc = sc;
   2838       1.15  jonathan 
   2839       1.15  jonathan 	err = hifn_compress_enter(sc, cmd);
   2840       1.15  jonathan 
   2841       1.15  jonathan 	if (err != 0)
   2842       1.15  jonathan 		goto fail;
   2843       1.15  jonathan 	return (0);
   2844       1.15  jonathan 
   2845       1.15  jonathan fail:
   2846       1.15  jonathan 	if (cmd->dst_map != NULL) {
   2847       1.15  jonathan 		if (cmd->dst_map->dm_nsegs > 0)
   2848       1.15  jonathan 			bus_dmamap_unload(sc->sc_dmat, cmd->dst_map);
   2849       1.15  jonathan 		bus_dmamap_destroy(sc->sc_dmat, cmd->dst_map);
   2850       1.15  jonathan 	}
   2851       1.15  jonathan 	if (cmd->src_map != NULL) {
   2852       1.15  jonathan 		if (cmd->src_map->dm_nsegs > 0)
   2853       1.15  jonathan 			bus_dmamap_unload(sc->sc_dmat, cmd->src_map);
   2854       1.15  jonathan 		bus_dmamap_destroy(sc->sc_dmat, cmd->src_map);
   2855       1.15  jonathan 	}
   2856       1.15  jonathan 	free(cmd, M_DEVBUF);
   2857       1.15  jonathan 	if (err == EINVAL)
   2858       1.15  jonathan 		hifnstats.hst_invalid++;
   2859       1.15  jonathan 	else
   2860       1.15  jonathan 		hifnstats.hst_nomem++;
   2861       1.15  jonathan 	crp->crp_etype = err;
   2862       1.15  jonathan 	crypto_done(crp);
   2863       1.15  jonathan 	return (0);
   2864       1.15  jonathan }
   2865       1.15  jonathan 
   2866       1.23   thorpej static int
   2867       1.15  jonathan hifn_compress_enter(struct hifn_softc *sc, struct hifn_command *cmd)
   2868       1.15  jonathan {
   2869       1.15  jonathan 	struct hifn_dma *dma = sc->sc_dma;
   2870       1.15  jonathan 	int cmdi, resi;
   2871       1.15  jonathan 	u_int32_t cmdlen;
   2872       1.15  jonathan 
   2873       1.15  jonathan 	if ((dma->cmdu + 1) > HIFN_D_CMD_RSIZE ||
   2874       1.15  jonathan 	    (dma->resu + 1) > HIFN_D_CMD_RSIZE)
   2875       1.15  jonathan 		return (ENOMEM);
   2876       1.15  jonathan 
   2877       1.15  jonathan 	if ((dma->srcu + cmd->src_map->dm_nsegs) > HIFN_D_SRC_RSIZE ||
   2878       1.15  jonathan 	    (dma->dstu + cmd->dst_map->dm_nsegs) > HIFN_D_DST_RSIZE)
   2879       1.15  jonathan 		return (ENOMEM);
   2880       1.15  jonathan 
   2881       1.15  jonathan 	if (dma->cmdi == HIFN_D_CMD_RSIZE) {
   2882       1.15  jonathan 		dma->cmdi = 0;
   2883       1.15  jonathan 		dma->cmdr[HIFN_D_CMD_RSIZE].l = htole32(HIFN_D_VALID |
   2884       1.15  jonathan 		    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   2885       1.15  jonathan 		HIFN_CMDR_SYNC(sc, HIFN_D_CMD_RSIZE,
   2886       1.15  jonathan 		    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2887       1.15  jonathan 	}
   2888       1.15  jonathan 	cmdi = dma->cmdi++;
   2889       1.15  jonathan 	cmdlen = hifn_write_command(cmd, dma->command_bufs[cmdi]);
   2890       1.15  jonathan 	HIFN_CMD_SYNC(sc, cmdi, BUS_DMASYNC_PREWRITE);
   2891       1.15  jonathan 
   2892       1.15  jonathan 	/* .p for command/result already set */
   2893       1.15  jonathan 	dma->cmdr[cmdi].l = htole32(cmdlen | HIFN_D_VALID | HIFN_D_LAST |
   2894       1.15  jonathan 	    HIFN_D_MASKDONEIRQ);
   2895       1.15  jonathan 	HIFN_CMDR_SYNC(sc, cmdi,
   2896       1.15  jonathan 	    BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   2897       1.15  jonathan 	dma->cmdu++;
   2898       1.15  jonathan 	if (sc->sc_c_busy == 0) {
   2899       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_CSR, HIFN_DMACSR_C_CTRL_ENA);
   2900       1.15  jonathan 		sc->sc_c_busy = 1;
   2901       1.15  jonathan 		SET_LED(sc, HIFN_MIPSRST_LED0);
   2902       1.15  jonathan 	}
   2903       1.15  jonathan 
   2904       1.15  jonathan 	/*
   2905       1.15  jonathan 	 * We don't worry about missing an interrupt (which a "command wait"
   2906       1.15  jonathan 	 * interrupt salvages us from), unless there is more than one command
   2907       1.15  jonathan 	 * in the queue.
   2908       1.15  jonathan 	 */
   2909       1.15  jonathan 	if (dma->cmdu > 1) {
   2910       1.15  jonathan 		sc->sc_dmaier |= HIFN_DMAIER_C_WAIT;
   2911       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_IER, sc->sc_dmaier);
   2912       1.15  jonathan 	}
   2913       1.15  jonathan 
   2914       1.15  jonathan 	hifnstats.hst_ipackets++;
   2915       1.15  jonathan 	hifnstats.hst_ibytes += cmd->src_map->dm_mapsize;
   2916       1.15  jonathan 
   2917       1.15  jonathan 	hifn_dmamap_load_src(sc, cmd);
   2918       1.15  jonathan 	if (sc->sc_s_busy == 0) {
   2919       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_CSR, HIFN_DMACSR_S_CTRL_ENA);
   2920       1.15  jonathan 		sc->sc_s_busy = 1;
   2921       1.15  jonathan 		SET_LED(sc, HIFN_MIPSRST_LED1);
   2922       1.15  jonathan 	}
   2923       1.15  jonathan 
   2924       1.15  jonathan 	/*
   2925       1.15  jonathan 	 * Unlike other descriptors, we don't mask done interrupt from
   2926       1.15  jonathan 	 * result descriptor.
   2927       1.15  jonathan 	 */
   2928       1.15  jonathan 	if (dma->resi == HIFN_D_RES_RSIZE) {
   2929       1.15  jonathan 		dma->resi = 0;
   2930       1.15  jonathan 		dma->resr[HIFN_D_RES_RSIZE].l = htole32(HIFN_D_VALID |
   2931       1.15  jonathan 		    HIFN_D_JUMP | HIFN_D_MASKDONEIRQ);
   2932       1.15  jonathan 		HIFN_RESR_SYNC(sc, HIFN_D_RES_RSIZE,
   2933       1.15  jonathan 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   2934       1.15  jonathan 	}
   2935       1.15  jonathan 	resi = dma->resi++;
   2936       1.15  jonathan 	dma->hifn_commands[resi] = cmd;
   2937       1.15  jonathan 	HIFN_RES_SYNC(sc, resi, BUS_DMASYNC_PREREAD);
   2938       1.15  jonathan 	dma->resr[resi].l = htole32(HIFN_MAX_RESULT |
   2939       1.15  jonathan 	    HIFN_D_VALID | HIFN_D_LAST);
   2940       1.15  jonathan 	HIFN_RESR_SYNC(sc, resi,
   2941       1.15  jonathan 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   2942       1.15  jonathan 	dma->resu++;
   2943       1.15  jonathan 	if (sc->sc_r_busy == 0) {
   2944       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_CSR, HIFN_DMACSR_R_CTRL_ENA);
   2945       1.15  jonathan 		sc->sc_r_busy = 1;
   2946       1.15  jonathan 		SET_LED(sc, HIFN_MIPSRST_LED2);
   2947       1.15  jonathan 	}
   2948       1.15  jonathan 
   2949       1.15  jonathan 	if (cmd->sloplen)
   2950       1.15  jonathan 		cmd->slopidx = resi;
   2951       1.15  jonathan 
   2952       1.15  jonathan 	hifn_dmamap_load_dst(sc, cmd);
   2953       1.15  jonathan 
   2954       1.15  jonathan 	if (sc->sc_d_busy == 0) {
   2955       1.15  jonathan 		WRITE_REG_1(sc, HIFN_1_DMA_CSR, HIFN_DMACSR_D_CTRL_ENA);
   2956       1.15  jonathan 		sc->sc_d_busy = 1;
   2957       1.15  jonathan 	}
   2958       1.15  jonathan 	sc->sc_active = 5;
   2959       1.15  jonathan 	cmd->cmd_callback = hifn_callback_comp;
   2960       1.15  jonathan 	return (0);
   2961       1.15  jonathan }
   2962       1.15  jonathan 
   2963       1.23   thorpej static void
   2964       1.15  jonathan hifn_callback_comp(struct hifn_softc *sc, struct hifn_command *cmd,
   2965       1.15  jonathan     u_int8_t *resbuf)
   2966       1.15  jonathan {
   2967       1.15  jonathan 	struct hifn_base_result baseres;
   2968       1.15  jonathan 	struct cryptop *crp = cmd->crp;
   2969       1.15  jonathan 	struct hifn_dma *dma = sc->sc_dma;
   2970       1.15  jonathan 	struct mbuf *m;
   2971       1.15  jonathan 	int err = 0, i, u;
   2972       1.15  jonathan 	u_int32_t olen;
   2973       1.15  jonathan 	bus_size_t dstsize;
   2974       1.15  jonathan 
   2975       1.15  jonathan 	bus_dmamap_sync(sc->sc_dmat, cmd->src_map,
   2976       1.15  jonathan 	    0, cmd->src_map->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   2977       1.15  jonathan 	bus_dmamap_sync(sc->sc_dmat, cmd->dst_map,
   2978       1.15  jonathan 	    0, cmd->dst_map->dm_mapsize, BUS_DMASYNC_POSTREAD);
   2979       1.15  jonathan 
   2980       1.15  jonathan 	dstsize = cmd->dst_map->dm_mapsize;
   2981       1.15  jonathan 	bus_dmamap_unload(sc->sc_dmat, cmd->dst_map);
   2982       1.15  jonathan 
   2983       1.41   tsutsui 	memcpy(&baseres, resbuf, sizeof(struct hifn_base_result));
   2984       1.15  jonathan 
   2985       1.15  jonathan 	i = dma->dstk; u = dma->dstu;
   2986       1.15  jonathan 	while (u != 0) {
   2987       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
   2988       1.15  jonathan 		    offsetof(struct hifn_dma, dstr[i]), sizeof(struct hifn_desc),
   2989       1.15  jonathan 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
   2990       1.15  jonathan 		if (dma->dstr[i].l & htole32(HIFN_D_VALID)) {
   2991       1.15  jonathan 			bus_dmamap_sync(sc->sc_dmat, sc->sc_dmamap,
   2992       1.15  jonathan 			    offsetof(struct hifn_dma, dstr[i]),
   2993       1.15  jonathan 			    sizeof(struct hifn_desc),
   2994       1.15  jonathan 			    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   2995        1.1    itojun 			break;
   2996        1.1    itojun 		}
   2997       1.15  jonathan 		if (++i == (HIFN_D_DST_RSIZE + 1))
   2998       1.15  jonathan 			i = 0;
   2999       1.15  jonathan 		else
   3000       1.15  jonathan 			u--;
   3001        1.1    itojun 	}
   3002       1.15  jonathan 	dma->dstk = i; dma->dstu = u;
   3003        1.1    itojun 
   3004       1.15  jonathan 	if (baseres.flags & htole16(HIFN_BASE_RES_DSTOVERRUN)) {
   3005       1.15  jonathan 		bus_size_t xlen;
   3006       1.15  jonathan 
   3007       1.15  jonathan 		xlen = dstsize;
   3008       1.15  jonathan 
   3009       1.15  jonathan 		m_freem(cmd->dstu.dst_m);
   3010       1.15  jonathan 
   3011       1.15  jonathan 		if (xlen == HIFN_MAX_DMALEN) {
   3012       1.15  jonathan 			/* We've done all we can. */
   3013       1.15  jonathan 			err = E2BIG;
   3014       1.15  jonathan 			goto out;
   3015       1.15  jonathan 		}
   3016       1.15  jonathan 
   3017       1.15  jonathan 		xlen += MCLBYTES;
   3018       1.15  jonathan 
   3019       1.15  jonathan 		if (xlen > HIFN_MAX_DMALEN)
   3020       1.15  jonathan 			xlen = HIFN_MAX_DMALEN;
   3021       1.15  jonathan 
   3022       1.15  jonathan 		cmd->dstu.dst_m = hifn_mkmbuf_chain(xlen,
   3023       1.15  jonathan 		    cmd->srcu.src_m);
   3024       1.15  jonathan 		if (cmd->dstu.dst_m == NULL) {
   3025       1.15  jonathan 			err = ENOMEM;
   3026       1.15  jonathan 			goto out;
   3027       1.15  jonathan 		}
   3028       1.15  jonathan 		if (bus_dmamap_load_mbuf(sc->sc_dmat, cmd->dst_map,
   3029       1.15  jonathan 		    cmd->dstu.dst_m, BUS_DMA_NOWAIT)) {
   3030       1.15  jonathan 			err = ENOMEM;
   3031       1.15  jonathan 			goto out;
   3032       1.15  jonathan 		}
   3033       1.15  jonathan 
   3034       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->src_map,
   3035       1.15  jonathan 		    0, cmd->src_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
   3036       1.15  jonathan 		bus_dmamap_sync(sc->sc_dmat, cmd->dst_map,
   3037       1.15  jonathan 		    0, cmd->dst_map->dm_mapsize, BUS_DMASYNC_PREREAD);
   3038       1.15  jonathan 
   3039       1.15  jonathan 		err = hifn_compress_enter(sc, cmd);
   3040       1.15  jonathan 		if (err != 0)
   3041       1.15  jonathan 			goto out;
   3042       1.15  jonathan 		return;
   3043       1.15  jonathan 	}
   3044       1.15  jonathan 
   3045       1.15  jonathan 	olen = dstsize - (letoh16(baseres.dst_cnt) |
   3046       1.15  jonathan 	    (((letoh16(baseres.session) & HIFN_BASE_RES_DSTLEN_M) >>
   3047       1.15  jonathan 	    HIFN_BASE_RES_DSTLEN_S) << 16));
   3048       1.15  jonathan 
   3049       1.15  jonathan 	crp->crp_olen = olen - cmd->compcrd->crd_skip;
   3050       1.15  jonathan 
   3051       1.15  jonathan 	bus_dmamap_unload(sc->sc_dmat, cmd->src_map);
   3052       1.15  jonathan 	bus_dmamap_destroy(sc->sc_dmat, cmd->src_map);
   3053       1.15  jonathan 	bus_dmamap_destroy(sc->sc_dmat, cmd->dst_map);
   3054       1.15  jonathan 
   3055       1.15  jonathan 	m = cmd->dstu.dst_m;
   3056       1.15  jonathan 	if (m->m_flags & M_PKTHDR)
   3057       1.15  jonathan 		m->m_pkthdr.len = olen;
   3058       1.34  christos 	crp->crp_buf = (void *)m;
   3059       1.15  jonathan 	for (; m != NULL; m = m->m_next) {
   3060       1.15  jonathan 		if (olen >= m->m_len)
   3061       1.15  jonathan 			olen -= m->m_len;
   3062       1.15  jonathan 		else {
   3063       1.15  jonathan 			m->m_len = olen;
   3064       1.15  jonathan 			olen = 0;
   3065       1.15  jonathan 		}
   3066       1.15  jonathan 	}
   3067       1.15  jonathan 
   3068       1.15  jonathan 	m_freem(cmd->srcu.src_m);
   3069        1.1    itojun 	free(cmd, M_DEVBUF);
   3070       1.15  jonathan 	crp->crp_etype = 0;
   3071       1.15  jonathan 	crypto_done(crp);
   3072       1.15  jonathan 	return;
   3073       1.15  jonathan 
   3074       1.15  jonathan out:
   3075       1.15  jonathan 	if (cmd->dst_map != NULL) {
   3076       1.15  jonathan 		if (cmd->src_map->dm_nsegs != 0)
   3077       1.15  jonathan 			bus_dmamap_unload(sc->sc_dmat, cmd->src_map);
   3078       1.15  jonathan 		bus_dmamap_destroy(sc->sc_dmat, cmd->dst_map);
   3079       1.15  jonathan 	}
   3080       1.15  jonathan 	if (cmd->src_map != NULL) {
   3081       1.15  jonathan 		if (cmd->src_map->dm_nsegs != 0)
   3082       1.15  jonathan 			bus_dmamap_unload(sc->sc_dmat, cmd->src_map);
   3083       1.15  jonathan 		bus_dmamap_destroy(sc->sc_dmat, cmd->src_map);
   3084       1.15  jonathan 	}
   3085       1.15  jonathan 	if (cmd->dstu.dst_m != NULL)
   3086       1.15  jonathan 		m_freem(cmd->dstu.dst_m);
   3087       1.15  jonathan 	free(cmd, M_DEVBUF);
   3088       1.15  jonathan 	crp->crp_etype = err;
   3089        1.1    itojun 	crypto_done(crp);
   3090        1.1    itojun }
   3091       1.15  jonathan 
   3092       1.23   thorpej static struct mbuf *
   3093       1.15  jonathan hifn_mkmbuf_chain(int totlen, struct mbuf *mtemplate)
   3094       1.15  jonathan {
   3095       1.15  jonathan 	int len;
   3096       1.15  jonathan 	struct mbuf *m, *m0, *mlast;
   3097       1.15  jonathan 
   3098       1.15  jonathan 	if (mtemplate->m_flags & M_PKTHDR) {
   3099       1.15  jonathan 		len = MHLEN;
   3100       1.15  jonathan 		MGETHDR(m0, M_DONTWAIT, MT_DATA);
   3101       1.15  jonathan 	} else {
   3102       1.15  jonathan 		len = MLEN;
   3103       1.15  jonathan 		MGET(m0, M_DONTWAIT, MT_DATA);
   3104       1.15  jonathan 	}
   3105       1.15  jonathan 	if (m0 == NULL)
   3106       1.15  jonathan 		return (NULL);
   3107       1.15  jonathan 	if (len == MHLEN)
   3108       1.15  jonathan 		M_DUP_PKTHDR(m0, mtemplate);
   3109       1.15  jonathan 	MCLGET(m0, M_DONTWAIT);
   3110       1.61      maxv 	if (!(m0->m_flags & M_EXT)) {
   3111       1.61      maxv  		m_freem(m0);
   3112       1.61      maxv 		return (NULL);
   3113       1.61      maxv 	}
   3114       1.15  jonathan 	len = MCLBYTES;
   3115       1.15  jonathan 
   3116       1.15  jonathan 	totlen -= len;
   3117       1.15  jonathan 	m0->m_pkthdr.len = m0->m_len = len;
   3118       1.15  jonathan 	mlast = m0;
   3119       1.15  jonathan 
   3120       1.15  jonathan 	while (totlen > 0) {
   3121       1.15  jonathan 		MGET(m, M_DONTWAIT, MT_DATA);
   3122       1.15  jonathan 		if (m == NULL) {
   3123       1.15  jonathan 			m_freem(m0);
   3124       1.15  jonathan 			return (NULL);
   3125       1.15  jonathan 		}
   3126       1.15  jonathan 		MCLGET(m, M_DONTWAIT);
   3127       1.15  jonathan 		if (!(m->m_flags & M_EXT)) {
   3128       1.58  christos 			m_freem(m);
   3129       1.15  jonathan 			m_freem(m0);
   3130       1.15  jonathan 			return (NULL);
   3131       1.15  jonathan 		}
   3132       1.15  jonathan 		len = MCLBYTES;
   3133       1.15  jonathan 		m->m_len = len;
   3134       1.15  jonathan 		if (m0->m_flags & M_PKTHDR)
   3135       1.15  jonathan 			m0->m_pkthdr.len += len;
   3136       1.15  jonathan 		totlen -= len;
   3137       1.15  jonathan 
   3138       1.15  jonathan 		mlast->m_next = m;
   3139       1.15  jonathan 		mlast = m;
   3140       1.15  jonathan 	}
   3141       1.15  jonathan 
   3142       1.15  jonathan 	return (m0);
   3143       1.15  jonathan }
   3144       1.27       tls #endif	/* HAVE_CRYPTO_LZS */
   3145       1.15  jonathan 
   3146       1.23   thorpej static void
   3147       1.17   thorpej hifn_write_4(struct hifn_softc *sc, int reggrp, bus_size_t reg, u_int32_t val)
   3148       1.15  jonathan {
   3149       1.15  jonathan 	/*
   3150       1.15  jonathan 	 * 7811 PB3 rev/2 parts lock-up on burst writes to Group 0
   3151       1.15  jonathan 	 * and Group 1 registers; avoid conditions that could create
   3152       1.15  jonathan 	 * burst writes by doing a read in between the writes.
   3153       1.15  jonathan 	 */
   3154       1.15  jonathan 	if (sc->sc_flags & HIFN_NO_BURSTWRITE) {
   3155       1.15  jonathan 		if (sc->sc_waw_lastgroup == reggrp &&
   3156       1.15  jonathan 		    sc->sc_waw_lastreg == reg - 4) {
   3157       1.15  jonathan 			bus_space_read_4(sc->sc_st1, sc->sc_sh1, HIFN_1_REVID);
   3158       1.15  jonathan 		}
   3159       1.15  jonathan 		sc->sc_waw_lastgroup = reggrp;
   3160       1.15  jonathan 		sc->sc_waw_lastreg = reg;
   3161       1.15  jonathan 	}
   3162       1.15  jonathan 	if (reggrp == 0)
   3163       1.15  jonathan 		bus_space_write_4(sc->sc_st0, sc->sc_sh0, reg, val);
   3164       1.15  jonathan 	else
   3165       1.15  jonathan 		bus_space_write_4(sc->sc_st1, sc->sc_sh1, reg, val);
   3166       1.15  jonathan 
   3167       1.15  jonathan }
   3168       1.15  jonathan 
   3169       1.23   thorpej static u_int32_t
   3170       1.17   thorpej hifn_read_4(struct hifn_softc *sc, int reggrp, bus_size_t reg)
   3171       1.15  jonathan {
   3172       1.15  jonathan 	if (sc->sc_flags & HIFN_NO_BURSTWRITE) {
   3173       1.15  jonathan 		sc->sc_waw_lastgroup = -1;
   3174       1.15  jonathan 		sc->sc_waw_lastreg = 1;
   3175       1.15  jonathan 	}
   3176       1.15  jonathan 	if (reggrp == 0)
   3177       1.15  jonathan 		return (bus_space_read_4(sc->sc_st0, sc->sc_sh0, reg));
   3178       1.15  jonathan 	return (bus_space_read_4(sc->sc_st1, sc->sc_sh1, reg));
   3179       1.15  jonathan }
   3180