device: Consider fw_config probing in `is_dev_enabled()`
[coreboot.git] / src / device / Makefile.inc
blob808648d4b4333e1cb43f2bc101af1433cce0380b
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 += $(wildcard 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_PCIX_PLUGIN_SUPPORT) += pcix_device.c
39 ramstage-$(CONFIG_PCIEXP_PLUGIN_SUPPORT) += pciexp_device.c
40 ramstage-$(CONFIG_CARDBUS_PLUGIN_SUPPORT) += cardbus_device.c
41 endif
43 subdirs-y += oprom dram
45 bootblock-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
46 verstage-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
47 romstage-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
48 ramstage-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
50 bootblock-y += i2c.c
51 verstage-y += i2c.c
52 romstage-y += i2c.c
53 ramstage-y += i2c.c
54 ramstage-y += i2c_bus.c
56 bootblock-y += mmio.c
57 verstage-y += mmio.c
58 romstage-y += mmio.c
59 ramstage-y += mmio.c
61 ramstage-y += resource_allocator_common.c
62 ramstage-$(CONFIG_RESOURCE_ALLOCATOR_V3) += resource_allocator_v3.c
63 ramstage-$(CONFIG_RESOURCE_ALLOCATOR_V4) += resource_allocator_v4.c
65 ramstage-$(CONFIG_XHCI_UTILS) += xhci.c
67 ramstage-y += gpio.c