intern.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * CAAM/SEC 4.x driver backend
  3. * Private/internal definitions between modules
  4. *
  5. * Copyright 2008-2011 Freescale Semiconductor, Inc.
  6. *
  7. */
  8. #ifndef INTERN_H
  9. #define INTERN_H
  10. /* Currently comes from Kconfig param as a ^2 (driver-required) */
  11. #define JOBR_DEPTH (1 << CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE)
  12. /* Kconfig params for interrupt coalescing if selected (else zero) */
  13. #ifdef CONFIG_CRYPTO_DEV_FSL_CAAM_INTC
  14. #define JOBR_INTC JRCFG_ICEN
  15. #define JOBR_INTC_TIME_THLD CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_TIME_THLD
  16. #define JOBR_INTC_COUNT_THLD CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_COUNT_THLD
  17. #else
  18. #define JOBR_INTC 0
  19. #define JOBR_INTC_TIME_THLD 0
  20. #define JOBR_INTC_COUNT_THLD 0
  21. #endif
  22. /*
  23. * Storage for tracking each in-process entry moving across a ring
  24. * Each entry on an output ring needs one of these
  25. */
  26. struct caam_jrentry_info {
  27. void (*callbk)(struct device *dev, u32 *desc, u32 status, void *arg);
  28. void *cbkarg; /* Argument per ring entry */
  29. u32 *desc_addr_virt; /* Stored virt addr for postprocessing */
  30. dma_addr_t desc_addr_dma; /* Stored bus addr for done matching */
  31. u32 desc_size; /* Stored size for postprocessing, header derived */
  32. };
  33. /* Private sub-storage for a single JobR */
  34. struct caam_drv_private_jr {
  35. struct list_head list_node; /* Job Ring device list */
  36. struct device *dev;
  37. int ridx;
  38. struct caam_job_ring __iomem *rregs; /* JobR's register space */
  39. struct tasklet_struct irqtask;
  40. int irq; /* One per queue */
  41. /* Number of scatterlist crypt transforms active on the JobR */
  42. atomic_t tfm_count ____cacheline_aligned;
  43. /* Job ring info */
  44. int ringsize; /* Size of rings (assume input = output) */
  45. struct caam_jrentry_info *entinfo; /* Alloc'ed 1 per ring entry */
  46. spinlock_t inplock ____cacheline_aligned; /* Input ring index lock */
  47. int inp_ring_write_index; /* Input index "tail" */
  48. int head; /* entinfo (s/w ring) head index */
  49. dma_addr_t *inpring; /* Base of input ring, alloc DMA-safe */
  50. spinlock_t outlock ____cacheline_aligned; /* Output ring index lock */
  51. int out_ring_read_index; /* Output index "tail" */
  52. int tail; /* entinfo (s/w ring) tail index */
  53. struct jr_outentry *outring; /* Base of output ring, DMA-safe */
  54. };
  55. /*
  56. * Driver-private storage for a single CAAM block instance
  57. */
  58. struct caam_drv_private {
  59. struct device *dev;
  60. struct platform_device **jrpdev; /* Alloc'ed array per sub-device */
  61. struct platform_device *pdev;
  62. /* Physical-presence section */
  63. struct caam_ctrl __iomem *ctrl; /* controller region */
  64. struct caam_deco __iomem *deco; /* DECO/CCB views */
  65. struct caam_assurance __iomem *assure;
  66. struct caam_queue_if __iomem *qi; /* QI control region */
  67. struct caam_job_ring __iomem *jr[4]; /* JobR's register space */
  68. /*
  69. * Detected geometry block. Filled in from device tree if powerpc,
  70. * or from register-based version detection code
  71. */
  72. u8 total_jobrs; /* Total Job Rings in device */
  73. u8 qi_present; /* Nonzero if QI present in device */
  74. int secvio_irq; /* Security violation interrupt number */
  75. int virt_en; /* Virtualization enabled in CAAM */
  76. #define RNG4_MAX_HANDLES 2
  77. /* RNG4 block */
  78. u32 rng4_sh_init; /* This bitmap shows which of the State
  79. Handles of the RNG4 block are initialized
  80. by this driver */
  81. struct clk *caam_ipg;
  82. struct clk *caam_mem;
  83. struct clk *caam_aclk;
  84. struct clk *caam_emi_slow;
  85. /*
  86. * debugfs entries for developer view into driver/device
  87. * variables at runtime.
  88. */
  89. #ifdef CONFIG_DEBUG_FS
  90. struct dentry *dfs_root;
  91. struct dentry *ctl; /* controller dir */
  92. struct dentry *ctl_rq_dequeued, *ctl_ob_enc_req, *ctl_ib_dec_req;
  93. struct dentry *ctl_ob_enc_bytes, *ctl_ob_prot_bytes;
  94. struct dentry *ctl_ib_dec_bytes, *ctl_ib_valid_bytes;
  95. struct dentry *ctl_faultaddr, *ctl_faultdetail, *ctl_faultstatus;
  96. struct debugfs_blob_wrapper ctl_kek_wrap, ctl_tkek_wrap, ctl_tdsk_wrap;
  97. struct dentry *ctl_kek, *ctl_tkek, *ctl_tdsk;
  98. #endif
  99. };
  100. void caam_jr_algapi_init(struct device *dev);
  101. void caam_jr_algapi_remove(struct device *dev);
  102. #endif /* INTERN_H */