Nico Huber | 3a9939b | 2016-04-27 15:56:14 +0200 | [diff] [blame] | 1 | /* |
| 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 Huber | 3a9939b | 2016-04-27 15:56:14 +0200 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | #ifndef __LAYOUT_H__ |
| 22 | #define __LAYOUT_H__ 1 |
| 23 | |
| 24 | #include <stddef.h> |
| 25 | #include <stdint.h> |
Nico Huber | ae24b8b | 2019-01-20 11:33:07 +0100 | [diff] [blame^] | 26 | #include <stdbool.h> |
Nico Huber | 3a9939b | 2016-04-27 15:56:14 +0200 | [diff] [blame] | 27 | |
| 28 | /* Types and macros regarding the maximum flash space size supported by generic code. */ |
| 29 | typedef uint32_t chipoff_t; /* Able to store any addressable offset within a supported flash memory. */ |
| 30 | typedef uint32_t chipsize_t; /* Able to store the number of bytes of any supported flash memory. */ |
| 31 | #define FL_MAX_CHIPOFF_BITS (24) |
| 32 | #define FL_MAX_CHIPOFF ((chipoff_t)(1ULL<<FL_MAX_CHIPOFF_BITS)-1) |
| 33 | #define PRIxCHIPOFF "06"PRIx32 |
| 34 | #define PRIuCHIPSIZE PRIu32 |
| 35 | |
| 36 | #define MAX_ROMLAYOUT 32 |
| 37 | |
| 38 | struct romentry { |
| 39 | chipoff_t start; |
| 40 | chipoff_t end; |
| 41 | bool included; |
| 42 | char name[256]; |
| 43 | }; |
| 44 | |
| 45 | struct flashrom_layout { |
| 46 | /* entries store the entries specified in a layout file and associated run-time data */ |
| 47 | struct romentry *entries; |
| 48 | /* the number of successfully parsed entries */ |
| 49 | size_t num_entries; |
| 50 | }; |
| 51 | |
| 52 | struct single_layout { |
| 53 | struct flashrom_layout base; |
| 54 | struct romentry entry; |
| 55 | }; |
| 56 | |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 57 | struct flashrom_layout *get_global_layout(void); |
dhendrix | beaefe0 | 2017-09-03 18:06:53 -0700 | [diff] [blame] | 58 | struct flashrom_flashctx; |
| 59 | const struct flashrom_layout *get_layout(const struct flashrom_flashctx *const flashctx); |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 60 | |
| 61 | int process_include_args(struct flashrom_layout *); |
Nico Huber | 3a9939b | 2016-04-27 15:56:14 +0200 | [diff] [blame] | 62 | |
| 63 | #endif /* !__LAYOUT_H__ */ |