Blame view

lib/crc8.c 492 Bytes
60d18d3fe   Simon Glass   Add crc8 routine
1
2
3
4
5
6
7
  /*
   * Copyright (c) 2013 Google, Inc
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  
  #include "linux/crc8.h"
456ecd08e   Stefan Roese   lib/crc8: Add crc...
8
9
10
  #define POLY	(0x1070U << 3)
  
  static unsigned char _crc8(unsigned short data)
60d18d3fe   Simon Glass   Add crc8 routine
11
  {
456ecd08e   Stefan Roese   lib/crc8: Add crc...
12
13
14
15
16
17
  	int i;
  
  	for (i = 0; i < 8; i++) {
  		if (data & 0x8000)
  			data = data ^ POLY;
  		data = data << 1;
60d18d3fe   Simon Glass   Add crc8 routine
18
  	}
456ecd08e   Stefan Roese   lib/crc8: Add crc...
19
20
21
22
23
24
25
26
27
28
29
  	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;
60d18d3fe   Simon Glass   Add crc8 routine
30
  }