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