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