blob: 1ae049cfdab74b97ba198b71b2430825cbaa9679 [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
#ifndef OPENTITAN_SW_DEVICE_LIB_DIF_AUTOGEN_DIF_HMAC_AUTOGEN_H_
#define OPENTITAN_SW_DEVICE_LIB_DIF_AUTOGEN_DIF_HMAC_AUTOGEN_H_
// This file is auto-generated.
/**
* @file
* @brief <a href="/hw/ip/hmac/doc/">HMAC</a> Device Interface Functions
*/
#include <stdbool.h>
#include <stdint.h>
#include "sw/device/lib/base/macros.h"
#include "sw/device/lib/base/mmio.h"
#include "sw/device/lib/dif/dif_base.h"
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
/**
* A handle to hmac.
*
* This type should be treated as opaque by users.
*/
typedef struct dif_hmac {
/**
* The base address for the hmac hardware registers.
*/
mmio_region_t base_addr;
} dif_hmac_t;
/**
* Creates a new handle for a(n) hmac peripheral.
*
* This function does not actuate the hardware.
*
* @param base_addr The MMIO base address of the hmac peripheral.
* @param[out] hmac Out param for the initialized handle.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_hmac_init(mmio_region_t base_addr, dif_hmac_t *hmac);
/**
* A hmac interrupt request type.
*/
typedef enum dif_hmac_irq {
/**
* HMAC-256 completes a message with key
*/
kDifHmacIrqHmacDone = 0,
/**
* Message FIFO empty condition
*/
kDifHmacIrqFifoEmpty = 1,
/**
* HMAC error occurred. ERR_CODE register shows which error occurred
*/
kDifHmacIrqHmacErr = 2,
} dif_hmac_irq_t;
/**
* A snapshot of the state of the interrupts for this IP.
*
* This is an opaque type, to be used with the `dif_hmac_irq_get_state()`
* function.
*/
typedef uint32_t dif_hmac_irq_state_snapshot_t;
/**
* Returns the state of all interrupts (i.e., pending or not) for this IP.
*
* @param hmac A hmac handle.
* @param[out] snapshot Out-param for interrupt state snapshot.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_hmac_irq_get_state(const dif_hmac_t *hmac,
dif_hmac_irq_state_snapshot_t *snapshot);
/**
* Returns whether a particular interrupt is currently pending.
*
* @param hmac A hmac handle.
* @param irq An interrupt request.
* @param[out] is_pending Out-param for whether the interrupt is pending.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_hmac_irq_is_pending(const dif_hmac_t *hmac, dif_hmac_irq_t irq,
bool *is_pending);
/**
* Acknowledges all interrupts, indicating to the hardware that all
* interrupts have been successfully serviced.
*
* @param hmac A hmac handle.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_hmac_irq_acknowledge_all(const dif_hmac_t *hmac);
/**
* Acknowledges a particular interrupt, indicating to the hardware that it has
* been successfully serviced.
*
* @param hmac A hmac handle.
* @param irq An interrupt request.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_hmac_irq_acknowledge(const dif_hmac_t *hmac,
dif_hmac_irq_t irq);
/**
* Forces a particular interrupt, causing it to be serviced as if hardware had
* asserted it.
*
* @param hmac A hmac handle.
* @param irq An interrupt request.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_hmac_irq_force(const dif_hmac_t *hmac, dif_hmac_irq_t irq);
/**
* A snapshot of the enablement state of the interrupts for this IP.
*
* This is an opaque type, to be used with the
* `dif_hmac_irq_disable_all()` and `dif_hmac_irq_restore_all()`
* functions.
*/
typedef uint32_t dif_hmac_irq_enable_snapshot_t;
/**
* Checks whether a particular interrupt is currently enabled or disabled.
*
* @param hmac A hmac handle.
* @param irq An interrupt request.
* @param[out] state Out-param toggle state of the interrupt.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_hmac_irq_get_enabled(const dif_hmac_t *hmac,
dif_hmac_irq_t irq, dif_toggle_t *state);
/**
* Sets whether a particular interrupt is currently enabled or disabled.
*
* @param hmac A hmac handle.
* @param irq An interrupt request.
* @param state The new toggle state for the interrupt.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_hmac_irq_set_enabled(const dif_hmac_t *hmac,
dif_hmac_irq_t irq, dif_toggle_t state);
/**
* Disables all interrupts, optionally snapshotting all enable states for later
* restoration.
*
* @param hmac A hmac handle.
* @param[out] snapshot Out-param for the snapshot; may be `NULL`.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_hmac_irq_disable_all(const dif_hmac_t *hmac,
dif_hmac_irq_enable_snapshot_t *snapshot);
/**
* Restores interrupts from the given (enable) snapshot.
*
* @param hmac A hmac handle.
* @param snapshot A snapshot to restore from.
* @return The result of the operation.
*/
OT_WARN_UNUSED_RESULT
dif_result_t dif_hmac_irq_restore_all(
const dif_hmac_t *hmac, const dif_hmac_irq_enable_snapshot_t *snapshot);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
#endif // OPENTITAN_SW_DEVICE_LIB_DIF_AUTOGEN_DIF_HMAC_AUTOGEN_H_