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