/*1* Copyright (c) 2011 Broadcom Corporation2*3* Permission to use, copy, modify, and/or distribute this software for any4* purpose with or without fee is hereby granted, provided that the above5* copyright notice and this permission notice appear in all copies.6*7* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES8* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF9* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY10* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES11* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION12* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN13* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.14*/1516#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt1718#include <linux/crc8.h>19#include <linux/export.h>20#include <linux/module.h>21#include <linux/printk.h>2223/**24* crc8_populate_msb - fill crc table for given polynomial in reverse bit order.25*26* @table: table to be filled.27* @polynomial: polynomial for which table is to be filled.28*/29void crc8_populate_msb(u8 table[CRC8_TABLE_SIZE], u8 polynomial)30{31int i, j;32const u8 msbit = 0x80;33u8 t = msbit;3435table[0] = 0;3637for (i = 1; i < CRC8_TABLE_SIZE; i *= 2) {38t = (t << 1) ^ (t & msbit ? polynomial : 0);39for (j = 0; j < i; j++)40table[i+j] = table[j] ^ t;41}42}43EXPORT_SYMBOL(crc8_populate_msb);4445/**46* crc8_populate_lsb - fill crc table for given polynomial in regular bit order.47*48* @table: table to be filled.49* @polynomial: polynomial for which table is to be filled.50*/51void crc8_populate_lsb(u8 table[CRC8_TABLE_SIZE], u8 polynomial)52{53int i, j;54u8 t = 1;5556table[0] = 0;5758for (i = (CRC8_TABLE_SIZE >> 1); i; i >>= 1) {59t = (t >> 1) ^ (t & 1 ? polynomial : 0);60for (j = 0; j < CRC8_TABLE_SIZE; j += 2*i)61table[i+j] = table[j] ^ t;62}63}64EXPORT_SYMBOL(crc8_populate_lsb);6566/**67* crc8 - calculate a crc8 over the given input data.68*69* @table: crc table used for calculation.70* @pdata: pointer to data buffer.71* @nbytes: number of bytes in data buffer.72* @crc: previous returned crc8 value.73*/74u8 crc8(const u8 table[CRC8_TABLE_SIZE], const u8 *pdata, size_t nbytes, u8 crc)75{76/* loop over the buffer data */77while (nbytes-- > 0)78crc = table[(crc ^ *pdata++) & 0xff];7980return crc;81}82EXPORT_SYMBOL(crc8);8384MODULE_DESCRIPTION("CRC8 (by Williams, Ross N.) function");85MODULE_AUTHOR("Broadcom Corporation");86MODULE_LICENSE("Dual BSD/GPL");878889