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