blob: 282c814ea2e259b887ac809ef765b86ca33a11ac [file] [log] [blame]
Sumit Semwalb7ee79a2011-01-24 06:21:54 +00001/*
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
Paul Gortmakerd44b28c2011-07-31 10:52:44 -040018#include <linux/string.h>
Sumit Semwalb7ee79a2011-01-24 06:21:54 +000019#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>
Tony Lindgrendeee6d52011-12-06 17:50:42 +010025#include <linux/delay.h>
Sumit Semwalb7ee79a2011-01-24 06:21:54 +000026
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030027#include <video/omapdss.h>
Senthilvadivu Guruswamycf07f532011-01-24 06:21:56 +000028#include <plat/omap_hwmod.h>
29#include <plat/omap_device.h>
Tomi Valkeinen700dee72011-05-23 15:50:47 +030030#include <plat/omap-pm.h>
Tony Lindgrendeee6d52011-12-06 17:50:42 +010031#include "common.h"
Sumit Semwalb7ee79a2011-01-24 06:21:54 +000032
Tony Lindgrenee0839c2012-02-24 10:34:35 -080033#include "iomap.h"
Mythri P Kee9dfd82012-01-02 14:02:37 +053034#include "mux.h"
Tomi Valkeinendc358352011-06-15 15:22:47 +030035#include "control.h"
Archit Tanejab923d402011-10-06 18:04:08 -060036#include "display.h"
37
38#define DISPC_CONTROL 0x0040
39#define DISPC_CONTROL2 0x0238
Chandrabhanu Mahapatra465698e2012-06-28 15:14:02 +053040#define DISPC_CONTROL3 0x0848
Archit Tanejab923d402011-10-06 18:04:08 -060041#define DISPC_IRQSTATUS 0x0018
42
43#define DSS_SYSCONFIG 0x10
44#define DSS_SYSSTATUS 0x14
45#define DSS_CONTROL 0x40
46#define DSS_SDI_CONTROL 0x44
47#define DSS_PLL_CONTROL 0x48
48
49#define LCD_EN_MASK (0x1 << 0)
50#define DIGIT_EN_MASK (0x1 << 1)
51
52#define FRAMEDONE_IRQ_SHIFT 0
53#define EVSYNC_EVEN_IRQ_SHIFT 2
54#define EVSYNC_ODD_IRQ_SHIFT 3
55#define FRAMEDONE2_IRQ_SHIFT 22
Chandrabhanu Mahapatra465698e2012-06-28 15:14:02 +053056#define FRAMEDONE3_IRQ_SHIFT 30
Archit Tanejab923d402011-10-06 18:04:08 -060057#define FRAMEDONETV_IRQ_SHIFT 24
58
59/*
60 * FRAMEDONE_IRQ_TIMEOUT: how long (in milliseconds) to wait during DISPC
61 * reset before deciding that something has gone wrong
62 */
63#define FRAMEDONE_IRQ_TIMEOUT 100
Tomi Valkeinendc358352011-06-15 15:22:47 +030064
Sumit Semwalb7ee79a2011-01-24 06:21:54 +000065static struct platform_device omap_display_device = {
66 .name = "omapdss",
67 .id = -1,
68 .dev = {
69 .platform_data = NULL,
70 },
71};
72
Archit Taneja179e0452011-04-18 09:32:13 +053073struct omap_dss_hwmod_data {
74 const char *oh_name;
75 const char *dev_name;
76 const int id;
77};
78
Andi Kleenbcad6dc2012-10-04 17:11:28 -070079static const struct omap_dss_hwmod_data omap2_dss_hwmod_data[] __initconst = {
Archit Taneja179e0452011-04-18 09:32:13 +053080 { "dss_core", "omapdss_dss", -1 },
81 { "dss_dispc", "omapdss_dispc", -1 },
82 { "dss_rfbi", "omapdss_rfbi", -1 },
83 { "dss_venc", "omapdss_venc", -1 },
84};
85
Andi Kleenbcad6dc2012-10-04 17:11:28 -070086static const struct omap_dss_hwmod_data omap3_dss_hwmod_data[] __initconst = {
Archit Taneja179e0452011-04-18 09:32:13 +053087 { "dss_core", "omapdss_dss", -1 },
88 { "dss_dispc", "omapdss_dispc", -1 },
89 { "dss_rfbi", "omapdss_rfbi", -1 },
90 { "dss_venc", "omapdss_venc", -1 },
Tomi Valkeinen7c68dd92011-08-03 14:00:57 +030091 { "dss_dsi1", "omapdss_dsi", 0 },
Archit Taneja179e0452011-04-18 09:32:13 +053092};
93
Andi Kleenbcad6dc2012-10-04 17:11:28 -070094static const struct omap_dss_hwmod_data omap4_dss_hwmod_data[] __initconst = {
Archit Taneja179e0452011-04-18 09:32:13 +053095 { "dss_core", "omapdss_dss", -1 },
96 { "dss_dispc", "omapdss_dispc", -1 },
97 { "dss_rfbi", "omapdss_rfbi", -1 },
Tomi Valkeinen7c68dd92011-08-03 14:00:57 +030098 { "dss_dsi1", "omapdss_dsi", 0 },
99 { "dss_dsi2", "omapdss_dsi", 1 },
Archit Taneja179e0452011-04-18 09:32:13 +0530100 { "dss_hdmi", "omapdss_hdmi", -1 },
101};
102
Tomi Valkeinenffc81fc2012-10-19 12:14:12 +0300103static void __init omap4_tpd12s015_mux_pads(void)
Mythri P Kee9dfd82012-01-02 14:02:37 +0530104{
Mythri P Kee9dfd82012-01-02 14:02:37 +0530105 omap_mux_init_signal("hdmi_cec",
106 OMAP_PIN_INPUT_PULLUP);
Mythri P Kee9dfd82012-01-02 14:02:37 +0530107 omap_mux_init_signal("hdmi_ddc_scl",
108 OMAP_PIN_INPUT_PULLUP);
109 omap_mux_init_signal("hdmi_ddc_sda",
110 OMAP_PIN_INPUT_PULLUP);
Tomi Valkeinenffc81fc2012-10-19 12:14:12 +0300111}
112
113static void __init omap4_hdmi_mux_pads(enum omap_hdmi_flags flags)
114{
115 u32 reg;
116 u16 control_i2c_1;
Mythri P K9a901682012-01-02 14:02:38 +0530117
118 /*
119 * CONTROL_I2C_1: HDMI_DDC_SDA_PULLUPRESX (bit 28) and
120 * HDMI_DDC_SCL_PULLUPRESX (bit 24) are set to disable
121 * internal pull up resistor.
122 */
123 if (flags & OMAP_HDMI_SDA_SCL_EXTERNAL_PULLUP) {
124 control_i2c_1 = OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_I2C_1;
125 reg = omap4_ctrl_pad_readl(control_i2c_1);
126 reg |= (OMAP4_HDMI_DDC_SDA_PULLUPRESX_MASK |
127 OMAP4_HDMI_DDC_SCL_PULLUPRESX_MASK);
128 omap4_ctrl_pad_writel(reg, control_i2c_1);
129 }
Mythri P Kee9dfd82012-01-02 14:02:37 +0530130}
131
Tomi Valkeinene8a30b22012-03-19 20:03:15 -0700132static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes)
Tomi Valkeinendc358352011-06-15 15:22:47 +0300133{
134 u32 enable_mask, enable_shift;
135 u32 pipd_mask, pipd_shift;
136 u32 reg;
137
138 if (dsi_id == 0) {
139 enable_mask = OMAP4_DSI1_LANEENABLE_MASK;
140 enable_shift = OMAP4_DSI1_LANEENABLE_SHIFT;
141 pipd_mask = OMAP4_DSI1_PIPD_MASK;
142 pipd_shift = OMAP4_DSI1_PIPD_SHIFT;
143 } else if (dsi_id == 1) {
144 enable_mask = OMAP4_DSI2_LANEENABLE_MASK;
145 enable_shift = OMAP4_DSI2_LANEENABLE_SHIFT;
146 pipd_mask = OMAP4_DSI2_PIPD_MASK;
147 pipd_shift = OMAP4_DSI2_PIPD_SHIFT;
148 } else {
149 return -ENODEV;
150 }
151
152 reg = omap4_ctrl_pad_readl(OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY);
153
154 reg &= ~enable_mask;
155 reg &= ~pipd_mask;
156
157 reg |= (lanes << enable_shift) & enable_mask;
158 reg |= (lanes << pipd_shift) & pipd_mask;
159
160 omap4_ctrl_pad_writel(reg, OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY);
161
162 return 0;
163}
164
Tony Lindgrend1589f02012-02-20 09:43:30 -0800165int __init omap_hdmi_init(enum omap_hdmi_flags flags)
Mythri P Kee9dfd82012-01-02 14:02:37 +0530166{
Tomi Valkeinenffc81fc2012-10-19 12:14:12 +0300167 if (cpu_is_omap44xx()) {
Mythri P K9a901682012-01-02 14:02:38 +0530168 omap4_hdmi_mux_pads(flags);
Tomi Valkeinenffc81fc2012-10-19 12:14:12 +0300169 omap4_tpd12s015_mux_pads();
170 }
Mythri P Kee9dfd82012-01-02 14:02:37 +0530171
172 return 0;
173}
174
Tomi Valkeinene8a30b22012-03-19 20:03:15 -0700175static int omap_dsi_enable_pads(int dsi_id, unsigned lane_mask)
Tomi Valkeinen5bc416c2011-06-15 15:21:12 +0300176{
Tomi Valkeinendc358352011-06-15 15:22:47 +0300177 if (cpu_is_omap44xx())
178 return omap4_dsi_mux_pads(dsi_id, lane_mask);
179
Tomi Valkeinen5bc416c2011-06-15 15:21:12 +0300180 return 0;
181}
182
Tomi Valkeinene8a30b22012-03-19 20:03:15 -0700183static void omap_dsi_disable_pads(int dsi_id, unsigned lane_mask)
Tomi Valkeinen5bc416c2011-06-15 15:21:12 +0300184{
Tomi Valkeinendc358352011-06-15 15:22:47 +0300185 if (cpu_is_omap44xx())
186 omap4_dsi_mux_pads(dsi_id, 0);
Tomi Valkeinen5bc416c2011-06-15 15:21:12 +0300187}
188
Tomi Valkeinen62c1dcf2012-03-08 12:37:58 +0200189static int omap_dss_set_min_bus_tput(struct device *dev, unsigned long tput)
190{
191 return omap_pm_set_min_bus_tput(dev, OCP_INITIATOR_AGENT, tput);
192}
193
Tomi Valkeinen966eaed2012-02-17 17:15:58 +0200194static struct platform_device *create_dss_pdev(const char *pdev_name,
195 int pdev_id, const char *oh_name, void *pdata, int pdata_len,
196 struct platform_device *parent)
197{
198 struct platform_device *pdev;
199 struct omap_device *od;
200 struct omap_hwmod *ohs[1];
201 struct omap_hwmod *oh;
202 int r;
203
204 oh = omap_hwmod_lookup(oh_name);
205 if (!oh) {
206 pr_err("Could not look up %s\n", oh_name);
207 r = -ENODEV;
208 goto err;
209 }
210
211 pdev = platform_device_alloc(pdev_name, pdev_id);
212 if (!pdev) {
213 pr_err("Could not create pdev for %s\n", pdev_name);
214 r = -ENOMEM;
215 goto err;
216 }
217
218 if (parent != NULL)
219 pdev->dev.parent = &parent->dev;
220
221 if (pdev->id != -1)
222 dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id);
223 else
224 dev_set_name(&pdev->dev, "%s", pdev->name);
225
226 ohs[0] = oh;
227 od = omap_device_alloc(pdev, ohs, 1, NULL, 0);
Wei Yongjun9ee67722012-10-08 14:32:49 -0700228 if (IS_ERR(od)) {
Tomi Valkeinen966eaed2012-02-17 17:15:58 +0200229 pr_err("Could not alloc omap_device for %s\n", pdev_name);
230 r = -ENOMEM;
231 goto err;
232 }
233
234 r = platform_device_add_data(pdev, pdata, pdata_len);
235 if (r) {
236 pr_err("Could not set pdata for %s\n", pdev_name);
237 goto err;
238 }
239
240 r = omap_device_register(pdev);
241 if (r) {
242 pr_err("Could not register omap_device for %s\n", pdev_name);
243 goto err;
244 }
245
246 return pdev;
247
248err:
249 return ERR_PTR(r);
250}
251
Tomi Valkeinen53f576a2012-03-07 13:09:43 +0200252static struct platform_device *create_simple_dss_pdev(const char *pdev_name,
253 int pdev_id, void *pdata, int pdata_len,
254 struct platform_device *parent)
255{
256 struct platform_device *pdev;
257 int r;
258
259 pdev = platform_device_alloc(pdev_name, pdev_id);
260 if (!pdev) {
261 pr_err("Could not create pdev for %s\n", pdev_name);
262 r = -ENOMEM;
263 goto err;
264 }
265
266 if (parent != NULL)
267 pdev->dev.parent = &parent->dev;
268
269 if (pdev->id != -1)
270 dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id);
271 else
272 dev_set_name(&pdev->dev, "%s", pdev->name);
273
274 r = platform_device_add_data(pdev, pdata, pdata_len);
275 if (r) {
276 pr_err("Could not set pdata for %s\n", pdev_name);
277 goto err;
278 }
279
Tomi Valkeinenc3a21fc2012-06-05 13:17:32 +0300280 r = platform_device_add(pdev);
Tomi Valkeinen53f576a2012-03-07 13:09:43 +0200281 if (r) {
Tomi Valkeinenc3a21fc2012-06-05 13:17:32 +0300282 pr_err("Could not register platform_device for %s\n", pdev_name);
Tomi Valkeinen53f576a2012-03-07 13:09:43 +0200283 goto err;
284 }
285
286 return pdev;
287
288err:
289 return ERR_PTR(r);
290}
291
Tomi Valkeinenacd18af2012-09-28 12:42:28 +0300292static enum omapdss_version __init omap_display_get_version(void)
293{
294 if (cpu_is_omap24xx())
295 return OMAPDSS_VER_OMAP24xx;
296 else if (cpu_is_omap3630())
297 return OMAPDSS_VER_OMAP3630;
298 else if (cpu_is_omap34xx()) {
299 if (soc_is_am35xx()) {
300 return OMAPDSS_VER_AM35xx;
301 } else {
302 if (omap_rev() < OMAP3430_REV_ES3_0)
303 return OMAPDSS_VER_OMAP34xx_ES1;
304 else
305 return OMAPDSS_VER_OMAP34xx_ES3;
306 }
307 } else if (omap_rev() == OMAP4430_REV_ES1_0)
308 return OMAPDSS_VER_OMAP4430_ES1;
309 else if (omap_rev() == OMAP4430_REV_ES2_0 ||
310 omap_rev() == OMAP4430_REV_ES2_1 ||
311 omap_rev() == OMAP4430_REV_ES2_2)
312 return OMAPDSS_VER_OMAP4430_ES2;
313 else if (cpu_is_omap44xx())
314 return OMAPDSS_VER_OMAP4;
315 else if (soc_is_omap54xx())
316 return OMAPDSS_VER_OMAP5;
317 else
318 return OMAPDSS_VER_UNKNOWN;
319}
320
Sumit Semwalb7ee79a2011-01-24 06:21:54 +0000321int __init omap_display_init(struct omap_dss_board_info *board_data)
322{
323 int r = 0;
Kevin Hilman3528c582011-07-21 13:48:45 -0700324 struct platform_device *pdev;
Archit Taneja179e0452011-04-18 09:32:13 +0530325 int i, oh_count;
Archit Taneja179e0452011-04-18 09:32:13 +0530326 const struct omap_dss_hwmod_data *curr_dss_hwmod;
Tomi Valkeinen966eaed2012-02-17 17:15:58 +0200327 struct platform_device *dss_pdev;
Tomi Valkeinenacd18af2012-09-28 12:42:28 +0300328 enum omapdss_version ver;
Senthilvadivu Guruswamycf07f532011-01-24 06:21:56 +0000329
Tomi Valkeinen00928ea2012-02-20 11:50:06 +0200330 /* create omapdss device */
331
Tomi Valkeinenacd18af2012-09-28 12:42:28 +0300332 ver = omap_display_get_version();
333
334 if (ver == OMAPDSS_VER_UNKNOWN) {
335 pr_err("DSS not supported on this SoC\n");
336 return -ENODEV;
337 }
338
339 board_data->version = ver;
Tomi Valkeinen00928ea2012-02-20 11:50:06 +0200340 board_data->dsi_enable_pads = omap_dsi_enable_pads;
341 board_data->dsi_disable_pads = omap_dsi_disable_pads;
342 board_data->get_context_loss_count = omap_pm_get_dev_context_loss_count;
343 board_data->set_min_bus_tput = omap_dss_set_min_bus_tput;
344
345 omap_display_device.dev.platform_data = board_data;
346
347 r = platform_device_register(&omap_display_device);
348 if (r < 0) {
349 pr_err("Unable to register omapdss device\n");
350 return r;
351 }
352
353 /* create devices for dss hwmods */
Senthilvadivu Guruswamycf07f532011-01-24 06:21:56 +0000354
Archit Taneja179e0452011-04-18 09:32:13 +0530355 if (cpu_is_omap24xx()) {
356 curr_dss_hwmod = omap2_dss_hwmod_data;
357 oh_count = ARRAY_SIZE(omap2_dss_hwmod_data);
358 } else if (cpu_is_omap34xx()) {
359 curr_dss_hwmod = omap3_dss_hwmod_data;
360 oh_count = ARRAY_SIZE(omap3_dss_hwmod_data);
361 } else {
362 curr_dss_hwmod = omap4_dss_hwmod_data;
363 oh_count = ARRAY_SIZE(omap4_dss_hwmod_data);
364 }
Mayuresh Janorkar545376e2011-01-27 11:17:04 +0000365
Tomi Valkeinen966eaed2012-02-17 17:15:58 +0200366 /*
367 * First create the pdev for dss_core, which is used as a parent device
368 * by the other dss pdevs. Note: dss_core has to be the first item in
369 * the hwmod list.
370 */
371 dss_pdev = create_dss_pdev(curr_dss_hwmod[0].dev_name,
372 curr_dss_hwmod[0].id,
373 curr_dss_hwmod[0].oh_name,
Tomi Valkeinen35deca32012-03-01 15:45:53 +0200374 board_data, sizeof(*board_data),
Tomi Valkeinen966eaed2012-02-17 17:15:58 +0200375 NULL);
Semwal, Sumitfd4b34f2011-03-01 02:42:13 -0600376
Tomi Valkeinen966eaed2012-02-17 17:15:58 +0200377 if (IS_ERR(dss_pdev)) {
378 pr_err("Could not build omap_device for %s\n",
379 curr_dss_hwmod[0].oh_name);
380
381 return PTR_ERR(dss_pdev);
382 }
383
384 for (i = 1; i < oh_count; i++) {
385 pdev = create_dss_pdev(curr_dss_hwmod[i].dev_name,
386 curr_dss_hwmod[i].id,
387 curr_dss_hwmod[i].oh_name,
Tomi Valkeinen35deca32012-03-01 15:45:53 +0200388 board_data, sizeof(*board_data),
Tomi Valkeinen966eaed2012-02-17 17:15:58 +0200389 dss_pdev);
Senthilvadivu Guruswamycf07f532011-01-24 06:21:56 +0000390
Tomi Valkeinen966eaed2012-02-17 17:15:58 +0200391 if (IS_ERR(pdev)) {
392 pr_err("Could not build omap_device for %s\n",
393 curr_dss_hwmod[i].oh_name);
394
395 return PTR_ERR(pdev);
396 }
Senthilvadivu Guruswamycf07f532011-01-24 06:21:56 +0000397 }
Sumit Semwalb7ee79a2011-01-24 06:21:54 +0000398
Tomi Valkeinen53f576a2012-03-07 13:09:43 +0200399 /* Create devices for DPI and SDI */
400
Tomi Valkeinen35deca32012-03-01 15:45:53 +0200401 pdev = create_simple_dss_pdev("omapdss_dpi", -1,
402 board_data, sizeof(*board_data), dss_pdev);
Tomi Valkeinen53f576a2012-03-07 13:09:43 +0200403 if (IS_ERR(pdev)) {
404 pr_err("Could not build platform_device for omapdss_dpi\n");
405 return PTR_ERR(pdev);
406 }
407
408 if (cpu_is_omap34xx()) {
Tomi Valkeinen35deca32012-03-01 15:45:53 +0200409 pdev = create_simple_dss_pdev("omapdss_sdi", -1,
410 board_data, sizeof(*board_data), dss_pdev);
Tomi Valkeinen53f576a2012-03-07 13:09:43 +0200411 if (IS_ERR(pdev)) {
412 pr_err("Could not build platform_device for omapdss_sdi\n");
413 return PTR_ERR(pdev);
414 }
415 }
416
Tomi Valkeinen00928ea2012-02-20 11:50:06 +0200417 return 0;
Sumit Semwalb7ee79a2011-01-24 06:21:54 +0000418}
Tomi Valkeinen13662dc2011-11-08 03:16:13 -0700419
Archit Tanejab923d402011-10-06 18:04:08 -0600420static void dispc_disable_outputs(void)
421{
422 u32 v, irq_mask = 0;
Chandrabhanu Mahapatra465698e2012-06-28 15:14:02 +0530423 bool lcd_en, digit_en, lcd2_en = false, lcd3_en = false;
Archit Tanejab923d402011-10-06 18:04:08 -0600424 int i;
425 struct omap_dss_dispc_dev_attr *da;
426 struct omap_hwmod *oh;
427
428 oh = omap_hwmod_lookup("dss_dispc");
429 if (!oh) {
430 WARN(1, "display: could not disable outputs during reset - could not find dss_dispc hwmod\n");
431 return;
432 }
433
434 if (!oh->dev_attr) {
435 pr_err("display: could not disable outputs during reset due to missing dev_attr\n");
436 return;
437 }
438
439 da = (struct omap_dss_dispc_dev_attr *)oh->dev_attr;
440
441 /* store value of LCDENABLE and DIGITENABLE bits */
442 v = omap_hwmod_read(oh, DISPC_CONTROL);
443 lcd_en = v & LCD_EN_MASK;
444 digit_en = v & DIGIT_EN_MASK;
445
446 /* store value of LCDENABLE for LCD2 */
447 if (da->manager_count > 2) {
448 v = omap_hwmod_read(oh, DISPC_CONTROL2);
449 lcd2_en = v & LCD_EN_MASK;
450 }
451
Chandrabhanu Mahapatra465698e2012-06-28 15:14:02 +0530452 /* store value of LCDENABLE for LCD3 */
453 if (da->manager_count > 3) {
454 v = omap_hwmod_read(oh, DISPC_CONTROL3);
455 lcd3_en = v & LCD_EN_MASK;
456 }
457
458 if (!(lcd_en | digit_en | lcd2_en | lcd3_en))
Archit Tanejab923d402011-10-06 18:04:08 -0600459 return; /* no managers currently enabled */
460
461 /*
462 * If any manager was enabled, we need to disable it before
463 * DSS clocks are disabled or DISPC module is reset
464 */
465 if (lcd_en)
466 irq_mask |= 1 << FRAMEDONE_IRQ_SHIFT;
467
468 if (digit_en) {
469 if (da->has_framedonetv_irq) {
470 irq_mask |= 1 << FRAMEDONETV_IRQ_SHIFT;
471 } else {
472 irq_mask |= 1 << EVSYNC_EVEN_IRQ_SHIFT |
473 1 << EVSYNC_ODD_IRQ_SHIFT;
474 }
475 }
476
477 if (lcd2_en)
478 irq_mask |= 1 << FRAMEDONE2_IRQ_SHIFT;
Chandrabhanu Mahapatra465698e2012-06-28 15:14:02 +0530479 if (lcd3_en)
480 irq_mask |= 1 << FRAMEDONE3_IRQ_SHIFT;
Archit Tanejab923d402011-10-06 18:04:08 -0600481
482 /*
483 * clear any previous FRAMEDONE, FRAMEDONETV,
Chandrabhanu Mahapatra465698e2012-06-28 15:14:02 +0530484 * EVSYNC_EVEN/ODD, FRAMEDONE2 or FRAMEDONE3 interrupts
Archit Tanejab923d402011-10-06 18:04:08 -0600485 */
486 omap_hwmod_write(irq_mask, oh, DISPC_IRQSTATUS);
487
488 /* disable LCD and TV managers */
489 v = omap_hwmod_read(oh, DISPC_CONTROL);
490 v &= ~(LCD_EN_MASK | DIGIT_EN_MASK);
491 omap_hwmod_write(v, oh, DISPC_CONTROL);
492
493 /* disable LCD2 manager */
494 if (da->manager_count > 2) {
495 v = omap_hwmod_read(oh, DISPC_CONTROL2);
496 v &= ~LCD_EN_MASK;
497 omap_hwmod_write(v, oh, DISPC_CONTROL2);
498 }
499
Chandrabhanu Mahapatra465698e2012-06-28 15:14:02 +0530500 /* disable LCD3 manager */
501 if (da->manager_count > 3) {
502 v = omap_hwmod_read(oh, DISPC_CONTROL3);
503 v &= ~LCD_EN_MASK;
504 omap_hwmod_write(v, oh, DISPC_CONTROL3);
505 }
506
Archit Tanejab923d402011-10-06 18:04:08 -0600507 i = 0;
508 while ((omap_hwmod_read(oh, DISPC_IRQSTATUS) & irq_mask) !=
509 irq_mask) {
510 i++;
511 if (i > FRAMEDONE_IRQ_TIMEOUT) {
Chandrabhanu Mahapatra465698e2012-06-28 15:14:02 +0530512 pr_err("didn't get FRAMEDONE1/2/3 or TV interrupt\n");
Archit Tanejab923d402011-10-06 18:04:08 -0600513 break;
514 }
515 mdelay(1);
516 }
517}
518
Tomi Valkeinen13662dc2011-11-08 03:16:13 -0700519#define MAX_MODULE_SOFTRESET_WAIT 10000
520int omap_dss_reset(struct omap_hwmod *oh)
521{
522 struct omap_hwmod_opt_clk *oc;
523 int c = 0;
524 int i, r;
525
526 if (!(oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)) {
527 pr_err("dss_core: hwmod data doesn't contain reset data\n");
528 return -EINVAL;
529 }
530
531 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
532 if (oc->_clk)
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600533 clk_prepare_enable(oc->_clk);
Tomi Valkeinen13662dc2011-11-08 03:16:13 -0700534
Archit Tanejab923d402011-10-06 18:04:08 -0600535 dispc_disable_outputs();
536
537 /* clear SDI registers */
538 if (cpu_is_omap3430()) {
539 omap_hwmod_write(0x0, oh, DSS_SDI_CONTROL);
540 omap_hwmod_write(0x0, oh, DSS_PLL_CONTROL);
541 }
542
543 /*
544 * clear DSS_CONTROL register to switch DSS clock sources to
545 * PRCM clock, if any
546 */
547 omap_hwmod_write(0x0, oh, DSS_CONTROL);
548
Tomi Valkeinen13662dc2011-11-08 03:16:13 -0700549 omap_test_timeout((omap_hwmod_read(oh, oh->class->sysc->syss_offs)
550 & SYSS_RESETDONE_MASK),
551 MAX_MODULE_SOFTRESET_WAIT, c);
552
553 if (c == MAX_MODULE_SOFTRESET_WAIT)
554 pr_warning("dss_core: waiting for reset to finish failed\n");
555 else
556 pr_debug("dss_core: softreset done\n");
557
558 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
559 if (oc->_clk)
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600560 clk_disable_unprepare(oc->_clk);
Tomi Valkeinen13662dc2011-11-08 03:16:13 -0700561
562 r = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
563
564 return r;
565}