crc8.c 2.4 KB

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