1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21 22# 23# uts/i86pc/Makefile.i86pc 24# 25# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 26# Copyright (c) 2013 Andrew Stormont. All rights reserved. 27# Copyright 2019 OmniOS Community Edition (OmniOSce) Association. 28# Copyright 2019 Joyent, Inc. 29# 30# 31# This makefile contains the common definitions for the i86pc unix 32# and all i86pc implementation architecture dependent modules. 33# 34 35# 36# Machine type (implementation architecture): 37# 38PLATFORM = i86pc 39 40# 41# uname -m value 42# 43UNAME_M = $(PLATFORM) 44 45# 46# Definitions for the platform-specific /platform directories. 47# 48# IMPLEMENTATIONS is used to designate i86pc machines which have 49# platform specific modules. All code specific to a given implementation 50# resides in the appropriately named subdirectory. This requires 51# these platforms to have their own Makefiles to define ROOT_PLAT_DIRS, 52# USR_PLAT_DIRS, etc. 53# 54IMPLEMENTATIONS = i86hvm 55 56# 57# Everybody needs to know how to build modstubs.o and to locate unix.o 58# 59UNIX_DIR = $(UTSBASE)/$(PLATFORM)/unix 60GENLIB_DIR = $(UTSBASE)/intel/genunix 61MODSTUBS_DIR = $(UNIX_DIR) 62DSF_DIR = $(UTSBASE)/$(PLATFORM)/genassym 63 64DTRACESTUBS_O = $(OBJS_DIR)/dtracestubs.o 65DTRACESTUBS = $(OBJS_DIR)/libdtracestubs.so 66 67SYM_MOD = $(OBJS_DIR)/unix.sym 68 69UNIX_O = $(UNIX_DIR)/$(OBJS_DIR)/unix.o 70MODSTUBS_O = $(MODSTUBS_DIR)/$(OBJS_DIR)/modstubs.o 71GENLIB = $(GENLIB_DIR)/$(OBJS_DIR)/libgenunix.so 72 73# 74# Include the makefiles which define build rule templates, the 75# collection of files per module, and a few specific flags. Note 76# that order is significant, just as with an include path. The 77# first build rule template which matches the files name will be 78# used. By including these in order from most machine dependent 79# to most machine independent, we allow a machine dependent file 80# to be used in preference over a machine independent version 81# (Such as a machine specific optimization, which preserves the 82# interfaces.) 83# 84include $(UTSBASE)/$(PLATFORM)/Makefile.files 85include $(UTSBASE)/intel/Makefile.files 86include $(UTSBASE)/common/Makefile.files 87 88# 89# Include machine independent rules. Note that this does not imply 90# that the resulting module from rules in Makefile.uts is machine 91# independent. Only that the build rules are machine independent. 92# 93include $(UTSBASE)/Makefile.uts 94 95# 96# Define supported builds 97# 98DEF_BUILDS = $(DEF_BUILDS64) 99ALL_BUILDS = $(ALL_BUILDS64) 100 101# 102# kernel-specific optimizations; override default in Makefile.master 103# 104 105CFLAGS_XARCH_32 = $(i386_CFLAGS) 106CFLAGS_XARCH_64 = $(amd64_CFLAGS) 107CFLAGS_XARCH = $(CFLAGS_XARCH_$(CLASS)) 108 109COPTFLAG_32 = $(COPTFLAG) 110COPTFLAG_64 = $(COPTFLAG64) 111COPTIMIZE = $(COPTFLAG_$(CLASS)) 112 113CFLAGS = $(CFLAGS_XARCH) 114CFLAGS += $(COPTIMIZE) 115CFLAGS += -D_ASM_INLINES 116CFLAGS += $(CCMODE) 117CFLAGS += $(SPACEFLAG) 118CFLAGS += $(CCUNBOUND) 119CFLAGS += $(CFLAGS_uts) 120CFLAGS += -xstrconst 121 122ASFLAGS_XARCH_32 = $(i386_ASFLAGS) 123ASFLAGS_XARCH_64 = $(amd64_ASFLAGS) 124ASFLAGS_XARCH = $(ASFLAGS_XARCH_$(CLASS)) 125 126ASFLAGS = $(ASFLAGS_XARCH) 127ASFLAGS += $(ASFLAGS_uts) 128 129AS_INC_PATH += -I$(DSF_DIR)/$(OBJS_DIR) 130 131# 132# The following must be defined for all implementations: 133# 134# UNIX_MAPFILE: ld mapfile for the build of kernel/unix. 135# MODSTUBS: Module stubs source file. 136# GENASSYM_SRC: genassym.c 137# 138UNIX_MAPFILE = $(UTSBASE)/$(PLATFORM)/conf/Mapfile 139MODSTUBS = $(UTSBASE)/intel/ml/modstubs.S 140GENASSYM_SRC = $(UTSBASE)/$(PLATFORM)/ml/genassym.c 141OFFSETS_SRC = $(UTSBASE)/$(PLATFORM)/ml/offsets.in 142PLATFORM_OFFSETS_SRC = $(UTSBASE)/intel/amd64/ml/mach_offsets.in 143KDI_OFFSETS_SRC = $(UTSBASE)/intel/kdi/kdi_offsets.in 144 145# 146# Define the actual specific platforms 147# 148MACHINE_DEFS = -D$(PLATFORM) -D_MACHDEP 149 150# 151# Software workarounds for hardware "features" 152# 153 154include $(UTSBASE)/$(PLATFORM)/Makefile.workarounds 155 156# 157# Debugging level 158# 159# Special knowledge of which special debugging options effect which 160# file is used to optimize the build if these flags are changed. 161# 162# XXX: The above could possibly be done for more flags and files, but 163# is left as an experiment to the interested reader. Be forewarned, 164# that excessive use could lead to maintenance difficulties. 165# 166DEBUG_DEFS_OBJ32 = 167DEBUG_DEFS_DBG32 = -DDEBUG 168DEBUG_DEFS_OBJ64 = 169DEBUG_DEFS_DBG64 = -DDEBUG 170DEBUG_DEFS = $(DEBUG_DEFS_$(BUILD_TYPE)) 171 172DEBUG_COND_OBJ32 = $(POUND_SIGN) 173DEBUG_COND_DBG32 = 174DEBUG_COND_OBJ64 = $(POUND_SIGN) 175DEBUG_COND_DBG64 = 176IF_DEBUG_OBJ = $(DEBUG_COND_$(BUILD_TYPE))$(OBJS_DIR)/ 177 178$(IF_DEBUG_OBJ)trap.o := DEBUG_DEFS += -DTRAPDEBUG -DTRAPTRACE 179$(IF_DEBUG_OBJ)syscall_asm_amd64.o := DEBUG_DEFS += -DSYSCALLTRACE -DTRAPTRACE 180$(IF_DEBUG_OBJ)fast_trap_asm.o := DEBUG_DEFS += -DTRAPTRACE 181$(IF_DEBUG_OBJ)interrupt.o := DEBUG_DEFS += -DTRAPTRACE 182$(IF_DEBUG_OBJ)intr.o := DEBUG_DEFS += -DTRAPTRACE 183$(IF_DEBUG_OBJ)locore.o := DEBUG_DEFS += -DTRAPTRACE 184$(IF_DEBUG_OBJ)mp_startup.o := DEBUG_DEFS += -DTRAPTRACE 185$(IF_DEBUG_OBJ)machdep.o := DEBUG_DEFS += -DTRAPTRACE 186$(IF_DEBUG_OBJ)exception.o := DEBUG_DEFS += -DTRAPTRACE 187$(IF_DEBUG_OBJ)x_call.o := DEBUG_DEFS += -DTRAPTRACE 188$(IF_DEBUG_OBJ)mp_call.o := DEBUG_DEFS += -DTRAPTRACE 189$(IF_DEBUG_OBJ)cbe.o := DEBUG_DEFS += -DTRAPTRACE 190 191# 192# Collect the preprocessor definitions to be associated with *all* 193# files. 194# 195ALL_DEFS = $(MACHINE_DEFS) $(WORKAROUND_DEFS) $(DEBUG_DEFS) \ 196 $(OPTION_DEFS) 197GENASSYM_DEFS = $(MACHINE_DEFS) $(OPTION_DEFS) \ 198 -_gcc=-fno-eliminate-unused-debug-symbols \ 199 -_gcc=-fno-eliminate-unused-debug-types 200 201# 202# ----- TRANSITIONAL SECTION -------------------------------------------------- 203# 204 205# 206# Not everything which *should* be a module is a module yet. The 207# following is a list of such objects which are currently part of 208# the base kernel but should soon become kmods. 209# 210# XXX: $(KMACCT_OBJS) is neither in the MT kernel nor was it ever 211# made into a module. If it is made MT safe before being made 212# into a module, it should be added to this list. It was in 213# this list pre ON-4.0. 214# 215# 216MACH_NOT_YET_KMODS = $(AUTOCONF_OBJS) 217 218# 219# ----- END OF TRANSITIONAL SECTION ------------------------------------------- 220# 221 222# 223# The kernels modules which are "implementation architecture" 224# specific for this machine are enumerated below. Note that most 225# of these modules must exist (in one form or another) for each 226# architecture. 227# 228# Machine Specific Driver Modules (/kernel/drv) 229# DRV_KMODS are built both 32-bit and 64-bit 230# DRV_KMODS_32 are built only 32-bit 231# DRV_KMODS_64 are built only 64-bit 232# 233DRV_KMODS += rootnex 234DRV_KMODS += isa 235DRV_KMODS += pcplusmp 236DRV_KMODS += apix 237DRV_KMODS += cpc 238DRV_KMODS += pci 239DRV_KMODS += npe 240DRV_KMODS += pci-ide 241DRV_KMODS += xsvc 242DRV_KMODS += tzmon 243DRV_KMODS += acpi_drv 244DRV_KMODS += acpinex 245DRV_KMODS += amd_iommu 246DRV_KMODS += dr 247DRV_KMODS += ioat 248DRV_KMODS += fipe 249DRV_KMODS += vmm 250 251DRV_KMODS += cpudrv 252 253 254# 255# Platform Power Modules 256# 257DRV_KMODS += ppm acpippm 258 259# 260# CPU Modules 261# 262CPU_KMODS += amd_opteron 263CPU_KMODS += generic_cpu 264CPU_KMODS += authenticamd 265CPU_KMODS += genuineintel 266 267# 268# Exec Class Modules (/kernel/exec): 269# 270EXEC_KMODS += 271 272# 273# Scheduling Class Modules (/kernel/sched): 274# 275SCHED_KMODS += 276 277# 278# File System Modules (/kernel/fs): 279# 280FS_KMODS += 281 282# 283# Streams Modules (/kernel/strmod): 284# 285STRMOD_KMODS += 286 287# 288# 'System' Modules (/kernel/sys): 289# 290SYS_KMODS += 291 292# 293# 'Misc' Modules (/kernel/misc): 294# 295MISC_KMODS += gfx_private pcie pci_prd 296MISC_KMODS += acpidev 297MISC_KMODS += drmach_acpi 298 299# 300# 'Dacf' modules (/kernel/dacf) 301# 302DACF_KMODS += consconfig_dacf 303 304# 305# 'Mach' Modules (/kernel/mach): 306# 307MACH_KMODS += uppc 308 309# 310# CPR Misc Module. 311# 312MISC_KMODS += cpr 313