svn commit: r193579 - in head/sys: conf dev/sec powerpc/conf powerpc/include powerpc/mpc85xx

Rafal Jaworowski raj at FreeBSD.org
Sat Jun 6 09:37:57 UTC 2009


Author: raj
Date: Sat Jun  6 09:37:55 2009
New Revision: 193579
URL: http://svn.freebsd.org/changeset/base/193579

Log:
  Initial version of the sec(4) driver for the integrated security engine found
  in Freescale system-on-chip devices.
  
  The following algorithms and schemes are currently supported:
    - 3DES, AES, DES
    - MD5, SHA1, SHA256, SHA384, SHA512
  
  Reviewed by:	philip
  Obtained from:	Freescale, Semihalf

Added:
  head/sys/dev/sec/
  head/sys/dev/sec/sec.c   (contents, props changed)
  head/sys/dev/sec/sec.h   (contents, props changed)
Modified:
  head/sys/conf/files.powerpc
  head/sys/powerpc/conf/MPC85XX
  head/sys/powerpc/include/ocpbus.h
  head/sys/powerpc/mpc85xx/ocpbus.c
  head/sys/powerpc/mpc85xx/ocpbus.h

Modified: head/sys/conf/files.powerpc
==============================================================================
--- head/sys/conf/files.powerpc	Sat Jun  6 09:33:32 2009	(r193578)
+++ head/sys/conf/files.powerpc	Sat Jun  6 09:37:55 2009	(r193579)
@@ -39,6 +39,7 @@ dev/ofw/ofw_standard.c		optional	aim
 dev/powermac_nvram/powermac_nvram.c optional	powermac_nvram powermac
 dev/quicc/quicc_bfe_ocp.c	optional	quicc mpc85xx
 dev/scc/scc_bfe_macio.c		optional	scc powermac
+dev/sec/sec.c			optional	sec mpc85xx
 dev/sound/macio/aoa.c		optional	snd_davbus | snd_ai2s powermac
 dev/sound/macio/davbus.c	optional	snd_davbus powermac
 dev/sound/macio/i2s.c		optional	snd_ai2s powermac

Added: head/sys/dev/sec/sec.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/dev/sec/sec.c	Sat Jun  6 09:37:55 2009	(r193579)
@@ -0,0 +1,1875 @@
+/*-
+ * Copyright (C) 2008-2009 Semihalf, Piotr Ziecik
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
+ * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+ * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+/*
+ * Freescale integrated Security Engine (SEC) driver. Currently SEC 2.0 and
+ * 3.0 are supported.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/bus.h>
+#include <sys/endian.h>
+#include <sys/kernel.h>
+#include <sys/lock.h>
+#include <sys/malloc.h>
+#include <sys/mbuf.h>
+#include <sys/module.h>
+#include <sys/mutex.h>
+#include <sys/random.h>
+#include <sys/rman.h>
+
+#include <machine/bus.h>
+#include <machine/ocpbus.h>
+#include <machine/resource.h>
+
+#include <opencrypto/cryptodev.h>
+#include "cryptodev_if.h"
+
+#include <dev/sec/sec.h>
+
+static int	sec_probe(device_t dev);
+static int	sec_attach(device_t dev);
+static int	sec_detach(device_t dev);
+static int	sec_suspend(device_t dev);
+static int	sec_resume(device_t dev);
+static void	sec_shutdown(device_t dev);
+static void	sec_primary_intr(void *arg);
+static void	sec_secondary_intr(void *arg);
+static int	sec_setup_intr(struct sec_softc *sc, struct resource **ires,
+    void **ihand, int *irid, driver_intr_t handler, const char *iname);
+static void	sec_release_intr(struct sec_softc *sc, struct resource *ires,
+    void *ihand, int irid, const char *iname);
+static int	sec_controller_reset(struct sec_softc *sc);
+static int	sec_channel_reset(struct sec_softc *sc, int channel, int full);
+static int	sec_init(struct sec_softc *sc);
+static int	sec_alloc_dma_mem(struct sec_softc *sc,
+    struct sec_dma_mem *dma_mem, bus_size_t size);
+static int	sec_desc_map_dma(struct sec_softc *sc,
+    struct sec_dma_mem *dma_mem, void *mem, bus_size_t size, int type,
+    struct sec_desc_map_info *sdmi);
+static void	sec_free_dma_mem(struct sec_dma_mem *dma_mem);
+static void	sec_enqueue(struct sec_softc *sc);
+static int	sec_enqueue_desc(struct sec_softc *sc, struct sec_desc *desc,
+    int channel);
+static int	sec_eu_channel(struct sec_softc *sc, int eu);
+static int	sec_make_pointer(struct sec_softc *sc, struct sec_desc *desc,
+    u_int n, void *data, bus_size_t doffset, bus_size_t dsize, int dtype);
+static int	sec_make_pointer_direct(struct sec_softc *sc,
+    struct sec_desc *desc, u_int n, bus_addr_t data, bus_size_t dsize);
+static int	sec_alloc_session(struct sec_softc *sc);
+static int	sec_newsession(device_t dev, u_int32_t *sidp,
+    struct cryptoini *cri);
+static int	sec_freesession(device_t dev, uint64_t tid);
+static int	sec_process(device_t dev, struct cryptop *crp, int hint);
+static int	sec_split_cri(struct cryptoini *cri, struct cryptoini **enc,
+    struct cryptoini **mac);
+static int	sec_split_crp(struct cryptop *crp, struct cryptodesc **enc,
+    struct cryptodesc **mac);
+static int	sec_build_common_ns_desc(struct sec_softc *sc,
+    struct sec_desc *desc, struct sec_session *ses, struct cryptop *crp,
+    struct cryptodesc *enc, int buftype);
+static int	sec_build_common_s_desc(struct sec_softc *sc,
+    struct sec_desc *desc, struct sec_session *ses, struct cryptop *crp,
+    struct cryptodesc *enc, struct cryptodesc *mac, int buftype);
+
+static struct sec_session *sec_get_session(struct sec_softc *sc, u_int sid);
+static struct sec_desc *sec_find_desc(struct sec_softc *sc, bus_addr_t paddr);
+
+/* AESU */
+static int	sec_aesu_newsession(struct sec_softc *sc,
+    struct sec_session *ses, struct cryptoini *enc, struct cryptoini *mac);
+static int	sec_aesu_make_desc(struct sec_softc *sc,
+    struct sec_session *ses, struct sec_desc *desc, struct cryptop *crp,
+    int buftype);
+
+/* DEU */
+static int	sec_deu_newsession(struct sec_softc *sc,
+    struct sec_session *ses, struct cryptoini *enc, struct cryptoini *mac);
+static int	sec_deu_make_desc(struct sec_softc *sc,
+    struct sec_session *ses, struct sec_desc *desc, struct cryptop *crp,
+    int buftype);
+
+/* MDEU */
+static int	sec_mdeu_can_handle(u_int alg);
+static int	sec_mdeu_config(struct cryptodesc *crd,
+    u_int *eu, u_int *mode, u_int *hashlen);
+static int	sec_mdeu_newsession(struct sec_softc *sc,
+    struct sec_session *ses, struct cryptoini *enc, struct cryptoini *mac);
+static int	sec_mdeu_make_desc(struct sec_softc *sc,
+    struct sec_session *ses, struct sec_desc *desc, struct cryptop *crp,
+    int buftype);
+
+static device_method_t sec_methods[] = {
+	/* Device interface */
+	DEVMETHOD(device_probe,		sec_probe),
+	DEVMETHOD(device_attach,	sec_attach),
+	DEVMETHOD(device_detach,	sec_detach),
+
+	DEVMETHOD(device_suspend,	sec_suspend),
+	DEVMETHOD(device_resume,	sec_resume),
+	DEVMETHOD(device_shutdown,	sec_shutdown),
+
+	/* Bus interface */
+	DEVMETHOD(bus_print_child,	bus_generic_print_child),
+	DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
+
+	/* Crypto methods */
+	DEVMETHOD(cryptodev_newsession,	sec_newsession),
+	DEVMETHOD(cryptodev_freesession,sec_freesession),
+	DEVMETHOD(cryptodev_process,	sec_process),
+
+	{ 0, 0 }
+};
+static driver_t sec_driver = {
+	"sec",
+	sec_methods,
+	sizeof(struct sec_softc),
+};
+
+static devclass_t sec_devclass;
+DRIVER_MODULE(sec, ocpbus, sec_driver, sec_devclass, 0, 0);
+MODULE_DEPEND(sec, crypto, 1, 1, 1);
+
+static struct sec_eu_methods sec_eus[] = {
+	{
+		sec_aesu_newsession,
+		sec_aesu_make_desc,
+	},
+	{
+		sec_deu_newsession,
+		sec_deu_make_desc,
+	},
+	{
+		sec_mdeu_newsession,
+		sec_mdeu_make_desc,
+	},
+	{ NULL, NULL }
+};
+
+static inline void
+sec_sync_dma_mem(struct sec_dma_mem *dma_mem, bus_dmasync_op_t op)
+{
+
+	/* Sync only if dma memory is valid */
+	if (dma_mem->dma_vaddr != NULL)
+		bus_dmamap_sync(dma_mem->dma_tag, dma_mem->dma_map, op);
+}
+
+static inline void
+sec_free_session(struct sec_softc *sc, struct sec_session *ses)
+{
+
+	SEC_LOCK(sc, sessions);
+	ses->ss_used = 0;
+	SEC_UNLOCK(sc, sessions);
+}
+
+static inline void *
+sec_get_pointer_data(struct sec_desc *desc, u_int n)
+{
+
+	return (desc->sd_ptr_dmem[n].dma_vaddr);
+}
+
+static int
+sec_probe(device_t dev)
+{
+	struct sec_softc *sc;
+	device_t parent;
+	uintptr_t devtype;
+	uint64_t id;
+	int error;
+
+	parent = device_get_parent(dev);
+	error = BUS_READ_IVAR(parent, dev, OCPBUS_IVAR_DEVTYPE, &devtype);
+	if (error)
+		return (error);
+
+	if (devtype != OCPBUS_DEVTYPE_SEC)
+		return (ENXIO);
+
+	sc = device_get_softc(dev);
+
+	sc->sc_rrid = 0;
+	sc->sc_rres = bus_alloc_resource(dev, SYS_RES_MEMORY, &sc->sc_rrid,
+	    0ul, ~0ul, SEC_IO_SIZE, RF_ACTIVE);
+
+	if (sc->sc_rres == NULL)
+		return (ENXIO);
+
+	sc->sc_bas.bsh = rman_get_bushandle(sc->sc_rres);
+	sc->sc_bas.bst = rman_get_bustag(sc->sc_rres);
+
+	id = SEC_READ(sc, SEC_ID);
+
+	bus_release_resource(dev, SYS_RES_MEMORY, sc->sc_rrid, sc->sc_rres);
+
+	switch (id) {
+	case SEC_20_ID:
+		device_set_desc(dev, "Freescale Security Engine 2.0");
+		sc->sc_version = 2;
+		break;
+	case SEC_30_ID:
+		device_set_desc(dev, "Freescale Security Engine 3.0");
+		sc->sc_version = 3;
+		break;
+	default:
+		device_printf(dev, "unknown SEC ID 0x%016llx!\n", id);
+		return (ENXIO);
+	}
+
+	return (0);
+}
+
+static int
+sec_attach(device_t dev)
+{
+	struct sec_softc *sc;
+	struct sec_hw_lt *lt;
+	int error = 0;
+	int i;
+
+	sc = device_get_softc(dev);
+	sc->sc_dev = dev;
+	sc->sc_blocked = 0;
+	sc->sc_shutdown = 0;
+
+	sc->sc_cid = crypto_get_driverid(dev, CRYPTOCAP_F_HARDWARE);
+	if (sc->sc_cid < 0) {
+		device_printf(dev, "could not get crypto driver ID!\n");
+		return (ENXIO);
+	}
+
+	/* Init locks */
+	mtx_init(&sc->sc_controller_lock, device_get_nameunit(dev),
+	    "SEC Controller lock", MTX_DEF);
+	mtx_init(&sc->sc_descriptors_lock, device_get_nameunit(dev),
+	    "SEC Descriptors lock", MTX_DEF);
+	mtx_init(&sc->sc_sessions_lock, device_get_nameunit(dev),
+	    "SEC Sessions lock", MTX_DEF);
+
+	/* Allocate I/O memory for SEC registers */
+	sc->sc_rrid = 0;
+	sc->sc_rres = bus_alloc_resource(dev, SYS_RES_MEMORY, &sc->sc_rrid,
+	    0ul, ~0ul, SEC_IO_SIZE, RF_ACTIVE);
+
+	if (sc->sc_rres == NULL) {
+		device_printf(dev, "could not allocate I/O memory!\n");
+		goto fail1;
+	}
+
+	sc->sc_bas.bsh = rman_get_bushandle(sc->sc_rres);
+	sc->sc_bas.bst = rman_get_bustag(sc->sc_rres);
+
+	/* Setup interrupts */
+	sc->sc_pri_irid = 0;
+	error = sec_setup_intr(sc, &sc->sc_pri_ires, &sc->sc_pri_ihand,
+	    &sc->sc_pri_irid, sec_primary_intr, "primary");
+
+	if (error)
+		goto fail2;
+
+	sc->sc_sec_irid = 1;
+	error = sec_setup_intr(sc, &sc->sc_sec_ires, &sc->sc_sec_ihand,
+	    &sc->sc_sec_irid, sec_secondary_intr, "secondary");
+
+	if (error)
+		goto fail3;
+
+	/* Alloc DMA memory for descriptors and link tables */
+	error = sec_alloc_dma_mem(sc, &(sc->sc_desc_dmem),
+	    SEC_DESCRIPTORS * sizeof(struct sec_hw_desc));
+
+	if (error)
+		goto fail4;
+
+	error = sec_alloc_dma_mem(sc, &(sc->sc_lt_dmem),
+	    (SEC_LT_ENTRIES + 1) * sizeof(struct sec_hw_lt));
+
+	if (error)
+		goto fail5;
+
+	/* Fill in descriptors and link tables */
+	for (i = 0; i < SEC_DESCRIPTORS; i++) {
+		sc->sc_desc[i].sd_desc =
+		    (struct sec_hw_desc*)(sc->sc_desc_dmem.dma_vaddr) + i;
+		sc->sc_desc[i].sd_desc_paddr = sc->sc_desc_dmem.dma_paddr +
+		    (i * sizeof(struct sec_hw_desc));
+	}
+
+	for (i = 0; i < SEC_LT_ENTRIES + 1; i++) {
+		sc->sc_lt[i].sl_lt =
+		    (struct sec_hw_lt*)(sc->sc_lt_dmem.dma_vaddr) + i;
+		sc->sc_lt[i].sl_lt_paddr = sc->sc_lt_dmem.dma_paddr +
+		    (i * sizeof(struct sec_hw_lt));
+	}
+
+	/* Last entry in link table is used to create a circle */
+	lt = sc->sc_lt[SEC_LT_ENTRIES].sl_lt;
+	lt->shl_length = 0;
+	lt->shl_r = 0;
+	lt->shl_n = 1;
+	lt->shl_ptr = sc->sc_lt[0].sl_lt_paddr;
+
+	/* Init descriptor and link table queues pointers */
+	SEC_CNT_INIT(sc, sc_free_desc_get_cnt, SEC_DESCRIPTORS);
+	SEC_CNT_INIT(sc, sc_free_desc_put_cnt, SEC_DESCRIPTORS);
+	SEC_CNT_INIT(sc, sc_ready_desc_get_cnt, SEC_DESCRIPTORS);
+	SEC_CNT_INIT(sc, sc_ready_desc_put_cnt, SEC_DESCRIPTORS);
+	SEC_CNT_INIT(sc, sc_queued_desc_get_cnt, SEC_DESCRIPTORS);
+	SEC_CNT_INIT(sc, sc_queued_desc_put_cnt, SEC_DESCRIPTORS);
+	SEC_CNT_INIT(sc, sc_lt_alloc_cnt, SEC_LT_ENTRIES);
+	SEC_CNT_INIT(sc, sc_lt_free_cnt, SEC_LT_ENTRIES);
+
+	/* Create masks for fast checks */
+	sc->sc_int_error_mask = 0;
+	for (i = 0; i < SEC_CHANNELS; i++)
+		sc->sc_int_error_mask |= (~0ULL & SEC_INT_CH_ERR(i));
+
+	switch (sc->sc_version) {
+	case 2:
+		sc->sc_channel_idle_mask =
+		    (SEC_CHAN_CSR2_FFLVL_M << SEC_CHAN_CSR2_FFLVL_S) |
+		    (SEC_CHAN_CSR2_MSTATE_M << SEC_CHAN_CSR2_MSTATE_S) |
+		    (SEC_CHAN_CSR2_PSTATE_M << SEC_CHAN_CSR2_PSTATE_S) |
+		    (SEC_CHAN_CSR2_GSTATE_M << SEC_CHAN_CSR2_GSTATE_S);
+		break;
+	case 3:
+		sc->sc_channel_idle_mask =
+		    (SEC_CHAN_CSR3_FFLVL_M << SEC_CHAN_CSR3_FFLVL_S) |
+		    (SEC_CHAN_CSR3_MSTATE_M << SEC_CHAN_CSR3_MSTATE_S) |
+		    (SEC_CHAN_CSR3_PSTATE_M << SEC_CHAN_CSR3_PSTATE_S) |
+		    (SEC_CHAN_CSR3_GSTATE_M << SEC_CHAN_CSR3_GSTATE_S);
+		break;
+	}
+
+	/* Init hardware */
+	error = sec_init(sc);
+
+	if (error)
+		goto fail6;
+
+	/* Register in OCF (AESU) */
+	crypto_register(sc->sc_cid, CRYPTO_AES_CBC, 0, 0);
+
+	/* Register in OCF (DEU) */
+	crypto_register(sc->sc_cid, CRYPTO_DES_CBC, 0, 0);
+	crypto_register(sc->sc_cid, CRYPTO_3DES_CBC, 0, 0);
+
+	/* Register in OCF (MDEU) */
+	crypto_register(sc->sc_cid, CRYPTO_MD5, 0, 0);
+	crypto_register(sc->sc_cid, CRYPTO_MD5_HMAC, 0, 0);
+	crypto_register(sc->sc_cid, CRYPTO_SHA1, 0, 0);
+	crypto_register(sc->sc_cid, CRYPTO_SHA1_HMAC, 0, 0);
+	crypto_register(sc->sc_cid, CRYPTO_SHA2_256_HMAC, 0, 0);
+	if (sc->sc_version >= 3) {
+		crypto_register(sc->sc_cid, CRYPTO_SHA2_384_HMAC, 0, 0);
+		crypto_register(sc->sc_cid, CRYPTO_SHA2_512_HMAC, 0, 0);
+	}
+
+	return (0);
+
+fail6:
+	sec_free_dma_mem(&(sc->sc_lt_dmem));
+fail5:
+	sec_free_dma_mem(&(sc->sc_desc_dmem));
+fail4:
+	sec_release_intr(sc, sc->sc_sec_ires, sc->sc_sec_ihand,
+	    sc->sc_sec_irid, "secondary");
+fail3:
+	sec_release_intr(sc, sc->sc_pri_ires, sc->sc_pri_ihand,
+	    sc->sc_pri_irid, "primary");
+fail2:
+	bus_release_resource(dev, SYS_RES_MEMORY, sc->sc_rrid, sc->sc_rres);
+fail1:
+	mtx_destroy(&sc->sc_controller_lock);
+	mtx_destroy(&sc->sc_descriptors_lock);
+	mtx_destroy(&sc->sc_sessions_lock);
+
+	return (ENXIO);
+}
+
+static int
+sec_detach(device_t dev)
+{
+	struct sec_softc *sc = device_get_softc(dev);
+	int i, error, timeout = SEC_TIMEOUT;
+
+	/* Prepare driver to shutdown */
+	SEC_LOCK(sc, descriptors);
+	sc->sc_shutdown = 1;
+	SEC_UNLOCK(sc, descriptors);
+
+	/* Wait until all queued processing finishes */
+	while (1) {
+		SEC_LOCK(sc, descriptors);
+		i = SEC_READY_DESC_CNT(sc) + SEC_QUEUED_DESC_CNT(sc);
+		SEC_UNLOCK(sc, descriptors);
+
+		if (i == 0)
+			break;
+
+		if (timeout < 0) {
+			device_printf(dev, "queue flush timeout!\n");
+
+			/* DMA can be still active - stop it */
+			for (i = 0; i < SEC_CHANNELS; i++)
+				sec_channel_reset(sc, i, 1);
+
+			break;
+		}
+
+		timeout -= 1000;
+		DELAY(1000);
+	}
+
+	/* Disable interrupts */
+	SEC_WRITE(sc, SEC_IER, 0);
+
+	/* Unregister from OCF */
+	crypto_unregister_all(sc->sc_cid);
+
+	/* Free DMA memory */
+	for (i = 0; i < SEC_DESCRIPTORS; i++)
+		SEC_DESC_FREE_POINTERS(&(sc->sc_desc[i]));
+
+	sec_free_dma_mem(&(sc->sc_lt_dmem));
+	sec_free_dma_mem(&(sc->sc_desc_dmem));
+
+	/* Release interrupts */
+	sec_release_intr(sc, sc->sc_pri_ires, sc->sc_pri_ihand,
+	    sc->sc_pri_irid, "primary");
+	sec_release_intr(sc, sc->sc_sec_ires, sc->sc_sec_ihand,
+	    sc->sc_sec_irid, "secondary");
+
+	/* Release memory */
+	if (sc->sc_rres) {
+		error = bus_release_resource(dev, SYS_RES_MEMORY, sc->sc_rrid,
+		    sc->sc_rres);
+		if (error)
+			device_printf(dev, "bus_release_resource() failed for"
+			    " I/O memory, error %d\n", error);
+
+		sc->sc_rres = NULL;
+	}
+
+	mtx_destroy(&sc->sc_controller_lock);
+	mtx_destroy(&sc->sc_descriptors_lock);
+	mtx_destroy(&sc->sc_sessions_lock);
+
+	return (0);
+}
+
+static int
+sec_suspend(device_t dev)
+{
+
+	return (0);
+}
+
+static int
+sec_resume(device_t dev)
+{
+
+	return (0);
+}
+
+static void
+sec_shutdown(device_t dev)
+{
+}
+
+static int
+sec_setup_intr(struct sec_softc *sc, struct resource **ires, void **ihand,
+    int *irid, driver_intr_t handler, const char *iname)
+{
+	int error;
+
+	(*ires) = bus_alloc_resource_any(sc->sc_dev, SYS_RES_IRQ, irid,
+	    RF_ACTIVE);
+
+	if ((*ires) == NULL) {
+		device_printf(sc->sc_dev, "could not allocate %s IRQ\n", iname);
+		return (ENXIO);
+	}
+
+	error = bus_setup_intr(sc->sc_dev, *ires, INTR_MPSAFE | INTR_TYPE_NET,
+	    NULL, handler, sc, ihand);
+
+	if (error) {
+		device_printf(sc->sc_dev, "failed to set up %s IRQ\n", iname);
+		if (bus_release_resource(sc->sc_dev, SYS_RES_IRQ, *irid, *ires))
+			device_printf(sc->sc_dev, "could not release %s IRQ\n",
+			    iname);
+
+		(*ires) = NULL;
+		return (error);
+	}
+
+	return (0);
+}
+
+static void
+sec_release_intr(struct sec_softc *sc, struct resource *ires, void *ihand,
+    int irid, const char *iname)
+{
+	int error;
+
+	if (ires == NULL)
+		return;
+
+	error = bus_teardown_intr(sc->sc_dev, ires, ihand);
+	if (error)
+		device_printf(sc->sc_dev, "bus_teardown_intr() failed for %s"
+		    " IRQ, error %d\n", iname, error);
+
+	error = bus_release_resource(sc->sc_dev, SYS_RES_IRQ, irid, ires);
+	if (error)
+		device_printf(sc->sc_dev, "bus_release_resource() failed for %s"
+		    " IRQ, error %d\n", iname, error);
+}
+
+static void
+sec_primary_intr(void *arg)
+{
+	struct sec_softc *sc = arg;
+	struct sec_desc *desc;
+	uint64_t isr;
+	int i, wakeup = 0;
+
+	SEC_LOCK(sc, controller);
+
+	/* Check for errors */
+	isr = SEC_READ(sc, SEC_ISR);
+	if (isr & sc->sc_int_error_mask) {
+		/* Check each channel for error */
+		for (i = 0; i < SEC_CHANNELS; i++) {
+			if ((isr & SEC_INT_CH_ERR(i)) == 0)
+				continue;
+
+			device_printf(sc->sc_dev,
+			    "I/O error on channel %i!\n", i);
+
+			/* Find and mark problematic descriptor */
+			desc = sec_find_desc(sc, SEC_READ(sc,
+			    SEC_CHAN_CDPR(i)));
+
+			if (desc != NULL)
+				desc->sd_error = EIO;
+
+			/* Do partial channel reset */
+			sec_channel_reset(sc, i, 0);
+		}
+	}
+
+	/* ACK interrupt */
+	SEC_WRITE(sc, SEC_ICR, 0xFFFFFFFFFFFFFFFFULL);
+
+	SEC_UNLOCK(sc, controller);
+	SEC_LOCK(sc, descriptors);
+
+	/* Handle processed descriptors */
+	SEC_DESC_SYNC(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
+
+	while (SEC_QUEUED_DESC_CNT(sc) > 0) {
+		desc = SEC_GET_QUEUED_DESC(sc);
+
+		if (desc->sd_desc->shd_done != 0xFF && desc->sd_error == 0) {
+			SEC_PUT_BACK_QUEUED_DESC(sc);
+			break;
+		}
+
+		SEC_DESC_SYNC_POINTERS(desc, BUS_DMASYNC_PREREAD |
+		    BUS_DMASYNC_PREWRITE);
+
+		desc->sd_crp->crp_etype = desc->sd_error;
+		crypto_done(desc->sd_crp);
+
+		SEC_DESC_FREE_POINTERS(desc);
+		SEC_DESC_FREE_LT(sc, desc);
+		SEC_DESC_QUEUED2FREE(sc);
+	}
+
+	SEC_DESC_SYNC(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
+
+	if (!sc->sc_shutdown) {
+		wakeup = sc->sc_blocked;
+		sc->sc_blocked = 0;
+	}
+
+	SEC_UNLOCK(sc, descriptors);
+
+	/* Enqueue ready descriptors in hardware */
+	sec_enqueue(sc);
+
+	if (wakeup)
+		crypto_unblock(sc->sc_cid, wakeup);
+}
+
+static void
+sec_secondary_intr(void *arg)
+{
+	struct sec_softc *sc = arg;
+
+	device_printf(sc->sc_dev, "spurious secondary interrupt!\n");
+	sec_primary_intr(arg);
+}
+
+static int
+sec_controller_reset(struct sec_softc *sc)
+{
+	int timeout = SEC_TIMEOUT;
+
+	/* Reset Controller */
+	SEC_WRITE(sc, SEC_MCR, SEC_MCR_SWR);
+
+	while (SEC_READ(sc, SEC_MCR) & SEC_MCR_SWR) {
+		DELAY(1000);
+		timeout -= 1000;
+
+		if (timeout < 0) {
+			device_printf(sc->sc_dev, "timeout while waiting for "
+			    "device reset!\n");
+			return (ETIMEDOUT);
+		}
+	}
+
+	return (0);
+}
+
+static int
+sec_channel_reset(struct sec_softc *sc, int channel, int full)
+{
+	int timeout = SEC_TIMEOUT;
+	uint64_t bit = (full) ? SEC_CHAN_CCR_R : SEC_CHAN_CCR_CON;
+	uint64_t reg;
+
+	/* Reset Channel */
+	reg = SEC_READ(sc, SEC_CHAN_CCR(channel));
+	SEC_WRITE(sc, SEC_CHAN_CCR(channel), reg | bit);
+
+	while (SEC_READ(sc, SEC_CHAN_CCR(channel)) & bit) {
+		DELAY(1000);
+		timeout -= 1000;
+
+		if (timeout < 0) {
+			device_printf(sc->sc_dev, "timeout while waiting for "
+			    "channel reset!\n");
+			return (ETIMEDOUT);
+		}
+	}
+
+	if (full) {
+		reg = SEC_CHAN_CCR_CDIE | SEC_CHAN_CCR_NT | SEC_CHAN_CCR_BS;
+
+		switch(sc->sc_version) {
+		case 2:
+			reg |= SEC_CHAN_CCR_CDWE;
+			break;
+		case 3:
+			reg |= SEC_CHAN_CCR_AWSE | SEC_CHAN_CCR_WGN;
+			break;
+		}
+
+		SEC_WRITE(sc, SEC_CHAN_CCR(channel), reg);
+	}
+
+	return (0);
+}
+
+static int
+sec_init(struct sec_softc *sc)
+{
+	uint64_t reg;
+	int error, i;
+
+	/* Reset controller twice to clear all pending interrupts */
+	error = sec_controller_reset(sc);
+	if (error)
+		return (error);
+
+	error = sec_controller_reset(sc);
+	if (error)
+		return (error);
+
+	/* Reset channels */
+	for (i = 0; i < SEC_CHANNELS; i++) {
+		error = sec_channel_reset(sc, i, 1);
+		if (error)
+			return (error);
+	}
+
+	/* Enable Interrupts */
+	reg = SEC_INT_ITO;
+	for (i = 0; i < SEC_CHANNELS; i++)
+		reg |= SEC_INT_CH_DN(i) | SEC_INT_CH_ERR(i);
+
+	SEC_WRITE(sc, SEC_IER, reg);
+
+	return (error);
+}
+
+static void
+sec_alloc_dma_mem_cb(void *arg, bus_dma_segment_t *segs, int nseg, int error)
+{
+	struct sec_dma_mem *dma_mem = arg;
+
+	if (error)
+		return;
+
+	KASSERT(nseg == 1, ("Wrong number of segments, should be 1"));
+	dma_mem->dma_paddr = segs->ds_addr;
+}
+
+static void
+sec_dma_map_desc_cb(void *arg, bus_dma_segment_t *segs, int nseg,
+    int error)
+{
+	struct sec_desc_map_info *sdmi = arg;
+	struct sec_softc *sc = sdmi->sdmi_sc;
+	struct sec_lt *lt = NULL;
+	bus_addr_t addr;
+	bus_size_t size;
+	int i;
+
+	SEC_LOCK_ASSERT(sc, descriptors);
+
+	if (error)
+		return;
+
+	for (i = 0; i < nseg; i++) {
+		addr = segs[i].ds_addr;
+		size = segs[i].ds_len;
+
+		/* Skip requested offset */
+		if (sdmi->sdmi_offset >= size) {
+			sdmi->sdmi_offset -= size;
+			continue;
+		}
+
+		addr += sdmi->sdmi_offset;
+		size -= sdmi->sdmi_offset;
+		sdmi->sdmi_offset = 0;
+
+		/* Do not link more than requested */
+		if (sdmi->sdmi_size < size)
+			size = sdmi->sdmi_size;
+
+		lt = SEC_ALLOC_LT_ENTRY(sc);
+		lt->sl_lt->shl_length = size;
+		lt->sl_lt->shl_r = 0;
+		lt->sl_lt->shl_n = 0;
+		lt->sl_lt->shl_ptr = addr;
+
+		if (sdmi->sdmi_lt_first == NULL)
+			sdmi->sdmi_lt_first = lt;
+
+		sdmi->sdmi_lt_used += 1;
+
+		if ((sdmi->sdmi_size -= size) == 0)
+			break;
+	}
+
+	sdmi->sdmi_lt_last = lt;
+}
+
+static void
+sec_dma_map_desc_cb2(void *arg, bus_dma_segment_t *segs, int nseg,
+    bus_size_t size, int error)
+{
+
+	sec_dma_map_desc_cb(arg, segs, nseg, error);
+}
+
+static int
+sec_alloc_dma_mem(struct sec_softc *sc, struct sec_dma_mem *dma_mem,
+    bus_size_t size)
+{
+	int error;
+
+	if (dma_mem->dma_vaddr != NULL)
+		return (EBUSY);
+
+	error = bus_dma_tag_create(NULL,	/* parent */
+		SEC_DMA_ALIGNMENT, 0,		/* alignment, boundary */
+		BUS_SPACE_MAXADDR_32BIT,	/* lowaddr */
+		BUS_SPACE_MAXADDR,		/* highaddr */
+		NULL, NULL,			/* filtfunc, filtfuncarg */
+		size, 1,			/* maxsize, nsegments */
+		size, 0,			/* maxsegsz, flags */
+		NULL, NULL,			/* lockfunc, lockfuncarg */
+		&(dma_mem->dma_tag));		/* dmat */
+
+	if (error) {
+		device_printf(sc->sc_dev, "failed to allocate busdma tag, error"
+		    " %i!\n", error);
+		goto err1;
+	}
+
+	error = bus_dmamem_alloc(dma_mem->dma_tag, &(dma_mem->dma_vaddr),
+	    BUS_DMA_NOWAIT | BUS_DMA_ZERO, &(dma_mem->dma_map));
+
+	if (error) {
+		device_printf(sc->sc_dev, "failed to allocate DMA safe"
+		    " memory, error %i!\n", error);
+		goto err2;
+	}
+
+	error = bus_dmamap_load(dma_mem->dma_tag, dma_mem->dma_map,
+		    dma_mem->dma_vaddr, size, sec_alloc_dma_mem_cb, dma_mem,
+		    BUS_DMA_NOWAIT);
+
+	if (error) {
+		device_printf(sc->sc_dev, "cannot get address of the DMA"
+		    " memory, error %i\n", error);
+		goto err3;
+	}
+
+	dma_mem->dma_is_map = 0;
+	return (0);
+
+err3:
+	bus_dmamem_free(dma_mem->dma_tag, dma_mem->dma_vaddr, dma_mem->dma_map);
+err2:
+	bus_dma_tag_destroy(dma_mem->dma_tag);
+err1:
+	dma_mem->dma_vaddr = NULL;
+	return(error);
+}
+
+static int
+sec_desc_map_dma(struct sec_softc *sc, struct sec_dma_mem *dma_mem, void *mem,
+    bus_size_t size, int type, struct sec_desc_map_info *sdmi)
+{
+	int error;
+
+	if (dma_mem->dma_vaddr != NULL)
+		return (EBUSY);
+
+	switch (type) {
+	case SEC_MEMORY:
+		break;
+	case SEC_UIO:
+		size = SEC_FREE_LT_CNT(sc) * SEC_MAX_DMA_BLOCK_SIZE;
+		break;
+	case SEC_MBUF:
+		size = m_length((struct mbuf*)mem, NULL);
+		break;
+	default:
+		return (EINVAL);
+	}
+
+	error = bus_dma_tag_create(NULL,	/* parent */
+		SEC_DMA_ALIGNMENT, 0,		/* alignment, boundary */
+		BUS_SPACE_MAXADDR_32BIT,	/* lowaddr */
+		BUS_SPACE_MAXADDR,		/* highaddr */
+		NULL, NULL,			/* filtfunc, filtfuncarg */
+		size,				/* maxsize */
+		SEC_FREE_LT_CNT(sc),		/* nsegments */
+		SEC_MAX_DMA_BLOCK_SIZE, 0,	/* maxsegsz, flags */
+		NULL, NULL,			/* lockfunc, lockfuncarg */
+		&(dma_mem->dma_tag));		/* dmat */
+
+	if (error) {
+		device_printf(sc->sc_dev, "failed to allocate busdma tag, error"
+		    " %i!\n", error);
+		dma_mem->dma_vaddr = NULL;
+		return (error);
+	}
+
+	error = bus_dmamap_create(dma_mem->dma_tag, 0, &(dma_mem->dma_map));
+
+	if (error) {
+		device_printf(sc->sc_dev, "failed to create DMA map, error %i!"
+		    "\n", error);
+		bus_dma_tag_destroy(dma_mem->dma_tag);
+		return (error);
+	}
+
+	switch (type) {
+	case SEC_MEMORY:
+		error = bus_dmamap_load(dma_mem->dma_tag, dma_mem->dma_map,
+		    mem, size, sec_dma_map_desc_cb, sdmi, BUS_DMA_NOWAIT);
+		break;
+	case SEC_UIO:
+		error = bus_dmamap_load_uio(dma_mem->dma_tag, dma_mem->dma_map,
+		    mem, sec_dma_map_desc_cb2, sdmi, BUS_DMA_NOWAIT);
+		break;
+	case SEC_MBUF:
+		error = bus_dmamap_load_mbuf(dma_mem->dma_tag, dma_mem->dma_map,
+		    mem, sec_dma_map_desc_cb2, sdmi, BUS_DMA_NOWAIT);
+		break;
+	}
+
+	if (error) {
+		device_printf(sc->sc_dev, "cannot get address of the DMA"
+		    " memory, error %i!\n", error);
+		bus_dmamap_destroy(dma_mem->dma_tag, dma_mem->dma_map);
+		bus_dma_tag_destroy(dma_mem->dma_tag);
+		return (error);
+	}
+
+	dma_mem->dma_is_map = 1;
+	dma_mem->dma_vaddr = mem;
+
+	return (0);
+}
+
+static void
+sec_free_dma_mem(struct sec_dma_mem *dma_mem)
+{
+
+	/* Check for double free */
+	if (dma_mem->dma_vaddr == NULL)
+		return;
+
+	bus_dmamap_unload(dma_mem->dma_tag, dma_mem->dma_map);
+
+	if (dma_mem->dma_is_map)
+		bus_dmamap_destroy(dma_mem->dma_tag, dma_mem->dma_map);
+	else
+		bus_dmamem_free(dma_mem->dma_tag, dma_mem->dma_vaddr,
+		    dma_mem->dma_map);
+
+	bus_dma_tag_destroy(dma_mem->dma_tag);
+	dma_mem->dma_vaddr = NULL;
+}
+
+static int
+sec_eu_channel(struct sec_softc *sc, int eu)
+{
+	uint64_t reg;
+	int channel = 0;
+
+	SEC_LOCK_ASSERT(sc, controller);
+
+	reg = SEC_READ(sc, SEC_EUASR);
+
+	switch (eu) {
+	case SEC_EU_AFEU:
+		channel = SEC_EUASR_AFEU(reg);
+		break;
+	case SEC_EU_DEU:
+		channel = SEC_EUASR_DEU(reg);
+		break;
+	case SEC_EU_MDEU_A:
+	case SEC_EU_MDEU_B:
+		channel = SEC_EUASR_MDEU(reg);
+		break;
+	case SEC_EU_RNGU:
+		channel = SEC_EUASR_RNGU(reg);
+		break;

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-src-head mailing list