blob: b8b5f089a10e5abb73fc5dff2ca344fbc59b99e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/*
* This file is part of the flashrom project.
*
* Copyright (C) 2022 Aarya Chaumal
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef __ERASURE_LAYOUT_H__
#define __ERASURE_LAYOUT_H__ 1
struct eraseblock_data {
chipoff_t start_addr;
chipoff_t end_addr;
bool selected;
size_t block_num;
size_t first_sub_block_index;
size_t last_sub_block_index;
};
struct erase_layout {
struct eraseblock_data* layout_list;
size_t block_count;
const struct block_eraser *eraser;
};
void free_erase_layout(struct erase_layout *layout, unsigned int erasefn_count);
int create_erase_layout(struct flashctx *const flashctx, struct erase_layout **erase_layout);
int erase_write(struct flashctx *const flashctx, chipoff_t region_start, chipoff_t region_end,
uint8_t* curcontents, uint8_t* newcontents,
struct erase_layout *erase_layout, bool *all_skipped);
#endif /* !__ERASURE_LAYOUT_H__ */
|