Stefan Tauner | 6ad6e01 | 2014-06-12 00:04:32 +0000 | [diff] [blame] | 1 | /* |
| 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 Tauner | 6ad6e01 | 2014-06-12 00:04:32 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | #include <ctype.h> |
| 19 | #include <stdlib.h> |
| 20 | #include <string.h> |
| 21 | #include "flash.h" |
| 22 | |
| 23 | /* Returns the minimum number of bits needed to represent the given address. |
| 24 | * FIXME: use mind-blowing implementation. */ |
| 25 | uint32_t address_to_bits(uint32_t addr) |
| 26 | { |
| 27 | unsigned int lzb = 0; |
| 28 | while (((1 << (31 - lzb)) & ~addr) != 0) |
| 29 | lzb++; |
| 30 | return 32 - lzb; |
| 31 | } |
| 32 | |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 33 | unsigned int bitcount(unsigned long a) |
Stefan Tauner | 6ad6e01 | 2014-06-12 00:04:32 +0000 | [diff] [blame] | 34 | { |
Nico Huber | 519be66 | 2018-12-23 20:03:35 +0100 | [diff] [blame] | 35 | unsigned int i = 0; |
Stefan Tauner | 6ad6e01 | 2014-06-12 00:04:32 +0000 | [diff] [blame] | 36 | for (; a != 0; a >>= 1) |
| 37 | if (a & 1) |
| 38 | i++; |
| 39 | return i; |
| 40 | } |
| 41 | |
| 42 | int max(int a, int b) |
| 43 | { |
| 44 | return (a > b) ? a : b; |
| 45 | } |
| 46 | |
| 47 | int min(int a, int b) |
| 48 | { |
| 49 | return (a < b) ? a : b; |
| 50 | } |
| 51 | |
| 52 | char *strcat_realloc(char *dest, const char *src) |
| 53 | { |
| 54 | dest = realloc(dest, strlen(dest) + strlen(src) + 1); |
| 55 | if (!dest) { |
| 56 | msg_gerr("Out of memory!\n"); |
| 57 | return NULL; |
| 58 | } |
| 59 | strcat(dest, src); |
| 60 | return dest; |
| 61 | } |
| 62 | |
| 63 | void tolower_string(char *str) |
| 64 | { |
| 65 | for (; *str != '\0'; str++) |
| 66 | *str = (char)tolower((unsigned char)*str); |
| 67 | } |
| 68 | |
Marc Schink | 7ecfe48 | 2016-03-17 16:07:23 +0100 | [diff] [blame] | 69 | uint8_t reverse_byte(uint8_t x) |
| 70 | { |
| 71 | x = ((x >> 1) & 0x55) | ((x << 1) & 0xaa); |
| 72 | x = ((x >> 2) & 0x33) | ((x << 2) & 0xcc); |
| 73 | x = ((x >> 4) & 0x0f) | ((x << 4) & 0xf0); |
| 74 | |
| 75 | return x; |
| 76 | } |
| 77 | |
| 78 | void reverse_bytes(uint8_t *dst, const uint8_t *src, size_t length) |
| 79 | { |
| 80 | size_t i; |
| 81 | |
| 82 | for (i = 0; i < length; i++) |
| 83 | dst[i] = reverse_byte(src[i]); |
| 84 | } |
| 85 | |
Stefan Tauner | b41d847 | 2014-11-01 22:56:06 +0000 | [diff] [blame] | 86 | /* FIXME: Find a better solution for MinGW. Maybe wrap strtok_s (C11) if it becomes available */ |
| 87 | #ifdef __MINGW32__ |
| 88 | char* strtok_r(char *str, const char *delim, char **nextp) |
| 89 | { |
| 90 | if (str == NULL) |
| 91 | str = *nextp; |
| 92 | |
| 93 | str += strspn(str, delim); /* Skip leading delimiters */ |
| 94 | if (*str == '\0') |
| 95 | return NULL; |
| 96 | |
| 97 | char *ret = str; |
| 98 | str += strcspn(str, delim); /* Find end of token */ |
| 99 | if (*str != '\0') |
| 100 | *str++ = '\0'; |
| 101 | |
| 102 | *nextp = str; |
| 103 | return ret; |
| 104 | } |
Miklós Márton | 8900d6c | 2019-07-30 00:03:22 +0200 | [diff] [blame^] | 105 | |
| 106 | /* strndup is a POSIX function not present in MinGW */ |
| 107 | char *strndup(const char *src, size_t maxlen) |
| 108 | { |
| 109 | if (strlen(src) > maxlen) { |
| 110 | char *retbuf; |
| 111 | if ((retbuf = malloc(1 + maxlen)) != NULL) { |
| 112 | memcpy(retbuf, src, maxlen); |
| 113 | retbuf[maxlen] = '\0'; |
| 114 | } |
| 115 | return retbuf; |
| 116 | } |
| 117 | return strdup(src); |
| 118 | } |
Stefan Tauner | b41d847 | 2014-11-01 22:56:06 +0000 | [diff] [blame] | 119 | #endif |
| 120 | |
Stefan Tauner | dc62793 | 2015-01-27 18:07:50 +0000 | [diff] [blame] | 121 | /* There is no strnlen in DJGPP */ |
Nico Huber | 2d62572 | 2016-05-03 10:48:02 +0200 | [diff] [blame] | 122 | #if defined(__DJGPP__) || (!defined(__LIBPAYLOAD__) && !defined(HAVE_STRNLEN)) |
Stefan Tauner | dc62793 | 2015-01-27 18:07:50 +0000 | [diff] [blame] | 123 | size_t strnlen(const char *str, size_t n) |
| 124 | { |
| 125 | size_t i; |
| 126 | for (i = 0; i < n && str[i] != '\0'; i++) |
| 127 | ; |
| 128 | return i; |
| 129 | } |
| 130 | #endif |