81ec9c0500
In early stages (pre ramstage), we have two notions of devices. To access the hardware, "simple device" handles are used. These are plain numbers. To access the static information of the device tree, we use `struct device` pointers. This is referred to as DEVTREE_EARLY in the code. This file is about the latter and its name reflects that the tree remains unmodified. Change-Id: I31aeb118615e86026f7111f83a7866d4e7426170 Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/26293 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
ramstage-y += device.c
|
|
ramstage-y += root_device.c
|
|
ramstage-y += cpu_device.c
|
|
ramstage-y += device_util.c
|
|
ramstage-$(CONFIG_PCI) += pci_class.c
|
|
ramstage-$(CONFIG_PCI) += pci_device.c
|
|
ramstage-$(CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT) += hypertransport.c
|
|
ramstage-$(CONFIG_PCIX_PLUGIN_SUPPORT) += pcix_device.c
|
|
ramstage-$(CONFIG_PCIEXP_PLUGIN_SUPPORT) += pciexp_device.c
|
|
ramstage-$(CONFIG_CARDBUS_PLUGIN_SUPPORT) += cardbus_device.c
|
|
ramstage-$(CONFIG_AZALIA_PLUGIN_SUPPORT) += azalia_device.c
|
|
ramstage-$(CONFIG_ARCH_RAMSTAGE_X86_32) += pnp_device.c
|
|
ramstage-$(CONFIG_ARCH_RAMSTAGE_X86_64) += pnp_device.c
|
|
ramstage-$(CONFIG_PCI) += pci_ops.c
|
|
ramstage-$(CONFIG_MMCONF_SUPPORT) += pci_ops_mmconf.c
|
|
ramstage-$(CONFIG_PCI) += pci_early.c
|
|
ramstage-$(CONFIG_PCI) += pci_rom.c
|
|
ramstage-y += smbus_ops.c
|
|
|
|
ifeq ($(CONFIG_AZALIA_PLUGIN_SUPPORT),y)
|
|
ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c
|
|
endif
|
|
|
|
bootblock-y += device_const.c
|
|
postcar-y += device_const.c
|
|
smm-y += device_const.c
|
|
verstage-y += device_const.c
|
|
romstage-y += device_const.c
|
|
ramstage-y += device_const.c
|
|
romstage-$(CONFIG_PCI) += pci_early.c
|
|
|
|
subdirs-y += oprom dram
|
|
|
|
bootblock-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
|
|
verstage-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
|
|
romstage-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
|
|
ramstage-$(CONFIG_SOFTWARE_I2C) += software_i2c.c
|
|
|
|
bootblock-y += i2c.c
|
|
verstage-y += i2c.c
|
|
romstage-y += i2c.c
|
|
ramstage-y += i2c.c
|
|
ramstage-y += i2c_bus.c
|