blob: bdcfdc9b85189eca866f138c679a45c2db8ca5cb [file] [log] [blame]
Kyösti Mälkki7a955752020-01-07 12:18:24 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
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
15#include <arch/romstage.h>
16#include <cbmem.h>
Kyösti Mälkki7a955752020-01-07 12:18:24 +020017#include <southbridge/intel/i82371eb/i82371eb.h>
18#include <northbridge/intel/i440bx/raminit.h>
19
20void mainboard_romstage_entry(void)
21{
Kyösti Mälkki7a955752020-01-07 12:18:24 +020022 i82371eb_early_init();
23
24 sdram_initialize();
25 cbmem_initialize_empty();
26}