| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| |
| // This file is auto-generated. |
| |
| #include "sw/device/lib/dif/autogen/dif_aes_autogen.h" |
| #include <stdint.h> |
| |
| #include "aes_regs.h" // Generated. |
| |
| OT_WARN_UNUSED_RESULT |
| dif_result_t dif_aes_init(mmio_region_t base_addr, dif_aes_t *aes) { |
| if (aes == NULL) { |
| return kDifBadArg; |
| } |
| |
| aes->base_addr = base_addr; |
| |
| return kDifOk; |
| } |
| |
| dif_result_t dif_aes_alert_force(const dif_aes_t *aes, dif_aes_alert_t alert) { |
| if (aes == NULL) { |
| return kDifBadArg; |
| } |
| |
| bitfield_bit32_index_t alert_idx; |
| switch (alert) { |
| case kDifAesAlertRecovCtrlUpdateErr: |
| alert_idx = AES_ALERT_TEST_RECOV_CTRL_UPDATE_ERR_BIT; |
| break; |
| case kDifAesAlertFatalFault: |
| alert_idx = AES_ALERT_TEST_FATAL_FAULT_BIT; |
| break; |
| default: |
| return kDifBadArg; |
| } |
| |
| uint32_t alert_test_reg = bitfield_bit32_write(0, alert_idx, true); |
| mmio_region_write32(aes->base_addr, AES_ALERT_TEST_REG_OFFSET, |
| alert_test_reg); |
| |
| return kDifOk; |
| } |