Blame view

arch/arm/mach-omap2/display.c 8.41 KB
b7ee79abc   Sumit Semwal   OMAP2, 3: DSS2: C...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  /*
   * OMAP2plus display device setup / initialization.
   *
   * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
   *	Senthilvadivu Guruswamy
   *	Sumit Semwal
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   *
   * This program is distributed "as is" WITHOUT ANY WARRANTY of any
   * kind, whether express or implied; without even the implied warranty
   * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   */
d44b28c49   Paul Gortmaker   arm: fix implicit...
17
  #include <linux/string.h>
b7ee79abc   Sumit Semwal   OMAP2, 3: DSS2: C...
18
19
20
21
22
23
  #include <linux/kernel.h>
  #include <linux/init.h>
  #include <linux/platform_device.h>
  #include <linux/io.h>
  #include <linux/clk.h>
  #include <linux/err.h>
a0b38cc4d   Tomi Valkeinen   OMAP: DSS2: Move ...
24
  #include <video/omapdss.h>
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
25
26
  #include <plat/omap_hwmod.h>
  #include <plat/omap_device.h>
700dee78d   Tomi Valkeinen   OMAP: DSS2: Use o...
27
  #include <plat/omap-pm.h>
13662dc5b   Tomi Valkeinen   ARM: OMAP: HWMOD:...
28
  #include <plat/common.h>
b7ee79abc   Sumit Semwal   OMAP2, 3: DSS2: C...
29

dc35835c6   Tomi Valkeinen   OMAP: DSS2: Imple...
30
  #include "control.h"
b923d40dd   Archit Taneja   ARM: OMAP2PLUS: D...
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  #include "display.h"
  
  #define DISPC_CONTROL		0x0040
  #define DISPC_CONTROL2		0x0238
  #define DISPC_IRQSTATUS		0x0018
  
  #define DSS_SYSCONFIG		0x10
  #define DSS_SYSSTATUS		0x14
  #define DSS_CONTROL		0x40
  #define DSS_SDI_CONTROL		0x44
  #define DSS_PLL_CONTROL		0x48
  
  #define LCD_EN_MASK		(0x1 << 0)
  #define DIGIT_EN_MASK		(0x1 << 1)
  
  #define FRAMEDONE_IRQ_SHIFT	0
  #define EVSYNC_EVEN_IRQ_SHIFT	2
  #define EVSYNC_ODD_IRQ_SHIFT	3
  #define FRAMEDONE2_IRQ_SHIFT	22
  #define FRAMEDONETV_IRQ_SHIFT	24
  
  /*
   * FRAMEDONE_IRQ_TIMEOUT: how long (in milliseconds) to wait during DISPC
   *     reset before deciding that something has gone wrong
   */
  #define FRAMEDONE_IRQ_TIMEOUT		100
dc35835c6   Tomi Valkeinen   OMAP: DSS2: Imple...
57

b7ee79abc   Sumit Semwal   OMAP2, 3: DSS2: C...
58
59
60
61
62
63
64
  static struct platform_device omap_display_device = {
  	.name          = "omapdss",
  	.id            = -1,
  	.dev            = {
  		.platform_data = NULL,
  	},
  };
179e04536   Archit Taneja   OMAP2PLUS: DSS2: ...
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
  struct omap_dss_hwmod_data {
  	const char *oh_name;
  	const char *dev_name;
  	const int id;
  };
  
  static const struct omap_dss_hwmod_data omap2_dss_hwmod_data[] __initdata = {
  	{ "dss_core", "omapdss_dss", -1 },
  	{ "dss_dispc", "omapdss_dispc", -1 },
  	{ "dss_rfbi", "omapdss_rfbi", -1 },
  	{ "dss_venc", "omapdss_venc", -1 },
  };
  
  static const struct omap_dss_hwmod_data omap3_dss_hwmod_data[] __initdata = {
  	{ "dss_core", "omapdss_dss", -1 },
  	{ "dss_dispc", "omapdss_dispc", -1 },
  	{ "dss_rfbi", "omapdss_rfbi", -1 },
  	{ "dss_venc", "omapdss_venc", -1 },
7c68dd96d   Tomi Valkeinen   OMAP: DSS2: Chang...
83
  	{ "dss_dsi1", "omapdss_dsi", 0 },
179e04536   Archit Taneja   OMAP2PLUS: DSS2: ...
84
85
86
87
88
89
90
  };
  
  static const struct omap_dss_hwmod_data omap4_dss_hwmod_data[] __initdata = {
  	{ "dss_core", "omapdss_dss", -1 },
  	{ "dss_dispc", "omapdss_dispc", -1 },
  	{ "dss_rfbi", "omapdss_rfbi", -1 },
  	{ "dss_venc", "omapdss_venc", -1 },
7c68dd96d   Tomi Valkeinen   OMAP: DSS2: Chang...
91
92
  	{ "dss_dsi1", "omapdss_dsi", 0 },
  	{ "dss_dsi2", "omapdss_dsi", 1 },
179e04536   Archit Taneja   OMAP2PLUS: DSS2: ...
93
94
  	{ "dss_hdmi", "omapdss_hdmi", -1 },
  };
dc35835c6   Tomi Valkeinen   OMAP: DSS2: Imple...
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes)
  {
  	u32 enable_mask, enable_shift;
  	u32 pipd_mask, pipd_shift;
  	u32 reg;
  
  	if (dsi_id == 0) {
  		enable_mask = OMAP4_DSI1_LANEENABLE_MASK;
  		enable_shift = OMAP4_DSI1_LANEENABLE_SHIFT;
  		pipd_mask = OMAP4_DSI1_PIPD_MASK;
  		pipd_shift = OMAP4_DSI1_PIPD_SHIFT;
  	} else if (dsi_id == 1) {
  		enable_mask = OMAP4_DSI2_LANEENABLE_MASK;
  		enable_shift = OMAP4_DSI2_LANEENABLE_SHIFT;
  		pipd_mask = OMAP4_DSI2_PIPD_MASK;
  		pipd_shift = OMAP4_DSI2_PIPD_SHIFT;
  	} else {
  		return -ENODEV;
  	}
  
  	reg = omap4_ctrl_pad_readl(OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY);
  
  	reg &= ~enable_mask;
  	reg &= ~pipd_mask;
  
  	reg |= (lanes << enable_shift) & enable_mask;
  	reg |= (lanes << pipd_shift) & pipd_mask;
  
  	omap4_ctrl_pad_writel(reg, OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY);
  
  	return 0;
  }
5bc416cba   Tomi Valkeinen   OMAP: DSS2: DSI: ...
127
128
  static int omap_dsi_enable_pads(int dsi_id, unsigned lane_mask)
  {
dc35835c6   Tomi Valkeinen   OMAP: DSS2: Imple...
129
130
  	if (cpu_is_omap44xx())
  		return omap4_dsi_mux_pads(dsi_id, lane_mask);
5bc416cba   Tomi Valkeinen   OMAP: DSS2: DSI: ...
131
132
133
134
135
  	return 0;
  }
  
  static void omap_dsi_disable_pads(int dsi_id, unsigned lane_mask)
  {
dc35835c6   Tomi Valkeinen   OMAP: DSS2: Imple...
136
137
  	if (cpu_is_omap44xx())
  		omap4_dsi_mux_pads(dsi_id, 0);
5bc416cba   Tomi Valkeinen   OMAP: DSS2: DSI: ...
138
  }
b7ee79abc   Sumit Semwal   OMAP2, 3: DSS2: C...
139
140
141
  int __init omap_display_init(struct omap_dss_board_info *board_data)
  {
  	int r = 0;
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
142
  	struct omap_hwmod *oh;
3528c58eb   Kevin Hilman   OMAP: omap_device...
143
  	struct platform_device *pdev;
179e04536   Archit Taneja   OMAP2PLUS: DSS2: ...
144
  	int i, oh_count;
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
145
  	struct omap_display_platform_data pdata;
179e04536   Archit Taneja   OMAP2PLUS: DSS2: ...
146
  	const struct omap_dss_hwmod_data *curr_dss_hwmod;
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
147
148
  
  	memset(&pdata, 0, sizeof(pdata));
179e04536   Archit Taneja   OMAP2PLUS: DSS2: ...
149
150
151
152
153
154
155
156
157
158
  	if (cpu_is_omap24xx()) {
  		curr_dss_hwmod = omap2_dss_hwmod_data;
  		oh_count = ARRAY_SIZE(omap2_dss_hwmod_data);
  	} else if (cpu_is_omap34xx()) {
  		curr_dss_hwmod = omap3_dss_hwmod_data;
  		oh_count = ARRAY_SIZE(omap3_dss_hwmod_data);
  	} else {
  		curr_dss_hwmod = omap4_dss_hwmod_data;
  		oh_count = ARRAY_SIZE(omap4_dss_hwmod_data);
  	}
545376e73   Mayuresh Janorkar   OMAP4: DSS2: Add ...
159

5bc416cba   Tomi Valkeinen   OMAP: DSS2: DSI: ...
160
161
162
163
  	if (board_data->dsi_enable_pads == NULL)
  		board_data->dsi_enable_pads = omap_dsi_enable_pads;
  	if (board_data->dsi_disable_pads == NULL)
  		board_data->dsi_disable_pads = omap_dsi_disable_pads;
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
164
  	pdata.board_data = board_data;
700dee78d   Tomi Valkeinen   OMAP: DSS2: Use o...
165
166
  	pdata.board_data->get_context_loss_count =
  		omap_pm_get_dev_context_loss_count;
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
167
168
  
  	for (i = 0; i < oh_count; i++) {
179e04536   Archit Taneja   OMAP2PLUS: DSS2: ...
169
  		oh = omap_hwmod_lookup(curr_dss_hwmod[i].oh_name);
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
170
  		if (!oh) {
179e04536   Archit Taneja   OMAP2PLUS: DSS2: ...
171
172
173
  			pr_err("Could not look up %s
  ",
  				curr_dss_hwmod[i].oh_name);
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
174
175
  			return -ENODEV;
  		}
fd4b34f60   Sumit Semwal   OMAP2PLUS:DSS2: a...
176

3528c58eb   Kevin Hilman   OMAP: omap_device...
177
  		pdev = omap_device_build(curr_dss_hwmod[i].dev_name,
179e04536   Archit Taneja   OMAP2PLUS: DSS2: ...
178
  				curr_dss_hwmod[i].id, oh, &pdata,
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
179
  				sizeof(struct omap_display_platform_data),
f718e2c03   Benoit Cousson   ARM: OMAP2+: devi...
180
  				NULL, 0, 0);
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
181

3528c58eb   Kevin Hilman   OMAP: omap_device...
182
183
  		if (WARN((IS_ERR(pdev)), "Could not build omap_device for %s
  ",
179e04536   Archit Taneja   OMAP2PLUS: DSS2: ...
184
  				curr_dss_hwmod[i].oh_name))
cf07f5316   Senthilvadivu Guruswamy   OMAP2,3: DSS2: Bu...
185
186
  			return -ENODEV;
  	}
b7ee79abc   Sumit Semwal   OMAP2, 3: DSS2: C...
187
188
189
190
191
192
193
194
195
  	omap_display_device.dev.platform_data = board_data;
  
  	r = platform_device_register(&omap_display_device);
  	if (r < 0)
  		printk(KERN_ERR "Unable to register OMAP-Display device
  ");
  
  	return r;
  }
13662dc5b   Tomi Valkeinen   ARM: OMAP: HWMOD:...
196

b923d40dd   Archit Taneja   ARM: OMAP2PLUS: D...
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
  static void dispc_disable_outputs(void)
  {
  	u32 v, irq_mask = 0;
  	bool lcd_en, digit_en, lcd2_en = false;
  	int i;
  	struct omap_dss_dispc_dev_attr *da;
  	struct omap_hwmod *oh;
  
  	oh = omap_hwmod_lookup("dss_dispc");
  	if (!oh) {
  		WARN(1, "display: could not disable outputs during reset - could not find dss_dispc hwmod
  ");
  		return;
  	}
  
  	if (!oh->dev_attr) {
  		pr_err("display: could not disable outputs during reset due to missing dev_attr
  ");
  		return;
  	}
  
  	da = (struct omap_dss_dispc_dev_attr *)oh->dev_attr;
  
  	/* store value of LCDENABLE and DIGITENABLE bits */
  	v = omap_hwmod_read(oh, DISPC_CONTROL);
  	lcd_en = v & LCD_EN_MASK;
  	digit_en = v & DIGIT_EN_MASK;
  
  	/* store value of LCDENABLE for LCD2 */
  	if (da->manager_count > 2) {
  		v = omap_hwmod_read(oh, DISPC_CONTROL2);
  		lcd2_en = v & LCD_EN_MASK;
  	}
  
  	if (!(lcd_en | digit_en | lcd2_en))
  		return; /* no managers currently enabled */
  
  	/*
  	 * If any manager was enabled, we need to disable it before
  	 * DSS clocks are disabled or DISPC module is reset
  	 */
  	if (lcd_en)
  		irq_mask |= 1 << FRAMEDONE_IRQ_SHIFT;
  
  	if (digit_en) {
  		if (da->has_framedonetv_irq) {
  			irq_mask |= 1 << FRAMEDONETV_IRQ_SHIFT;
  		} else {
  			irq_mask |= 1 << EVSYNC_EVEN_IRQ_SHIFT |
  				1 << EVSYNC_ODD_IRQ_SHIFT;
  		}
  	}
  
  	if (lcd2_en)
  		irq_mask |= 1 << FRAMEDONE2_IRQ_SHIFT;
  
  	/*
  	 * clear any previous FRAMEDONE, FRAMEDONETV,
  	 * EVSYNC_EVEN/ODD or FRAMEDONE2 interrupts
  	 */
  	omap_hwmod_write(irq_mask, oh, DISPC_IRQSTATUS);
  
  	/* disable LCD and TV managers */
  	v = omap_hwmod_read(oh, DISPC_CONTROL);
  	v &= ~(LCD_EN_MASK | DIGIT_EN_MASK);
  	omap_hwmod_write(v, oh, DISPC_CONTROL);
  
  	/* disable LCD2 manager */
  	if (da->manager_count > 2) {
  		v = omap_hwmod_read(oh, DISPC_CONTROL2);
  		v &= ~LCD_EN_MASK;
  		omap_hwmod_write(v, oh, DISPC_CONTROL2);
  	}
  
  	i = 0;
  	while ((omap_hwmod_read(oh, DISPC_IRQSTATUS) & irq_mask) !=
  	       irq_mask) {
  		i++;
  		if (i > FRAMEDONE_IRQ_TIMEOUT) {
  			pr_err("didn't get FRAMEDONE1/2 or TV interrupt
  ");
  			break;
  		}
  		mdelay(1);
  	}
  }
13662dc5b   Tomi Valkeinen   ARM: OMAP: HWMOD:...
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
  #define MAX_MODULE_SOFTRESET_WAIT	10000
  int omap_dss_reset(struct omap_hwmod *oh)
  {
  	struct omap_hwmod_opt_clk *oc;
  	int c = 0;
  	int i, r;
  
  	if (!(oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)) {
  		pr_err("dss_core: hwmod data doesn't contain reset data
  ");
  		return -EINVAL;
  	}
  
  	for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
  		if (oc->_clk)
  			clk_enable(oc->_clk);
b923d40dd   Archit Taneja   ARM: OMAP2PLUS: D...
299
300
301
302
303
304
305
306
307
308
309
310
311
  	dispc_disable_outputs();
  
  	/* clear SDI registers */
  	if (cpu_is_omap3430()) {
  		omap_hwmod_write(0x0, oh, DSS_SDI_CONTROL);
  		omap_hwmod_write(0x0, oh, DSS_PLL_CONTROL);
  	}
  
  	/*
  	 * clear DSS_CONTROL register to switch DSS clock sources to
  	 * PRCM clock, if any
  	 */
  	omap_hwmod_write(0x0, oh, DSS_CONTROL);
13662dc5b   Tomi Valkeinen   ARM: OMAP: HWMOD:...
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
  	omap_test_timeout((omap_hwmod_read(oh, oh->class->sysc->syss_offs)
  				& SYSS_RESETDONE_MASK),
  			MAX_MODULE_SOFTRESET_WAIT, c);
  
  	if (c == MAX_MODULE_SOFTRESET_WAIT)
  		pr_warning("dss_core: waiting for reset to finish failed
  ");
  	else
  		pr_debug("dss_core: softreset done
  ");
  
  	for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
  		if (oc->_clk)
  			clk_disable(oc->_clk);
  
  	r = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
  
  	return r;
  }