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