blob: 42fe5dfd35301356b22484bb6bea796253c5f124 [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 Durbinc6588c52015-05-15 13:15:34 -050018void __attribute__((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
23int boot_device_ro_subregion(const struct region *sub,
24 struct region_device *subrd)
25{
26 const struct region_device *boot_dev;
27
Aaron Durbinaeb2e152015-10-13 14:26:55 -050028 /* Ensure boot device has been initialized at least once. */
29 boot_device_init();
30
Aaron Durbinc6588c52015-05-15 13:15:34 -050031 boot_dev = boot_device_ro();
32
33 if (boot_dev == NULL)
34 return -1;
35
36 return rdev_chain(subrd, boot_dev, region_offset(sub), region_sz(sub));
Gabe Black396b0722013-09-26 16:22:09 -070037}