mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-04 06:26:54 +00:00
This commit cleans up the irq APIs which are a bit confusing. - pri_register_handler(), normal_register_handler() and common_register_handler() into request_irq(), and removed the unnecessary struct irq_request_info; - rename the unregister_common_handler() to free_irq(); After the revision, the common irq APIs becomes: - int32_t request_irq(uint32_t irq, irq_action_t action_fn, void *action_data, const char *name) - void free_irq(uint32_t irq) Signed-off-by: Yan, Like <like.yan@intel.com> Reviewed-by: Li, Fei1 <fei1.li@intel.com> Acked-by: Anthony Xu <anthony.xu@intel.com>
63 lines
1.5 KiB
C
63 lines
1.5 KiB
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef COMMON_IRQ_H
|
|
#define COMMON_IRQ_H
|
|
|
|
enum irq_mode {
|
|
IRQ_PULSE,
|
|
IRQ_ASSERT,
|
|
IRQ_DEASSERT,
|
|
};
|
|
|
|
enum irq_state {
|
|
IRQ_NOT_ASSIGNED = 0,
|
|
IRQ_ASSIGNED,
|
|
};
|
|
|
|
enum irq_desc_state {
|
|
IRQ_DESC_PENDING,
|
|
IRQ_DESC_IN_PROCESS,
|
|
};
|
|
|
|
typedef int (*irq_action_t)(uint32_t irq, void *priv_data);
|
|
|
|
/* any field change in below required irq_lock protection with irqsave */
|
|
struct irq_desc {
|
|
uint32_t irq; /* index to irq_desc_base */
|
|
enum irq_state used; /* this irq have assigned to device */
|
|
enum irq_desc_state state; /* irq_desc status */
|
|
uint32_t vector; /* assigned vector */
|
|
|
|
int (*irq_handler)(struct irq_desc *irq_desc, void *handler_data);
|
|
/* callback for irq flow handling */
|
|
irq_action_t action; /* callback registered from component */
|
|
void *priv_data; /* irq_action private data */
|
|
char name[32]; /* name of component */
|
|
|
|
spinlock_t irq_lock;
|
|
uint64_t *irq_cnt; /* this irq cnt happened on CPUs */
|
|
uint64_t irq_lost_cnt;
|
|
};
|
|
|
|
uint32_t irq_mark_used(uint32_t irq);
|
|
|
|
uint32_t irq_desc_alloc_vector(uint32_t irq);
|
|
void irq_desc_try_free_vector(uint32_t irq);
|
|
|
|
uint32_t irq_to_vector(uint32_t irq);
|
|
|
|
int32_t request_irq(uint32_t irq,
|
|
irq_action_t action_fn,
|
|
void *priv_data,
|
|
const char *name);
|
|
|
|
void free_irq(uint32_t irq);
|
|
|
|
typedef int (*irq_handler_t)(struct irq_desc *desc, void *handler_data);
|
|
void update_irq_handler(uint32_t irq, irq_handler_t func);
|
|
#endif /* COMMON_IRQ_H */
|