GNU Linux-libre 4.19.286-gnu1
[releases.git] / arch / arm / mach-omap2 / display.c
1 /*
2  * OMAP2plus display device setup / initialization.
3  *
4  * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
5  *      Senthilvadivu Guruswamy
6  *      Sumit Semwal
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  *
12  * This program is distributed "as is" WITHOUT ANY WARRANTY of any
13  * kind, whether express or implied; without even the implied warranty
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  */
17
18 #include <linux/string.h>
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/platform_device.h>
22 #include <linux/io.h>
23 #include <linux/clk.h>
24 #include <linux/err.h>
25 #include <linux/delay.h>
26 #include <linux/of.h>
27 #include <linux/of_platform.h>
28 #include <linux/slab.h>
29 #include <linux/mfd/syscon.h>
30 #include <linux/regmap.h>
31
32 #include <linux/platform_data/omapdss.h>
33 #include "omap_hwmod.h"
34 #include "omap_device.h"
35 #include "common.h"
36
37 #include "soc.h"
38 #include "iomap.h"
39 #include "control.h"
40 #include "display.h"
41 #include "prm.h"
42
43 #define DISPC_CONTROL           0x0040
44 #define DISPC_CONTROL2          0x0238
45 #define DISPC_CONTROL3          0x0848
46 #define DISPC_IRQSTATUS         0x0018
47
48 #define DSS_CONTROL             0x40
49 #define DSS_SDI_CONTROL         0x44
50 #define DSS_PLL_CONTROL         0x48
51
52 #define LCD_EN_MASK             (0x1 << 0)
53 #define DIGIT_EN_MASK           (0x1 << 1)
54
55 #define FRAMEDONE_IRQ_SHIFT     0
56 #define EVSYNC_EVEN_IRQ_SHIFT   2
57 #define EVSYNC_ODD_IRQ_SHIFT    3
58 #define FRAMEDONE2_IRQ_SHIFT    22
59 #define FRAMEDONE3_IRQ_SHIFT    30
60 #define FRAMEDONETV_IRQ_SHIFT   24
61
62 /*
63  * FRAMEDONE_IRQ_TIMEOUT: how long (in milliseconds) to wait during DISPC
64  *     reset before deciding that something has gone wrong
65  */
66 #define FRAMEDONE_IRQ_TIMEOUT           100
67
68 #if defined(CONFIG_FB_OMAP2)
69 static struct platform_device omap_display_device = {
70         .name          = "omapdss",
71         .id            = -1,
72         .dev            = {
73                 .platform_data = NULL,
74         },
75 };
76
77 #define OMAP4_DSIPHY_SYSCON_OFFSET              0x78
78
79 static struct regmap *omap4_dsi_mux_syscon;
80
81 static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes)
82 {
83         u32 enable_mask, enable_shift;
84         u32 pipd_mask, pipd_shift;
85         u32 reg;
86         int ret;
87
88         if (dsi_id == 0) {
89                 enable_mask = OMAP4_DSI1_LANEENABLE_MASK;
90                 enable_shift = OMAP4_DSI1_LANEENABLE_SHIFT;
91                 pipd_mask = OMAP4_DSI1_PIPD_MASK;
92                 pipd_shift = OMAP4_DSI1_PIPD_SHIFT;
93         } else if (dsi_id == 1) {
94                 enable_mask = OMAP4_DSI2_LANEENABLE_MASK;
95                 enable_shift = OMAP4_DSI2_LANEENABLE_SHIFT;
96                 pipd_mask = OMAP4_DSI2_PIPD_MASK;
97                 pipd_shift = OMAP4_DSI2_PIPD_SHIFT;
98         } else {
99                 return -ENODEV;
100         }
101
102         ret = regmap_read(omap4_dsi_mux_syscon,
103                                           OMAP4_DSIPHY_SYSCON_OFFSET,
104                                           &reg);
105         if (ret)
106                 return ret;
107
108         reg &= ~enable_mask;
109         reg &= ~pipd_mask;
110
111         reg |= (lanes << enable_shift) & enable_mask;
112         reg |= (lanes << pipd_shift) & pipd_mask;
113
114         regmap_write(omap4_dsi_mux_syscon, OMAP4_DSIPHY_SYSCON_OFFSET, reg);
115
116         return 0;
117 }
118
119 static int omap_dsi_enable_pads(int dsi_id, unsigned lane_mask)
120 {
121         if (cpu_is_omap44xx())
122                 return omap4_dsi_mux_pads(dsi_id, lane_mask);
123
124         return 0;
125 }
126
127 static void omap_dsi_disable_pads(int dsi_id, unsigned lane_mask)
128 {
129         if (cpu_is_omap44xx())
130                 omap4_dsi_mux_pads(dsi_id, 0);
131 }
132
133 static enum omapdss_version __init omap_display_get_version(void)
134 {
135         if (cpu_is_omap24xx())
136                 return OMAPDSS_VER_OMAP24xx;
137         else if (cpu_is_omap3630())
138                 return OMAPDSS_VER_OMAP3630;
139         else if (cpu_is_omap34xx()) {
140                 if (soc_is_am35xx()) {
141                         return OMAPDSS_VER_AM35xx;
142                 } else {
143                         if (omap_rev() < OMAP3430_REV_ES3_0)
144                                 return OMAPDSS_VER_OMAP34xx_ES1;
145                         else
146                                 return OMAPDSS_VER_OMAP34xx_ES3;
147                 }
148         } else if (omap_rev() == OMAP4430_REV_ES1_0)
149                 return OMAPDSS_VER_OMAP4430_ES1;
150         else if (omap_rev() == OMAP4430_REV_ES2_0 ||
151                         omap_rev() == OMAP4430_REV_ES2_1 ||
152                         omap_rev() == OMAP4430_REV_ES2_2)
153                 return OMAPDSS_VER_OMAP4430_ES2;
154         else if (cpu_is_omap44xx())
155                 return OMAPDSS_VER_OMAP4;
156         else if (soc_is_omap54xx())
157                 return OMAPDSS_VER_OMAP5;
158         else if (soc_is_am43xx())
159                 return OMAPDSS_VER_AM43xx;
160         else if (soc_is_dra7xx())
161                 return OMAPDSS_VER_DRA7xx;
162         else
163                 return OMAPDSS_VER_UNKNOWN;
164 }
165
166 static int __init omapdss_init_fbdev(void)
167 {
168         static struct omap_dss_board_info board_data = {
169                 .dsi_enable_pads = omap_dsi_enable_pads,
170                 .dsi_disable_pads = omap_dsi_disable_pads,
171         };
172         struct device_node *node;
173         int r;
174
175         board_data.version = omap_display_get_version();
176         if (board_data.version == OMAPDSS_VER_UNKNOWN) {
177                 pr_err("DSS not supported on this SoC\n");
178                 return -ENODEV;
179         }
180
181         omap_display_device.dev.platform_data = &board_data;
182
183         r = platform_device_register(&omap_display_device);
184         if (r < 0) {
185                 pr_err("Unable to register omapdss device\n");
186                 return r;
187         }
188
189         /* create vrfb device */
190         r = omap_init_vrfb();
191         if (r < 0) {
192                 pr_err("Unable to register omapvrfb device\n");
193                 return r;
194         }
195
196         /* create FB device */
197         r = omap_init_fb();
198         if (r < 0) {
199                 pr_err("Unable to register omapfb device\n");
200                 return r;
201         }
202
203         /* create V4L2 display device */
204         r = omap_init_vout();
205         if (r < 0) {
206                 pr_err("Unable to register omap_vout device\n");
207                 return r;
208         }
209
210         /* add DSI info for omap4 */
211         node = of_find_node_by_name(NULL, "omap4_padconf_global");
212         if (node)
213                 omap4_dsi_mux_syscon = syscon_node_to_regmap(node);
214         of_node_put(node);
215
216         return 0;
217 }
218 #else
219 static inline int omapdss_init_fbdev(void)
220 {
221         return 0;
222 }
223 #endif /* CONFIG_FB_OMAP2 */
224
225 static void dispc_disable_outputs(void)
226 {
227         u32 v, irq_mask = 0;
228         bool lcd_en, digit_en, lcd2_en = false, lcd3_en = false;
229         int i;
230         struct omap_dss_dispc_dev_attr *da;
231         struct omap_hwmod *oh;
232
233         oh = omap_hwmod_lookup("dss_dispc");
234         if (!oh) {
235                 WARN(1, "display: could not disable outputs during reset - could not find dss_dispc hwmod\n");
236                 return;
237         }
238
239         if (!oh->dev_attr) {
240                 pr_err("display: could not disable outputs during reset due to missing dev_attr\n");
241                 return;
242         }
243
244         da = (struct omap_dss_dispc_dev_attr *)oh->dev_attr;
245
246         /* store value of LCDENABLE and DIGITENABLE bits */
247         v = omap_hwmod_read(oh, DISPC_CONTROL);
248         lcd_en = v & LCD_EN_MASK;
249         digit_en = v & DIGIT_EN_MASK;
250
251         /* store value of LCDENABLE for LCD2 */
252         if (da->manager_count > 2) {
253                 v = omap_hwmod_read(oh, DISPC_CONTROL2);
254                 lcd2_en = v & LCD_EN_MASK;
255         }
256
257         /* store value of LCDENABLE for LCD3 */
258         if (da->manager_count > 3) {
259                 v = omap_hwmod_read(oh, DISPC_CONTROL3);
260                 lcd3_en = v & LCD_EN_MASK;
261         }
262
263         if (!(lcd_en | digit_en | lcd2_en | lcd3_en))
264                 return; /* no managers currently enabled */
265
266         /*
267          * If any manager was enabled, we need to disable it before
268          * DSS clocks are disabled or DISPC module is reset
269          */
270         if (lcd_en)
271                 irq_mask |= 1 << FRAMEDONE_IRQ_SHIFT;
272
273         if (digit_en) {
274                 if (da->has_framedonetv_irq) {
275                         irq_mask |= 1 << FRAMEDONETV_IRQ_SHIFT;
276                 } else {
277                         irq_mask |= 1 << EVSYNC_EVEN_IRQ_SHIFT |
278                                 1 << EVSYNC_ODD_IRQ_SHIFT;
279                 }
280         }
281
282         if (lcd2_en)
283                 irq_mask |= 1 << FRAMEDONE2_IRQ_SHIFT;
284         if (lcd3_en)
285                 irq_mask |= 1 << FRAMEDONE3_IRQ_SHIFT;
286
287         /*
288          * clear any previous FRAMEDONE, FRAMEDONETV,
289          * EVSYNC_EVEN/ODD, FRAMEDONE2 or FRAMEDONE3 interrupts
290          */
291         omap_hwmod_write(irq_mask, oh, DISPC_IRQSTATUS);
292
293         /* disable LCD and TV managers */
294         v = omap_hwmod_read(oh, DISPC_CONTROL);
295         v &= ~(LCD_EN_MASK | DIGIT_EN_MASK);
296         omap_hwmod_write(v, oh, DISPC_CONTROL);
297
298         /* disable LCD2 manager */
299         if (da->manager_count > 2) {
300                 v = omap_hwmod_read(oh, DISPC_CONTROL2);
301                 v &= ~LCD_EN_MASK;
302                 omap_hwmod_write(v, oh, DISPC_CONTROL2);
303         }
304
305         /* disable LCD3 manager */
306         if (da->manager_count > 3) {
307                 v = omap_hwmod_read(oh, DISPC_CONTROL3);
308                 v &= ~LCD_EN_MASK;
309                 omap_hwmod_write(v, oh, DISPC_CONTROL3);
310         }
311
312         i = 0;
313         while ((omap_hwmod_read(oh, DISPC_IRQSTATUS) & irq_mask) !=
314                irq_mask) {
315                 i++;
316                 if (i > FRAMEDONE_IRQ_TIMEOUT) {
317                         pr_err("didn't get FRAMEDONE1/2/3 or TV interrupt\n");
318                         break;
319                 }
320                 mdelay(1);
321         }
322 }
323
324 int omap_dss_reset(struct omap_hwmod *oh)
325 {
326         struct omap_hwmod_opt_clk *oc;
327         int c = 0;
328         int i, r;
329
330         if (!(oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)) {
331                 pr_err("dss_core: hwmod data doesn't contain reset data\n");
332                 return -EINVAL;
333         }
334
335         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
336                 if (oc->_clk)
337                         clk_prepare_enable(oc->_clk);
338
339         dispc_disable_outputs();
340
341         /* clear SDI registers */
342         if (cpu_is_omap3430()) {
343                 omap_hwmod_write(0x0, oh, DSS_SDI_CONTROL);
344                 omap_hwmod_write(0x0, oh, DSS_PLL_CONTROL);
345         }
346
347         /*
348          * clear DSS_CONTROL register to switch DSS clock sources to
349          * PRCM clock, if any
350          */
351         omap_hwmod_write(0x0, oh, DSS_CONTROL);
352
353         omap_test_timeout((omap_hwmod_read(oh, oh->class->sysc->syss_offs)
354                                 & SYSS_RESETDONE_MASK),
355                         MAX_MODULE_SOFTRESET_WAIT, c);
356
357         if (c == MAX_MODULE_SOFTRESET_WAIT)
358                 pr_warn("dss_core: waiting for reset to finish failed\n");
359         else
360                 pr_debug("dss_core: softreset done\n");
361
362         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
363                 if (oc->_clk)
364                         clk_disable_unprepare(oc->_clk);
365
366         r = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
367
368         return r;
369 }
370
371 static const char * const omapdss_compat_names[] __initconst = {
372         "ti,omap2-dss",
373         "ti,omap3-dss",
374         "ti,omap4-dss",
375         "ti,omap5-dss",
376         "ti,dra7-dss",
377 };
378
379 static struct device_node * __init omapdss_find_dss_of_node(void)
380 {
381         struct device_node *node;
382         int i;
383
384         for (i = 0; i < ARRAY_SIZE(omapdss_compat_names); ++i) {
385                 node = of_find_compatible_node(NULL, NULL,
386                         omapdss_compat_names[i]);
387                 if (node)
388                         return node;
389         }
390
391         return NULL;
392 }
393
394 static int __init omapdss_init_of(void)
395 {
396         int r;
397         struct device_node *node;
398         struct platform_device *pdev;
399
400         /* only create dss helper devices if dss is enabled in the .dts */
401
402         node = omapdss_find_dss_of_node();
403         if (!node)
404                 return 0;
405
406         if (!of_device_is_available(node))
407                 return 0;
408
409         pdev = of_find_device_by_node(node);
410
411         if (!pdev) {
412                 pr_err("Unable to find DSS platform device\n");
413                 return -ENODEV;
414         }
415
416         r = of_platform_populate(node, NULL, NULL, &pdev->dev);
417         if (r) {
418                 pr_err("Unable to populate DSS submodule devices\n");
419                 return r;
420         }
421
422         return omapdss_init_fbdev();
423 }
424 omap_device_initcall(omapdss_init_of);