| Nico Huber | 0579029 | 2026-03-09 17:24:08 +0100 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2009 Carl-Daniel Hailfinger |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; version 2 of the License. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | */ |
| 15 | |
| 16 | #ifndef __CHIPDRIVERS_OPAQUE_H__ |
| 17 | #define __CHIPDRIVERS_OPAQUE_H__ 1 |
| 18 | |
| 19 | #include <stdint.h> |
| 20 | |
| 21 | struct flashprog_flashctx; |
| Nico Huber | c3eaa95 | 2026-03-07 23:22:54 +0100 | [diff] [blame^] | 22 | struct master_common; |
| 23 | struct bus_probe; |
| 24 | struct flashchip; |
| 25 | |
| 26 | struct found_id *probe_opaque(const struct bus_probe *, const struct master_common *, const struct flashchip *); |
| Nico Huber | 0579029 | 2026-03-09 17:24:08 +0100 | [diff] [blame] | 27 | |
| Nico Huber | 91f5152 | 2026-03-07 22:57:56 +0100 | [diff] [blame] | 28 | enum preparation_steps; |
| 29 | int prepare_opaque(struct flashprog_flashctx *, enum preparation_steps); |
| 30 | |
| Nico Huber | 0579029 | 2026-03-09 17:24:08 +0100 | [diff] [blame] | 31 | int read_opaque(struct flashprog_flashctx *, uint8_t *buf, unsigned int start, unsigned int len); |
| 32 | int write_opaque(struct flashprog_flashctx *, const uint8_t *buf, unsigned int start, unsigned int len); |
| 33 | int erase_opaque(struct flashprog_flashctx *, unsigned int blockaddr, unsigned int blocklen); |
| 34 | |
| 35 | #endif /* !__CHIPDRIVERS_OPAQUE_H__ */ |