blob: 429a6d8710e954b094568e90c7158a1a317d853e [file] [log] [blame]
Gabe Black396b0722013-09-26 16:22:09 -07001/*
2 * This file is part of the coreboot project.
3 *
Aaron Durbinc6588c52015-05-15 13:15:34 -05004 * Copyright 2015 Google Inc.
Gabe Black396b0722013-09-26 16:22:09 -07005 *
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.
Gabe Black396b0722013-09-26 16:22:09 -070014 */
15
Aaron Durbinc6588c52015-05-15 13:15:34 -050016#include <boot_device.h>
Gabe Black396b0722013-09-26 16:22:09 -070017
Aaron Durbin64031672018-04-21 14:45:32 -060018void __weak boot_device_init(void)
Gabe Black396b0722013-09-26 16:22:09 -070019{
Aaron Durbinc6588c52015-05-15 13:15:34 -050020 /* Provide weak do-nothing init. */
21}
22
Rizwan Qureshi6d4c1f52018-10-26 16:54:42 +053023int __weak boot_device_wp_region(struct region_device *rd,
24 const enum bootdev_prot_type type)
25{
26 /* return a failure, make aware WP is not implemented */
27 return -1;
28}
29
Aaron Durbindcbccd62016-08-10 11:42:42 -050030static int boot_device_subregion(const struct region *sub,
31 struct region_device *subrd,
32 const struct region_device *parent)
33{
34 if (parent == NULL)
35 return -1;
36
37 return rdev_chain(subrd, parent, region_offset(sub), region_sz(sub));
38}
39
Aaron Durbinc6588c52015-05-15 13:15:34 -050040int boot_device_ro_subregion(const struct region *sub,
41 struct region_device *subrd)
42{
Aaron Durbinaeb2e152015-10-13 14:26:55 -050043 /* Ensure boot device has been initialized at least once. */
44 boot_device_init();
45
Aaron Durbindcbccd62016-08-10 11:42:42 -050046 return boot_device_subregion(sub, subrd, boot_device_ro());
47}
Aaron Durbinc6588c52015-05-15 13:15:34 -050048
Aaron Durbindcbccd62016-08-10 11:42:42 -050049int boot_device_rw_subregion(const struct region *sub,
50 struct region_device *subrd)
51{
52 /* Ensure boot device has been initialized at least once. */
53 boot_device_init();
Aaron Durbinc6588c52015-05-15 13:15:34 -050054
Aaron Durbindcbccd62016-08-10 11:42:42 -050055 return boot_device_subregion(sub, subrd, boot_device_rw());
Gabe Black396b0722013-09-26 16:22:09 -070056}