xref: /illumos-gate/usr/src/uts/i86pc/Makefile.files (revision 4beb21b1)
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) 1992, 2010, Oracle and/or its affiliates. All rights reserved.
24#
25# Copyright (c) 2010, Intel Corporation.
26# Copyright 2018 Joyent, Inc.
27# Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
28#
29#	This Makefile defines file modules in the directory uts/i86pc
30#	and its children. These are the source files which are i86pc
31#	"implementation architecture" dependent.
32#
33
34#
35#	object lists
36#
37CORE_OBJS +=			\
38	acpi_stubs.o		\
39	biosdisk.o		\
40	bios_call.o		\
41	cbe.o			\
42	cmi.o			\
43	cmi_hw.o		\
44	cms.o			\
45	comm_page.o		\
46	confunix.o		\
47	cpu_idle.o		\
48	cpuid.o			\
49	cpuid_subr.o		\
50	cpupm.o			\
51	cpupm_mach.o		\
52	cpupm_amd.o		\
53	cpupm_intel.o		\
54	cpupm_throttle.o	\
55	cpu_acpi.o		\
56	dis_tables.o		\
57	ddi_impl.o		\
58	dtrace_subr.o		\
59	dvma.o			\
60	fpu_subr.o		\
61	fakebop.o		\
62	fastboot.o		\
63	fb_swtch.o		\
64	graphics.o		\
65	hardclk.o		\
66	hat_i86.o		\
67	hat_kdi.o		\
68	hma_fpu.o		\
69	hment.o			\
70	hold_page.o		\
71	hrtimers.o		\
72	htable.o		\
73	hypercall.o		\
74	hypersubr.o		\
75	i86_mmu.o		\
76	ibft.o			\
77	instr_size.o		\
78	intr.o			\
79	kboot_mmu.o		\
80	kdi_idt.o		\
81	kdi_idthdl.o		\
82	kdi_asm.o		\
83	lgrpplat.o		\
84	mach_kdi.o		\
85	mach_sysconfig.o	\
86	machdep.o		\
87	md_clear.o		\
88	mem_config.o		\
89	mem_config_stubs.o	\
90	mem_config_arch.o	\
91	memlist_new.o		\
92	memnode.o		\
93	microcode.o		\
94	microfind.o		\
95	mlsetup.o		\
96	mp_call.o		\
97	mp_implfuncs.o		\
98	mp_machdep.o		\
99	mp_pc.o			\
100	mp_startup.o		\
101	memscrub.o		\
102	mpcore.o		\
103	notes.o			\
104	pci_bios.o		\
105	pci_cfgacc.o		\
106	pci_cfgacc_x86.o	\
107	pci_cfgspace.o		\
108	pci_mech1.o		\
109	pci_mech1_amd.o		\
110	pci_mech2.o		\
111	pci_neptune.o		\
112	pci_orion.o		\
113	pmem.o			\
114	ppage.o			\
115	pwrnow.o		\
116	smt.o			\
117	seg_vmm.o		\
118	speedstep.o		\
119	ssp.o			\
120	startup.o		\
121	timestamp.o		\
122	todpc_subr.o		\
123	trap.o			\
124	turbo.o			\
125	vm_machdep.o		\
126	xpv_platform.o		\
127	x_call.o
128
129#
130#	Add the SMBIOS subsystem object files directly to the list of objects
131#	built into unix itself; this is all common code except for smb_dev.c.
132#
133CORE_OBJS += $(SMBIOS_OBJS)
134
135#
136# These get compiled twice:
137# - once in the dboot (direct boot) identity mapped code
138# - once for use during early startup in unix
139#
140BOOT_DRIVER_OBJS =		\
141	boot_console.o		\
142	boot_keyboard.o		\
143	boot_keyboard_table.o	\
144	boot_vga.o		\
145	boot_fb.o		\
146	boot_mmu.o		\
147	dboot_multiboot2.o	\
148	$(FONT_OBJS)
149
150CORE_OBJS += $(BOOT_DRIVER_OBJS)
151
152#
153#	locore.o is special. It must be the first file relocated so that it
154#	it is relocated just where its name implies.
155#
156SPECIAL_OBJS +=			\
157	locore.o		\
158	fast_trap_asm.o		\
159	interrupt.o		\
160	syscall_asm_amd64.o	\
161	kpti_trampolines.o
162
163#
164# Objects that get compiled into the identity mapped PT_LOAD section of unix
165# to handle the earliest part of booting.
166#
167DBOOT_OBJS_32 =
168
169DBOOT_OBJS_64 += dboot_elfload.o
170
171DBOOT_OBJS +=			\
172	dboot_asm.o		\
173	dboot_grub.o		\
174	dboot_printf.o		\
175	dboot_startkern.o	\
176	memcpy.o		\
177	memset.o		\
178	muldiv.o		\
179	sha1.o			\
180	string.o		\
181	$(BOOT_DRIVER_OBJS)	\
182	$(DBOOT_OBJS_$(CLASS))
183
184#
185#			driver and misc modules
186#
187GFX_PRIVATE_OBJS	+= gfx_private.o gfxp_pci.o gfxp_segmap.o \
188			   gfxp_devmap.o gfxp_vgatext.o gfxp_vm.o vgasubr.o \
189			   gfxp_fb.o gfxp_bitmap.o
190FIPE_OBJS += fipe_drv.o fipe_pm.o
191IOAT_OBJS += ioat.o ioat_rs.o ioat_ioctl.o ioat_chan.o
192ISANEXUS_OBJS += isa.o dma_engine.o i8237A.o
193PCIE_MISC_OBJS += pcie_acpi.o pciehpc_acpi.o pcie_x86.o
194PCI_E_NEXUS_OBJS += npe.o npe_misc.o
195PCI_E_NEXUS_OBJS += pci_common.o pci_kstats.o pci_tools.o
196PCINEXUS_OBJS += pci.o pci_common.o pci_kstats.o pci_tools.o
197PCPLUSMP_OBJS += apic.o apic_regops.o psm_common.o apic_introp.o	\
198			mp_platform_common.o mp_platform_misc.o		\
199			hpet_acpi.o apic_common.o apic_timer.o
200APIX_OBJS += apix.o apic_regops.o psm_common.o apix_intr.o apix_utils.o \
201		apix_irm.o mp_platform_common.o hpet_acpi.o apic_common.o \
202		apic_timer.o apix_regops.o
203
204
205ACPI_DRV_OBJS	+= acpi_drv.o acpi_video.o
206ACPINEX_OBJS	+= acpinex_drv.o acpinex_event.o
207
208CPUDRV_OBJS	+= \
209	cpudrv.o \
210	cpudrv_mach.o
211
212PPM_OBJS	+= ppm_subr.o ppm.o ppm_plat.o
213
214ACPIPPM_OBJS	+= acpippm.o acpisleep.o
215ACPIDEV_OBJS += acpidev_drv.o \
216	acpidev_scope.o acpidev_device.o \
217	acpidev_container.o \
218	acpidev_cpu.o \
219	acpidev_dr.o \
220	acpidev_memory.o \
221	acpidev_pci.o \
222	acpidev_resource.o \
223	acpidev_usbport.o \
224	acpidev_util.o
225
226DRMACH_ACPI_OBJS += drmach_acpi.o dr_util.o drmach_err.o
227
228DR_OBJS	+= dr.o dr_cpu.o dr_err.o dr_io.o dr_mem_acpi.o dr_quiesce.o dr_util.o
229
230ROOTNEX_OBJS += rootnex.o immu.o immu_dmar.o immu_dvma.o \
231		immu_intrmap.o immu_qinv.o immu_regs.o
232
233TZMON_OBJS	+= tzmon.o
234UPPC_OBJS += uppc.o psm_common.o
235XSVC_OBJS += xsvc.o
236AMD_IOMMU_OBJS +=	amd_iommu.o amd_iommu_impl.o amd_iommu_acpi.o \
237			amd_iommu_cmd.o amd_iommu_log.o amd_iommu_page_tables.o
238
239#
240#	Build up defines and paths.
241#
242ALL_DEFS	+= -Di86pc
243INC_PATH	+= -I$(UTSBASE)/i86pc -I$(SRC)/common
244INC_PATH	+= -I$(UTSBASE)/i86xpv -I$(UTSBASE)/common/xen
245
246#
247# Since the assym files are derived, the dependencies must be explicit for
248# all files including this file. (This is only actually required in the
249# instance when the .nse_depinfo file does not exist.)
250#
251
252ASSYM_DEPS      +=		\
253	copy.o			\
254	desctbls_asm.o		\
255	ddi_i86_asm.o		\
256	exception.o		\
257	fast_trap_asm.o		\
258	float.o			\
259	i86_subr.o		\
260	interrupt.o		\
261	lock_prim.o		\
262	locore.o		\
263	mpcore.o		\
264	sseblk.o		\
265	swtch.o			\
266	syscall_asm_amd64.o	\
267	kpti_trampolines.o	\
268	cpr_wakecode.o
269
270CPR_IMPL_OBJS	= cpr_impl.o	cpr_wakecode.o
271
272$(KDI_ASSYM_DEPS:%=$(OBJS_DIR)/%):	$(DSF_DIR)/$(OBJS_DIR)/kdi_assym.h
273
274#
275# Intel Integrated Memory Controller
276# (Sandy Bridge - Cascade Lake)
277#
278IMC_OBJS =	imc.o imc_decode.o imc_dump.o
279IMCSTUB_OBJS =	imcstub.o
280