blob: 410a30824993d4bfe621eef53ae4a454e1816e49 [file] [log] [blame]
Martin Roth58562402015-10-11 10:36:26 +02001#
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2010 Google Inc.
5# Copyright (C) 2013-2014 Sage Electronic Engineering, LLC.
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; version 2 of the License.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
Martin Roth58562402015-10-11 10:36:26 +020016
17ifeq ($(CONFIG_NORTHBRIDGE_INTEL_FSP_RANGELEY),y)
18
19subdirs-y += fsp
20ramstage-y += northbridge.c
21ramstage-y += raminit.c
22
23ramstage-y += acpi.c
24ramstage-y += port_access.c
25
26romstage-y += raminit.c
27romstage-y += ../../../arch/x86/walkcbfs.S
28romstage-y += port_access.c
29
30smm-$(CONFIG_HAVE_SMI_HANDLER) += udelay.c
31
32CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)
33
34CPPFLAGS_common += -I$(src)/northbridge/intel/fsp_rangeley/
35CPPFLAGS_common += -I$(src)/northbridge/intel/fsp_rangeley/fsp
36
37endif