2009-08-12 17:56:17 +02:00
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_AMD8111) += amd8111
|
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_AMD8131) += amd8131
|
2011-12-03 10:30:26 +01:00
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_AMD8132) += amd8132
|
2009-08-12 17:56:17 +02:00
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_AMD8151) += amd8151
|
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_RS690) += rs690
|
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_SB600) += sb600
|
2010-03-16 02:59:28 +01:00
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_RS780) += rs780
|
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_SB700) += sb700
|
2011-01-20 05:45:48 +01:00
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_SB800) += sb800
|
2011-03-28 06:36:21 +02:00
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_SR5650) += sr5650
|
2009-08-12 17:56:17 +02:00
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_CS5530) += cs5530
|
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_CS5535) += cs5535
|
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_CS5536) += cs5536
|
2012-02-07 13:31:40 +01:00
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_CIMX_SB700) += cimx
|
2011-08-18 12:03:44 +02:00
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_CIMX_SB800) += cimx
|
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_CIMX_SB900) += cimx
|
2012-07-13 12:47:03 +02:00
|
|
|
subdirs-$(CONFIG_SOUTHBRIDGE_AMD_AGESA_HUDSON) += agesa
|
2009-08-12 17:00:51 +02:00
|
|
|
|
2012-04-19 06:42:51 +02:00
|
|
|
ifeq ($(CONFIG_HAVE_ACPI_RESUME), y)
|
|
|
|
ifeq ($(CONFIG_CPU_AMD_AGESA), y)
|
|
|
|
|
2012-08-27 11:45:01 +02:00
|
|
|
$(obj)/s3.rom: $(obj)/config.h
|
2012-08-05 05:46:23 +02:00
|
|
|
echo " S3 NVRAM $(CONFIG_S3_VOLATILE_POS) (S3 storage area)"
|
2012-07-03 18:07:04 +02:00
|
|
|
# force C locale, so cygwin awk doesn't try to interpret the 0xff below as UTF-8 (or worse)
|
2012-07-13 12:47:03 +02:00
|
|
|
LC_ALL=C awk 'BEGIN {for (i=0; i<32768; i++) {printf "%c", 255}}' > $@.tmp
|
2012-04-12 15:03:22 +02:00
|
|
|
mv $@.tmp $@
|
2012-04-05 07:18:49 +02:00
|
|
|
|
|
|
|
cbfs-files-y += s3nv
|
|
|
|
s3nv-file := $(obj)/s3.rom
|
2012-08-05 05:46:23 +02:00
|
|
|
s3nv-position := $(CONFIG_S3_VOLATILE_POS)
|
2012-04-05 07:18:49 +02:00
|
|
|
s3nv-type := raw
|
2012-04-19 06:42:51 +02:00
|
|
|
|
|
|
|
endif # CONFIG_CPU_AMD_AGESA == y
|
|
|
|
endif # CONFIG_HAVE_ACPI_RESUME == y
|