2019-08-25 10:49:17 +01:00
# SPDX-License-Identifier: GPL-2.0
2005-09-16 19:27:51 -07:00
#
2007-10-16 01:26:54 -07:00
# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux,intel}.com)
2005-04-16 15:20:36 -07:00
#
2016-05-21 17:46:10 +02:00
# Don't instrument UML-specific code; without this, we may crash when
# accessing the instrumentation buffer for the first time from the
# kernel.
KCOV_INSTRUMENT := n
2012-04-09 13:59:00 -04:00
CPPFLAGS_vmlinux.lds := -DSTART= $( LDS_START) \
-DELF_ARCH= $( LDS_ELF_ARCH) \
-DELF_FORMAT= $( LDS_ELF_FORMAT) \
$( LDS_EXTRA)
2005-04-16 15:20:36 -07:00
extra-y := vmlinux.lds
2012-05-03 09:03:00 +00:00
obj-y = config.o exec.o exitcode.o irq.o ksyms.o mem.o \
2007-02-10 01:44:12 -08:00
physmem.o process.o ptrace.o reboot.o sigio.o \
2021-09-20 21:32:48 +00:00
signal.o sysrq.o time.o tlb.o trap.o \
2021-03-12 15:16:07 +00:00
um_arch.o umid.o maccess.o kmsg_dump.o capflags.o skas/
2005-04-16 15:20:36 -07:00
2005-05-20 13:59:10 -07:00
obj-$(CONFIG_BLK_DEV_INITRD) += initrd.o
2005-04-16 15:20:36 -07:00
obj-$(CONFIG_GPROF) += gprof_syms.o
2011-05-24 17:13:01 -07:00
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
2014-08-20 10:56:00 +01:00
obj-$(CONFIG_STACKTRACE) += stacktrace.o
um: add PCI over virtio emulation driver
To support testing of PCI/PCIe drivers in UML, add a PCI bus
support driver. This driver uses virtio, which in UML is really
just vhost-user, to talk to devices, and adds the devices to
the virtual PCI bus in the system.
Since virtio already allows DMA/bus mastering this really isn't
all that hard, of course we need the logic_iomem infrastructure
that was added by a previous patch.
The protocol to talk to the device is has a few fairly simple
messages for reading to/writing from config and IO spaces, and
messages for the device to send the various interrupts (INT#,
MSI/MSI-X and while suspended PME#).
Note that currently no offical virtio device ID is assigned for
this protocol, as a consequence this patch requires defining it
in the Kconfig, with a default that makes the driver refuse to
work at all.
Finally, in order to add support for MSI/MSI-X interrupts, some
small changes are needed in the UML IRQ code, it needs to have
more interrupts, changing NR_IRQS from 64 to 128 if this driver
is enabled, but not actually use them for anything so that the
generic IRQ domain/MSI infrastructure can allocate IRQ numbers.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
2021-03-05 13:19:58 +01:00
obj-$(CONFIG_GENERIC_PCI_IOMAP) += ioport.o
2005-04-16 15:20:36 -07:00
2006-03-27 01:14:36 -08:00
USER_OBJS := config.o
2005-04-16 15:20:36 -07:00
i n c l u d e a r c h / u m / s c r i p t s / M a k e f i l e . r u l e s
2021-03-12 15:16:07 +00:00
targets := config.c config.tmp capflags.c
2005-04-16 15:20:36 -07:00
# Be careful with the below Sed code - sed is pitfall-rich!
# We use sed to lower build requirements, for "embedded" builders for instance.
$(obj)/config.tmp : $( objtree ) /.config FORCE
$( call if_changed,quote1)
quiet_cmd_quote1 = QUOTE $@
2009-03-31 15:23:40 -07:00
cmd_quote1 = sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/\\n",/' \
2005-04-16 15:20:36 -07:00
$< > $@
$(obj)/config.c : $( src ) /config .c .in $( obj ) /config .tmp FORCE
$( call if_changed,quote2)
2021-03-12 15:16:07 +00:00
quiet_cmd_mkcapflags = MKCAP $@
cmd_mkcapflags = $( CONFIG_SHELL) $( srctree) /$( src) /../../x86/kernel/cpu/mkcapflags.sh $@ $^
cpufeature = $( src) /../../x86/include/asm/cpufeatures.h
vmxfeature = $( src) /../../x86/include/asm/vmxfeatures.h
$(obj)/capflags.c : $( cpufeature ) $( vmxfeature ) $( src ) /../../x 86/kernel /cpu /mkcapflags .sh FORCE
$( call if_changed,mkcapflags)
2005-04-16 15:20:36 -07:00
quiet_cmd_quote2 = QUOTE $@
cmd_quote2 = sed -e '/CONFIG/{' \
2009-03-31 15:23:40 -07:00
-e 's/"CONFIG"//' \
2005-04-16 15:20:36 -07:00
-e 'r $(obj)/config.tmp' \
2005-05-01 08:58:54 -07:00
-e 'a \' \
2009-03-31 15:23:40 -07:00
-e '""' \
2005-04-16 15:20:36 -07:00
-e '}' \
$< > $@