mb/google/hatch/var/dratini: Update DPTF parameters
[coreboot.git] / src / mainboard / google / gale / romstage.c
blobc1b86541fb5cda686fcc95135b06c9211020b8cf
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
5 * Copyright 2014 Google Inc.
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.
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.
17 #include <cbmem.h>
18 #include <console/console.h>
19 #include <program_loading.h>
20 #include <soc/soc_services.h>
21 #include "mmu.h"
23 void main(void)
25 console_init();
26 initialize_dram();
28 /* Add dram mappings to mmu tables. */
29 setup_dram_mappings(DRAM_INITIALIZED);
31 cbmem_initialize_empty();
32 run_ramstage();