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 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 24 # Copyright (c) 2013 Andrew Stormont. All rights reserved. 25 # Copyright (c) 2015, Joyent, Inc. All rights reserved. 26 # Copyright 2016 Gary Mills 27 # Copyright 2016 Nexenta Systems, Inc. 28 # Copyright 2019 Peter Tribble. 29 # 30 31 # 32 # This makefile contains the common definitions for all sparc 33 # implementation architecture independent modules. 34 # 35 36 # 37 # Define supported builds 38 # 39 DEF_BUILDS = $(DEF_BUILDS64) 40 ALL_BUILDS = $(ALL_BUILDS64) 41 42 # 43 # Everybody needs to know how to build modstubs.o and to locate unix.o. 44 # Note that unix.o must currently be selected from among the possible 45 # "implementation architectures". Note further, that unix.o is only 46 # used as an optional error check for undefines so (theoretically) 47 # any "implementation architectures" could be used. We choose sun4u 48 # because it is the reference port. 49 # 50 UNIX_DIR = $(UTSBASE)/sun4u/unix 51 GENLIB_DIR = $(UTSBASE)/sun4u/genunix 52 IPDRV_DIR = $(UTSBASE)/sparc/ip 53 MODSTUBS_DIR = $(UNIX_DIR) 54 DSF_DIR = $(UNIX_DIR) 55 LINTS_DIR = $(OBJS_DIR) 56 LINT_LIB_DIR = $(UTSBASE)/sparc/lint-libs/$(OBJS_DIR) 57 58 UNIX_O = $(UNIX_DIR)/$(OBJS_DIR)/unix.o 59 MODSTUBS_O = $(MODSTUBS_DIR)/$(OBJS_DIR)/modstubs.o 60 GENLIB = $(UTSBASE)/sun4u/lint-libs/$(OBJS_DIR)/libgenunix.so 61 62 LINT_LIB_32 = $(UTSBASE)/sun4u/lint-libs/$(OBJS_DIR)/llib-lunix.ln 63 GEN_LINT_LIB_32 = $(UTSBASE)/sun4u/lint-libs/$(OBJS_DIR)/llib-lgenunix.ln 64 65 LINT_LIB_64 = $(UTSBASE)/sun4u/lint-libs/$(OBJS_DIR)/llib-lunix.ln 66 GEN_LINT_LIB_64 = $(UTSBASE)/sun4u/lint-libs/$(OBJS_DIR)/llib-lgenunix.ln 67 68 LINT_LIB = $(LINT_LIB_$(CLASS)) 69 GEN_LINT_LIB = $(GEN_LINT_LIB_$(CLASS)) 70 71 LINT32_DIRS = $(LINT32_BUILDS:%=$(UTSBASE)/sparc/lint-libs/%) 72 LINT32_FILES = $(LINT32_DIRS:%=%/llib-l$(MODULE).ln) 73 74 LINT64_DIRS = $(LINT64_BUILDS:%=$(UTSBASE)/sparc/lint-libs/%) 75 LINT64_FILES = $(LINT64_DIRS:%=%/llib-l$(MODULE).ln) 76 77 # 78 # Include the makefiles which define build rule templates, the 79 # collection of files per module, and a few specific flags. Note 80 # that order is significant, just as with an include path. The 81 # first build rule template which matches the files name will be 82 # used. By including these in order from most machine dependent 83 # to most machine independent, we allow a machine dependent file 84 # to be used in preference over a machine independent version 85 # (Such as a machine specific optimization, which preserves the 86 # interfaces.) 87 # 88 include $(UTSBASE)/sparc/Makefile.files 89 include $(UTSBASE)/sparc/v9/Makefile.files 90 include $(UTSBASE)/sun/Makefile.files 91 include $(UTSBASE)/common/Makefile.files 92 93 # 94 # ----- TRANSITIONAL SECTION -------------------------------------------------- 95 # 96 97 # 98 # Not everything which *should* be a module is a module yet. The 99 # following is a list of such objects which are currently part of 100 # genunix but which might someday become kmods. This must be 101 # defined before we include Makefile.uts, or else genunix's build 102 # won't be as parallel as we might like. 103 # 104 NOT_YET_KMODS = $(OLDPTY_OBJS) $(PTY_OBJS) $(VCONS_CONF_OBJS) $(MOD_OBJS) 105 106 # 107 # ----- END OF TRANSITIONAL SECTION ------------------------------------------- 108 # 109 # Include machine independent rules. Note that this does not imply 110 # that the resulting module from rules in Makefile.uts is machine 111 # independent. Only that the build rules are machine independent. 112 # 113 include $(UTSBASE)/Makefile.uts 114 115 # 116 # machine specific optimization, override default in Makefile.master 117 # 118 XARCH_32 = -xarch=v8 119 XARCH_64 = -m64 120 XARCH = $(XARCH_$(CLASS)) 121 122 COPTIMIZE_32 = -xO3 123 COPTIMIZE_64 = -xO3 124 COPTIMIZE = $(COPTIMIZE_$(CLASS)) 125 126 CCMODE = -Xa 127 128 CFLAGS_32 = -xcg92 129 CFLAGS_64 = -xchip=ultra $(CCABS32) $(CCREGSYM) 130 CFLAGS = $(CFLAGS_$(CLASS)) 131 132 CFLAGS += $(XARCH) 133 CFLAGS += $(COPTIMIZE) 134 CFLAGS += $(EXTRA_CFLAGS) 135 CFLAGS += $(XAOPT) 136 CFLAGS += $(INLINES) -D_ASM_INLINES 137 CFLAGS += $(CCMODE) 138 CFLAGS += $(SPACEFLAG) 139 CFLAGS += $(CERRWARN) 140 CFLAGS += $(CTF_FLAGS_$(CLASS)) 141 CFLAGS += $(CSTD) 142 CFLAGS += $(CCUNBOUND) 143 CFLAGS += $(CCSTATICSYM) 144 CFLAGS += $(CC32BITCALLERS) 145 CFLAGS += $(CCNOAUTOINLINE) 146 CFLAGS += $(IROPTFLAG) 147 CFLAGS += $(CGLOBALSTATIC) 148 CFLAGS += -xregs=no%float 149 CFLAGS += -xstrconst 150 CFLAGS += $(CSOURCEDEBUGFLAGS) 151 CFLAGS += $(CUSERFLAGS) 152 153 ASFLAGS += $(XARCH) 154 155 LINT_DEFS_32 = 156 LINT_DEFS_64 = -m64 157 LINT_DEFS += $(LINT_DEFS_$(CLASS)) 158 159 # 160 # The following must be defined for all implementations: 161 # 162 # MODSTUBS: Module stubs source file. 163 # 164 MODSTUBS = $(UTSBASE)/sparc/ml/modstubs.s 165 166 # 167 # Define the actual specific platforms - obviously none. 168 # 169 MACHINE_DEFS = 170 171 # 172 # Debugging level 173 # 174 # Special knowledge of which special debugging options effect which 175 # file is used to optimize the build if these flags are changed. 176 # 177 # XXX: The above could possibly be done for more flags and files, but 178 # is left as an experiment to the interested reader. Be forewarned, 179 # that excessive use could lead to maintenance difficulties. 180 # 181 DEBUG_DEFS_OBJ32 = 182 DEBUG_DEFS_DBG32 = -DDEBUG 183 DEBUG_DEFS_OBJ64 = 184 DEBUG_DEFS_DBG64 = -DDEBUG 185 DEBUG_DEFS = $(DEBUG_DEFS_$(BUILD_TYPE)) 186 187 DEBUG_COND_OBJ32 = $(POUND_SIGN) 188 DEBUG_COND_DBG32 = 189 DEBUG_COND_OBJ64 = $(POUND_SIGN) 190 DEBUG_COND_DBG64 = 191 IF_DEBUG_OBJ = $(DEBUG_COND_$(BUILD_TYPE))$(OBJS_DIR)/ 192 193 $(IF_DEBUG_OBJ)syscall.o := DEBUG_DEFS += -DSYSCALLTRACE 194 $(IF_DEBUG_OBJ)clock.o := DEBUG_DEFS += -DKSLICE=1 195 196 # Comment these out if you don't want dispatcher lock statistics. 197 198 # $(IF_DEBUG_OBJ)disp_lock.o := DEBUG_DEFS += -DDISP_LOCK_STATS 199 200 # 201 # Collect the preprocessor definitions to be associated with *all* 202 # files. 203 # 204 ALL_DEFS = $(MACHINE_DEFS) $(DEBUG_DEFS) $(OPTION_DEFS) 205 # 206 # 207 # The kernels modules which are "implementation architecture" 208 # specific for this machine are enumerated below. Note that most 209 # of these modules must exist (in one form or another) for each 210 # architecture. 211 # 212 # Common Drivers (usually pseudo drivers) (/kernel/drv): 213 # 214 DRV_KMODS += aggr arp audio bl blkdev bofi clone cn conskbd consms cpuid 215 DRV_KMODS += crypto cryptoadm devinfo dump 216 DRV_KMODS += dtrace fasttrap fbt lockstat profile sdt systrace dcpc 217 DRV_KMODS += fssnap icmp icmp6 ip ip6 ipnet ipsecah 218 DRV_KMODS += ipsecesp iptun iwscn keysock kmdb kstat ksyms llc1 219 DRV_KMODS += lofi 220 DRV_KMODS += log logindmux kssl mm nca physmem pm poll pool 221 DRV_KMODS += pseudo ptc ptm pts ptsl ramdisk random rsm rts sad 222 DRV_KMODS += simnet softmac sppp sppptun sy sysevent sysmsg 223 DRV_KMODS += spdsock 224 DRV_KMODS += tcp tcp6 timerfd tl tnf udp udp6 wc winlock zcons 225 DRV_KMODS += ippctl 226 DRV_KMODS += dld 227 DRV_KMODS += ipd 228 DRV_KMODS += ipf 229 DRV_KMODS += rpcib 230 DRV_KMODS += dlpistub 231 DRV_KMODS += vnic 232 DRV_KMODS += xge 233 DRV_KMODS += rds 234 DRV_KMODS += rdsv3 235 DRV_KMODS += chxge 236 DRV_KMODS += smbsrv 237 DRV_KMODS += vscan 238 DRV_KMODS += nsmb 239 DRV_KMODS += fm 240 DRV_KMODS += nulldriver 241 DRV_KMODS += bridge trill 242 DRV_KMODS += bpf 243 DRV_KMODS += dca 244 DRV_KMODS += eventfd 245 DRV_KMODS += signalfd 246 247 # 248 # Hardware Drivers in common space 249 # 250 251 DRV_KMODS += afe 252 DRV_KMODS += audio1575 253 DRV_KMODS += audioens 254 DRV_KMODS += audiols 255 DRV_KMODS += audiop16x 256 DRV_KMODS += audiopci 257 DRV_KMODS += audiots 258 DRV_KMODS += bnxe 259 DRV_KMODS += e1000g 260 DRV_KMODS += efe 261 DRV_KMODS += hxge 262 DRV_KMODS += mxfe 263 DRV_KMODS += rge 264 DRV_KMODS += rtls 265 DRV_KMODS += sfe 266 DRV_KMODS += aac 267 DRV_KMODS += igb 268 DRV_KMODS += ixgbe 269 DRV_KMODS += vr 270 DRV_KMODS += mr_sas 271 DRV_KMODS += yge 272 273 # 274 # Machine Specific Driver Modules (/kernel/drv): 275 # 276 DRV_KMODS += audiocs 277 DRV_KMODS += bge dmfe eri fas hme qfe 278 DRV_KMODS += openeepr options sd ses st 279 DRV_KMODS += ssd 280 DRV_KMODS += ecpp 281 DRV_KMODS += hid hubd ehci ohci uhci usb_mid usb_ia scsa2usb usbprn ugen 282 DRV_KMODS += usbser usbsacm usbsksp usbsprl 283 DRV_KMODS += usb_as usb_ac 284 DRV_KMODS += usbskel 285 DRV_KMODS += usbvc 286 DRV_KMODS += usbftdi 287 DRV_KMODS += usbecm 288 DRV_KMODS += hci1394 av1394 scsa1394 dcam1394 289 DRV_KMODS += sbp2 290 DRV_KMODS += ib ibp eibnx eoib rdsib sdp iser daplt hermon tavor sol_ucma sol_uverbs 291 DRV_KMODS += sol_umad 292 DRV_KMODS += pci_pci pcieb pcieb_bcm 293 DRV_KMODS += i8042 kb8042 mouse8042 294 DRV_KMODS += fcode 295 DRV_KMODS += mpt_sas 296 DRV_KMODS += socal 297 DRV_KMODS += sgen 298 DRV_KMODS += myri10ge 299 DRV_KMODS += smp 300 DRV_KMODS += dad 301 DRV_KMODS += scsi_vhci 302 DRV_KMODS += fcp 303 DRV_KMODS += fcip 304 DRV_KMODS += fcsm 305 DRV_KMODS += fp 306 DRV_KMODS += qlc 307 DRV_KMODS += qlge 308 DRV_KMODS += stmf 309 DRV_KMODS += stmf_sbd 310 DRV_KMODS += fct 311 DRV_KMODS += fcoe 312 DRV_KMODS += fcoet 313 DRV_KMODS += fcoei 314 DRV_KMODS += qlt 315 DRV_KMODS += iscsit 316 DRV_KMODS += pppt 317 DRV_KMODS += iscsi 318 DRV_KMODS += emlxs 319 DRV_KMODS += oce 320 DRV_KMODS += srpt 321 DRV_KMODS += pmcs 322 DRV_KMODS += pmcs8001fw 323 324 # 325 # I/O framework test drivers 326 # 327 DRV_KMODS += pshot 328 DRV_KMODS += gen_drv 329 DRV_KMODS += tvhci tphci tclient 330 DRV_KMODS += emul64 331 332 # 333 # PCMCIA specific module(s) 334 # 335 DRV_KMODS += pcs 336 MISC_KMODS += busra cardbus dada pcmcia 337 DRV_KMODS += pcic 338 339 # 340 # Exec Class Modules (/kernel/exec): 341 # 342 EXEC_KMODS += aoutexec elfexec intpexec shbinexec javaexec 343 344 # 345 # Scheduling Class Modules (/kernel/sched): 346 # 347 SCHED_KMODS += RT TS RT_DPTBL TS_DPTBL IA FSS FX FX_DPTBL SDC 348 349 # 350 # File System Modules (/kernel/fs): 351 # 352 FS_KMODS += dev devfs fdfs fifofs hsfs lofs namefs nfs pcfs tmpfs zfs 353 FS_KMODS += zut specfs udfs ufs autofs procfs sockfs mntfs 354 FS_KMODS += ctfs objfs sharefs dcfs smbfs bootfs 355 356 # 357 # Streams Modules (/kernel/strmod): 358 # 359 STRMOD_KMODS += bufmod connld dedump ldterm ms pckt pfmod 360 STRMOD_KMODS += pipemod ptem redirmod rpcmod rlmod telmod timod 361 STRMOD_KMODS += spppasyn spppcomp 362 STRMOD_KMODS += tirdwr ttcompat 363 STRMOD_KMODS += usbkbm usbms usbwcm usb_ah 364 STRMOD_KMODS += drcompat 365 STRMOD_KMODS += cryptmod 366 STRMOD_KMODS += vuid3ps2 367 368 # 369 # 'System' Modules (/kernel/sys): 370 # 371 SYS_KMODS += c2audit 372 SYS_KMODS += exacctsys 373 SYS_KMODS += inst_sync kaio msgsys semsys shmsys sysacct pipe 374 SYS_KMODS += doorfs pset acctctl portfs 375 376 # 377 # 'User' Modules (/kernel/misc): 378 # 379 MISC_KMODS += ac97 380 MISC_KMODS += bignum 381 MISC_KMODS += consconfig gld ipc nfs_dlboot nfssrv scsi 382 MISC_KMODS += strplumb swapgeneric tlimod 383 MISC_KMODS += rpcsec rpcsec_gss kgssapi kmech_dummy 384 MISC_KMODS += kmech_krb5 385 MISC_KMODS += fssnap_if 386 MISC_KMODS += hidparser kbtrans usba usba10 usbs49_fw 387 MISC_KMODS += s1394 388 MISC_KMODS += hpcsvc pcihp 389 MISC_KMODS += rsmops 390 MISC_KMODS += sata 391 MISC_KMODS += kcf 392 MISC_KMODS += ksocket 393 MISC_KMODS += ibcm 394 MISC_KMODS += ibdm 395 MISC_KMODS += ibdma 396 MISC_KMODS += ibmf 397 MISC_KMODS += ibtl 398 MISC_KMODS += sol_ofs 399 MISC_KMODS += idm 400 MISC_KMODS += idmap 401 MISC_KMODS += hook 402 MISC_KMODS += neti 403 MISC_KMODS += ctf 404 MISC_KMODS += mac dls 405 MISC_KMODS += cmlb 406 MISC_KMODS += tem 407 MISC_KMODS += pcicfg fcodem fcpci 408 MISC_KMODS += scsi_vhci_f_sym scsi_vhci_f_tpgs scsi_vhci_f_asym_sun 409 MISC_KMODS += scsi_vhci_f_sym_hds 410 MISC_KMODS += scsi_vhci_f_tape scsi_vhci_f_tpgs_tape 411 MISC_KMODS += fctl 412 MISC_KMODS += emlxs_fw 413 MISC_KMODS += qlc_fw_2200 414 MISC_KMODS += qlc_fw_2300 415 MISC_KMODS += qlc_fw_2400 416 MISC_KMODS += qlc_fw_2500 417 MISC_KMODS += qlc_fw_6322 418 MISC_KMODS += qlc_fw_8100 419 MISC_KMODS += mii 420 421 MISC_KMODS += klmmod klmops 422 423 # 424 # Software Cryptographic Providers (/kernel/crypto): 425 # 426 CRYPTO_KMODS += aes 427 CRYPTO_KMODS += arcfour 428 CRYPTO_KMODS += blowfish 429 CRYPTO_KMODS += des 430 CRYPTO_KMODS += ecc 431 CRYPTO_KMODS += edonr 432 CRYPTO_KMODS += md4 433 CRYPTO_KMODS += md5 434 CRYPTO_KMODS += rsa 435 CRYPTO_KMODS += sha1 436 CRYPTO_KMODS += sha2 437 CRYPTO_KMODS += skein 438 CRYPTO_KMODS += swrand 439 440 # 441 # IP Policy Modules (/kernel/ipp): 442 # 443 IPP_KMODS += dlcosmk 444 IPP_KMODS += flowacct 445 IPP_KMODS += ipgpc 446 IPP_KMODS += dscpmk 447 IPP_KMODS += tokenmt 448 IPP_KMODS += tswtclmt 449 450 # 451 # 'Dacf' modules (/kernel/dacf) 452 DACF_KMODS += consconfig_dacf 453 454 # 455 # SVVS Testing Modules (/kernel/strmod): 456 # 457 # These are streams and driver modules which are not to be 458 # delivered with a released system. However, during development 459 # it is convenient to build and install the SVVS kernel modules. 460 # 461 SVVS_KMODS += lmodb lmode lmodr lmodt svvslo tidg tivc tmux 462 463 # 464 # Modules eXcluded from the product: 465 # 466 XMODS += 467 468 # 469 # 'Dacf' Modules (/kernel/dacf): 470 # 471 DACF_KMODS += net_dacf 472 473 # 474 # MAC-Type Plugin Modules (/kernel/mac) 475 # 476 MAC_KMODS += mac_6to4 477 MAC_KMODS += mac_ether 478 MAC_KMODS += mac_ipv4 479 MAC_KMODS += mac_ipv6 480 MAC_KMODS += mac_wifi 481 MAC_KMODS += mac_ib 482 483 # 484 # socketmod (kernel/socketmod) 485 # 486 SOCKET_KMODS += sockpfp 487 SOCKET_KMODS += socksctp 488 SOCKET_KMODS += socksdp 489 SOCKET_KMODS += sockrds 490 SOCKET_KMODS += ksslf 491 492 # 493 # kiconv modules (/kernel/kiconv): 494 # 495 KICONV_KMODS += kiconv_emea kiconv_ja kiconv_ko kiconv_sc kiconv_tc 496 497 # 498 # Ensure that the variable member of the cpu_t (cpu_m) is defined 499 # for the lint builds so as not to cause lint errors during the 500 # global cross check. 501 # 502 $(LINTFLAGSUPPRESS)LINTFLAGS += -D_MACHDEP -I$(UTSBASE)/sun4 \ 503 -I$(UTSBASE)/sun4u -I$(UTSBASE)/sfmmu