mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-30 07:34:12 +08:00
crypto: hifn_795x - use dev_xx/pr_xx instead of printk
This patch replace all printk by their dev_xx/pr_xx counterpart. The patch remove also all custom dprintk by pr_debug/dev_debug Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
276a2ff1ae
commit
cfeecab44c
@ -36,14 +36,6 @@
|
||||
#include <crypto/algapi.h>
|
||||
#include <crypto/des.h>
|
||||
|
||||
//#define HIFN_DEBUG
|
||||
|
||||
#ifdef HIFN_DEBUG
|
||||
#define dprintk(f, a...) printk(f, ##a)
|
||||
#else
|
||||
#define dprintk(f, a...) do {} while (0)
|
||||
#endif
|
||||
|
||||
static char hifn_pll_ref[sizeof("extNNN")] = "ext";
|
||||
module_param_string(hifn_pll_ref, hifn_pll_ref, sizeof(hifn_pll_ref), 0444);
|
||||
MODULE_PARM_DESC(hifn_pll_ref,
|
||||
@ -702,7 +694,7 @@ static void hifn_wait_puc(struct hifn_device *dev)
|
||||
}
|
||||
|
||||
if (!i)
|
||||
dprintk("%s: Failed to reset PUC unit.\n", dev->name);
|
||||
dev_err(&dev->pdev->dev, "Failed to reset PUC unit.\n");
|
||||
}
|
||||
|
||||
static void hifn_reset_puc(struct hifn_device *dev)
|
||||
@ -854,15 +846,13 @@ static int hifn_init_pubrng(struct hifn_device *dev)
|
||||
}
|
||||
|
||||
if (!i)
|
||||
dprintk("Chip %s: Failed to initialise public key engine.\n",
|
||||
dev->name);
|
||||
dev_err(&dev->pdev->dev, "Failed to initialise public key engine.\n");
|
||||
else {
|
||||
hifn_write_1(dev, HIFN_1_PUB_IEN, HIFN_PUBIEN_DONE);
|
||||
dev->dmareg |= HIFN_DMAIER_PUBDONE;
|
||||
hifn_write_1(dev, HIFN_1_DMA_IER, dev->dmareg);
|
||||
|
||||
dprintk("Chip %s: Public key engine has been successfully "
|
||||
"initialised.\n", dev->name);
|
||||
dev_dbg(&dev->pdev->dev, "Public key engine has been successfully initialised.\n");
|
||||
}
|
||||
|
||||
/*
|
||||
@ -871,8 +861,7 @@ static int hifn_init_pubrng(struct hifn_device *dev)
|
||||
|
||||
hifn_write_1(dev, HIFN_1_RNG_CONFIG,
|
||||
hifn_read_1(dev, HIFN_1_RNG_CONFIG) | HIFN_RNGCFG_ENA);
|
||||
dprintk("Chip %s: RNG engine has been successfully initialised.\n",
|
||||
dev->name);
|
||||
dev_dbg(&dev->pdev->dev, "RNG engine has been successfully initialised.\n");
|
||||
|
||||
#ifdef CONFIG_CRYPTO_DEV_HIFN_795X_RNG
|
||||
/* First value must be discarded */
|
||||
@ -897,7 +886,7 @@ static int hifn_enable_crypto(struct hifn_device *dev)
|
||||
}
|
||||
|
||||
if (offtbl == NULL) {
|
||||
dprintk("Chip %s: Unknown card!\n", dev->name);
|
||||
dev_err(&dev->pdev->dev, "Unknown card!\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
@ -920,7 +909,7 @@ static int hifn_enable_crypto(struct hifn_device *dev)
|
||||
}
|
||||
hifn_write_1(dev, HIFN_1_DMA_CNFG, dmacfg);
|
||||
|
||||
dprintk("Chip %s: %s.\n", dev->name, pci_name(dev->pdev));
|
||||
dev_dbg(&dev->pdev->dev, "%s %s.\n", dev->name, pci_name(dev->pdev));
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -984,9 +973,8 @@ static void hifn_init_pll(struct hifn_device *dev)
|
||||
freq = simple_strtoul(hifn_pll_ref + 3, NULL, 10);
|
||||
else {
|
||||
freq = 66;
|
||||
printk(KERN_INFO "hifn795x: assuming %uMHz clock speed, "
|
||||
"override with hifn_pll_ref=%.3s<frequency>\n",
|
||||
freq, hifn_pll_ref);
|
||||
dev_info(&dev->pdev->dev, "assuming %uMHz clock speed, override with hifn_pll_ref=%.3s<frequency>\n",
|
||||
freq, hifn_pll_ref);
|
||||
}
|
||||
|
||||
m = HIFN_PLL_FCK_MAX / freq;
|
||||
@ -1471,8 +1459,8 @@ static int ablkcipher_add(unsigned int *drestp, struct scatterlist *dst,
|
||||
drest -= copy;
|
||||
nbytes -= copy;
|
||||
|
||||
dprintk("%s: copy: %u, size: %u, drest: %u, nbytes: %u.\n",
|
||||
__func__, copy, size, drest, nbytes);
|
||||
pr_debug("%s: copy: %u, size: %u, drest: %u, nbytes: %u.\n",
|
||||
__func__, copy, size, drest, nbytes);
|
||||
|
||||
dst++;
|
||||
idx++;
|
||||
@ -1499,8 +1487,8 @@ static int hifn_cipher_walk(struct ablkcipher_request *req,
|
||||
|
||||
dst = &req->dst[idx];
|
||||
|
||||
dprintk("\n%s: dlen: %u, doff: %u, offset: %u, nbytes: %u.\n",
|
||||
__func__, dst->length, dst->offset, offset, nbytes);
|
||||
pr_debug("\n%s: dlen: %u, doff: %u, offset: %u, nbytes: %u.\n",
|
||||
__func__, dst->length, dst->offset, offset, nbytes);
|
||||
|
||||
if (!IS_ALIGNED(dst->offset, HIFN_D_DST_DALIGN) ||
|
||||
!IS_ALIGNED(dst->length, HIFN_D_DST_DALIGN) ||
|
||||
@ -1536,14 +1524,13 @@ static int hifn_cipher_walk(struct ablkcipher_request *req,
|
||||
* Temporary of course...
|
||||
* Kick author if you will catch this one.
|
||||
*/
|
||||
printk(KERN_ERR "%s: dlen: %u, nbytes: %u,"
|
||||
"slen: %u, offset: %u.\n",
|
||||
__func__, dlen, nbytes, slen, offset);
|
||||
printk(KERN_ERR "%s: please contact author to fix this "
|
||||
"issue, generally you should not catch "
|
||||
"this path under any condition but who "
|
||||
"knows how did you use crypto code.\n"
|
||||
"Thank you.\n", __func__);
|
||||
pr_err("%s: dlen: %u, nbytes: %u, slen: %u, offset: %u.\n",
|
||||
__func__, dlen, nbytes, slen, offset);
|
||||
pr_err("%s: please contact author to fix this "
|
||||
"issue, generally you should not catch "
|
||||
"this path under any condition but who "
|
||||
"knows how did you use crypto code.\n"
|
||||
"Thank you.\n", __func__);
|
||||
BUG();
|
||||
} else {
|
||||
copy += diff + nbytes;
|
||||
@ -1630,11 +1617,11 @@ err_out:
|
||||
spin_unlock_irqrestore(&dev->lock, flags);
|
||||
err_out_exit:
|
||||
if (err) {
|
||||
printk("%s: iv: %p [%d], key: %p [%d], mode: %u, op: %u, "
|
||||
"type: %u, err: %d.\n",
|
||||
dev->name, rctx->iv, rctx->ivsize,
|
||||
ctx->key, ctx->keysize,
|
||||
rctx->mode, rctx->op, rctx->type, err);
|
||||
dev_info(&dev->pdev->dev, "iv: %p [%d], key: %p [%d], mode: %u, op: %u, "
|
||||
"type: %u, err: %d.\n",
|
||||
rctx->iv, rctx->ivsize,
|
||||
ctx->key, ctx->keysize,
|
||||
rctx->mode, rctx->op, rctx->type, err);
|
||||
}
|
||||
|
||||
return err;
|
||||
@ -1685,8 +1672,8 @@ static int ablkcipher_get(void *saddr, unsigned int *srestp, unsigned int offset
|
||||
saddr += copy;
|
||||
offset = 0;
|
||||
|
||||
dprintk("%s: copy: %u, size: %u, srest: %u, nbytes: %u.\n",
|
||||
__func__, copy, size, srest, nbytes);
|
||||
pr_debug("%s: copy: %u, size: %u, srest: %u, nbytes: %u.\n",
|
||||
__func__, copy, size, srest, nbytes);
|
||||
|
||||
dst++;
|
||||
idx++;
|
||||
@ -1706,7 +1693,8 @@ static inline void hifn_complete_sa(struct hifn_device *dev, int i)
|
||||
dev->sa[i] = NULL;
|
||||
dev->started--;
|
||||
if (dev->started < 0)
|
||||
printk("%s: started: %d.\n", __func__, dev->started);
|
||||
dev_info(&dev->pdev->dev, "%s: started: %d.\n", __func__,
|
||||
dev->started);
|
||||
spin_unlock_irqrestore(&dev->lock, flags);
|
||||
BUG_ON(dev->started < 0);
|
||||
}
|
||||
@ -1725,7 +1713,7 @@ static void hifn_process_ready(struct ablkcipher_request *req, int error)
|
||||
t = &rctx->walk.cache[idx];
|
||||
dst = &req->dst[idx];
|
||||
|
||||
dprintk("\n%s: sg_page(t): %p, t->length: %u, "
|
||||
pr_debug("\n%s: sg_page(t): %p, t->length: %u, "
|
||||
"sg_page(dst): %p, dst->length: %u, "
|
||||
"nbytes: %u.\n",
|
||||
__func__, sg_page(t), t->length,
|
||||
@ -1761,9 +1749,8 @@ static void hifn_clear_rings(struct hifn_device *dev, int error)
|
||||
struct hifn_dma *dma = (struct hifn_dma *)dev->desc_virt;
|
||||
int i, u;
|
||||
|
||||
dprintk("%s: ring cleanup 1: i: %d.%d.%d.%d, u: %d.%d.%d.%d, "
|
||||
dev_dbg(&dev->pdev->dev, "ring cleanup 1: i: %d.%d.%d.%d, u: %d.%d.%d.%d, "
|
||||
"k: %d.%d.%d.%d.\n",
|
||||
dev->name,
|
||||
dma->cmdi, dma->srci, dma->dsti, dma->resi,
|
||||
dma->cmdu, dma->srcu, dma->dstu, dma->resu,
|
||||
dma->cmdk, dma->srck, dma->dstk, dma->resk);
|
||||
@ -1816,9 +1803,8 @@ static void hifn_clear_rings(struct hifn_device *dev, int error)
|
||||
}
|
||||
dma->dstk = i; dma->dstu = u;
|
||||
|
||||
dprintk("%s: ring cleanup 2: i: %d.%d.%d.%d, u: %d.%d.%d.%d, "
|
||||
dev_dbg(&dev->pdev->dev, "ring cleanup 2: i: %d.%d.%d.%d, u: %d.%d.%d.%d, "
|
||||
"k: %d.%d.%d.%d.\n",
|
||||
dev->name,
|
||||
dma->cmdi, dma->srci, dma->dsti, dma->resi,
|
||||
dma->cmdu, dma->srcu, dma->dstu, dma->resu,
|
||||
dma->cmdk, dma->srck, dma->dstk, dma->resk);
|
||||
@ -1867,21 +1853,22 @@ static void hifn_work(struct work_struct *work)
|
||||
int i;
|
||||
struct hifn_dma *dma = (struct hifn_dma *)dev->desc_virt;
|
||||
|
||||
printk("%s: r: %08x, active: %d, started: %d, "
|
||||
"success: %lu: qlen: %u/%u, reset: %d.\n",
|
||||
dev->name, r, dev->active, dev->started,
|
||||
dev->success, dev->queue.qlen, dev->queue.max_qlen,
|
||||
reset);
|
||||
dev_info(&dev->pdev->dev,
|
||||
"r: %08x, active: %d, started: %d, "
|
||||
"success: %lu: qlen: %u/%u, reset: %d.\n",
|
||||
r, dev->active, dev->started,
|
||||
dev->success, dev->queue.qlen, dev->queue.max_qlen,
|
||||
reset);
|
||||
|
||||
printk("%s: res: ", __func__);
|
||||
dev_info(&dev->pdev->dev, "%s: res: ", __func__);
|
||||
for (i=0; i<HIFN_D_RES_RSIZE; ++i) {
|
||||
printk("%x.%p ", dma->resr[i].l, dev->sa[i]);
|
||||
pr_info("%x.%p ", dma->resr[i].l, dev->sa[i]);
|
||||
if (dev->sa[i]) {
|
||||
hifn_process_ready(dev->sa[i], -ENODEV);
|
||||
hifn_complete_sa(dev, i);
|
||||
}
|
||||
}
|
||||
printk("\n");
|
||||
pr_info("\n");
|
||||
|
||||
hifn_reset_dma(dev, 1);
|
||||
hifn_stop_device(dev);
|
||||
@ -1903,9 +1890,9 @@ static irqreturn_t hifn_interrupt(int irq, void *data)
|
||||
|
||||
dmacsr = hifn_read_1(dev, HIFN_1_DMA_CSR);
|
||||
|
||||
dprintk("%s: 1 dmacsr: %08x, dmareg: %08x, res: %08x [%d], "
|
||||
dev_dbg(&dev->pdev->dev, "1 dmacsr: %08x, dmareg: %08x, res: %08x [%d], "
|
||||
"i: %d.%d.%d.%d, u: %d.%d.%d.%d.\n",
|
||||
dev->name, dmacsr, dev->dmareg, dmacsr & dev->dmareg, dma->cmdi,
|
||||
dmacsr, dev->dmareg, dmacsr & dev->dmareg, dma->cmdi,
|
||||
dma->cmdi, dma->srci, dma->dsti, dma->resi,
|
||||
dma->cmdu, dma->srcu, dma->dstu, dma->resu);
|
||||
|
||||
@ -1924,9 +1911,9 @@ static irqreturn_t hifn_interrupt(int irq, void *data)
|
||||
if (restart) {
|
||||
u32 puisr = hifn_read_0(dev, HIFN_0_PUISR);
|
||||
|
||||
printk(KERN_WARNING "%s: overflow: r: %d, d: %d, puisr: %08x, d: %u.\n",
|
||||
dev->name, !!(dmacsr & HIFN_DMACSR_R_OVER),
|
||||
!!(dmacsr & HIFN_DMACSR_D_OVER),
|
||||
dev_warn(&dev->pdev->dev, "overflow: r: %d, d: %d, puisr: %08x, d: %u.\n",
|
||||
!!(dmacsr & HIFN_DMACSR_R_OVER),
|
||||
!!(dmacsr & HIFN_DMACSR_D_OVER),
|
||||
puisr, !!(puisr & HIFN_PUISR_DSTOVER));
|
||||
if (!!(puisr & HIFN_PUISR_DSTOVER))
|
||||
hifn_write_0(dev, HIFN_0_PUISR, HIFN_PUISR_DSTOVER);
|
||||
@ -1937,18 +1924,18 @@ static irqreturn_t hifn_interrupt(int irq, void *data)
|
||||
restart = dmacsr & (HIFN_DMACSR_C_ABORT | HIFN_DMACSR_S_ABORT |
|
||||
HIFN_DMACSR_D_ABORT | HIFN_DMACSR_R_ABORT);
|
||||
if (restart) {
|
||||
printk(KERN_WARNING "%s: abort: c: %d, s: %d, d: %d, r: %d.\n",
|
||||
dev->name, !!(dmacsr & HIFN_DMACSR_C_ABORT),
|
||||
!!(dmacsr & HIFN_DMACSR_S_ABORT),
|
||||
!!(dmacsr & HIFN_DMACSR_D_ABORT),
|
||||
!!(dmacsr & HIFN_DMACSR_R_ABORT));
|
||||
dev_warn(&dev->pdev->dev, "abort: c: %d, s: %d, d: %d, r: %d.\n",
|
||||
!!(dmacsr & HIFN_DMACSR_C_ABORT),
|
||||
!!(dmacsr & HIFN_DMACSR_S_ABORT),
|
||||
!!(dmacsr & HIFN_DMACSR_D_ABORT),
|
||||
!!(dmacsr & HIFN_DMACSR_R_ABORT));
|
||||
hifn_reset_dma(dev, 1);
|
||||
hifn_init_dma(dev);
|
||||
hifn_init_registers(dev);
|
||||
}
|
||||
|
||||
if ((dmacsr & HIFN_DMACSR_C_WAIT) && (dma->cmdu == 0)) {
|
||||
dprintk("%s: wait on command.\n", dev->name);
|
||||
dev_dbg(&dev->pdev->dev, "wait on command.\n");
|
||||
dev->dmareg &= ~(HIFN_DMAIER_C_WAIT);
|
||||
hifn_write_1(dev, HIFN_1_DMA_IER, dev->dmareg);
|
||||
}
|
||||
@ -2530,8 +2517,7 @@ static int hifn_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
if (pci_resource_len(pdev, 0) < HIFN_BAR0_SIZE ||
|
||||
pci_resource_len(pdev, 1) < HIFN_BAR1_SIZE ||
|
||||
pci_resource_len(pdev, 2) < HIFN_BAR2_SIZE) {
|
||||
dprintk("%s: Broken hardware - I/O regions are too small.\n",
|
||||
pci_name(pdev));
|
||||
dev_err(&pdev->dev, "Broken hardware - I/O regions are too small.\n");
|
||||
err = -ENODEV;
|
||||
goto err_out_free_regions;
|
||||
}
|
||||
@ -2564,7 +2550,7 @@ static int hifn_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
dev->desc_virt = pci_zalloc_consistent(pdev, sizeof(struct hifn_dma),
|
||||
&dev->desc_dma);
|
||||
if (!dev->desc_virt) {
|
||||
dprintk("Failed to allocate descriptor rings.\n");
|
||||
dev_err(&pdev->dev, "Failed to allocate descriptor rings.\n");
|
||||
err = -ENOMEM;
|
||||
goto err_out_unmap_bars;
|
||||
}
|
||||
@ -2583,7 +2569,8 @@ static int hifn_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
|
||||
err = request_irq(dev->irq, hifn_interrupt, IRQF_SHARED, dev->name, dev);
|
||||
if (err) {
|
||||
dprintk("Failed to request IRQ%d: err: %d.\n", dev->irq, err);
|
||||
dev_err(&pdev->dev, "Failed to request IRQ%d: err: %d.\n",
|
||||
dev->irq, err);
|
||||
dev->irq = 0;
|
||||
goto err_out_free_desc;
|
||||
}
|
||||
@ -2603,9 +2590,9 @@ static int hifn_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
INIT_DELAYED_WORK(&dev->work, hifn_work);
|
||||
schedule_delayed_work(&dev->work, HZ);
|
||||
|
||||
dprintk("HIFN crypto accelerator card at %s has been "
|
||||
"successfully registered as %s.\n",
|
||||
pci_name(pdev), dev->name);
|
||||
dev_dbg(&pdev->dev, "HIFN crypto accelerator card at %s has been "
|
||||
"successfully registered as %s.\n",
|
||||
pci_name(pdev), dev->name);
|
||||
|
||||
return 0;
|
||||
|
||||
@ -2692,8 +2679,7 @@ static int __init hifn_init(void)
|
||||
|
||||
if (strncmp(hifn_pll_ref, "ext", 3) &&
|
||||
strncmp(hifn_pll_ref, "pci", 3)) {
|
||||
printk(KERN_ERR "hifn795x: invalid hifn_pll_ref clock, "
|
||||
"must be pci or ext");
|
||||
pr_err("hifn795x: invalid hifn_pll_ref clock, must be pci or ext");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
@ -2705,22 +2691,21 @@ static int __init hifn_init(void)
|
||||
if (hifn_pll_ref[3] != '\0') {
|
||||
freq = simple_strtoul(hifn_pll_ref + 3, NULL, 10);
|
||||
if (freq < 20 || freq > 100) {
|
||||
printk(KERN_ERR "hifn795x: invalid hifn_pll_ref "
|
||||
"frequency, must be in the range "
|
||||
"of 20-100");
|
||||
pr_err("hifn795x: invalid hifn_pll_ref frequency, must"
|
||||
"be in the range of 20-100");
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
err = pci_register_driver(&hifn_pci_driver);
|
||||
if (err < 0) {
|
||||
dprintk("Failed to register PCI driver for %s device.\n",
|
||||
hifn_pci_driver.name);
|
||||
pr_err("Failed to register PCI driver for %s device.\n",
|
||||
hifn_pci_driver.name);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
printk(KERN_INFO "Driver for HIFN 795x crypto accelerator chip "
|
||||
"has been successfully registered.\n");
|
||||
pr_info("Driver for HIFN 795x crypto accelerator chip "
|
||||
"has been successfully registered.\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -2729,8 +2714,8 @@ static void __exit hifn_fini(void)
|
||||
{
|
||||
pci_unregister_driver(&hifn_pci_driver);
|
||||
|
||||
printk(KERN_INFO "Driver for HIFN 795x crypto accelerator chip "
|
||||
"has been successfully unregistered.\n");
|
||||
pr_info("Driver for HIFN 795x crypto accelerator chip "
|
||||
"has been successfully unregistered.\n");
|
||||
}
|
||||
|
||||
module_init(hifn_init);
|
||||
|
Loading…
Reference in New Issue
Block a user