1 # $NetBSD: files.x86,v 1.63 2011/02/27 17:10:33 jruoho Exp $ 2 3 # options for MP configuration through the MP spec 4 defflag opt_mpbios.h MPBIOS MPVERBOSE MPDEBUG MPBIOS_SCANPCI 5 6 # MTRR support 7 defflag MTRR 8 9 # Interrupt debug 10 defflag opt_intrdebug.h INTRDEBUG 11 12 # PCI fixup options 13 defflag opt_pcifixup.h PCI_ADDR_FIXUP PCI_BUS_FIXUP 14 PCI_INTR_FIXUP PCI_INTR_FIXUP_FORCE 15 16 # Pentium 4+ Thermal Monitor ODCM (aka On Demand Clock Modulation) 17 defflag opt_intel_odcm.h INTEL_ONDEMAND_CLOCKMOD 18 19 # To be able to test for NetBSD/xen in shared files 20 defflag opt_xen.h DO_NOT_DEFINE 21 22 define cpubus { [apid = -1] } 23 define cpufeaturebus {} 24 define ioapicbus { [apid = -1] } 25 define ipmibus {} 26 27 # 28 # CPU features 29 # 30 device cpu: cpufeaturebus 31 attach cpu at cpubus 32 file arch/x86/x86/cpu.c cpu 33 34 device acpicpu 35 attach acpicpu at cpufeaturebus 36 file dev/acpi/acpi_cpu.c acpi & acpicpu 37 file dev/acpi/acpi_cpu_cstate.c acpi & acpicpu 38 file dev/acpi/acpi_cpu_pstate.c acpi & acpicpu 39 file dev/acpi/acpi_cpu_tstate.c acpi & acpicpu 40 file arch/x86/acpi/acpi_cpu_md.c acpi & acpicpu 41 42 device coretemp: sysmon_envsys 43 attach coretemp at cpufeaturebus 44 file arch/x86/x86/coretemp.c coretemp 45 46 device est 47 attach est at cpufeaturebus 48 file arch/x86/x86/est.c est 49 file arch/x86/x86/intel_busclock.c est 50 51 device padlock: opencrypto 52 attach padlock at cpufeaturebus 53 file arch/x86/x86/via_padlock.c padlock 54 55 device powernow 56 attach powernow at cpufeaturebus 57 file arch/x86/x86/powernow.c powernow 58 59 device viac7temp: sysmon_envsys 60 attach viac7temp at cpufeaturebus 61 file arch/x86/x86/viac7temp.c viac7temp 62 63 file arch/x86/x86/apic.c ioapic | lapic 64 file arch/x86/x86/bus_dma.c 65 file arch/x86/x86/bus_space.c 66 file arch/x86/x86/consinit.c 67 file arch/x86/x86/core_machdep.c coredump 68 file arch/x86/x86/cpu_topology.c 69 file arch/x86/x86/errata.c 70 file arch/x86/x86/genfb_machdep.c 71 file arch/x86/x86/identcpu.c 72 file arch/x86/x86/i8259.c 73 file arch/x86/x86/intr.c 74 file arch/x86/x86/nmi.c 75 file arch/x86/x86/idt.c 76 file arch/x86/x86/ipi.c 77 file arch/x86/x86/mtrr_i686.c mtrr 78 file arch/x86/x86/patch.c 79 file arch/x86/x86/platform.c 80 file arch/x86/x86/pmap.c 81 file arch/x86/x86/procfs_machdep.c procfs 82 file arch/x86/x86/sys_machdep.c 83 file arch/x86/x86/syscall.c 84 file arch/x86/x86/vm_machdep.c 85 file arch/x86/x86/x86_autoconf.c 86 file arch/x86/x86/x86_machdep.c 87 88 define lapic 89 file arch/x86/x86/lapic.c lapic needs-flag 90 91 device ioapic: lapic 92 attach ioapic at ioapicbus 93 file arch/x86/x86/ioapic.c ioapic needs-flag 94 95 # MP configuration using Intel SMP specification 1.4 96 file arch/x86/x86/mpbios.c mpbios 97 98 # MP configuration using either ACPI or Intel SMP specification 1.4 99 file arch/x86/x86/mp.c acpi | mpbios 100 101 # MP configuration using ACPI 102 file arch/x86/x86/mpacpi.c acpi 103 104 file arch/x86/x86/acpi_machdep.c acpi 105 106 file arch/x86/acpi/acpi_wakeup.c acpi 107 108 file arch/x86/isa/isa_machdep.c isa 109 110 # Intel On Demand Clock Modulation 111 file arch/x86/x86/iclockmod.c intel_ondemand_clockmod 112 113 # IPMI device 114 device ipmi: sysmon_envsys, sysmon_wdog 115 attach ipmi at ipmibus 116 file arch/x86/x86/ipmi.c ipmi needs-flag 117 118 file arch/x86/x86/vga_post.c vga_post 119 120 file arch/x86/x86/tprof_pmi.c tprof_pmi 121 file arch/x86/x86/tprof_amdpmi.c tprof_amdpmi 122 123 file arch/x86/pci/pci_machdep.c pci 124 file arch/x86/pci/pci_intr_machdep.c pci 125 126 file arch/x86/pci/pciide_machdep.c pciide_common 127 128 file arch/x86/pci/pci_bus_fixup.c pci_bus_fixup 129 file arch/x86/pci/pci_addr_fixup.c pci_addr_fixup 130