Commit 6a97a99d authored by Phani Kiran Hemadri's avatar Phani Kiran Hemadri Committed by Herbert Xu

crypto: cavium/nitrox - fix firmware assignment to AE cores

This patch fixes assigning UCD block number of Asymmetric crypto
firmware to AE cores of CNN55XX device.

Fixes: a7268c4d ("crypto: cavium/nitrox - Add support for loading asymmetric crypto firmware")
Signed-off-by: default avatarPhani Kiran Hemadri <phemadri@marvell.com>
Reviewed-by: default avatarSrikanth Jampala <jsrikanth@marvell.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent f65eae61
...@@ -103,8 +103,7 @@ static void write_to_ucd_unit(struct nitrox_device *ndev, u32 ucode_size, ...@@ -103,8 +103,7 @@ static void write_to_ucd_unit(struct nitrox_device *ndev, u32 ucode_size,
offset = UCD_UCODE_LOAD_BLOCK_NUM; offset = UCD_UCODE_LOAD_BLOCK_NUM;
nitrox_write_csr(ndev, offset, block_num); nitrox_write_csr(ndev, offset, block_num);
code_size = ucode_size; code_size = roundup(ucode_size, 16);
code_size = roundup(code_size, 8);
while (code_size) { while (code_size) {
data = ucode_data[i]; data = ucode_data[i];
/* write 8 bytes at a time */ /* write 8 bytes at a time */
...@@ -220,11 +219,11 @@ static int nitrox_load_fw(struct nitrox_device *ndev) ...@@ -220,11 +219,11 @@ static int nitrox_load_fw(struct nitrox_device *ndev)
/* write block number and firmware length /* write block number and firmware length
* bit:<2:0> block number * bit:<2:0> block number
* bit:3 is set SE uses 32KB microcode * bit:3 is set AE uses 32KB microcode
* bit:3 is clear SE uses 64KB microcode * bit:3 is clear AE uses 64KB microcode
*/ */
core_2_eid_val.value = 0ULL; core_2_eid_val.value = 0ULL;
core_2_eid_val.ucode_blk = 0; core_2_eid_val.ucode_blk = 2;
if (ucode_size <= CNN55XX_UCD_BLOCK_SIZE) if (ucode_size <= CNN55XX_UCD_BLOCK_SIZE)
core_2_eid_val.ucode_len = 1; core_2_eid_val.ucode_len = 1;
else else
......
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