blob: 6d8c30bf425a9b332c4b79c8885107b5bf3001a7 [file] [log] [blame]
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001/*
2 * SuperH Mobile LCDC Framebuffer
3 *
4 * Copyright (c) 2008 Magnus Damm
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020011#include <linux/atomic.h>
12#include <linux/backlight.h>
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070013#include <linux/clk.h>
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020014#include <linux/console.h>
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070015#include <linux/dma-mapping.h>
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020016#include <linux/delay.h>
17#include <linux/gpio.h>
18#include <linux/init.h>
Magnus Damm85645572008-12-19 15:34:41 +090019#include <linux/interrupt.h>
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020020#include <linux/ioctl.h>
21#include <linux/kernel.h>
22#include <linux/mm.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
25#include <linux/pm_runtime.h>
26#include <linux/slab.h>
Laurent Pinchartedd153a2011-12-13 14:02:28 +010027#include <linux/videodev2.h>
Paul Mundt1c6a3072009-07-01 06:50:31 +000028#include <linux/vmalloc.h>
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020029
Paul Mundt225c9a82008-10-01 16:24:32 +090030#include <video/sh_mobile_lcdc.h>
Laurent Pinchart8a209742011-07-13 12:13:47 +020031#include <video/sh_mobile_meram.h>
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070032
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +000033#include "sh_mobile_lcdcfb.h"
34
Phil Edworthya6f15ad2009-09-15 12:00:30 +000035#define SIDE_B_OFFSET 0x1000
36#define MIRROR_OFFSET 0x2000
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070037
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +000038#define MAX_XRES 1920
39#define MAX_YRES 1080
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070040
Laurent Pinchartf1f60b52011-09-07 11:09:26 +020041struct sh_mobile_lcdc_priv {
42 void __iomem *base;
43 int irq;
44 atomic_t hw_usecnt;
45 struct device *dev;
46 struct clk *dot_clk;
47 unsigned long lddckr;
48 struct sh_mobile_lcdc_chan ch[2];
49 struct notifier_block notifier;
50 int started;
51 int forced_fourcc; /* 2 channel LCDC must share fourcc setting */
52 struct sh_mobile_meram_info *meram_dev;
53};
54
55/* -----------------------------------------------------------------------------
56 * Registers access
57 */
58
Magnus Damm0246c472009-08-14 10:49:08 +000059static unsigned long lcdc_offs_mainlcd[NR_CH_REGS] = {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070060 [LDDCKPAT1R] = 0x400,
61 [LDDCKPAT2R] = 0x404,
62 [LDMT1R] = 0x418,
63 [LDMT2R] = 0x41c,
64 [LDMT3R] = 0x420,
65 [LDDFR] = 0x424,
66 [LDSM1R] = 0x428,
Magnus Damm85645572008-12-19 15:34:41 +090067 [LDSM2R] = 0x42c,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070068 [LDSA1R] = 0x430,
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +000069 [LDSA2R] = 0x434,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070070 [LDMLSR] = 0x438,
71 [LDHCNR] = 0x448,
72 [LDHSYNR] = 0x44c,
73 [LDVLNR] = 0x450,
74 [LDVSYNR] = 0x454,
75 [LDPMR] = 0x460,
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +000076 [LDHAJR] = 0x4a0,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070077};
78
Magnus Damm0246c472009-08-14 10:49:08 +000079static unsigned long lcdc_offs_sublcd[NR_CH_REGS] = {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070080 [LDDCKPAT1R] = 0x408,
81 [LDDCKPAT2R] = 0x40c,
82 [LDMT1R] = 0x600,
83 [LDMT2R] = 0x604,
84 [LDMT3R] = 0x608,
85 [LDDFR] = 0x60c,
86 [LDSM1R] = 0x610,
Magnus Damm85645572008-12-19 15:34:41 +090087 [LDSM2R] = 0x614,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070088 [LDSA1R] = 0x618,
89 [LDMLSR] = 0x620,
90 [LDHCNR] = 0x624,
91 [LDHSYNR] = 0x628,
92 [LDVLNR] = 0x62c,
93 [LDVSYNR] = 0x630,
94 [LDPMR] = 0x63c,
95};
96
Phil Edworthya6f15ad2009-09-15 12:00:30 +000097static bool banked(int reg_nr)
98{
99 switch (reg_nr) {
100 case LDMT1R:
101 case LDMT2R:
102 case LDMT3R:
103 case LDDFR:
104 case LDSM1R:
105 case LDSA1R:
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000106 case LDSA2R:
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000107 case LDMLSR:
108 case LDHCNR:
109 case LDHSYNR:
110 case LDVLNR:
111 case LDVSYNR:
112 return true;
113 }
114 return false;
115}
116
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200117static int lcdc_chan_is_sublcd(struct sh_mobile_lcdc_chan *chan)
118{
119 return chan->cfg.chan == LCDC_CHAN_SUBLCD;
120}
121
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700122static void lcdc_write_chan(struct sh_mobile_lcdc_chan *chan,
123 int reg_nr, unsigned long data)
124{
125 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr]);
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000126 if (banked(reg_nr))
127 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
128 SIDE_B_OFFSET);
129}
130
131static void lcdc_write_chan_mirror(struct sh_mobile_lcdc_chan *chan,
132 int reg_nr, unsigned long data)
133{
134 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
135 MIRROR_OFFSET);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700136}
137
138static unsigned long lcdc_read_chan(struct sh_mobile_lcdc_chan *chan,
139 int reg_nr)
140{
141 return ioread32(chan->lcdc->base + chan->reg_offs[reg_nr]);
142}
143
144static void lcdc_write(struct sh_mobile_lcdc_priv *priv,
145 unsigned long reg_offs, unsigned long data)
146{
147 iowrite32(data, priv->base + reg_offs);
148}
149
150static unsigned long lcdc_read(struct sh_mobile_lcdc_priv *priv,
151 unsigned long reg_offs)
152{
153 return ioread32(priv->base + reg_offs);
154}
155
156static void lcdc_wait_bit(struct sh_mobile_lcdc_priv *priv,
157 unsigned long reg_offs,
158 unsigned long mask, unsigned long until)
159{
160 while ((lcdc_read(priv, reg_offs) & mask) != until)
161 cpu_relax();
162}
163
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200164/* -----------------------------------------------------------------------------
165 * Clock management
166 */
167
168static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv *priv)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700169{
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200170 if (atomic_inc_and_test(&priv->hw_usecnt)) {
171 if (priv->dot_clk)
172 clk_enable(priv->dot_clk);
173 pm_runtime_get_sync(priv->dev);
174 if (priv->meram_dev && priv->meram_dev->pdev)
175 pm_runtime_get_sync(&priv->meram_dev->pdev->dev);
176 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700177}
178
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200179static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv *priv)
180{
181 if (atomic_sub_return(1, &priv->hw_usecnt) == -1) {
182 if (priv->meram_dev && priv->meram_dev->pdev)
183 pm_runtime_put_sync(&priv->meram_dev->pdev->dev);
184 pm_runtime_put(priv->dev);
185 if (priv->dot_clk)
186 clk_disable(priv->dot_clk);
187 }
188}
189
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +0200190static int sh_mobile_lcdc_setup_clocks(struct sh_mobile_lcdc_priv *priv,
191 int clock_source)
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200192{
Laurent Pinchart4774c122011-09-07 15:47:07 +0200193 struct clk *clk;
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200194 char *str;
195
196 switch (clock_source) {
197 case LCDC_CLK_BUS:
198 str = "bus_clk";
199 priv->lddckr = LDDCKR_ICKSEL_BUS;
200 break;
201 case LCDC_CLK_PERIPHERAL:
202 str = "peripheral_clk";
203 priv->lddckr = LDDCKR_ICKSEL_MIPI;
204 break;
205 case LCDC_CLK_EXTERNAL:
206 str = NULL;
207 priv->lddckr = LDDCKR_ICKSEL_HDMI;
208 break;
209 default:
210 return -EINVAL;
211 }
212
Laurent Pinchart4774c122011-09-07 15:47:07 +0200213 if (str == NULL)
214 return 0;
215
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +0200216 clk = clk_get(priv->dev, str);
Laurent Pinchart4774c122011-09-07 15:47:07 +0200217 if (IS_ERR(clk)) {
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +0200218 dev_err(priv->dev, "cannot get dot clock %s\n", str);
Laurent Pinchart4774c122011-09-07 15:47:07 +0200219 return PTR_ERR(clk);
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200220 }
221
Laurent Pinchart4774c122011-09-07 15:47:07 +0200222 priv->dot_clk = clk;
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200223 return 0;
224}
225
226/* -----------------------------------------------------------------------------
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200227 * Display, panel and deferred I/O
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200228 */
229
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700230static void lcdc_sys_write_index(void *handle, unsigned long data)
231{
232 struct sh_mobile_lcdc_chan *ch = handle;
233
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200234 lcdc_write(ch->lcdc, _LDDWD0R, data | LDDWDxR_WDACT);
235 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
236 lcdc_write(ch->lcdc, _LDDWAR, LDDWAR_WA |
237 (lcdc_chan_is_sublcd(ch) ? 2 : 0));
238 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700239}
240
241static void lcdc_sys_write_data(void *handle, unsigned long data)
242{
243 struct sh_mobile_lcdc_chan *ch = handle;
244
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200245 lcdc_write(ch->lcdc, _LDDWD0R, data | LDDWDxR_WDACT | LDDWDxR_RSW);
246 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
247 lcdc_write(ch->lcdc, _LDDWAR, LDDWAR_WA |
248 (lcdc_chan_is_sublcd(ch) ? 2 : 0));
249 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700250}
251
252static unsigned long lcdc_sys_read_data(void *handle)
253{
254 struct sh_mobile_lcdc_chan *ch = handle;
255
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200256 lcdc_write(ch->lcdc, _LDDRDR, LDDRDR_RSR);
257 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
258 lcdc_write(ch->lcdc, _LDDRAR, LDDRAR_RA |
259 (lcdc_chan_is_sublcd(ch) ? 2 : 0));
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700260 udelay(1);
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200261 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700262
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200263 return lcdc_read(ch->lcdc, _LDDRDR) & LDDRDR_DRD_MASK;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700264}
265
266struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops = {
267 lcdc_sys_write_index,
268 lcdc_sys_write_data,
269 lcdc_sys_read_data,
270};
271
Paul Mundt1c6a3072009-07-01 06:50:31 +0000272static int sh_mobile_lcdc_sginit(struct fb_info *info,
273 struct list_head *pagelist)
274{
275 struct sh_mobile_lcdc_chan *ch = info->par;
276 unsigned int nr_pages_max = info->fix.smem_len >> PAGE_SHIFT;
277 struct page *page;
278 int nr_pages = 0;
279
280 sg_init_table(ch->sglist, nr_pages_max);
281
282 list_for_each_entry(page, pagelist, lru)
283 sg_set_page(&ch->sglist[nr_pages++], page, PAGE_SIZE, 0);
284
285 return nr_pages;
286}
287
Magnus Damm85645572008-12-19 15:34:41 +0900288static void sh_mobile_lcdc_deferred_io(struct fb_info *info,
289 struct list_head *pagelist)
290{
291 struct sh_mobile_lcdc_chan *ch = info->par;
Laurent Pinchartafaad832011-09-11 22:59:04 +0200292 struct sh_mobile_lcdc_panel_cfg *panel = &ch->cfg.panel_cfg;
Magnus Damm85645572008-12-19 15:34:41 +0900293
294 /* enable clocks before accessing hardware */
295 sh_mobile_lcdc_clk_on(ch->lcdc);
296
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900297 /*
298 * It's possible to get here without anything on the pagelist via
299 * sh_mobile_lcdc_deferred_io_touch() or via a userspace fsync()
300 * invocation. In the former case, the acceleration routines are
301 * stepped in to when using the framebuffer console causing the
302 * workqueue to be scheduled without any dirty pages on the list.
303 *
304 * Despite this, a panel update is still needed given that the
305 * acceleration routines have their own methods for writing in
306 * that still need to be updated.
307 *
308 * The fsync() and empty pagelist case could be optimized for,
309 * but we don't bother, as any application exhibiting such
310 * behaviour is fundamentally broken anyways.
311 */
312 if (!list_empty(pagelist)) {
313 unsigned int nr_pages = sh_mobile_lcdc_sginit(info, pagelist);
Paul Mundt1c6a3072009-07-01 06:50:31 +0000314
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900315 /* trigger panel update */
316 dma_map_sg(info->dev, ch->sglist, nr_pages, DMA_TO_DEVICE);
Laurent Pinchartafaad832011-09-11 22:59:04 +0200317 if (panel->start_transfer)
318 panel->start_transfer(ch, &sh_mobile_lcdc_sys_bus_ops);
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200319 lcdc_write_chan(ch, LDSM2R, LDSM2R_OSTRG);
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900320 dma_unmap_sg(info->dev, ch->sglist, nr_pages, DMA_TO_DEVICE);
Magnus Dammef61aae2009-12-07 14:20:06 +0000321 } else {
Laurent Pinchartafaad832011-09-11 22:59:04 +0200322 if (panel->start_transfer)
323 panel->start_transfer(ch, &sh_mobile_lcdc_sys_bus_ops);
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200324 lcdc_write_chan(ch, LDSM2R, LDSM2R_OSTRG);
Magnus Dammef61aae2009-12-07 14:20:06 +0000325 }
Magnus Damm85645572008-12-19 15:34:41 +0900326}
327
328static void sh_mobile_lcdc_deferred_io_touch(struct fb_info *info)
329{
330 struct fb_deferred_io *fbdefio = info->fbdefio;
331
332 if (fbdefio)
333 schedule_delayed_work(&info->deferred_work, fbdefio->delay);
334}
335
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200336static void sh_mobile_lcdc_display_on(struct sh_mobile_lcdc_chan *ch)
337{
Laurent Pinchartafaad832011-09-11 22:59:04 +0200338 struct sh_mobile_lcdc_panel_cfg *panel = &ch->cfg.panel_cfg;
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200339
Laurent Pinchart9a2985e2011-09-11 22:59:04 +0200340 if (ch->tx_dev) {
Laurent Pinchart458981c2011-11-28 23:19:59 +0100341 int ret;
342
343 ret = ch->tx_dev->ops->display_on(ch->tx_dev);
344 if (ret < 0)
Laurent Pinchart9a2985e2011-09-11 22:59:04 +0200345 return;
Laurent Pinchart458981c2011-11-28 23:19:59 +0100346
347 if (ret == SH_MOBILE_LCDC_DISPLAY_DISCONNECTED)
348 ch->info->state = FBINFO_STATE_SUSPENDED;
Laurent Pinchart9a2985e2011-09-11 22:59:04 +0200349 }
350
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200351 /* HDMI must be enabled before LCDC configuration */
Laurent Pinchartafaad832011-09-11 22:59:04 +0200352 if (panel->display_on)
353 panel->display_on();
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200354}
355
356static void sh_mobile_lcdc_display_off(struct sh_mobile_lcdc_chan *ch)
357{
Laurent Pinchartafaad832011-09-11 22:59:04 +0200358 struct sh_mobile_lcdc_panel_cfg *panel = &ch->cfg.panel_cfg;
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200359
Laurent Pinchartafaad832011-09-11 22:59:04 +0200360 if (panel->display_off)
361 panel->display_off();
Laurent Pinchart9a2985e2011-09-11 22:59:04 +0200362
363 if (ch->tx_dev)
364 ch->tx_dev->ops->display_off(ch->tx_dev);
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200365}
366
Laurent Pinchartecd29942011-09-18 14:14:46 +0200367static bool
368sh_mobile_lcdc_must_reconfigure(struct sh_mobile_lcdc_chan *ch,
Laurent Pincharte0c86012011-11-29 01:05:47 +0100369 const struct fb_videomode *new_mode)
Laurent Pinchartecd29942011-09-18 14:14:46 +0200370{
Laurent Pinchartecd29942011-09-18 14:14:46 +0200371 dev_dbg(ch->info->dev, "Old %ux%u, new %ux%u\n",
Laurent Pinchart2d045592011-11-29 13:42:48 +0100372 ch->display.mode.xres, ch->display.mode.yres,
373 new_mode->xres, new_mode->yres);
Laurent Pinchartecd29942011-09-18 14:14:46 +0200374
Laurent Pincharte0c86012011-11-29 01:05:47 +0100375 /* It can be a different monitor with an equal video-mode */
Laurent Pinchart2d045592011-11-29 13:42:48 +0100376 if (fb_mode_is_equal(&ch->display.mode, new_mode))
Laurent Pinchartecd29942011-09-18 14:14:46 +0200377 return false;
Laurent Pinchartecd29942011-09-18 14:14:46 +0200378
379 dev_dbg(ch->info->dev, "Switching %u -> %u lines\n",
Laurent Pinchart2d045592011-11-29 13:42:48 +0100380 ch->display.mode.yres, new_mode->yres);
381 ch->display.mode = *new_mode;
Laurent Pinchartecd29942011-09-18 14:14:46 +0200382
383 return true;
384}
385
386static int sh_mobile_check_var(struct fb_var_screeninfo *var,
387 struct fb_info *info);
388
389static int sh_mobile_lcdc_display_notify(struct sh_mobile_lcdc_chan *ch,
390 enum sh_mobile_lcdc_entity_event event,
Laurent Pincharte0c86012011-11-29 01:05:47 +0100391 const struct fb_videomode *mode,
392 const struct fb_monspecs *monspec)
Laurent Pinchartecd29942011-09-18 14:14:46 +0200393{
394 struct fb_info *info = ch->info;
Laurent Pincharte0c86012011-11-29 01:05:47 +0100395 struct fb_var_screeninfo var;
Laurent Pinchartecd29942011-09-18 14:14:46 +0200396 int ret = 0;
397
398 switch (event) {
399 case SH_MOBILE_LCDC_EVENT_DISPLAY_CONNECT:
400 /* HDMI plug in */
401 if (lock_fb_info(info)) {
402 console_lock();
403
Laurent Pinchart2d045592011-11-29 13:42:48 +0100404 ch->display.width = monspec->max_x * 10;
405 ch->display.height = monspec->max_y * 10;
Laurent Pincharte0c86012011-11-29 01:05:47 +0100406
407 if (!sh_mobile_lcdc_must_reconfigure(ch, mode) &&
Laurent Pinchartecd29942011-09-18 14:14:46 +0200408 info->state == FBINFO_STATE_RUNNING) {
409 /* First activation with the default monitor.
410 * Just turn on, if we run a resume here, the
411 * logo disappears.
412 */
Laurent Pincharte0c86012011-11-29 01:05:47 +0100413 info->var.width = monspec->max_x * 10;
414 info->var.height = monspec->max_y * 10;
Laurent Pinchartecd29942011-09-18 14:14:46 +0200415 sh_mobile_lcdc_display_on(ch);
416 } else {
417 /* New monitor or have to wake up */
418 fb_set_suspend(info, 0);
419 }
420
421 console_unlock();
422 unlock_fb_info(info);
423 }
424 break;
425
426 case SH_MOBILE_LCDC_EVENT_DISPLAY_DISCONNECT:
427 /* HDMI disconnect */
428 if (lock_fb_info(info)) {
429 console_lock();
430 fb_set_suspend(info, 1);
431 console_unlock();
432 unlock_fb_info(info);
433 }
434 break;
435
436 case SH_MOBILE_LCDC_EVENT_DISPLAY_MODE:
437 /* Validate a proposed new mode */
Laurent Pincharte0c86012011-11-29 01:05:47 +0100438 fb_videomode_to_var(&var, mode);
439 var.bits_per_pixel = info->var.bits_per_pixel;
440 var.grayscale = info->var.grayscale;
441 ret = sh_mobile_check_var(&var, info);
Laurent Pinchartecd29942011-09-18 14:14:46 +0200442 break;
443 }
444
445 return ret;
446}
447
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200448/* -----------------------------------------------------------------------------
449 * Format helpers
450 */
451
Laurent Pinchart105784b2011-11-29 15:58:10 +0100452struct sh_mobile_lcdc_format_info {
453 u32 fourcc;
454 unsigned int bpp;
455 bool yuv;
456 u32 lddfr;
457};
458
459static const struct sh_mobile_lcdc_format_info sh_mobile_format_infos[] = {
460 {
461 .fourcc = V4L2_PIX_FMT_RGB565,
462 .bpp = 16,
463 .yuv = false,
464 .lddfr = LDDFR_PKF_RGB16,
465 }, {
466 .fourcc = V4L2_PIX_FMT_BGR24,
467 .bpp = 24,
468 .yuv = false,
469 .lddfr = LDDFR_PKF_RGB24,
470 }, {
471 .fourcc = V4L2_PIX_FMT_BGR32,
472 .bpp = 32,
473 .yuv = false,
474 .lddfr = LDDFR_PKF_ARGB32,
475 }, {
476 .fourcc = V4L2_PIX_FMT_NV12,
477 .bpp = 12,
478 .yuv = true,
479 .lddfr = LDDFR_CC | LDDFR_YF_420,
480 }, {
481 .fourcc = V4L2_PIX_FMT_NV21,
482 .bpp = 12,
483 .yuv = true,
484 .lddfr = LDDFR_CC | LDDFR_YF_420,
485 }, {
486 .fourcc = V4L2_PIX_FMT_NV16,
487 .bpp = 16,
488 .yuv = true,
489 .lddfr = LDDFR_CC | LDDFR_YF_422,
490 }, {
491 .fourcc = V4L2_PIX_FMT_NV61,
492 .bpp = 16,
493 .yuv = true,
494 .lddfr = LDDFR_CC | LDDFR_YF_422,
495 }, {
496 .fourcc = V4L2_PIX_FMT_NV24,
497 .bpp = 24,
498 .yuv = true,
499 .lddfr = LDDFR_CC | LDDFR_YF_444,
500 }, {
501 .fourcc = V4L2_PIX_FMT_NV42,
502 .bpp = 24,
503 .yuv = true,
504 .lddfr = LDDFR_CC | LDDFR_YF_444,
505 },
506};
507
508static const struct sh_mobile_lcdc_format_info *
509sh_mobile_format_info(u32 fourcc)
510{
511 unsigned int i;
512
513 for (i = 0; i < ARRAY_SIZE(sh_mobile_format_infos); ++i) {
514 if (sh_mobile_format_infos[i].fourcc == fourcc)
515 return &sh_mobile_format_infos[i];
516 }
517
518 return NULL;
519}
520
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200521static int sh_mobile_format_fourcc(const struct fb_var_screeninfo *var)
522{
523 if (var->grayscale > 1)
524 return var->grayscale;
525
526 switch (var->bits_per_pixel) {
527 case 16:
528 return V4L2_PIX_FMT_RGB565;
529 case 24:
530 return V4L2_PIX_FMT_BGR24;
531 case 32:
532 return V4L2_PIX_FMT_BGR32;
533 default:
534 return 0;
535 }
536}
537
538static int sh_mobile_format_is_fourcc(const struct fb_var_screeninfo *var)
539{
540 return var->grayscale > 1;
541}
542
543static bool sh_mobile_format_is_yuv(const struct fb_var_screeninfo *var)
544{
Laurent Pinchart105784b2011-11-29 15:58:10 +0100545 const struct sh_mobile_lcdc_format_info *format;
546
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200547 if (var->grayscale <= 1)
548 return false;
549
Laurent Pinchart105784b2011-11-29 15:58:10 +0100550 format = sh_mobile_format_info(var->grayscale);
551 return format ? format->yuv : false;
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200552}
553
554/* -----------------------------------------------------------------------------
555 * Start, stop and IRQ
556 */
557
Magnus Damm85645572008-12-19 15:34:41 +0900558static irqreturn_t sh_mobile_lcdc_irq(int irq, void *data)
559{
560 struct sh_mobile_lcdc_priv *priv = data;
Magnus Damm2feb0752009-03-13 15:36:55 +0000561 struct sh_mobile_lcdc_chan *ch;
Phil Edworthy9dd38812009-09-15 12:00:18 +0000562 unsigned long ldintr;
Magnus Damm2feb0752009-03-13 15:36:55 +0000563 int is_sub;
564 int k;
Magnus Damm85645572008-12-19 15:34:41 +0900565
Laurent Pinchartdc486652011-07-13 12:13:47 +0200566 /* Acknowledge interrupts and disable further VSYNC End IRQs. */
567 ldintr = lcdc_read(priv, _LDINTR);
568 lcdc_write(priv, _LDINTR, (ldintr ^ LDINTR_STATUS_MASK) & ~LDINTR_VEE);
Magnus Damm85645572008-12-19 15:34:41 +0900569
Magnus Damm2feb0752009-03-13 15:36:55 +0000570 /* figure out if this interrupt is for main or sub lcd */
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200571 is_sub = (lcdc_read(priv, _LDSR) & LDSR_MSS) ? 1 : 0;
Magnus Damm2feb0752009-03-13 15:36:55 +0000572
Phil Edworthy9dd38812009-09-15 12:00:18 +0000573 /* wake up channel and disable clocks */
Magnus Damm2feb0752009-03-13 15:36:55 +0000574 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
575 ch = &priv->ch[k];
576
577 if (!ch->enabled)
578 continue;
579
Laurent Pinchartdc486652011-07-13 12:13:47 +0200580 /* Frame End */
Phil Edworthy9dd38812009-09-15 12:00:18 +0000581 if (ldintr & LDINTR_FS) {
582 if (is_sub == lcdc_chan_is_sublcd(ch)) {
583 ch->frame_end = 1;
584 wake_up(&ch->frame_end_wait);
Magnus Damm2feb0752009-03-13 15:36:55 +0000585
Phil Edworthy9dd38812009-09-15 12:00:18 +0000586 sh_mobile_lcdc_clk_off(priv);
587 }
588 }
589
590 /* VSYNC End */
Phil Edworthy40331b22010-02-15 13:57:49 +0000591 if (ldintr & LDINTR_VES)
592 complete(&ch->vsync_completion);
Magnus Damm2feb0752009-03-13 15:36:55 +0000593 }
594
Magnus Damm85645572008-12-19 15:34:41 +0900595 return IRQ_HANDLED;
596}
597
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700598static void sh_mobile_lcdc_start_stop(struct sh_mobile_lcdc_priv *priv,
599 int start)
600{
601 unsigned long tmp = lcdc_read(priv, _LDCNT2R);
602 int k;
603
604 /* start or stop the lcdc */
605 if (start)
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200606 lcdc_write(priv, _LDCNT2R, tmp | LDCNT2R_DO);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700607 else
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200608 lcdc_write(priv, _LDCNT2R, tmp & ~LDCNT2R_DO);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700609
610 /* wait until power is applied/stopped on all channels */
611 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
612 if (lcdc_read(priv, _LDCNT2R) & priv->ch[k].enabled)
613 while (1) {
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200614 tmp = lcdc_read_chan(&priv->ch[k], LDPMR)
615 & LDPMR_LPS;
616 if (start && tmp == LDPMR_LPS)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700617 break;
618 if (!start && tmp == 0)
619 break;
620 cpu_relax();
621 }
622
623 if (!start)
624 lcdc_write(priv, _LDDCKSTPR, 1); /* stop dotclock */
625}
626
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000627static void sh_mobile_lcdc_geometry(struct sh_mobile_lcdc_chan *ch)
628{
Laurent Pinchart2d045592011-11-29 13:42:48 +0100629 const struct fb_var_screeninfo *var = &ch->info->var;
630 const struct fb_videomode *mode = &ch->display.mode;
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000631 unsigned long h_total, hsync_pos, display_h_total;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000632 u32 tmp;
633
634 tmp = ch->ldmt1r_value;
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200635 tmp |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? 0 : LDMT1R_VPOL;
636 tmp |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? 0 : LDMT1R_HPOL;
637 tmp |= (ch->cfg.flags & LCDC_FLAGS_DWPOL) ? LDMT1R_DWPOL : 0;
638 tmp |= (ch->cfg.flags & LCDC_FLAGS_DIPOL) ? LDMT1R_DIPOL : 0;
639 tmp |= (ch->cfg.flags & LCDC_FLAGS_DAPOL) ? LDMT1R_DAPOL : 0;
640 tmp |= (ch->cfg.flags & LCDC_FLAGS_HSCNT) ? LDMT1R_HSCNT : 0;
641 tmp |= (ch->cfg.flags & LCDC_FLAGS_DWCNT) ? LDMT1R_DWCNT : 0;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000642 lcdc_write_chan(ch, LDMT1R, tmp);
643
644 /* setup SYS bus */
645 lcdc_write_chan(ch, LDMT2R, ch->cfg.sys_bus_cfg.ldmt2r);
646 lcdc_write_chan(ch, LDMT3R, ch->cfg.sys_bus_cfg.ldmt3r);
647
648 /* horizontal configuration */
Laurent Pinchart2d045592011-11-29 13:42:48 +0100649 h_total = mode->xres + mode->hsync_len + mode->left_margin
650 + mode->right_margin;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000651 tmp = h_total / 8; /* HTCN */
Laurent Pinchart2d045592011-11-29 13:42:48 +0100652 tmp |= (min(mode->xres, var->xres) / 8) << 16; /* HDCN */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000653 lcdc_write_chan(ch, LDHCNR, tmp);
654
Laurent Pinchart2d045592011-11-29 13:42:48 +0100655 hsync_pos = mode->xres + mode->right_margin;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000656 tmp = hsync_pos / 8; /* HSYNP */
Laurent Pinchart2d045592011-11-29 13:42:48 +0100657 tmp |= (mode->hsync_len / 8) << 16; /* HSYNW */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000658 lcdc_write_chan(ch, LDHSYNR, tmp);
659
660 /* vertical configuration */
Laurent Pinchart2d045592011-11-29 13:42:48 +0100661 tmp = mode->yres + mode->vsync_len + mode->upper_margin
662 + mode->lower_margin; /* VTLN */
663 tmp |= min(mode->yres, var->yres) << 16; /* VDLN */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000664 lcdc_write_chan(ch, LDVLNR, tmp);
665
Laurent Pinchart2d045592011-11-29 13:42:48 +0100666 tmp = mode->yres + mode->lower_margin; /* VSYNP */
667 tmp |= mode->vsync_len << 16; /* VSYNW */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000668 lcdc_write_chan(ch, LDVSYNR, tmp);
669
670 /* Adjust horizontal synchronisation for HDMI */
Laurent Pinchart2d045592011-11-29 13:42:48 +0100671 display_h_total = mode->xres + mode->hsync_len + mode->left_margin
672 + mode->right_margin;
673 tmp = ((mode->xres & 7) << 24) | ((display_h_total & 7) << 16)
674 | ((mode->hsync_len & 7) << 8) | (hsync_pos & 7);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000675 lcdc_write_chan(ch, LDHAJR, tmp);
676}
677
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200678/*
679 * __sh_mobile_lcdc_start - Configure and tart the LCDC
680 * @priv: LCDC device
681 *
682 * Configure all enabled channels and start the LCDC device. All external
683 * devices (clocks, MERAM, panels, ...) are not touched by this function.
684 */
685static void __sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv *priv)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700686{
687 struct sh_mobile_lcdc_chan *ch;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700688 unsigned long tmp;
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200689 int k, m;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700690
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200691 /* Enable LCDC channels. Read data from external memory, avoid using the
692 * BEU for now.
693 */
694 lcdc_write(priv, _LDCNT2R, priv->ch[0].enabled | priv->ch[1].enabled);
Magnus Damm85645572008-12-19 15:34:41 +0900695
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200696 /* Stop the LCDC first and disable all interrupts. */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700697 sh_mobile_lcdc_start_stop(priv, 0);
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200698 lcdc_write(priv, _LDINTR, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700699
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200700 /* Configure power supply, dot clocks and start them. */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700701 tmp = priv->lddckr;
702 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
703 ch = &priv->ch[k];
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200704 if (!ch->enabled)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700705 continue;
706
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200707 /* Power supply */
708 lcdc_write_chan(ch, LDPMR, 0);
709
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700710 m = ch->cfg.clock_divider;
711 if (!m)
712 continue;
713
Laurent Pinchart505c7de52011-07-13 12:13:47 +0200714 /* FIXME: sh7724 can only use 42, 48, 54 and 60 for the divider
715 * denominator.
716 */
717 lcdc_write_chan(ch, LDDCKPAT1R, 0);
718 lcdc_write_chan(ch, LDDCKPAT2R, (1 << (m/2)) - 1);
719
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700720 if (m == 1)
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200721 m = LDDCKR_MOSEL;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700722 tmp |= m << (lcdc_chan_is_sublcd(ch) ? 8 : 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700723 }
724
725 lcdc_write(priv, _LDDCKR, tmp);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700726 lcdc_write(priv, _LDDCKSTPR, 0);
727 lcdc_wait_bit(priv, _LDDCKSTPR, ~0, 0);
728
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200729 /* Setup geometry, format, frame buffer memory and operation mode. */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700730 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
731 ch = &priv->ch[k];
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700732 if (!ch->enabled)
733 continue;
734
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000735 sh_mobile_lcdc_geometry(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700736
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +0100737 tmp = ch->format->lddfr;
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100738
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +0100739 if (ch->format->yuv) {
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100740 switch (ch->info->var.colorspace) {
741 case V4L2_COLORSPACE_REC709:
742 tmp |= LDDFR_CF1;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000743 break;
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100744 case V4L2_COLORSPACE_JPEG:
745 tmp |= LDDFR_CF0;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000746 break;
747 }
Magnus Damm417d4822011-01-05 10:21:00 +0000748 }
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200749
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700750 lcdc_write_chan(ch, LDDFR, tmp);
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200751 lcdc_write_chan(ch, LDMLSR, ch->pitch);
752 lcdc_write_chan(ch, LDSA1R, ch->base_addr_y);
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +0100753 if (ch->format->yuv)
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200754 lcdc_write_chan(ch, LDSA2R, ch->base_addr_c);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700755
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200756 /* When using deferred I/O mode, configure the LCDC for one-shot
757 * operation and enable the frame end interrupt. Otherwise use
758 * continuous read mode.
759 */
760 if (ch->ldmt1r_value & LDMT1R_IFM &&
761 ch->cfg.sys_bus_cfg.deferred_io_msec) {
762 lcdc_write_chan(ch, LDSM1R, LDSM1R_OS);
763 lcdc_write(priv, _LDINTR, LDINTR_FE);
764 } else {
765 lcdc_write_chan(ch, LDSM1R, 0);
766 }
767 }
Damian7caa4342011-05-18 11:10:07 +0000768
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200769 /* Word and long word swap. */
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +0100770 switch (priv->ch[0].format->fourcc) {
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100771 case V4L2_PIX_FMT_RGB565:
772 case V4L2_PIX_FMT_NV21:
773 case V4L2_PIX_FMT_NV61:
774 case V4L2_PIX_FMT_NV42:
775 tmp = LDDDSR_LS | LDDDSR_WS;
776 break;
777 case V4L2_PIX_FMT_BGR24:
778 case V4L2_PIX_FMT_NV12:
779 case V4L2_PIX_FMT_NV16:
780 case V4L2_PIX_FMT_NV24:
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200781 tmp = LDDDSR_LS | LDDDSR_WS | LDDDSR_BS;
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100782 break;
783 case V4L2_PIX_FMT_BGR32:
784 default:
785 tmp = LDDDSR_LS;
786 break;
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200787 }
788 lcdc_write(priv, _LDDDSR, tmp);
Damian7caa4342011-05-18 11:10:07 +0000789
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200790 /* Enable the display output. */
791 lcdc_write(priv, _LDCNT1R, LDCNT1R_DE);
792 sh_mobile_lcdc_start_stop(priv, 1);
793 priv->started = 1;
794}
Damian7caa4342011-05-18 11:10:07 +0000795
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200796static int sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv *priv)
797{
798 struct sh_mobile_meram_info *mdev = priv->meram_dev;
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200799 struct sh_mobile_lcdc_chan *ch;
800 unsigned long tmp;
801 int ret;
802 int k;
803
804 /* enable clocks before accessing the hardware */
805 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
806 if (priv->ch[k].enabled)
807 sh_mobile_lcdc_clk_on(priv);
808 }
809
810 /* reset */
811 lcdc_write(priv, _LDCNT2R, lcdc_read(priv, _LDCNT2R) | LDCNT2R_BR);
812 lcdc_wait_bit(priv, _LDCNT2R, LDCNT2R_BR, 0);
813
814 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
Laurent Pinchartafaad832011-09-11 22:59:04 +0200815 struct sh_mobile_lcdc_panel_cfg *panel;
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200816
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200817 ch = &priv->ch[k];
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200818 if (!ch->enabled)
819 continue;
820
Laurent Pinchartafaad832011-09-11 22:59:04 +0200821 panel = &ch->cfg.panel_cfg;
822 if (panel->setup_sys) {
823 ret = panel->setup_sys(ch, &sh_mobile_lcdc_sys_bus_ops);
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200824 if (ret)
825 return ret;
826 }
827 }
828
829 /* Compute frame buffer base address and pitch for each channel. */
830 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
831 struct sh_mobile_meram_cfg *cfg;
832 int pixelformat;
833
834 ch = &priv->ch[k];
835 if (!ch->enabled)
836 continue;
837
838 ch->base_addr_y = ch->info->fix.smem_start;
839 ch->base_addr_c = ch->base_addr_y
840 + ch->info->var.xres
841 * ch->info->var.yres_virtual;
842 ch->pitch = ch->info->fix.line_length;
843
844 /* Enable MERAM if possible. */
845 cfg = ch->cfg.meram_cfg;
846 if (mdev == NULL || mdev->ops == NULL || cfg == NULL)
847 continue;
848
849 /* we need to de-init configured ICBs before we can
850 * re-initialize them.
851 */
852 if (ch->meram_enabled) {
853 mdev->ops->meram_unregister(mdev, cfg);
Damian7caa4342011-05-18 11:10:07 +0000854 ch->meram_enabled = 0;
Damian7caa4342011-05-18 11:10:07 +0000855 }
856
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +0100857 switch (ch->format->fourcc) {
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100858 case V4L2_PIX_FMT_NV12:
859 case V4L2_PIX_FMT_NV21:
860 case V4L2_PIX_FMT_NV16:
861 case V4L2_PIX_FMT_NV61:
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200862 pixelformat = SH_MOBILE_MERAM_PF_NV;
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100863 break;
864 case V4L2_PIX_FMT_NV24:
865 case V4L2_PIX_FMT_NV42:
866 pixelformat = SH_MOBILE_MERAM_PF_NV24;
867 break;
868 case V4L2_PIX_FMT_RGB565:
869 case V4L2_PIX_FMT_BGR24:
870 case V4L2_PIX_FMT_BGR32:
871 default:
872 pixelformat = SH_MOBILE_MERAM_PF_RGB;
873 break;
874 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700875
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200876 ret = mdev->ops->meram_register(mdev, cfg, ch->pitch,
877 ch->info->var.yres, pixelformat,
878 ch->base_addr_y, ch->base_addr_c,
879 &ch->base_addr_y, &ch->base_addr_c,
880 &ch->pitch);
881 if (!ret)
882 ch->meram_enabled = 1;
883 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700884
Laurent Pinchart9a217e32011-07-13 12:13:47 +0200885 /* Start the LCDC. */
886 __sh_mobile_lcdc_start(priv);
887
888 /* Setup deferred I/O, tell the board code to enable the panels, and
889 * turn backlight on.
890 */
891 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
892 ch = &priv->ch[k];
893 if (!ch->enabled)
894 continue;
895
Magnus Damm85645572008-12-19 15:34:41 +0900896 tmp = ch->cfg.sys_bus_cfg.deferred_io_msec;
Laurent Pinchartce1c0b02011-07-13 12:13:47 +0200897 if (ch->ldmt1r_value & LDMT1R_IFM && tmp) {
Magnus Damm85645572008-12-19 15:34:41 +0900898 ch->defio.deferred_io = sh_mobile_lcdc_deferred_io;
899 ch->defio.delay = msecs_to_jiffies(tmp);
Paul Mundte33afdd2009-07-07 11:24:32 +0900900 ch->info->fbdefio = &ch->defio;
901 fb_deferred_io_init(ch->info);
Magnus Damm85645572008-12-19 15:34:41 +0900902 }
Magnus Damm21bc1f02009-08-15 02:53:16 +0000903
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200904 sh_mobile_lcdc_display_on(ch);
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +0000905
906 if (ch->bl) {
907 ch->bl->props.power = FB_BLANK_UNBLANK;
908 backlight_update_status(ch->bl);
909 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700910 }
911
912 return 0;
913}
914
915static void sh_mobile_lcdc_stop(struct sh_mobile_lcdc_priv *priv)
916{
917 struct sh_mobile_lcdc_chan *ch;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700918 int k;
919
Magnus Damm2feb0752009-03-13 15:36:55 +0000920 /* clean up deferred io and ask board code to disable panel */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700921 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
922 ch = &priv->ch[k];
Magnus Damm21bc1f02009-08-15 02:53:16 +0000923 if (!ch->enabled)
924 continue;
Magnus Damm2feb0752009-03-13 15:36:55 +0000925
926 /* deferred io mode:
927 * flush frame, and wait for frame end interrupt
928 * clean up deferred io and enable clock
929 */
Guennadi Liakhovetski5ef6b502010-09-03 07:19:57 +0000930 if (ch->info && ch->info->fbdefio) {
Magnus Damm2feb0752009-03-13 15:36:55 +0000931 ch->frame_end = 0;
Paul Mundte33afdd2009-07-07 11:24:32 +0900932 schedule_delayed_work(&ch->info->deferred_work, 0);
Magnus Damm2feb0752009-03-13 15:36:55 +0000933 wait_event(ch->frame_end_wait, ch->frame_end);
Paul Mundte33afdd2009-07-07 11:24:32 +0900934 fb_deferred_io_cleanup(ch->info);
935 ch->info->fbdefio = NULL;
Magnus Damm2feb0752009-03-13 15:36:55 +0000936 sh_mobile_lcdc_clk_on(priv);
937 }
938
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +0000939 if (ch->bl) {
940 ch->bl->props.power = FB_BLANK_POWERDOWN;
941 backlight_update_status(ch->bl);
942 }
943
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +0200944 sh_mobile_lcdc_display_off(ch);
Damian7caa4342011-05-18 11:10:07 +0000945
946 /* disable the meram */
947 if (ch->meram_enabled) {
948 struct sh_mobile_meram_cfg *cfg;
949 struct sh_mobile_meram_info *mdev;
950 cfg = ch->cfg.meram_cfg;
951 mdev = priv->meram_dev;
952 mdev->ops->meram_unregister(mdev, cfg);
953 ch->meram_enabled = 0;
954 }
955
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700956 }
957
958 /* stop the lcdc */
Magnus Damm8e9bb192009-05-20 14:34:43 +0000959 if (priv->started) {
960 sh_mobile_lcdc_start_stop(priv, 0);
961 priv->started = 0;
962 }
Magnus Dammb51339f2008-10-31 20:23:26 +0900963
Magnus Damm85645572008-12-19 15:34:41 +0900964 /* stop clocks */
965 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
966 if (priv->ch[k].enabled)
967 sh_mobile_lcdc_clk_off(priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700968}
969
Laurent Pinchartf1f60b52011-09-07 11:09:26 +0200970/* -----------------------------------------------------------------------------
971 * Frame buffer operations
972 */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700973
974static int sh_mobile_lcdc_setcolreg(u_int regno,
975 u_int red, u_int green, u_int blue,
976 u_int transp, struct fb_info *info)
977{
978 u32 *palette = info->pseudo_palette;
979
980 if (regno >= PALETTE_NR)
981 return -EINVAL;
982
983 /* only FB_VISUAL_TRUECOLOR supported */
984
985 red >>= 16 - info->var.red.length;
986 green >>= 16 - info->var.green.length;
987 blue >>= 16 - info->var.blue.length;
988 transp >>= 16 - info->var.transp.length;
989
990 palette[regno] = (red << info->var.red.offset) |
991 (green << info->var.green.offset) |
992 (blue << info->var.blue.offset) |
993 (transp << info->var.transp.offset);
994
995 return 0;
996}
997
998static struct fb_fix_screeninfo sh_mobile_lcdc_fix = {
999 .id = "SH Mobile LCDC",
1000 .type = FB_TYPE_PACKED_PIXELS,
1001 .visual = FB_VISUAL_TRUECOLOR,
1002 .accel = FB_ACCEL_NONE,
Phil Edworthy9dd38812009-09-15 12:00:18 +00001003 .xpanstep = 0,
1004 .ypanstep = 1,
1005 .ywrapstep = 0,
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001006 .capabilities = FB_CAP_FOURCC,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001007};
1008
Magnus Damm85645572008-12-19 15:34:41 +09001009static void sh_mobile_lcdc_fillrect(struct fb_info *info,
1010 const struct fb_fillrect *rect)
1011{
1012 sys_fillrect(info, rect);
1013 sh_mobile_lcdc_deferred_io_touch(info);
1014}
1015
1016static void sh_mobile_lcdc_copyarea(struct fb_info *info,
1017 const struct fb_copyarea *area)
1018{
1019 sys_copyarea(info, area);
1020 sh_mobile_lcdc_deferred_io_touch(info);
1021}
1022
1023static void sh_mobile_lcdc_imageblit(struct fb_info *info,
1024 const struct fb_image *image)
1025{
1026 sys_imageblit(info, image);
1027 sh_mobile_lcdc_deferred_io_touch(info);
1028}
1029
Phil Edworthy9dd38812009-09-15 12:00:18 +00001030static int sh_mobile_fb_pan_display(struct fb_var_screeninfo *var,
1031 struct fb_info *info)
1032{
1033 struct sh_mobile_lcdc_chan *ch = info->par;
Phil Edworthy92e1f9a2010-02-11 10:24:25 +00001034 struct sh_mobile_lcdc_priv *priv = ch->lcdc;
1035 unsigned long ldrcntr;
1036 unsigned long new_pan_offset;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001037 unsigned long base_addr_y, base_addr_c;
1038 unsigned long c_offset;
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001039 bool yuv = sh_mobile_format_is_yuv(&info->var);
Phil Edworthy9dd38812009-09-15 12:00:18 +00001040
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001041 if (!yuv)
Laurent Pinchartdc1d5ad2011-08-31 13:00:55 +02001042 new_pan_offset = var->yoffset * info->fix.line_length
1043 + var->xoffset * (info->var.bits_per_pixel / 8);
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001044 else
Laurent Pinchartdc1d5ad2011-08-31 13:00:55 +02001045 new_pan_offset = var->yoffset * info->fix.line_length
1046 + var->xoffset;
Phil Edworthy9dd38812009-09-15 12:00:18 +00001047
Phil Edworthy92e1f9a2010-02-11 10:24:25 +00001048 if (new_pan_offset == ch->pan_offset)
1049 return 0; /* No change, do nothing */
1050
1051 ldrcntr = lcdc_read(priv, _LDRCNTR);
1052
1053 /* Set the source address for the next refresh */
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001054 base_addr_y = ch->dma_handle + new_pan_offset;
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001055 if (yuv) {
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001056 /* Set y offset */
Laurent Pinchartdc1d5ad2011-08-31 13:00:55 +02001057 c_offset = var->yoffset * info->fix.line_length
1058 * (info->var.bits_per_pixel - 8) / 8;
1059 base_addr_c = ch->dma_handle
1060 + info->var.xres * info->var.yres_virtual
1061 + c_offset;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001062 /* Set x offset */
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +01001063 if (ch->format->fourcc == V4L2_PIX_FMT_NV24)
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001064 base_addr_c += 2 * var->xoffset;
1065 else
1066 base_addr_c += var->xoffset;
Laurent Pinchart49d79ba2011-07-13 12:13:47 +02001067 }
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001068
Laurent Pinchart49d79ba2011-07-13 12:13:47 +02001069 if (ch->meram_enabled) {
Damian7caa4342011-05-18 11:10:07 +00001070 struct sh_mobile_meram_cfg *cfg;
1071 struct sh_mobile_meram_info *mdev;
Damian7caa4342011-05-18 11:10:07 +00001072 int ret;
1073
1074 cfg = ch->cfg.meram_cfg;
1075 mdev = priv->meram_dev;
1076 ret = mdev->ops->meram_update(mdev, cfg,
1077 base_addr_y, base_addr_c,
Laurent Pinchart49d79ba2011-07-13 12:13:47 +02001078 &base_addr_y, &base_addr_c);
Damian7caa4342011-05-18 11:10:07 +00001079 if (ret)
1080 return ret;
Damian7caa4342011-05-18 11:10:07 +00001081 }
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001082
Laurent Pinchart49d79ba2011-07-13 12:13:47 +02001083 ch->base_addr_y = base_addr_y;
1084 ch->base_addr_c = base_addr_c;
1085
1086 lcdc_write_chan_mirror(ch, LDSA1R, base_addr_y);
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001087 if (yuv)
Laurent Pinchart49d79ba2011-07-13 12:13:47 +02001088 lcdc_write_chan_mirror(ch, LDSA2R, base_addr_c);
1089
Phil Edworthy92e1f9a2010-02-11 10:24:25 +00001090 if (lcdc_chan_is_sublcd(ch))
1091 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_SRS);
1092 else
1093 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_MRS);
1094
1095 ch->pan_offset = new_pan_offset;
1096
1097 sh_mobile_lcdc_deferred_io_touch(info);
Phil Edworthy9dd38812009-09-15 12:00:18 +00001098
1099 return 0;
1100}
1101
Phil Edworthy40331b22010-02-15 13:57:49 +00001102static int sh_mobile_wait_for_vsync(struct fb_info *info)
1103{
1104 struct sh_mobile_lcdc_chan *ch = info->par;
1105 unsigned long ldintr;
1106 int ret;
1107
Laurent Pinchartdc486652011-07-13 12:13:47 +02001108 /* Enable VSync End interrupt and be careful not to acknowledge any
1109 * pending interrupt.
1110 */
Phil Edworthy40331b22010-02-15 13:57:49 +00001111 ldintr = lcdc_read(ch->lcdc, _LDINTR);
Laurent Pinchartdc486652011-07-13 12:13:47 +02001112 ldintr |= LDINTR_VEE | LDINTR_STATUS_MASK;
Phil Edworthy40331b22010-02-15 13:57:49 +00001113 lcdc_write(ch->lcdc, _LDINTR, ldintr);
1114
1115 ret = wait_for_completion_interruptible_timeout(&ch->vsync_completion,
1116 msecs_to_jiffies(100));
1117 if (!ret)
1118 return -ETIMEDOUT;
1119
1120 return 0;
1121}
1122
1123static int sh_mobile_ioctl(struct fb_info *info, unsigned int cmd,
1124 unsigned long arg)
1125{
1126 int retval;
1127
1128 switch (cmd) {
1129 case FBIO_WAITFORVSYNC:
1130 retval = sh_mobile_wait_for_vsync(info);
1131 break;
1132
1133 default:
1134 retval = -ENOIOCTLCMD;
1135 break;
1136 }
1137 return retval;
1138}
1139
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001140static void sh_mobile_fb_reconfig(struct fb_info *info)
1141{
1142 struct sh_mobile_lcdc_chan *ch = info->par;
Laurent Pinchart2d045592011-11-29 13:42:48 +01001143 struct fb_var_screeninfo var;
1144 struct fb_videomode mode;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001145 struct fb_event event;
1146 int evnt = FB_EVENT_MODE_CHANGE_ALL;
1147
1148 if (ch->use_count > 1 || (ch->use_count == 1 && !info->fbcon_par))
1149 /* More framebuffer users are active */
1150 return;
1151
Laurent Pinchart2d045592011-11-29 13:42:48 +01001152 fb_var_to_videomode(&mode, &info->var);
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001153
Laurent Pinchart2d045592011-11-29 13:42:48 +01001154 if (fb_mode_is_equal(&ch->display.mode, &mode))
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001155 return;
1156
1157 /* Display has been re-plugged, framebuffer is free now, reconfigure */
Laurent Pinchart2d045592011-11-29 13:42:48 +01001158 var = info->var;
1159 fb_videomode_to_var(&var, &ch->display.mode);
1160 var.width = ch->display.width;
1161 var.height = ch->display.height;
1162 var.activate = FB_ACTIVATE_NOW;
1163
1164 if (fb_set_var(info, &var) < 0)
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001165 /* Couldn't reconfigure, hopefully, can continue as before */
1166 return;
1167
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001168 /*
1169 * fb_set_var() calls the notifier change internally, only if
1170 * FBINFO_MISC_USEREVENT flag is set. Since we do not want to fake a
1171 * user event, we have to call the chain ourselves.
1172 */
1173 event.info = info;
Laurent Pinchart2d045592011-11-29 13:42:48 +01001174 event.data = &ch->display.mode;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001175 fb_notifier_call_chain(evnt, &event);
1176}
1177
1178/*
1179 * Locking: both .fb_release() and .fb_open() are called with info->lock held if
1180 * user == 1, or with console sem held, if user == 0.
1181 */
1182static int sh_mobile_release(struct fb_info *info, int user)
1183{
1184 struct sh_mobile_lcdc_chan *ch = info->par;
1185
1186 mutex_lock(&ch->open_lock);
1187 dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
1188
1189 ch->use_count--;
1190
1191 /* Nothing to reconfigure, when called from fbcon */
1192 if (user) {
Torben Hohnac751ef2011-01-25 15:07:35 -08001193 console_lock();
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001194 sh_mobile_fb_reconfig(info);
Torben Hohnac751ef2011-01-25 15:07:35 -08001195 console_unlock();
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001196 }
1197
1198 mutex_unlock(&ch->open_lock);
1199
1200 return 0;
1201}
1202
1203static int sh_mobile_open(struct fb_info *info, int user)
1204{
1205 struct sh_mobile_lcdc_chan *ch = info->par;
1206
1207 mutex_lock(&ch->open_lock);
1208 ch->use_count++;
1209
1210 dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
1211 mutex_unlock(&ch->open_lock);
1212
1213 return 0;
1214}
1215
1216static int sh_mobile_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
1217{
1218 struct sh_mobile_lcdc_chan *ch = info->par;
Magnus Damm417d4822011-01-05 10:21:00 +00001219 struct sh_mobile_lcdc_priv *p = ch->lcdc;
Laurent Pinchart03862192011-08-31 13:00:53 +02001220 unsigned int best_dist = (unsigned int)-1;
1221 unsigned int best_xres = 0;
1222 unsigned int best_yres = 0;
1223 unsigned int i;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001224
Laurent Pinchart03862192011-08-31 13:00:53 +02001225 if (var->xres > MAX_XRES || var->yres > MAX_YRES)
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001226 return -EINVAL;
Laurent Pinchart03862192011-08-31 13:00:53 +02001227
1228 /* If board code provides us with a list of available modes, make sure
1229 * we use one of them. Find the mode closest to the requested one. The
1230 * distance between two modes is defined as the size of the
1231 * non-overlapping parts of the two rectangles.
1232 */
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001233 for (i = 0; i < ch->cfg.num_modes; ++i) {
1234 const struct fb_videomode *mode = &ch->cfg.lcd_modes[i];
Laurent Pinchart03862192011-08-31 13:00:53 +02001235 unsigned int dist;
1236
1237 /* We can only round up. */
1238 if (var->xres > mode->xres || var->yres > mode->yres)
1239 continue;
1240
1241 dist = var->xres * var->yres + mode->xres * mode->yres
1242 - 2 * min(var->xres, mode->xres)
1243 * min(var->yres, mode->yres);
1244
1245 if (dist < best_dist) {
1246 best_xres = mode->xres;
1247 best_yres = mode->yres;
1248 best_dist = dist;
1249 }
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001250 }
Magnus Damm417d4822011-01-05 10:21:00 +00001251
Laurent Pinchart03862192011-08-31 13:00:53 +02001252 /* If no available mode can be used, return an error. */
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001253 if (ch->cfg.num_modes != 0) {
Laurent Pinchart03862192011-08-31 13:00:53 +02001254 if (best_dist == (unsigned int)-1)
1255 return -EINVAL;
1256
1257 var->xres = best_xres;
1258 var->yres = best_yres;
1259 }
1260
1261 /* Make sure the virtual resolution is at least as big as the visible
1262 * resolution.
1263 */
1264 if (var->xres_virtual < var->xres)
1265 var->xres_virtual = var->xres;
1266 if (var->yres_virtual < var->yres)
1267 var->yres_virtual = var->yres;
1268
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001269 if (sh_mobile_format_is_fourcc(var)) {
Laurent Pinchart105784b2011-11-29 15:58:10 +01001270 const struct sh_mobile_lcdc_format_info *format;
1271
1272 format = sh_mobile_format_info(var->grayscale);
1273 if (format == NULL)
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001274 return -EINVAL;
Laurent Pinchart105784b2011-11-29 15:58:10 +01001275 var->bits_per_pixel = format->bpp;
Laurent Pinchart03862192011-08-31 13:00:53 +02001276
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001277 /* Default to RGB and JPEG color-spaces for RGB and YUV formats
1278 * respectively.
1279 */
Laurent Pinchart105784b2011-11-29 15:58:10 +01001280 if (!format->yuv)
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001281 var->colorspace = V4L2_COLORSPACE_SRGB;
1282 else if (var->colorspace != V4L2_COLORSPACE_REC709)
1283 var->colorspace = V4L2_COLORSPACE_JPEG;
1284 } else {
1285 if (var->bits_per_pixel <= 16) { /* RGB 565 */
1286 var->bits_per_pixel = 16;
1287 var->red.offset = 11;
1288 var->red.length = 5;
1289 var->green.offset = 5;
1290 var->green.length = 6;
1291 var->blue.offset = 0;
1292 var->blue.length = 5;
1293 var->transp.offset = 0;
1294 var->transp.length = 0;
1295 } else if (var->bits_per_pixel <= 24) { /* RGB 888 */
1296 var->bits_per_pixel = 24;
1297 var->red.offset = 16;
1298 var->red.length = 8;
1299 var->green.offset = 8;
1300 var->green.length = 8;
1301 var->blue.offset = 0;
1302 var->blue.length = 8;
1303 var->transp.offset = 0;
1304 var->transp.length = 0;
1305 } else if (var->bits_per_pixel <= 32) { /* RGBA 888 */
1306 var->bits_per_pixel = 32;
1307 var->red.offset = 16;
1308 var->red.length = 8;
1309 var->green.offset = 8;
1310 var->green.length = 8;
1311 var->blue.offset = 0;
1312 var->blue.length = 8;
1313 var->transp.offset = 24;
1314 var->transp.length = 8;
1315 } else
1316 return -EINVAL;
1317
1318 var->red.msb_right = 0;
1319 var->green.msb_right = 0;
1320 var->blue.msb_right = 0;
1321 var->transp.msb_right = 0;
1322 }
Laurent Pinchart03862192011-08-31 13:00:53 +02001323
1324 /* Make sure we don't exceed our allocated memory. */
1325 if (var->xres_virtual * var->yres_virtual * var->bits_per_pixel / 8 >
1326 info->fix.smem_len)
1327 return -EINVAL;
1328
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001329 /* only accept the forced_fourcc for dual channel configurations */
1330 if (p->forced_fourcc &&
1331 p->forced_fourcc != sh_mobile_format_fourcc(var))
Magnus Damm417d4822011-01-05 10:21:00 +00001332 return -EINVAL;
1333
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001334 return 0;
1335}
Phil Edworthy40331b22010-02-15 13:57:49 +00001336
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001337static int sh_mobile_set_par(struct fb_info *info)
1338{
1339 struct sh_mobile_lcdc_chan *ch = info->par;
Laurent Pinchart91fba482011-08-31 13:00:56 +02001340 u32 line_length = info->fix.line_length;
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001341 int ret;
1342
1343 sh_mobile_lcdc_stop(ch->lcdc);
Laurent Pinchart91fba482011-08-31 13:00:56 +02001344
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001345 if (sh_mobile_format_is_yuv(&info->var))
Laurent Pinchart91fba482011-08-31 13:00:56 +02001346 info->fix.line_length = info->var.xres;
1347 else
1348 info->fix.line_length = info->var.xres
1349 * info->var.bits_per_pixel / 8;
1350
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +01001351 ch->format = sh_mobile_format_info(sh_mobile_format_fourcc(&info->var));
1352
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001353 ret = sh_mobile_lcdc_start(ch->lcdc);
Laurent Pinchart91fba482011-08-31 13:00:56 +02001354 if (ret < 0) {
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001355 dev_err(info->dev, "%s: unable to restart LCDC\n", __func__);
Laurent Pinchart91fba482011-08-31 13:00:56 +02001356 info->fix.line_length = line_length;
1357 }
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001358
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001359 if (sh_mobile_format_is_fourcc(&info->var)) {
1360 info->fix.type = FB_TYPE_FOURCC;
1361 info->fix.visual = FB_VISUAL_FOURCC;
1362 } else {
1363 info->fix.type = FB_TYPE_PACKED_PIXELS;
1364 info->fix.visual = FB_VISUAL_TRUECOLOR;
1365 }
1366
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001367 return ret;
1368}
1369
Alexandre Courbot8857b9a2011-02-23 08:36:30 +00001370/*
1371 * Screen blanking. Behavior is as follows:
1372 * FB_BLANK_UNBLANK: screen unblanked, clocks enabled
1373 * FB_BLANK_NORMAL: screen blanked, clocks enabled
1374 * FB_BLANK_VSYNC,
1375 * FB_BLANK_HSYNC,
1376 * FB_BLANK_POWEROFF: screen blanked, clocks disabled
1377 */
1378static int sh_mobile_lcdc_blank(int blank, struct fb_info *info)
1379{
1380 struct sh_mobile_lcdc_chan *ch = info->par;
1381 struct sh_mobile_lcdc_priv *p = ch->lcdc;
1382
1383 /* blank the screen? */
1384 if (blank > FB_BLANK_UNBLANK && ch->blank_status == FB_BLANK_UNBLANK) {
1385 struct fb_fillrect rect = {
1386 .width = info->var.xres,
1387 .height = info->var.yres,
1388 };
1389 sh_mobile_lcdc_fillrect(info, &rect);
1390 }
1391 /* turn clocks on? */
1392 if (blank <= FB_BLANK_NORMAL && ch->blank_status > FB_BLANK_NORMAL) {
1393 sh_mobile_lcdc_clk_on(p);
1394 }
1395 /* turn clocks off? */
1396 if (blank > FB_BLANK_NORMAL && ch->blank_status <= FB_BLANK_NORMAL) {
1397 /* make sure the screen is updated with the black fill before
1398 * switching the clocks off. one vsync is not enough since
1399 * blanking may occur in the middle of a refresh. deferred io
1400 * mode will reenable the clocks and update the screen in time,
1401 * so it does not need this. */
1402 if (!info->fbdefio) {
1403 sh_mobile_wait_for_vsync(info);
1404 sh_mobile_wait_for_vsync(info);
1405 }
1406 sh_mobile_lcdc_clk_off(p);
1407 }
1408
1409 ch->blank_status = blank;
1410 return 0;
1411}
1412
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001413static struct fb_ops sh_mobile_lcdc_ops = {
Phil Edworthy9dd38812009-09-15 12:00:18 +00001414 .owner = THIS_MODULE,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001415 .fb_setcolreg = sh_mobile_lcdc_setcolreg,
Magnus Damm2540c112008-12-17 17:29:49 +09001416 .fb_read = fb_sys_read,
1417 .fb_write = fb_sys_write,
Magnus Damm85645572008-12-19 15:34:41 +09001418 .fb_fillrect = sh_mobile_lcdc_fillrect,
1419 .fb_copyarea = sh_mobile_lcdc_copyarea,
1420 .fb_imageblit = sh_mobile_lcdc_imageblit,
Alexandre Courbot8857b9a2011-02-23 08:36:30 +00001421 .fb_blank = sh_mobile_lcdc_blank,
Phil Edworthy9dd38812009-09-15 12:00:18 +00001422 .fb_pan_display = sh_mobile_fb_pan_display,
Phil Edworthy40331b22010-02-15 13:57:49 +00001423 .fb_ioctl = sh_mobile_ioctl,
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001424 .fb_open = sh_mobile_open,
1425 .fb_release = sh_mobile_release,
1426 .fb_check_var = sh_mobile_check_var,
Laurent Pincharted5bebf2011-08-31 13:00:54 +02001427 .fb_set_par = sh_mobile_set_par,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001428};
1429
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02001430/* -----------------------------------------------------------------------------
1431 * Backlight
1432 */
1433
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001434static int sh_mobile_lcdc_update_bl(struct backlight_device *bdev)
1435{
1436 struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev);
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001437 int brightness = bdev->props.brightness;
1438
1439 if (bdev->props.power != FB_BLANK_UNBLANK ||
1440 bdev->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK))
1441 brightness = 0;
1442
Laurent Pinchart43059b02011-09-11 22:59:04 +02001443 return ch->cfg.bl_info.set_brightness(brightness);
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001444}
1445
1446static int sh_mobile_lcdc_get_brightness(struct backlight_device *bdev)
1447{
1448 struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev);
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001449
Laurent Pinchart43059b02011-09-11 22:59:04 +02001450 return ch->cfg.bl_info.get_brightness();
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001451}
1452
1453static int sh_mobile_lcdc_check_fb(struct backlight_device *bdev,
1454 struct fb_info *info)
1455{
1456 return (info->bl_dev == bdev);
1457}
1458
1459static struct backlight_ops sh_mobile_lcdc_bl_ops = {
1460 .options = BL_CORE_SUSPENDRESUME,
1461 .update_status = sh_mobile_lcdc_update_bl,
1462 .get_brightness = sh_mobile_lcdc_get_brightness,
1463 .check_fb = sh_mobile_lcdc_check_fb,
1464};
1465
1466static struct backlight_device *sh_mobile_lcdc_bl_probe(struct device *parent,
1467 struct sh_mobile_lcdc_chan *ch)
1468{
1469 struct backlight_device *bl;
1470
1471 bl = backlight_device_register(ch->cfg.bl_info.name, parent, ch,
1472 &sh_mobile_lcdc_bl_ops, NULL);
Dan Carpenterbeee1f22011-03-21 15:03:13 +00001473 if (IS_ERR(bl)) {
1474 dev_err(parent, "unable to register backlight device: %ld\n",
1475 PTR_ERR(bl));
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001476 return NULL;
1477 }
1478
1479 bl->props.max_brightness = ch->cfg.bl_info.max_brightness;
1480 bl->props.brightness = bl->props.max_brightness;
1481 backlight_update_status(bl);
1482
1483 return bl;
1484}
1485
1486static void sh_mobile_lcdc_bl_remove(struct backlight_device *bdev)
1487{
1488 backlight_device_unregister(bdev);
1489}
1490
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02001491/* -----------------------------------------------------------------------------
1492 * Power management
1493 */
1494
Magnus Damm2feb0752009-03-13 15:36:55 +00001495static int sh_mobile_lcdc_suspend(struct device *dev)
1496{
1497 struct platform_device *pdev = to_platform_device(dev);
1498
1499 sh_mobile_lcdc_stop(platform_get_drvdata(pdev));
1500 return 0;
1501}
1502
1503static int sh_mobile_lcdc_resume(struct device *dev)
1504{
1505 struct platform_device *pdev = to_platform_device(dev);
1506
1507 return sh_mobile_lcdc_start(platform_get_drvdata(pdev));
1508}
1509
Magnus Damm0246c472009-08-14 10:49:08 +00001510static int sh_mobile_lcdc_runtime_suspend(struct device *dev)
1511{
1512 struct platform_device *pdev = to_platform_device(dev);
Laurent Pinchart2427bb22011-07-13 12:13:47 +02001513 struct sh_mobile_lcdc_priv *priv = platform_get_drvdata(pdev);
Magnus Damm0246c472009-08-14 10:49:08 +00001514
1515 /* turn off LCDC hardware */
Laurent Pinchart2427bb22011-07-13 12:13:47 +02001516 lcdc_write(priv, _LDCNT1R, 0);
1517
Magnus Damm0246c472009-08-14 10:49:08 +00001518 return 0;
1519}
1520
1521static int sh_mobile_lcdc_runtime_resume(struct device *dev)
1522{
1523 struct platform_device *pdev = to_platform_device(dev);
Laurent Pinchart2427bb22011-07-13 12:13:47 +02001524 struct sh_mobile_lcdc_priv *priv = platform_get_drvdata(pdev);
Magnus Damm0246c472009-08-14 10:49:08 +00001525
Laurent Pinchart2427bb22011-07-13 12:13:47 +02001526 __sh_mobile_lcdc_start(priv);
Magnus Damm0246c472009-08-14 10:49:08 +00001527
1528 return 0;
1529}
1530
Alexey Dobriyan47145212009-12-14 18:00:08 -08001531static const struct dev_pm_ops sh_mobile_lcdc_dev_pm_ops = {
Magnus Damm2feb0752009-03-13 15:36:55 +00001532 .suspend = sh_mobile_lcdc_suspend,
1533 .resume = sh_mobile_lcdc_resume,
Magnus Damm0246c472009-08-14 10:49:08 +00001534 .runtime_suspend = sh_mobile_lcdc_runtime_suspend,
1535 .runtime_resume = sh_mobile_lcdc_runtime_resume,
Magnus Damm2feb0752009-03-13 15:36:55 +00001536};
1537
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02001538/* -----------------------------------------------------------------------------
1539 * Framebuffer notifier
1540 */
1541
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001542/* locking: called with info->lock held */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001543static int sh_mobile_lcdc_notify(struct notifier_block *nb,
1544 unsigned long action, void *data)
1545{
1546 struct fb_event *event = data;
1547 struct fb_info *info = event->info;
1548 struct sh_mobile_lcdc_chan *ch = info->par;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001549
1550 if (&ch->lcdc->notifier != nb)
Guennadi Liakhovetskibaf16372010-09-03 07:20:08 +00001551 return NOTIFY_DONE;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001552
1553 dev_dbg(info->dev, "%s(): action = %lu, data = %p\n",
1554 __func__, action, event->data);
1555
1556 switch(action) {
1557 case FB_EVENT_SUSPEND:
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +02001558 sh_mobile_lcdc_display_off(ch);
Guennadi Liakhovetskiafe417c2010-09-03 07:20:39 +00001559 sh_mobile_lcdc_stop(ch->lcdc);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001560 break;
1561 case FB_EVENT_RESUME:
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001562 mutex_lock(&ch->open_lock);
1563 sh_mobile_fb_reconfig(info);
1564 mutex_unlock(&ch->open_lock);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001565
Laurent Pinchart37c5dcc2011-09-09 15:45:43 +02001566 sh_mobile_lcdc_display_on(ch);
Guennadi Liakhovetskiebe5e122011-05-05 16:33:40 +00001567 sh_mobile_lcdc_start(ch->lcdc);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001568 }
1569
Guennadi Liakhovetskibaf16372010-09-03 07:20:08 +00001570 return NOTIFY_OK;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001571}
1572
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02001573/* -----------------------------------------------------------------------------
1574 * Probe/remove and driver init/exit
1575 */
1576
Laurent Pinchart217e9c42011-09-07 11:59:00 +02001577static const struct fb_videomode default_720p __devinitconst = {
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02001578 .name = "HDMI 720p",
1579 .xres = 1280,
1580 .yres = 720,
1581
1582 .left_margin = 220,
1583 .right_margin = 110,
1584 .hsync_len = 40,
1585
1586 .upper_margin = 20,
1587 .lower_margin = 5,
1588 .vsync_len = 5,
1589
1590 .pixclock = 13468,
1591 .refresh = 60,
1592 .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
1593};
1594
Laurent Pinchartb4bee692011-08-31 13:00:57 +02001595static int sh_mobile_lcdc_remove(struct platform_device *pdev)
1596{
1597 struct sh_mobile_lcdc_priv *priv = platform_get_drvdata(pdev);
1598 struct fb_info *info;
1599 int i;
1600
1601 fb_unregister_client(&priv->notifier);
1602
1603 for (i = 0; i < ARRAY_SIZE(priv->ch); i++)
1604 if (priv->ch[i].info && priv->ch[i].info->dev)
1605 unregister_framebuffer(priv->ch[i].info);
1606
1607 sh_mobile_lcdc_stop(priv);
1608
1609 for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
Laurent Pinchart9a2985e2011-09-11 22:59:04 +02001610 struct sh_mobile_lcdc_chan *ch = &priv->ch[i];
Laurent Pinchartb4bee692011-08-31 13:00:57 +02001611
Laurent Pinchart9a2985e2011-09-11 22:59:04 +02001612 info = ch->info;
Laurent Pinchartb4bee692011-08-31 13:00:57 +02001613 if (!info || !info->device)
1614 continue;
1615
Laurent Pincharte34d0bb2011-09-18 12:21:17 +02001616 if (ch->tx_dev) {
1617 ch->tx_dev->lcdc = NULL;
Laurent Pinchart9a2985e2011-09-11 22:59:04 +02001618 module_put(ch->cfg.tx_dev->dev.driver->owner);
Laurent Pincharte34d0bb2011-09-18 12:21:17 +02001619 }
Laurent Pinchart9a2985e2011-09-11 22:59:04 +02001620
1621 if (ch->sglist)
1622 vfree(ch->sglist);
Laurent Pinchartb4bee692011-08-31 13:00:57 +02001623
1624 if (info->screen_base)
1625 dma_free_coherent(&pdev->dev, info->fix.smem_len,
Laurent Pinchart9a2985e2011-09-11 22:59:04 +02001626 info->screen_base, ch->dma_handle);
Laurent Pinchartb4bee692011-08-31 13:00:57 +02001627 fb_dealloc_cmap(&info->cmap);
1628 framebuffer_release(info);
1629 }
1630
1631 for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
1632 if (priv->ch[i].bl)
1633 sh_mobile_lcdc_bl_remove(priv->ch[i].bl);
1634 }
1635
Laurent Pinchart4774c122011-09-07 15:47:07 +02001636 if (priv->dot_clk) {
1637 pm_runtime_disable(&pdev->dev);
Laurent Pinchartb4bee692011-08-31 13:00:57 +02001638 clk_put(priv->dot_clk);
Laurent Pinchart4774c122011-09-07 15:47:07 +02001639 }
Laurent Pinchartb4bee692011-08-31 13:00:57 +02001640
1641 if (priv->base)
1642 iounmap(priv->base);
1643
1644 if (priv->irq)
1645 free_irq(priv->irq, priv);
1646 kfree(priv);
1647 return 0;
1648}
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001649
Laurent Pinchart217e9c42011-09-07 11:59:00 +02001650static int __devinit sh_mobile_lcdc_check_interface(struct sh_mobile_lcdc_chan *ch)
Laurent Pinchartf1f60b52011-09-07 11:09:26 +02001651{
1652 int interface_type = ch->cfg.interface_type;
1653
1654 switch (interface_type) {
1655 case RGB8:
1656 case RGB9:
1657 case RGB12A:
1658 case RGB12B:
1659 case RGB16:
1660 case RGB18:
1661 case RGB24:
1662 case SYS8A:
1663 case SYS8B:
1664 case SYS8C:
1665 case SYS8D:
1666 case SYS9:
1667 case SYS12:
1668 case SYS16A:
1669 case SYS16B:
1670 case SYS16C:
1671 case SYS18:
1672 case SYS24:
1673 break;
1674 default:
1675 return -EINVAL;
1676 }
1677
1678 /* SUBLCD only supports SYS interface */
1679 if (lcdc_chan_is_sublcd(ch)) {
1680 if (!(interface_type & LDMT1R_IFM))
1681 return -EINVAL;
1682
1683 interface_type &= ~LDMT1R_IFM;
1684 }
1685
1686 ch->ldmt1r_value = interface_type;
1687 return 0;
1688}
1689
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001690static int __devinit
1691sh_mobile_lcdc_channel_init(struct sh_mobile_lcdc_priv *priv,
1692 struct sh_mobile_lcdc_chan *ch)
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001693{
Laurent Pinchart105784b2011-11-29 15:58:10 +01001694 const struct sh_mobile_lcdc_format_info *format;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001695 struct sh_mobile_lcdc_chan_cfg *cfg = &ch->cfg;
1696 const struct fb_videomode *max_mode;
1697 const struct fb_videomode *mode;
1698 struct fb_var_screeninfo *var;
1699 struct fb_info *info;
1700 unsigned int max_size;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001701 int num_modes;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001702 void *buf;
1703 int ret;
1704 int i;
1705
Laurent Pincharta67472a2011-08-31 13:00:59 +02001706 mutex_init(&ch->open_lock);
Laurent Pinchartecd29942011-09-18 14:14:46 +02001707 ch->notify = sh_mobile_lcdc_display_notify;
Laurent Pincharta67472a2011-08-31 13:00:59 +02001708
Laurent Pinchart105784b2011-11-29 15:58:10 +01001709 /* Validate the format. */
1710 format = sh_mobile_format_info(cfg->fourcc);
1711 if (format == NULL) {
1712 dev_err(priv->dev, "Invalid FOURCC %08x.\n", cfg->fourcc);
1713 return -EINVAL;
1714 }
1715
Laurent Pinchartfc9e78e2011-11-29 16:05:36 +01001716 ch->format = format;
1717
Laurent Pincharta67472a2011-08-31 13:00:59 +02001718 /* Allocate the frame buffer device. */
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001719 ch->info = framebuffer_alloc(0, priv->dev);
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001720 if (!ch->info) {
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001721 dev_err(priv->dev, "unable to allocate fb_info\n");
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001722 return -ENOMEM;
1723 }
1724
1725 info = ch->info;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001726 info->fbops = &sh_mobile_lcdc_ops;
1727 info->par = ch;
Laurent Pincharta67472a2011-08-31 13:00:59 +02001728 info->pseudo_palette = &ch->pseudo_palette;
1729 info->flags = FBINFO_FLAG_DEFAULT;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001730
1731 /* Iterate through the modes to validate them and find the highest
1732 * resolution.
1733 */
1734 max_mode = NULL;
1735 max_size = 0;
1736
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001737 for (i = 0, mode = cfg->lcd_modes; i < cfg->num_modes; i++, mode++) {
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001738 unsigned int size = mode->yres * mode->xres;
1739
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001740 /* NV12/NV21 buffers must have even number of lines */
1741 if ((cfg->fourcc == V4L2_PIX_FMT_NV12 ||
1742 cfg->fourcc == V4L2_PIX_FMT_NV21) && (mode->yres & 0x1)) {
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001743 dev_err(priv->dev, "yres must be multiple of 2 for "
1744 "YCbCr420 mode.\n");
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001745 return -EINVAL;
1746 }
1747
1748 if (size > max_size) {
1749 max_mode = mode;
1750 max_size = size;
1751 }
1752 }
1753
1754 if (!max_size)
1755 max_size = MAX_XRES * MAX_YRES;
1756 else
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001757 dev_dbg(priv->dev, "Found largest videomode %ux%u\n",
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001758 max_mode->xres, max_mode->yres);
1759
Laurent Pincharta67472a2011-08-31 13:00:59 +02001760 /* Create the mode list. */
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001761 if (cfg->lcd_modes == NULL) {
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001762 mode = &default_720p;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001763 num_modes = 1;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001764 } else {
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001765 mode = cfg->lcd_modes;
1766 num_modes = cfg->num_modes;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001767 }
1768
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001769 fb_videomode_to_modelist(mode, num_modes, &info->modelist);
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001770
Laurent Pinchart13f80ee2011-11-29 01:46:12 +01001771 /* Initialize the transmitter device if present. */
1772 if (cfg->tx_dev) {
1773 if (!cfg->tx_dev->dev.driver ||
1774 !try_module_get(cfg->tx_dev->dev.driver->owner)) {
1775 dev_warn(priv->dev,
1776 "unable to get transmitter device\n");
1777 return -EINVAL;
1778 }
1779 ch->tx_dev = platform_get_drvdata(cfg->tx_dev);
1780 ch->tx_dev->lcdc = ch;
1781 ch->tx_dev->def_mode = *mode;
1782 }
1783
Laurent Pincharta67472a2011-08-31 13:00:59 +02001784 /* Initialize variable screen information using the first mode as
1785 * default. The default Y virtual resolution is twice the panel size to
1786 * allow for double-buffering.
1787 */
1788 var = &info->var;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001789 fb_videomode_to_var(var, mode);
Laurent Pinchartafaad832011-09-11 22:59:04 +02001790 var->width = cfg->panel_cfg.width;
1791 var->height = cfg->panel_cfg.height;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001792 var->yres_virtual = var->yres * 2;
1793 var->activate = FB_ACTIVATE_NOW;
1794
Laurent Pinchart105784b2011-11-29 15:58:10 +01001795 /* Use the legacy API by default for RGB formats, and the FOURCC API
1796 * for YUV formats.
1797 */
1798 if (!format->yuv)
1799 var->bits_per_pixel = format->bpp;
1800 else
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001801 var->grayscale = cfg->fourcc;
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001802
1803 /* Make sure the memory size check won't fail. smem_len is initialized
1804 * later based on var.
1805 */
1806 info->fix.smem_len = UINT_MAX;
Laurent Pincharta67472a2011-08-31 13:00:59 +02001807 ret = sh_mobile_check_var(var, info);
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001808 if (ret)
1809 return ret;
1810
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001811 max_size = max_size * var->bits_per_pixel / 8 * 2;
1812
Laurent Pincharta67472a2011-08-31 13:00:59 +02001813 /* Allocate frame buffer memory and color map. */
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001814 buf = dma_alloc_coherent(priv->dev, max_size, &ch->dma_handle,
1815 GFP_KERNEL);
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001816 if (!buf) {
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001817 dev_err(priv->dev, "unable to allocate buffer\n");
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001818 return -ENOMEM;
1819 }
1820
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001821 ret = fb_alloc_cmap(&info->cmap, PALETTE_NR, 0);
1822 if (ret < 0) {
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001823 dev_err(priv->dev, "unable to allocate cmap\n");
1824 dma_free_coherent(priv->dev, max_size, buf, ch->dma_handle);
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001825 return ret;
1826 }
1827
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001828 /* Initialize fixed screen information. Restrict pan to 2 lines steps
1829 * for NV12 and NV21.
1830 */
1831 info->fix = sh_mobile_lcdc_fix;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001832 info->fix.smem_start = ch->dma_handle;
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001833 info->fix.smem_len = max_size;
1834 if (cfg->fourcc == V4L2_PIX_FMT_NV12 ||
1835 cfg->fourcc == V4L2_PIX_FMT_NV21)
1836 info->fix.ypanstep = 2;
1837
Laurent Pinchart105784b2011-11-29 15:58:10 +01001838 if (format->yuv) {
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001839 info->fix.line_length = var->xres;
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001840 info->fix.visual = FB_VISUAL_FOURCC;
1841 } else {
1842 info->fix.line_length = var->xres * var->bits_per_pixel / 8;
1843 info->fix.visual = FB_VISUAL_TRUECOLOR;
1844 }
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001845
1846 info->screen_base = buf;
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001847 info->device = priv->dev;
Laurent Pinchart2d045592011-11-29 13:42:48 +01001848
1849 ch->display.width = cfg->panel_cfg.width;
1850 ch->display.height = cfg->panel_cfg.height;
1851 ch->display.mode = *mode;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001852
1853 return 0;
1854}
1855
Uwe Kleine-Königc2e13032010-02-04 20:56:51 +01001856static int __devinit sh_mobile_lcdc_probe(struct platform_device *pdev)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001857{
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001858 struct sh_mobile_lcdc_info *pdata = pdev->dev.platform_data;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001859 struct sh_mobile_lcdc_priv *priv;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001860 struct resource *res;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001861 int num_channels;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001862 int error;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001863 int i;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001864
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001865 if (!pdata) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001866 dev_err(&pdev->dev, "no platform data defined\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001867 return -EINVAL;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001868 }
1869
1870 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Magnus Damm85645572008-12-19 15:34:41 +09001871 i = platform_get_irq(pdev, 0);
1872 if (!res || i < 0) {
1873 dev_err(&pdev->dev, "cannot get platform resources\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001874 return -ENOENT;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001875 }
1876
1877 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1878 if (!priv) {
1879 dev_err(&pdev->dev, "cannot allocate device data\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001880 return -ENOMEM;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001881 }
1882
Laurent Pinchart4774c122011-09-07 15:47:07 +02001883 priv->dev = &pdev->dev;
1884 priv->meram_dev = pdata->meram_dev;
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001885 platform_set_drvdata(pdev, priv);
1886
Yong Zhangf8798cc2011-09-22 16:59:16 +08001887 error = request_irq(i, sh_mobile_lcdc_irq, 0,
Kay Sievers7ad33e72009-03-24 16:38:21 -07001888 dev_name(&pdev->dev), priv);
Magnus Damm85645572008-12-19 15:34:41 +09001889 if (error) {
1890 dev_err(&pdev->dev, "unable to request irq\n");
1891 goto err1;
1892 }
1893
1894 priv->irq = i;
Guennadi Liakhovetski5ef6b502010-09-03 07:19:57 +00001895 atomic_set(&priv->hw_usecnt, -1);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001896
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001897 for (i = 0, num_channels = 0; i < ARRAY_SIZE(pdata->ch); i++) {
1898 struct sh_mobile_lcdc_chan *ch = priv->ch + num_channels;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001899
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001900 ch->lcdc = priv;
1901 memcpy(&ch->cfg, &pdata->ch[i], sizeof(pdata->ch[i]));
1902
1903 error = sh_mobile_lcdc_check_interface(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001904 if (error) {
1905 dev_err(&pdev->dev, "unsupported interface type\n");
1906 goto err1;
1907 }
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001908 init_waitqueue_head(&ch->frame_end_wait);
1909 init_completion(&ch->vsync_completion);
1910 ch->pan_offset = 0;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001911
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001912 /* probe the backlight is there is one defined */
1913 if (ch->cfg.bl_info.max_brightness)
1914 ch->bl = sh_mobile_lcdc_bl_probe(&pdev->dev, ch);
1915
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001916 switch (pdata->ch[i].chan) {
1917 case LCDC_CHAN_MAINLCD:
Laurent Pinchartce1c0b02011-07-13 12:13:47 +02001918 ch->enabled = LDCNT2R_ME;
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001919 ch->reg_offs = lcdc_offs_mainlcd;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001920 num_channels++;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001921 break;
1922 case LCDC_CHAN_SUBLCD:
Laurent Pinchartce1c0b02011-07-13 12:13:47 +02001923 ch->enabled = LDCNT2R_SE;
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001924 ch->reg_offs = lcdc_offs_sublcd;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001925 num_channels++;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001926 break;
1927 }
1928 }
1929
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001930 if (!num_channels) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001931 dev_err(&pdev->dev, "no channels defined\n");
1932 error = -EINVAL;
1933 goto err1;
1934 }
1935
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001936 /* for dual channel LCDC (MAIN + SUB) force shared format setting */
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001937 if (num_channels == 2)
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001938 priv->forced_fourcc = pdata->ch[0].fourcc;
Magnus Damm417d4822011-01-05 10:21:00 +00001939
Guennadi Liakhovetskidba6f382010-06-30 09:26:35 +00001940 priv->base = ioremap_nocache(res->start, resource_size(res));
1941 if (!priv->base)
1942 goto err1;
1943
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001944 error = sh_mobile_lcdc_setup_clocks(priv, pdata->clock_source);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001945 if (error) {
1946 dev_err(&pdev->dev, "unable to setup clocks\n");
1947 goto err1;
1948 }
1949
Laurent Pinchart4774c122011-09-07 15:47:07 +02001950 /* Enable runtime PM. */
1951 pm_runtime_enable(&pdev->dev);
Damian7caa4342011-05-18 11:10:07 +00001952
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001953 for (i = 0; i < num_channels; i++) {
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001954 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001955
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001956 error = sh_mobile_lcdc_channel_init(priv, ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001957 if (error)
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001958 goto err1;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001959 }
1960
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001961 error = sh_mobile_lcdc_start(priv);
1962 if (error) {
1963 dev_err(&pdev->dev, "unable to start hardware\n");
1964 goto err1;
1965 }
1966
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001967 for (i = 0; i < num_channels; i++) {
Paul Mundt1c6a3072009-07-01 06:50:31 +00001968 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
Laurent Pinchart3ce05592011-08-31 13:00:58 +02001969 struct fb_info *info = ch->info;
Paul Mundt1c6a3072009-07-01 06:50:31 +00001970
1971 if (info->fbdefio) {
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001972 ch->sglist = vmalloc(sizeof(struct scatterlist) *
Paul Mundt1c6a3072009-07-01 06:50:31 +00001973 info->fix.smem_len >> PAGE_SHIFT);
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001974 if (!ch->sglist) {
Paul Mundt1c6a3072009-07-01 06:50:31 +00001975 dev_err(&pdev->dev, "cannot allocate sglist\n");
1976 goto err1;
1977 }
1978 }
1979
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001980 info->bl_dev = ch->bl;
1981
Paul Mundt1c6a3072009-07-01 06:50:31 +00001982 error = register_framebuffer(info);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001983 if (error < 0)
1984 goto err1;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001985
Laurent Pinchart0a7f17a2011-09-07 16:02:31 +02001986 dev_info(&pdev->dev, "registered %s/%s as %dx%d %dbpp.\n",
Laurent Pinchartedd153a2011-12-13 14:02:28 +01001987 pdev->name, (ch->cfg.chan == LCDC_CHAN_MAINLCD) ?
1988 "mainlcd" : "sublcd", info->var.xres, info->var.yres,
1989 info->var.bits_per_pixel);
Magnus Damm85645572008-12-19 15:34:41 +09001990
1991 /* deferred io mode: disable clock to save power */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001992 if (info->fbdefio || info->state == FBINFO_STATE_SUSPENDED)
Magnus Damm85645572008-12-19 15:34:41 +09001993 sh_mobile_lcdc_clk_off(priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001994 }
1995
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001996 /* Failure ignored */
1997 priv->notifier.notifier_call = sh_mobile_lcdc_notify;
1998 fb_register_client(&priv->notifier);
1999
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002000 return 0;
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00002001err1:
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002002 sh_mobile_lcdc_remove(pdev);
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00002003
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002004 return error;
2005}
2006
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002007static struct platform_driver sh_mobile_lcdc_driver = {
2008 .driver = {
2009 .name = "sh_mobile_lcdc_fb",
2010 .owner = THIS_MODULE,
Magnus Damm2feb0752009-03-13 15:36:55 +00002011 .pm = &sh_mobile_lcdc_dev_pm_ops,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002012 },
2013 .probe = sh_mobile_lcdc_probe,
2014 .remove = sh_mobile_lcdc_remove,
2015};
2016
Axel Lin4277f2c2011-11-26 10:25:54 +08002017module_platform_driver(sh_mobile_lcdc_driver);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002018
2019MODULE_DESCRIPTION("SuperH Mobile LCDC Framebuffer driver");
2020MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
2021MODULE_LICENSE("GPL v2");