2019-08-25 09:49:17 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2005-09-17 02:27:51 +00:00
|
|
|
#
|
2007-10-16 08:26:54 +00:00
|
|
|
# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux,intel}.com)
|
2005-04-16 22:20:36 +00:00
|
|
|
#
|
|
|
|
|
2016-05-21 15:46:10 +00: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 17:59:00 +00:00
|
|
|
CPPFLAGS_vmlinux.lds := -DSTART=$(LDS_START) \
|
|
|
|
-DELF_ARCH=$(LDS_ELF_ARCH) \
|
|
|
|
-DELF_FORMAT=$(LDS_ELF_FORMAT) \
|
|
|
|
$(LDS_EXTRA)
|
2005-04-16 22:20:36 +00: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 09:44:12 +00: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/
|
2021-12-08 15:11:22 +00:00
|
|
|
obj-y += load_file.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-05-20 20:59:10 +00:00
|
|
|
obj-$(CONFIG_BLK_DEV_INITRD) += initrd.o
|
2005-04-16 22:20:36 +00:00
|
|
|
obj-$(CONFIG_GPROF) += gprof_syms.o
|
2021-12-08 15:11:23 +00:00
|
|
|
obj-$(CONFIG_OF) += dtb.o
|
2011-05-25 00:13:01 +00:00
|
|
|
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
|
2014-08-20 09:56:00 +00: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 12:19:58 +00:00
|
|
|
obj-$(CONFIG_GENERIC_PCI_IOMAP) += ioport.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-27 09:14:36 +00:00
|
|
|
USER_OBJS := config.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2023-01-28 09:24:23 +00:00
|
|
|
include $(srctree)/arch/um/scripts/Makefile.rules
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2021-03-12 15:16:07 +00:00
|
|
|
targets := config.c config.tmp capflags.c
|
2005-04-16 22:20:36 +00: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 22:23:40 +00:00
|
|
|
cmd_quote1 = sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/\\n",/' \
|
2005-04-16 22:20:36 +00: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 $@
|
kbuild: use $(src) instead of $(srctree)/$(src) for source directory
Kbuild conventionally uses $(obj)/ for generated files, and $(src)/ for
checked-in source files. It is merely a convention without any functional
difference. In fact, $(obj) and $(src) are exactly the same, as defined
in scripts/Makefile.build:
src := $(obj)
When the kernel is built in a separate output directory, $(src) does
not accurately reflect the source directory location. While Kbuild
resolves this discrepancy by specifying VPATH=$(srctree) to search for
source files, it does not cover all cases. For example, when adding a
header search path for local headers, -I$(srctree)/$(src) is typically
passed to the compiler.
This introduces inconsistency between upstream and downstream Makefiles
because $(src) is used instead of $(srctree)/$(src) for the latter.
To address this inconsistency, this commit changes the semantics of
$(src) so that it always points to the directory in the source tree.
Going forward, the variables used in Makefiles will have the following
meanings:
$(obj) - directory in the object tree
$(src) - directory in the source tree (changed by this commit)
$(objtree) - the top of the kernel object tree
$(srctree) - the top of the kernel source tree
Consequently, $(srctree)/$(src) in upstream Makefiles need to be replaced
with $(src).
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
2024-04-27 14:55:02 +00:00
|
|
|
cmd_mkcapflags = $(CONFIG_SHELL) $(src)/../../x86/kernel/cpu/mkcapflags.sh $@ $^
|
2021-03-12 15:16:07 +00:00
|
|
|
|
|
|
|
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-16 22:20:36 +00:00
|
|
|
quiet_cmd_quote2 = QUOTE $@
|
|
|
|
cmd_quote2 = sed -e '/CONFIG/{' \
|
2009-03-31 22:23:40 +00:00
|
|
|
-e 's/"CONFIG"//' \
|
2005-04-16 22:20:36 +00:00
|
|
|
-e 'r $(obj)/config.tmp' \
|
2005-05-01 15:58:54 +00:00
|
|
|
-e 'a \' \
|
2009-03-31 22:23:40 +00:00
|
|
|
-e '""' \
|
2005-04-16 22:20:36 +00:00
|
|
|
-e '}' \
|
|
|
|
$< > $@
|