2012-10-30 15:03:43 +01:00
|
|
|
##
|
|
|
|
## This file is part of the coreboot project.
|
|
|
|
##
|
|
|
|
## Copyright (C) 2010 Google Inc.
|
|
|
|
##
|
|
|
|
## This program is free software; you can redistribute it and/or modify
|
|
|
|
## it under the terms of the GNU General Public License as published by
|
|
|
|
## the Free Software Foundation; version 2 of the License.
|
|
|
|
##
|
|
|
|
## This program is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU General Public License
|
|
|
|
## along with this program; if not, write to the Free Software
|
|
|
|
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
##
|
|
|
|
|
|
|
|
# Run an intermediate step when producing coreboot.rom
|
|
|
|
# that adds additional components to the final firmware
|
|
|
|
# image outside of CBFS
|
|
|
|
# FIXME, uncomment as soon as we have ME firmware in the blobs repo
|
|
|
|
# INTERMEDIATE:=lynxpoint_add_me
|
|
|
|
|
|
|
|
ramstage-y += pch.c
|
|
|
|
ramstage-y += azalia.c
|
|
|
|
ramstage-y += lpc.c
|
|
|
|
ramstage-y += pci.c
|
|
|
|
ramstage-y += pcie.c
|
|
|
|
ramstage-y += sata.c
|
|
|
|
ramstage-y += usb_ehci.c
|
2013-05-30 00:27:55 +02:00
|
|
|
ramstage-y += usb_xhci.c
|
2012-10-30 15:03:43 +01:00
|
|
|
ramstage-y += me_9.x.c
|
|
|
|
ramstage-y += smbus.c
|
2013-03-22 19:21:14 +01:00
|
|
|
ramstage-$(CONFIG_INTEL_LYNXPOINT_LP) += serialio.c
|
2012-10-30 15:03:43 +01:00
|
|
|
|
2013-02-15 22:52:28 +01:00
|
|
|
ramstage-y += rcba.c
|
2012-10-30 15:03:43 +01:00
|
|
|
ramstage-y += me_status.c
|
|
|
|
ramstage-y += reset.c
|
|
|
|
ramstage-y += watchdog.c
|
|
|
|
ramstage-y += acpi.c
|
lynxpoint: Add cbfs_load_payload() implementation
SPI accesses can be slow depending on the setup and the access pattern.
The current SPI hardware setup to cache and prefetch. The alternative
cbfs_load_payload() function takes advantage of the caching in the CPU
because the ROM is cached as write protected as well as the SPI's
hardware's caching/prefetching implementation. The CPU will fetch
consecutive aligned cachelines which will hit the ROM as
cacheline-aligned addresses. Once the payload is mirrored into RAM the
segment loading can take place by reading RAM instead of ROM.
With the alternative cbfs_load_payload() the boot time on a baskingridge
board saves ~100ms. This savings is observed using cbmem.py after
performing warm reboots and looking at TS_SELFBOOT_JUMP (99) entries.
This is booting with a depthcharge payload whose payload file fits
within the SMM_DEFAULT_SIZE (0x10000 bytes).
Datapoints with TS_LOAD_PAYLOAD (90) & TS_SELFBOOT_JUMP (99) cbmem entries:
Baseline Alt
-------- --------
90:3,859,310 (473) 90:3,863,647 (454)
99:3,989,578 (130,268) 99:3,888,709 (25,062)
90:3,899,450 (477) 90:3,860,926 (463)
99:4,029,459 (130,008) 99:3,890,583 (29,657)
90:3,834,600 (466) 90:3,890,564 (465)
99:3,964,535 (129,934) 99:3,920,213 (29,649)
Booted baskingridge many times and observed 100ms reduction in
TS_SELFBOOT_JUMP times (time to load payload).
Change-Id: I27b2dec59ecd469a4906b4179b39928e9201db81
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/2783
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
2013-01-22 20:54:12 +01:00
|
|
|
ramstage-$(CONFIG_ALT_CBFS_LOAD_PAYLOAD) += spi_loading.c
|
2012-10-30 15:03:43 +01:00
|
|
|
|
|
|
|
ramstage-$(CONFIG_ELOG) += elog.c
|
|
|
|
ramstage-y += spi.c
|
|
|
|
smm-$(CONFIG_SPI_FLASH_SMM) += spi.c
|
|
|
|
|
2013-03-09 01:01:44 +01:00
|
|
|
ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c pmutil.c
|
2013-05-01 20:30:24 +02:00
|
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c finalize.c pch.c
|
2013-03-09 01:01:44 +01:00
|
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += pmutil.c
|
2012-10-30 15:03:43 +01:00
|
|
|
|
2012-12-19 18:31:17 +01:00
|
|
|
romstage-y += early_usb.c early_smbus.c early_me.c me_status.c early_pch.c
|
2013-02-15 22:52:28 +01:00
|
|
|
romstage-y += reset.c early_spi.c rcba.c
|
2012-10-30 15:03:43 +01:00
|
|
|
|
2012-12-17 20:29:10 +01:00
|
|
|
ifeq ($(CONFIG_INTEL_LYNXPOINT_LP),y)
|
|
|
|
romstage-y += lp_gpio.c
|
|
|
|
ramstage-y += lp_gpio.c
|
|
|
|
else
|
|
|
|
romstage-y += gpio.c
|
|
|
|
ramstage-y += gpio.c
|
|
|
|
endif
|
|
|
|
|
2012-10-30 15:03:43 +01:00
|
|
|
lynxpoint_add_me: $(obj)/coreboot.pre $(IFDTOOL)
|
|
|
|
printf " DD Adding Intel Firmware Descriptor\n"
|
2013-06-13 15:07:02 +02:00
|
|
|
dd if=$(CONFIG_IFD_BIN_PATH) \
|
2012-10-30 15:03:43 +01:00
|
|
|
of=$(obj)/coreboot.pre conv=notrunc >/dev/null 2>&1
|
|
|
|
printf " IFDTOOL me.bin -> coreboot.pre\n"
|
|
|
|
$(objutil)/ifdtool/ifdtool \
|
2013-06-13 15:07:02 +02:00
|
|
|
-i ME:$(CONFIG_ME_BIN_PATH) \
|
2012-10-30 15:03:43 +01:00
|
|
|
$(obj)/coreboot.pre
|
|
|
|
mv $(obj)/coreboot.pre.new $(obj)/coreboot.pre
|
|
|
|
ifeq ($(CONFIG_LOCK_MANAGEMENT_ENGINE),y)
|
|
|
|
printf " IFDTOOL Locking Management Engine\n"
|
|
|
|
$(objutil)/ifdtool/ifdtool -l $(obj)/coreboot.pre
|
|
|
|
mv $(obj)/coreboot.pre.new $(obj)/coreboot.pre
|
|
|
|
else
|
|
|
|
printf " IFDTOOL Unlocking Management Engine\n"
|
|
|
|
$(objutil)/ifdtool/ifdtool -u $(obj)/coreboot.pre
|
|
|
|
mv $(obj)/coreboot.pre.new $(obj)/coreboot.pre
|
|
|
|
endif
|
|
|
|
|
|
|
|
PHONY += lynxpoint_add_me
|