blob: 603dccf7d01e3bae4cfe49acc1a0f75cef82d9d1 [file] [log] [blame]
Nico Huber454f6132012-12-10 13:34:10 +00001/*
2 * This file is part of the flashrom project.
3 *
Nikolai Artemievda1c8342021-10-21 00:58:12 +11004 * Copyright (C) 2010 Google Inc.
Nico Huber454f6132012-12-10 13:34:10 +00005 * Copyright (C) 2012 secunet Security Networks AG
6 * (Written by Nico Huber <nico.huber@secunet.com> for secunet)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Nico Huber454f6132012-12-10 13:34:10 +000017 */
18
19#ifndef __LIBFLASHROM_H__
20#define __LIBFLASHROM_H__ 1
21
Nico Hubere7cbfae2018-12-10 15:21:40 +010022#include <sys/types.h>
23#include <stddef.h>
Mario Limonciello40f07572019-08-29 14:19:21 -050024#include <stdbool.h>
25#include <stdint.h>
Nico Huber454f6132012-12-10 13:34:10 +000026#include <stdarg.h>
27
28int flashrom_init(int perform_selfcheck);
29int flashrom_shutdown(void);
30/** @ingroup flashrom-general */
Nico Huberd152fb92017-06-19 12:57:10 +020031enum flashrom_log_level {
Nico Huber454f6132012-12-10 13:34:10 +000032 FLASHROM_MSG_ERROR = 0,
Nico Hubere8e7a802017-06-19 12:38:39 +020033 FLASHROM_MSG_WARN = 1,
34 FLASHROM_MSG_INFO = 2,
35 FLASHROM_MSG_DEBUG = 3,
36 FLASHROM_MSG_DEBUG2 = 4,
37 FLASHROM_MSG_SPEW = 5,
Nico Huber454f6132012-12-10 13:34:10 +000038};
39/** @ingroup flashrom-general */
40typedef int(flashrom_log_callback)(enum flashrom_log_level, const char *format, va_list);
41void flashrom_set_log_callback(flashrom_log_callback *);
42
Artur Raglis71b706f2019-06-05 19:24:52 +020043/** @ingroup flashrom-prog */
Nico Huber454f6132012-12-10 13:34:10 +000044struct flashrom_programmer;
45int flashrom_programmer_init(struct flashrom_programmer **, const char *prog_name, const char *prog_params);
46int flashrom_programmer_shutdown(struct flashrom_programmer *);
47
48struct flashrom_flashctx;
49int flashrom_flash_probe(struct flashrom_flashctx **, const struct flashrom_programmer *, const char *chip_name);
50size_t flashrom_flash_getsize(const struct flashrom_flashctx *);
51int flashrom_flash_erase(struct flashrom_flashctx *);
52void flashrom_flash_release(struct flashrom_flashctx *);
53
54/** @ingroup flashrom-flash */
55enum flashrom_flag {
56 FLASHROM_FLAG_FORCE,
57 FLASHROM_FLAG_FORCE_BOARDMISMATCH,
58 FLASHROM_FLAG_VERIFY_AFTER_WRITE,
59 FLASHROM_FLAG_VERIFY_WHOLE_CHIP,
60};
61void flashrom_flag_set(struct flashrom_flashctx *, enum flashrom_flag, bool value);
62bool flashrom_flag_get(const struct flashrom_flashctx *, enum flashrom_flag);
63
64int flashrom_image_read(struct flashrom_flashctx *, void *buffer, size_t buffer_len);
Paul Kocialkowskif701f342018-01-15 01:10:36 +030065int flashrom_image_write(struct flashrom_flashctx *, void *buffer, size_t buffer_len, const void *refbuffer);
Nico Huber454f6132012-12-10 13:34:10 +000066int flashrom_image_verify(struct flashrom_flashctx *, const void *buffer, size_t buffer_len);
67
68struct flashrom_layout;
Nico Huber305f4172013-06-14 11:55:26 +020069int flashrom_layout_read_from_ifd(struct flashrom_layout **, struct flashrom_flashctx *, const void *dump, size_t len);
Arthur Heymansc82900b2018-01-10 12:48:16 +010070int flashrom_layout_read_fmap_from_rom(struct flashrom_layout **,
Julius Werner8f0db7d2022-02-14 17:07:39 -080071 struct flashrom_flashctx *, size_t offset, size_t length);
Arthur Heymansc82900b2018-01-10 12:48:16 +010072int flashrom_layout_read_fmap_from_buffer(struct flashrom_layout **layout,
73 struct flashrom_flashctx *, const uint8_t *buf, size_t len);
Nico Huber454f6132012-12-10 13:34:10 +000074int flashrom_layout_include_region(struct flashrom_layout *, const char *name);
75void flashrom_layout_release(struct flashrom_layout *);
76void flashrom_layout_set(struct flashrom_flashctx *, const struct flashrom_layout *);
77
Nikolai Artemievda1c8342021-10-21 00:58:12 +110078/** @ingroup flashrom-wp */
79enum flashrom_wp_result {
80 FLASHROM_WP_OK = 0,
81 FLASHROM_WP_ERR_CHIP_UNSUPPORTED = 1,
82 FLASHROM_WP_ERR_OTHER = 2,
83 FLASHROM_WP_ERR_READ_FAILED = 3,
84 FLASHROM_WP_ERR_WRITE_FAILED = 4,
Nikolai Artemievb6112a52021-10-21 02:28:23 +110085 FLASHROM_WP_ERR_VERIFY_FAILED = 5,
Nikolai Artemiev9e1afb72021-10-21 02:29:22 +110086 FLASHROM_WP_ERR_RANGE_UNSUPPORTED = 6,
87 FLASHROM_WP_ERR_MODE_UNSUPPORTED = 7,
Sergii Dmytruk081ffba2022-08-17 18:29:10 +030088 FLASHROM_WP_ERR_RANGE_LIST_UNAVAILABLE = 8,
89 FLASHROM_WP_ERR_UNSUPPORTED_STATE = 9,
Nikolai Artemievda1c8342021-10-21 00:58:12 +110090};
91
92enum flashrom_wp_mode {
93 FLASHROM_WP_MODE_DISABLED,
94 FLASHROM_WP_MODE_HARDWARE,
95 FLASHROM_WP_MODE_POWER_CYCLE,
96 FLASHROM_WP_MODE_PERMANENT
97};
98struct flashrom_wp_cfg;
Nikolai Artemiev077c0d12021-10-21 01:50:15 +110099struct flashrom_wp_ranges;
Nikolai Artemievda1c8342021-10-21 00:58:12 +1100100
101enum flashrom_wp_result flashrom_wp_cfg_new(struct flashrom_wp_cfg **);
102void flashrom_wp_cfg_release(struct flashrom_wp_cfg *);
103void flashrom_wp_set_mode(struct flashrom_wp_cfg *, enum flashrom_wp_mode);
104enum flashrom_wp_mode flashrom_wp_get_mode(const struct flashrom_wp_cfg *);
105void flashrom_wp_set_range(struct flashrom_wp_cfg *, size_t start, size_t len);
106void flashrom_wp_get_range(size_t *start, size_t *len, const struct flashrom_wp_cfg *);
107
108enum flashrom_wp_result flashrom_wp_read_cfg(struct flashrom_wp_cfg *, struct flashrom_flashctx *);
109enum flashrom_wp_result flashrom_wp_write_cfg(struct flashrom_flashctx *, const struct flashrom_wp_cfg *);
110
Nikolai Artemiev077c0d12021-10-21 01:50:15 +1100111enum flashrom_wp_result flashrom_wp_get_available_ranges(struct flashrom_wp_ranges **, struct flashrom_flashctx *);
112size_t flashrom_wp_ranges_get_count(const struct flashrom_wp_ranges *);
113enum flashrom_wp_result flashrom_wp_ranges_get_range(size_t *start, size_t *len, const struct flashrom_wp_ranges *, unsigned int index);
114void flashrom_wp_ranges_release(struct flashrom_wp_ranges *);
115
Arthur Heymansc82900b2018-01-10 12:48:16 +0100116#endif /* !__LIBFLASHROM_H__ */