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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
//
// srecord - manipulate eprom load files
// Copyright (C) 2000-2002, 2006-2010 Peter Miller
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation; either version 3 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.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
//
//
// Implemented from scratch from
// "A painless guide to CRC error detection algorithms"
// http://www.repairfaq.org/filipg/LINK/F_crc_v3.html
//
// See also http://www.joegeluso.com/software/articles/ccitt.htm
//
// See test/01/t0150a.sh for test vectors.
//
#include <srecord/bitrev.h>
#include <srecord/crc16.h>
//
// Use a seed of 0xFFFF when augmenting manually (i.e. augmenting by 16
// zero bits by processing two zero bytes at the end of the data), but a
// seed of 0x1D0F when the augmenting is done by shifting where the XOR
// appears in the updcrc function.
//
// The 0x1D0F value is calculated by using the manual augmentation
// updcrc function:
// ubdcrc(0, updcrc(0, 0xFFFF))
//
static unsigned short const ccitt_seed = 0xFFFF;
static unsigned short const broken_seed = 0x84CF;
static unsigned short const xmodem_seed = 0;
void
srecord::crc16::calculate_table()
{
if (polynomial == 0)
polynomial = polynomial_ccitt;
if (bitdir == bit_direction_most_to_least)
{
for (unsigned b = 0; b < 256; ++b)
{
unsigned short v = b << 8;
for (unsigned j = 0; j < 8; ++j)
v = (v & 0x8000) ? ((v << 1) ^ polynomial) : (v << 1);
table[b] = v;
}
}
else
{
polynomial = bitrev16(polynomial);
for (unsigned b = 0; b < 256; ++b)
{
unsigned short v = b;
for (unsigned j = 0; j < 8; ++j)
v = (v & 1) ? ((v >> 1) ^ polynomial) : (v >> 1);
table[b] = v;
}
}
}
static int
state_from_seed_mode(srecord::crc16::seed_mode_t seed_mode)
{
switch (seed_mode)
{
case srecord::crc16::seed_mode_ccitt:
return ccitt_seed;
case srecord::crc16::seed_mode_xmodem:
return xmodem_seed;
case srecord::crc16::seed_mode_broken:
return broken_seed;
}
return ccitt_seed;
}
srecord::crc16::crc16(
seed_mode_t seed_mode,
bool a_augment,
unsigned short a_polynomial,
bit_direction_t a_bitdir
) :
state(state_from_seed_mode(seed_mode)),
augment(a_augment),
polynomial(a_polynomial),
bitdir(a_bitdir)
{
calculate_table();
}
srecord::crc16::crc16(const crc16 &rhs) :
state(rhs.state),
augment(rhs.augment),
polynomial(rhs.polynomial),
bitdir(rhs.bitdir)
{
for (size_t j = 0; j < 256; ++j)
table[j] = rhs.table[j];
}
srecord::crc16 &
srecord::crc16::operator=(const crc16 &rhs)
{
if (this != &rhs)
{
state = rhs.state;
augment = rhs.augment;
polynomial = rhs.polynomial;
bitdir = rhs.bitdir;
for (size_t j = 0; j < 256; ++j)
table[j] = rhs.table[j];
}
return *this;
}
srecord::crc16::~crc16()
{
}
#if 0
//
// This is the simplest possible implementation. It can be used to
// validate the two following table-driven implementations.
//
inline unsigned short
srecord::crc16::updcrc(unsigned char c, unsigned short state)
const
{
if (bitdir == bit_direction_most_to_least)
{
for (unsigned i = 0; i < 8; ++i)
{
bool xor_flag = !!(state & 0x8000);
state <<= 1;
if (c & 0x80)
state |= 1;
if (xor_flag)
state ^= polynomial;
c <<= 1;
}
}
else
{
// note: calculate_table() already reversed the bits in the polynomial
for (unsigned i = 0; i < 8; ++i)
{
bool xor_flag = !!(state & 1);
state >>= 1;
if (c & 1)
state |= 0x8000;
if (xor_flag)
state ^= polynomial;
c >>= 1;
}
}
return state;
}
#endif
#if 1
//
// This version of updcrc doesn't augment automagically, you must
// do it explicitly in the get() method. It is a more intuitave
// implementation than the "augmentation included" implementation below.
//
// See "A painless guide to CRC error detection algorithms",
// chapter 10, http://www.repairfaq.org/filipg/LINK/F_crc_v33.html#CRCV_002
// for an explanation.
//
inline unsigned short
srecord::crc16::updcrc(unsigned char c, unsigned short state)
const
{
if (bitdir == bit_direction_least_to_most)
{
return (((state >> 8) & 0xFF) | (c << 8)) ^ table[state & 0xFF];
}
else
{
return ((state << 8) | c) ^ table[state >> 8];
}
}
#endif
#if 0
//
// This version of updcrc means that the 16-zero-bit augmentation has
// already happened. There is no need to explicitly do it in the get()
// method. This is deep voodoo even for folks who actually understand
// XOR arithmetic.
//
// See "A painless guide to CRC error detection algorithms",
// chapter 11, http://www.repairfaq.org/filipg/LINK/F_crc_v33.html#CRCV_003
// for an explanation.
//
inline unsigned short
srecord::crc16::updcrc(unsigned char c, unsigned short state)
const
{
if (bitdir == bit_direction_least_to_most)
return (state >> 8) ^ table[(state ^ c) & 0xFF];
else
return (state << 8) ^ table[(state >> 8) ^ c];
}
#endif
void
srecord::crc16::next(unsigned char ch)
{
state = updcrc(ch, state);
}
void
srecord::crc16::nextbuf(const void *data, size_t nbytes)
{
unsigned char *dp = (unsigned char *)data;
while (nbytes > 0)
{
state = updcrc(*dp++, state);
--nbytes;
}
}
unsigned short
srecord::crc16::get()
const
{
if (augment)
{
return updcrc(0, updcrc(0, state));
}
return state;
}
#include <cstdio>
void
srecord::crc16::print_table()
const
{
printf("/*\n");
printf
(
" * Bit order: %s\n",
(
bitdir == bit_direction_most_to_least
?
"most to least"
:
"least to most"
)
);
printf(" * Polynomial: 0x");
if (bitdir == bit_direction_most_to_least)
printf("%04X", polynomial);
else
printf("%04X", bitrev16(polynomial));
printf("\n */\n");
printf("const unsigned short table[256] =\n{\n");
for (size_t j = 0; j < 256; ++j)
{
if ((j & 7) == 0)
printf(" /* %02X */", int(j));
printf(" 0x%04X,", table[j]);
if ((j & 7) == 7)
printf("\n");
}
printf("};\n");
}
|