device/xhci: Add xHCI utility to enumerate capabilities
[coreboot.git] / src / device / Makefile.inc
blob2fae44ab244ac715384a6b241da26eefc705500f
1 ramstage-y += device.c
2 ramstage-y += root_device.c
3 ramstage-y += cpu_device.c
4 ramstage-y += device_util.c
5 ramstage-$(CONFIG_AZALIA_PLUGIN_SUPPORT) += azalia_device.c
6 ramstage-$(CONFIG_ARCH_RAMSTAGE_X86_32) += pnp_device.c
7 ramstage-$(CONFIG_ARCH_RAMSTAGE_X86_64) += pnp_device.c
8 ramstage-y += smbus_ops.c
10 ifeq ($(CONFIG_AZALIA_PLUGIN_SUPPORT),y)
11 ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c
12 endif
14 bootblock-y += device_const.c
15 postcar-y += device_const.c
16 smm-y += device_const.c
17 verstage-y += device_const.c
18 romstage-y += device_const.c
19 ramstage-y += device_const.c
21 ifeq ($(CONFIG_PCI),y)
22 bootblock-y += pci_early.c
23 verstage-y += pci_early.c
24 romstage-y += pci_early.c
25 postcar-y += pci_early.c
27 ramstage-y += pci_class.c
28 ramstage-y += pci_device.c
29 ramstage-y += pci_rom.c
31 bootblock-y += pci_ops.c
32 verstage-y += pci_ops.c
33 romstage-y += pci_ops.c
34 postcar-y += pci_ops.c
35 ramstage-y += pci_ops.c
36 smm-y += pci_ops.c
38 ramstage-$(CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT) += hypertransport.c
39 ramstage-$(CONFIG_PCIX_PLUGIN_SUPPORT) += pcix_device.c
40 ramstage-$(CONFIG_PCIEXP_PLUGIN_SUPPORT) += pciexp_device.c
41 ramstage-$(CONFIG_CARDBUS_PLUGIN_SUPPORT) += cardbus_device.c
42 endif
44 subdirs-y += oprom dram
46 bootblock-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
47 verstage-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
48 romstage-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
49 ramstage-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
51 bootblock-y += i2c.c
52 verstage-y += i2c.c
53 romstage-y += i2c.c
54 ramstage-y += i2c.c
55 ramstage-y += i2c_bus.c
57 bootblock-y += mmio.c
58 verstage-y += mmio.c
59 romstage-y += mmio.c
60 ramstage-y += mmio.c
62 ramstage-y += resource_allocator_common.c
63 ramstage-$(CONFIG_RESOURCE_ALLOCATOR_V3) += resource_allocator_v3.c
64 ramstage-$(CONFIG_RESOURCE_ALLOCATOR_V4) += resource_allocator_v4.c
66 ramstage-$(CONFIG_XHCI_UTILS) += xhci.c