mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-07 00:46:42 +07:00
af873fcece
Based on 1 normalized pattern(s): license terms gnu general public license gpl version 2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 161 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Reviewed-by: Steve Winslow <swinslow@gmail.com> Reviewed-by: Richard Fontana <rfontana@redhat.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190528170027.447718015@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
32 lines
917 B
C
32 lines
917 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/**
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
* Author: Shujuan Chen <shujuan.chen@stericsson.com> for ST-Ericsson.
|
|
* Author: Jonas Linde <jonas.linde@stericsson.com> for ST-Ericsson.
|
|
* Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson.
|
|
* Author: Berne Hebark <berne.herbark@stericsson.com> for ST-Ericsson.
|
|
* Author: Niklas Hernaeus <niklas.hernaeus@stericsson.com> for ST-Ericsson.
|
|
*/
|
|
|
|
#ifndef _CRYP_IRQ_H_
|
|
#define _CRYP_IRQ_H_
|
|
|
|
#include "cryp.h"
|
|
|
|
enum cryp_irq_src_id {
|
|
CRYP_IRQ_SRC_INPUT_FIFO = 0x1,
|
|
CRYP_IRQ_SRC_OUTPUT_FIFO = 0x2,
|
|
CRYP_IRQ_SRC_ALL = 0x3
|
|
};
|
|
|
|
/**
|
|
* M0 Funtions
|
|
*/
|
|
void cryp_enable_irq_src(struct cryp_device_data *device_data, u32 irq_src);
|
|
|
|
void cryp_disable_irq_src(struct cryp_device_data *device_data, u32 irq_src);
|
|
|
|
bool cryp_pending_irq_src(struct cryp_device_data *device_data, u32 irq_src);
|
|
|
|
#endif /* _CRYP_IRQ_H_ */
|