Skip to content

Commit

Permalink
Update smoke_test_kv_hmac_multiblock_flow w/ DMA intr to pass compila…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
calebofearth committed Jul 29, 2024
1 parent 356de67 commit b20e46f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ typedef struct {
uint32_t soc_ifc_notif;
uint32_t sha512_acc_error;
uint32_t sha512_acc_notif;
uint32_t axi_dma_error;
uint32_t axi_dma_notif;
} caliptra_intr_received_s;
extern volatile caliptra_intr_received_s cptra_intr_rcv;

Expand Down Expand Up @@ -243,5 +245,8 @@ inline void service_sha512_acc_notif_intr() {
}
}

inline void service_axi_dma_error_intr() {printf("ERROR");}
inline void service_axi_dma_notif_intr() {printf("ERROR");}


#endif //CALIPTRA_ISR_H
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ volatile caliptra_intr_received_s cptra_intr_rcv = {
.soc_ifc_notif = 0,
.sha512_acc_error = 0,
.sha512_acc_notif = 0,
.axi_dma_error = 0,
.axi_dma_notif = 0,
};

void main() {
Expand Down

0 comments on commit b20e46f

Please sign in to comment.