2019-08-25 12:49:17 +03:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2005-09-17 06:27:51 +04:00
|
|
|
#
|
2007-10-16 12:26:54 +04:00
|
|
|
# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux,intel}.com)
|
2005-04-17 02:20:36 +04:00
|
|
|
#
|
|
|
|
|
2016-05-21 18:46:10 +03: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 21:59:00 +04:00
|
|
|
CPPFLAGS_vmlinux.lds := -DSTART=$(LDS_START) \
|
|
|
|
-DELF_ARCH=$(LDS_ELF_ARCH) \
|
|
|
|
-DELF_FORMAT=$(LDS_ELF_FORMAT) \
|
|
|
|
$(LDS_EXTRA)
|
2005-04-17 02:20:36 +04:00
|
|
|
extra-y := vmlinux.lds
|
|
|
|
|
2012-05-03 13:03:00 +04:00
|
|
|
obj-y = config.o exec.o exitcode.o irq.o ksyms.o mem.o \
|
2007-02-10 12:44:12 +03:00
|
|
|
physmem.o process.o ptrace.o reboot.o sigio.o \
|
2021-09-21 00:32:48 +03:00
|
|
|
signal.o sysrq.o time.o tlb.o trap.o \
|
2021-03-12 18:16:07 +03:00
|
|
|
um_arch.o umid.o maccess.o kmsg_dump.o capflags.o skas/
|
2021-12-08 18:11:22 +03:00
|
|
|
obj-y += load_file.o
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-05-21 00:59:10 +04:00
|
|
|
obj-$(CONFIG_BLK_DEV_INITRD) += initrd.o
|
2005-04-17 02:20:36 +04:00
|
|
|
obj-$(CONFIG_GPROF) += gprof_syms.o
|
2021-12-08 18:11:23 +03:00
|
|
|
obj-$(CONFIG_OF) += dtb.o
|
2011-05-25 04:13:01 +04:00
|
|
|
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
|
2014-08-20 13:56:00 +04: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 15:19:58 +03:00
|
|
|
obj-$(CONFIG_GENERIC_PCI_IOMAP) += ioport.o
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-03-27 13:14:36 +04:00
|
|
|
USER_OBJS := config.o
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2023-01-28 12:24:23 +03:00
|
|
|
include $(srctree)/arch/um/scripts/Makefile.rules
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2021-03-12 18:16:07 +03:00
|
|
|
targets := config.c config.tmp capflags.c
|
2005-04-17 02:20:36 +04: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-04-01 02:23:40 +04:00
|
|
|
cmd_quote1 = sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/\\n",/' \
|
2005-04-17 02:20:36 +04:00
|
|
|
$< > $@
|
|
|
|
|
|
|
|
$(obj)/config.c: $(src)/config.c.in $(obj)/config.tmp FORCE
|
|
|
|
$(call if_changed,quote2)
|
|
|
|
|
2021-03-12 18:16:07 +03: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)/../../x86/kernel/cpu/mkcapflags.sh FORCE
|
|
|
|
$(call if_changed,mkcapflags)
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
quiet_cmd_quote2 = QUOTE $@
|
|
|
|
cmd_quote2 = sed -e '/CONFIG/{' \
|
2009-04-01 02:23:40 +04:00
|
|
|
-e 's/"CONFIG"//' \
|
2005-04-17 02:20:36 +04:00
|
|
|
-e 'r $(obj)/config.tmp' \
|
2005-05-01 19:58:54 +04:00
|
|
|
-e 'a \' \
|
2009-04-01 02:23:40 +04:00
|
|
|
-e '""' \
|
2005-04-17 02:20:36 +04:00
|
|
|
-e '}' \
|
|
|
|
$< > $@
|