]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/dma/pxp/pxp_dma_v2.c
9102dd6abeabb4ec6d0c6b51744c5d0aab8a79e5
[karo-tx-linux.git] / drivers / dma / pxp / pxp_dma_v2.c
1 /*
2  * Copyright (C) 2010-2013 Freescale Semiconductor, Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17  *
18  */
19 /*
20  * Based on STMP378X PxP driver
21  * Copyright 2008-2009 Embedded Alley Solutions, Inc All Rights Reserved.
22  */
23
24 #include <linux/dma-mapping.h>
25 #include <linux/init.h>
26 #include <linux/interrupt.h>
27 #include <linux/io.h>
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <linux/mutex.h>
31 #include <linux/platform_device.h>
32 #include <linux/slab.h>
33 #include <linux/vmalloc.h>
34 #include <linux/dmaengine.h>
35 #include <linux/pxp_dma.h>
36 #include <linux/timer.h>
37 #include <linux/clk.h>
38 #include <linux/workqueue.h>
39 #include <linux/sched.h>
40 #include <linux/of.h>
41 #include <linux/kthread.h>
42
43 #include "regs-pxp_v2.h"
44
45 #define PXP_DOWNSCALE_THRESHOLD         0x4000
46
47 static LIST_HEAD(head);
48 static int timeout_in_ms = 600;
49 static unsigned int block_size;
50 static struct kmem_cache *tx_desc_cache;
51
52 struct pxp_dma {
53         struct dma_device dma;
54 };
55
56 struct pxps {
57         struct platform_device *pdev;
58         struct clk *clk;
59         void __iomem *base;
60         int irq;                /* PXP IRQ to the CPU */
61
62         spinlock_t lock;
63         struct mutex clk_mutex;
64         int clk_stat;
65 #define CLK_STAT_OFF            0
66 #define CLK_STAT_ON             1
67         int pxp_ongoing;
68         int lut_state;
69
70         struct device *dev;
71         struct pxp_dma pxp_dma;
72         struct pxp_channel channel[NR_PXP_VIRT_CHANNEL];
73         struct work_struct work;
74
75         /* describes most recent processing configuration */
76         struct pxp_config_data pxp_conf_state;
77
78         /* to turn clock off when pxp is inactive */
79         struct timer_list clk_timer;
80
81         /* for pxp config dispatch asynchronously*/
82         struct task_struct *dispatch;
83         wait_queue_head_t thread_waitq;
84         struct completion complete;
85 };
86
87 #define to_pxp_dma(d) container_of(d, struct pxp_dma, dma)
88 #define to_tx_desc(tx) container_of(tx, struct pxp_tx_desc, txd)
89 #define to_pxp_channel(d) container_of(d, struct pxp_channel, dma_chan)
90 #define to_pxp(id) container_of(id, struct pxps, pxp_dma)
91
92 #define PXP_DEF_BUFS    2
93 #define PXP_MIN_PIX     8
94
95 static uint32_t pxp_s0_formats[] = {
96         PXP_PIX_FMT_RGB32,
97         PXP_PIX_FMT_RGB565,
98         PXP_PIX_FMT_RGB555,
99         PXP_PIX_FMT_YUV420P,
100         PXP_PIX_FMT_YUV422P,
101 };
102
103 /*
104  * PXP common functions
105  */
106 static void dump_pxp_reg(struct pxps *pxp)
107 {
108         dev_dbg(pxp->dev, "PXP_CTRL 0x%x",
109                 __raw_readl(pxp->base + HW_PXP_CTRL));
110         dev_dbg(pxp->dev, "PXP_STAT 0x%x",
111                 __raw_readl(pxp->base + HW_PXP_STAT));
112         dev_dbg(pxp->dev, "PXP_OUT_CTRL 0x%x",
113                 __raw_readl(pxp->base + HW_PXP_OUT_CTRL));
114         dev_dbg(pxp->dev, "PXP_OUT_BUF 0x%x",
115                 __raw_readl(pxp->base + HW_PXP_OUT_BUF));
116         dev_dbg(pxp->dev, "PXP_OUT_BUF2 0x%x",
117                 __raw_readl(pxp->base + HW_PXP_OUT_BUF2));
118         dev_dbg(pxp->dev, "PXP_OUT_PITCH 0x%x",
119                 __raw_readl(pxp->base + HW_PXP_OUT_PITCH));
120         dev_dbg(pxp->dev, "PXP_OUT_LRC 0x%x",
121                 __raw_readl(pxp->base + HW_PXP_OUT_LRC));
122         dev_dbg(pxp->dev, "PXP_OUT_PS_ULC 0x%x",
123                 __raw_readl(pxp->base + HW_PXP_OUT_PS_ULC));
124         dev_dbg(pxp->dev, "PXP_OUT_PS_LRC 0x%x",
125                 __raw_readl(pxp->base + HW_PXP_OUT_PS_LRC));
126         dev_dbg(pxp->dev, "PXP_OUT_AS_ULC 0x%x",
127                 __raw_readl(pxp->base + HW_PXP_OUT_AS_ULC));
128         dev_dbg(pxp->dev, "PXP_OUT_AS_LRC 0x%x",
129                 __raw_readl(pxp->base + HW_PXP_OUT_AS_LRC));
130         dev_dbg(pxp->dev, "PXP_PS_CTRL 0x%x",
131                 __raw_readl(pxp->base + HW_PXP_PS_CTRL));
132         dev_dbg(pxp->dev, "PXP_PS_BUF 0x%x",
133                 __raw_readl(pxp->base + HW_PXP_PS_BUF));
134         dev_dbg(pxp->dev, "PXP_PS_UBUF 0x%x",
135                 __raw_readl(pxp->base + HW_PXP_PS_UBUF));
136         dev_dbg(pxp->dev, "PXP_PS_VBUF 0x%x",
137                 __raw_readl(pxp->base + HW_PXP_PS_VBUF));
138         dev_dbg(pxp->dev, "PXP_PS_PITCH 0x%x",
139                 __raw_readl(pxp->base + HW_PXP_PS_PITCH));
140         dev_dbg(pxp->dev, "PXP_PS_BACKGROUND 0x%x",
141                 __raw_readl(pxp->base + HW_PXP_PS_BACKGROUND));
142         dev_dbg(pxp->dev, "PXP_PS_SCALE 0x%x",
143                 __raw_readl(pxp->base + HW_PXP_PS_SCALE));
144         dev_dbg(pxp->dev, "PXP_PS_OFFSET 0x%x",
145                 __raw_readl(pxp->base + HW_PXP_PS_OFFSET));
146         dev_dbg(pxp->dev, "PXP_PS_CLRKEYLOW 0x%x",
147                 __raw_readl(pxp->base + HW_PXP_PS_CLRKEYLOW));
148         dev_dbg(pxp->dev, "PXP_PS_CLRKEYHIGH 0x%x",
149                 __raw_readl(pxp->base + HW_PXP_PS_CLRKEYHIGH));
150         dev_dbg(pxp->dev, "PXP_AS_CTRL 0x%x",
151                 __raw_readl(pxp->base + HW_PXP_AS_CTRL));
152         dev_dbg(pxp->dev, "PXP_AS_BUF 0x%x",
153                 __raw_readl(pxp->base + HW_PXP_AS_BUF));
154         dev_dbg(pxp->dev, "PXP_AS_PITCH 0x%x",
155                 __raw_readl(pxp->base + HW_PXP_AS_PITCH));
156         dev_dbg(pxp->dev, "PXP_AS_CLRKEYLOW 0x%x",
157                 __raw_readl(pxp->base + HW_PXP_AS_CLRKEYLOW));
158         dev_dbg(pxp->dev, "PXP_AS_CLRKEYHIGH 0x%x",
159                 __raw_readl(pxp->base + HW_PXP_AS_CLRKEYHIGH));
160         dev_dbg(pxp->dev, "PXP_CSC1_COEF0 0x%x",
161                 __raw_readl(pxp->base + HW_PXP_CSC1_COEF0));
162         dev_dbg(pxp->dev, "PXP_CSC1_COEF1 0x%x",
163                 __raw_readl(pxp->base + HW_PXP_CSC1_COEF1));
164         dev_dbg(pxp->dev, "PXP_CSC1_COEF2 0x%x",
165                 __raw_readl(pxp->base + HW_PXP_CSC1_COEF2));
166         dev_dbg(pxp->dev, "PXP_CSC2_CTRL 0x%x",
167                 __raw_readl(pxp->base + HW_PXP_CSC2_CTRL));
168         dev_dbg(pxp->dev, "PXP_CSC2_COEF0 0x%x",
169                 __raw_readl(pxp->base + HW_PXP_CSC2_COEF0));
170         dev_dbg(pxp->dev, "PXP_CSC2_COEF1 0x%x",
171                 __raw_readl(pxp->base + HW_PXP_CSC2_COEF1));
172         dev_dbg(pxp->dev, "PXP_CSC2_COEF2 0x%x",
173                 __raw_readl(pxp->base + HW_PXP_CSC2_COEF2));
174         dev_dbg(pxp->dev, "PXP_CSC2_COEF3 0x%x",
175                 __raw_readl(pxp->base + HW_PXP_CSC2_COEF3));
176         dev_dbg(pxp->dev, "PXP_CSC2_COEF4 0x%x",
177                 __raw_readl(pxp->base + HW_PXP_CSC2_COEF4));
178         dev_dbg(pxp->dev, "PXP_CSC2_COEF5 0x%x",
179                 __raw_readl(pxp->base + HW_PXP_CSC2_COEF5));
180         dev_dbg(pxp->dev, "PXP_LUT_CTRL 0x%x",
181                 __raw_readl(pxp->base + HW_PXP_LUT_CTRL));
182         dev_dbg(pxp->dev, "PXP_LUT_ADDR 0x%x",
183                 __raw_readl(pxp->base + HW_PXP_LUT_ADDR));
184         dev_dbg(pxp->dev, "PXP_LUT_DATA 0x%x",
185                 __raw_readl(pxp->base + HW_PXP_LUT_DATA));
186         dev_dbg(pxp->dev, "PXP_LUT_EXTMEM 0x%x",
187                 __raw_readl(pxp->base + HW_PXP_LUT_EXTMEM));
188         dev_dbg(pxp->dev, "PXP_CFA 0x%x",
189                 __raw_readl(pxp->base + HW_PXP_CFA));
190         dev_dbg(pxp->dev, "PXP_HIST_CTRL 0x%x",
191                 __raw_readl(pxp->base + HW_PXP_HIST_CTRL));
192         dev_dbg(pxp->dev, "PXP_HIST2_PARAM 0x%x",
193                 __raw_readl(pxp->base + HW_PXP_HIST2_PARAM));
194         dev_dbg(pxp->dev, "PXP_HIST4_PARAM 0x%x",
195                 __raw_readl(pxp->base + HW_PXP_HIST4_PARAM));
196         dev_dbg(pxp->dev, "PXP_HIST8_PARAM0 0x%x",
197                 __raw_readl(pxp->base + HW_PXP_HIST8_PARAM0));
198         dev_dbg(pxp->dev, "PXP_HIST8_PARAM1 0x%x",
199                 __raw_readl(pxp->base + HW_PXP_HIST8_PARAM1));
200         dev_dbg(pxp->dev, "PXP_HIST16_PARAM0 0x%x",
201                 __raw_readl(pxp->base + HW_PXP_HIST16_PARAM0));
202         dev_dbg(pxp->dev, "PXP_HIST16_PARAM1 0x%x",
203                 __raw_readl(pxp->base + HW_PXP_HIST16_PARAM1));
204         dev_dbg(pxp->dev, "PXP_HIST16_PARAM2 0x%x",
205                 __raw_readl(pxp->base + HW_PXP_HIST16_PARAM2));
206         dev_dbg(pxp->dev, "PXP_HIST16_PARAM3 0x%x",
207                 __raw_readl(pxp->base + HW_PXP_HIST16_PARAM3));
208         dev_dbg(pxp->dev, "PXP_POWER 0x%x",
209                 __raw_readl(pxp->base + HW_PXP_POWER));
210         dev_dbg(pxp->dev, "PXP_NEXT 0x%x",
211                 __raw_readl(pxp->base + HW_PXP_NEXT));
212         dev_dbg(pxp->dev, "PXP_DEBUGCTRL 0x%x",
213                 __raw_readl(pxp->base + HW_PXP_DEBUGCTRL));
214         dev_dbg(pxp->dev, "PXP_DEBUG 0x%x",
215                 __raw_readl(pxp->base + HW_PXP_DEBUG));
216         dev_dbg(pxp->dev, "PXP_VERSION 0x%x",
217                 __raw_readl(pxp->base + HW_PXP_VERSION));
218 }
219
220 static bool is_yuv(u32 pix_fmt)
221 {
222         if ((pix_fmt == PXP_PIX_FMT_YUYV) |
223             (pix_fmt == PXP_PIX_FMT_UYVY) |
224             (pix_fmt == PXP_PIX_FMT_YVYU) |
225             (pix_fmt == PXP_PIX_FMT_VYUY) |
226             (pix_fmt == PXP_PIX_FMT_Y41P) |
227             (pix_fmt == PXP_PIX_FMT_YUV444) |
228             (pix_fmt == PXP_PIX_FMT_NV12) |
229             (pix_fmt == PXP_PIX_FMT_NV16) |
230             (pix_fmt == PXP_PIX_FMT_NV61) |
231             (pix_fmt == PXP_PIX_FMT_GREY) |
232             (pix_fmt == PXP_PIX_FMT_GY04) |
233             (pix_fmt == PXP_PIX_FMT_YVU410P) |
234             (pix_fmt == PXP_PIX_FMT_YUV410P) |
235             (pix_fmt == PXP_PIX_FMT_YVU420P) |
236             (pix_fmt == PXP_PIX_FMT_YUV420P) |
237             (pix_fmt == PXP_PIX_FMT_YUV420P2) |
238             (pix_fmt == PXP_PIX_FMT_YVU422P) |
239             (pix_fmt == PXP_PIX_FMT_YUV422P)) {
240                 return true;
241         } else {
242                 return false;
243         }
244 }
245
246 static void pxp_set_ctrl(struct pxps *pxp)
247 {
248         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
249         struct pxp_proc_data *proc_data = &pxp_conf->proc_data;
250         u32 ctrl;
251         u32 fmt_ctrl;
252         int need_swap = 0;   /* to support YUYV and YVYU formats */
253
254         /* Configure S0 input format */
255         switch (pxp_conf->s0_param.pixel_fmt) {
256         case PXP_PIX_FMT_RGB32:
257                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__RGB888;
258                 break;
259         case PXP_PIX_FMT_RGB565:
260                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__RGB565;
261                 break;
262         case PXP_PIX_FMT_RGB555:
263                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__RGB555;
264                 break;
265         case PXP_PIX_FMT_YUV420P:
266                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__YUV420;
267                 break;
268         case PXP_PIX_FMT_YVU420P:
269                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__YUV420;
270                 break;
271         case PXP_PIX_FMT_GREY:
272                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__Y8;
273                 break;
274         case PXP_PIX_FMT_GY04:
275                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__Y4;
276                 break;
277         case PXP_PIX_FMT_YUV422P:
278                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__YUV422;
279                 break;
280         case PXP_PIX_FMT_UYVY:
281                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__UYVY1P422;
282                 break;
283         case PXP_PIX_FMT_YUYV:
284                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__UYVY1P422;
285                 need_swap = 1;
286                 break;
287         case PXP_PIX_FMT_VYUY:
288                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__VYUY1P422;
289                 break;
290         case PXP_PIX_FMT_YVYU:
291                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__VYUY1P422;
292                 need_swap = 1;
293                 break;
294         case PXP_PIX_FMT_NV12:
295                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__YUV2P420;
296                 break;
297         case PXP_PIX_FMT_NV21:
298                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__YVU2P420;
299                 break;
300         case PXP_PIX_FMT_NV16:
301                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__YUV2P422;
302                 break;
303         case PXP_PIX_FMT_NV61:
304                 fmt_ctrl = BV_PXP_PS_CTRL_FORMAT__YVU2P422;
305                 break;
306         default:
307                 fmt_ctrl = 0;
308         }
309
310         ctrl = BF_PXP_PS_CTRL_FORMAT(fmt_ctrl) | BF_PXP_PS_CTRL_SWAP(need_swap);
311         __raw_writel(ctrl, pxp->base + HW_PXP_PS_CTRL_SET);
312
313         /* Configure output format based on out_channel format */
314         switch (pxp_conf->out_param.pixel_fmt) {
315         case PXP_PIX_FMT_RGB32:
316                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__RGB888;
317                 break;
318         case PXP_PIX_FMT_BGRA32:
319                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__ARGB8888;
320                 break;
321         case PXP_PIX_FMT_RGB24:
322                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__RGB888P;
323                 break;
324         case PXP_PIX_FMT_RGB565:
325                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__RGB565;
326                 break;
327         case PXP_PIX_FMT_RGB555:
328                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__RGB555;
329                 break;
330         case PXP_PIX_FMT_GREY:
331                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__Y8;
332                 break;
333         case PXP_PIX_FMT_GY04:
334                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__Y4;
335                 break;
336         case PXP_PIX_FMT_UYVY:
337                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__UYVY1P422;
338                 break;
339         case PXP_PIX_FMT_VYUY:
340                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__VYUY1P422;
341                 break;
342         case PXP_PIX_FMT_NV12:
343                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__YUV2P420;
344                 break;
345         case PXP_PIX_FMT_NV21:
346                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__YVU2P420;
347                 break;
348         case PXP_PIX_FMT_NV16:
349                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__YUV2P422;
350                 break;
351         case PXP_PIX_FMT_NV61:
352                 fmt_ctrl = BV_PXP_OUT_CTRL_FORMAT__YVU2P422;
353                 break;
354         default:
355                 fmt_ctrl = 0;
356         }
357
358         ctrl = BF_PXP_OUT_CTRL_FORMAT(fmt_ctrl);
359         __raw_writel(ctrl, pxp->base + HW_PXP_OUT_CTRL);
360
361         ctrl = 0;
362         if (proc_data->scaling)
363                 ;
364         if (proc_data->vflip)
365                 ctrl |= BM_PXP_CTRL_VFLIP;
366         if (proc_data->hflip)
367                 ctrl |= BM_PXP_CTRL_HFLIP;
368         if (proc_data->rotate) {
369                 ctrl |= BF_PXP_CTRL_ROTATE(proc_data->rotate / 90);
370                 if (proc_data->rot_pos)
371                         ctrl |= BM_PXP_CTRL_ROT_POS;
372         }
373
374         /* In default, the block size is set to 8x8
375          * But block size can be set to 16x16 due to
376          * blocksize variable modification
377          */
378         ctrl |= block_size << 23;
379
380         __raw_writel(ctrl, pxp->base + HW_PXP_CTRL);
381 }
382
383 static int pxp_start(struct pxps *pxp)
384 {
385         __raw_writel(BM_PXP_CTRL_IRQ_ENABLE, pxp->base + HW_PXP_CTRL_SET);
386         __raw_writel(BM_PXP_CTRL_ENABLE, pxp->base + HW_PXP_CTRL_SET);
387         dump_pxp_reg(pxp);
388
389         return 0;
390 }
391
392 static void pxp_set_outbuf(struct pxps *pxp)
393 {
394         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
395         struct pxp_layer_param *out_params = &pxp_conf->out_param;
396
397         __raw_writel(out_params->paddr, pxp->base + HW_PXP_OUT_BUF);
398
399         __raw_writel(BF_PXP_OUT_LRC_X(out_params->width - 1) |
400                      BF_PXP_OUT_LRC_Y(out_params->height - 1),
401                      pxp->base + HW_PXP_OUT_LRC);
402
403         if (out_params->pixel_fmt == PXP_PIX_FMT_RGB24) {
404                 __raw_writel(out_params->stride * 3,
405                                 pxp->base + HW_PXP_OUT_PITCH);
406         } else if (out_params->pixel_fmt == PXP_PIX_FMT_BGRA32 ||
407                  out_params->pixel_fmt == PXP_PIX_FMT_RGB32) {
408                 __raw_writel(out_params->stride << 2,
409                                 pxp->base + HW_PXP_OUT_PITCH);
410         } else if (out_params->pixel_fmt == PXP_PIX_FMT_RGB565) {
411                 __raw_writel(out_params->stride << 1,
412                                 pxp->base + HW_PXP_OUT_PITCH);
413         } else if (out_params->pixel_fmt == PXP_PIX_FMT_UYVY ||
414                 (out_params->pixel_fmt == PXP_PIX_FMT_VYUY)) {
415                 __raw_writel(out_params->stride << 1,
416                                 pxp->base + HW_PXP_OUT_PITCH);
417         } else if (out_params->pixel_fmt == PXP_PIX_FMT_GREY ||
418                    out_params->pixel_fmt == PXP_PIX_FMT_NV12 ||
419                    out_params->pixel_fmt == PXP_PIX_FMT_NV21 ||
420                    out_params->pixel_fmt == PXP_PIX_FMT_NV16 ||
421                    out_params->pixel_fmt == PXP_PIX_FMT_NV61) {
422                 __raw_writel(out_params->stride,
423                                 pxp->base + HW_PXP_OUT_PITCH);
424         } else if (out_params->pixel_fmt == PXP_PIX_FMT_GY04) {
425                 __raw_writel(out_params->stride >> 1,
426                                 pxp->base + HW_PXP_OUT_PITCH);
427         } else {
428                 __raw_writel(0, pxp->base + HW_PXP_OUT_PITCH);
429         }
430
431         /* set global alpha if necessary */
432         if (out_params->global_alpha_enable) {
433                 __raw_writel(out_params->global_alpha << 24,
434                                 pxp->base + HW_PXP_OUT_CTRL_SET);
435                 __raw_writel(BM_PXP_OUT_CTRL_ALPHA_OUTPUT,
436                                 pxp->base + HW_PXP_OUT_CTRL_SET);
437         }
438 }
439
440 static void pxp_set_s0colorkey(struct pxps *pxp)
441 {
442         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
443         struct pxp_layer_param *s0_params = &pxp_conf->s0_param;
444
445         /* Low and high are set equal. V4L does not allow a chromakey range */
446         if (s0_params->color_key_enable == 0 || s0_params->color_key == -1) {
447                 /* disable color key */
448                 __raw_writel(0xFFFFFF, pxp->base + HW_PXP_PS_CLRKEYLOW);
449                 __raw_writel(0, pxp->base + HW_PXP_PS_CLRKEYHIGH);
450         } else {
451                 __raw_writel(s0_params->color_key,
452                              pxp->base + HW_PXP_PS_CLRKEYLOW);
453                 __raw_writel(s0_params->color_key,
454                              pxp->base + HW_PXP_PS_CLRKEYHIGH);
455         }
456 }
457
458 static void pxp_set_olcolorkey(int layer_no, struct pxps *pxp)
459 {
460         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
461         struct pxp_layer_param *ol_params = &pxp_conf->ol_param[layer_no];
462
463         /* Low and high are set equal. V4L does not allow a chromakey range */
464         if (ol_params->color_key_enable != 0 && ol_params->color_key != -1) {
465                 __raw_writel(ol_params->color_key,
466                              pxp->base + HW_PXP_AS_CLRKEYLOW);
467                 __raw_writel(ol_params->color_key,
468                              pxp->base + HW_PXP_AS_CLRKEYHIGH);
469         } else {
470                 /* disable color key */
471                 __raw_writel(0xFFFFFF, pxp->base + HW_PXP_AS_CLRKEYLOW);
472                 __raw_writel(0, pxp->base + HW_PXP_AS_CLRKEYHIGH);
473         }
474 }
475
476 static void pxp_set_oln(int layer_no, struct pxps *pxp)
477 {
478         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
479         struct pxp_layer_param *olparams_data = &pxp_conf->ol_param[layer_no];
480         dma_addr_t phys_addr = olparams_data->paddr;
481         u32 pitch = olparams_data->stride ? olparams_data->stride :
482                                             olparams_data->width;
483
484         __raw_writel(phys_addr, pxp->base + HW_PXP_AS_BUF);
485
486         /* Fixme */
487         if (olparams_data->width == 0 && olparams_data->height == 0) {
488                 __raw_writel(0xffffffff, pxp->base + HW_PXP_OUT_AS_ULC);
489                 __raw_writel(0x0, pxp->base + HW_PXP_OUT_AS_LRC);
490         } else {
491                 __raw_writel(0x0, pxp->base + HW_PXP_OUT_AS_ULC);
492                 if (pxp_conf->proc_data.rotate == 90 ||
493                     pxp_conf->proc_data.rotate == 270) {
494                         if (pxp_conf->proc_data.rot_pos == 1) {
495                                 __raw_writel(BF_PXP_OUT_AS_LRC_X(olparams_data->height - 1) |
496                                         BF_PXP_OUT_AS_LRC_Y(olparams_data->width - 1),
497                                         pxp->base + HW_PXP_OUT_AS_LRC);
498                         } else {
499                                 __raw_writel(BF_PXP_OUT_AS_LRC_X(olparams_data->width - 1) |
500                                         BF_PXP_OUT_AS_LRC_Y(olparams_data->height - 1),
501                                         pxp->base + HW_PXP_OUT_AS_LRC);
502                         }
503                 } else {
504                         __raw_writel(BF_PXP_OUT_AS_LRC_X(olparams_data->width - 1) |
505                                 BF_PXP_OUT_AS_LRC_Y(olparams_data->height - 1),
506                                 pxp->base + HW_PXP_OUT_AS_LRC);
507                 }
508         }
509
510         if ((olparams_data->pixel_fmt == PXP_PIX_FMT_BGRA32) |
511                  (olparams_data->pixel_fmt == PXP_PIX_FMT_RGB32)) {
512                 __raw_writel(pitch << 2,
513                                 pxp->base + HW_PXP_AS_PITCH);
514         } else if (olparams_data->pixel_fmt == PXP_PIX_FMT_RGB565) {
515                 __raw_writel(pitch << 1,
516                                 pxp->base + HW_PXP_AS_PITCH);
517         } else {
518                 __raw_writel(0, pxp->base + HW_PXP_AS_PITCH);
519         }
520 }
521
522 static void pxp_set_olparam(int layer_no, struct pxps *pxp)
523 {
524         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
525         struct pxp_layer_param *olparams_data = &pxp_conf->ol_param[layer_no];
526         u32 olparam;
527
528         olparam = BF_PXP_AS_CTRL_ALPHA(olparams_data->global_alpha);
529         if (olparams_data->pixel_fmt == PXP_PIX_FMT_RGB32) {
530                 olparam |=
531                     BF_PXP_AS_CTRL_FORMAT(BV_PXP_AS_CTRL_FORMAT__RGB888);
532         } else if (olparams_data->pixel_fmt == PXP_PIX_FMT_BGRA32) {
533                 olparam |=
534                     BF_PXP_AS_CTRL_FORMAT(BV_PXP_AS_CTRL_FORMAT__ARGB8888);
535                 if (!olparams_data->combine_enable) {
536                         olparam |=
537                                 BF_PXP_AS_CTRL_ALPHA_CTRL
538                                 (BV_PXP_AS_CTRL_ALPHA_CTRL__ROPs);
539                         olparam |= 0x3 << 16;
540                 }
541         } else if (olparams_data->pixel_fmt == PXP_PIX_FMT_RGB565) {
542                 olparam |=
543                     BF_PXP_AS_CTRL_FORMAT(BV_PXP_AS_CTRL_FORMAT__RGB565);
544         }
545         if (olparams_data->global_alpha_enable) {
546                 if (olparams_data->global_override) {
547                         olparam |=
548                                 BF_PXP_AS_CTRL_ALPHA_CTRL
549                                 (BV_PXP_AS_CTRL_ALPHA_CTRL__Override);
550                 } else {
551                         olparam |=
552                                 BF_PXP_AS_CTRL_ALPHA_CTRL
553                                 (BV_PXP_AS_CTRL_ALPHA_CTRL__Multiply);
554                 }
555                 if (olparams_data->alpha_invert)
556                         olparam |= BM_PXP_AS_CTRL_ALPHA_INVERT;
557         }
558         if (olparams_data->color_key_enable)
559                 olparam |= BM_PXP_AS_CTRL_ENABLE_COLORKEY;
560
561         __raw_writel(olparam, pxp->base + HW_PXP_AS_CTRL);
562 }
563
564 static void pxp_set_s0param(struct pxps *pxp)
565 {
566         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
567         struct pxp_proc_data *proc_data = &pxp_conf->proc_data;
568         u32 s0param;
569
570         /* contains the coordinate for the PS in the OUTPUT buffer. */
571         if ((pxp_conf->s0_param).width == 0 &&
572                 (pxp_conf->s0_param).height == 0) {
573                 __raw_writel(0xffffffff, pxp->base + HW_PXP_OUT_PS_ULC);
574                 __raw_writel(0x0, pxp->base + HW_PXP_OUT_PS_LRC);
575         } else {
576                 s0param = BF_PXP_OUT_PS_ULC_X(proc_data->drect.left);
577                 s0param |= BF_PXP_OUT_PS_ULC_Y(proc_data->drect.top);
578                 __raw_writel(s0param, pxp->base + HW_PXP_OUT_PS_ULC);
579                 s0param = BF_PXP_OUT_PS_LRC_X(proc_data->drect.left +
580                                 proc_data->drect.width - 1);
581                 s0param |= BF_PXP_OUT_PS_LRC_Y(proc_data->drect.top +
582                                 proc_data->drect.height - 1);
583                 __raw_writel(s0param, pxp->base + HW_PXP_OUT_PS_LRC);
584         }
585 }
586
587 /* crop behavior is re-designed in h/w. */
588 static void pxp_set_s0crop(struct pxps *pxp)
589 {
590         /*
591          * place-holder, it's implemented in other functions in this driver.
592          * Refer to "Clipping source images" section in RM for detail.
593          */
594 }
595
596 static int pxp_set_scaling(struct pxps *pxp)
597 {
598         int ret = 0;
599         u32 xscale, yscale, s0scale;
600         u32 decx, decy, xdec = 0, ydec = 0;
601         struct pxp_proc_data *proc_data = &pxp->pxp_conf_state.proc_data;
602
603         if (((proc_data->srect.width == proc_data->drect.width) &&
604             (proc_data->srect.height == proc_data->drect.height)) ||
605             ((proc_data->srect.width == 0) && (proc_data->srect.height == 0))) {
606                 proc_data->scaling = 0;
607                 __raw_writel(0x10001000, pxp->base + HW_PXP_PS_SCALE);
608                 __raw_writel(0, pxp->base + HW_PXP_PS_CTRL);
609                 goto out;
610         }
611
612         proc_data->scaling = 1;
613         decx = proc_data->srect.width / proc_data->drect.width;
614         decy = proc_data->srect.height / proc_data->drect.height;
615         if (decx > 0) {
616                 if (decx >= 2 && decx < 4) {
617                         decx = 2;
618                         xdec = 1;
619                 } else if (decx >= 4 && decx < 8) {
620                         decx = 4;
621                         xdec = 2;
622                 } else if (decx >= 8) {
623                         decx = 8;
624                         xdec = 3;
625                 }
626                 xscale = proc_data->srect.width * 0x1000 /
627                          (proc_data->drect.width * decx);
628         } else
629                 xscale = proc_data->srect.width * 0x1000 /
630                          proc_data->drect.width;
631         if (decy > 0) {
632                 if (decy >= 2 && decy < 4) {
633                         decy = 2;
634                         ydec = 1;
635                 } else if (decy >= 4 && decy < 8) {
636                         decy = 4;
637                         ydec = 2;
638                 } else if (decy >= 8) {
639                         decy = 8;
640                         ydec = 3;
641                 }
642                 yscale = proc_data->srect.height * 0x1000 /
643                          (proc_data->drect.height * decy);
644         } else
645                 yscale = proc_data->srect.height * 0x1000 /
646                          proc_data->drect.height;
647
648         __raw_writel((xdec << 10) | (ydec << 8), pxp->base + HW_PXP_PS_CTRL);
649
650         if (xscale > PXP_DOWNSCALE_THRESHOLD)
651                 xscale = PXP_DOWNSCALE_THRESHOLD;
652         if (yscale > PXP_DOWNSCALE_THRESHOLD)
653                 yscale = PXP_DOWNSCALE_THRESHOLD;
654         s0scale = BF_PXP_PS_SCALE_YSCALE(yscale) |
655                 BF_PXP_PS_SCALE_XSCALE(xscale);
656         __raw_writel(s0scale, pxp->base + HW_PXP_PS_SCALE);
657
658 out:
659         pxp_set_ctrl(pxp);
660
661         return ret;
662 }
663
664 static void pxp_set_bg(struct pxps *pxp)
665 {
666         __raw_writel(pxp->pxp_conf_state.proc_data.bgcolor,
667                      pxp->base + HW_PXP_PS_BACKGROUND);
668 }
669
670 static void pxp_set_lut(struct pxps *pxp)
671 {
672         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
673         int lut_op = pxp_conf->proc_data.lut_transform;
674         u32 reg_val;
675         int i;
676         bool use_cmap = (lut_op & PXP_LUT_USE_CMAP) ? true : false;
677         u8 *cmap = pxp_conf->proc_data.lut_map;
678         u32 entry_src;
679         u32 pix_val;
680         u8 entry[4];
681
682         /*
683          * If LUT already configured as needed, return...
684          * Unless CMAP is needed and it has been updated.
685          */
686         if ((pxp->lut_state == lut_op) &&
687                 !(use_cmap && pxp_conf->proc_data.lut_map_updated))
688                 return;
689
690         if (lut_op == PXP_LUT_NONE) {
691                 __raw_writel(BM_PXP_LUT_CTRL_BYPASS,
692                              pxp->base + HW_PXP_LUT_CTRL);
693         } else if (((lut_op & PXP_LUT_INVERT) != 0)
694                 && ((lut_op & PXP_LUT_BLACK_WHITE) != 0)) {
695                 /* Fill out LUT table with inverted monochromized values */
696
697                 /* clear bypass bit, set lookup mode & out mode */
698                 __raw_writel(BF_PXP_LUT_CTRL_LOOKUP_MODE
699                                 (BV_PXP_LUT_CTRL_LOOKUP_MODE__DIRECT_Y8) |
700                                 BF_PXP_LUT_CTRL_OUT_MODE
701                                 (BV_PXP_LUT_CTRL_OUT_MODE__Y8),
702                                 pxp->base + HW_PXP_LUT_CTRL);
703
704                 /* Initialize LUT address to 0 and set NUM_BYTES to 0 */
705                 __raw_writel(0, pxp->base + HW_PXP_LUT_ADDR);
706
707                 /* LUT address pointer auto-increments after each data write */
708                 for (pix_val = 0; pix_val < 256; pix_val += 4) {
709                         for (i = 0; i < 4; i++) {
710                                 entry_src = use_cmap ?
711                                         cmap[pix_val + i] : pix_val + i;
712                                 entry[i] = (entry_src < 0x80) ? 0xFF : 0x00;
713                         }
714                         reg_val = (entry[3] << 24) | (entry[2] << 16) |
715                                 (entry[1] << 8) | entry[0];
716                         __raw_writel(reg_val, pxp->base + HW_PXP_LUT_DATA);
717                 }
718         } else if ((lut_op & PXP_LUT_INVERT) != 0) {
719                 /* Fill out LUT table with 8-bit inverted values */
720
721                 /* clear bypass bit, set lookup mode & out mode */
722                 __raw_writel(BF_PXP_LUT_CTRL_LOOKUP_MODE
723                                 (BV_PXP_LUT_CTRL_LOOKUP_MODE__DIRECT_Y8) |
724                                 BF_PXP_LUT_CTRL_OUT_MODE
725                                 (BV_PXP_LUT_CTRL_OUT_MODE__Y8),
726                                 pxp->base + HW_PXP_LUT_CTRL);
727
728                 /* Initialize LUT address to 0 and set NUM_BYTES to 0 */
729                 __raw_writel(0, pxp->base + HW_PXP_LUT_ADDR);
730
731                 /* LUT address pointer auto-increments after each data write */
732                 for (pix_val = 0; pix_val < 256; pix_val += 4) {
733                         for (i = 0; i < 4; i++) {
734                                 entry_src = use_cmap ?
735                                         cmap[pix_val + i] : pix_val + i;
736                                 entry[i] = ~entry_src & 0xFF;
737                         }
738                         reg_val = (entry[3] << 24) | (entry[2] << 16) |
739                                 (entry[1] << 8) | entry[0];
740                         __raw_writel(reg_val, pxp->base + HW_PXP_LUT_DATA);
741                 }
742         } else if ((lut_op & PXP_LUT_BLACK_WHITE) != 0) {
743                 /* Fill out LUT table with 8-bit monochromized values */
744
745                 /* clear bypass bit, set lookup mode & out mode */
746                 __raw_writel(BF_PXP_LUT_CTRL_LOOKUP_MODE
747                                 (BV_PXP_LUT_CTRL_LOOKUP_MODE__DIRECT_Y8) |
748                                 BF_PXP_LUT_CTRL_OUT_MODE
749                                 (BV_PXP_LUT_CTRL_OUT_MODE__Y8),
750                                 pxp->base + HW_PXP_LUT_CTRL);
751
752                 /* Initialize LUT address to 0 and set NUM_BYTES to 0 */
753                 __raw_writel(0, pxp->base + HW_PXP_LUT_ADDR);
754
755                 /* LUT address pointer auto-increments after each data write */
756                 for (pix_val = 0; pix_val < 256; pix_val += 4) {
757                         for (i = 0; i < 4; i++) {
758                                 entry_src = use_cmap ?
759                                         cmap[pix_val + i] : pix_val + i;
760                                 entry[i] = (entry_src < 0x80) ? 0x00 : 0xFF;
761                         }
762                         reg_val = (entry[3] << 24) | (entry[2] << 16) |
763                                 (entry[1] << 8) | entry[0];
764                         __raw_writel(reg_val, pxp->base + HW_PXP_LUT_DATA);
765                 }
766         } else if (use_cmap) {
767                 /* Fill out LUT table using colormap values */
768
769                 /* clear bypass bit, set lookup mode & out mode */
770                 __raw_writel(BF_PXP_LUT_CTRL_LOOKUP_MODE
771                                 (BV_PXP_LUT_CTRL_LOOKUP_MODE__DIRECT_Y8) |
772                                 BF_PXP_LUT_CTRL_OUT_MODE
773                                 (BV_PXP_LUT_CTRL_OUT_MODE__Y8),
774                                 pxp->base + HW_PXP_LUT_CTRL);
775
776                 /* Initialize LUT address to 0 and set NUM_BYTES to 0 */
777                 __raw_writel(0, pxp->base + HW_PXP_LUT_ADDR);
778
779                 /* LUT address pointer auto-increments after each data write */
780                 for (pix_val = 0; pix_val < 256; pix_val += 4) {
781                         for (i = 0; i < 4; i++)
782                                 entry[i] = cmap[pix_val + i];
783                         reg_val = (entry[3] << 24) | (entry[2] << 16) |
784                                 (entry[1] << 8) | entry[0];
785                         __raw_writel(reg_val, pxp->base + HW_PXP_LUT_DATA);
786                 }
787         }
788
789         pxp->lut_state = lut_op;
790 }
791
792 static void pxp_set_csc(struct pxps *pxp)
793 {
794         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
795         struct pxp_layer_param *s0_params = &pxp_conf->s0_param;
796         struct pxp_layer_param *ol_params = &pxp_conf->ol_param[0];
797         struct pxp_layer_param *out_params = &pxp_conf->out_param;
798
799         bool input_is_YUV = is_yuv(s0_params->pixel_fmt);
800         bool output_is_YUV = is_yuv(out_params->pixel_fmt);
801
802         if (input_is_YUV && output_is_YUV) {
803                 /*
804                  * Input = YUV, Output = YUV
805                  * No CSC unless we need to do combining
806                  */
807                 if (ol_params->combine_enable) {
808                         /* Must convert to RGB for combining with RGB overlay */
809
810                         /* CSC1 - YUV->RGB */
811                         __raw_writel(0x04030000, pxp->base + HW_PXP_CSC1_COEF0);
812                         __raw_writel(0x01230208, pxp->base + HW_PXP_CSC1_COEF1);
813                         __raw_writel(0x076b079c, pxp->base + HW_PXP_CSC1_COEF2);
814
815                         /* CSC2 - RGB->YUV */
816                         __raw_writel(0x4, pxp->base + HW_PXP_CSC2_CTRL);
817                         __raw_writel(0x0096004D, pxp->base + HW_PXP_CSC2_COEF0);
818                         __raw_writel(0x05DA001D, pxp->base + HW_PXP_CSC2_COEF1);
819                         __raw_writel(0x007005B6, pxp->base + HW_PXP_CSC2_COEF2);
820                         __raw_writel(0x057C009E, pxp->base + HW_PXP_CSC2_COEF3);
821                         __raw_writel(0x000005E6, pxp->base + HW_PXP_CSC2_COEF4);
822                         __raw_writel(0x00000000, pxp->base + HW_PXP_CSC2_COEF5);
823                 } else {
824                         /* Input & Output both YUV, so bypass both CSCs */
825
826                         /* CSC1 - Bypass */
827                         __raw_writel(0x40000000, pxp->base + HW_PXP_CSC1_COEF0);
828
829                         /* CSC2 - Bypass */
830                         __raw_writel(0x1, pxp->base + HW_PXP_CSC2_CTRL);
831                 }
832         } else if (input_is_YUV && !output_is_YUV) {
833                 /*
834                  * Input = YUV, Output = RGB
835                  * Use CSC1 to convert to RGB
836                  */
837
838                 /* CSC1 - YUV->RGB */
839                 __raw_writel(0x84ab01f0, pxp->base + HW_PXP_CSC1_COEF0);
840                 __raw_writel(0x01980204, pxp->base + HW_PXP_CSC1_COEF1);
841                 __raw_writel(0x0730079c, pxp->base + HW_PXP_CSC1_COEF2);
842
843                 /* CSC2 - Bypass */
844                 __raw_writel(0x1, pxp->base + HW_PXP_CSC2_CTRL);
845         } else if (!input_is_YUV && output_is_YUV) {
846                 /*
847                  * Input = RGB, Output = YUV
848                  * Use CSC2 to convert to YUV
849                  */
850
851                 /* CSC1 - Bypass */
852                 __raw_writel(0x40000000, pxp->base + HW_PXP_CSC1_COEF0);
853
854                 /* CSC2 - RGB->YUV */
855                 __raw_writel(0x4, pxp->base + HW_PXP_CSC2_CTRL);
856                 __raw_writel(0x0096004D, pxp->base + HW_PXP_CSC2_COEF0);
857                 __raw_writel(0x05DA001D, pxp->base + HW_PXP_CSC2_COEF1);
858                 __raw_writel(0x007005B6, pxp->base + HW_PXP_CSC2_COEF2);
859                 __raw_writel(0x057C009E, pxp->base + HW_PXP_CSC2_COEF3);
860                 __raw_writel(0x000005E6, pxp->base + HW_PXP_CSC2_COEF4);
861                 __raw_writel(0x00000000, pxp->base + HW_PXP_CSC2_COEF5);
862         } else {
863                 /*
864                  * Input = RGB, Output = RGB
865                  * Input & Output both RGB, so bypass both CSCs
866                  */
867
868                 /* CSC1 - Bypass */
869                 __raw_writel(0x40000000, pxp->base + HW_PXP_CSC1_COEF0);
870
871                 /* CSC2 - Bypass */
872                 __raw_writel(0x1, pxp->base + HW_PXP_CSC2_CTRL);
873         }
874
875         /* YCrCb colorspace */
876         /* Not sure when we use this...no YCrCb formats are defined for PxP */
877         /*
878            __raw_writel(0x84ab01f0, HW_PXP_CSCCOEFF0_ADDR);
879            __raw_writel(0x01230204, HW_PXP_CSCCOEFF1_ADDR);
880            __raw_writel(0x0730079c, HW_PXP_CSCCOEFF2_ADDR);
881          */
882
883 }
884
885 static void pxp_set_s0buf(struct pxps *pxp)
886 {
887         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
888         struct pxp_layer_param *s0_params = &pxp_conf->s0_param;
889         struct pxp_proc_data *proc_data = &pxp_conf->proc_data;
890         dma_addr_t Y, U, V;
891         dma_addr_t Y1, U1, V1;
892         u32 offset, bpp = 1;
893         u32 pitch = s0_params->stride ? s0_params->stride :
894                                         s0_params->width;
895
896         Y = s0_params->paddr;
897
898         if (s0_params->pixel_fmt == PXP_PIX_FMT_RGB565)
899                 bpp = 2;
900         else if (s0_params->pixel_fmt == PXP_PIX_FMT_RGB32)
901                 bpp = 4;
902         offset = (proc_data->srect.top * s0_params->width +
903                  proc_data->srect.left) * bpp;
904         /* clipping or cropping */
905         Y1 = Y + offset;
906         __raw_writel(Y1, pxp->base + HW_PXP_PS_BUF);
907         if ((s0_params->pixel_fmt == PXP_PIX_FMT_YUV420P) ||
908             (s0_params->pixel_fmt == PXP_PIX_FMT_YVU420P) ||
909             (s0_params->pixel_fmt == PXP_PIX_FMT_GREY)    ||
910             (s0_params->pixel_fmt == PXP_PIX_FMT_YUV422P)) {
911                 /* Set to 1 if YUV format is 4:2:2 rather than 4:2:0 */
912                 int s = 2;
913                 if (s0_params->pixel_fmt == PXP_PIX_FMT_YUV422P)
914                         s = 1;
915
916                 offset = proc_data->srect.top * s0_params->width / 4 +
917                          proc_data->srect.left / 2;
918                 U = Y + (s0_params->width * s0_params->height);
919                 U1 = U + offset;
920                 V = U + ((s0_params->width * s0_params->height) >> s);
921                 V1 = V + offset;
922                 __raw_writel(U1, pxp->base + HW_PXP_PS_UBUF);
923                 __raw_writel(V1, pxp->base + HW_PXP_PS_VBUF);
924         } else if ((s0_params->pixel_fmt == PXP_PIX_FMT_NV12) ||
925                  (s0_params->pixel_fmt == PXP_PIX_FMT_NV21) ||
926                  (s0_params->pixel_fmt == PXP_PIX_FMT_NV16) ||
927                  (s0_params->pixel_fmt == PXP_PIX_FMT_NV61)) {
928                 int s = 2;
929                 if ((s0_params->pixel_fmt == PXP_PIX_FMT_NV16) ||
930                     (s0_params->pixel_fmt == PXP_PIX_FMT_NV61))
931                         s = 1;
932
933                 offset = (proc_data->srect.top * s0_params->width +
934                           proc_data->srect.left) / s;
935                 U = Y + (s0_params->width * s0_params->height);
936                 U1 = U + offset;
937
938                 __raw_writel(U1, pxp->base + HW_PXP_PS_UBUF);
939         }
940
941         /* TODO: only support RGB565, Y8, Y4, YUV420 */
942         if (s0_params->pixel_fmt == PXP_PIX_FMT_GREY ||
943             s0_params->pixel_fmt == PXP_PIX_FMT_YUV420P ||
944             s0_params->pixel_fmt == PXP_PIX_FMT_YVU420P ||
945             s0_params->pixel_fmt == PXP_PIX_FMT_NV12 ||
946             s0_params->pixel_fmt == PXP_PIX_FMT_NV21 ||
947             s0_params->pixel_fmt == PXP_PIX_FMT_NV16 ||
948             s0_params->pixel_fmt == PXP_PIX_FMT_NV61 ||
949             s0_params->pixel_fmt == PXP_PIX_FMT_YUV422P) {
950                 __raw_writel(pitch, pxp->base + HW_PXP_PS_PITCH);
951         }
952         else if (s0_params->pixel_fmt == PXP_PIX_FMT_GY04)
953                 __raw_writel(pitch >> 1,
954                                 pxp->base + HW_PXP_PS_PITCH);
955         else if (s0_params->pixel_fmt == PXP_PIX_FMT_RGB32)
956                 __raw_writel(pitch << 2,
957                                 pxp->base + HW_PXP_PS_PITCH);
958         else if (s0_params->pixel_fmt == PXP_PIX_FMT_UYVY ||
959                  s0_params->pixel_fmt == PXP_PIX_FMT_YUYV ||
960                  s0_params->pixel_fmt == PXP_PIX_FMT_VYUY ||
961                  s0_params->pixel_fmt == PXP_PIX_FMT_YVYU)
962                 __raw_writel(pitch << 1,
963                                 pxp->base + HW_PXP_PS_PITCH);
964         else if (s0_params->pixel_fmt == PXP_PIX_FMT_RGB565)
965                 __raw_writel(pitch << 1,
966                                 pxp->base + HW_PXP_PS_PITCH);
967         else
968                 __raw_writel(0, pxp->base + HW_PXP_PS_PITCH);
969 }
970
971 /**
972  * pxp_config() - configure PxP for a processing task
973  * @pxps:       PXP context.
974  * @pxp_chan:   PXP channel.
975  * @return:     0 on success or negative error code on failure.
976  */
977 static int pxp_config(struct pxps *pxp, struct pxp_channel *pxp_chan)
978 {
979         struct pxp_config_data *pxp_conf_data = &pxp->pxp_conf_state;
980         int ol_nr;
981         int i;
982
983         /* Configure PxP regs */
984         pxp_set_ctrl(pxp);
985         pxp_set_s0param(pxp);
986         pxp_set_s0crop(pxp);
987         pxp_set_scaling(pxp);
988         ol_nr = pxp_conf_data->layer_nr - 2;
989         while (ol_nr > 0) {
990                 i = pxp_conf_data->layer_nr - 2 - ol_nr;
991                 pxp_set_oln(i, pxp);
992                 pxp_set_olparam(i, pxp);
993                 /* only the color key in higher overlay will take effect. */
994                 pxp_set_olcolorkey(i, pxp);
995                 ol_nr--;
996         }
997         pxp_set_s0colorkey(pxp);
998         pxp_set_csc(pxp);
999         pxp_set_bg(pxp);
1000         pxp_set_lut(pxp);
1001
1002         pxp_set_s0buf(pxp);
1003         pxp_set_outbuf(pxp);
1004
1005         return 0;
1006 }
1007
1008 static void pxp_clk_enable(struct pxps *pxp)
1009 {
1010         mutex_lock(&pxp->clk_mutex);
1011
1012         if (pxp->clk_stat == CLK_STAT_ON) {
1013                 mutex_unlock(&pxp->clk_mutex);
1014                 return;
1015         }
1016
1017         clk_prepare_enable(pxp->clk);
1018         pxp->clk_stat = CLK_STAT_ON;
1019
1020         mutex_unlock(&pxp->clk_mutex);
1021 }
1022
1023 static void pxp_clk_disable(struct pxps *pxp)
1024 {
1025         unsigned long flags;
1026
1027         mutex_lock(&pxp->clk_mutex);
1028
1029         if (pxp->clk_stat == CLK_STAT_OFF) {
1030                 mutex_unlock(&pxp->clk_mutex);
1031                 return;
1032         }
1033
1034         spin_lock_irqsave(&pxp->lock, flags);
1035         if ((pxp->pxp_ongoing == 0) && list_empty(&head)) {
1036                 spin_unlock_irqrestore(&pxp->lock, flags);
1037                 clk_disable_unprepare(pxp->clk);
1038                 pxp->clk_stat = CLK_STAT_OFF;
1039         } else
1040                 spin_unlock_irqrestore(&pxp->lock, flags);
1041
1042         mutex_unlock(&pxp->clk_mutex);
1043 }
1044
1045 static inline void clkoff_callback(struct work_struct *w)
1046 {
1047         struct pxps *pxp = container_of(w, struct pxps, work);
1048
1049         pxp_clk_disable(pxp);
1050 }
1051
1052 static void pxp_clkoff_timer(unsigned long arg)
1053 {
1054         struct pxps *pxp = (struct pxps *)arg;
1055
1056         if ((pxp->pxp_ongoing == 0) && list_empty(&head))
1057                 schedule_work(&pxp->work);
1058         else
1059                 mod_timer(&pxp->clk_timer,
1060                           jiffies + msecs_to_jiffies(timeout_in_ms));
1061 }
1062
1063 static struct pxp_tx_desc *pxpdma_first_queued(struct pxp_channel *pxp_chan)
1064 {
1065         return list_entry(pxp_chan->queue.next, struct pxp_tx_desc, list);
1066 }
1067
1068 /* called with pxp_chan->lock held */
1069 static void __pxpdma_dostart(struct pxp_channel *pxp_chan)
1070 {
1071         struct pxp_dma *pxp_dma = to_pxp_dma(pxp_chan->dma_chan.device);
1072         struct pxps *pxp = to_pxp(pxp_dma);
1073         struct pxp_tx_desc *desc;
1074         struct pxp_tx_desc *child;
1075         int i = 0;
1076
1077         /* S0 */
1078         desc = list_first_entry(&head, struct pxp_tx_desc, list);
1079         memcpy(&pxp->pxp_conf_state.s0_param,
1080                &desc->layer_param.s0_param, sizeof(struct pxp_layer_param));
1081         memcpy(&pxp->pxp_conf_state.proc_data,
1082                &desc->proc_data, sizeof(struct pxp_proc_data));
1083
1084         /* Save PxP configuration */
1085         list_for_each_entry(child, &desc->tx_list, list) {
1086                 if (i == 0) {   /* Output */
1087                         memcpy(&pxp->pxp_conf_state.out_param,
1088                                &child->layer_param.out_param,
1089                                sizeof(struct pxp_layer_param));
1090                 } else {        /* Overlay */
1091                         memcpy(&pxp->pxp_conf_state.ol_param[i - 1],
1092                                &child->layer_param.ol_param,
1093                                sizeof(struct pxp_layer_param));
1094                 }
1095
1096                 i++;
1097         }
1098         pr_debug("%s:%d S0 w/h %d/%d paddr %08x\n", __func__, __LINE__,
1099                  pxp->pxp_conf_state.s0_param.width,
1100                  pxp->pxp_conf_state.s0_param.height,
1101                  pxp->pxp_conf_state.s0_param.paddr);
1102         pr_debug("%s:%d OUT w/h %d/%d paddr %08x\n", __func__, __LINE__,
1103                  pxp->pxp_conf_state.out_param.width,
1104                  pxp->pxp_conf_state.out_param.height,
1105                  pxp->pxp_conf_state.out_param.paddr);
1106 }
1107
1108 static void pxpdma_dostart_work(struct pxps *pxp)
1109 {
1110         struct pxp_channel *pxp_chan = NULL;
1111         unsigned long flags;
1112         struct pxp_tx_desc *desc = NULL;
1113
1114         spin_lock_irqsave(&pxp->lock, flags);
1115
1116         desc = list_entry(head.next, struct pxp_tx_desc, list);
1117         pxp_chan = to_pxp_channel(desc->txd.chan);
1118
1119         __pxpdma_dostart(pxp_chan);
1120
1121         /* Configure PxP */
1122         pxp_config(pxp, pxp_chan);
1123
1124         pxp_start(pxp);
1125
1126         spin_unlock_irqrestore(&pxp->lock, flags);
1127 }
1128
1129 static void pxpdma_dequeue(struct pxp_channel *pxp_chan, struct list_head *list)
1130 {
1131         struct pxp_tx_desc *desc = NULL;
1132         do {
1133                 desc = pxpdma_first_queued(pxp_chan);
1134                 list_move_tail(&desc->list, list);
1135         } while (!list_empty(&pxp_chan->queue));
1136 }
1137
1138 static dma_cookie_t pxp_tx_submit(struct dma_async_tx_descriptor *tx)
1139 {
1140         struct pxp_tx_desc *desc = to_tx_desc(tx);
1141         struct pxp_channel *pxp_chan = to_pxp_channel(tx->chan);
1142         dma_cookie_t cookie;
1143         unsigned long flags;
1144
1145         dev_dbg(&pxp_chan->dma_chan.dev->device, "received TX\n");
1146
1147         /* pxp_chan->lock can be taken under ichan->lock, but not v.v. */
1148         spin_lock_irqsave(&pxp_chan->lock, flags);
1149
1150         cookie = pxp_chan->dma_chan.cookie;
1151
1152         if (++cookie < 0)
1153                 cookie = 1;
1154
1155         /* from dmaengine.h: "last cookie value returned to client" */
1156         pxp_chan->dma_chan.cookie = cookie;
1157         tx->cookie = cookie;
1158
1159         /* Here we add the tx descriptor to our PxP task queue. */
1160         list_add_tail(&desc->list, &pxp_chan->queue);
1161
1162         spin_unlock_irqrestore(&pxp_chan->lock, flags);
1163
1164         dev_dbg(&pxp_chan->dma_chan.dev->device, "done TX\n");
1165
1166         return cookie;
1167 }
1168
1169 /**
1170  * pxp_init_channel() - initialize a PXP channel.
1171  * @pxp_dma:   PXP DMA context.
1172  * @pchan:  pointer to the channel object.
1173  * @return      0 on success or negative error code on failure.
1174  */
1175 static int pxp_init_channel(struct pxp_dma *pxp_dma,
1176                             struct pxp_channel *pxp_chan)
1177 {
1178         int ret = 0;
1179
1180         /*
1181          * We are using _virtual_ channel here.
1182          * Each channel contains all parameters of corresponding layers
1183          * for one transaction; each layer is represented as one descriptor
1184          * (i.e., pxp_tx_desc) here.
1185          */
1186
1187         INIT_LIST_HEAD(&pxp_chan->queue);
1188
1189         return ret;
1190 }
1191
1192 static irqreturn_t pxp_irq(int irq, void *dev_id)
1193 {
1194         struct pxps *pxp = dev_id;
1195         struct pxp_channel *pxp_chan;
1196         struct pxp_tx_desc *desc;
1197         struct pxp_tx_desc *child, *_child;
1198         dma_async_tx_callback callback;
1199         void *callback_param;
1200         unsigned long flags;
1201         u32 hist_status;
1202
1203         dump_pxp_reg(pxp);
1204
1205         hist_status =
1206             __raw_readl(pxp->base + HW_PXP_HIST_CTRL) & BM_PXP_HIST_CTRL_STATUS;
1207
1208         __raw_writel(BM_PXP_STAT_IRQ, pxp->base + HW_PXP_STAT_CLR);
1209
1210         spin_lock_irqsave(&pxp->lock, flags);
1211
1212         if (list_empty(&head)) {
1213                 pxp->pxp_ongoing = 0;
1214                 spin_unlock_irqrestore(&pxp->lock, flags);
1215                 return IRQ_NONE;
1216         }
1217
1218         /* Get descriptor and call callback */
1219         desc = list_entry(head.next, struct pxp_tx_desc, list);
1220         pxp_chan = to_pxp_channel(desc->txd.chan);
1221
1222         pxp_chan->completed = desc->txd.cookie;
1223
1224         callback = desc->txd.callback;
1225         callback_param = desc->txd.callback_param;
1226
1227         /* Send histogram status back to caller */
1228         desc->hist_status = hist_status;
1229
1230         if ((desc->txd.flags & DMA_PREP_INTERRUPT) && callback)
1231                 callback(callback_param);
1232
1233         pxp_chan->status = PXP_CHANNEL_INITIALIZED;
1234
1235         list_for_each_entry_safe(child, _child, &desc->tx_list, list) {
1236                 list_del_init(&child->list);
1237                 kmem_cache_free(tx_desc_cache, (void *)child);
1238         }
1239         list_del_init(&desc->list);
1240         kmem_cache_free(tx_desc_cache, (void *)desc);
1241
1242         complete(&pxp->complete);
1243         pxp->pxp_ongoing = 0;
1244         mod_timer(&pxp->clk_timer, jiffies + msecs_to_jiffies(timeout_in_ms));
1245
1246         spin_unlock_irqrestore(&pxp->lock, flags);
1247
1248         return IRQ_HANDLED;
1249 }
1250
1251 /* allocate/free dma tx descriptor dynamically*/
1252 static struct pxp_tx_desc *pxpdma_desc_alloc(struct pxp_channel *pxp_chan)
1253 {
1254         struct pxp_tx_desc *desc = NULL;
1255         struct dma_async_tx_descriptor *txd = NULL;
1256
1257         desc = kmem_cache_alloc(tx_desc_cache, GFP_KERNEL | __GFP_ZERO);
1258         if (desc == NULL)
1259                 return NULL;
1260
1261         INIT_LIST_HEAD(&desc->list);
1262         INIT_LIST_HEAD(&desc->tx_list);
1263         txd = &desc->txd;
1264         dma_async_tx_descriptor_init(txd, &pxp_chan->dma_chan);
1265         txd->tx_submit = pxp_tx_submit;
1266
1267         return desc;
1268 }
1269
1270 /* Allocate and initialise a transfer descriptor. */
1271 static struct dma_async_tx_descriptor *pxp_prep_slave_sg(struct dma_chan *chan,
1272                                                          struct scatterlist
1273                                                          *sgl,
1274                                                          unsigned int sg_len,
1275                                                          enum
1276                                                          dma_transfer_direction
1277                                                          direction,
1278                                                          unsigned long tx_flags,
1279                                                          void *context)
1280 {
1281         struct pxp_channel *pxp_chan = to_pxp_channel(chan);
1282         struct pxp_dma *pxp_dma = to_pxp_dma(chan->device);
1283         struct pxps *pxp = to_pxp(pxp_dma);
1284         struct pxp_tx_desc *desc = NULL;
1285         struct pxp_tx_desc *first = NULL, *prev = NULL;
1286         struct scatterlist *sg;
1287         dma_addr_t phys_addr;
1288         int i;
1289
1290         if (direction != DMA_DEV_TO_MEM && direction != DMA_MEM_TO_DEV) {
1291                 dev_err(chan->device->dev, "Invalid DMA direction %d!\n",
1292                         direction);
1293                 return NULL;
1294         }
1295
1296         if (unlikely(sg_len < 2))
1297                 return NULL;
1298
1299         for_each_sg(sgl, sg, sg_len, i) {
1300                 desc = pxpdma_desc_alloc(pxp_chan);
1301                 if (!desc) {
1302                         dev_err(chan->device->dev, "no enough memory to allocate tx descriptor\n");
1303                         return NULL;
1304                 }
1305
1306                 phys_addr = sg_dma_address(sg);
1307
1308                 if (!first) {
1309                         first = desc;
1310
1311                         desc->layer_param.s0_param.paddr = phys_addr;
1312                 } else {
1313                         list_add_tail(&desc->list, &first->tx_list);
1314                         prev->next = desc;
1315                         desc->next = NULL;
1316
1317                         if (i == 1)
1318                                 desc->layer_param.out_param.paddr = phys_addr;
1319                         else
1320                                 desc->layer_param.ol_param.paddr = phys_addr;
1321                 }
1322
1323                 prev = desc;
1324         }
1325
1326         pxp->pxp_conf_state.layer_nr = sg_len;
1327         first->txd.flags = tx_flags;
1328         first->len = sg_len;
1329         pr_debug("%s:%d first %p, first->len %d, flags %08x\n",
1330                  __func__, __LINE__, first, first->len, first->txd.flags);
1331
1332         return &first->txd;
1333 }
1334
1335 static void pxp_issue_pending(struct dma_chan *chan)
1336 {
1337         struct pxp_channel *pxp_chan = to_pxp_channel(chan);
1338         struct pxp_dma *pxp_dma = to_pxp_dma(chan->device);
1339         struct pxps *pxp = to_pxp(pxp_dma);
1340         unsigned long flags0, flags;
1341
1342         spin_lock_irqsave(&pxp->lock, flags0);
1343         spin_lock_irqsave(&pxp_chan->lock, flags);
1344
1345         if (!list_empty(&pxp_chan->queue)) {
1346                 pxpdma_dequeue(pxp_chan, &head);
1347                 pxp_chan->status = PXP_CHANNEL_READY;
1348         } else {
1349                 spin_unlock_irqrestore(&pxp_chan->lock, flags);
1350                 spin_unlock_irqrestore(&pxp->lock, flags0);
1351                 return;
1352         }
1353         spin_unlock_irqrestore(&pxp_chan->lock, flags);
1354         spin_unlock_irqrestore(&pxp->lock, flags0);
1355
1356         pxp_clk_enable(pxp);
1357         wake_up_interruptible(&pxp->thread_waitq);
1358 }
1359
1360 static void __pxp_terminate_all(struct dma_chan *chan)
1361 {
1362         struct pxp_channel *pxp_chan = to_pxp_channel(chan);
1363
1364         pxp_chan->status = PXP_CHANNEL_INITIALIZED;
1365 }
1366
1367 static int pxp_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
1368                         unsigned long arg)
1369 {
1370         unsigned long flags;
1371         struct pxp_channel *pxp_chan = to_pxp_channel(chan);
1372
1373         /* Only supports DMA_TERMINATE_ALL */
1374         if (cmd != DMA_TERMINATE_ALL)
1375                 return -ENXIO;
1376
1377         spin_lock_irqsave(&pxp_chan->lock, flags);
1378         __pxp_terminate_all(chan);
1379         spin_unlock_irqrestore(&pxp_chan->lock, flags);
1380
1381         return 0;
1382 }
1383
1384 static int pxp_alloc_chan_resources(struct dma_chan *chan)
1385 {
1386         struct pxp_channel *pxp_chan = to_pxp_channel(chan);
1387         struct pxp_dma *pxp_dma = to_pxp_dma(chan->device);
1388         int ret;
1389
1390         /* dmaengine.c now guarantees to only offer free channels */
1391         BUG_ON(chan->client_count > 1);
1392         WARN_ON(pxp_chan->status != PXP_CHANNEL_FREE);
1393
1394         chan->cookie = 1;
1395         pxp_chan->completed = -ENXIO;
1396
1397         pr_debug("%s dma_chan.chan_id %d\n", __func__, chan->chan_id);
1398         ret = pxp_init_channel(pxp_dma, pxp_chan);
1399         if (ret < 0)
1400                 goto err_chan;
1401
1402         pxp_chan->status = PXP_CHANNEL_INITIALIZED;
1403
1404         dev_dbg(&chan->dev->device, "Found channel 0x%x, irq %d\n",
1405                 chan->chan_id, pxp_chan->eof_irq);
1406
1407         return ret;
1408
1409 err_chan:
1410         return ret;
1411 }
1412
1413 static void pxp_free_chan_resources(struct dma_chan *chan)
1414 {
1415         unsigned long flags;
1416         struct pxp_channel *pxp_chan = to_pxp_channel(chan);
1417
1418         spin_lock_irqsave(&pxp_chan->lock, flags);
1419
1420         __pxp_terminate_all(chan);
1421
1422         pxp_chan->status = PXP_CHANNEL_FREE;
1423
1424         spin_unlock_irqrestore(&pxp_chan->lock, flags);
1425 }
1426
1427 static enum dma_status pxp_tx_status(struct dma_chan *chan,
1428                                      dma_cookie_t cookie,
1429                                      struct dma_tx_state *txstate)
1430 {
1431         struct pxp_channel *pxp_chan = to_pxp_channel(chan);
1432
1433         if (cookie != chan->cookie)
1434                 return DMA_ERROR;
1435
1436         if (txstate) {
1437                 txstate->last = pxp_chan->completed;
1438                 txstate->used = chan->cookie;
1439                 txstate->residue = 0;
1440         }
1441         return DMA_SUCCESS;
1442 }
1443
1444 static int pxp_hw_init(struct pxps *pxp)
1445 {
1446         struct pxp_config_data *pxp_conf = &pxp->pxp_conf_state;
1447         struct pxp_proc_data *proc_data = &pxp_conf->proc_data;
1448         u32 reg_val;
1449
1450         /* Pull PxP out of reset */
1451         __raw_writel(0, pxp->base + HW_PXP_CTRL);
1452
1453         /* Config defaults */
1454
1455         /* Initialize non-channel-specific PxP parameters */
1456         proc_data->drect.left = proc_data->srect.left = 0;
1457         proc_data->drect.top = proc_data->srect.top = 0;
1458         proc_data->drect.width = proc_data->srect.width = 0;
1459         proc_data->drect.height = proc_data->srect.height = 0;
1460         proc_data->scaling = 0;
1461         proc_data->hflip = 0;
1462         proc_data->vflip = 0;
1463         proc_data->rotate = 0;
1464         proc_data->bgcolor = 0;
1465
1466         /* Initialize S0 channel parameters */
1467         pxp_conf->s0_param.pixel_fmt = pxp_s0_formats[0];
1468         pxp_conf->s0_param.width = 0;
1469         pxp_conf->s0_param.height = 0;
1470         pxp_conf->s0_param.color_key = -1;
1471         pxp_conf->s0_param.color_key_enable = false;
1472
1473         /* Initialize OL channel parameters */
1474         pxp_conf->ol_param[0].combine_enable = false;
1475         pxp_conf->ol_param[0].width = 0;
1476         pxp_conf->ol_param[0].height = 0;
1477         pxp_conf->ol_param[0].pixel_fmt = PXP_PIX_FMT_RGB565;
1478         pxp_conf->ol_param[0].color_key_enable = false;
1479         pxp_conf->ol_param[0].color_key = -1;
1480         pxp_conf->ol_param[0].global_alpha_enable = false;
1481         pxp_conf->ol_param[0].global_alpha = 0;
1482         pxp_conf->ol_param[0].local_alpha_enable = false;
1483
1484         /* Initialize Output channel parameters */
1485         pxp_conf->out_param.width = 0;
1486         pxp_conf->out_param.height = 0;
1487         pxp_conf->out_param.pixel_fmt = PXP_PIX_FMT_RGB565;
1488
1489         proc_data->overlay_state = 0;
1490
1491         /* Write default h/w config */
1492         pxp_set_ctrl(pxp);
1493         pxp_set_s0param(pxp);
1494         pxp_set_s0crop(pxp);
1495         /*
1496          * simply program the ULC to a higher value than the LRC
1497          * to avoid any AS pixels to show up in the output buffer.
1498          */
1499         __raw_writel(0xFFFFFFFF, pxp->base + HW_PXP_OUT_AS_ULC);
1500         pxp_set_olparam(0, pxp);
1501         pxp_set_olcolorkey(0, pxp);
1502
1503         pxp_set_s0colorkey(pxp);
1504         pxp_set_csc(pxp);
1505         pxp_set_bg(pxp);
1506         pxp_set_lut(pxp);
1507
1508         /* One-time histogram configuration */
1509         reg_val =
1510             BF_PXP_HIST_CTRL_PANEL_MODE(BV_PXP_HIST_CTRL_PANEL_MODE__GRAY16);
1511         __raw_writel(reg_val, pxp->base + HW_PXP_HIST_CTRL);
1512
1513         reg_val = BF_PXP_HIST2_PARAM_VALUE0(0x00) |
1514             BF_PXP_HIST2_PARAM_VALUE1(0x00F);
1515         __raw_writel(reg_val, pxp->base + HW_PXP_HIST2_PARAM);
1516
1517         reg_val = BF_PXP_HIST4_PARAM_VALUE0(0x00) |
1518             BF_PXP_HIST4_PARAM_VALUE1(0x05) |
1519             BF_PXP_HIST4_PARAM_VALUE2(0x0A) | BF_PXP_HIST4_PARAM_VALUE3(0x0F);
1520         __raw_writel(reg_val, pxp->base + HW_PXP_HIST4_PARAM);
1521
1522         reg_val = BF_PXP_HIST8_PARAM0_VALUE0(0x00) |
1523             BF_PXP_HIST8_PARAM0_VALUE1(0x02) |
1524             BF_PXP_HIST8_PARAM0_VALUE2(0x04) | BF_PXP_HIST8_PARAM0_VALUE3(0x06);
1525         __raw_writel(reg_val, pxp->base + HW_PXP_HIST8_PARAM0);
1526         reg_val = BF_PXP_HIST8_PARAM1_VALUE4(0x09) |
1527             BF_PXP_HIST8_PARAM1_VALUE5(0x0B) |
1528             BF_PXP_HIST8_PARAM1_VALUE6(0x0D) | BF_PXP_HIST8_PARAM1_VALUE7(0x0F);
1529         __raw_writel(reg_val, pxp->base + HW_PXP_HIST8_PARAM1);
1530
1531         reg_val = BF_PXP_HIST16_PARAM0_VALUE0(0x00) |
1532             BF_PXP_HIST16_PARAM0_VALUE1(0x01) |
1533             BF_PXP_HIST16_PARAM0_VALUE2(0x02) |
1534             BF_PXP_HIST16_PARAM0_VALUE3(0x03);
1535         __raw_writel(reg_val, pxp->base + HW_PXP_HIST16_PARAM0);
1536         reg_val = BF_PXP_HIST16_PARAM1_VALUE4(0x04) |
1537             BF_PXP_HIST16_PARAM1_VALUE5(0x05) |
1538             BF_PXP_HIST16_PARAM1_VALUE6(0x06) |
1539             BF_PXP_HIST16_PARAM1_VALUE7(0x07);
1540         __raw_writel(reg_val, pxp->base + HW_PXP_HIST16_PARAM1);
1541         reg_val = BF_PXP_HIST16_PARAM2_VALUE8(0x08) |
1542             BF_PXP_HIST16_PARAM2_VALUE9(0x09) |
1543             BF_PXP_HIST16_PARAM2_VALUE10(0x0A) |
1544             BF_PXP_HIST16_PARAM2_VALUE11(0x0B);
1545         __raw_writel(reg_val, pxp->base + HW_PXP_HIST16_PARAM2);
1546         reg_val = BF_PXP_HIST16_PARAM3_VALUE12(0x0C) |
1547             BF_PXP_HIST16_PARAM3_VALUE13(0x0D) |
1548             BF_PXP_HIST16_PARAM3_VALUE14(0x0E) |
1549             BF_PXP_HIST16_PARAM3_VALUE15(0x0F);
1550         __raw_writel(reg_val, pxp->base + HW_PXP_HIST16_PARAM3);
1551
1552         return 0;
1553 }
1554
1555 static int pxp_dma_init(struct pxps *pxp)
1556 {
1557         struct pxp_dma *pxp_dma = &pxp->pxp_dma;
1558         struct dma_device *dma = &pxp_dma->dma;
1559         int i;
1560
1561         dma_cap_set(DMA_SLAVE, dma->cap_mask);
1562         dma_cap_set(DMA_PRIVATE, dma->cap_mask);
1563
1564         /* Compulsory common fields */
1565         dma->dev = pxp->dev;
1566         dma->device_alloc_chan_resources = pxp_alloc_chan_resources;
1567         dma->device_free_chan_resources = pxp_free_chan_resources;
1568         dma->device_tx_status = pxp_tx_status;
1569         dma->device_issue_pending = pxp_issue_pending;
1570
1571         /* Compulsory for DMA_SLAVE fields */
1572         dma->device_prep_slave_sg = pxp_prep_slave_sg;
1573         dma->device_control = pxp_control;
1574
1575         /* Initialize PxP Channels */
1576         INIT_LIST_HEAD(&dma->channels);
1577         for (i = 0; i < NR_PXP_VIRT_CHANNEL; i++) {
1578                 struct pxp_channel *pxp_chan = pxp->channel + i;
1579                 struct dma_chan *dma_chan = &pxp_chan->dma_chan;
1580
1581                 spin_lock_init(&pxp_chan->lock);
1582
1583                 /* Only one EOF IRQ for PxP, shared by all channels */
1584                 pxp_chan->eof_irq = pxp->irq;
1585                 pxp_chan->status = PXP_CHANNEL_FREE;
1586                 pxp_chan->completed = -ENXIO;
1587                 snprintf(pxp_chan->eof_name, sizeof(pxp_chan->eof_name),
1588                          "PXP EOF %d", i);
1589
1590                 dma_chan->device = &pxp_dma->dma;
1591                 dma_chan->cookie = 1;
1592                 dma_chan->chan_id = i;
1593                 list_add_tail(&dma_chan->device_node, &dma->channels);
1594         }
1595
1596         return dma_async_device_register(&pxp_dma->dma);
1597 }
1598
1599 static ssize_t clk_off_timeout_show(struct device *dev,
1600                                     struct device_attribute *attr, char *buf)
1601 {
1602         return sprintf(buf, "%d\n", timeout_in_ms);
1603 }
1604
1605 static ssize_t clk_off_timeout_store(struct device *dev,
1606                                      struct device_attribute *attr,
1607                                      const char *buf, size_t count)
1608 {
1609         int val;
1610         if (sscanf(buf, "%d", &val) > 0) {
1611                 timeout_in_ms = val;
1612                 return count;
1613         }
1614         return -EINVAL;
1615 }
1616
1617 static DEVICE_ATTR(clk_off_timeout, 0644, clk_off_timeout_show,
1618                    clk_off_timeout_store);
1619
1620 static ssize_t block_size_show(struct device *dev,
1621                                struct device_attribute *attr,
1622                                char *buf)
1623 {
1624         return sprintf(buf, "%d\n", block_size);
1625 }
1626
1627 static ssize_t block_size_store(struct device *dev,
1628                                 struct device_attribute *attr,
1629                                 const char *buf, size_t count)
1630 {
1631         char **last = NULL;
1632
1633         block_size = simple_strtoul(buf, last, 0);
1634         if (block_size > 1)
1635                 block_size = 1;
1636
1637         return count;
1638 }
1639 static DEVICE_ATTR(block_size, S_IWUSR | S_IRUGO,
1640                    block_size_show, block_size_store);
1641
1642 static const struct of_device_id imx_pxpdma_dt_ids[] = {
1643         { .compatible = "fsl,imx6dl-pxp-dma", },
1644         { /* sentinel */ }
1645 };
1646 MODULE_DEVICE_TABLE(of, imx_pxpdma_dt_ids);
1647
1648 static int has_pending_task(struct pxps *pxp, struct pxp_channel *task)
1649 {
1650         int found;
1651         unsigned long flags;
1652
1653         spin_lock_irqsave(&pxp->lock, flags);
1654         found = !list_empty(&head);
1655         spin_unlock_irqrestore(&pxp->lock, flags);
1656
1657         return found;
1658 }
1659
1660 static int pxp_dispatch_thread(void *argv)
1661 {
1662         struct pxps *pxp = (struct pxps *)argv;
1663         struct pxp_channel *pending = NULL;
1664         unsigned long flags;
1665
1666         while (!kthread_should_stop()) {
1667                 int ret;
1668                 ret = wait_event_interruptible(pxp->thread_waitq,
1669                                         has_pending_task(pxp, pending));
1670                 if (signal_pending(current))
1671                         continue;
1672
1673                 spin_lock_irqsave(&pxp->lock, flags);
1674                 pxp->pxp_ongoing = 1;
1675                 spin_unlock_irqrestore(&pxp->lock, flags);
1676                 init_completion(&pxp->complete);
1677                 pxpdma_dostart_work(pxp);
1678                 ret = wait_for_completion_timeout(&pxp->complete, 2 * HZ);
1679                 if (ret == 0) {
1680                         printk(KERN_EMERG "%s: task is timeout\n\n", __func__);
1681                         break;
1682                 }
1683         }
1684
1685         return 0;
1686 }
1687
1688 static int pxp_probe(struct platform_device *pdev)
1689 {
1690         struct pxps *pxp;
1691         struct resource *res;
1692         int irq;
1693         int err = 0;
1694
1695         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1696         irq = platform_get_irq(pdev, 0);
1697         if (!res || irq < 0) {
1698                 err = -ENODEV;
1699                 goto exit;
1700         }
1701
1702         pxp = devm_kzalloc(&pdev->dev, sizeof(*pxp), GFP_KERNEL);
1703         if (!pxp) {
1704                 dev_err(&pdev->dev, "failed to allocate control object\n");
1705                 err = -ENOMEM;
1706                 goto exit;
1707         }
1708
1709         pxp->dev = &pdev->dev;
1710
1711         platform_set_drvdata(pdev, pxp);
1712         pxp->irq = irq;
1713
1714         pxp->pxp_ongoing = 0;
1715         pxp->lut_state = 0;
1716
1717         spin_lock_init(&pxp->lock);
1718         mutex_init(&pxp->clk_mutex);
1719
1720         pxp->base = devm_request_and_ioremap(&pdev->dev, res);
1721         if (pxp->base == NULL) {
1722                 dev_err(&pdev->dev, "Couldn't ioremap regs\n");
1723                 err = -ENODEV;
1724                 goto exit;
1725         }
1726
1727         pxp->pdev = pdev;
1728
1729         pxp->clk = devm_clk_get(&pdev->dev, "pxp-axi");
1730         clk_prepare_enable(pxp->clk);
1731
1732         err = pxp_hw_init(pxp);
1733         clk_disable_unprepare(pxp->clk);
1734         if (err) {
1735                 dev_err(&pdev->dev, "failed to initialize hardware\n");
1736                 goto exit;
1737         }
1738
1739         err = devm_request_irq(&pdev->dev, pxp->irq, pxp_irq, 0,
1740                                 "pxp-dmaengine", pxp);
1741         if (err)
1742                 goto exit;
1743         /* Initialize DMA engine */
1744         err = pxp_dma_init(pxp);
1745         if (err < 0)
1746                 goto exit;
1747
1748         if (device_create_file(&pdev->dev, &dev_attr_clk_off_timeout)) {
1749                 dev_err(&pdev->dev,
1750                         "Unable to create file from clk_off_timeout\n");
1751                 goto exit;
1752         }
1753
1754         device_create_file(&pdev->dev, &dev_attr_block_size);
1755         dump_pxp_reg(pxp);
1756
1757         INIT_WORK(&pxp->work, clkoff_callback);
1758         init_timer(&pxp->clk_timer);
1759         pxp->clk_timer.function = pxp_clkoff_timer;
1760         pxp->clk_timer.data = (unsigned long)pxp;
1761
1762         /* allocate a kernel thread to dispatch pxp conf */
1763         pxp->dispatch = kthread_run(pxp_dispatch_thread, pxp, "pxp_dispatch");
1764         if (IS_ERR(pxp->dispatch)) {
1765                 err = PTR_ERR(pxp->dispatch);
1766                 goto exit;
1767         }
1768         init_waitqueue_head(&pxp->thread_waitq);
1769         tx_desc_cache = kmem_cache_create("tx_desc", sizeof(struct pxp_tx_desc),
1770                                           0, SLAB_HWCACHE_ALIGN, NULL);
1771         if (!tx_desc_cache) {
1772                 err = -ENOMEM;
1773                 goto exit;
1774         }
1775
1776         register_pxp_device();
1777
1778 exit:
1779         if (err)
1780                 dev_err(&pdev->dev, "Exiting (unsuccessfully) pxp_probe()\n");
1781         return err;
1782 }
1783
1784 static int pxp_remove(struct platform_device *pdev)
1785 {
1786         struct pxps *pxp = platform_get_drvdata(pdev);
1787
1788         unregister_pxp_device();
1789         kmem_cache_destroy(tx_desc_cache);
1790         kthread_stop(pxp->dispatch);
1791         cancel_work_sync(&pxp->work);
1792         del_timer_sync(&pxp->clk_timer);
1793         clk_disable_unprepare(pxp->clk);
1794         device_remove_file(&pdev->dev, &dev_attr_clk_off_timeout);
1795         device_remove_file(&pdev->dev, &dev_attr_block_size);
1796         dma_async_device_unregister(&(pxp->pxp_dma.dma));
1797
1798         return 0;
1799 }
1800
1801 #ifdef CONFIG_PM
1802 static int pxp_suspend(struct platform_device *pdev, pm_message_t state)
1803 {
1804         struct pxps *pxp = platform_get_drvdata(pdev);
1805
1806         pxp_clk_enable(pxp);
1807         while (__raw_readl(pxp->base + HW_PXP_CTRL) & BM_PXP_CTRL_ENABLE)
1808                 ;
1809
1810         __raw_writel(BM_PXP_CTRL_SFTRST, pxp->base + HW_PXP_CTRL);
1811         pxp_clk_disable(pxp);
1812
1813         return 0;
1814 }
1815
1816 static int pxp_resume(struct platform_device *pdev)
1817 {
1818         struct pxps *pxp = platform_get_drvdata(pdev);
1819
1820         pxp_clk_enable(pxp);
1821         /* Pull PxP out of reset */
1822         __raw_writel(0, pxp->base + HW_PXP_CTRL);
1823         pxp_clk_disable(pxp);
1824
1825         return 0;
1826 }
1827 #else
1828 #define pxp_suspend     NULL
1829 #define pxp_resume      NULL
1830 #endif
1831
1832 static struct platform_driver pxp_driver = {
1833         .driver = {
1834                         .name = "imx-pxp",
1835                         .of_match_table = of_match_ptr(imx_pxpdma_dt_ids),
1836                    },
1837         .probe = pxp_probe,
1838         .remove = pxp_remove,
1839         .suspend = pxp_suspend,
1840         .resume = pxp_resume,
1841 };
1842
1843 module_platform_driver(pxp_driver);
1844
1845
1846 MODULE_DESCRIPTION("i.MX PxP driver");
1847 MODULE_AUTHOR("Freescale Semiconductor, Inc.");
1848 MODULE_LICENSE("GPL");