Arnd Bergmann
8c9478a400
crypto: qat - reduce stack size with KASAN
...
Passing the register value by reference here leads a large amount of stack being
used when CONFIG_KASAN is enabled:
drivers/crypto/qat/qat_common/qat_hal.c: In function 'qat_hal_exec_micro_inst.constprop':
drivers/crypto/qat/qat_common/qat_hal.c:963:1: error: the frame size of 1792 bytes is larger than 1536 bytes [-Werror=frame-larger-than=]
Changing the register-read function to return the value instead reduces the stack
size to around 800 bytes, most of which is for the 'savuwords' array. The function
now no longer returns an error code, but nothing ever evaluated that anyway.
Signed-off-by: Arnd Bergmann <arnd@arndb.de >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2017-12-22 19:52:39 +11:00
Giovanni Cabiddu
685ce06268
crypto: qat - zero esram only for DH85x devices
...
Zero embedded ram in DH85x devices. This is not
needed for newer generations as it is done by HW.
Cc: <stable@vger.kernel.org >
Signed-off-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2017-02-02 21:54:53 +08:00
Tadeusz Struk
70401f4edc
crypto: qat - update init_esram for C3xxx dev type
...
There is no esram on C3xxx devices so we don't need to wait for
it to initialize.
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2016-01-18 18:16:32 +08:00
Pingchao Yang
c0e77a11ff
crypto: qat - fix timeout issues
...
Change the variable times data type and timeout conditon since the value
of times should be -1 after loop.
Signed-off-by: Yang Pingchao <pingchao.yang@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2016-01-18 18:16:32 +08:00
Pingchao Yang
91a93eafea
crypto: qat - remove to call get_sram_bar_id for qat_c3xxx
...
Reported-by : Struk, Tadeusz <tadeusz.struk@intel.com >
Signed-off-by: Yang Pingchao <pingchao.yang@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2016-01-18 18:16:32 +08:00
Pingchao Yang
51d77dddff
crypto: qat - fix some timeout tests
...
Change the timeout condition since the times value would be -1 after
running MAX_RETRY_TIMES.
Reported-by: Dan Carpenter <dan.carpenter@oracle.com >
Signed-off-by: Yang Pingchao <pingchao.yang@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2015-12-22 20:43:32 +08:00
Pingchao Yang
46621e6f84
crypto: qat - fix CTX_ENABLES bits shift direction issue
...
AE CTX bits should be 8-15 in CTX_ENABLES, so the mask
value 0xff should be left shifted 0x8.
Reported-by: Dan Carpenter <dan.carpenter@oracle.com >
Signed-off-by: Yang Pingchao <pingchao.yang@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2015-12-22 20:43:31 +08:00
Pingchao Yang
b0272276d9
crypto: qat - add support for new devices to FW loader
...
FW loader updates for new qat devices
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2015-12-09 20:03:49 +08:00
Tadeusz Struk
9196d9676f
crypto: qat - remove unneeded variable
...
Remove unneeded variable val_indx.
Issue found by a static analyzer.
Reported-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com >
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2015-10-01 21:56:58 +08:00
Bruce Allan
13dd7bee20
crypto: qat - remove unused define
...
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com >
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2015-07-28 15:03:33 +08:00
Pingchao Yang
f3dd7e60d2
crypto: qat - add support for MMP FW
...
Load Modular Math Processor(MMP) firmware into QAT devices to support
public key algorithm acceleration.
Signed-off-by: Pingchao Yang <pingchao.yang@intel.com >
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2015-07-17 21:20:15 +08:00
Allan, Bruce W
af6f2a7bb5
crypto: qat - fix checkpatch BIT_MACRO issues
...
CHECK:BIT_MACRO: Prefer using the BIT macro
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2015-04-01 22:22:48 +08:00
Allan, Bruce W
665503049b
crypto: qat - make error and info log messages more descriptive
...
Convert pr_info() and pr_err() log messages to dev_info() and dev_err(),
respectively, where able. This adds the module name and PCI B:D:F to
indicate which QAT device generated the log message. The "QAT:" is removed
from these log messages as that is now unnecessary. A few of these log
messages have additional spelling/contextual fixes.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2015-03-23 22:06:49 +11:00
Tadeusz Struk
a727c4b6e5
crypto: qat - Move BAR definitions to device specific module
...
Move PCI BARs definitions to device specific module where it belongs.
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2014-11-06 23:14:59 +08:00
Tadeusz Struk
d9a44abf3a
crypto: qat - Use hweight for bit counting
...
Use predefined hweight32 function instead of writing a new one.
Signed-off-by: Pingchao Yang <pingchao.yang@intel.com >
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2014-08-01 22:36:08 +08:00
Tadeusz Struk
689917211c
crypto: qat - Updated print outputs
...
Updated pr_err output to make it more consistent.
Signed-off-by: Pingchao Yang <pingchao.yang@intel.com >
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2014-08-01 22:36:08 +08:00
Tadeusz Struk
9a147cb323
crypto: qat - change ae_num to ae_id
...
Change the logic how acceleration engines are indexed to make it
easier to read. Aslo some return code values updates to better reflect
what failed.
Signed-off-by: Pingchao Yang <pingchao.yang@intel.com >
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2014-08-01 22:36:06 +08:00
Dan Carpenter
ac1a2b49ea
crypto: qat - remove an unneeded cast
...
The cast to (unsigned int *) doesn't hurt anything but it is pointless.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2014-07-10 16:50:36 +08:00
Tadeusz Struk
d65071ecde
crypto: qat - Fixed new checkpatch warnings
...
After updates to checkpatch new warnings pops up this patch fixes them.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com >
Acked-by: Tadeusz Struk <tadeusz.struk@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2014-06-26 14:49:43 +08:00
Tadeusz Struk
b3416fb8a2
crypto: qat - Intel(R) QAT accelengine part of fw loader
...
This patch adds acceleration engine handler part the firmware loader.
Acked-by: Bo Cui <bo.cui@intel.com >
Reviewed-by: Bruce W. Allan <bruce.w.allan@intel.com >
Signed-off-by: Karen Xiang <karen.xiang@intel.com >
Signed-off-by: Pingchaox Yang <pingchaox.yang@intel.com >
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au >
2014-06-20 21:26:17 +08:00