/openbmc/linux/lib/ |
H A D | crc32.c | 58 crc32_body(u32 crc, unsigned char const *buf, size_t len, const u32 (*tab)[256]) argument 61 # define DO_CRC(x) crc = t0[(crc ^ (x)) & 255] ^ (crc >> 8) 67 # define DO_CRC(x) crc = t0[((crc >> 24) ^ (x)) & 255] ^ (crc << 8) 106 q = crc ^ *++b; /* use pre increment for speed */ 108 crc = DO_CRC4; 110 crc = DO_CRC8; 112 crc ^= DO_CRC4; 128 return crc; 139 * @crc: seed value for computation. ~0 for Ethernet, sometimes 0 for other 146 static inline u32 __pure crc32_le_generic(u32 crc, unsigned char const *p, argument [all …]
|
H A D | gen_crc32table.c | 33 * crc is the crc of the byte i; other entries are filled in based on the 41 uint32_t crc = 1; in crc32init_le_generic() local 46 crc = (crc >> 1) ^ ((crc & 1) ? polynomial : 0); in crc32init_le_generic() 48 tab[0][i + j] = crc ^ tab[0][j]; in crc32init_le_generic() 51 crc = tab[0][i]; in crc32init_le_generic() 53 crc = tab[0][crc & 0xff] ^ (crc >> 8); in crc32init_le_generic() 54 tab[j][i] = crc; in crc32init_le_generic() 75 uint32_t crc = 0x80000000; in crc32init_be() local 80 crc = (crc << 1) ^ ((crc & 0x80000000) ? CRC32_POLY_BE : 0); in crc32init_be() 82 crc32table_be[0][i + j] = crc ^ crc32table_be[0][j]; in crc32init_be() [all …]
|
H A D | crc64.c | 3 * Normal 64-bit CRC calculation. 9 * Dr. Ross N. Williams has a great document to introduce the idea of CRC 13 * http://www.ross.net/crc/download/crc_v3.txt 15 * crc64table[256] is the lookup table of a table-driven 64-bit CRC 46 * @crc: seed value for computation. 0 or (u64)~0 for a new CRC calculation, 51 u64 __pure crc64_be(u64 crc, const void *p, size_t len) in crc64_be() argument 58 t = ((crc >> 56) ^ (*_p++)) & 0xFF; in crc64_be() 59 crc = crc64table[t] ^ (crc << 8); in crc64_be() 62 return crc; in crc64_be() 68 * @crc: seed value for computation. 0 for a new CRC calculation, or the [all …]
|
H A D | gen_crc64table.c | 27 uint64_t i, j, c, crc; in generate_reflected_crc64_table() local 30 crc = 0ULL; in generate_reflected_crc64_table() 34 if ((crc ^ (c >> j)) & 1) in generate_reflected_crc64_table() 35 crc = (crc >> 1) ^ poly; in generate_reflected_crc64_table() 37 crc >>= 1; in generate_reflected_crc64_table() 39 table[i] = crc; in generate_reflected_crc64_table() 45 uint64_t i, j, c, crc; in generate_crc64_table() local 48 crc = 0; in generate_crc64_table() 52 if ((crc ^ c) & 0x8000000000000000ULL) in generate_crc64_table() 53 crc = (crc << 1) ^ poly; in generate_crc64_table() [all …]
|
/openbmc/linux/drivers/gpu/drm/ |
H A D | drm_debugfs_crc.c | 43 * DOC: CRC ABI 45 * DRM device drivers can provide to userspace CRC information of each frame as 46 * it reached a given hardware component (a CRC sampling "source"). 49 * file dri/0/crtc-N/crc/control in debugfs, with N being the :ref:`index of 54 * Once frame CRC generation is enabled, userspace can capture them by reading 55 * the dri/0/crtc-N/crc/data file. Each line in that file contains the frame 57 * containing the CRC data. Fields are separated by a single space and the number 58 * of CRC fields is source-specific. 60 * Note that though in some cases the CRC is computed in a specified way and on 61 * the frame contents as supplied by userspace (eDP 1.3), in general the CRC [all …]
|
/openbmc/linux/drivers/gpu/drm/nouveau/dispnv50/ |
H A D | crc.c | 19 #include "crc.h" 77 core->func->crc->set_ctx(head, ctx); in nv50_crc_program_ctx() 84 struct nv50_crc *crc = container_of(work, struct nv50_crc, flip_work); in nv50_crc_ctx_flip_work() local 85 struct nv50_head *head = container_of(crc, struct nv50_head, crc); in nv50_crc_ctx_flip_work() 91 u8 new_idx = crc->ctx_idx ^ 1; in nv50_crc_ctx_flip_work() 98 drm_dbg_kms(dev, "Lock contended, delaying CRC ctx flip for %s\n", crtc->name); in nv50_crc_ctx_flip_work() 104 crtc->name, crc->ctx_idx, new_idx); in nv50_crc_ctx_flip_work() 107 nv50_crc_program_ctx(head, &crc->ctx[new_idx]); in nv50_crc_ctx_flip_work() 113 "Failed to flip CRC context on %s on time (%llu > %llu)\n", in nv50_crc_ctx_flip_work() 116 spin_lock_irq(&crc->lock); in nv50_crc_ctx_flip_work() [all …]
|
/openbmc/u-boot/drivers/mtd/ubi/ |
H A D | crc32.c | 56 * @crc: seed value for computation. ~0 for Ethernet, sometimes 0 for 58 * @p: pointer to buffer over which CRC is run 61 u32 crc32_le(u32 crc, unsigned char const *p, size_t len); 69 u32 crc32_le(u32 crc, unsigned char const *p, size_t len) in crc32_le() argument 73 crc ^= *p++; in crc32_le() 75 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0); in crc32_le() 77 return crc; in crc32_le() 81 u32 crc32_le(u32 crc, unsigned char const *p, size_t len) in crc32_le() argument 88 # define DO_CRC(x) crc = tab[ (crc ^ (x)) & 255 ] ^ (crc>>8) in crc32_le() 90 # define DO_CRC(x) crc = tab[ ((crc >> 24) ^ (x)) & 255] ^ (crc<<8) in crc32_le() [all …]
|
/openbmc/linux/drivers/crypto/stm32/ |
H A D | stm32-crc32.c | 104 struct stm32_crc *crc; in stm32_crc_get_next_crc() local 107 crc = list_first_entry_or_null(&crc_list.dev_list, struct stm32_crc, list); in stm32_crc_get_next_crc() 108 if (crc) in stm32_crc_get_next_crc() 109 list_move_tail(&crc->list, &crc_list.dev_list); in stm32_crc_get_next_crc() 112 return crc; in stm32_crc_get_next_crc() 119 struct stm32_crc *crc; in stm32_crc_init() local 122 crc = stm32_crc_get_next_crc(); in stm32_crc_init() 123 if (!crc) in stm32_crc_init() 126 pm_runtime_get_sync(crc->dev); in stm32_crc_init() 128 spin_lock_irqsave(&crc->lock, flags); in stm32_crc_init() [all …]
|
/openbmc/openbmc/poky/meta/conf/machine/include/arm/ |
H A D | arch-armv8r.inc | 11 require conf/machine/include/arm/feature-arm-crc.inc 18 AVAILTUNES += "armv8r armv8r-crc armv8r-crypto armv8r-simd armv8r-crc-crypto armv8r-crc-simd armv8r… 20 ARMPKGARCH:tune-armv8r-crc = "armv8r" 23 ARMPKGARCH:tune-armv8r-crc-crypto = "armv8r" 24 ARMPKGARCH:tune-armv8r-crc-simd = "armv8r" 25 ARMPKGARCH:tune-armv8r-crc-crypto-simd = "armv8r" 27 TUNE_FEATURES:tune-armv8r-crc = "${TUNE_FEATURES:tune-armv8r} crc" 30 TUNE_FEATURES:tune-armv8r-crc-crypto = "${TUNE_FEATURES:tune-armv8r-crc} crypto" 31 TUNE_FEATURES:tune-armv8r-crc-simd = "${TUNE_FEATURES:tune-armv8r-crc} simd" 32 TUNE_FEATURES:tune-armv8r-crc-crypto-simd = "${TUNE_FEATURES:tune-armv8r-crc-crypto} simd" [all …]
|
H A D | arch-armv8a.inc | 1 DEFAULTTUNE ?= "armv8a-crc" 8 require conf/machine/include/arm/feature-arm-crc.inc 12 AVAILTUNES += "armv8a armv8a-crc armv8a-crc-crypto armv8a-crypto" 14 ARMPKGARCH:tune-armv8a-crc ?= "armv8a" 16 ARMPKGARCH:tune-armv8a-crc-crypto ?= "armv8a" 18 TUNE_FEATURES:tune-armv8a-crc = "${TUNE_FEATURES:tune-armv8a} crc" 20 TUNE_FEATURES:tune-armv8a-crc-crypto = "${TUNE_FEATURES:tune-armv8a-crc} crypto" 22 PACKAGE_EXTRA_ARCHS:tune-armv8a-crc = "${PACKAGE_EXTRA_ARCHS:tune-armv8a} armv8a-crc" 24 PACKAGE_EXTRA_ARCHS:tune-armv8a-crc-crypto = "${PACKAGE_EXTRA_ARCHS:tune-armv8a-crc} armv8a-crypto … 26 BASE_LIB:tune-armv8a-crc = "lib64" [all …]
|
/openbmc/linux/arch/mips/crypto/ |
H A D | crc32-mips.c | 46 #define __CRC32(crc, value, op, SZ, TYPE) \ argument 54 : "+r" (crc) \ 58 #define _CRC32_crc32b(crc, value) __CRC32(crc, value, crc32b, 0, 0) argument 59 #define _CRC32_crc32h(crc, value) __CRC32(crc, value, crc32h, 1, 0) argument 60 #define _CRC32_crc32w(crc, value) __CRC32(crc, value, crc32w, 2, 0) argument 61 #define _CRC32_crc32d(crc, value) __CRC32(crc, value, crc32d, 3, 0) argument 62 #define _CRC32_crc32cb(crc, value) __CRC32(crc, value, crc32cb, 0, 1) argument 63 #define _CRC32_crc32ch(crc, value) __CRC32(crc, value, crc32ch, 1, 1) argument 64 #define _CRC32_crc32cw(crc, value) __CRC32(crc, value, crc32cw, 2, 1) argument 65 #define _CRC32_crc32cd(crc, value) __CRC32(crc, value, crc32cd, 3, 1) argument [all …]
|
/openbmc/linux/arch/loongarch/crypto/ |
H A D | crc32-loongarch.c | 3 * crc32.c - CRC32 and CRC32C using LoongArch crc* instructions 18 #define _CRC32(crc, value, size, type) \ argument 22 : "+r" (crc) \ 27 #define CRC32(crc, value, size) _CRC32(crc, value, size, crc) argument 28 #define CRC32C(crc, value, size) _CRC32(crc, value, size, crcc) argument 32 u32 crc = crc_; in crc32_loongarch_hw() local 37 CRC32(crc, value, d); in crc32_loongarch_hw() 45 CRC32(crc, value, w); in crc32_loongarch_hw() 52 CRC32(crc, value, h); in crc32_loongarch_hw() 59 CRC32(crc, value, b); in crc32_loongarch_hw() [all …]
|
/openbmc/linux/fs/xfs/libxfs/ |
H A D | xfs_cksum.h | 8 * Calculate the intermediate checksum for a buffer that has the CRC field 9 * inside it. The offset of the 32bit crc fields is passed as the 11 * hence we have to split the CRC calculation across the cksum_offset. 17 uint32_t crc; in xfs_start_cksum_safe() local 19 /* Calculate CRC up to the checksum. */ in xfs_start_cksum_safe() 20 crc = crc32c(XFS_CRC_SEED, buffer, cksum_offset); in xfs_start_cksum_safe() 23 crc = crc32c(crc, &zero, sizeof(__u32)); in xfs_start_cksum_safe() 25 /* Calculate the rest of the CRC. */ in xfs_start_cksum_safe() 26 return crc32c(crc, &buffer[cksum_offset + sizeof(__be32)], in xfs_start_cksum_safe() 31 * Fast CRC method where the buffer is modified. Callers must have exclusive [all …]
|
/openbmc/linux/arch/powerpc/crypto/ |
H A D | crct10dif-vpmsum_glue.c | 3 * Calculate a CRC T10-DIF with vpmsum acceleration 9 #include <linux/crc-t10dif.h> 25 u32 __crct10dif_vpmsum(u32 crc, unsigned char const *p, size_t len); 31 u32 crc = crci; in crct10dif_vpmsum() local 34 return crc_t10dif_generic(crc, p, len); in crct10dif_vpmsum() 38 crc = crc_t10dif_generic(crc, p, prealign); in crct10dif_vpmsum() 44 crc <<= 16; in crct10dif_vpmsum() 48 crc = __crct10dif_vpmsum(crc, p, len & ~VMX_ALIGN_MASK); in crct10dif_vpmsum() 52 crc >>= 16; in crct10dif_vpmsum() 58 crc = crc_t10dif_generic(crc, p, tail); in crct10dif_vpmsum() [all …]
|
/openbmc/linux/arch/arm/crypto/ |
H A D | crc32-ce-glue.c | 3 * Accelerated CRC32(C) using ARM CRC, NEON and Crypto Extensions instructions 66 u32 *crc = shash_desc_ctx(desc); in crc32_init() local 68 *crc = *mctx; in crc32_init() 75 u32 *crc = shash_desc_ctx(desc); in crc32_update() local 77 *crc = crc32_armv8_le(*crc, data, length); in crc32_update() 84 u32 *crc = shash_desc_ctx(desc); in crc32c_update() local 86 *crc = crc32c_armv8_le(*crc, data, length); in crc32c_update() 92 u32 *crc = shash_desc_ctx(desc); in crc32_final() local 94 put_unaligned_le32(*crc, out); in crc32_final() 100 u32 *crc = shash_desc_ctx(desc); in crc32c_final() local [all …]
|
/openbmc/linux/tools/power/acpi/tools/acpidbg/ |
H A D | acpidbg.c | 123 static int acpi_aml_read(int fd, struct circ_buf *crc) in acpi_aml_read() argument 128 p = &crc->buf[crc->head]; in acpi_aml_read() 129 len = circ_space_to_end(crc); in acpi_aml_read() 134 crc->head = (crc->head + len) & (ACPI_AML_BUF_SIZE - 1); in acpi_aml_read() 138 static int acpi_aml_read_batch_cmd(int unused, struct circ_buf *crc) in acpi_aml_read_batch_cmd() argument 144 p = &crc->buf[crc->head]; in acpi_aml_read_batch_cmd() 145 len = circ_space_to_end(crc); in acpi_aml_read_batch_cmd() 155 crc->head = (crc->head + len) & (ACPI_AML_BUF_SIZE - 1); in acpi_aml_read_batch_cmd() 159 static int acpi_aml_read_batch_log(int fd, struct circ_buf *crc) in acpi_aml_read_batch_log() argument 165 p = &crc->buf[crc->head]; in acpi_aml_read_batch_log() [all …]
|
/openbmc/linux/arch/s390/crypto/ |
H A D | crc32-vx.c | 3 * Crypto-API module for CRC-32 algorithms implemented with the 31 u32 crc; member 35 u32 crc32_le_vgfm_16(u32 crc, unsigned char const *buf, size_t size); 36 u32 crc32_be_vgfm_16(u32 crc, unsigned char const *buf, size_t size); 37 u32 crc32c_le_vgfm_16(u32 crc, unsigned char const *buf, size_t size); 40 * DEFINE_CRC32_VX() - Define a CRC-32 function using the vector extension 42 * Creates a function to perform a particular CRC-32 computation. Depending 49 static u32 __pure ___fname(u32 crc, \ 56 return ___crc32_sw(crc, data, datalen); \ 62 crc = ___crc32_sw(crc, data, prealign); \ [all …]
|
/openbmc/u-boot/common/ |
H A D | ddr_spd.c | 71 int crc, i; in crc16() local 73 crc = 0; in crc16() 75 crc = crc ^ (int)*ptr++ << 8; in crc16() 77 if (crc & 0x8000) in crc16() 78 crc = crc << 1 ^ 0x1021; in crc16() 80 crc = crc << 1; in crc16() 82 return crc & 0xffff; in crc16() 95 * SPD byte0[7] - CRC coverage in ddr3_spd_check() 96 * 0 = CRC covers bytes 0~125 in ddr3_spd_check() 97 * 1 = CRC covers bytes 0~116 in ddr3_spd_check() [all …]
|
/openbmc/linux/Documentation/staging/ |
H A D | crc32.rst | 2 Brief tutorial on CRC computation 5 A CRC is a long-division remainder. You add the CRC to the message, 6 and the whole thing (message+CRC) is a multiple of the given 7 CRC polynomial. To check the CRC, you can either check that the 8 CRC matches the recomputed value, *or* you can check that the 9 remainder computed on the message+CRC is 0. This latter approach 11 protocols put the end-of-frame flag after the CRC. 21 To produce a 32-bit CRC, the divisor is actually a 33-bit CRC polynomial. 23 CRC is written in hex with the most significant bit omitted. (If you're 26 Note that a CRC is computed over a string of *bits*, so you have [all …]
|
/openbmc/linux/crypto/ |
H A D | crc64_rocksoft_generic.c | 10 u64 *crc = shash_desc_ctx(desc); in chksum_init() local 12 *crc = 0; in chksum_init() 20 u64 *crc = shash_desc_ctx(desc); in chksum_update() local 22 *crc = crc64_rocksoft_generic(*crc, data, length); in chksum_update() 29 u64 *crc = shash_desc_ctx(desc); in chksum_final() local 31 put_unaligned_le64(*crc, out); in chksum_final() 35 static int __chksum_finup(u64 crc, const u8 *data, unsigned int len, u8 *out) in __chksum_finup() argument 37 crc = crc64_rocksoft_generic(crc, data, len); in __chksum_finup() 38 put_unaligned_le64(crc, out); in __chksum_finup() 45 u64 *crc = shash_desc_ctx(desc); in chksum_finup() local [all …]
|
/openbmc/linux/arch/arm64/crypto/ |
H A D | crct10dif-ce-glue.c | 3 * Accelerated CRC-T10DIF using arm64 NEON and Crypto Extensions instructions 9 #include <linux/crc-t10dif.h> 28 u16 *crc = shash_desc_ctx(desc); in crct10dif_init() local 30 *crc = 0; in crct10dif_init() 37 u16 *crc = shash_desc_ctx(desc); in crct10dif_update_pmull_p8() local 47 *crc = crc_t10dif_pmull_p8(*crc, data, chunk); in crct10dif_update_pmull_p8() 53 *crc = crc_t10dif_generic(*crc, data, length); in crct10dif_update_pmull_p8() 62 u16 *crc = shash_desc_ctx(desc); in crct10dif_update_pmull_p64() local 72 *crc = crc_t10dif_pmull_p64(*crc, data, chunk); in crct10dif_update_pmull_p64() 78 *crc = crc_t10dif_generic(*crc, data, length); in crct10dif_update_pmull_p64() [all …]
|
/openbmc/linux/Documentation/w1/slaves/ |
H A D | w1_ds2423.rst | 27 memory page along the crc=YES or NO for indicating whether the read operation 28 was successful and CRC matched. 37 - 2 bytes for crc16 which was calculated from the data read since the previous crc bytes 39 - crc=YES/NO indicating whether read was ok and crc matched 44 … ff 00 00 fe ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff crc=YES c=2 45 … ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff crc=YES c=2 46 …0 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff crc=YES c=408798761 47 … ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff crc=YES c=5 49 example from the read with crc errors:: 51 … ff 00 00 fe ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff crc=YES c=2 [all …]
|
/openbmc/phosphor-ipmi-blobs/ |
H A D | process.cpp | 21 #include <ipmiblob/crc.hpp> 36 uint16_t crc; member 79 /* We don't include the command byte at offset 0 as part of the crc in validateBlobCommand() 80 * payload area or the crc bytes at the beginning. in validateBlobCommand() 88 * Get the first two bytes of the request for crc. in validateBlobCommand() 90 uint16_t crc; in validateBlobCommand() local 91 if (data.size() < sizeof(crc)) in validateBlobCommand() 97 std::memcpy(&crc, data.data(), sizeof(crc)); in validateBlobCommand() 99 /* Set the in-place CRC to zero. in validateBlobCommand() 100 * Remove the first two bytes for crc and get the reset of the request. in validateBlobCommand() [all …]
|
/openbmc/u-boot/lib/ |
H A D | crc32.c | 6 /* crc32.c -- compute the CRC-32 of a data stream 18 #include <u-boot/crc.h> 39 Generate a table for a byte-wise 32-bit CRC calculation on the polynomial: 47 byte 0xb1 is the polynomial x^7+x^3+x+1), then the CRC is (q*x^32) mod p, 58 The table is simply the CRC of all possible eight bit values. This is all 59 the information needed to generate CRC's on data a byte at a time for all 60 combinations of CRC register values and incoming bytes. 67 /* terms of polynomial defining this crc (except x^32): */ in make_crc_table() 87 * Table of CRC-32's of all single-byte values (made by make_crc_table) 173 # define DO_CRC(x) crc = tab[(crc ^ (x)) & 255] ^ (crc >> 8) [all …]
|
/openbmc/qemu/include/qemu/ |
H A D | crc-ccitt.h | 9 * From Linux kernel v5.10 include/linux/crc-ccitt.h 20 uint16_t crc_ccitt(uint16_t crc, const uint8_t *buffer, size_t len); 21 uint16_t crc_ccitt_false(uint16_t crc, const uint8_t *buffer, size_t len); 23 static inline uint16_t crc_ccitt_byte(uint16_t crc, const uint8_t c) in crc_ccitt_byte() argument 25 return (crc >> 8) ^ crc_ccitt_table[(crc ^ c) & 0xff]; in crc_ccitt_byte() 28 static inline uint16_t crc_ccitt_false_byte(uint16_t crc, const uint8_t c) in crc_ccitt_false_byte() argument 30 return (crc << 8) ^ crc_ccitt_false_table[(crc >> 8) ^ c]; in crc_ccitt_false_byte()
|