blob: 48b8b9951cd152990f7a07f812cb70ac22d11698 [file] [log] [blame]
Stefan Tauner6ad6e012014-06-12 00:04:32 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009-2010 Carl-Daniel Hailfinger
5 * Copyright (C) 2013 Stefan Tauner
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.
Stefan Tauner6ad6e012014-06-12 00:04:32 +000016 */
17
18#include <ctype.h>
19#include <stdlib.h>
20#include <string.h>
Nico Huberbe42cf22026-02-21 17:40:44 +010021
Stefan Tauner6ad6e012014-06-12 00:04:32 +000022#include "flash.h"
Nico Huberbe42cf22026-02-21 17:40:44 +010023#include "programmer.h"
Stefan Tauner6ad6e012014-06-12 00:04:32 +000024
Nico Huberaf9d7382023-05-01 13:33:26 +020025/* Check if raw data is all 0 or all 1. */
26bool flashprog_no_data(const void *const raw_data, const size_t len)
27{
28 const uint8_t *const raw_end = (const uint8_t *)raw_data + len;
29 const uint8_t patterns[] = { 0x00, 0xff };
30 size_t i;
31
32 for (i = 0; i < ARRAY_SIZE(patterns); ++i) {
33 const uint8_t *raw_ptr;
34 for (raw_ptr = raw_data; raw_ptr < raw_end; ++raw_ptr) {
35 if (*raw_ptr != patterns[i])
36 break;
37 }
38 if (raw_ptr == raw_end)
39 return true;
40 }
41
42 return false;
43}
44
Nico Huber7679b5c2023-04-28 21:48:53 +000045int flashprog_read_chunked(struct flashctx *const flash, uint8_t *dst, unsigned int start, unsigned int len,
Nico Huber044c9dc2023-12-29 23:26:57 +010046 unsigned int chunksize, readfunc_t *const read)
Nico Huber7679b5c2023-04-28 21:48:53 +000047{
48 int ret;
49 size_t to_read;
Nico Huber044c9dc2023-12-29 23:26:57 +010050
51 if (chunksize > 256 && chunksize & 3)
52 chunksize &= ~3;
53
Nico Huber7679b5c2023-04-28 21:48:53 +000054 for (; len; len -= to_read, dst += to_read, start += to_read) {
55 to_read = min(chunksize, len);
56 ret = read(flash, dst, start, to_read);
57 if (ret)
58 return ret;
59 flashprog_progress_add(flash, to_read);
60 }
61 return 0;
62}
63
Nico Huberbe42cf22026-02-21 17:40:44 +010064int flashprog_limit_chip(struct flashctx *flash)
65{
66 const chipsize_t limit = flash->mst.common->max_rom_decode;
67 struct flashchip *const chip = flash->chip;
68 const chipsize_t chip_size = chip->total_size * 1024;
69 unsigned int usable_erasers = 0;
70 unsigned int i;
71
72
73 /* Chip is small enough or already limited. */
74 if (chip_size <= limit)
75 return 0;
76
77 /* Undefine all block_erasers that don't operate on the whole chip,
78 and adjust the eraseblock size of those which do. */
79 for (i = 0; i < NUM_ERASEFUNCTIONS; ++i) {
80 if (chip->block_erasers[i].eraseblocks[0].size != chip_size) {
81 chip->block_erasers[i].eraseblocks[0].count = 0;
82 chip->block_erasers[i].block_erase = NULL;
83 } else {
84 chip->block_erasers[i].eraseblocks[0].size = limit;
85 usable_erasers++;
86 }
87 }
88
89 if (usable_erasers) {
90 chip->total_size = limit / 1024;
91 if (chip->page_size > limit)
92 chip->page_size = limit;
93 return 0;
94 } else {
95 msg_pdbg("Failed to adjust size of chip \"%s\" (%d kB).\n",
96 chip->name, chip->total_size);
97 return -1;
98 }
99}
100
Nico Hubera19cd392026-07-04 15:25:27 +0200101/* Compare 64 naturally aligned bytes (often matches a cache line). */
102static int compare64(const char *const s1, const char *const s2, unsigned int offset)
103{
104 offset &= ~63;
105 return memcmp(s1 + offset, s2 + offset, 64);
106}
107
108/* Compare two memory ranges at pseudo-random offsets. */
109int compare_sparse(const void *const s1, const void *const s2, const size_t n)
110{
111 const unsigned int offsets[] = {
112 12, 123, 1234, 12345, 123456, 123456, 1234567, 12345678, 123456789,
113 0x12, 0x123, 0x1234, 0x12345, 0x123456, 0x1234567, 0x12345678,
114 0, 01, 012, 0123, 01234, 012345, 0123456, 01234567,
115 };
116 const unsigned int step = 1234;
117
118 if (n < step + 64)
119 return 0;
120
121 unsigned int i;
122 for (i = 0; i < ARRAY_SIZE(offsets); ++i) {
123 const unsigned int offset = offsets[i] % ((n - 64) / step) * step;
124
125 const int diff1 = compare64(s1, s2, offset);
126 if (diff1)
127 return diff1;
128
129 const int diff2 = compare64(s1, s2, n - 64 - offset);
130 if (diff2)
131 return diff2;
132 }
133
134 return 0;
135}
136
137/* Guesstimate the addressable size inside a memory mapping. `len' should be a power of 2. */
138size_t estimate_addressable_size(const void *const base, size_t len)
139{
140 if (len & (len - 1))
141 msg_perr("Error in %s: Given `len=%zu' is not a power of 2.\n", __func__, len);
142
143 /*
144 * We start comparing the two halves of the given space. And if
145 * they match, split the lower half, and so on until we find a
146 * mismatch (or not, in the unlikely case of empty memory?).
147 */
148 for (; len > 0; len /= 2) {
149 if (compare_sparse(base, base + len / 2, len / 2))
150 break;
151 }
152
153 return len;
154}
155
Stefan Tauner6ad6e012014-06-12 00:04:32 +0000156/* Returns the minimum number of bits needed to represent the given address.
157 * FIXME: use mind-blowing implementation. */
158uint32_t address_to_bits(uint32_t addr)
159{
160 unsigned int lzb = 0;
Daniel Campello251e3cd2022-03-16 07:05:48 -0600161 while (((1u << (31 - lzb)) & ~addr) != 0)
Stefan Tauner6ad6e012014-06-12 00:04:32 +0000162 lzb++;
163 return 32 - lzb;
164}
165
Nico Huber519be662018-12-23 20:03:35 +0100166unsigned int bitcount(unsigned long a)
Stefan Tauner6ad6e012014-06-12 00:04:32 +0000167{
Nico Huber519be662018-12-23 20:03:35 +0100168 unsigned int i = 0;
Stefan Tauner6ad6e012014-06-12 00:04:32 +0000169 for (; a != 0; a >>= 1)
170 if (a & 1)
171 i++;
172 return i;
173}
174
175int max(int a, int b)
176{
177 return (a > b) ? a : b;
178}
179
180int min(int a, int b)
181{
182 return (a < b) ? a : b;
183}
184
185char *strcat_realloc(char *dest, const char *src)
186{
187 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
188 if (!dest) {
189 msg_gerr("Out of memory!\n");
190 return NULL;
191 }
192 strcat(dest, src);
193 return dest;
194}
195
196void tolower_string(char *str)
197{
198 for (; *str != '\0'; str++)
199 *str = (char)tolower((unsigned char)*str);
200}
201
Marc Schink7ecfe482016-03-17 16:07:23 +0100202uint8_t reverse_byte(uint8_t x)
203{
204 x = ((x >> 1) & 0x55) | ((x << 1) & 0xaa);
205 x = ((x >> 2) & 0x33) | ((x << 2) & 0xcc);
206 x = ((x >> 4) & 0x0f) | ((x << 4) & 0xf0);
207
208 return x;
209}
210
211void reverse_bytes(uint8_t *dst, const uint8_t *src, size_t length)
212{
213 size_t i;
214
215 for (i = 0; i < length; i++)
216 dst[i] = reverse_byte(src[i]);
217}
218
Stefan Taunerb41d8472014-11-01 22:56:06 +0000219/* FIXME: Find a better solution for MinGW. Maybe wrap strtok_s (C11) if it becomes available */
220#ifdef __MINGW32__
221char* strtok_r(char *str, const char *delim, char **nextp)
222{
223 if (str == NULL)
224 str = *nextp;
225
226 str += strspn(str, delim); /* Skip leading delimiters */
227 if (*str == '\0')
228 return NULL;
229
230 char *ret = str;
231 str += strcspn(str, delim); /* Find end of token */
232 if (*str != '\0')
233 *str++ = '\0';
234
235 *nextp = str;
236 return ret;
237}
Miklós Márton8900d6c2019-07-30 00:03:22 +0200238
239/* strndup is a POSIX function not present in MinGW */
240char *strndup(const char *src, size_t maxlen)
241{
Xiang Wang5feb8cd2021-01-20 17:31:19 +0800242 char *retbuf;
243 size_t len;
244 for (len = 0; len < maxlen; len++)
245 if (src[len] == '\0')
246 break;
247 if ((retbuf = malloc(1 + len)) != NULL) {
248 memcpy(retbuf, src, len);
249 retbuf[len] = '\0';
Miklós Márton8900d6c2019-07-30 00:03:22 +0200250 }
Xiang Wang5feb8cd2021-01-20 17:31:19 +0800251 return retbuf;
Miklós Márton8900d6c2019-07-30 00:03:22 +0200252}
Stefan Taunerb41d8472014-11-01 22:56:06 +0000253#endif
254
Stefan Taunerdc627932015-01-27 18:07:50 +0000255/* There is no strnlen in DJGPP */
Nico Huber2d625722016-05-03 10:48:02 +0200256#if defined(__DJGPP__) || (!defined(__LIBPAYLOAD__) && !defined(HAVE_STRNLEN))
Stefan Taunerdc627932015-01-27 18:07:50 +0000257size_t strnlen(const char *str, size_t n)
258{
259 size_t i;
260 for (i = 0; i < n && str[i] != '\0'; i++)
261 ;
262 return i;
263}
264#endif