2 * Renesas SH-mobile MIPI DSI support
4 * Copyright (C) 2010 Guennadi Liakhovetski <g.liakhovetski@gmx.de>
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.
11 #include <linux/clk.h>
12 #include <linux/delay.h>
13 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/slab.h>
18 #include <linux/string.h>
19 #include <linux/types.h>
21 #include <video/mipi_display.h>
22 #include <video/sh_mipi_dsi.h>
23 #include <video/sh_mobile_lcdc.h>
25 #define SYSCTRL 0x0000
26 #define SYSCONF 0x0004
28 #define RESREQSET0 0x0018
29 #define RESREQSET1 0x001c
30 #define HSTTOVSET 0x0020
31 #define LPRTOVSET 0x0024
32 #define TATOVSET 0x0028
33 #define PRTOVSET 0x002c
34 #define DSICTRL 0x0030
35 #define DSIINTE 0x0060
36 #define PHYCTRL 0x0070
38 /* relative to linkbase */
43 #define CMTSRTREQ 0x0070
44 #define CMTSRTCTR 0x00d0
46 /* E.g., sh7372 has 2 MIPI-DSIs - one for each LCDC */
47 #define MAX_SH_MIPI_DSI 2
51 void __iomem *linkbase;
56 void *next_board_data;
57 void (*next_display_on)(void *board_data, struct fb_info *info);
58 void (*next_display_off)(void *board_data);
61 static struct sh_mipi *mipi_dsi[MAX_SH_MIPI_DSI];
63 /* Protect the above array */
64 static DEFINE_MUTEX(array_lock);
66 static struct sh_mipi *sh_mipi_by_handle(int handle)
68 if (handle >= ARRAY_SIZE(mipi_dsi) || handle < 0)
71 return mipi_dsi[handle];
74 static int sh_mipi_send_short(struct sh_mipi *mipi, u8 dsi_cmd,
77 u32 data = (dsi_cmd << 24) | (cmd << 16) | (param << 8);
80 /* transmit a short packet to LCD panel */
81 iowrite32(1 | data, mipi->linkbase + CMTSRTCTR);
82 iowrite32(1, mipi->linkbase + CMTSRTREQ);
84 while ((ioread32(mipi->linkbase + CMTSRTREQ) & 1) && --cnt)
87 return cnt ? 0 : -ETIMEDOUT;
90 #define LCD_CHAN2MIPI(c) ((c) < LCDC_CHAN_MAINLCD || (c) > LCDC_CHAN_SUBLCD ? \
93 static int sh_mipi_dcs(int handle, u8 cmd)
95 struct sh_mipi *mipi = sh_mipi_by_handle(LCD_CHAN2MIPI(handle));
98 return sh_mipi_send_short(mipi, MIPI_DSI_DCS_SHORT_WRITE, cmd, 0);
101 static int sh_mipi_dcs_param(int handle, u8 cmd, u8 param)
103 struct sh_mipi *mipi = sh_mipi_by_handle(LCD_CHAN2MIPI(handle));
106 return sh_mipi_send_short(mipi, MIPI_DSI_DCS_SHORT_WRITE_PARAM, cmd,
110 static void sh_mipi_dsi_enable(struct sh_mipi *mipi, bool enable)
113 * enable LCDC data tx, transition to LPS after completion of each HS
116 iowrite32(0x00000002 | enable, mipi->linkbase + DTCTR);
119 static void sh_mipi_shutdown(struct platform_device *pdev)
121 struct sh_mipi *mipi = platform_get_drvdata(pdev);
123 sh_mipi_dsi_enable(mipi, false);
126 static void mipi_display_on(void *arg, struct fb_info *info)
128 struct sh_mipi *mipi = arg;
130 pm_runtime_get_sync(mipi->dev);
131 sh_mipi_dsi_enable(mipi, true);
133 if (mipi->next_display_on)
134 mipi->next_display_on(mipi->next_board_data, info);
137 static void mipi_display_off(void *arg)
139 struct sh_mipi *mipi = arg;
141 if (mipi->next_display_off)
142 mipi->next_display_off(mipi->next_board_data);
144 sh_mipi_dsi_enable(mipi, false);
145 pm_runtime_put(mipi->dev);
148 static int __init sh_mipi_setup(struct sh_mipi *mipi,
149 struct sh_mipi_dsi_info *pdata)
151 void __iomem *base = mipi->base;
152 struct sh_mobile_lcdc_chan_cfg *ch = pdata->lcd_chan;
153 u32 pctype, datatype, pixfmt;
158 * Select data format. MIPI DSI is not hot-pluggable, so, we just use
159 * the default videomode. If this ever becomes a problem, We'll have to
160 * move this to mipi_display_on() above and use info->var.xres
162 switch (pdata->data_format) {
165 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_24;
166 pixfmt = MIPI_DCS_PIXEL_FMT_24BIT;
167 linelength = ch->lcd_cfg[0].xres * 3;
172 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_16;
173 pixfmt = MIPI_DCS_PIXEL_FMT_16BIT;
174 linelength = ch->lcd_cfg[0].xres * 2;
179 datatype = MIPI_DSI_PIXEL_STREAM_3BYTE_18;
180 pixfmt = MIPI_DCS_PIXEL_FMT_24BIT;
181 linelength = ch->lcd_cfg[0].xres * 3;
186 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_18;
187 pixfmt = MIPI_DCS_PIXEL_FMT_18BIT;
188 linelength = (ch->lcd_cfg[0].xres * 18 + 7) / 8;
193 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_24;
194 pixfmt = MIPI_DCS_PIXEL_FMT_24BIT;
195 linelength = ch->lcd_cfg[0].xres * 3;
200 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_16;
201 pixfmt = MIPI_DCS_PIXEL_FMT_16BIT;
202 linelength = ch->lcd_cfg[0].xres * 2;
207 datatype = MIPI_DSI_PIXEL_STREAM_3BYTE_18;
208 pixfmt = MIPI_DCS_PIXEL_FMT_24BIT;
209 linelength = ch->lcd_cfg[0].xres * 3;
214 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_18;
215 pixfmt = MIPI_DCS_PIXEL_FMT_18BIT;
216 linelength = (ch->lcd_cfg[0].xres * 18 + 7) / 8;
221 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR16;
222 pixfmt = MIPI_DCS_PIXEL_FMT_16BIT;
223 linelength = ch->lcd_cfg[0].xres * 2;
228 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR16;
229 pixfmt = MIPI_DCS_PIXEL_FMT_16BIT;
230 linelength = ch->lcd_cfg[0].xres * 2;
235 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR12;
236 pixfmt = MIPI_DCS_PIXEL_FMT_12BIT;
237 linelength = (ch->lcd_cfg[0].xres * 12 + 7) / 8;
242 datatype = MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR12;
243 pixfmt = MIPI_DCS_PIXEL_FMT_12BIT;
244 /* Length of U/V line */
245 linelength = (ch->lcd_cfg[0].xres + 1) / 2;
252 if ((yuv && ch->interface_type != YUV422) ||
253 (!yuv && ch->interface_type != RGB24))
257 iowrite32(0x00000001, base + SYSCTRL);
258 /* Hold reset for 100 cycles of the slowest of bus, HS byte and LP clock */
260 iowrite32(0x00000000, base + SYSCTRL);
265 * Default = ULPS enable |
266 * Contention detection enabled |
267 * EoT packet transmission enable |
270 * additionally enable first two lanes
272 iowrite32(0x00003703, base + SYSCONF);
280 iowrite32(0x70003332, base + TIMSET);
281 /* no responses requested */
282 iowrite32(0x00000000, base + RESREQSET0);
283 /* request response to packets of type 0x28 */
284 iowrite32(0x00000100, base + RESREQSET1);
285 /* High-speed transmission timeout, default 0xffffffff */
286 iowrite32(0x0fffffff, base + HSTTOVSET);
287 /* LP reception timeout, default 0xffffffff */
288 iowrite32(0x0fffffff, base + LPRTOVSET);
289 /* Turn-around timeout, default 0xffffffff */
290 iowrite32(0x0fffffff, base + TATOVSET);
291 /* Peripheral reset timeout, default 0xffffffff */
292 iowrite32(0x0fffffff, base + PRTOVSET);
293 /* Enable timeout counters */
294 iowrite32(0x00000f00, base + DSICTRL);
295 /* Interrupts not used, disable all */
296 iowrite32(0, base + DSIINTE);
298 iowrite32(0x00000001, base + PHYCTRL);
300 /* Deassert resets, power on, set multiplier */
301 iowrite32(0x03070b01, base + PHYCTRL);
306 * Enable transmission of all packets,
307 * transmit LPS after each HS packet completion
309 iowrite32(0x00000006, mipi->linkbase + DTCTR);
310 /* VSYNC width = 2 (<< 17) */
311 iowrite32(0x00040000 | (pctype << 12) | datatype,
312 mipi->linkbase + VMCTR1);
314 * Non-burst mode with sync pulses: VSE and HSE are output,
315 * HSA period allowed, no commands in LP
317 iowrite32(0x00e00000, mipi->linkbase + VMCTR2);
319 * 0x660 = 1632 bytes per line (RGB24, 544 pixels: see
320 * sh_mobile_lcdc_info.ch[0].lcd_cfg[0].xres), HSALEN = 1 - default
321 * (unused, since VMCTR2[HSABM] = 0)
323 iowrite32(1 | (linelength << 16), mipi->linkbase + VMLEN1);
327 /* setup LCD panel */
329 /* cf. drivers/video/omap/lcd_mipid.c */
330 sh_mipi_dcs(ch->chan, MIPI_DCS_EXIT_SLEEP_MODE);
333 * [7] - Page Address Mode
334 * [6] - Column Address Mode
335 * [5] - Page / Column Address Mode
336 * [4] - Display Device Line Refresh Order
337 * [3] - RGB/BGR Order
338 * [2] - Display Data Latch Data Order
339 * [1] - Flip Horizontal
340 * [0] - Flip Vertical
342 sh_mipi_dcs_param(ch->chan, MIPI_DCS_SET_ADDRESS_MODE, 0x00);
343 /* cf. set_data_lines() */
344 sh_mipi_dcs_param(ch->chan, MIPI_DCS_SET_PIXEL_FORMAT,
346 sh_mipi_dcs(ch->chan, MIPI_DCS_SET_DISPLAY_ON);
351 static int __init sh_mipi_probe(struct platform_device *pdev)
353 struct sh_mipi *mipi;
354 struct sh_mipi_dsi_info *pdata = pdev->dev.platform_data;
355 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
356 struct resource *res2 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
357 unsigned long rate, f_current;
358 int idx = pdev->id, ret;
359 char dsip_clk[] = "dsi.p_clk";
361 if (!res || !res2 || idx >= ARRAY_SIZE(mipi_dsi) || !pdata)
364 mutex_lock(&array_lock);
366 for (idx = 0; idx < ARRAY_SIZE(mipi_dsi) && mipi_dsi[idx]; idx++)
369 if (idx == ARRAY_SIZE(mipi_dsi)) {
374 mipi = kzalloc(sizeof(*mipi), GFP_KERNEL);
380 if (!request_mem_region(res->start, resource_size(res), pdev->name)) {
381 dev_err(&pdev->dev, "MIPI register region already claimed\n");
386 mipi->base = ioremap(res->start, resource_size(res));
392 if (!request_mem_region(res2->start, resource_size(res2), pdev->name)) {
393 dev_err(&pdev->dev, "MIPI register region 2 already claimed\n");
398 mipi->linkbase = ioremap(res2->start, resource_size(res2));
399 if (!mipi->linkbase) {
404 mipi->dev = &pdev->dev;
406 mipi->dsit_clk = clk_get(&pdev->dev, "dsit_clk");
407 if (IS_ERR(mipi->dsit_clk)) {
408 ret = PTR_ERR(mipi->dsit_clk);
412 f_current = clk_get_rate(mipi->dsit_clk);
413 /* 80MHz required by the datasheet */
414 rate = clk_round_rate(mipi->dsit_clk, 80000000);
415 if (rate > 0 && rate != f_current)
416 ret = clk_set_rate(mipi->dsit_clk, rate);
422 dev_dbg(&pdev->dev, "DSI-T clk %lu -> %lu\n", f_current, rate);
424 sprintf(dsip_clk, "dsi%1.1dp_clk", idx);
425 mipi->dsip_clk = clk_get(&pdev->dev, dsip_clk);
426 if (IS_ERR(mipi->dsip_clk)) {
427 ret = PTR_ERR(mipi->dsip_clk);
431 f_current = clk_get_rate(mipi->dsip_clk);
432 /* Between 10 and 50MHz */
433 rate = clk_round_rate(mipi->dsip_clk, 24000000);
434 if (rate > 0 && rate != f_current)
435 ret = clk_set_rate(mipi->dsip_clk, rate);
441 dev_dbg(&pdev->dev, "DSI-P clk %lu -> %lu\n", f_current, rate);
445 ret = clk_enable(mipi->dsit_clk);
449 ret = clk_enable(mipi->dsip_clk);
453 mipi_dsi[idx] = mipi;
455 pm_runtime_enable(&pdev->dev);
456 pm_runtime_resume(&pdev->dev);
458 ret = sh_mipi_setup(mipi, pdata);
462 mutex_unlock(&array_lock);
463 platform_set_drvdata(pdev, mipi);
465 /* Save original LCDC callbacks */
466 mipi->next_board_data = pdata->lcd_chan->board_cfg.board_data;
467 mipi->next_display_on = pdata->lcd_chan->board_cfg.display_on;
468 mipi->next_display_off = pdata->lcd_chan->board_cfg.display_off;
470 /* Set up LCDC callbacks */
471 pdata->lcd_chan->board_cfg.board_data = mipi;
472 pdata->lcd_chan->board_cfg.display_on = mipi_display_on;
473 pdata->lcd_chan->board_cfg.display_off = mipi_display_off;
474 pdata->lcd_chan->board_cfg.owner = THIS_MODULE;
479 mipi_dsi[idx] = NULL;
480 pm_runtime_disable(&pdev->dev);
481 clk_disable(mipi->dsip_clk);
483 clk_disable(mipi->dsit_clk);
486 clk_put(mipi->dsip_clk);
489 clk_put(mipi->dsit_clk);
491 iounmap(mipi->linkbase);
493 release_mem_region(res2->start, resource_size(res2));
497 release_mem_region(res->start, resource_size(res));
502 mutex_unlock(&array_lock);
507 static int __exit sh_mipi_remove(struct platform_device *pdev)
509 struct sh_mipi_dsi_info *pdata = pdev->dev.platform_data;
510 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
511 struct resource *res2 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
512 struct sh_mipi *mipi = platform_get_drvdata(pdev);
515 mutex_lock(&array_lock);
517 for (i = 0; i < ARRAY_SIZE(mipi_dsi) && mipi_dsi[i] != mipi; i++)
520 if (i == ARRAY_SIZE(mipi_dsi)) {
527 mutex_unlock(&array_lock);
532 pdata->lcd_chan->board_cfg.owner = NULL;
533 pdata->lcd_chan->board_cfg.display_on = NULL;
534 pdata->lcd_chan->board_cfg.display_off = NULL;
535 pdata->lcd_chan->board_cfg.board_data = NULL;
537 pm_runtime_disable(&pdev->dev);
538 clk_disable(mipi->dsip_clk);
539 clk_disable(mipi->dsit_clk);
540 clk_put(mipi->dsit_clk);
541 clk_put(mipi->dsip_clk);
542 iounmap(mipi->linkbase);
544 release_mem_region(res2->start, resource_size(res2));
547 release_mem_region(res->start, resource_size(res));
548 platform_set_drvdata(pdev, NULL);
554 static struct platform_driver sh_mipi_driver = {
555 .remove = __exit_p(sh_mipi_remove),
556 .shutdown = sh_mipi_shutdown,
558 .name = "sh-mipi-dsi",
562 static int __init sh_mipi_init(void)
564 return platform_driver_probe(&sh_mipi_driver, sh_mipi_probe);
566 module_init(sh_mipi_init);
568 static void __exit sh_mipi_exit(void)
570 platform_driver_unregister(&sh_mipi_driver);
572 module_exit(sh_mipi_exit);
574 MODULE_AUTHOR("Guennadi Liakhovetski <g.liakhovetski@gmx.de>");
575 MODULE_DESCRIPTION("SuperH / ARM-shmobile MIPI DSI driver");
576 MODULE_LICENSE("GPL v2");