upstream u-boot with additional patches for our devices/boards: https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ; Gbit ethernet patch for some LIME2 revisions ; with SPI flash support
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
u-boot/lib/crc8.c

31 lines
489 B

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (c) 2013 Google, Inc
*/
#include "linux/crc8.h"
#define POLY (0x1070U << 3)
static unsigned char _crc8(unsigned short data)
{
int i;
for (i = 0; i < 8; i++) {
if (data & 0x8000)
data = data ^ POLY;
data = data << 1;
}
return (unsigned char)(data >> 8);
}
unsigned int crc8(unsigned int crc, const unsigned char *vptr, int len)
{
int i;
for (i = 0; i < len; i++)
crc = _crc8((crc ^ vptr[i]) << 8);
return crc;
}