GNU Linux-libre 4.14.290-gnu1
[releases.git] / drivers / gpu / ipu-v3 / ipu-di.c
1 /*
2  * Copyright (c) 2010 Sascha Hauer <s.hauer@pengutronix.de>
3  * Copyright (C) 2005-2009 Freescale Semiconductor, Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; either version 2 of the License, or (at your
8  * option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13  * for more details.
14  */
15 #include <linux/export.h>
16 #include <linux/module.h>
17 #include <linux/types.h>
18 #include <linux/errno.h>
19 #include <linux/io.h>
20 #include <linux/err.h>
21 #include <linux/platform_device.h>
22
23 #include <video/imx-ipu-v3.h>
24 #include "ipu-prv.h"
25
26 struct ipu_di {
27         void __iomem *base;
28         int id;
29         u32 module;
30         struct clk *clk_di;     /* display input clock */
31         struct clk *clk_ipu;    /* IPU bus clock */
32         struct clk *clk_di_pixel; /* resulting pixel clock */
33         bool inuse;
34         struct ipu_soc *ipu;
35 };
36
37 static DEFINE_MUTEX(di_mutex);
38
39 struct di_sync_config {
40         int run_count;
41         int run_src;
42         int offset_count;
43         int offset_src;
44         int repeat_count;
45         int cnt_clr_src;
46         int cnt_polarity_gen_en;
47         int cnt_polarity_clr_src;
48         int cnt_polarity_trigger_src;
49         int cnt_up;
50         int cnt_down;
51 };
52
53 enum di_pins {
54         DI_PIN11 = 0,
55         DI_PIN12 = 1,
56         DI_PIN13 = 2,
57         DI_PIN14 = 3,
58         DI_PIN15 = 4,
59         DI_PIN16 = 5,
60         DI_PIN17 = 6,
61         DI_PIN_CS = 7,
62
63         DI_PIN_SER_CLK = 0,
64         DI_PIN_SER_RS = 1,
65 };
66
67 enum di_sync_wave {
68         DI_SYNC_NONE = 0,
69         DI_SYNC_CLK = 1,
70         DI_SYNC_INT_HSYNC = 2,
71         DI_SYNC_HSYNC = 3,
72         DI_SYNC_VSYNC = 4,
73         DI_SYNC_DE = 6,
74
75         DI_SYNC_CNT1 = 2,       /* counter >= 2 only */
76         DI_SYNC_CNT4 = 5,       /* counter >= 5 only */
77         DI_SYNC_CNT5 = 6,       /* counter >= 6 only */
78 };
79
80 #define SYNC_WAVE 0
81
82 #define DI_GENERAL              0x0000
83 #define DI_BS_CLKGEN0           0x0004
84 #define DI_BS_CLKGEN1           0x0008
85 #define DI_SW_GEN0(gen)         (0x000c + 4 * ((gen) - 1))
86 #define DI_SW_GEN1(gen)         (0x0030 + 4 * ((gen) - 1))
87 #define DI_STP_REP(gen)         (0x0148 + 4 * (((gen) - 1)/2))
88 #define DI_SYNC_AS_GEN          0x0054
89 #define DI_DW_GEN(gen)          (0x0058 + 4 * (gen))
90 #define DI_DW_SET(gen, set)     (0x0088 + 4 * ((gen) + 0xc * (set)))
91 #define DI_SER_CONF             0x015c
92 #define DI_SSC                  0x0160
93 #define DI_POL                  0x0164
94 #define DI_AW0                  0x0168
95 #define DI_AW1                  0x016c
96 #define DI_SCR_CONF             0x0170
97 #define DI_STAT                 0x0174
98
99 #define DI_SW_GEN0_RUN_COUNT(x)                 ((x) << 19)
100 #define DI_SW_GEN0_RUN_SRC(x)                   ((x) << 16)
101 #define DI_SW_GEN0_OFFSET_COUNT(x)              ((x) << 3)
102 #define DI_SW_GEN0_OFFSET_SRC(x)                ((x) << 0)
103
104 #define DI_SW_GEN1_CNT_POL_GEN_EN(x)            ((x) << 29)
105 #define DI_SW_GEN1_CNT_CLR_SRC(x)               ((x) << 25)
106 #define DI_SW_GEN1_CNT_POL_TRIGGER_SRC(x)       ((x) << 12)
107 #define DI_SW_GEN1_CNT_POL_CLR_SRC(x)           ((x) << 9)
108 #define DI_SW_GEN1_CNT_DOWN(x)                  ((x) << 16)
109 #define DI_SW_GEN1_CNT_UP(x)                    (x)
110 #define DI_SW_GEN1_AUTO_RELOAD                  (0x10000000)
111
112 #define DI_DW_GEN_ACCESS_SIZE_OFFSET            24
113 #define DI_DW_GEN_COMPONENT_SIZE_OFFSET         16
114
115 #define DI_GEN_POLARITY_1                       (1 << 0)
116 #define DI_GEN_POLARITY_2                       (1 << 1)
117 #define DI_GEN_POLARITY_3                       (1 << 2)
118 #define DI_GEN_POLARITY_4                       (1 << 3)
119 #define DI_GEN_POLARITY_5                       (1 << 4)
120 #define DI_GEN_POLARITY_6                       (1 << 5)
121 #define DI_GEN_POLARITY_7                       (1 << 6)
122 #define DI_GEN_POLARITY_8                       (1 << 7)
123 #define DI_GEN_POLARITY_DISP_CLK                (1 << 17)
124 #define DI_GEN_DI_CLK_EXT                       (1 << 20)
125 #define DI_GEN_DI_VSYNC_EXT                     (1 << 21)
126
127 #define DI_POL_DRDY_DATA_POLARITY               (1 << 7)
128 #define DI_POL_DRDY_POLARITY_15                 (1 << 4)
129
130 #define DI_VSYNC_SEL_OFFSET                     13
131
132 static inline u32 ipu_di_read(struct ipu_di *di, unsigned offset)
133 {
134         return readl(di->base + offset);
135 }
136
137 static inline void ipu_di_write(struct ipu_di *di, u32 value, unsigned offset)
138 {
139         writel(value, di->base + offset);
140 }
141
142 static void ipu_di_data_wave_config(struct ipu_di *di,
143                                      int wave_gen,
144                                      int access_size, int component_size)
145 {
146         u32 reg;
147         reg = (access_size << DI_DW_GEN_ACCESS_SIZE_OFFSET) |
148             (component_size << DI_DW_GEN_COMPONENT_SIZE_OFFSET);
149         ipu_di_write(di, reg, DI_DW_GEN(wave_gen));
150 }
151
152 static void ipu_di_data_pin_config(struct ipu_di *di, int wave_gen, int di_pin,
153                 int set, int up, int down)
154 {
155         u32 reg;
156
157         reg = ipu_di_read(di, DI_DW_GEN(wave_gen));
158         reg &= ~(0x3 << (di_pin * 2));
159         reg |= set << (di_pin * 2);
160         ipu_di_write(di, reg, DI_DW_GEN(wave_gen));
161
162         ipu_di_write(di, (down << 16) | up, DI_DW_SET(wave_gen, set));
163 }
164
165 static void ipu_di_sync_config(struct ipu_di *di, struct di_sync_config *config,
166                 int start, int count)
167 {
168         u32 reg;
169         int i;
170
171         for (i = 0; i < count; i++) {
172                 struct di_sync_config *c = &config[i];
173                 int wave_gen = start + i + 1;
174
175                 if ((c->run_count >= 0x1000) || (c->offset_count >= 0x1000) ||
176                                 (c->repeat_count >= 0x1000) ||
177                                 (c->cnt_up >= 0x400) ||
178                                 (c->cnt_down >= 0x400)) {
179                         dev_err(di->ipu->dev, "DI%d counters out of range.\n",
180                                         di->id);
181                         return;
182                 }
183
184                 reg = DI_SW_GEN0_RUN_COUNT(c->run_count) |
185                         DI_SW_GEN0_RUN_SRC(c->run_src) |
186                         DI_SW_GEN0_OFFSET_COUNT(c->offset_count) |
187                         DI_SW_GEN0_OFFSET_SRC(c->offset_src);
188                 ipu_di_write(di, reg, DI_SW_GEN0(wave_gen));
189
190                 reg = DI_SW_GEN1_CNT_POL_GEN_EN(c->cnt_polarity_gen_en) |
191                         DI_SW_GEN1_CNT_CLR_SRC(c->cnt_clr_src) |
192                         DI_SW_GEN1_CNT_POL_TRIGGER_SRC(
193                                         c->cnt_polarity_trigger_src) |
194                         DI_SW_GEN1_CNT_POL_CLR_SRC(c->cnt_polarity_clr_src) |
195                         DI_SW_GEN1_CNT_DOWN(c->cnt_down) |
196                         DI_SW_GEN1_CNT_UP(c->cnt_up);
197
198                 /* Enable auto reload */
199                 if (c->repeat_count == 0)
200                         reg |= DI_SW_GEN1_AUTO_RELOAD;
201
202                 ipu_di_write(di, reg, DI_SW_GEN1(wave_gen));
203
204                 reg = ipu_di_read(di, DI_STP_REP(wave_gen));
205                 reg &= ~(0xffff << (16 * ((wave_gen - 1) & 0x1)));
206                 reg |= c->repeat_count << (16 * ((wave_gen - 1) & 0x1));
207                 ipu_di_write(di, reg, DI_STP_REP(wave_gen));
208         }
209 }
210
211 static void ipu_di_sync_config_interlaced(struct ipu_di *di,
212                 struct ipu_di_signal_cfg *sig)
213 {
214         u32 h_total = sig->mode.hactive + sig->mode.hsync_len +
215                 sig->mode.hback_porch + sig->mode.hfront_porch;
216         u32 v_total = sig->mode.vactive + sig->mode.vsync_len +
217                 sig->mode.vback_porch + sig->mode.vfront_porch;
218         struct di_sync_config cfg[] = {
219                 {
220                         /* 1: internal VSYNC for each frame */
221                         .run_count = v_total * 2 - 1,
222                         .run_src = 3,                   /* == counter 7 */
223                 }, {
224                         /* PIN2: HSYNC waveform */
225                         .run_count = h_total - 1,
226                         .run_src = DI_SYNC_CLK,
227                         .cnt_polarity_gen_en = 1,
228                         .cnt_polarity_trigger_src = DI_SYNC_CLK,
229                         .cnt_down = sig->mode.hsync_len * 2,
230                 }, {
231                         /* PIN3: VSYNC waveform */
232                         .run_count = v_total - 1,
233                         .run_src = 4,                   /* == counter 7 */
234                         .cnt_polarity_gen_en = 1,
235                         .cnt_polarity_trigger_src = 4,  /* == counter 7 */
236                         .cnt_down = sig->mode.vsync_len * 2,
237                         .cnt_clr_src = DI_SYNC_CNT1,
238                 }, {
239                         /* 4: Field */
240                         .run_count = v_total / 2,
241                         .run_src = DI_SYNC_HSYNC,
242                         .offset_count = h_total / 2,
243                         .offset_src = DI_SYNC_CLK,
244                         .repeat_count = 2,
245                         .cnt_clr_src = DI_SYNC_CNT1,
246                 }, {
247                         /* 5: Active lines */
248                         .run_src = DI_SYNC_HSYNC,
249                         .offset_count = (sig->mode.vsync_len +
250                                          sig->mode.vback_porch) / 2,
251                         .offset_src = DI_SYNC_HSYNC,
252                         .repeat_count = sig->mode.vactive / 2,
253                         .cnt_clr_src = DI_SYNC_CNT4,
254                 }, {
255                         /* 6: Active pixel, referenced by DC */
256                         .run_src = DI_SYNC_CLK,
257                         .offset_count = sig->mode.hsync_len +
258                                         sig->mode.hback_porch,
259                         .offset_src = DI_SYNC_CLK,
260                         .repeat_count = sig->mode.hactive,
261                         .cnt_clr_src = DI_SYNC_CNT5,
262                 }, {
263                         /* 7: Half line HSYNC */
264                         .run_count = h_total / 2 - 1,
265                         .run_src = DI_SYNC_CLK,
266                 }
267         };
268
269         ipu_di_sync_config(di, cfg, 0, ARRAY_SIZE(cfg));
270
271         ipu_di_write(di, v_total / 2 - 1, DI_SCR_CONF);
272 }
273
274 static void ipu_di_sync_config_noninterlaced(struct ipu_di *di,
275                 struct ipu_di_signal_cfg *sig, int div)
276 {
277         u32 h_total = sig->mode.hactive + sig->mode.hsync_len +
278                 sig->mode.hback_porch + sig->mode.hfront_porch;
279         u32 v_total = sig->mode.vactive + sig->mode.vsync_len +
280                 sig->mode.vback_porch + sig->mode.vfront_porch;
281         struct di_sync_config cfg[] = {
282                 {
283                         /* 1: INT_HSYNC */
284                         .run_count = h_total - 1,
285                         .run_src = DI_SYNC_CLK,
286                 } , {
287                         /* PIN2: HSYNC */
288                         .run_count = h_total - 1,
289                         .run_src = DI_SYNC_CLK,
290                         .offset_count = div * sig->v_to_h_sync,
291                         .offset_src = DI_SYNC_CLK,
292                         .cnt_polarity_gen_en = 1,
293                         .cnt_polarity_trigger_src = DI_SYNC_CLK,
294                         .cnt_down = sig->mode.hsync_len * 2,
295                 } , {
296                         /* PIN3: VSYNC */
297                         .run_count = v_total - 1,
298                         .run_src = DI_SYNC_INT_HSYNC,
299                         .cnt_polarity_gen_en = 1,
300                         .cnt_polarity_trigger_src = DI_SYNC_INT_HSYNC,
301                         .cnt_down = sig->mode.vsync_len * 2,
302                 } , {
303                         /* 4: Line Active */
304                         .run_src = DI_SYNC_HSYNC,
305                         .offset_count = sig->mode.vsync_len +
306                                         sig->mode.vback_porch,
307                         .offset_src = DI_SYNC_HSYNC,
308                         .repeat_count = sig->mode.vactive,
309                         .cnt_clr_src = DI_SYNC_VSYNC,
310                 } , {
311                         /* 5: Pixel Active, referenced by DC */
312                         .run_src = DI_SYNC_CLK,
313                         .offset_count = sig->mode.hsync_len +
314                                         sig->mode.hback_porch,
315                         .offset_src = DI_SYNC_CLK,
316                         .repeat_count = sig->mode.hactive,
317                         .cnt_clr_src = 5, /* Line Active */
318                 } , {
319                         /* unused */
320                 } , {
321                         /* unused */
322                 } , {
323                         /* unused */
324                 } , {
325                         /* unused */
326                 },
327         };
328         /* can't use #7 and #8 for line active and pixel active counters */
329         struct di_sync_config cfg_vga[] = {
330                 {
331                         /* 1: INT_HSYNC */
332                         .run_count = h_total - 1,
333                         .run_src = DI_SYNC_CLK,
334                 } , {
335                         /* 2: VSYNC */
336                         .run_count = v_total - 1,
337                         .run_src = DI_SYNC_INT_HSYNC,
338                 } , {
339                         /* 3: Line Active */
340                         .run_src = DI_SYNC_INT_HSYNC,
341                         .offset_count = sig->mode.vsync_len +
342                                         sig->mode.vback_porch,
343                         .offset_src = DI_SYNC_INT_HSYNC,
344                         .repeat_count = sig->mode.vactive,
345                         .cnt_clr_src = 3 /* VSYNC */,
346                 } , {
347                         /* PIN4: HSYNC for VGA via TVEv2 on TQ MBa53 */
348                         .run_count = h_total - 1,
349                         .run_src = DI_SYNC_CLK,
350                         .offset_count = div * sig->v_to_h_sync + 18, /* magic value from Freescale TVE driver */
351                         .offset_src = DI_SYNC_CLK,
352                         .cnt_polarity_gen_en = 1,
353                         .cnt_polarity_trigger_src = DI_SYNC_CLK,
354                         .cnt_down = sig->mode.hsync_len * 2,
355                 } , {
356                         /* 5: Pixel Active signal to DC */
357                         .run_src = DI_SYNC_CLK,
358                         .offset_count = sig->mode.hsync_len +
359                                         sig->mode.hback_porch,
360                         .offset_src = DI_SYNC_CLK,
361                         .repeat_count = sig->mode.hactive,
362                         .cnt_clr_src = 4, /* Line Active */
363                 } , {
364                         /* PIN6: VSYNC for VGA via TVEv2 on TQ MBa53 */
365                         .run_count = v_total - 1,
366                         .run_src = DI_SYNC_INT_HSYNC,
367                         .offset_count = 1, /* magic value from Freescale TVE driver */
368                         .offset_src = DI_SYNC_INT_HSYNC,
369                         .cnt_polarity_gen_en = 1,
370                         .cnt_polarity_trigger_src = DI_SYNC_INT_HSYNC,
371                         .cnt_down = sig->mode.vsync_len * 2,
372                 } , {
373                         /* PIN4: HSYNC for VGA via TVEv2 on i.MX53-QSB */
374                         .run_count = h_total - 1,
375                         .run_src = DI_SYNC_CLK,
376                         .offset_count = div * sig->v_to_h_sync + 18, /* magic value from Freescale TVE driver */
377                         .offset_src = DI_SYNC_CLK,
378                         .cnt_polarity_gen_en = 1,
379                         .cnt_polarity_trigger_src = DI_SYNC_CLK,
380                         .cnt_down = sig->mode.hsync_len * 2,
381                 } , {
382                         /* PIN6: VSYNC for VGA via TVEv2 on i.MX53-QSB */
383                         .run_count = v_total - 1,
384                         .run_src = DI_SYNC_INT_HSYNC,
385                         .offset_count = 1, /* magic value from Freescale TVE driver */
386                         .offset_src = DI_SYNC_INT_HSYNC,
387                         .cnt_polarity_gen_en = 1,
388                         .cnt_polarity_trigger_src = DI_SYNC_INT_HSYNC,
389                         .cnt_down = sig->mode.vsync_len * 2,
390                 } , {
391                         /* unused */
392                 },
393         };
394
395         ipu_di_write(di, v_total - 1, DI_SCR_CONF);
396         if (sig->hsync_pin == 2 && sig->vsync_pin == 3)
397                 ipu_di_sync_config(di, cfg, 0, ARRAY_SIZE(cfg));
398         else
399                 ipu_di_sync_config(di, cfg_vga, 0, ARRAY_SIZE(cfg_vga));
400 }
401
402 static void ipu_di_config_clock(struct ipu_di *di,
403         const struct ipu_di_signal_cfg *sig)
404 {
405         struct clk *clk;
406         unsigned clkgen0;
407         uint32_t val;
408
409         if (sig->clkflags & IPU_DI_CLKMODE_EXT) {
410                 /*
411                  * CLKMODE_EXT means we must use the DI clock: this is
412                  * needed for things like LVDS which needs to feed the
413                  * DI and LDB with the same pixel clock.
414                  */
415                 clk = di->clk_di;
416
417                 if (sig->clkflags & IPU_DI_CLKMODE_SYNC) {
418                         /*
419                          * CLKMODE_SYNC means that we want the DI to be
420                          * clocked at the same rate as the parent clock.
421                          * This is needed (eg) for LDB which needs to be
422                          * fed with the same pixel clock.  We assume that
423                          * the LDB clock has already been set correctly.
424                          */
425                         clkgen0 = 1 << 4;
426                 } else {
427                         /*
428                          * We can use the divider.  We should really have
429                          * a flag here indicating whether the bridge can
430                          * cope with a fractional divider or not.  For the
431                          * time being, let's go for simplicitly and
432                          * reliability.
433                          */
434                         unsigned long in_rate;
435                         unsigned div;
436
437                         clk_set_rate(clk, sig->mode.pixelclock);
438
439                         in_rate = clk_get_rate(clk);
440                         div = DIV_ROUND_CLOSEST(in_rate, sig->mode.pixelclock);
441                         div = clamp(div, 1U, 255U);
442
443                         clkgen0 = div << 4;
444                 }
445         } else {
446                 /*
447                  * For other interfaces, we can arbitarily select between
448                  * the DI specific clock and the internal IPU clock.  See
449                  * DI_GENERAL bit 20.  We select the IPU clock if it can
450                  * give us a clock rate within 1% of the requested frequency,
451                  * otherwise we use the DI clock.
452                  */
453                 unsigned long rate, clkrate;
454                 unsigned div, error;
455
456                 clkrate = clk_get_rate(di->clk_ipu);
457                 div = DIV_ROUND_CLOSEST(clkrate, sig->mode.pixelclock);
458                 div = clamp(div, 1U, 255U);
459                 rate = clkrate / div;
460
461                 error = rate / (sig->mode.pixelclock / 1000);
462
463                 dev_dbg(di->ipu->dev, "  IPU clock can give %lu with divider %u, error %c%d.%d%%\n",
464                         rate, div, error < 1000 ? '-' : '+',
465                         abs(error - 1000) / 10, abs(error - 1000) % 10);
466
467                 /* Allow a 1% error */
468                 if (error < 1010 && error >= 990) {
469                         clk = di->clk_ipu;
470
471                         clkgen0 = div << 4;
472                 } else {
473                         unsigned long in_rate;
474                         unsigned div;
475
476                         clk = di->clk_di;
477
478                         clk_set_rate(clk, sig->mode.pixelclock);
479
480                         in_rate = clk_get_rate(clk);
481                         div = DIV_ROUND_CLOSEST(in_rate, sig->mode.pixelclock);
482                         div = clamp(div, 1U, 255U);
483
484                         clkgen0 = div << 4;
485                 }
486         }
487
488         di->clk_di_pixel = clk;
489
490         /* Set the divider */
491         ipu_di_write(di, clkgen0, DI_BS_CLKGEN0);
492
493         /*
494          * Set the high/low periods.  Bits 24:16 give us the falling edge,
495          * and bits 8:0 give the rising edge.  LSB is fraction, and is
496          * based on the divider above.  We want a 50% duty cycle, so set
497          * the falling edge to be half the divider.
498          */
499         ipu_di_write(di, (clkgen0 >> 4) << 16, DI_BS_CLKGEN1);
500
501         /* Finally select the input clock */
502         val = ipu_di_read(di, DI_GENERAL) & ~DI_GEN_DI_CLK_EXT;
503         if (clk == di->clk_di)
504                 val |= DI_GEN_DI_CLK_EXT;
505         ipu_di_write(di, val, DI_GENERAL);
506
507         dev_dbg(di->ipu->dev, "Want %luHz IPU %luHz DI %luHz using %s, %luHz\n",
508                 sig->mode.pixelclock,
509                 clk_get_rate(di->clk_ipu),
510                 clk_get_rate(di->clk_di),
511                 clk == di->clk_di ? "DI" : "IPU",
512                 clk_get_rate(di->clk_di_pixel) / (clkgen0 >> 4));
513 }
514
515 /*
516  * This function is called to adjust a video mode to IPU restrictions.
517  * It is meant to be called from drm crtc mode_fixup() methods.
518  */
519 int ipu_di_adjust_videomode(struct ipu_di *di, struct videomode *mode)
520 {
521         u32 diff;
522
523         if (mode->vfront_porch >= 2)
524                 return 0;
525
526         diff = 2 - mode->vfront_porch;
527
528         if (mode->vback_porch >= diff) {
529                 mode->vfront_porch = 2;
530                 mode->vback_porch -= diff;
531         } else if (mode->vsync_len > diff) {
532                 mode->vfront_porch = 2;
533                 mode->vsync_len = mode->vsync_len - diff;
534         } else {
535                 dev_warn(di->ipu->dev, "failed to adjust videomode\n");
536                 return -EINVAL;
537         }
538
539         dev_dbg(di->ipu->dev, "videomode adapted for IPU restrictions\n");
540         return 0;
541 }
542 EXPORT_SYMBOL_GPL(ipu_di_adjust_videomode);
543
544 static u32 ipu_di_gen_polarity(int pin)
545 {
546         switch (pin) {
547         case 1:
548                 return DI_GEN_POLARITY_1;
549         case 2:
550                 return DI_GEN_POLARITY_2;
551         case 3:
552                 return DI_GEN_POLARITY_3;
553         case 4:
554                 return DI_GEN_POLARITY_4;
555         case 5:
556                 return DI_GEN_POLARITY_5;
557         case 6:
558                 return DI_GEN_POLARITY_6;
559         case 7:
560                 return DI_GEN_POLARITY_7;
561         case 8:
562                 return DI_GEN_POLARITY_8;
563         }
564         return 0;
565 }
566
567 int ipu_di_init_sync_panel(struct ipu_di *di, struct ipu_di_signal_cfg *sig)
568 {
569         u32 reg;
570         u32 di_gen, vsync_cnt;
571         u32 div;
572
573         dev_dbg(di->ipu->dev, "disp %d: panel size = %d x %d\n",
574                 di->id, sig->mode.hactive, sig->mode.vactive);
575
576         dev_dbg(di->ipu->dev, "Clocks: IPU %luHz DI %luHz Needed %luHz\n",
577                 clk_get_rate(di->clk_ipu),
578                 clk_get_rate(di->clk_di),
579                 sig->mode.pixelclock);
580
581         mutex_lock(&di_mutex);
582
583         ipu_di_config_clock(di, sig);
584
585         div = ipu_di_read(di, DI_BS_CLKGEN0) & 0xfff;
586         div = div / 16;         /* Now divider is integer portion */
587
588         /* Setup pixel clock timing */
589         /* Down time is half of period */
590         ipu_di_write(di, (div << 16), DI_BS_CLKGEN1);
591
592         ipu_di_data_wave_config(di, SYNC_WAVE, div - 1, div - 1);
593         ipu_di_data_pin_config(di, SYNC_WAVE, DI_PIN15, 3, 0, div * 2);
594
595         di_gen = ipu_di_read(di, DI_GENERAL) & DI_GEN_DI_CLK_EXT;
596         di_gen |= DI_GEN_DI_VSYNC_EXT;
597
598         if (sig->mode.flags & DISPLAY_FLAGS_INTERLACED) {
599                 ipu_di_sync_config_interlaced(di, sig);
600
601                 /* set y_sel = 1 */
602                 di_gen |= 0x10000000;
603
604                 vsync_cnt = 3;
605         } else {
606                 ipu_di_sync_config_noninterlaced(di, sig, div);
607
608                 vsync_cnt = 3;
609                 if (di->id == 1)
610                         /*
611                          * TODO: change only for TVEv2, parallel display
612                          * uses pin 2 / 3
613                          */
614                         if (!(sig->hsync_pin == 2 && sig->vsync_pin == 3))
615                                 vsync_cnt = 6;
616         }
617
618         if (sig->mode.flags & DISPLAY_FLAGS_HSYNC_HIGH)
619                 di_gen |= ipu_di_gen_polarity(sig->hsync_pin);
620         if (sig->mode.flags & DISPLAY_FLAGS_VSYNC_HIGH)
621                 di_gen |= ipu_di_gen_polarity(sig->vsync_pin);
622
623         if (sig->clk_pol)
624                 di_gen |= DI_GEN_POLARITY_DISP_CLK;
625
626         ipu_di_write(di, di_gen, DI_GENERAL);
627
628         ipu_di_write(di, (--vsync_cnt << DI_VSYNC_SEL_OFFSET) | 0x00000002,
629                      DI_SYNC_AS_GEN);
630
631         reg = ipu_di_read(di, DI_POL);
632         reg &= ~(DI_POL_DRDY_DATA_POLARITY | DI_POL_DRDY_POLARITY_15);
633
634         if (sig->enable_pol)
635                 reg |= DI_POL_DRDY_POLARITY_15;
636         if (sig->data_pol)
637                 reg |= DI_POL_DRDY_DATA_POLARITY;
638
639         ipu_di_write(di, reg, DI_POL);
640
641         mutex_unlock(&di_mutex);
642
643         return 0;
644 }
645 EXPORT_SYMBOL_GPL(ipu_di_init_sync_panel);
646
647 int ipu_di_enable(struct ipu_di *di)
648 {
649         int ret;
650
651         WARN_ON(IS_ERR(di->clk_di_pixel));
652
653         ret = clk_prepare_enable(di->clk_di_pixel);
654         if (ret)
655                 return ret;
656
657         ipu_module_enable(di->ipu, di->module);
658
659         return 0;
660 }
661 EXPORT_SYMBOL_GPL(ipu_di_enable);
662
663 int ipu_di_disable(struct ipu_di *di)
664 {
665         WARN_ON(IS_ERR(di->clk_di_pixel));
666
667         ipu_module_disable(di->ipu, di->module);
668
669         clk_disable_unprepare(di->clk_di_pixel);
670
671         return 0;
672 }
673 EXPORT_SYMBOL_GPL(ipu_di_disable);
674
675 int ipu_di_get_num(struct ipu_di *di)
676 {
677         return di->id;
678 }
679 EXPORT_SYMBOL_GPL(ipu_di_get_num);
680
681 static DEFINE_MUTEX(ipu_di_lock);
682
683 struct ipu_di *ipu_di_get(struct ipu_soc *ipu, int disp)
684 {
685         struct ipu_di *di;
686
687         if (disp > 1)
688                 return ERR_PTR(-EINVAL);
689
690         di = ipu->di_priv[disp];
691
692         mutex_lock(&ipu_di_lock);
693
694         if (di->inuse) {
695                 di = ERR_PTR(-EBUSY);
696                 goto out;
697         }
698
699         di->inuse = true;
700 out:
701         mutex_unlock(&ipu_di_lock);
702
703         return di;
704 }
705 EXPORT_SYMBOL_GPL(ipu_di_get);
706
707 void ipu_di_put(struct ipu_di *di)
708 {
709         mutex_lock(&ipu_di_lock);
710
711         di->inuse = false;
712
713         mutex_unlock(&ipu_di_lock);
714 }
715 EXPORT_SYMBOL_GPL(ipu_di_put);
716
717 int ipu_di_init(struct ipu_soc *ipu, struct device *dev, int id,
718                 unsigned long base,
719                 u32 module, struct clk *clk_ipu)
720 {
721         struct ipu_di *di;
722
723         if (id > 1)
724                 return -ENODEV;
725
726         di = devm_kzalloc(dev, sizeof(*di), GFP_KERNEL);
727         if (!di)
728                 return -ENOMEM;
729
730         ipu->di_priv[id] = di;
731
732         di->clk_di = devm_clk_get(dev, id ? "di1" : "di0");
733         if (IS_ERR(di->clk_di))
734                 return PTR_ERR(di->clk_di);
735
736         di->module = module;
737         di->id = id;
738         di->clk_ipu = clk_ipu;
739         di->base = devm_ioremap(dev, base, PAGE_SIZE);
740         if (!di->base)
741                 return -ENOMEM;
742
743         ipu_di_write(di, 0x10, DI_BS_CLKGEN0);
744
745         dev_dbg(dev, "DI%d base: 0x%08lx remapped to %p\n",
746                         id, base, di->base);
747         di->inuse = false;
748         di->ipu = ipu;
749
750         return 0;
751 }
752
753 void ipu_di_exit(struct ipu_soc *ipu, int id)
754 {
755 }