commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
37 lines
563 B
C
37 lines
563 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2013 Google, Inc
|
|
*/
|
|
|
|
#ifdef USE_HOSTCC
|
|
#include <arpa/inet.h>
|
|
#else
|
|
#include <common.h>
|
|
#endif
|
|
#include <u-boot/crc.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;
|
|
}
|