Jetpack/u-boot/lib/crc8.c
dchvs 31faf4d851 cti_kernel: Add CTI sources
Elroy L4T r32.4.4 – JetPack 4.4.1
2021-03-15 20:15:11 -06:00

33 lines
492 B
C

/*
* Copyright (c) 2013 Google, Inc
*
* SPDX-License-Identifier: GPL-2.0+
*/
#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;
}