Nico Huber | 0e76d99 | 2023-01-12 20:22:55 +0100 | [diff] [blame^] | 1 | /* |
| 2 | * This file is part of the flashprog project. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | */ |
| 14 | |
| 15 | #include <stddef.h> |
| 16 | #include <stdint.h> |
| 17 | |
| 18 | #include "flash.h" |
| 19 | #include "programmer.h" |
| 20 | |
| 21 | #include "chipdrivers.h" |
| 22 | |
| 23 | static void *programmer_map_flash_region(const struct flashctx *flash, const char *descr, |
| 24 | uintptr_t phys_addr, size_t len) |
| 25 | { |
| 26 | void *ret; |
| 27 | if (flash->mst->par.map_flash) |
| 28 | ret = flash->mst->par.map_flash(descr, phys_addr, len); |
| 29 | else |
| 30 | ret = fallback_map(descr, phys_addr, len); |
| 31 | msg_gspew("%s: mapping %s from 0x%0*" PRIxPTR " to 0x%0*" PRIxPTR "\n", |
| 32 | __func__, descr, PRIxPTR_WIDTH, phys_addr, PRIxPTR_WIDTH, (uintptr_t) ret); |
| 33 | return ret; |
| 34 | } |
| 35 | |
| 36 | static void programmer_unmap_flash_region(const struct flashctx *flash, void *virt_addr, size_t len) |
| 37 | { |
| 38 | if (flash->mst->par.unmap_flash) |
| 39 | flash->mst->par.unmap_flash(virt_addr, len); |
| 40 | else |
| 41 | fallback_unmap(virt_addr, len); |
| 42 | msg_gspew("%s: unmapped 0x%0*" PRIxPTR "\n", __func__, PRIxPTR_WIDTH, (uintptr_t)virt_addr); |
| 43 | } |
| 44 | |
| 45 | int prepare_memory_access(struct flashctx *flash, enum preparation_steps prep) |
| 46 | { |
| 47 | /* Init pointers to the fail-safe state to distinguish them later from legit values. */ |
| 48 | flash->virtual_memory = (chipaddr)ERROR_PTR; |
| 49 | flash->virtual_registers = (chipaddr)ERROR_PTR; |
| 50 | |
| 51 | /* |
| 52 | * FIXME: This avoids mapping (and unmapping) of flash chip definitions with size 0. |
| 53 | * These are used for various probing-related hacks that would not map successfully |
| 54 | * anyway and should be removed ASAP. |
| 55 | */ |
| 56 | if (flash->chip->total_size == 0) |
| 57 | return 0; |
| 58 | |
| 59 | const chipsize_t size = flash->chip->total_size * 1024; |
| 60 | uintptr_t base = flashbase ? flashbase : (0xffffffff - size + 1); |
| 61 | void *addr = programmer_map_flash_region(flash, flash->chip->name, base, size); |
| 62 | if (addr == ERROR_PTR) { |
| 63 | msg_perr("Could not map flash chip %s at 0x%0*" PRIxPTR ".\n", |
| 64 | flash->chip->name, PRIxPTR_WIDTH, base); |
| 65 | return 1; |
| 66 | } |
| 67 | flash->physical_memory = base; |
| 68 | flash->virtual_memory = (chipaddr)addr; |
| 69 | |
| 70 | /* |
| 71 | * FIXME: Special function registers normally live 4 MByte below flash space, |
| 72 | * but it might be somewhere completely different on some chips and programmers, |
| 73 | * or not mappable at all. Ignore these problems for now and always report success. |
| 74 | */ |
| 75 | if (flash->chip->feature_bits & FEATURE_REGISTERMAP) { |
| 76 | base = 0xffffffff - size - 0x400000 + 1; |
| 77 | addr = programmer_map_flash_region(flash, "flash chip registers", base, size); |
| 78 | if (addr == ERROR_PTR) { |
| 79 | msg_pdbg2("Could not map flash chip registers %s at 0x%0*" PRIxPTR ".\n", |
| 80 | flash->chip->name, PRIxPTR_WIDTH, base); |
| 81 | return 0; |
| 82 | } |
| 83 | flash->physical_registers = base; |
| 84 | flash->virtual_registers = (chipaddr)addr; |
| 85 | } |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | void finish_memory_access(struct flashctx *flash) |
| 90 | { |
| 91 | const size_t size = flashprog_flash_getsize(flash); |
| 92 | |
| 93 | if (flash->virtual_registers != (chipaddr)ERROR_PTR) { |
| 94 | programmer_unmap_flash_region(flash, (void *)flash->virtual_registers, size); |
| 95 | flash->physical_registers = 0; |
| 96 | flash->virtual_registers = (chipaddr)ERROR_PTR; |
| 97 | } |
| 98 | |
| 99 | if (flash->virtual_memory != (chipaddr)ERROR_PTR) { |
| 100 | programmer_unmap_flash_region(flash, (void *)flash->virtual_memory, size); |
| 101 | flash->physical_memory = 0; |
| 102 | flash->virtual_memory = (chipaddr)ERROR_PTR; |
| 103 | } |
| 104 | } |