blob: 38c95d26cbab8054f6d51ec54ead16b3eb633c69 [file] [log] [blame]
Nico Huber454f6132012-12-10 13:34:10 +00001/*
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 Huber454f6132012-12-10 13:34:10 +000016 */
17
18#ifndef __LIBFLASHROM_H__
19#define __LIBFLASHROM_H__ 1
20
Nico Hubere7cbfae2018-12-10 15:21:40 +010021#include <sys/types.h>
22#include <stddef.h>
Nico Huber454f6132012-12-10 13:34:10 +000023#include <stdarg.h>
24
25int flashrom_init(int perform_selfcheck);
26int flashrom_shutdown(void);
27/** @ingroup flashrom-general */
Nico Huberd152fb92017-06-19 12:57:10 +020028enum flashrom_log_level {
Nico Huber454f6132012-12-10 13:34:10 +000029 FLASHROM_MSG_ERROR = 0,
Nico Hubere8e7a802017-06-19 12:38:39 +020030 FLASHROM_MSG_WARN = 1,
31 FLASHROM_MSG_INFO = 2,
32 FLASHROM_MSG_DEBUG = 3,
33 FLASHROM_MSG_DEBUG2 = 4,
34 FLASHROM_MSG_SPEW = 5,
Nico Huber454f6132012-12-10 13:34:10 +000035};
36/** @ingroup flashrom-general */
37typedef int(flashrom_log_callback)(enum flashrom_log_level, const char *format, va_list);
38void flashrom_set_log_callback(flashrom_log_callback *);
39
40struct flashrom_programmer;
41int flashrom_programmer_init(struct flashrom_programmer **, const char *prog_name, const char *prog_params);
42int flashrom_programmer_shutdown(struct flashrom_programmer *);
43
44struct flashrom_flashctx;
45int flashrom_flash_probe(struct flashrom_flashctx **, const struct flashrom_programmer *, const char *chip_name);
46size_t flashrom_flash_getsize(const struct flashrom_flashctx *);
47int flashrom_flash_erase(struct flashrom_flashctx *);
48void flashrom_flash_release(struct flashrom_flashctx *);
49
50/** @ingroup flashrom-flash */
51enum flashrom_flag {
52 FLASHROM_FLAG_FORCE,
53 FLASHROM_FLAG_FORCE_BOARDMISMATCH,
54 FLASHROM_FLAG_VERIFY_AFTER_WRITE,
55 FLASHROM_FLAG_VERIFY_WHOLE_CHIP,
56};
57void flashrom_flag_set(struct flashrom_flashctx *, enum flashrom_flag, bool value);
58bool flashrom_flag_get(const struct flashrom_flashctx *, enum flashrom_flag);
59
60int flashrom_image_read(struct flashrom_flashctx *, void *buffer, size_t buffer_len);
Paul Kocialkowskif701f342018-01-15 01:10:36 +030061int flashrom_image_write(struct flashrom_flashctx *, void *buffer, size_t buffer_len, const void *refbuffer);
Nico Huber454f6132012-12-10 13:34:10 +000062int flashrom_image_verify(struct flashrom_flashctx *, const void *buffer, size_t buffer_len);
63
64struct flashrom_layout;
Nico Huber305f4172013-06-14 11:55:26 +020065int flashrom_layout_read_from_ifd(struct flashrom_layout **, struct flashrom_flashctx *, const void *dump, size_t len);
Arthur Heymansc82900b2018-01-10 12:48:16 +010066int flashrom_layout_read_fmap_from_rom(struct flashrom_layout **,
67 struct flashrom_flashctx *, off_t offset, size_t length);
68int flashrom_layout_read_fmap_from_buffer(struct flashrom_layout **layout,
69 struct flashrom_flashctx *, const uint8_t *buf, size_t len);
Nico Huber454f6132012-12-10 13:34:10 +000070int flashrom_layout_include_region(struct flashrom_layout *, const char *name);
71void flashrom_layout_release(struct flashrom_layout *);
72void flashrom_layout_set(struct flashrom_flashctx *, const struct flashrom_layout *);
73
Arthur Heymansc82900b2018-01-10 12:48:16 +010074#endif /* !__LIBFLASHROM_H__ */