blob: 5447bae9e13ebc579abe503bdcecb1a4d44adc66 [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, 2016 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.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21/**
22 * @mainpage
23 *
24 * Have a look at the Modules section for a function reference.
25 */
26
27#include <stdlib.h>
28#include <string.h>
29#include <stdarg.h>
30
31#include "flash.h"
32#include "programmer.h"
33#include "layout.h"
34#include "libflashrom.h"
35
36/**
37 * @defgroup flashrom-general General
38 * @{
39 */
40
41/** Pointer to log callback function. */
42static flashrom_log_callback *global_log_callback = NULL;
43
44/**
45 * @brief Initialize libflashrom.
46 *
47 * @param perform_selfcheck If not zero, perform a self check.
48 * @return 0 on success
49 */
50int flashrom_init(const int perform_selfcheck)
51{
52 if (perform_selfcheck && selfcheck())
53 return 1;
54 myusec_calibrate_delay();
55 return 0;
56}
57
58/**
59 * @brief Shut down libflashrom.
60 * @return 0 on success
61 */
62int flashrom_shutdown(void)
63{
64 return 0; /* TODO: nothing to do? */
65}
66
67/* TODO: flashrom_set_loglevel()? do we need it?
68 For now, let the user decide in his callback. */
69
70/**
71 * @brief Set the log callback function.
72 *
73 * Set a callback function which will be invoked whenever libflashrom wants
74 * to output messages. This allows frontends to do whatever they see fit with
75 * such messages, e.g. write them to syslog, or to file, or print them in a
76 * GUI window, etc.
77 *
78 * @param log_callback Pointer to the new log callback function.
79 */
80void flashrom_set_log_callback(flashrom_log_callback *const log_callback)
81{
82 global_log_callback = log_callback;
83}
84/** @private */
85int print(const enum msglevel level, const char *const fmt, ...)
86{
87 if (global_log_callback) {
88 int ret;
89 va_list args;
90 va_start(args, fmt);
91 ret = global_log_callback(level, fmt, args);
92 va_end(args);
93 return ret;
94 }
95 return 0;
96}
97
98/** @} */ /* end flashrom-general */
99
100
101
102/**
103 * @defgroup flashrom-query Querying
104 * @{
105 */
106
107/* TBD */
108
109/** @} */ /* end flashrom-query */
110
111
112
113/**
114 * @defgroup flashrom-prog Programmers
115 * @{
116 */
117
118/**
119 * @brief Initialize the specified programmer.
120 *
121 * Currently, only one programmer may be initialized at a time.
122 *
123 * @param[out] flashprog Points to a pointer of type struct flashrom_programmer
124 * that will be set if programmer initialization succeeds.
125 * *flashprog has to be shutdown by the caller with @ref
126 * flashrom_programmer_shutdown.
127 * @param[in] prog_name Name of the programmer to initialize.
128 * @param[in] prog_param Pointer to programmer specific parameters.
129 * @return 0 on success
130 */
131int flashrom_programmer_init(struct flashrom_programmer **const flashprog,
132 const char *const prog_name, const char *const prog_param)
133{
134 unsigned prog;
135
136 for (prog = 0; prog < PROGRAMMER_INVALID; prog++) {
137 if (strcmp(prog_name, programmer_table[prog].name) == 0)
138 break;
139 }
140 if (prog >= PROGRAMMER_INVALID) {
141 msg_ginfo("Error: Unknown programmer \"%s\". Valid choices are:\n", prog_name);
142 list_programmers_linebreak(0, 80, 0);
143 return 1;
144 }
145 return programmer_init(prog, prog_param);
146}
147
148/**
149 * @brief Shut down the initialized programmer.
150 *
151 * @param flashprog The programmer to shut down.
152 * @return 0 on success
153 */
154int flashrom_programmer_shutdown(struct flashrom_programmer *const flashprog)
155{
156 return programmer_shutdown();
157}
158
159/* TODO: flashrom_programmer_capabilities()? */
160
161/** @} */ /* end flashrom-prog */
162
163
164
165/**
166 * @defgroup flashrom-flash Flash chips
167 * @{
168 */
169
170/**
171 * @brief Probe for a flash chip.
172 *
173 * Probes for a flash chip and returns a flash context, that can be used
174 * later with flash chip and @ref flashrom-ops "image operations", if
175 * exactly one matching chip is found.
176 *
177 * @param[out] flashctx Points to a pointer of type struct flashrom_flashctx
178 * that will be set if exactly one chip is found. *flashctx
179 * has to be freed by the caller with @ref flashrom_flash_release.
180 * @param[in] flashprog The flash programmer used to access the chip.
181 * @param[in] chip_name Name of a chip to probe for, or NULL to probe for
182 * all known chips.
183 * @return 0 on success,
184 * 3 if multiple chips were found,
185 * 2 if no chip was found,
186 * or 1 on any other error.
187 */
188int flashrom_flash_probe(struct flashrom_flashctx **const flashctx,
189 const struct flashrom_programmer *const flashprog,
190 const char *const chip_name)
191{
192 int i, ret = 2;
193 struct flashrom_flashctx second_flashctx = { 0, };
194
195 chip_to_probe = chip_name; /* chip_to_probe is global in flashrom.c */
196
197 *flashctx = malloc(sizeof(**flashctx));
198 if (!*flashctx)
199 return 1;
200 memset(*flashctx, 0, sizeof(**flashctx));
201
202 for (i = 0; i < registered_master_count; ++i) {
203 int flash_idx = -1;
204 if (!ret || (flash_idx = probe_flash(&registered_masters[i], 0, *flashctx, 0)) != -1) {
205 ret = 0;
206 /* We found one chip, now check that there is no second match. */
207 if (probe_flash(&registered_masters[i], flash_idx + 1, &second_flashctx, 0) != -1) {
208 ret = 3;
209 break;
210 }
211 }
212 }
213 if (ret) {
214 free(*flashctx);
215 *flashctx = NULL;
216 }
217 return ret;
218}
219
220/**
221 * @brief Returns the size of the specified flash chip in bytes.
222 *
223 * @param flashctx The queried flash context.
224 * @return Size of flash chip in bytes.
225 */
226size_t flashrom_flash_getsize(const struct flashrom_flashctx *const flashctx)
227{
228 return flashctx->chip->total_size * 1024;
229}
230
231/**
232 * @brief Free a flash context.
233 *
234 * @param flashctx Flash context to free.
235 */
236void flashrom_flash_release(struct flashrom_flashctx *const flashctx)
237{
238 free(flashctx);
239}
240
241/**
242 * @brief Set a flag in the given flash context.
243 *
244 * @param flashctx Flash context to alter.
245 * @param flag Flag that is to be set / cleared.
246 * @param value Value to set.
247 */
248void flashrom_flag_set(struct flashrom_flashctx *const flashctx,
249 const enum flashrom_flag flag, const bool value)
250{
251 switch (flag) {
252 case FLASHROM_FLAG_FORCE: flashctx->flags.force = value; break;
253 case FLASHROM_FLAG_FORCE_BOARDMISMATCH: flashctx->flags.force_boardmismatch = value; break;
254 case FLASHROM_FLAG_VERIFY_AFTER_WRITE: flashctx->flags.verify_after_write = value; break;
255 case FLASHROM_FLAG_VERIFY_WHOLE_CHIP: flashctx->flags.verify_whole_chip = value; break;
256 }
257}
258
259/**
260 * @brief Return the current value of a flag in the given flash context.
261 *
262 * @param flashctx Flash context to read from.
263 * @param flag Flag to be read.
264 * @return Current value of the flag.
265 */
266bool flashrom_flag_get(const struct flashrom_flashctx *const flashctx, const enum flashrom_flag flag)
267{
268 switch (flag) {
269 case FLASHROM_FLAG_FORCE: return flashctx->flags.force;
270 case FLASHROM_FLAG_FORCE_BOARDMISMATCH: return flashctx->flags.force_boardmismatch;
271 case FLASHROM_FLAG_VERIFY_AFTER_WRITE: return flashctx->flags.verify_after_write;
272 case FLASHROM_FLAG_VERIFY_WHOLE_CHIP: return flashctx->flags.verify_whole_chip;
273 default: return false;
274 }
275}
276
277/** @} */ /* end flashrom-flash */
278
279
280
281/**
282 * @defgroup flashrom-layout Layout handling
283 * @{
284 */
285
286/**
287 * @brief Mark given region as included.
288 *
289 * @param layout The layout to alter.
290 * @param name The name of the region to include.
291 *
292 * @return 0 on success,
293 * 1 if the given name can't be found.
294 */
295int flashrom_layout_include_region(struct flashrom_layout *const layout, const char *name)
296{
297 size_t i;
298 for (i = 0; i < layout->num_entries; ++i) {
299 if (!strcmp(layout->entries[i].name, name)) {
300 layout->entries[i].included = true;
301 return 0;
302 }
303 }
304 return 1;
305}
306
307/**
308 * @brief Free a layout.
309 *
310 * @param layout Layout to free.
311 */
312void flashrom_layout_release(struct flashrom_layout *const layout)
313{
314 if (layout == get_global_layout())
315 return;
316
317 free(layout);
318}
319
320/**
321 * @brief Set the active layout for a flash context.
322 *
323 * Note: This just sets a pointer. The caller must not release the layout
324 * as long as he uses it through the given flash context.
325 *
326 * @param flashctx Flash context whose layout will be set.
327 * @param layout Layout to bet set.
328 */
329void flashrom_layout_set(struct flashrom_flashctx *const flashctx, const struct flashrom_layout *const layout)
330{
331 flashctx->layout = layout;
332}
333
334/** @} */ /* end flashrom-layout */