Add cqe and chksum treatment of the compressdev.<br /> <br />Signed-off-by: Hanxiao Li <li.hanxiao@zte.com.cn> <br />---<br /> drivers/compress/zsda/zsda_comp.c | 160 ++++++++++++++++++++++++++++++<br /> drivers/compress/zsda/zsda_comp.h |   8 ++<br /> 2 files changed, 168 insertions(+)<br /> <br />diff --git a/drivers/compress/zsda/zsda_comp.c b/drivers/compress/zsda/zsda_comp.c<br />index 9f1b237c1f..9af5cb5792 100644<br />--- a/drivers/compress/zsda/zsda_comp.c<br />+++ b/drivers/compress/zsda/zsda_comp.c<br />@@ -8,6 +8,88 @@<br /> #define ZLIB_TRAILER_SIZE 4<br /> #define GZIP_HEADER_SIZE 10<br /> #define GZIP_TRAILER_SIZE 8<br />+#define CHECKSUM_SIZE 4<br />+<br />+static uint32_t zsda_read_chksum(uint8_t *data_addr, uint8_t op_code,<br />+                 uint32_t produced);<br />+<br />+<br />+#define POLYNOMIAL 0xEDB88320<br />+static uint32_t crc32_table[8][256];<br />+static int table_config;<br />+<br />+static void<br />+build_crc32_table(void)<br />+{<br />+    for (uint32_t i = 0; i < 256; i++) {<br />+        uint32_t crc = i;<br />+        for (uint32_t j = 0; j < 8; j++)<br />+            crc = (crc >> 1) ^ ((crc & 1) ? POLYNOMIAL : 0);<br />+        crc32_table[0][i] = crc;<br />+    }<br />+<br />+    for (int i = 1; i < 8; i++) {<br />+        for (uint32_t j = 0; j < 256; j++)<br />+            crc32_table[i][j] = (crc32_table[i-1][j] >> 8) ^<br />+                    crc32_table[0][crc32_table[i-1][j] & 0xFF];<br />+    }<br />+    table_config = 1;<br />+}<br />+<br />+static uint32_t<br />+zsda_crc32(const uint8_t *data, size_t length)<br />+{<br />+    uint32_t crc = 0xFFFFFFFF;<br />+<br />+    if (!table_config)<br />+        build_crc32_table();<br />+<br />+    while (length >= 8) {<br />+        crc ^= *(const uint32_t *)data;<br />+        crc = crc32_table[7][crc & 0xFF] ^<br />+              crc32_table[6][(crc >> 8) & 0xFF] ^<br />+              crc32_table[5][(crc >> 16) & 0xFF] ^<br />+              crc32_table[4][(crc >> 24) & 0xFF] ^<br />+              crc32_table[3][data[4]] ^<br />+              crc32_table[2][data[5]] ^<br />+              crc32_table[1][data[6]] ^<br />+              crc32_table[0][data[7]];<br />+<br />+        data += 8;<br />+        length -= 8;<br />+    }<br />+<br />+    for (size_t i = 0; i < length; i++)<br />+        crc = (crc >> 8) ^ crc32_table[0][(crc ^ data[i]) & 0xFF];<br />+<br />+    return crc ^ 0xFFFFFFFF;<br />+}<br />+<br />+#define MOD_ADLER 65521<br />+#define NMAX 5552<br />+static uint32_t<br />+zsda_adler32(const uint8_t *buf, uint32_t len)<br />+{<br />+    uint32_t s1 = 1;<br />+    uint32_t s2 = 0;<br />+<br />+    while (len > 0) {<br />+        uint32_t k = (len < NMAX) ? len : NMAX;<br />+        len -= k;<br />+<br />+        for (uint32_t i = 0; i < k; i++) {<br />+            s1 += buf[i];<br />+            s2 += s1;<br />+        }<br />+<br />+        s1 %= MOD_ADLER;<br />+        s2 %= MOD_ADLER;<br />+<br />+        buf += k;<br />+    }<br />+<br />+    return (s2 << 16) | s1;<br />+}<br />  <br /> int<br /> zsda_comp_match(const void *op_in)<br />@@ -230,3 +312,81 @@ zsda_build_decomp_request(void *op_in, const struct zsda_queue *queue,<br />  <br />     return ret;<br /> }<br />+<br />+int<br />+zsda_comp_callback(void *cookie_in, struct zsda_cqe *cqe)<br />+{<br />+    struct zsda_op_cookie *tmp_cookie = cookie_in;<br />+    struct rte_comp_op *tmp_op = tmp_cookie->op;<br />+    uint8_t *data_addr =<br />+        (uint8_t *)tmp_op->m_dst->buf_addr + tmp_op->m_dst->data_off;<br />+    uint32_t chksum = 0;<br />+    uint16_t head_len;<br />+    uint16_t tail_len;<br />+<br />+    if (tmp_cookie->decomp_no_tail && CQE_ERR0_RIGHT(cqe->err0))<br />+        cqe->err0 = 0x0000;<br />+<br />+    if (!(CQE_ERR0(cqe->err0) || CQE_ERR1(cqe->err1)))<br />+        tmp_op->status = RTE_COMP_OP_STATUS_SUCCESS;<br />+    else {<br />+        tmp_op->status = RTE_COMP_OP_STATUS_ERROR;<br />+        return ZSDA_FAILED;<br />+    }<br />+<br />+    /* handle chksum */<br />+    tmp_op->produced = cqe->tx_real_length;<br />+    if (cqe->op_code == ZSDA_OPC_COMP_ZLIB) {<br />+        head_len = ZLIB_HEADER_SIZE;<br />+        tail_len = ZLIB_TRAILER_SIZE;<br />+        chksum = zsda_read_chksum(data_addr, cqe->op_code,<br />+                          tmp_op->produced - head_len);<br />+    }<br />+    if (cqe->op_code == ZSDA_OPC_COMP_GZIP) {<br />+        head_len = GZIP_HEADER_SIZE;<br />+        tail_len = GZIP_TRAILER_SIZE;<br />+        chksum = zsda_read_chksum(data_addr, cqe->op_code,<br />+                          tmp_op->produced - head_len);<br />+    } else if (cqe->op_code == ZSDA_OPC_DECOMP_ZLIB) {<br />+        head_len = ZLIB_HEADER_SIZE;<br />+        tail_len = ZLIB_TRAILER_SIZE;<br />+        chksum = zsda_adler32(data_addr, tmp_op->produced);<br />+    } else if (cqe->op_code == ZSDA_OPC_DECOMP_GZIP) {<br />+        head_len = GZIP_HEADER_SIZE;<br />+        tail_len = GZIP_TRAILER_SIZE;<br />+        chksum = zsda_crc32(data_addr, tmp_op->produced);<br />+    }<br />+    tmp_op->output_chksum = chksum;<br />+<br />+    if (cqe->op_code == ZSDA_OPC_COMP_ZLIB ||<br />+        cqe->op_code == ZSDA_OPC_COMP_GZIP) {<br />+        /* remove tail data*/<br />+        rte_pktmbuf_trim(tmp_op->m_dst, GZIP_TRAILER_SIZE);<br />+        /* remove head and tail length */<br />+        tmp_op->produced = tmp_op->produced - (head_len + tail_len);<br />+    }<br />+<br />+    return ZSDA_SUCCESS;<br />+}<br />+<br />+static uint32_t<br />+zsda_read_chksum(uint8_t *data_addr, uint8_t op_code, uint32_t produced)<br />+{<br />+    uint8_t *chk_addr;<br />+    uint32_t chksum = 0;<br />+    int i = 0;<br />+<br />+    if (op_code == ZSDA_OPC_COMP_ZLIB) {<br />+        chk_addr = data_addr + produced - ZLIB_TRAILER_SIZE;<br />+        for (i = 0; i < CHECKSUM_SIZE; i++) {<br />+            chksum = chksum << 8;<br />+            chksum |= (*(chk_addr + i));<br />+        }<br />+    } else if (op_code == ZSDA_OPC_COMP_GZIP) {<br />+        chk_addr = data_addr + produced - GZIP_TRAILER_SIZE;<br />+        for (i = 0; i < CHECKSUM_SIZE; i++)<br />+            chksum |= (*(chk_addr + i) << (i * 8));<br />+    }<br />+<br />+    return chksum;<br />+}<br />diff --git a/drivers/compress/zsda/zsda_comp.h b/drivers/compress/zsda/zsda_comp.h<br />index 8a4dd29865..b0238a6a2a 100644<br />--- a/drivers/compress/zsda/zsda_comp.h<br />+++ b/drivers/compress/zsda/zsda_comp.h<br />@@ -33,6 +33,14 @@ struct zsda_wqe_comp {<br />     struct compress_cfg cfg;<br /> } __rte_packed;<br />  <br />+/* For situations where err0 are reported but the results are correct */<br />+#define DECOMP_RIGHT_ERR0_0 0xc710<br />+#define DECOMP_RIGHT_ERR0_1 0xc727<br />+#define DECOMP_RIGHT_ERR0_2 0xc729<br />+#define CQE_ERR0_RIGHT(value)                                                  \<br />+    (value == DECOMP_RIGHT_ERR0_0 || value == DECOMP_RIGHT_ERR0_1 ||       \<br />+     value == DECOMP_RIGHT_ERR0_2)<br />+<br /> int zsda_comp_match(const void *op_in);<br /> int zsda_build_comp_request(void *op_in, const struct zsda_queue *queue,<br />                void **op_cookies, const uint16_t new_tail);<br />--  <br />2.27.0<br />