Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
b4ff838
Documentation
arch
alpha
arc
arm
arm64
boot
configs
crypto
include
asm
xen
Kbuild
acenv.h
acpi.h
alternative.h
arch_timer.h
arm-cci.h
asm-offsets.h
assembler.h
atomic.h
atomic_ll_sc.h
atomic_lse.h
barrier.h
bitops.h
bitrev.h
boot.h
bug.h
cache.h
cacheflush.h
cachetype.h
cmpxchg.h
compat.h
compiler.h
cpu.h
cpu_ops.h
cpufeature.h
cpuidle.h
cputype.h
debug-monitors.h
device.h
dma-mapping.h
dmi.h
efi.h
elf.h
esr.h
exception.h
exec.h
fb.h
fixmap.h
fpsimd.h
fpsimdmacros.h
ftrace.h
futex.h
hardirq.h
hugetlb.h
hw_breakpoint.h
hwcap.h
hypervisor.h
insn.h
io.h
irq.h
irq_work.h
irqflags.h
jump_label.h
kgdb.h
kvm_arm.h
kvm_asm.h
kvm_coproc.h
kvm_emulate.h
kvm_host.h
kvm_mmio.h
kvm_mmu.h
kvm_psci.h
linkage.h
lse.h
memblock.h
memory.h
mmu.h
mmu_context.h
module.h
neon.h
opcodes.h
page.h
pci.h
percpu.h
perf_event.h
pgalloc.h
pgtable-hwdef.h
pgtable-types.h
pgtable.h
pmu.h
proc-fns.h
processor.h
ptrace.h
seccomp.h
shmparam.h
signal32.h
smp.h
smp_plat.h
sparsemem.h
spinlock.h
spinlock_types.h
stackprotector.h
stacktrace.h
stat.h
string.h
suspend.h
sync_bitops.h
syscall.h
sysreg.h
system_misc.h
thread_info.h
timex.h
tlb.h
tlbflush.h
topology.h
traps.h
uaccess.h
unistd.h
unistd32.h
vdso.h
vdso_datapage.h
virt.h
word-at-a-time.h
uapi
kernel
kvm
lib
mm
net
xen
Kconfig
Kconfig.debug
Kconfig.platforms
Makefile
avr32
blackfin
c6x
cris
frv
h8300
hexagon
ia64
m32r
m68k
metag
microblaze
mips
mn10300
nios2
openrisc
parisc
powerpc
s390
score
sh
sparc
tile
um
unicore32
x86
xtensa
.gitignore
Kconfig
block
certs
crypto
drivers
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.get_maintainer.ignore
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
REPORTING-BUGS
Breadcrumbs
linux
/
arch
/
arm64
/
include
/
asm
/
irq.h
Copy path
Blame
Blame
Latest commit
History
History
29 lines (22 loc) · 559 Bytes
Breadcrumbs
linux
/
arch
/
arm64
/
include
/
asm
/
irq.h
Top
File metadata and controls
Code
Blame
29 lines (22 loc) · 559 Bytes
Raw
#ifndef __ASM_IRQ_H #define __ASM_IRQ_H #include <linux/irqchip/arm-gic-acpi.h> #include <asm-generic/irq.h> struct pt_regs; extern void migrate_irqs(void); extern void set_handle_irq(void (*handle_irq)(struct pt_regs *)); static inline void acpi_irq_init(void) { /* * Hardcode ACPI IRQ chip initialization to GICv2 for now. * Proper irqchip infrastructure will be implemented along with * incoming GICv2m|GICv3|ITS bits. */ acpi_gic_init(); } #define acpi_irq_init acpi_irq_init static inline int nr_legacy_irqs(void) { return 0; } #endif
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
You can’t perform that action at this time.