diff options
author | Robby Cai <R63905@freescale.com> | 2012-09-28 17:25:25 +0800 |
---|---|---|
committer | Robby Cai <R63905@freescale.com> | 2012-09-29 16:55:45 +0800 |
commit | 7fe48151a655246ce4b6d6b53a34c946d18a1d37 (patch) | |
tree | faed3c402bce5783a72fecdb480f0ea12f976e1b | |
parent | 4bac7fa77ebfc6300c6c63af8dd1887c7a0b5e7c (diff) | |
download | linux-7fe48151a655246ce4b6d6b53a34c946d18a1d37.tar.gz |
ENGR00225981-2 pxp: fix the coefficient for the YCbCr-RGB CSC
Fix the coefficient for the YCbCr-RGB Color space conversion.
Signed-off-by: Robby Cai <R63905@freescale.com>
-rw-r--r-- | drivers/dma/pxp/pxp_dma_v2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/pxp/pxp_dma_v2.c b/drivers/dma/pxp/pxp_dma_v2.c index 90e675d979ec..b74f62cac032 100644 --- a/drivers/dma/pxp/pxp_dma_v2.c +++ b/drivers/dma/pxp/pxp_dma_v2.c @@ -657,7 +657,7 @@ static void pxp_set_csc(struct pxps *pxp) /* CSC1 - YUV->RGB */ __raw_writel(0x84ab01f0, pxp->base + HW_PXP_CSC1_COEF0); - __raw_writel(0x01230204, pxp->base + HW_PXP_CSC1_COEF1); + __raw_writel(0x01980204, pxp->base + HW_PXP_CSC1_COEF1); __raw_writel(0x0730079c, pxp->base + HW_PXP_CSC1_COEF2); /* CSC2 - Bypass */ |