blob: 2b633944bc4535e20f9b50145ad4efe7fb64c49d [file] [log] [blame]
Damien Zammit62477932015-05-03 21:34:38 +10001#
2# This file is part of the coreboot project.
3#
Damien Zammit62477932015-05-03 21:34:38 +10004#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14
15ifeq ($(CONFIG_NORTHBRIDGE_INTEL_PINEVIEW),y)
16
Arthur Heymans82882282019-05-25 19:06:43 +020017bootblock-y += ../../../cpu/x86/early_reset.S
Arthur Heymans99e578e2019-01-15 20:14:33 +010018bootblock-y += bootblock.c
19
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030020ramstage-y += memmap.c
Damien Zammitf7060f12015-11-14 00:59:21 +110021ramstage-y += northbridge.c
Damien Zammit51fdb922016-01-18 18:34:52 +110022ramstage-y += gma.c
Damien Zammit62477932015-05-03 21:34:38 +100023ramstage-y += acpi.c
24
Arthur Heymansc6ff1ac2019-01-11 16:06:19 +010025romstage-y += romstage.c
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030026romstage-y += memmap.c
Damien Zammit003d15c2015-11-20 17:17:51 +110027romstage-y += raminit.c
Damien Zammitf7060f12015-11-14 00:59:21 +110028romstage-y += early_init.c
Damien Zammit62477932015-05-03 21:34:38 +100029
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030030postcar-y += memmap.c
Arthur Heymansaa7cf552018-06-03 10:44:55 +020031
Damien Zammit62477932015-05-03 21:34:38 +100032endif