fpga: zynqpl: Correct PL bitstream loading sequence for zynqaes
authorSiva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Wed, 9 Dec 2015 13:16:43 +0000 (18:46 +0530)
committerMichal Simek <michal.simek@xilinx.com>
Wed, 24 Jun 2020 11:07:57 +0000 (13:07 +0200)
Correct the PL bitstream loading sequence for zynqaes command by
clearing the loaded PL bitstream before loading the new encrypted
bitstream using the zynq aes command. This was done by setting
the PROG_B same as in case of fpgaload commands.
This patch fixes the issue of loading the encrypted PL bitstream
onto the PL in which a bitstream has already been loaded
successfully.

Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
board/xilinx/zynq/cmds.c
drivers/fpga/zynqpl.c
include/zynqpl.h

index 0c46de7599c3898c26b78ef788cd65d0e2dff0d2..d5e7d70bdf584b96005707d91842bd0700dd4061 100644 (file)
@@ -399,7 +399,8 @@ static int zynq_verify_image(u32 src_ptr)
                        status = zynq_decrypt_load(part_load_addr,
                                                   part_img_len,
                                                   part_dst_addr,
-                                                  part_data_len);
+                                                  part_data_len,
+                                                  BIT_NONE);
                        if (status != 0) {
                                printf("DECRYPTION_FAIL\n");
                                return -1;
@@ -438,6 +439,7 @@ static int zynq_decrypt_image(struct cmd_tbl *cmdtp, int flag, int argc,
        char *endp;
        u32 srcaddr, srclen, dstaddr, dstlen;
        int status;
+       u8 imgtype = BIT_NONE;
 
        if (argc < 5 && argc > cmdtp->maxargs)
                return CMD_RET_USAGE;
@@ -464,7 +466,8 @@ static int zynq_decrypt_image(struct cmd_tbl *cmdtp, int flag, int argc,
        if (dstlen % 4)
                dstlen = roundup(dstlen, 4);
 
-       status = zynq_decrypt_load(srcaddr, srclen >> 2, dstaddr, dstlen >> 2);
+       status = zynq_decrypt_load(srcaddr, srclen >> 2, dstaddr,
+                                  dstlen >> 2, imgtype);
        if (status != 0)
                return CMD_RET_FAILURE;
 
index dcfe513eeb3bad9b784fc082f3daf1e7ddd0bf11..4ab354bbba4b5991fed88be6e6d80969a7e45fcf 100644 (file)
@@ -204,7 +204,7 @@ static int zynq_dma_xfer_init(bitstream_type bstype)
        /* Clear loopback bit */
        clrbits_le32(&devcfg_base->mctrl, DEVCFG_MCTRL_PCAP_LPBK);
 
-       if (bstype != BIT_PARTIAL) {
+       if (bstype != BIT_PARTIAL && bstype != BIT_NONE) {
                zynq_slcr_devcfg_disable();
 
                /* Setting PCFG_PROG_B signal to high */
@@ -511,7 +511,8 @@ struct xilinx_fpga_op zynq_op = {
  * Load the encrypted image from src addr and decrypt the image and
  * place it back the decrypted image into dstaddr.
  */
-int zynq_decrypt_load(u32 srcaddr, u32 srclen, u32 dstaddr, u32 dstlen)
+int zynq_decrypt_load(u32 srcaddr, u32 srclen, u32 dstaddr, u32 dstlen,
+                     u8 bstype)
 {
        if (srcaddr < SZ_1M || dstaddr < SZ_1M) {
                printf("%s: src and dst addr should be > 1M\n",
@@ -519,7 +520,7 @@ int zynq_decrypt_load(u32 srcaddr, u32 srclen, u32 dstaddr, u32 dstlen)
                return FPGA_FAIL;
        }
 
-       if (zynq_dma_xfer_init(BIT_NONE)) {
+       if (zynq_dma_xfer_init(bstype)) {
                printf("%s: zynq_dma_xfer_init FAIL\n", __func__);
                return FPGA_FAIL;
        }
index 766e6918cd384c720ac19dbed4f152c61aa3b2d4..d7dc064585eaec8a5ff7f92af11d16860f0014be 100644 (file)
@@ -12,7 +12,8 @@
 #include <xilinx.h>
 
 #ifdef CONFIG_CMD_ZYNQ_AES
-int zynq_decrypt_load(u32 srcaddr, u32 dstaddr, u32 srclen, u32 dstlen);
+int zynq_decrypt_load(u32 srcaddr, u32 dstaddr, u32 srclen, u32 dstlen,
+                     u8 bstype);
 #endif
 
 extern struct xilinx_fpga_op zynq_op;