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 2008 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# ident "%Z%%M% %I% %E% SMI" 27# 28# This Makefile defines file modules in the directory uts/i86pc 29# and its children. These are the source files which are i86pc 30# "implementation architecture" dependent. 31# 32 33# 34# object lists 35# 36CORE_OBJS += \ 37 acpi_stubs.o \ 38 biosdisk.o \ 39 bios_call.o \ 40 cbe.o \ 41 cmi.o \ 42 cmi_hw.o \ 43 cms.o \ 44 confunix.o \ 45 cpuid.o \ 46 cpupm.o \ 47 dis_tables.o \ 48 ddi_impl.o \ 49 dtrace_subr.o \ 50 dvma.o \ 51 fpu_subr.o \ 52 fakebop.o \ 53 graphics.o \ 54 hardclk.o \ 55 hat_i86.o \ 56 hat_kdi.o \ 57 hment.o \ 58 hold_page.o \ 59 hrtimers.o \ 60 htable.o \ 61 i86_mmu.o \ 62 instr_size.o \ 63 intr.o \ 64 kboot_mmu.o \ 65 kdi_subr.o \ 66 kdi_idt.o \ 67 kdi_idthdl.o \ 68 kdi_asm.o \ 69 lgrpplat.o \ 70 mach_kdi.o \ 71 mach_sysconfig.o \ 72 machdep.o \ 73 mem_config_stubs.o \ 74 memnode.o \ 75 microcode.o \ 76 microfind.o \ 77 mlsetup.o \ 78 mp_call.o \ 79 mp_implfuncs.o \ 80 mp_machdep.o \ 81 mp_pc.o \ 82 mp_startup.o \ 83 memscrub.o \ 84 mpcore.o \ 85 notes.o \ 86 pci_bios.o \ 87 pci_cfgspace.o \ 88 pci_mech1.o \ 89 pci_mech2.o \ 90 pci_neptune.o \ 91 pci_orion.o \ 92 pmem.o \ 93 ppage.o \ 94 startup.o \ 95 timestamp.o \ 96 todpc_subr.o \ 97 trap.o \ 98 vm_machdep.o \ 99 x_call.o 100 101# 102# Add the SMBIOS subsystem object files directly to the list of objects 103# built into unix itself; this is all common code except for smb_dev.c. 104# 105CORE_OBJS += $(SMBIOS_OBJS) 106 107# 108# These get compiled twice: 109# - once in the dboot (direct boot) identity mapped code 110# - once for use during early startup in unix 111# 112BOOT_DRIVER_OBJS = \ 113 boot_console.o \ 114 boot_keyboard.o \ 115 boot_keyboard_table.o \ 116 boot_vga.o \ 117 boot_mmu.o 118 119CORE_OBJS += $(BOOT_DRIVER_OBJS) 120 121# 122# locore.o is special. It must be the first file relocated so that it 123# it is relocated just where its name implies. 124# 125SPECIAL_OBJS_32 += \ 126 locore.o \ 127 fast_trap_asm.o \ 128 interrupt.o \ 129 syscall_asm.o 130 131SPECIAL_OBJS_64 += \ 132 locore.o \ 133 fast_trap_asm.o \ 134 interrupt.o \ 135 syscall_asm_amd64.o 136 137SPECIAL_OBJS += $(SPECIAL_OBJS_$(CLASS)) 138 139# 140# Objects that get compiled into the identity mapped PT_LOAD section of unix 141# to handle the earliest part of booting. 142# 143DBOOT_OBJS_32 = 144 145DBOOT_OBJS_64 += dboot_elfload.o 146 147DBOOT_OBJS += \ 148 dboot_asm.o \ 149 dboot_grub.o \ 150 dboot_printf.o \ 151 dboot_startkern.o \ 152 memcpy.o \ 153 memset.o \ 154 muldiv.o \ 155 string.o \ 156 $(BOOT_DRIVER_OBJS) \ 157 $(DBOOT_OBJS_$(CLASS)) 158 159# 160# driver and misc modules 161# 162GFX_PRIVATE_OBJS += gfx_private.o gfxp_pci.o gfxp_segmap.o \ 163 gfxp_devmap.o gfxp_vgatext.o gfxp_vm.o vgasubr.o 164IOAT_OBJS += ioat.o ioat_rs.o ioat_ioctl.o ioat_chan.o 165ISANEXUS_OBJS += isa.o dma_engine.o i8237A.o 166PCI_E_MISC_OBJS += pcie.o pcie_fault.o 167PCI_E_NEXUS_OBJS += npe.o npe_misc.o 168PCI_E_NEXUS_OBJS += pci_common.o pci_kstats.o pci_tools.o 169PCINEXUS_OBJS += pci.o pci_common.o pci_kstats.o pci_tools.o 170PCPLUSMP_OBJS += apic.o psm_common.o apic_introp.o mp_platform_common.o 171 172ACPI_DRV_OBJS += acpi_drv.o 173include $(SRC)/common/mc/mc-amd/Makefile.mcamd 174MCAMD_OBJS += \ 175 $(MCAMD_CMN_OBJS) \ 176 mcamd_drv.o \ 177 mcamd_dimmcfg.o \ 178 mcamd_subr.o \ 179 mcamd_pcicfg.o 180 181CPUDRV_OBJS += cpudrv.o cpudrv_plat.o cpu_acpi.o speedstep.o pwrnow.o 182PPM_OBJS += ppm_subr.o ppm.o ppm_plat.o 183 184ACPIPPM_OBJS += acpippm.o acpisleep.o 185 186ROOTNEX_OBJS += rootnex.o 187TZMON_OBJS += tzmon.o 188UPPC_OBJS += uppc.o psm_common.o 189XSVC_OBJS += xsvc.o 190 191# 192# Build up defines and paths. 193# 194ALL_DEFS += -Di86pc 195INC_PATH += -I$(UTSBASE)/i86pc -I$(SRC)/common 196 197# 198# Since the assym files are derived, the dependencies must be explicit for 199# all files including this file. (This is only actually required in the 200# instance when the .nse_depinfo file does not exist.) It may seem that 201# the lint targets should also have a similar dependency, but they don't 202# since only C headers are included when #defined(__lint) is true. 203# 204 205ASSYM_DEPS += \ 206 copy.o \ 207 desctbls_asm.o \ 208 ddi_i86_asm.o \ 209 exception.o \ 210 fast_trap_asm.o \ 211 float.o \ 212 i86_subr.o \ 213 interrupt.o \ 214 lock_prim.o \ 215 locore.o \ 216 mpcore.o \ 217 sseblk.o \ 218 swtch.o \ 219 syscall_asm.o \ 220 syscall_asm_amd64.o \ 221 cpr_wakecode.o 222 223CPR_IMPL_OBJS = cpr_impl.o cpr_wakecode.o 224 225$(KDI_ASSYM_DEPS:%=$(OBJS_DIR)/%): $(DSF_DIR)/$(OBJS_DIR)/kdi_assym.h 226 227ASSYM_DEPS += kdi_asm.o 228