blob: cc70442e1ea30002b6a83b4b5a05722acbdf629a [file] [log] [blame]
Aaron Durbinc6588c52015-05-15 13:15:34 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2015 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.
Aaron Durbinc6588c52015-05-15 13:15:34 -050014 */
15
16#ifndef _BOOT_DEVICE_H_
17#define _BOOT_DEVICE_H_
18
Aaron Durbindc9f5cd2015-09-08 13:34:43 -050019#include <commonlib/region.h>
Aaron Durbinc6588c52015-05-15 13:15:34 -050020
Aaron Durbindcbccd62016-08-10 11:42:42 -050021/*
22 * Please note that the read-only boot device may not be coherent with
23 * the read-write boot device. Thus, mixing mmap() and writeat() is
24 * most likely not to work so don't rely on such semantics.
25 */
26
Aaron Durbinc6588c52015-05-15 13:15:34 -050027/* Return the region_device for the read-only boot device. */
28const struct region_device *boot_device_ro(void);
29
Aaron Durbindcbccd62016-08-10 11:42:42 -050030/* Return the region_device for the read-write boot device. */
31const struct region_device *boot_device_rw(void);
32
Aaron Durbinc6588c52015-05-15 13:15:34 -050033/*
34 * Create a sub-region of the read-only boot device.
35 * Returns 0 on success, < 0 on error.
36 */
37int boot_device_ro_subregion(const struct region *sub,
38 struct region_device *subrd);
39
40/*
Aaron Durbindcbccd62016-08-10 11:42:42 -050041 * Create a sub-region of the read-write boot device.
42 * Returns 0 on success, < 0 on error.
43 */
44int boot_device_rw_subregion(const struct region *sub,
45 struct region_device *subrd);
46
47/*
Aaron Durbinc6588c52015-05-15 13:15:34 -050048 * Initialize the boot device. This may be called multiple times within
49 * a stage so boot device implementations should account for this behavior.
50 **/
51void boot_device_init(void);
52
53#endif /* _BOOT_DEVICE_H_ */