soc/intel/common/acpi: Fix ACPI Namespace lookup failure, AE_ALREADY_EXISTS issue
[coreboot.git] / src / include / boot_device.h
blobcc70442e1ea30002b6a83b4b5a05722acbdf629a
1 /*
2 * This file is part of the coreboot project.
4 * Copyright 2015 Google Inc.
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.
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.
16 #ifndef _BOOT_DEVICE_H_
17 #define _BOOT_DEVICE_H_
19 #include <commonlib/region.h>
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.
27 /* Return the region_device for the read-only boot device. */
28 const struct region_device *boot_device_ro(void);
30 /* Return the region_device for the read-write boot device. */
31 const struct region_device *boot_device_rw(void);
34 * Create a sub-region of the read-only boot device.
35 * Returns 0 on success, < 0 on error.
37 int boot_device_ro_subregion(const struct region *sub,
38 struct region_device *subrd);
41 * Create a sub-region of the read-write boot device.
42 * Returns 0 on success, < 0 on error.
44 int boot_device_rw_subregion(const struct region *sub,
45 struct region_device *subrd);
48 * Initialize the boot device. This may be called multiple times within
49 * a stage so boot device implementations should account for this behavior.
50 **/
51 void boot_device_init(void);
53 #endif /* _BOOT_DEVICE_H_ */