1 | #
|
---|
2 | # Makefile for the VirtualBox Linux Host PCI Driver.
|
---|
3 | # (For 2.6.x this file must be called 'Makefile'!)
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | #
|
---|
8 | # Copyright (C) 2011-2015 Oracle Corporation
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | # available from http://www.virtualbox.org. This file is free software;
|
---|
12 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | # General Public License (GPL) as published by the Free Software
|
---|
14 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | #
|
---|
18 |
|
---|
19 | ## @todo If you make non-trivial changes to this make file, please consider
|
---|
20 | # rewriting it to use Makefile.include.header and
|
---|
21 | # Makefile.include.footer.
|
---|
22 |
|
---|
23 | #
|
---|
24 | # First, figure out which architecture we're targeting and the build type.
|
---|
25 | # (We have to support basic cross building (ARCH=i386|x86_64).)
|
---|
26 | # While at it, warn about BUILD_* vars found to help with user problems.
|
---|
27 | #
|
---|
28 | ifeq ($(filter-out x86_64 amd64 AMD64,$(shell uname -m)),)
|
---|
29 | BUILD_TARGET_ARCH_DEF := amd64
|
---|
30 | else
|
---|
31 | BUILD_TARGET_ARCH_DEF := x86
|
---|
32 | endif
|
---|
33 | ifneq ($(filter-out amd64 x86,$(BUILD_TARGET_ARCH)),)
|
---|
34 | $(warning Ignoring unknown BUILD_TARGET_ARCH value '$(BUILD_TARGET_ARCH)'.)
|
---|
35 | BUILD_TARGET_ARCH :=
|
---|
36 | endif
|
---|
37 | ifeq ($(BUILD_TARGET_ARCH),)
|
---|
38 | ifeq ($(ARCH),x86_64)
|
---|
39 | BUILD_TARGET_ARCH := amd64
|
---|
40 | else
|
---|
41 | ifeq ($(ARCH),i386)
|
---|
42 | BUILD_TARGET_ARCH := x86
|
---|
43 | else
|
---|
44 | BUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH_DEF)
|
---|
45 | endif
|
---|
46 | endif
|
---|
47 | else
|
---|
48 | ifneq ($(BUILD_TARGET_ARCH),$(BUILD_TARGET_ARCH_DEF))
|
---|
49 | $(warning Using BUILD_TARGET_ARCH='$(BUILD_TARGET_ARCH)' from the $(origin BUILD_TARGET_ARCH).)
|
---|
50 | endif
|
---|
51 | endif
|
---|
52 |
|
---|
53 | ifneq ($(filter-out release profile debug strict,$(BUILD_TYPE)),)
|
---|
54 | $(warning Ignoring unknown BUILD_TYPE value '$(BUILD_TYPE)'.)
|
---|
55 | BUILD_TYPE :=
|
---|
56 | endif
|
---|
57 | ifeq ($(BUILD_TYPE),)
|
---|
58 | BUILD_TYPE := release
|
---|
59 | else
|
---|
60 | ifneq ($(BUILD_TYPE),release)
|
---|
61 | $(warning Using BUILD_TYPE='$(BUILD_TYPE)' from the $(origin BUILD_TYPE).)
|
---|
62 | endif
|
---|
63 | endif
|
---|
64 |
|
---|
65 | # override is required by the Debian guys
|
---|
66 | override MODULE = vboxpci
|
---|
67 | OBJS = \
|
---|
68 | linux/VBoxPci-linux.o \
|
---|
69 | VBoxPci.o \
|
---|
70 | SUPR0IdcClient.o \
|
---|
71 | SUPR0IdcClientComponent.o \
|
---|
72 | linux/SUPR0IdcClient-linux.o
|
---|
73 |
|
---|
74 | ifeq ($(BUILD_TARGET_ARCH),x86)
|
---|
75 | OBJS += math/gcc/divdi3.o \
|
---|
76 | math/gcc/moddi3.o \
|
---|
77 | math/gcc/qdivrem.o \
|
---|
78 | math/gcc/udivdi3.o \
|
---|
79 | math/gcc/divdi3.o \
|
---|
80 | math/gcc/umoddi3.o
|
---|
81 | endif
|
---|
82 |
|
---|
83 | ifneq ($(MAKECMDGOALS),clean)
|
---|
84 |
|
---|
85 | ifeq ($(KERNELRELEASE),)
|
---|
86 |
|
---|
87 | #
|
---|
88 | # building from this directory
|
---|
89 | #
|
---|
90 |
|
---|
91 | # kernel base directory
|
---|
92 | ifndef KERN_DIR
|
---|
93 | # build for the current kernel, version check
|
---|
94 | KERN_DIR := /lib/modules/$(shell uname -r)/build
|
---|
95 | ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
|
---|
96 | KERN_DIR := /usr/src/linux
|
---|
97 | ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
|
---|
98 | $(error Error: unable to find the sources of your current Linux kernel. \
|
---|
99 | Specify KERN_DIR=<directory> and run Make again)
|
---|
100 | endif
|
---|
101 | $(warning Warning: using /usr/src/linux as the source directory of your \
|
---|
102 | Linux kernel. If this is not correct, specify \
|
---|
103 | KERN_DIR=<directory> and run Make again.)
|
---|
104 | endif
|
---|
105 | else
|
---|
106 | ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
|
---|
107 | $(error Error: KERN_DIR does not point to a directory)
|
---|
108 | endif
|
---|
109 | endif
|
---|
110 |
|
---|
111 | # includes
|
---|
112 | ifndef KERN_INCL
|
---|
113 | KERN_INCL = $(KERN_DIR)/include
|
---|
114 | endif
|
---|
115 | ifneq ($(shell if test -d $(KERN_INCL); then echo yes; fi),yes)
|
---|
116 | $(error Error: unable to find the include directory for your current Linux \
|
---|
117 | kernel. Specify KERN_INCL=<directory> and run Make again)
|
---|
118 | endif
|
---|
119 |
|
---|
120 | # module install dir, only for current kernel
|
---|
121 | ifneq ($(filter install install_rpm,$(MAKECMDGOALS)),)
|
---|
122 | ifndef MODULE_DIR
|
---|
123 | MODULE_DIR_TST := /lib/modules/$(shell uname -r)
|
---|
124 | ifeq ($(shell if test -d $(MODULE_DIR_TST); then echo yes; fi),yes)
|
---|
125 | MODULE_DIR := $(MODULE_DIR_TST)/misc
|
---|
126 | else
|
---|
127 | $(error Unable to find the folder to install the support driver to)
|
---|
128 | endif
|
---|
129 | endif # MODULE_DIR unspecified
|
---|
130 | endif
|
---|
131 |
|
---|
132 | else # neq($(KERNELRELEASE),)
|
---|
133 |
|
---|
134 | #
|
---|
135 | # building from kbuild (make -C <kernel_directory> M=`pwd`)
|
---|
136 | #
|
---|
137 |
|
---|
138 | endif # neq($(KERNELRELEASE),)
|
---|
139 |
|
---|
140 | # debug - show guesses.
|
---|
141 | ifdef DEBUG
|
---|
142 | $(warning dbg: KERN_DIR = $(KERN_DIR))
|
---|
143 | $(warning dbg: KERN_INCL = $(KERN_INCL))
|
---|
144 | $(warning dbg: MODULE_DIR = $(MODULE_DIR))
|
---|
145 | endif
|
---|
146 |
|
---|
147 | KBUILD_VERBOSE ?= 1
|
---|
148 |
|
---|
149 | #
|
---|
150 | # Compiler options
|
---|
151 | #
|
---|
152 | ifndef INCL
|
---|
153 | INCL := $(addprefix -I,$(KERN_INCL) $(EXTRA_INCL))
|
---|
154 | ifndef KBUILD_EXTMOD
|
---|
155 | KBUILD_EXTMOD := $(shell pwd)
|
---|
156 | endif
|
---|
157 | INCL += $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
|
---|
158 | INCL += $(addprefix -I$(KBUILD_EXTMOD)/vboxpci,/ /include /r0drv/linux)
|
---|
159 | export INCL
|
---|
160 | endif
|
---|
161 | ifneq ($(wildcard $(KBUILD_EXTMOD)/vboxpci),)
|
---|
162 | MANGLING := $(KBUILD_EXTMOD)/vboxpci/include/VBox/SUPDrvMangling.h
|
---|
163 | else
|
---|
164 | MANGLING := $(KBUILD_EXTMOD)/include/VBox/SUPDrvMangling.h
|
---|
165 | endif
|
---|
166 | KFLAGS := -D__KERNEL__ -DMODULE -DRT_OS_LINUX -DIN_RING0 -DIN_RT_R0 \
|
---|
167 | -DIN_SUP_R0 -DVBOX -DRT_WITH_VBOX -DVBOX_WITH_HARDENING
|
---|
168 | ifdef VBOX_REDHAT_KABI
|
---|
169 | KFLAGS += -DVBOX_REDHAT_KABI
|
---|
170 | endif
|
---|
171 | ifeq ($(BUILD_TARGET_ARCH),amd64)
|
---|
172 | KFLAGS += -DRT_ARCH_AMD64
|
---|
173 | else
|
---|
174 | KFLAGS += -DRT_ARCH_X86
|
---|
175 | endif
|
---|
176 | # must be consistent with Config.kmk!
|
---|
177 | KFLAGS += -DVBOX_WITH_64_BITS_GUESTS
|
---|
178 | ifeq ($(BUILD_TYPE),debug)
|
---|
179 | KFLAGS += -DDEBUG -DDEBUG_$(USER) -g
|
---|
180 | # IPRT_DEBUG_SEMS indicates thread wrt sems state via the comm field.
|
---|
181 | #KFLAGS += -DIPRT_DEBUG_SEMS
|
---|
182 | endif
|
---|
183 |
|
---|
184 | # By default we use remap_pfn_range() kernel API to make kernel pages
|
---|
185 | # visible for userland. Unfortunately, it leads to situation that
|
---|
186 | # during debug session all structures on that page (such as PVM pointer)
|
---|
187 | # are not accessible to the debugger (see #3214).
|
---|
188 | # This code enables experimental support
|
---|
189 | # for vm_insert_page() kernel API, allowing to export kernel pages
|
---|
190 | # to the userland in more debugger-friendly way. Due to stability
|
---|
191 | # concerns, not enabled by default yet.
|
---|
192 | ifdef VBOX_USE_INSERT_PAGE
|
---|
193 | KFLAGS += -DVBOX_USE_INSERT_PAGE
|
---|
194 | endif
|
---|
195 |
|
---|
196 | MODULE_EXT := ko
|
---|
197 | $(MODULE)-y := $(OBJS)
|
---|
198 |
|
---|
199 | # build defs
|
---|
200 | EXTRA_CFLAGS += -include $(MANGLING) $(INCL) $(KFLAGS) $(KDEBUG) -fno-pie
|
---|
201 |
|
---|
202 | all: $(MODULE)
|
---|
203 |
|
---|
204 | obj-m += $(MODULE).o
|
---|
205 |
|
---|
206 | JOBS := $(shell (getconf _NPROCESSORS_ONLN || grep -Ec '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null)
|
---|
207 | ifeq ($(JOBS),0)
|
---|
208 | JOBS := 1
|
---|
209 | endif
|
---|
210 |
|
---|
211 | # OL/UEK: disable module signing for external modules -- we don't have any private key
|
---|
212 | $(MODULE):
|
---|
213 | $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) CONFIG_MODULE_SIG= -C $(KERN_DIR) -j$(JOBS) modules
|
---|
214 |
|
---|
215 | install: $(MODULE)
|
---|
216 | @mkdir -p $(MODULE_DIR); \
|
---|
217 | install -m 0644 -o root -g root $(MODULE).$(MODULE_EXT) $(MODULE_DIR); \
|
---|
218 | PATH="$(PATH):/bin:/sbin" depmod -a;
|
---|
219 |
|
---|
220 | install_rpm: $(MODULE)
|
---|
221 | @mkdir -p $(MODULE_DIR); \
|
---|
222 | install -m 0644 $(MODULE).$(MODULE_EXT) $(MODULE_DIR)
|
---|
223 |
|
---|
224 | else # eq ($(MAKECMDGOALS),clean)
|
---|
225 |
|
---|
226 | ifndef KERN_DIR
|
---|
227 | KERN_DIR := /lib/modules/$(shell uname -r)/build
|
---|
228 | ifeq ($(wildcard $(KERN_DIR)/Makefile),)
|
---|
229 | KERN_DIR := /usr/src/linux
|
---|
230 | endif
|
---|
231 | endif
|
---|
232 | ifeq ($(wildcard $(KERN_DIR)/Makefile),)
|
---|
233 |
|
---|
234 | clean:
|
---|
235 | find . \( -name \*.o -o -name \*.cmd \) -print0 | xargs -0 rm -f
|
---|
236 | rm -rf .tmp_ver* $(MODULE).* Module.symvers Modules.symvers modules.order
|
---|
237 |
|
---|
238 | else
|
---|
239 |
|
---|
240 | clean:
|
---|
241 | $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) -C $(KERN_DIR) clean
|
---|
242 |
|
---|
243 | endif
|
---|
244 |
|
---|
245 | endif # eq($(MAKECMDGOALS),clean)
|
---|