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 2010 Sun Microsystems, Inc. All rights reserved. 24 # Use is subject to license terms. 25 # Copyright (c) 2013 Andrew Stormont. All rights reserved. 26 # Copyright 2014 Gary Mills 27 # 28 # This makefile contains the common definitions for the sun4u unix 29 # and all sun4u implementation architecture dependent modules. 30 # 31 32 # 33 # Machine type (implementation architecture): 34 # 35 PLATFORM = sun4u 36 PROMIF = ieee1275 37 PSMBASE = $(UTSBASE)/../psm 38 39 # 40 # uname -m value 41 # 42 UNAME_M = $(PLATFORM) 43 44 # 45 # Definitions for the platform-specific /platform directories. 46 # 47 # PLATFORMS designates those sun4u machines which have no platform 48 # specific code. 49 # 50 # IMPLEMENTATIONS is used to designate sun4u machines which do have 51 # platform specific modules (perhaps including their own unix). All 52 # code specific to a given implementation resides in the appropriately 53 # named subdirectory. This requires these platforms to have their 54 # own Makefiles to define ROOT_PLAT_DIRS, USR_PLAT_DIRS, etc. 55 # 56 # So if we had an implementation named 'foo', we would need the following 57 # Makefiles in the foo subdirectory: 58 # 59 # sun4u/foo/Makefile 60 # sun4u/foo/Makefile.foo 61 # sun4u/foo/Makefile.targ 62 # 63 64 # 65 # /usr/platform/$(IMPLEMENTED_PLATFORM) is created as a directory that 66 # all the $(LINKED_PLATFORMS) link to. 67 # 68 IMPLEMENTED_PLATFORM = SUNW,Ultra-2 69 70 LINKED_PLATFORMS += SUNW,Ultra-30 71 LINKED_PLATFORMS += SUNW,Ultra-60 72 73 # 74 # all PLATFORMS that do not belong in the $(IMPLEMENTATIONS) list 75 # ie. all desktop platforms 76 # 77 PLATFORMS = $(IMPLEMENTED_PLATFORM) 78 PLATFORMS += $(LINKED_PLATFORMS) 79 80 ROOT_PLAT_DIRS = $(PLATFORMS:%=$(ROOT_PLAT_DIR)/%) 81 USR_PLAT_DIRS = $(PLATFORMS:%=$(USR_PLAT_DIR)/%) 82 83 USR_DESKTOP_DIR = $(USR_PLAT_DIR)/$(IMPLEMENTED_PLATFORM) 84 USR_DESKTOP_INC_DIR = $(USR_DESKTOP_DIR)/include 85 USR_DESKTOP_SBIN_DIR = $(USR_DESKTOP_DIR)/sbin 86 USR_DESKTOP_LIB_DIR = $(USR_DESKTOP_DIR)/lib 87 88 # 89 # Welcome to SPARC V9. 90 # 91 92 # 93 # Define supported builds 94 # 95 DEF_BUILDS = $(DEF_BUILDS64) 96 ALL_BUILDS = $(ALL_BUILDS64) 97 98 # 99 # Everybody needs to know how to build modstubs.o and to locate unix.o 100 # 101 UNIX_DIR = $(UTSBASE)/$(PLATFORM)/unix 102 GENLIB_DIR = $(UTSBASE)/$(PLATFORM)/genunix 103 MODSTUBS_DIR = $(UNIX_DIR) 104 DSF_DIR = $(UTSBASE)/$(PLATFORM)/genassym 105 LINTS_DIR = $(OBJS_DIR) 106 LINT_LIB_DIR = $(UTSBASE)/$(PLATFORM)/lint-libs/$(OBJS_DIR) 107 108 DTRACESTUBS_O = $(OBJS_DIR)/dtracestubs.o 109 DTRACESTUBS = $(OBJS_DIR)/libdtracestubs.so 110 111 UNIX_O = $(UNIX_DIR)/$(OBJS_DIR)/unix.o 112 MODSTUBS_O = $(MODSTUBS_DIR)/$(OBJS_DIR)/modstubs.o 113 GENLIB = $(GENLIB_DIR)/$(OBJS_DIR)/libgenunix.so 114 115 LINT_LIB = $(LINT_LIB_DIR)/llib-lunix.ln 116 GEN_LINT_LIB = $(LINT_LIB_DIR)/llib-lgenunix.ln 117 118 LINT64_DIRS = $(LINT64_BUILDS:%=$(UTSBASE)/$(PLATFORM)/lint-libs/%) 119 LINT64_FILES = $(LINT64_DIRS:%=%/llib-l$(MODULE).ln) 120 121 # 122 # cpu and platform modules need to know how to build their own symcheck module 123 # 124 PLATMOD = platmod 125 PLATLIB = $(PLAT_DIR)/$(OBJS_DIR)/libplatmod.so 126 127 CPUNAME = cpu 128 CPULIB = $(CPU_DIR)/$(OBJS_DIR)/libcpu.so 129 130 SYM_MOD = $(OBJS_DIR)/unix.sym 131 132 # 133 # Include the makefiles which define build rule templates, the 134 # collection of files per module, and a few specific flags. Note 135 # that order is significant, just as with an include path. The 136 # first build rule template which matches the files name will be 137 # used. By including these in order from most machine dependent 138 # to most machine independent, we allow a machine dependent file 139 # to be used in preference over a machine independent version 140 # (Such as a machine specific optimization, which preserves the 141 # interfaces.) 142 # 143 include $(UTSBASE)/sun4/Makefile.files 144 include $(UTSBASE)/$(PLATFORM)/Makefile.files 145 include $(UTSBASE)/sfmmu/Makefile.files 146 include $(UTSBASE)/sparc/v9/Makefile.files 147 include $(UTSBASE)/sparc/Makefile.files 148 include $(UTSBASE)/sun/Makefile.files 149 include $(SRC)/psm/promif/$(PROMIF)/common/Makefile.files 150 include $(SRC)/psm/promif/$(PROMIF)/$(PLATFORM)/Makefile.files 151 include $(UTSBASE)/common/Makefile.files 152 153 # 154 # Include machine independent rules. Note that this does not imply 155 # that the resulting module from rules in Makefile.uts is machine 156 # independent. Only that the build rules are machine independent. 157 # 158 include $(UTSBASE)/Makefile.uts 159 160 # These come after Makefile.uts. 161 IMPLEMENTATIONS = tazmo 162 IMPLEMENTATIONS += starfire 163 IMPLEMENTATIONS += javelin 164 IMPLEMENTATIONS += darwin 165 IMPLEMENTATIONS += quasar 166 IMPLEMENTATIONS += grover 167 IMPLEMENTATIONS += enchilada 168 IMPLEMENTATIONS += taco 169 IMPLEMENTATIONS += mpxu 170 IMPLEMENTATIONS += excalibur 171 IMPLEMENTATIONS += montecarlo 172 IMPLEMENTATIONS += serengeti 173 IMPLEMENTATIONS += littleneck 174 IMPLEMENTATIONS += starcat 175 IMPLEMENTATIONS += daktari 176 IMPLEMENTATIONS += cherrystone 177 IMPLEMENTATIONS += fjlite 178 IMPLEMENTATIONS += snowbird 179 IMPLEMENTATIONS += schumacher 180 IMPLEMENTATIONS += blade 181 IMPLEMENTATIONS += boston 182 IMPLEMENTATIONS += seattle 183 IMPLEMENTATIONS += chicago 184 IMPLEMENTATIONS += sunfire 185 IMPLEMENTATIONS += lw8 186 IMPLEMENTATIONS += makaha 187 IMPLEMENTATIONS += opl 188 IMPLEMENTATIONS += lw2plus 189 190 # 191 # machine specific optimization, override default in Makefile.master 192 # 193 CC_XARCH = -m64 -xarch=sparcvis 194 AS_XARCH = -xarch=v9a 195 COPTIMIZE = -_cc=-xO3 -_gcc=-O2 196 CCMODE = -Xa 197 198 CFLAGS = -xchip=ultra $(CCABS32) $(CCREGSYM) 199 CFLAGS += $(CC_XARCH) 200 CFLAGS += $(COPTIMIZE) 201 CFLAGS += $(EXTRA_CFLAGS) 202 CFLAGS += $(XAOPT) 203 CFLAGS += $(INLINES) -D_ASM_INLINES 204 CFLAGS += $(CCMODE) 205 CFLAGS += $(SPACEFLAG) 206 CFLAGS += $(CERRWARN) 207 CFLAGS += $(CTF_FLAGS_$(CLASS)) 208 CFLAGS += $(C99MODE) 209 CFLAGS += $(CCUNBOUND) 210 CFLAGS += $(CCNOAUTOINLINE) 211 CFLAGS += $(CCSTATICSYM) 212 CFLAGS += $(CC32BITCALLERS) 213 CFLAGS += $(IROPTFLAG) 214 CFLAGS += $(CGLOBALSTATIC) 215 CFLAGS += -xregs=no%float 216 CFLAGS += -xstrconst 217 CFLAGS += $(CSOURCEDEBUGFLAGS) 218 CFLAGS += $(CUSERFLAGS) 219 220 ASFLAGS += $(AS_XARCH) 221 222 AS_INC_PATH += -I$(DSF_DIR)/$(OBJS_DIR) 223 224 LINT_KMODS += $(GENUNIX_KMODS) 225 226 LINT_DEFS = -m64 227 228 # 229 # The following must be defined for all implementations: 230 # 231 # MAPFILE: ld mapfile for the build of kernel/unix. 232 # MODSTUBS: Module stubs source file. 233 # GENCONST_SRC: genconst.c 234 # OFFSETS: offsets.in 235 # PLATFORM_OFFSETS: Platform specific mach_offsets.in 236 # FDOFFSETS: fd_offsets.in 237 # 238 MAPFILE = $(UTSBASE)/sun4/conf/Mapfile 239 MODSTUBS = $(UTSBASE)/sparc/ml/modstubs.s 240 GENCONST_SRC = $(UTSBASE)/sun4/ml/genconst.c 241 OFFSETS = $(UTSBASE)/sun4/ml/offsets.in 242 PLATFORM_OFFSETS = $(UTSBASE)/sun4u/ml/mach_offsets.in 243 FDOFFSETS = $(UTSBASE)/sun/io/fd_offsets.in 244 245 # 246 # Define the actual specific platforms 247 # 248 249 MACHINE_DEFS = -D$(PLATFORM) -D_MACHDEP -DSFMMU 250 251 # 252 # Software workarounds for hardware "features" 253 # 254 255 include $(UTSBASE)/$(PLATFORM)/Makefile.workarounds 256 257 # 258 # Debugging level 259 # 260 # Special knowledge of which special debugging options effect which 261 # file is used to optimize the build if these flags are changed. 262 # 263 # XXX: The above could possibly be done for more flags and files, but 264 # is left as an experiment to the interested reader. Be forewarned, 265 # that excessive use could lead to maintenance difficulties. 266 # 267 # Note: kslice can be enabled for the sun4u, but is disabled by default 268 # in all cases. 269 # 270 271 DEBUG_DEFS_OBJ64 = 272 DEBUG_DEFS_DBG64 = -DDEBUG 273 DEBUG_DEFS = $(DEBUG_DEFS_$(BUILD_TYPE)) 274 275 DEBUG_COND_OBJ64 = $(POUND_SIGN) 276 DEBUG_COND_DBG64 = 277 IF_DEBUG_OBJ = $(DEBUG_COND_$(BUILD_TYPE))$(OBJS_DIR)/ 278 279 $(IF_DEBUG_OBJ)trap.o := DEBUG_DEFS += -DTRAPDEBUG 280 $(IF_DEBUG_OBJ)mach_trap.o := DEBUG_DEFS += -DTRAPDEBUG 281 $(IF_DEBUG_OBJ)syscall_trap.o := DEBUG_DEFS += -DSYSCALLTRACE 282 $(IF_DEBUG_OBJ)clock.o := DEBUG_DEFS += -DKSLICE=0 283 284 IF_TRAPTRACE_OBJ = $(IF_DEBUG_OBJ) 285 # comment this out for a non-debug kernel with TRAPTRACE 286 #IF_TRAPTRACE_OBJ = $(OBJS_DIR)/ 287 288 $(IF_TRAPTRACE_OBJ)mach_locore.o := DEBUG_DEFS += -DTRAPTRACE 289 $(IF_TRAPTRACE_OBJ)mlsetup.o := DEBUG_DEFS += -DTRAPTRACE 290 $(IF_TRAPTRACE_OBJ)syscall_trap.o := DEBUG_DEFS += -DTRAPTRACE 291 $(IF_TRAPTRACE_OBJ)startup.o := DEBUG_DEFS += -DTRAPTRACE 292 $(IF_TRAPTRACE_OBJ)mach_startup.o := DEBUG_DEFS += -DTRAPTRACE 293 $(IF_TRAPTRACE_OBJ)mp_startup.o := DEBUG_DEFS += -DTRAPTRACE 294 $(IF_TRAPTRACE_OBJ)cpu_states.o := DEBUG_DEFS += -DTRAPTRACE 295 $(IF_TRAPTRACE_OBJ)mach_cpu_states.o := DEBUG_DEFS += -DTRAPTRACE 296 $(IF_TRAPTRACE_OBJ)interrupt.o := DEBUG_DEFS += -DTRAPTRACE 297 $(IF_TRAPTRACE_OBJ)mach_interrupt.o := DEBUG_DEFS += -DTRAPTRACE 298 $(IF_TRAPTRACE_OBJ)sfmmu_asm.o := DEBUG_DEFS += -DTRAPTRACE 299 $(IF_TRAPTRACE_OBJ)trap_table.o := DEBUG_DEFS += -DTRAPTRACE 300 $(IF_TRAPTRACE_OBJ)xc.o := DEBUG_DEFS += -DTRAPTRACE 301 $(IF_TRAPTRACE_OBJ)mach_xc.o := DEBUG_DEFS += -DTRAPTRACE 302 $(IF_TRAPTRACE_OBJ)wbuf.o := DEBUG_DEFS += -DTRAPTRACE 303 $(IF_TRAPTRACE_OBJ)trap.o := DEBUG_DEFS += -DTRAPTRACE 304 $(IF_TRAPTRACE_OBJ)mach_trap.o := DEBUG_DEFS += -DTRAPTRACE 305 $(IF_TRAPTRACE_OBJ)x_call.o := DEBUG_DEFS += -DTRAPTRACE 306 $(IF_TRAPTRACE_OBJ)spitfire_asm.o := DEBUG_DEFS += -DTRAPTRACE 307 $(IF_TRAPTRACE_OBJ)us3_common_asm.o := DEBUG_DEFS += -DTRAPTRACE 308 $(IF_TRAPTRACE_OBJ)us3_cheetah_asm.o := DEBUG_DEFS += -DTRAPTRACE 309 $(IF_TRAPTRACE_OBJ)us3_cheetahplus_asm.o := DEBUG_DEFS += -DTRAPTRACE 310 $(IF_TRAPTRACE_OBJ)us3_jalapeno_asm.o := DEBUG_DEFS += -DTRAPTRACE 311 $(IF_TRAPTRACE_OBJ)opl_olympus_asm.o := DEBUG_DEFS += -DTRAPTRACE 312 313 # Comment these out if you don't want dispatcher lock statistics. 314 315 #$(IF_DEBUG_OBJ)lock_prim.o := DEBUG_DEFS += -DDISP_LOCK_STATS 316 #$(IF_DEBUG_OBJ)disp.o := DEBUG_DEFS += -DDISP_LOCK_STATS 317 318 # Comment these out if you don't want dispatcher debugging 319 320 #$(IF_DEBUG_OBJ)lock_prim.o := DEBUG_DEFS += -DDISP_DEBUG 321 322 # 323 # Collect the preprocessor definitions to be associated with *all* 324 # files. 325 # 326 ALL_DEFS = $(MACHINE_DEFS) $(WORKAROUND_DEFS) $(DEBUG_DEFS) \ 327 $(OPTION_DEFS) 328 GENCONST_DEFS = $(MACHINE_DEFS) $(OPTION_DEFS) 329 330 # 331 # ----- TRANSITIONAL SECTION -------------------------------------------------- 332 # 333 334 # 335 # Not everything which *should* be a module is a module yet. The 336 # following is a list of such objects which are currently part of 337 # the base kernel but should soon become kmods. 338 # 339 MACH_NOT_YET_KMODS = $(AUTOCONF_OBJS) 340 341 # 342 # ----- END OF TRANSITIONAL SECTION ------------------------------------------- 343 # 344 345 # 346 # The kernels modules which are "implementation architecture" 347 # specific for this machine are enumerated below. Note that most 348 # of these modules must exist (in one form or another) for each 349 # architecture. 350 # 351 # Common Drivers (usually pseudo drivers) (/kernel/drv): 352 # 353 354 # 355 # Machine Specific Driver Modules (/kernel/drv): 356 # 357 # XXX: How many of these are really machine specific? 358 # 359 DRV_KMODS += bbc_beep 360 DRV_KMODS += cpc 361 DRV_KMODS += fd 362 DRV_KMODS += rootnex sbusmem upa64s zs zsh 363 DRV_KMODS += sbus 364 DRV_KMODS += pcisch pcipsy simba 365 DRV_KMODS += px 366 DRV_KMODS += ebus 367 DRV_KMODS += su 368 DRV_KMODS += tod 369 DRV_KMODS += power 370 DRV_KMODS += epic 371 DRV_KMODS += grbeep 372 DRV_KMODS += pcf8584 max1617 seeprom tda8444 pca9556 373 DRV_KMODS += ics951601 adm1031 374 DRV_KMODS += lm75 ltc1427 pcf8591 pcf8574 ssc050 ssc100 375 DRV_KMODS += pic16f819 376 DRV_KMODS += pic16f747 377 DRV_KMODS += adm1026 378 DRV_KMODS += us 379 DRV_KMODS += ppm schppm jbusppm 380 DRV_KMODS += mc-us3 381 DRV_KMODS += mc-us3i 382 DRV_KMODS += smbus 383 DRV_KMODS += db21554 384 DRV_KMODS += gpio_87317 385 DRV_KMODS += isadma 386 DRV_KMODS += sbbc 387 DRV_KMODS += pmubus 388 DRV_KMODS += pmugpio 389 DRV_KMODS += pmc 390 DRV_KMODS += trapstat 391 DRV_KMODS += rmc_comm 392 DRV_KMODS += rmcadm 393 DRV_KMODS += rmclomv 394 DRV_KMODS += sf 395 DRV_KMODS += nxge 396 DRV_KMODS += i2bsc 397 DRV_KMODS += mem_cache 398 399 # 400 # Exec Class Modules (/kernel/exec): 401 # 402 EXEC_KMODS += 403 404 # 405 # Scheduling Class Modules (/kernel/sched): 406 # 407 SCHED_KMODS += 408 409 # 410 # File System Modules (/kernel/fs): 411 # 412 FS_KMODS += 413 414 # 415 # Streams Modules (/kernel/strmod): 416 # 417 STRMOD_KMODS += kb 418 419 # 420 # 'System' Modules (/kernel/sys): 421 # 422 SYS_KMODS += 423 424 # 425 # 'User' Modules (/kernel/misc): 426 # 427 MISC_KMODS += bignum 428 MISC_KMODS += obpsym bootdev vis cpr platmod md5 sha1 i2c_svc 429 MISC_KMODS += sbd 430 431 MISC_KMODS += opl_cfg 432 MISC_KMODS += zuluvm 433 MISC_KMODS += gptwo_cpu gptwocfg 434 MISC_KMODS += pcie 435 436 # 437 # Brand modules 438 # 439 BRAND_KMODS += sn1_brand s10_brand 440 441 # 442 # Software Cryptographic Providers (/kernel/crypto): 443 # 444 CRYPTO_KMODS += aes 445 CRYPTO_KMODS += arcfour 446 CRYPTO_KMODS += des 447 448 # 449 # generic-unix module (/kernel/genunix): 450 # 451 GENUNIX_KMODS += genunix 452 453 # 'User' "Modules" excluded from the Full Kernel lint target: 454 # 455 456 # 457 # Modules eXcluded from the product: 458 # 459 XMODS += 460 461 # 462 # cpu modules 463 # 464 CPU_KMODS += cheetah cheetahplus jalapeno serrano spitfire hummingbird 465 466 # 467 # sun4u 'TOD' Modules (/platform/.../kernel/tod): 468 # 469 TOD_KMODS += todds1287 todds1337 todmostek todstarfire 470 TOD_KMODS += todm5819 todblade todbq4802 todsg todopl 471 TOD_KMODS += todm5819p_rmc todstarcat 472 473 # 474 # Performance Counter BackEnd Modules (/usr/kernel/pcbe): 475 # 476 PCBE_KMODS += us234_pcbe 477 PCBE_KMODS += opl_pcbe