Commit f2663872 authored by Srikanth Jampala's avatar Srikanth Jampala Committed by Herbert Xu

crypto: cavium - Register the CNN55XX supported crypto algorithms.

Register the Symmetric crypto algorithms supported by
CNN55XX driver with crypto subsystem.

The following Symmetric crypto algorithms are supported,
  - aes with cbc, ecb, cfb, xts, ctr and cts modes
  - des3_ede with cbc and ecb modes
Signed-off-by: default avatarSrikanth Jampala <Jampala.Srikanth@cavium.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 086eac9e
...@@ -4,4 +4,5 @@ n5pf-objs := nitrox_main.o \ ...@@ -4,4 +4,5 @@ n5pf-objs := nitrox_main.o \
nitrox_isr.o \ nitrox_isr.o \
nitrox_lib.o \ nitrox_lib.o \
nitrox_hal.o \ nitrox_hal.o \
nitrox_reqmgr.o nitrox_reqmgr.o \
nitrox_algs.o
This diff is collapsed.
...@@ -4,6 +4,13 @@ ...@@ -4,6 +4,13 @@
#include "nitrox_dev.h" #include "nitrox_dev.h"
#include "nitrox_req.h" #include "nitrox_req.h"
int nitrox_crypto_register(void);
void nitrox_crypto_unregister(void);
void *crypto_alloc_context(struct nitrox_device *ndev);
void crypto_free_context(void *ctx);
struct nitrox_device *nitrox_get_first_device(void);
void nitrox_put_device(struct nitrox_device *ndev);
void nitrox_pf_cleanup_isr(struct nitrox_device *ndev); void nitrox_pf_cleanup_isr(struct nitrox_device *ndev);
int nitrox_pf_init_isr(struct nitrox_device *ndev); int nitrox_pf_init_isr(struct nitrox_device *ndev);
......
...@@ -137,6 +137,44 @@ static void destroy_crypto_dma_pool(struct nitrox_device *ndev) ...@@ -137,6 +137,44 @@ static void destroy_crypto_dma_pool(struct nitrox_device *ndev)
ndev->ctx_pool = NULL; ndev->ctx_pool = NULL;
} }
/*
* crypto_alloc_context - Allocate crypto context from pool
* @ndev: NITROX Device
*/
void *crypto_alloc_context(struct nitrox_device *ndev)
{
struct ctx_hdr *ctx;
void *vaddr;
dma_addr_t dma;
vaddr = dma_pool_alloc(ndev->ctx_pool, (GFP_ATOMIC | __GFP_ZERO), &dma);
if (!vaddr)
return NULL;
/* fill meta data */
ctx = vaddr;
ctx->pool = ndev->ctx_pool;
ctx->dma = dma;
ctx->ctx_dma = dma + sizeof(struct ctx_hdr);
return ((u8 *)vaddr + sizeof(struct ctx_hdr));
}
/**
* crypto_free_context - Free crypto context to pool
* @ctx: context to free
*/
void crypto_free_context(void *ctx)
{
struct ctx_hdr *ctxp;
if (!ctx)
return;
ctxp = (struct ctx_hdr *)((u8 *)ctx - sizeof(struct ctx_hdr));
dma_pool_free(ctxp->pool, ctxp, ctxp->dma);
}
/** /**
* nitrox_common_sw_init - allocate software resources. * nitrox_common_sw_init - allocate software resources.
* @ndev: NITROX device * @ndev: NITROX device
......
...@@ -180,6 +180,35 @@ static void nitrox_remove_from_devlist(struct nitrox_device *ndev) ...@@ -180,6 +180,35 @@ static void nitrox_remove_from_devlist(struct nitrox_device *ndev)
mutex_unlock(&devlist_lock); mutex_unlock(&devlist_lock);
} }
struct nitrox_device *nitrox_get_first_device(void)
{
struct nitrox_device *ndev = NULL;
mutex_lock(&devlist_lock);
list_for_each_entry(ndev, &ndevlist, list) {
if (nitrox_ready(ndev))
break;
}
mutex_unlock(&devlist_lock);
if (!ndev)
return NULL;
refcount_inc(&ndev->refcnt);
/* barrier to sync with other cpus */
smp_mb__after_atomic();
return ndev;
}
void nitrox_put_device(struct nitrox_device *ndev)
{
if (!ndev)
return;
refcount_dec(&ndev->refcnt);
/* barrier to sync with other cpus */
smp_mb__after_atomic();
}
static int nitrox_reset_device(struct pci_dev *pdev) static int nitrox_reset_device(struct pci_dev *pdev)
{ {
int pos = 0; int pos = 0;
...@@ -526,8 +555,18 @@ static int nitrox_probe(struct pci_dev *pdev, ...@@ -526,8 +555,18 @@ static int nitrox_probe(struct pci_dev *pdev,
set_bit(NITROX_READY, &ndev->status); set_bit(NITROX_READY, &ndev->status);
/* barrier to sync with other cpus */ /* barrier to sync with other cpus */
smp_mb__after_atomic(); smp_mb__after_atomic();
err = nitrox_crypto_register();
if (err)
goto crypto_fail;
return 0; return 0;
crypto_fail:
nitrox_debugfs_exit(ndev);
clear_bit(NITROX_READY, &ndev->status);
/* barrier to sync with other cpus */
smp_mb__after_atomic();
pf_hw_fail: pf_hw_fail:
nitrox_pf_sw_cleanup(ndev); nitrox_pf_sw_cleanup(ndev);
ioremap_err: ioremap_err:
...@@ -565,6 +604,7 @@ static void nitrox_remove(struct pci_dev *pdev) ...@@ -565,6 +604,7 @@ static void nitrox_remove(struct pci_dev *pdev)
smp_mb__after_atomic(); smp_mb__after_atomic();
nitrox_remove_from_devlist(ndev); nitrox_remove_from_devlist(ndev);
nitrox_crypto_unregister();
nitrox_debugfs_exit(ndev); nitrox_debugfs_exit(ndev);
nitrox_pf_sw_cleanup(ndev); nitrox_pf_sw_cleanup(ndev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment