Home
last modified time | relevance | path

Searched refs:crc8 (Results 1 – 18 of 18) sorted by relevance

/kernel/linux/linux-5.10/net/can/
Dgw.c104 struct cgw_csum_crc8 crc8; member
109 void (*crc8)(struct canfd_frame *cf, member
110 struct cgw_csum_crc8 *crc8);
303 struct cgw_csum_crc8 *crc8) in cgw_csum_crc8_rel() argument
305 int from = calc_idx(crc8->from_idx, cf->len); in cgw_csum_crc8_rel()
306 int to = calc_idx(crc8->to_idx, cf->len); in cgw_csum_crc8_rel()
307 int res = calc_idx(crc8->result_idx, cf->len); in cgw_csum_crc8_rel()
308 u8 crc = crc8->init_crc_val; in cgw_csum_crc8_rel()
315 for (i = crc8->from_idx; i <= crc8->to_idx; i++) in cgw_csum_crc8_rel()
316 crc = crc8->crctab[crc ^ cf->data[i]]; in cgw_csum_crc8_rel()
[all …]
/kernel/linux/linux-5.10/drivers/w1/slaves/
Dw1_ds250x.c52 u8 crc8; in w1_ds2502_read_page() local
67 crc8 = w1_read_8(sl->master); in w1_ds2502_read_page()
68 if (w1_calc_crc8(buf, 3) != crc8) in w1_ds2502_read_page()
73 crc8 = w1_read_8(sl->master); in w1_ds2502_read_page()
74 if (w1_calc_crc8(&data->eprom[pgoff], W1_PAGE_SIZE) != crc8) in w1_ds2502_read_page()
/kernel/linux/linux-5.10/lib/
Dcrc8.c74 u8 crc8(const u8 table[CRC8_TABLE_SIZE], u8 *pdata, size_t nbytes, u8 crc) in crc8() function
82 EXPORT_SYMBOL(crc8);
DMakefile174 obj-$(CONFIG_CRC8) += crc8.o
DKconfig244 algorithm. Module will be called crc8.
/kernel/linux/linux-5.10/drivers/iio/chemical/
Dscd30_i2c.c82 crc = crc8(scd30_i2c_crc8_tbl, buf + i, 2, CRC8_INIT_VALUE); in scd30_i2c_command()
98 crc = crc8(scd30_i2c_crc8_tbl, buf + i, 2, CRC8_INIT_VALUE); in scd30_i2c_command()
Dsps30.c110 buf[4] = crc8(sps30_crc8_table, &buf[2], 2, CRC8_INIT_VALUE); in sps30_do_cmd()
132 buf[4] = crc8(sps30_crc8_table, &buf[2], 2, CRC8_INIT_VALUE); in sps30_do_cmd()
135 buf[7] = crc8(sps30_crc8_table, &buf[5], 2, CRC8_INIT_VALUE); in sps30_do_cmd()
145 u8 crc = crc8(sps30_crc8_table, &buf[i], 2, CRC8_INIT_VALUE); in sps30_do_cmd()
Dsgp30.c85 u8 crc8; member
212 crc = crc8(sgp_crc8_table, &data_buf[i], SGP_WORD_LEN, in sgp_verify_buffer()
/kernel/linux/linux-5.10/include/linux/
Dcrc8.h99 u8 crc8(const u8 table[CRC8_TABLE_SIZE], u8 *pdata, size_t nbytes, u8 crc);
/kernel/linux/linux-5.10/drivers/hwmon/pmbus/
Dadm1266.c122 crc = crc8(pmbus_crc_table, &addr, 1, 0); in adm1266_pmbus_block_xfer()
123 crc = crc8(pmbus_crc_table, msgs[0].buf, msgs[0].len, crc); in adm1266_pmbus_block_xfer()
126 crc = crc8(pmbus_crc_table, &addr, 1, crc); in adm1266_pmbus_block_xfer()
127 crc = crc8(pmbus_crc_table, msgs[1].buf, msgs[1].buf[0] + 1, crc); in adm1266_pmbus_block_xfer()
/kernel/linux/linux-5.10/drivers/i2c/
Di2c-core-smbus.c28 static u8 crc8(u16 data) in crc8() function
46 crc = crc8((crc ^ p[i]) << 8); in i2c_smbus_pec()
/kernel/linux/linux-5.10/drivers/gpio/
Dgpio-max3191x.c141 val = (status & 0xf8) != crc8(max3191x_crc8, &in, 1, 0); in max3191x_readout_locked()
/kernel/linux/linux-5.10/drivers/iio/pressure/
Dicp10100.c180 crc = crc8(icp10100_crc8_table, ptr, ICP10100_CRC8_WORD_LENGTH, in icp10100_send_cmd()
/kernel/linux/linux-5.10/drivers/hwmon/
Dsht3x.c369 *position = crc8(sht3x_crc8_table, in limit_store()
/kernel/linux/linux-5.10/Documentation/core-api/
Dkernel-api.rst133 .. kernel-doc:: lib/crc8.c
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/i40e/
Di40e_type.h1389 u16 crc8; member
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/
Dqed_init_fw_funcs.c1409 crc = crc8(cdu_crc8_table, (u8 *)&data_to_crc, sizeof(data_to_crc), in qed_calc_cdu_validation_byte()
/kernel/linux/linux-5.10/drivers/net/ethernet/marvell/
Dmvneta.c2961 unsigned char crc8, in mvneta_set_other_mcast_addr() argument
2968 tbl_offset = (crc8 / 4) * 4; /* Register offset from OMC table base */ in mvneta_set_other_mcast_addr()
2969 reg_offset = crc8 % 4; /* Entry offset within the above reg */ in mvneta_set_other_mcast_addr()