blob: e575bbf3fc957545a048cd3159c9d7297cba9a88 [file] [log] [blame]
Aaron Durbin0424c952015-03-28 23:56:22 -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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc.
18 */
19
20#ifndef _FMAP_H_
21#define _FMAP_H_
22
23#include <region.h>
24
25/* Locate the named area in the fmap and fill in a region device representing
26 * that area. The region is a sub-region of the readonly boot media. Return
27 * 0 on success, < 0 on error. */
28int fmap_locate_area_as_rdev(const char *name, struct region_device *area);
29
30/* Locate the named area in the fmap and fill in a region with the
31 * offset and size of that area within the boot media. Return 0 on success,
32 * < 0 on error. */
33int fmap_locate_area(const char *name, struct region *r);
34
35#endif