Home
last modified time | relevance | path

Searched refs:fcs (Results 1 – 17 of 17) sorted by relevance

/openbmc/libmctp/
H A Dcrc-16-ccitt.c46 uint16_t crc_16_ccitt(uint16_t fcs, const uint8_t *cp, uint32_t len) in crc_16_ccitt() argument
49 fcs = crc_16_ccitt_byte(fcs, *cp++); in crc_16_ccitt()
51 return fcs; in crc_16_ccitt()
54 uint16_t crc_16_ccitt_byte(uint16_t fcs, const uint8_t c) in crc_16_ccitt_byte() argument
56 return (fcs >> 8) ^ crc_16_ccitt_table[(fcs ^ c) & 0xff]; in crc_16_ccitt_byte()
H A Dcrc-16-ccitt.h10 uint16_t crc_16_ccitt(uint16_t fcs, const uint8_t *cp, uint32_t len);
12 uint16_t crc_16_ccitt_byte(uint16_t fcs, const uint8_t c);
H A Dserial.c154 uint16_t fcs; in mctp_binding_serial_tx() local
166 fcs = crc_16_ccitt(FCS_INIT_16, (const uint8_t *)hdr + 1, 2); in mctp_binding_serial_tx()
167 fcs = crc_16_ccitt(fcs, (const uint8_t *)mctp_pktbuf_hdr(pkt), len); in mctp_binding_serial_tx()
181 tlr->fcs_msb = fcs >> 8; in mctp_binding_serial_tx()
182 tlr->fcs_lsb = fcs & 0xff; in mctp_binding_serial_tx()
/openbmc/u-boot/doc/device-tree-bindings/regulator/
H A Dfan53555.txt4 - compatible: "fcs,fan53555"
8 - fcs,suspend-voltage-selector: declare which of the two available
17 compatible = "fcs,fan53555";
22 fcs,suspend-voltage-selector = <1>;
/openbmc/u-boot/arch/arm/dts/
H A Drk3399-puma.dtsi212 compatible = "fcs,fan53555";
221 fcs,suspend-voltage-selector = <1>;
415 compatible = "fcs,fan53555";
424 fcs,suspend-voltage-selector = <1>;
H A Drk3288-rock2-som.dtsi211 fcs,suspend-voltage-selector = <1>;
225 fcs,suspend-voltage-selector = <1>;
H A Drk3288-evb.dtsi182 fcs,suspend-voltage-selector = <1>;
194 fcs,suspend-voltage-selector = <1>;
H A Drk3288-miqi.dtsi137 fcs,suspend-voltage-selector = <1>;
151 fcs,suspend-voltage-selector = <1>;
H A Drk3288-firefly.dtsi173 fcs,suspend-voltage-selector = <1>;
185 fcs,suspend-voltage-selector = <1>;
H A Drk3399-rock960.dtsi114 fcs,suspend-voltage-selector = <1>;
132 fcs,suspend-voltage-selector = <1>;
H A Drk3288-phycore-som.dtsi395 compatible = "fcs,fan53555";
397 fcs,suspend-voltage-selector = <1>;
H A Drk3399-firefly.dts410 fcs,suspend-voltage-selector = <0>;
427 fcs,suspend-voltage-selector = <1>;
/openbmc/qemu/hw/net/
H A Dvmxnet3.h416 u32 fcs:1; /* Frame CRC correct */ member
434 u32 fcs:1; /* Frame CRC correct */
H A Dpcnet.c1060 uint32_t fcs = ~0; in pcnet_receive() local
1064 CRC(fcs, *p++); in pcnet_receive()
1065 *(uint32_t *)p = htonl(fcs); in pcnet_receive()
1068 uint32_t fcs = ~0; in pcnet_receive() local
1072 CRC(fcs, *p++); in pcnet_receive()
1073 crc_err = (*(uint32_t *)p != htonl(fcs)); in pcnet_receive()
H A Dvmxnet3.c918 rxcd->fcs = rxcd->tuc = rxcd->ipc = 1; in vmxnet3_rx_update_descr()
/openbmc/qemu/linux-user/i386/
H A Dsignal.c43 uint32_t fcs; member
/openbmc/qemu/target/i386/
H A Dcpu.h1662 uint32_t fcs; member