blob: c35f3313627362dac09dfb20e9eeba04e1bbad25 [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-query */
44enum flashrom_test_state {
45 FLASHROM_TESTED_OK = 0,
46 FLASHROM_TESTED_NT = 1,
47 FLASHROM_TESTED_BAD = 2,
48 FLASHROM_TESTED_DEP = 3,
49 FLASHROM_TESTED_NA = 4,
50};
51
52struct flashrom_flashchip_info {
53 const char *vendor;
54 const char *name;
55 unsigned int total_size;
56 struct flashrom_tested {
57 enum flashrom_test_state probe;
58 enum flashrom_test_state read;
59 enum flashrom_test_state erase;
60 enum flashrom_test_state write;
61 } tested;
62};
63
64struct flashrom_board_info {
65 const char *vendor;
66 const char *name;
67 enum flashrom_test_state working;
68};
69
70struct flashrom_chipset_info {
71 const char *vendor;
72 const char *chipset;
73 uint16_t vendor_id;
74 uint16_t chipset_id;
75 enum flashrom_test_state status;
76};
77
78const char *flashrom_version_info(void);
79void flashrom_system_info(void);
80const char **flashrom_supported_programmers(void);
81struct flashrom_flashchip_info *flashrom_supported_flash_chips(void);
82struct flashrom_board_info *flashrom_supported_boards(void);
83struct flashrom_chipset_info *flashrom_supported_chipsets(void);
84int flashrom_data_free(void *const p);
85
86/** @ingroup flashrom-prog */
Nico Huber454f6132012-12-10 13:34:10 +000087struct flashrom_programmer;
88int flashrom_programmer_init(struct flashrom_programmer **, const char *prog_name, const char *prog_params);
89int flashrom_programmer_shutdown(struct flashrom_programmer *);
90
91struct flashrom_flashctx;
92int flashrom_flash_probe(struct flashrom_flashctx **, const struct flashrom_programmer *, const char *chip_name);
93size_t flashrom_flash_getsize(const struct flashrom_flashctx *);
94int flashrom_flash_erase(struct flashrom_flashctx *);
95void flashrom_flash_release(struct flashrom_flashctx *);
96
97/** @ingroup flashrom-flash */
98enum flashrom_flag {
99 FLASHROM_FLAG_FORCE,
100 FLASHROM_FLAG_FORCE_BOARDMISMATCH,
101 FLASHROM_FLAG_VERIFY_AFTER_WRITE,
102 FLASHROM_FLAG_VERIFY_WHOLE_CHIP,
103};
104void flashrom_flag_set(struct flashrom_flashctx *, enum flashrom_flag, bool value);
105bool flashrom_flag_get(const struct flashrom_flashctx *, enum flashrom_flag);
106
107int flashrom_image_read(struct flashrom_flashctx *, void *buffer, size_t buffer_len);
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300108int flashrom_image_write(struct flashrom_flashctx *, void *buffer, size_t buffer_len, const void *refbuffer);
Nico Huber454f6132012-12-10 13:34:10 +0000109int flashrom_image_verify(struct flashrom_flashctx *, const void *buffer, size_t buffer_len);
110
111struct flashrom_layout;
Nico Huber305f4172013-06-14 11:55:26 +0200112int flashrom_layout_read_from_ifd(struct flashrom_layout **, struct flashrom_flashctx *, const void *dump, size_t len);
Arthur Heymansc82900b2018-01-10 12:48:16 +0100113int flashrom_layout_read_fmap_from_rom(struct flashrom_layout **,
114 struct flashrom_flashctx *, off_t offset, size_t length);
115int flashrom_layout_read_fmap_from_buffer(struct flashrom_layout **layout,
116 struct flashrom_flashctx *, const uint8_t *buf, size_t len);
Nico Huber454f6132012-12-10 13:34:10 +0000117int flashrom_layout_include_region(struct flashrom_layout *, const char *name);
118void flashrom_layout_release(struct flashrom_layout *);
119void flashrom_layout_set(struct flashrom_flashctx *, const struct flashrom_layout *);
120
Nikolai Artemievda1c8342021-10-21 00:58:12 +1100121/** @ingroup flashrom-wp */
122enum flashrom_wp_result {
123 FLASHROM_WP_OK = 0,
124 FLASHROM_WP_ERR_CHIP_UNSUPPORTED = 1,
125 FLASHROM_WP_ERR_OTHER = 2,
126 FLASHROM_WP_ERR_READ_FAILED = 3,
127 FLASHROM_WP_ERR_WRITE_FAILED = 4,
Nikolai Artemievb6112a52021-10-21 02:28:23 +1100128 FLASHROM_WP_ERR_VERIFY_FAILED = 5,
Nikolai Artemiev9e1afb72021-10-21 02:29:22 +1100129 FLASHROM_WP_ERR_RANGE_UNSUPPORTED = 6,
130 FLASHROM_WP_ERR_MODE_UNSUPPORTED = 7,
131 FLASHROM_WP_ERR_RANGE_LIST_UNAVAILABLE = 8
Nikolai Artemievda1c8342021-10-21 00:58:12 +1100132};
133
134enum flashrom_wp_mode {
135 FLASHROM_WP_MODE_DISABLED,
136 FLASHROM_WP_MODE_HARDWARE,
137 FLASHROM_WP_MODE_POWER_CYCLE,
138 FLASHROM_WP_MODE_PERMANENT
139};
140struct flashrom_wp_cfg;
Nikolai Artemiev077c0d12021-10-21 01:50:15 +1100141struct flashrom_wp_ranges;
Nikolai Artemievda1c8342021-10-21 00:58:12 +1100142
143enum flashrom_wp_result flashrom_wp_cfg_new(struct flashrom_wp_cfg **);
144void flashrom_wp_cfg_release(struct flashrom_wp_cfg *);
145void flashrom_wp_set_mode(struct flashrom_wp_cfg *, enum flashrom_wp_mode);
146enum flashrom_wp_mode flashrom_wp_get_mode(const struct flashrom_wp_cfg *);
147void flashrom_wp_set_range(struct flashrom_wp_cfg *, size_t start, size_t len);
148void flashrom_wp_get_range(size_t *start, size_t *len, const struct flashrom_wp_cfg *);
149
150enum flashrom_wp_result flashrom_wp_read_cfg(struct flashrom_wp_cfg *, struct flashrom_flashctx *);
151enum flashrom_wp_result flashrom_wp_write_cfg(struct flashrom_flashctx *, const struct flashrom_wp_cfg *);
152
Nikolai Artemiev077c0d12021-10-21 01:50:15 +1100153enum flashrom_wp_result flashrom_wp_get_available_ranges(struct flashrom_wp_ranges **, struct flashrom_flashctx *);
154size_t flashrom_wp_ranges_get_count(const struct flashrom_wp_ranges *);
155enum flashrom_wp_result flashrom_wp_ranges_get_range(size_t *start, size_t *len, const struct flashrom_wp_ranges *, unsigned int index);
156void flashrom_wp_ranges_release(struct flashrom_wp_ranges *);
157
Arthur Heymansc82900b2018-01-10 12:48:16 +0100158#endif /* !__LIBFLASHROM_H__ */