blob: eb54a4febc584517c40187b732bfafbbffe5316b [file] [log] [blame]
Nico Huber3a9939b2016-04-27 15:56:14 +02001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2005-2008 coresystems GmbH
5 * (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
6 * Copyright (C) 2011-2013 Stefan Tauner
7 * Copyright (C) 2016 secunet Security Networks AG
8 * (Written by Nico Huber <nico.huber@secunet.com> for secunet)
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
Nico Huber3a9939b2016-04-27 15:56:14 +020019 */
20
21#ifndef __LAYOUT_H__
22#define __LAYOUT_H__ 1
23
24#include <stddef.h>
25#include <stdint.h>
26
27/* Types and macros regarding the maximum flash space size supported by generic code. */
28typedef uint32_t chipoff_t; /* Able to store any addressable offset within a supported flash memory. */
29typedef uint32_t chipsize_t; /* Able to store the number of bytes of any supported flash memory. */
30#define FL_MAX_CHIPOFF_BITS (24)
31#define FL_MAX_CHIPOFF ((chipoff_t)(1ULL<<FL_MAX_CHIPOFF_BITS)-1)
32#define PRIxCHIPOFF "06"PRIx32
33#define PRIuCHIPSIZE PRIu32
34
35#define MAX_ROMLAYOUT 32
36
37struct romentry {
38 chipoff_t start;
39 chipoff_t end;
40 bool included;
41 char name[256];
42};
43
44struct flashrom_layout {
45 /* entries store the entries specified in a layout file and associated run-time data */
46 struct romentry *entries;
47 /* the number of successfully parsed entries */
48 size_t num_entries;
49};
50
51struct single_layout {
52 struct flashrom_layout base;
53 struct romentry entry;
54};
55
Nico Huber305f4172013-06-14 11:55:26 +020056struct flashrom_layout *get_global_layout(void);
dhendrixbeaefe02017-09-03 18:06:53 -070057struct flashrom_flashctx;
58const struct flashrom_layout *get_layout(const struct flashrom_flashctx *const flashctx);
Nico Huber305f4172013-06-14 11:55:26 +020059
60int process_include_args(struct flashrom_layout *);
Nico Huber3a9939b2016-04-27 15:56:14 +020061
62#endif /* !__LAYOUT_H__ */