blob: 4c6b84488561ba370a25f65bdaa16f40724cca9b [file] [log] [blame]
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00001/*
2 * Renesas SH-mobile MIPI DSI support
3 *
4 * Copyright (C) 2010 Guennadi Liakhovetski <g.liakhovetski@gmx.de>
5 *
6 * This is free software; you can redistribute it and/or modify
7 * it under the terms of version 2 of the GNU General Public License as
8 * published by the Free Software Foundation.
9 */
10
Kuninori Morimoto26c3d7a2011-11-08 20:34:43 -080011#include <linux/bitmap.h>
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000012#include <linux/clk.h>
13#include <linux/delay.h>
14#include <linux/init.h>
15#include <linux/io.h>
16#include <linux/platform_device.h>
Guennadi Liakhovetski236782a2010-12-27 10:23:05 +000017#include <linux/pm_runtime.h>
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000018#include <linux/slab.h>
19#include <linux/string.h>
20#include <linux/types.h>
Paul Gortmaker355b2002011-07-03 16:17:28 -040021#include <linux/module.h>
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000022
23#include <video/mipi_display.h>
24#include <video/sh_mipi_dsi.h>
25#include <video/sh_mobile_lcdc.h>
26
Laurent Pinchart732bbcc2011-09-11 18:27:50 +020027#include "sh_mobile_lcdcfb.h"
28
Magnus Damm71b146c2010-11-17 06:44:25 +000029#define SYSCTRL 0x0000
30#define SYSCONF 0x0004
31#define TIMSET 0x0008
32#define RESREQSET0 0x0018
33#define RESREQSET1 0x001c
34#define HSTTOVSET 0x0020
35#define LPRTOVSET 0x0024
36#define TATOVSET 0x0028
37#define PRTOVSET 0x002c
38#define DSICTRL 0x0030
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000039#define DSIINTE 0x0060
Magnus Damm71b146c2010-11-17 06:44:25 +000040#define PHYCTRL 0x0070
41
Magnus Dammdeaba192010-11-17 09:53:25 +000042/* relative to linkbase */
43#define DTCTR 0x0000
44#define VMCTR1 0x0020
45#define VMCTR2 0x0024
46#define VMLEN1 0x0028
Kuninori Morimoto08750612011-11-08 20:35:05 -080047#define VMLEN2 0x002c
Magnus Dammdeaba192010-11-17 09:53:25 +000048#define CMTSRTREQ 0x0070
49#define CMTSRTCTR 0x00d0
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000050
51/* E.g., sh7372 has 2 MIPI-DSIs - one for each LCDC */
52#define MAX_SH_MIPI_DSI 2
53
54struct sh_mipi {
Laurent Pinchart732bbcc2011-09-11 18:27:50 +020055 struct sh_mobile_lcdc_entity entity;
56
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000057 void __iomem *base;
Magnus Dammdeaba192010-11-17 09:53:25 +000058 void __iomem *linkbase;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000059 struct clk *dsit_clk;
Kuninori Morimoto7d9f88b2011-11-08 20:35:36 -080060 struct platform_device *pdev;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000061};
62
Laurent Pinchart732bbcc2011-09-11 18:27:50 +020063#define to_sh_mipi(e) container_of(e, struct sh_mipi, entity)
64
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000065static struct sh_mipi *mipi_dsi[MAX_SH_MIPI_DSI];
66
67/* Protect the above array */
68static DEFINE_MUTEX(array_lock);
69
70static struct sh_mipi *sh_mipi_by_handle(int handle)
71{
72 if (handle >= ARRAY_SIZE(mipi_dsi) || handle < 0)
73 return NULL;
74
75 return mipi_dsi[handle];
76}
77
78static int sh_mipi_send_short(struct sh_mipi *mipi, u8 dsi_cmd,
79 u8 cmd, u8 param)
80{
81 u32 data = (dsi_cmd << 24) | (cmd << 16) | (param << 8);
82 int cnt = 100;
83
84 /* transmit a short packet to LCD panel */
Magnus Dammdeaba192010-11-17 09:53:25 +000085 iowrite32(1 | data, mipi->linkbase + CMTSRTCTR);
86 iowrite32(1, mipi->linkbase + CMTSRTREQ);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000087
Magnus Dammdeaba192010-11-17 09:53:25 +000088 while ((ioread32(mipi->linkbase + CMTSRTREQ) & 1) && --cnt)
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +000089 udelay(1);
90
91 return cnt ? 0 : -ETIMEDOUT;
92}
93
94#define LCD_CHAN2MIPI(c) ((c) < LCDC_CHAN_MAINLCD || (c) > LCDC_CHAN_SUBLCD ? \
95 -EINVAL : (c) - 1)
96
97static int sh_mipi_dcs(int handle, u8 cmd)
98{
99 struct sh_mipi *mipi = sh_mipi_by_handle(LCD_CHAN2MIPI(handle));
100 if (!mipi)
101 return -ENODEV;
102 return sh_mipi_send_short(mipi, MIPI_DSI_DCS_SHORT_WRITE, cmd, 0);
103}
104
105static int sh_mipi_dcs_param(int handle, u8 cmd, u8 param)
106{
107 struct sh_mipi *mipi = sh_mipi_by_handle(LCD_CHAN2MIPI(handle));
108 if (!mipi)
109 return -ENODEV;
110 return sh_mipi_send_short(mipi, MIPI_DSI_DCS_SHORT_WRITE_PARAM, cmd,
111 param);
112}
113
114static void sh_mipi_dsi_enable(struct sh_mipi *mipi, bool enable)
115{
116 /*
117 * enable LCDC data tx, transition to LPS after completion of each HS
118 * packet
119 */
Magnus Dammdeaba192010-11-17 09:53:25 +0000120 iowrite32(0x00000002 | enable, mipi->linkbase + DTCTR);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000121}
122
123static void sh_mipi_shutdown(struct platform_device *pdev)
124{
Laurent Pinchart732bbcc2011-09-11 18:27:50 +0200125 struct sh_mipi *mipi = to_sh_mipi(platform_get_drvdata(pdev));
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000126
127 sh_mipi_dsi_enable(mipi, false);
128}
129
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000130static int __init sh_mipi_setup(struct sh_mipi *mipi,
131 struct sh_mipi_dsi_info *pdata)
132{
133 void __iomem *base = mipi->base;
134 struct sh_mobile_lcdc_chan_cfg *ch = pdata->lcd_chan;
Kuninori Morimotof832906a2011-11-08 20:34:55 -0800135 u32 pctype, datatype, pixfmt, linelength, vmctr2;
Kuninori Morimotoa2e62972011-11-08 20:35:27 -0800136 u32 tmp, top, bottom, delay, div;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000137 bool yuv;
Kuninori Morimoto08750612011-11-08 20:35:05 -0800138 int bpp;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000139
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000140 /*
141 * Select data format. MIPI DSI is not hot-pluggable, so, we just use
142 * the default videomode. If this ever becomes a problem, We'll have to
143 * move this to mipi_display_on() above and use info->var.xres
144 */
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000145 switch (pdata->data_format) {
146 case MIPI_RGB888:
147 pctype = 0;
148 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_24;
149 pixfmt = MIPI_DCS_PIXEL_FMT_24BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100150 linelength = ch->lcd_modes[0].xres * 3;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000151 yuv = false;
152 break;
153 case MIPI_RGB565:
154 pctype = 1;
155 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_16;
156 pixfmt = MIPI_DCS_PIXEL_FMT_16BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100157 linelength = ch->lcd_modes[0].xres * 2;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000158 yuv = false;
159 break;
160 case MIPI_RGB666_LP:
161 pctype = 2;
162 datatype = MIPI_DSI_PIXEL_STREAM_3BYTE_18;
163 pixfmt = MIPI_DCS_PIXEL_FMT_24BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100164 linelength = ch->lcd_modes[0].xres * 3;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000165 yuv = false;
166 break;
167 case MIPI_RGB666:
168 pctype = 3;
169 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_18;
170 pixfmt = MIPI_DCS_PIXEL_FMT_18BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100171 linelength = (ch->lcd_modes[0].xres * 18 + 7) / 8;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000172 yuv = false;
173 break;
174 case MIPI_BGR888:
175 pctype = 8;
176 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_24;
177 pixfmt = MIPI_DCS_PIXEL_FMT_24BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100178 linelength = ch->lcd_modes[0].xres * 3;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000179 yuv = false;
180 break;
181 case MIPI_BGR565:
182 pctype = 9;
183 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_16;
184 pixfmt = MIPI_DCS_PIXEL_FMT_16BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100185 linelength = ch->lcd_modes[0].xres * 2;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000186 yuv = false;
187 break;
188 case MIPI_BGR666_LP:
189 pctype = 0xa;
190 datatype = MIPI_DSI_PIXEL_STREAM_3BYTE_18;
191 pixfmt = MIPI_DCS_PIXEL_FMT_24BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100192 linelength = ch->lcd_modes[0].xres * 3;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000193 yuv = false;
194 break;
195 case MIPI_BGR666:
196 pctype = 0xb;
197 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_18;
198 pixfmt = MIPI_DCS_PIXEL_FMT_18BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100199 linelength = (ch->lcd_modes[0].xres * 18 + 7) / 8;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000200 yuv = false;
201 break;
202 case MIPI_YUYV:
203 pctype = 4;
204 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR16;
205 pixfmt = MIPI_DCS_PIXEL_FMT_16BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100206 linelength = ch->lcd_modes[0].xres * 2;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000207 yuv = true;
208 break;
209 case MIPI_UYVY:
210 pctype = 5;
211 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR16;
212 pixfmt = MIPI_DCS_PIXEL_FMT_16BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100213 linelength = ch->lcd_modes[0].xres * 2;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000214 yuv = true;
215 break;
216 case MIPI_YUV420_L:
217 pctype = 6;
218 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR12;
219 pixfmt = MIPI_DCS_PIXEL_FMT_12BIT;
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100220 linelength = (ch->lcd_modes[0].xres * 12 + 7) / 8;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000221 yuv = true;
222 break;
223 case MIPI_YUV420:
224 pctype = 7;
225 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR12;
226 pixfmt = MIPI_DCS_PIXEL_FMT_12BIT;
227 /* Length of U/V line */
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100228 linelength = (ch->lcd_modes[0].xres + 1) / 2;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000229 yuv = true;
230 break;
231 default:
232 return -EINVAL;
233 }
234
235 if ((yuv && ch->interface_type != YUV422) ||
236 (!yuv && ch->interface_type != RGB24))
237 return -EINVAL;
238
Kuninori Morimoto26c3d7a2011-11-08 20:34:43 -0800239 if (!pdata->lane)
240 return -EINVAL;
241
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000242 /* reset DSI link */
Magnus Damm71b146c2010-11-17 06:44:25 +0000243 iowrite32(0x00000001, base + SYSCTRL);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000244 /* Hold reset for 100 cycles of the slowest of bus, HS byte and LP clock */
245 udelay(50);
Magnus Damm71b146c2010-11-17 06:44:25 +0000246 iowrite32(0x00000000, base + SYSCTRL);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000247
248 /* setup DSI link */
249
250 /*
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000251 * T_wakeup = 0x7000
252 * T_hs-trail = 3
253 * T_hs-prepare = 3
254 * T_clk-trail = 3
255 * T_clk-prepare = 2
256 */
Magnus Damm71b146c2010-11-17 06:44:25 +0000257 iowrite32(0x70003332, base + TIMSET);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000258 /* no responses requested */
Magnus Damm71b146c2010-11-17 06:44:25 +0000259 iowrite32(0x00000000, base + RESREQSET0);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000260 /* request response to packets of type 0x28 */
Magnus Damm71b146c2010-11-17 06:44:25 +0000261 iowrite32(0x00000100, base + RESREQSET1);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000262 /* High-speed transmission timeout, default 0xffffffff */
Magnus Damm71b146c2010-11-17 06:44:25 +0000263 iowrite32(0x0fffffff, base + HSTTOVSET);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000264 /* LP reception timeout, default 0xffffffff */
Magnus Damm71b146c2010-11-17 06:44:25 +0000265 iowrite32(0x0fffffff, base + LPRTOVSET);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000266 /* Turn-around timeout, default 0xffffffff */
Magnus Damm71b146c2010-11-17 06:44:25 +0000267 iowrite32(0x0fffffff, base + TATOVSET);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000268 /* Peripheral reset timeout, default 0xffffffff */
Magnus Damm71b146c2010-11-17 06:44:25 +0000269 iowrite32(0x0fffffff, base + PRTOVSET);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000270 /* Interrupts not used, disable all */
271 iowrite32(0, base + DSIINTE);
272 /* DSI-Tx bias on */
Magnus Damm71b146c2010-11-17 06:44:25 +0000273 iowrite32(0x00000001, base + PHYCTRL);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000274 udelay(200);
Kuninori Morimoto5e474312011-11-08 20:35:14 -0800275 /* Deassert resets, power on */
Kuninori Morimoto8f9c60f2012-03-20 18:34:10 -0700276 iowrite32(0x03070001 | pdata->phyctrl, base + PHYCTRL);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000277
Kuninori Morimotoa2065a32011-11-08 20:35:56 -0800278 /*
279 * Default = ULPS enable |
280 * Contention detection enabled |
281 * EoT packet transmission enable |
282 * CRC check enable |
283 * ECC check enable
284 */
285 bitmap_fill((unsigned long *)&tmp, pdata->lane);
286 tmp |= 0x00003700;
287 iowrite32(tmp, base + SYSCONF);
288
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000289 /* setup l-bridge */
290
291 /*
292 * Enable transmission of all packets,
293 * transmit LPS after each HS packet completion
294 */
Magnus Dammdeaba192010-11-17 09:53:25 +0000295 iowrite32(0x00000006, mipi->linkbase + DTCTR);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000296 /* VSYNC width = 2 (<< 17) */
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100297 iowrite32((ch->lcd_modes[0].vsync_len << pdata->vsynw_offset) |
Guennadi Liakhovetski14bbb7c2010-12-29 08:12:29 +0000298 (pdata->clksrc << 16) | (pctype << 12) | datatype,
Magnus Dammdeaba192010-11-17 09:53:25 +0000299 mipi->linkbase + VMCTR1);
Guennadi Liakhovetski14bbb7c2010-12-29 08:12:29 +0000300
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000301 /*
302 * Non-burst mode with sync pulses: VSE and HSE are output,
303 * HSA period allowed, no commands in LP
304 */
Kuninori Morimotof832906a2011-11-08 20:34:55 -0800305 vmctr2 = 0;
306 if (pdata->flags & SH_MIPI_DSI_VSEE)
307 vmctr2 |= 1 << 23;
308 if (pdata->flags & SH_MIPI_DSI_HSEE)
309 vmctr2 |= 1 << 22;
310 if (pdata->flags & SH_MIPI_DSI_HSAE)
311 vmctr2 |= 1 << 21;
Kuninori Morimotod07a9d22011-11-08 20:34:33 -0800312 if (pdata->flags & SH_MIPI_DSI_BL2E)
313 vmctr2 |= 1 << 17;
Guennadi Liakhovetski14bbb7c2010-12-29 08:12:29 +0000314 if (pdata->flags & SH_MIPI_DSI_HSABM)
Kuninori Morimoto3c2a6592011-11-08 20:34:12 -0800315 vmctr2 |= 1 << 5;
Kuninori Morimoto32ba95c2011-11-08 20:34:01 -0800316 if (pdata->flags & SH_MIPI_DSI_HBPBM)
Kuninori Morimoto3c2a6592011-11-08 20:34:12 -0800317 vmctr2 |= 1 << 4;
Kuninori Morimotof7b0af62011-11-08 20:34:24 -0800318 if (pdata->flags & SH_MIPI_DSI_HFPBM)
319 vmctr2 |= 1 << 3;
Guennadi Liakhovetski14bbb7c2010-12-29 08:12:29 +0000320 iowrite32(vmctr2, mipi->linkbase + VMCTR2);
321
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000322 /*
Kuninori Morimoto08750612011-11-08 20:35:05 -0800323 * VMLEN1 = RGBLEN | HSALEN
324 *
325 * see
326 * Video mode - Blanking Packet setting
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000327 */
Kuninori Morimoto08750612011-11-08 20:35:05 -0800328 top = linelength << 16; /* RGBLEN */
329 bottom = 0x00000001;
330 if (pdata->flags & SH_MIPI_DSI_HSABM) /* HSALEN */
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100331 bottom = (pdata->lane * ch->lcd_modes[0].hsync_len) - 10;
Kuninori Morimoto08750612011-11-08 20:35:05 -0800332 iowrite32(top | bottom , mipi->linkbase + VMLEN1);
333
334 /*
335 * VMLEN2 = HBPLEN | HFPLEN
336 *
337 * see
338 * Video mode - Blanking Packet setting
339 */
340 top = 0x00010000;
341 bottom = 0x00000001;
342 delay = 0;
343
Kuninori Morimotoa2e62972011-11-08 20:35:27 -0800344 div = 1; /* HSbyteCLK is calculation base
345 * HS4divCLK = HSbyteCLK/2
346 * HS6divCLK is not supported for now */
347 if (pdata->flags & SH_MIPI_DSI_HS4divCLK)
348 div = 2;
349
Kuninori Morimoto08750612011-11-08 20:35:05 -0800350 if (pdata->flags & SH_MIPI_DSI_HFPBM) { /* HBPLEN */
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100351 top = ch->lcd_modes[0].hsync_len + ch->lcd_modes[0].left_margin;
Kuninori Morimotoa2e62972011-11-08 20:35:27 -0800352 top = ((pdata->lane * top / div) - 10) << 16;
Kuninori Morimoto08750612011-11-08 20:35:05 -0800353 }
354 if (pdata->flags & SH_MIPI_DSI_HBPBM) { /* HFPLEN */
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100355 bottom = ch->lcd_modes[0].right_margin;
Kuninori Morimotoa2e62972011-11-08 20:35:27 -0800356 bottom = (pdata->lane * bottom / div) - 12;
Kuninori Morimoto08750612011-11-08 20:35:05 -0800357 }
358
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100359 bpp = linelength / ch->lcd_modes[0].xres; /* byte / pixel */
Kuninori Morimotoa2e62972011-11-08 20:35:27 -0800360 if ((pdata->lane / div) > bpp) {
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100361 tmp = ch->lcd_modes[0].xres / bpp; /* output cycle */
362 tmp = ch->lcd_modes[0].xres - tmp; /* (input - output) cycle */
Kuninori Morimoto08750612011-11-08 20:35:05 -0800363 delay = (pdata->lane * tmp);
364 }
365
366 iowrite32(top | (bottom + delay) , mipi->linkbase + VMLEN2);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000367
368 msleep(5);
369
370 /* setup LCD panel */
371
372 /* cf. drivers/video/omap/lcd_mipid.c */
373 sh_mipi_dcs(ch->chan, MIPI_DCS_EXIT_SLEEP_MODE);
374 msleep(120);
375 /*
376 * [7] - Page Address Mode
377 * [6] - Column Address Mode
378 * [5] - Page / Column Address Mode
379 * [4] - Display Device Line Refresh Order
380 * [3] - RGB/BGR Order
381 * [2] - Display Data Latch Data Order
382 * [1] - Flip Horizontal
383 * [0] - Flip Vertical
384 */
385 sh_mipi_dcs_param(ch->chan, MIPI_DCS_SET_ADDRESS_MODE, 0x00);
386 /* cf. set_data_lines() */
387 sh_mipi_dcs_param(ch->chan, MIPI_DCS_SET_PIXEL_FORMAT,
388 pixfmt << 4);
389 sh_mipi_dcs(ch->chan, MIPI_DCS_SET_DISPLAY_ON);
390
Kuninori Morimoto97cab452011-11-08 20:36:07 -0800391 /* Enable timeout counters */
392 iowrite32(0x00000f00, base + DSICTRL);
393
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000394 return 0;
395}
396
Laurent Pinchart5864ace2011-09-18 12:26:50 +0200397static int mipi_display_on(struct sh_mobile_lcdc_entity *entity)
Kuninori Morimotoc2658b72011-11-08 20:35:45 -0800398{
Laurent Pinchart732bbcc2011-09-11 18:27:50 +0200399 struct sh_mipi *mipi = to_sh_mipi(entity);
Kuninori Morimotoc2658b72011-11-08 20:35:45 -0800400 struct sh_mipi_dsi_info *pdata = mipi->pdev->dev.platform_data;
401 int ret;
402
403 pm_runtime_get_sync(&mipi->pdev->dev);
404
405 ret = pdata->set_dot_clock(mipi->pdev, mipi->base, 1);
406 if (ret < 0)
407 goto mipi_display_on_fail1;
408
409 ret = sh_mipi_setup(mipi, pdata);
410 if (ret < 0)
411 goto mipi_display_on_fail2;
412
413 sh_mipi_dsi_enable(mipi, true);
414
Laurent Pinchart458981c2011-11-28 23:19:59 +0100415 return SH_MOBILE_LCDC_DISPLAY_CONNECTED;
Kuninori Morimotoc2658b72011-11-08 20:35:45 -0800416
417mipi_display_on_fail1:
418 pm_runtime_put_sync(&mipi->pdev->dev);
419mipi_display_on_fail2:
420 pdata->set_dot_clock(mipi->pdev, mipi->base, 0);
Laurent Pinchart732bbcc2011-09-11 18:27:50 +0200421
422 return ret;
Kuninori Morimotoc2658b72011-11-08 20:35:45 -0800423}
424
Laurent Pinchartd2c594a2011-09-11 18:27:50 +0200425static void mipi_display_off(struct sh_mobile_lcdc_entity *entity)
Laurent Pinchart732bbcc2011-09-11 18:27:50 +0200426{
427 struct sh_mipi *mipi = to_sh_mipi(entity);
428 struct sh_mipi_dsi_info *pdata = mipi->pdev->dev.platform_data;
Kuninori Morimotoc2658b72011-11-08 20:35:45 -0800429
430 sh_mipi_dsi_enable(mipi, false);
431
432 pdata->set_dot_clock(mipi->pdev, mipi->base, 0);
433
434 pm_runtime_put_sync(&mipi->pdev->dev);
435}
436
Laurent Pinchart732bbcc2011-09-11 18:27:50 +0200437static const struct sh_mobile_lcdc_entity_ops mipi_ops = {
Laurent Pinchartd2c594a2011-09-11 18:27:50 +0200438 .display_on = mipi_display_on,
439 .display_off = mipi_display_off,
Laurent Pinchart732bbcc2011-09-11 18:27:50 +0200440};
441
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000442static int __init sh_mipi_probe(struct platform_device *pdev)
443{
444 struct sh_mipi *mipi;
445 struct sh_mipi_dsi_info *pdata = pdev->dev.platform_data;
446 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Magnus Dammdeaba192010-11-17 09:53:25 +0000447 struct resource *res2 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000448 unsigned long rate, f_current;
449 int idx = pdev->id, ret;
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000450
Magnus Dammdeaba192010-11-17 09:53:25 +0000451 if (!res || !res2 || idx >= ARRAY_SIZE(mipi_dsi) || !pdata)
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000452 return -ENODEV;
453
Kuninori Morimoto5e474312011-11-08 20:35:14 -0800454 if (!pdata->set_dot_clock)
455 return -EINVAL;
456
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000457 mutex_lock(&array_lock);
458 if (idx < 0)
459 for (idx = 0; idx < ARRAY_SIZE(mipi_dsi) && mipi_dsi[idx]; idx++)
460 ;
461
462 if (idx == ARRAY_SIZE(mipi_dsi)) {
463 ret = -EBUSY;
464 goto efindslot;
465 }
466
467 mipi = kzalloc(sizeof(*mipi), GFP_KERNEL);
468 if (!mipi) {
469 ret = -ENOMEM;
470 goto ealloc;
471 }
472
Laurent Pinchart732bbcc2011-09-11 18:27:50 +0200473 mipi->entity.owner = THIS_MODULE;
474 mipi->entity.ops = &mipi_ops;
475
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000476 if (!request_mem_region(res->start, resource_size(res), pdev->name)) {
477 dev_err(&pdev->dev, "MIPI register region already claimed\n");
478 ret = -EBUSY;
479 goto ereqreg;
480 }
481
482 mipi->base = ioremap(res->start, resource_size(res));
483 if (!mipi->base) {
484 ret = -ENOMEM;
485 goto emap;
486 }
487
Magnus Dammdeaba192010-11-17 09:53:25 +0000488 if (!request_mem_region(res2->start, resource_size(res2), pdev->name)) {
489 dev_err(&pdev->dev, "MIPI register region 2 already claimed\n");
490 ret = -EBUSY;
491 goto ereqreg2;
492 }
493
494 mipi->linkbase = ioremap(res2->start, resource_size(res2));
495 if (!mipi->linkbase) {
496 ret = -ENOMEM;
497 goto emap2;
498 }
499
Kuninori Morimoto7d9f88b2011-11-08 20:35:36 -0800500 mipi->pdev = pdev;
Guennadi Liakhovetski236782a2010-12-27 10:23:05 +0000501
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000502 mipi->dsit_clk = clk_get(&pdev->dev, "dsit_clk");
503 if (IS_ERR(mipi->dsit_clk)) {
504 ret = PTR_ERR(mipi->dsit_clk);
505 goto eclktget;
506 }
507
508 f_current = clk_get_rate(mipi->dsit_clk);
509 /* 80MHz required by the datasheet */
510 rate = clk_round_rate(mipi->dsit_clk, 80000000);
511 if (rate > 0 && rate != f_current)
512 ret = clk_set_rate(mipi->dsit_clk, rate);
513 else
514 ret = rate;
515 if (ret < 0)
516 goto esettrate;
517
518 dev_dbg(&pdev->dev, "DSI-T clk %lu -> %lu\n", f_current, rate);
519
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000520 ret = clk_enable(mipi->dsit_clk);
521 if (ret < 0)
522 goto eclkton;
523
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000524 mipi_dsi[idx] = mipi;
525
Guennadi Liakhovetski236782a2010-12-27 10:23:05 +0000526 pm_runtime_enable(&pdev->dev);
527 pm_runtime_resume(&pdev->dev);
528
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000529 mutex_unlock(&array_lock);
Laurent Pinchart732bbcc2011-09-11 18:27:50 +0200530 platform_set_drvdata(pdev, &mipi->entity);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000531
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000532 return 0;
533
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000534eclkton:
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000535esettrate:
536 clk_put(mipi->dsit_clk);
537eclktget:
Magnus Dammdeaba192010-11-17 09:53:25 +0000538 iounmap(mipi->linkbase);
539emap2:
540 release_mem_region(res2->start, resource_size(res2));
541ereqreg2:
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000542 iounmap(mipi->base);
543emap:
544 release_mem_region(res->start, resource_size(res));
545ereqreg:
546 kfree(mipi);
547ealloc:
548efindslot:
549 mutex_unlock(&array_lock);
550
551 return ret;
552}
553
554static int __exit sh_mipi_remove(struct platform_device *pdev)
555{
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000556 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Magnus Dammdeaba192010-11-17 09:53:25 +0000557 struct resource *res2 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Laurent Pinchart732bbcc2011-09-11 18:27:50 +0200558 struct sh_mipi *mipi = to_sh_mipi(platform_get_drvdata(pdev));
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000559 int i, ret;
560
561 mutex_lock(&array_lock);
562
563 for (i = 0; i < ARRAY_SIZE(mipi_dsi) && mipi_dsi[i] != mipi; i++)
564 ;
565
566 if (i == ARRAY_SIZE(mipi_dsi)) {
567 ret = -EINVAL;
568 } else {
569 ret = 0;
570 mipi_dsi[i] = NULL;
571 }
572
573 mutex_unlock(&array_lock);
574
575 if (ret < 0)
576 return ret;
577
Guennadi Liakhovetski236782a2010-12-27 10:23:05 +0000578 pm_runtime_disable(&pdev->dev);
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000579 clk_disable(mipi->dsit_clk);
580 clk_put(mipi->dsit_clk);
Kuninori Morimoto5e474312011-11-08 20:35:14 -0800581
Magnus Dammdeaba192010-11-17 09:53:25 +0000582 iounmap(mipi->linkbase);
583 if (res2)
584 release_mem_region(res2->start, resource_size(res2));
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +0000585 iounmap(mipi->base);
586 if (res)
587 release_mem_region(res->start, resource_size(res));
588 platform_set_drvdata(pdev, NULL);
589 kfree(mipi);
590
591 return 0;
592}
593
594static struct platform_driver sh_mipi_driver = {
595 .remove = __exit_p(sh_mipi_remove),
596 .shutdown = sh_mipi_shutdown,
597 .driver = {
598 .name = "sh-mipi-dsi",
599 },
600};
601
602static int __init sh_mipi_init(void)
603{
604 return platform_driver_probe(&sh_mipi_driver, sh_mipi_probe);
605}
606module_init(sh_mipi_init);
607
608static void __exit sh_mipi_exit(void)
609{
610 platform_driver_unregister(&sh_mipi_driver);
611}
612module_exit(sh_mipi_exit);
613
614MODULE_AUTHOR("Guennadi Liakhovetski <g.liakhovetski@gmx.de>");
615MODULE_DESCRIPTION("SuperH / ARM-shmobile MIPI DSI driver");
616MODULE_LICENSE("GPL v2");