blob: 1acbef4855bf8429a75b53f9611be710b4ac569f [file] [log] [blame]
Vadim Bendebury0b341b32014-04-23 11:09:44 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Vadim Bendebury0b341b32014-04-23 11:09:44 -070014 */
Stefan Reinauer52db0b92012-12-07 17:15:04 -080015
Julius Werner86fc11d2015-10-09 13:37:58 -070016#ifndef __BOOTBLOCK_COMMON_H
17#define __BOOTBLOCK_COMMON_H
Vadim Bendebury0b341b32014-04-23 11:09:44 -070018
19/* These are defined as weak no-ops that can be overridden by mainboard/SoC. */
Julius Wernerf1e32102014-11-25 13:22:20 -080020void bootblock_mainboard_early_init(void);
Gabe Black8b685392013-09-29 03:02:55 -070021void bootblock_mainboard_init(void);
Vadim Bendebury0b341b32014-04-23 11:09:44 -070022void bootblock_soc_init(void);
23
Julius Werner86fc11d2015-10-09 13:37:58 -070024#endif /* __BOOTBLOCK_COMMON_H */