blob: 5a407b294bb7fc8215221dd19e237feac0dc45b4 [file] [log] [blame]
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +03001#
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2011 - 2012 Advanced Micro Devices, Inc.
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; version 2 of the License.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010017# Foundation, Inc.
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +030018#
19
Bruce Griffithfa0ab8c2014-10-22 03:37:57 -060020subdirs-$(CONFIG_CPU_AMD_PI_00630F01) += 00630F01
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +030021subdirs-$(CONFIG_CPU_AMD_PI_00730F01) += 00730F01
WANG Siyuan597ee562015-05-20 14:36:06 +080022subdirs-$(CONFIG_CPU_AMD_PI_00660F01) += 00660F01
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +030023
24romstage-y += s3_resume.c
25ramstage-y += s3_resume.c
26ramstage-$(CONFIG_SPI_FLASH) += spi.c
27
28cpu_incs += $(src)/cpu/amd/pi/cache_as_ram.inc
29
30romstage-y += heapmanager.c
31ramstage-y += heapmanager.c
32ramstage-y += amd_late_init.c
33
34ifeq ($(CONFIG_HAVE_ACPI_RESUME), y)
35
36$(obj)/coreboot_s3nv.rom: $(obj)/config.h
37 echo " S3 NVRAM $(CONFIG_S3_DATA_POS) (S3 storage area)"
38 # force C locale, so cygwin awk doesn't try to interpret the 0xff below as UTF-8 (or worse)
39 printf %d $(CONFIG_S3_DATA_SIZE) | LC_ALL=C awk '{for (i=0; i<$$1; i++) {printf "%c", 255}}' > $@.tmp
40 mv $@.tmp $@
41
42cbfs-files-y += s3nv
43s3nv-file := $(obj)/coreboot_s3nv.rom
44s3nv-position := $(CONFIG_S3_DATA_POS)
45s3nv-type := raw
46
47endif # CONFIG_HAVE_ACPI_RESUME == y