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