mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-16 06:19:24 +00:00
hv: softirq: move softirq.c to common directory
Softirq is not x86 architectural related. Signed-off-by: Li, Fei1 <fei1.li@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com> Reviewed-by: Jason Chen CJ <jason.cj.chen@intel.com>
This commit is contained in:
@@ -1,94 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <hypervisor.h>
|
||||
|
||||
void disable_softirq(uint16_t cpu_id)
|
||||
{
|
||||
bitmap_clear_lock(SOFTIRQ_ATOMIC, &per_cpu(softirq_pending, cpu_id));
|
||||
}
|
||||
|
||||
void enable_softirq(uint16_t cpu_id)
|
||||
{
|
||||
bitmap_set_lock(SOFTIRQ_ATOMIC, &per_cpu(softirq_pending, cpu_id));
|
||||
}
|
||||
|
||||
void init_softirq(void)
|
||||
{
|
||||
uint16_t pcpu_id;
|
||||
|
||||
for (pcpu_id = 0U; pcpu_id < phys_cpu_num; pcpu_id++) {
|
||||
per_cpu(softirq_pending, pcpu_id) = 0UL;
|
||||
bitmap_set_lock(SOFTIRQ_ATOMIC, &per_cpu(softirq_pending, pcpu_id));
|
||||
}
|
||||
}
|
||||
|
||||
void raise_softirq(uint16_t softirq_id)
|
||||
{
|
||||
uint16_t cpu_id = get_cpu_id();
|
||||
uint64_t *bitmap = &per_cpu(softirq_pending, cpu_id);
|
||||
|
||||
if (cpu_id >= phys_cpu_num) {
|
||||
return;
|
||||
}
|
||||
|
||||
bitmap_set_lock(softirq_id, bitmap);
|
||||
}
|
||||
|
||||
void exec_softirq(void)
|
||||
{
|
||||
uint16_t cpu_id = get_cpu_id();
|
||||
volatile uint64_t *bitmap = &per_cpu(softirq_pending, cpu_id);
|
||||
|
||||
uint16_t softirq_id;
|
||||
|
||||
if (cpu_id >= phys_cpu_num) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (((*bitmap) & SOFTIRQ_MASK) == 0UL) {
|
||||
return;
|
||||
}
|
||||
|
||||
/* Disable softirq
|
||||
* SOFTIRQ_ATOMIC bit = 0 means softirq already in execution
|
||||
*/
|
||||
if (!bitmap_test_and_clear_lock(SOFTIRQ_ATOMIC, bitmap)) {
|
||||
return;
|
||||
}
|
||||
|
||||
again:
|
||||
CPU_IRQ_ENABLE();
|
||||
|
||||
while (1) {
|
||||
softirq_id = ffs64(*bitmap);
|
||||
if ((softirq_id == INVALID_BIT_INDEX) || (softirq_id >= SOFTIRQ_MAX)) {
|
||||
break;
|
||||
}
|
||||
|
||||
bitmap_clear_lock(softirq_id, bitmap);
|
||||
|
||||
switch (softirq_id) {
|
||||
case SOFTIRQ_TIMER:
|
||||
timer_softirq(cpu_id);
|
||||
break;
|
||||
case SOFTIRQ_DEV_ASSIGN:
|
||||
ptdev_softirq(cpu_id);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
CPU_IRQ_DISABLE();
|
||||
|
||||
if (((*bitmap) & SOFTIRQ_MASK) != 0U) {
|
||||
goto again;
|
||||
}
|
||||
|
||||
enable_softirq(cpu_id);
|
||||
}
|
@@ -5,6 +5,7 @@
|
||||
*/
|
||||
|
||||
#include <hypervisor.h>
|
||||
#include <softirq.h>
|
||||
|
||||
#define MAX_TIMER_ACTIONS 32U
|
||||
#define TIMER_IRQ (NR_IRQS - 1U)
|
||||
|
Reference in New Issue
Block a user