Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2012 secunet Security Networks AG |
| 5 | * (Written by Nico Huber <nico.huber@secunet.com> for secunet) |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | #ifndef __LIBFLASHROM_H__ |
| 19 | #define __LIBFLASHROM_H__ 1 |
| 20 | |
| 21 | #include <stdarg.h> |
| 22 | |
| 23 | int flashrom_init(int perform_selfcheck); |
| 24 | int flashrom_shutdown(void); |
| 25 | /** @ingroup flashrom-general */ |
Nico Huber | d152fb9 | 2017-06-19 12:57:10 +0200 | [diff] [blame] | 26 | enum flashrom_log_level { |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 27 | FLASHROM_MSG_ERROR = 0, |
Nico Huber | e8e7a80 | 2017-06-19 12:38:39 +0200 | [diff] [blame] | 28 | FLASHROM_MSG_WARN = 1, |
| 29 | FLASHROM_MSG_INFO = 2, |
| 30 | FLASHROM_MSG_DEBUG = 3, |
| 31 | FLASHROM_MSG_DEBUG2 = 4, |
| 32 | FLASHROM_MSG_SPEW = 5, |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 33 | }; |
| 34 | /** @ingroup flashrom-general */ |
| 35 | typedef int(flashrom_log_callback)(enum flashrom_log_level, const char *format, va_list); |
| 36 | void flashrom_set_log_callback(flashrom_log_callback *); |
| 37 | |
| 38 | struct flashrom_programmer; |
| 39 | int flashrom_programmer_init(struct flashrom_programmer **, const char *prog_name, const char *prog_params); |
| 40 | int flashrom_programmer_shutdown(struct flashrom_programmer *); |
| 41 | |
| 42 | struct flashrom_flashctx; |
| 43 | int flashrom_flash_probe(struct flashrom_flashctx **, const struct flashrom_programmer *, const char *chip_name); |
| 44 | size_t flashrom_flash_getsize(const struct flashrom_flashctx *); |
| 45 | int flashrom_flash_erase(struct flashrom_flashctx *); |
| 46 | void flashrom_flash_release(struct flashrom_flashctx *); |
| 47 | |
| 48 | /** @ingroup flashrom-flash */ |
| 49 | enum flashrom_flag { |
| 50 | FLASHROM_FLAG_FORCE, |
| 51 | FLASHROM_FLAG_FORCE_BOARDMISMATCH, |
| 52 | FLASHROM_FLAG_VERIFY_AFTER_WRITE, |
| 53 | FLASHROM_FLAG_VERIFY_WHOLE_CHIP, |
| 54 | }; |
| 55 | void flashrom_flag_set(struct flashrom_flashctx *, enum flashrom_flag, bool value); |
| 56 | bool flashrom_flag_get(const struct flashrom_flashctx *, enum flashrom_flag); |
| 57 | |
| 58 | int flashrom_image_read(struct flashrom_flashctx *, void *buffer, size_t buffer_len); |
Paul Kocialkowski | f701f34 | 2018-01-15 01:10:36 +0300 | [diff] [blame] | 59 | int flashrom_image_write(struct flashrom_flashctx *, void *buffer, size_t buffer_len, const void *refbuffer); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 60 | int flashrom_image_verify(struct flashrom_flashctx *, const void *buffer, size_t buffer_len); |
| 61 | |
| 62 | struct flashrom_layout; |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 63 | int flashrom_layout_read_from_ifd(struct flashrom_layout **, struct flashrom_flashctx *, const void *dump, size_t len); |
Arthur Heymans | c82900b | 2018-01-10 12:48:16 +0100 | [diff] [blame] | 64 | int flashrom_layout_read_fmap_from_rom(struct flashrom_layout **, |
| 65 | struct flashrom_flashctx *, off_t offset, size_t length); |
| 66 | int flashrom_layout_read_fmap_from_buffer(struct flashrom_layout **layout, |
| 67 | struct flashrom_flashctx *, const uint8_t *buf, size_t len); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 68 | int flashrom_layout_include_region(struct flashrom_layout *, const char *name); |
| 69 | void flashrom_layout_release(struct flashrom_layout *); |
| 70 | void flashrom_layout_set(struct flashrom_flashctx *, const struct flashrom_layout *); |
| 71 | |
Arthur Heymans | c82900b | 2018-01-10 12:48:16 +0100 | [diff] [blame] | 72 | #endif /* !__LIBFLASHROM_H__ */ |