MLK-16374-3: PxP: improve stride parameter setting compatible
authorGuoniu.Zhou <guoniu.zhou@nxp.com>
Wed, 6 Sep 2017 06:23:13 +0000 (14:23 +0800)
committerNitin Garg <nitin.garg@nxp.com>
Mon, 19 Mar 2018 20:38:30 +0000 (15:38 -0500)
In pxp lib, the unit of stride parameter is pixel and stride
is not equal with width parameter of out buffer in some cases.

In order to use latest pxp lib in old version rootfs, PXP_DEVICE_LEGACY
macro is used to distinguish pxp drvier version. Because the
new pxp driver define a new variable and pxp lib can know this
through PXP_DEVICE_LEGACY, and determine if use it.

Signed-off-by: Guoniu.Zhou <guoniu.zhou@nxp.com>
Reviewed-by: Fancy Fang <chen.fang@nxp.com>
(cherry picked from commit 91da74e81cfdd2774b39a7574edf93de3f2a3f25)

drivers/dma/pxp/pxp_dma_v3.c
include/uapi/linux/pxp_dma.h

index b4886d0..4787071 100644 (file)
@@ -198,6 +198,7 @@ static struct pxp_collision_info col_info;
 static dma_addr_t paddr;
 static bool v3p_flag;
 static int alpha_blending_version;
+static bool pxp_legacy;
 
 struct pxp_dma {
        struct dma_device dma;
@@ -3618,10 +3619,15 @@ static int convert_param_to_pixmap(struct pxp_pixmap *pixmap,
        pixmap->paddr  = param->paddr;
        pixmap->bpp    = get_bpp_from_fmt(pixmap->format);
 
-       if (!param->stride || (param->stride == param->width))
-               pixmap->pitch  = param->width * pixmap->bpp >> 3;
-       else
-               pixmap->pitch = param->stride;
+       if (pxp_legacy) {
+               pixmap->pitch = (param->stride) ? (param->stride * pixmap->bpp >> 3) :
+                                               (param->width * pixmap->bpp >> 3);
+       } else {
+               if (!param->stride || (param->stride == param->width))
+                       pixmap->pitch  = param->width * pixmap->bpp >> 3;
+               else
+                       pixmap->pitch = param->stride;
+       }
 
        pixmap->crop.x = param->crop.left;
        pixmap->crop.y = param->crop.top;
@@ -3675,6 +3681,8 @@ static void __pxpdma_dostart(struct pxp_channel *pxp_chan)
        else
                alpha_blending_version = PXP_ALPHA_BLENDING_NONE;
 
+       pxp_legacy = (proc_data->pxp_legacy) ? true : false;
+
        /* Save PxP configuration */
        list_for_each_entry(child, &desc->tx_list, list) {
                if (i == 0) {   /* Output */
index 4b0b4f0..76983ab 100644 (file)
@@ -127,6 +127,8 @@ typedef unsigned char bool;
 #define ALPHA_MODE_LEGACY      0x2
 #define ALPHA_MODE_PORTER_DUFF 0x3
 
+#define PXP_DEVICE_LEGACY
+
 /* Order significant! */
 enum pxp_channel_status {
        PXP_CHANNEL_FREE,
@@ -313,6 +315,7 @@ struct pxp_proc_data {
        bool reagl_en;          /* enable reagl/-d */
        bool reagl_d_en;        /* enable reagl or reagl-d */
        bool detection_only;
+       bool pxp_legacy;
        int lut;
        bool lut_cleanup;
        unsigned int lut_status_1;