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