bus/dpaa: fix Rx discard register mask
authorShreyansh Jain <shreyansh.jain@nxp.com>
Fri, 22 Feb 2019 10:09:44 +0000 (10:09 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 29 Mar 2019 13:33:21 +0000 (14:33 +0100)
Current value of 'fmbm_rfsdm' register (0x010CE3F0) doesn't include
the bit to drop colored (red) packets. New value (0x010EE3F0) fixes
this.
Check with 'fmbm_rffc' register of fm_port_bmi_regs.

Fixes: 6d6b4f49a155 ("bus/dpaa: add FMAN hardware operations")
Cc: stable@dpdk.org
Signed-off-by: Shreyansh Jain <shreyansh.jain@nxp.com>
drivers/bus/dpaa/base/fman/fman_hw.c

index 4ebbc3d..9ab8e83 100644 (file)
@@ -603,9 +603,9 @@ fman_if_discard_rx_errors(struct fman_if *fm_if)
        out_be32(fmbm_rfsem, 0);
 
        /* Configure the discard mask to discard the error packets which have
-        * DMA errors, Frame size error, Header error etc. The mask 0x010CE3F0
+        * DMA errors, Frame size error, Header error etc. The mask 0x010EE3F0
         * is to configured discard all the errors which come in the FD[STATUS]
         */
        fmbm_rfsdm = &((struct rx_bmi_regs *)__if->bmi_map)->fmbm_rfsdm;
-       out_be32(fmbm_rfsdm, 0x010CE3F0);
+       out_be32(fmbm_rfsdm, 0x010EE3F0);
 }