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
05d51e4
Documentation
LICENSES
arch
alpha
arc
arm
arm64
csky
h8300
hexagon
ia64
m68k
68000
amiga
apollo
atari
bvme6000
coldfire
configs
emu
fpsp040
hp300
ifpsp060
include
asm
Kbuild
MC68328.h
MC68EZ328.h
MC68VZ328.h
adb_iop.h
amigahw.h
amigaints.h
amigayle.h
amipcmcia.h
apollohw.h
asm-offsets.h
asm-prototypes.h
atari_joystick.h
atari_stdma.h
atari_stram.h
atarihw.h
atariints.h
atarikb.h
atomic.h
bitops.h
blinken.h
bootinfo.h
bootstd.h
bug.h
bugs.h
bvme6000hw.h
cache.h
cacheflush.h
cacheflush_mm.h
cacheflush_no.h
checksum.h
cmpxchg.h
coldfire.h
config.h
contregs.h
current.h
delay.h
div64.h
dma.h
dsp56k.h
dvma.h
elf.h
entry.h
export.h
fb.h
fbio.h
flat.h
floppy.h
fpu.h
ftrace.h
gpio.h
hash.h
hp300hw.h
hwtest.h
ide.h
idprom.h
intersil.h
io.h
io_mm.h
io_no.h
irq.h
irqflags.h
kexec.h
kmap.h
linkage.h
m5206sim.h
m520xsim.h
m523xsim.h
m525xsim.h
m5272sim.h
m527xsim.h
m528xsim.h
m52xxacr.h
m5307sim.h
m53xxacr.h
m53xxsim.h
m5407sim.h
m5441xsim.h
m54xxacr.h
m54xxgpt.h
m54xxpci.h
m54xxsim.h
mac_asc.h
mac_baboon.h
mac_iop.h
mac_oss.h
mac_psc.h
mac_via.h
machdep.h
machines.h
machw.h
macintosh.h
macints.h
math-emu.h
mc146818rtc.h
mcf8390.h
mcf_pgalloc.h
mcf_pgtable.h
mcfclk.h
mcfdma.h
mcfgpio.h
mcfintc.h
mcfmmu.h
mcfpit.h
mcfqspi.h
mcfsim.h
mcfslt.h
mcftimer.h
mcfuart.h
mcfwdebug.h
mmu.h
mmu_context.h
module.h
module.lds.h
motorola_pgalloc.h
motorola_pgtable.h
movs.h
mvme147hw.h
mvme16xhw.h
natfeat.h
nettel.h
nubus.h
openprom.h
oplib.h
page.h
page_mm.h
page_no.h
page_offset.h
parport.h
pci.h
pgalloc.h
pgtable.h
pgtable_mm.h
pgtable_no.h
processor.h
ptrace.h
q40_master.h
q40ints.h
quicc_simple.h
raw_io.h
serial.h
setup.h
signal.h
smp.h
string.h
sun3-head.h
sun3_pgalloc.h
sun3_pgtable.h
sun3ints.h
sun3mmu.h
sun3x.h
sun3xflop.h
sun3xprom.h
switch_to.h
syscall.h
thread_info.h
timex.h
tlb.h
tlbflush.h
traps.h
uaccess.h
ucontext.h
unistd.h
user.h
vga.h
virt.h
virtconvert.h
vmalloc.h
zorro.h
uapi
kernel
lib
mac
math-emu
mm
mvme147
mvme16x
q40
sun3
sun3x
tools
virt
Kbuild
Kconfig
Kconfig.bus
Kconfig.cpu
Kconfig.debug
Kconfig.devices
Kconfig.machine
Makefile
install.sh
microblaze
mips
nios2
openrisc
parisc
powerpc
riscv
s390
sh
sparc
um
x86
xtensa
.gitignore
Kconfig
block
certs
crypto
drivers
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
arch
/
m68k
/
include
/
asm
/
virt.h
Blame
Blame
Latest commit
History
History
25 lines (19 loc) · 502 Bytes
Breadcrumbs
linux
/
arch
/
m68k
/
include
/
asm
/
virt.h
Top
File metadata and controls
Code
Blame
25 lines (19 loc) · 502 Bytes
Raw
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_VIRT_H #define __ASM_VIRT_H #define NUM_VIRT_SOURCES 200 struct virt_booter_device_data { u32 mmio; u32 irq; }; struct virt_booter_data { u32 qemu_version; struct virt_booter_device_data pic; struct virt_booter_device_data rtc; struct virt_booter_device_data tty; struct virt_booter_device_data ctrl; struct virt_booter_device_data virtio; }; extern struct virt_booter_data virt_bi_data; extern void __init virt_init_IRQ(void); #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
You can’t perform that action at this time.