63626b1a4a
The common finalise code is used by bd82x6x, Lynx Point, and Ibex Peak. Lynx Point now benefits from being able to write-protect the flash chip. For Lynx Point, writing the SPI OPMENU now happens in ramstage, as done in bd82x6x. Tested on an ASRock H81M-HDS (Lynx Point). When write-protection is configured, flashrom reports all flash regions as read-only, and does not manage to alter the contents of the flash chip. Also tested on an ASUS P8H61-M LX (Cougar Point). Everything seems to work as before. Change-Id: I781082b1ed507b00815d1e85aec3e56ae5a4bef2 Signed-off-by: Tristan Corrick <tristan@corrick.kiwi> Reviewed-on: https://review.coreboot.org/c/29977 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
57 lines
1.6 KiB
Makefile
57 lines
1.6 KiB
Makefile
##
|
|
## 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.
|
|
##
|
|
|
|
ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_LYNXPOINT),y)
|
|
|
|
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
|
|
ramstage-y += usb_xhci.c
|
|
ramstage-y += me_9.x.c
|
|
ramstage-y += smbus.c
|
|
ramstage-y += hda_verb.c
|
|
ramstage-$(CONFIG_INTEL_LYNXPOINT_LP) += serialio.c
|
|
|
|
ifneq ($(CONFIG_VARIANT_DIR),)
|
|
ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/hda_verb.c
|
|
else
|
|
ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c
|
|
endif
|
|
|
|
ramstage-y += rcba.c
|
|
ramstage-y += me_status.c
|
|
ramstage-y += watchdog.c
|
|
ramstage-y += acpi.c
|
|
|
|
ramstage-$(CONFIG_ELOG) += elog.c
|
|
|
|
ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c pmutil.c
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c me_9.x.c pch.c
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += pmutil.c usb_ehci.c usb_xhci.c
|
|
|
|
romstage-y += early_usb.c early_smbus.c early_me.c me_status.c early_pch.c
|
|
romstage-y += early_spi.c rcba.c pmutil.c
|
|
|
|
ifeq ($(CONFIG_INTEL_LYNXPOINT_LP),y)
|
|
romstage-y += lp_gpio.c
|
|
ramstage-y += lp_gpio.c
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += lp_gpio.c
|
|
endif
|
|
|
|
endif
|