fbdev: sh_mobile_meram: Remove unneeded sh_mobile_meram.h
[cascardo/linux.git] / drivers / video / sh_mobile_lcdcfb.c
1 /*
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
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/delay.h>
14 #include <linux/mm.h>
15 #include <linux/clk.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/platform_device.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/interrupt.h>
20 #include <linux/vmalloc.h>
21 #include <linux/ioctl.h>
22 #include <linux/slab.h>
23 #include <linux/console.h>
24 #include <linux/backlight.h>
25 #include <linux/gpio.h>
26 #include <video/sh_mobile_lcdc.h>
27 #include <video/sh_mobile_meram.h>
28 #include <linux/atomic.h>
29
30 #include "sh_mobile_lcdcfb.h"
31
32 #define SIDE_B_OFFSET 0x1000
33 #define MIRROR_OFFSET 0x2000
34
35 #define MAX_XRES 1920
36 #define MAX_YRES 1080
37
38 static unsigned long lcdc_offs_mainlcd[NR_CH_REGS] = {
39         [LDDCKPAT1R] = 0x400,
40         [LDDCKPAT2R] = 0x404,
41         [LDMT1R] = 0x418,
42         [LDMT2R] = 0x41c,
43         [LDMT3R] = 0x420,
44         [LDDFR] = 0x424,
45         [LDSM1R] = 0x428,
46         [LDSM2R] = 0x42c,
47         [LDSA1R] = 0x430,
48         [LDSA2R] = 0x434,
49         [LDMLSR] = 0x438,
50         [LDHCNR] = 0x448,
51         [LDHSYNR] = 0x44c,
52         [LDVLNR] = 0x450,
53         [LDVSYNR] = 0x454,
54         [LDPMR] = 0x460,
55         [LDHAJR] = 0x4a0,
56 };
57
58 static unsigned long lcdc_offs_sublcd[NR_CH_REGS] = {
59         [LDDCKPAT1R] = 0x408,
60         [LDDCKPAT2R] = 0x40c,
61         [LDMT1R] = 0x600,
62         [LDMT2R] = 0x604,
63         [LDMT3R] = 0x608,
64         [LDDFR] = 0x60c,
65         [LDSM1R] = 0x610,
66         [LDSM2R] = 0x614,
67         [LDSA1R] = 0x618,
68         [LDMLSR] = 0x620,
69         [LDHCNR] = 0x624,
70         [LDHSYNR] = 0x628,
71         [LDVLNR] = 0x62c,
72         [LDVSYNR] = 0x630,
73         [LDPMR] = 0x63c,
74 };
75
76 static const struct fb_videomode default_720p = {
77         .name = "HDMI 720p",
78         .xres = 1280,
79         .yres = 720,
80
81         .left_margin = 220,
82         .right_margin = 110,
83         .hsync_len = 40,
84
85         .upper_margin = 20,
86         .lower_margin = 5,
87         .vsync_len = 5,
88
89         .pixclock = 13468,
90         .refresh = 60,
91         .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
92 };
93
94 struct sh_mobile_lcdc_priv {
95         void __iomem *base;
96         int irq;
97         atomic_t hw_usecnt;
98         struct device *dev;
99         struct clk *dot_clk;
100         unsigned long lddckr;
101         struct sh_mobile_lcdc_chan ch[2];
102         struct notifier_block notifier;
103         int started;
104         int forced_bpp; /* 2 channel LCDC must share bpp setting */
105         struct sh_mobile_meram_info *meram_dev;
106 };
107
108 static bool banked(int reg_nr)
109 {
110         switch (reg_nr) {
111         case LDMT1R:
112         case LDMT2R:
113         case LDMT3R:
114         case LDDFR:
115         case LDSM1R:
116         case LDSA1R:
117         case LDSA2R:
118         case LDMLSR:
119         case LDHCNR:
120         case LDHSYNR:
121         case LDVLNR:
122         case LDVSYNR:
123                 return true;
124         }
125         return false;
126 }
127
128 static void lcdc_write_chan(struct sh_mobile_lcdc_chan *chan,
129                             int reg_nr, unsigned long data)
130 {
131         iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr]);
132         if (banked(reg_nr))
133                 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
134                           SIDE_B_OFFSET);
135 }
136
137 static void lcdc_write_chan_mirror(struct sh_mobile_lcdc_chan *chan,
138                             int reg_nr, unsigned long data)
139 {
140         iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
141                   MIRROR_OFFSET);
142 }
143
144 static unsigned long lcdc_read_chan(struct sh_mobile_lcdc_chan *chan,
145                                     int reg_nr)
146 {
147         return ioread32(chan->lcdc->base + chan->reg_offs[reg_nr]);
148 }
149
150 static void lcdc_write(struct sh_mobile_lcdc_priv *priv,
151                        unsigned long reg_offs, unsigned long data)
152 {
153         iowrite32(data, priv->base + reg_offs);
154 }
155
156 static unsigned long lcdc_read(struct sh_mobile_lcdc_priv *priv,
157                                unsigned long reg_offs)
158 {
159         return ioread32(priv->base + reg_offs);
160 }
161
162 static void lcdc_wait_bit(struct sh_mobile_lcdc_priv *priv,
163                           unsigned long reg_offs,
164                           unsigned long mask, unsigned long until)
165 {
166         while ((lcdc_read(priv, reg_offs) & mask) != until)
167                 cpu_relax();
168 }
169
170 static int lcdc_chan_is_sublcd(struct sh_mobile_lcdc_chan *chan)
171 {
172         return chan->cfg.chan == LCDC_CHAN_SUBLCD;
173 }
174
175 static void lcdc_sys_write_index(void *handle, unsigned long data)
176 {
177         struct sh_mobile_lcdc_chan *ch = handle;
178
179         lcdc_write(ch->lcdc, _LDDWD0R, data | LDDWDxR_WDACT);
180         lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
181         lcdc_write(ch->lcdc, _LDDWAR, LDDWAR_WA |
182                    (lcdc_chan_is_sublcd(ch) ? 2 : 0));
183         lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
184 }
185
186 static void lcdc_sys_write_data(void *handle, unsigned long data)
187 {
188         struct sh_mobile_lcdc_chan *ch = handle;
189
190         lcdc_write(ch->lcdc, _LDDWD0R, data | LDDWDxR_WDACT | LDDWDxR_RSW);
191         lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
192         lcdc_write(ch->lcdc, _LDDWAR, LDDWAR_WA |
193                    (lcdc_chan_is_sublcd(ch) ? 2 : 0));
194         lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
195 }
196
197 static unsigned long lcdc_sys_read_data(void *handle)
198 {
199         struct sh_mobile_lcdc_chan *ch = handle;
200
201         lcdc_write(ch->lcdc, _LDDRDR, LDDRDR_RSR);
202         lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
203         lcdc_write(ch->lcdc, _LDDRAR, LDDRAR_RA |
204                    (lcdc_chan_is_sublcd(ch) ? 2 : 0));
205         udelay(1);
206         lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
207
208         return lcdc_read(ch->lcdc, _LDDRDR) & LDDRDR_DRD_MASK;
209 }
210
211 struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops = {
212         lcdc_sys_write_index,
213         lcdc_sys_write_data,
214         lcdc_sys_read_data,
215 };
216
217 static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv *priv)
218 {
219         if (atomic_inc_and_test(&priv->hw_usecnt)) {
220                 if (priv->dot_clk)
221                         clk_enable(priv->dot_clk);
222                 pm_runtime_get_sync(priv->dev);
223                 if (priv->meram_dev && priv->meram_dev->pdev)
224                         pm_runtime_get_sync(&priv->meram_dev->pdev->dev);
225         }
226 }
227
228 static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv *priv)
229 {
230         if (atomic_sub_return(1, &priv->hw_usecnt) == -1) {
231                 if (priv->meram_dev && priv->meram_dev->pdev)
232                         pm_runtime_put_sync(&priv->meram_dev->pdev->dev);
233                 pm_runtime_put(priv->dev);
234                 if (priv->dot_clk)
235                         clk_disable(priv->dot_clk);
236         }
237 }
238
239 static int sh_mobile_lcdc_sginit(struct fb_info *info,
240                                   struct list_head *pagelist)
241 {
242         struct sh_mobile_lcdc_chan *ch = info->par;
243         unsigned int nr_pages_max = info->fix.smem_len >> PAGE_SHIFT;
244         struct page *page;
245         int nr_pages = 0;
246
247         sg_init_table(ch->sglist, nr_pages_max);
248
249         list_for_each_entry(page, pagelist, lru)
250                 sg_set_page(&ch->sglist[nr_pages++], page, PAGE_SIZE, 0);
251
252         return nr_pages;
253 }
254
255 static void sh_mobile_lcdc_deferred_io(struct fb_info *info,
256                                        struct list_head *pagelist)
257 {
258         struct sh_mobile_lcdc_chan *ch = info->par;
259         struct sh_mobile_lcdc_board_cfg *bcfg = &ch->cfg.board_cfg;
260
261         /* enable clocks before accessing hardware */
262         sh_mobile_lcdc_clk_on(ch->lcdc);
263
264         /*
265          * It's possible to get here without anything on the pagelist via
266          * sh_mobile_lcdc_deferred_io_touch() or via a userspace fsync()
267          * invocation. In the former case, the acceleration routines are
268          * stepped in to when using the framebuffer console causing the
269          * workqueue to be scheduled without any dirty pages on the list.
270          *
271          * Despite this, a panel update is still needed given that the
272          * acceleration routines have their own methods for writing in
273          * that still need to be updated.
274          *
275          * The fsync() and empty pagelist case could be optimized for,
276          * but we don't bother, as any application exhibiting such
277          * behaviour is fundamentally broken anyways.
278          */
279         if (!list_empty(pagelist)) {
280                 unsigned int nr_pages = sh_mobile_lcdc_sginit(info, pagelist);
281
282                 /* trigger panel update */
283                 dma_map_sg(info->dev, ch->sglist, nr_pages, DMA_TO_DEVICE);
284                 if (bcfg->start_transfer)
285                         bcfg->start_transfer(bcfg->board_data, ch,
286                                              &sh_mobile_lcdc_sys_bus_ops);
287                 lcdc_write_chan(ch, LDSM2R, LDSM2R_OSTRG);
288                 dma_unmap_sg(info->dev, ch->sglist, nr_pages, DMA_TO_DEVICE);
289         } else {
290                 if (bcfg->start_transfer)
291                         bcfg->start_transfer(bcfg->board_data, ch,
292                                              &sh_mobile_lcdc_sys_bus_ops);
293                 lcdc_write_chan(ch, LDSM2R, LDSM2R_OSTRG);
294         }
295 }
296
297 static void sh_mobile_lcdc_deferred_io_touch(struct fb_info *info)
298 {
299         struct fb_deferred_io *fbdefio = info->fbdefio;
300
301         if (fbdefio)
302                 schedule_delayed_work(&info->deferred_work, fbdefio->delay);
303 }
304
305 static irqreturn_t sh_mobile_lcdc_irq(int irq, void *data)
306 {
307         struct sh_mobile_lcdc_priv *priv = data;
308         struct sh_mobile_lcdc_chan *ch;
309         unsigned long ldintr;
310         int is_sub;
311         int k;
312
313         /* Acknowledge interrupts and disable further VSYNC End IRQs. */
314         ldintr = lcdc_read(priv, _LDINTR);
315         lcdc_write(priv, _LDINTR, (ldintr ^ LDINTR_STATUS_MASK) & ~LDINTR_VEE);
316
317         /* figure out if this interrupt is for main or sub lcd */
318         is_sub = (lcdc_read(priv, _LDSR) & LDSR_MSS) ? 1 : 0;
319
320         /* wake up channel and disable clocks */
321         for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
322                 ch = &priv->ch[k];
323
324                 if (!ch->enabled)
325                         continue;
326
327                 /* Frame End */
328                 if (ldintr & LDINTR_FS) {
329                         if (is_sub == lcdc_chan_is_sublcd(ch)) {
330                                 ch->frame_end = 1;
331                                 wake_up(&ch->frame_end_wait);
332
333                                 sh_mobile_lcdc_clk_off(priv);
334                         }
335                 }
336
337                 /* VSYNC End */
338                 if (ldintr & LDINTR_VES)
339                         complete(&ch->vsync_completion);
340         }
341
342         return IRQ_HANDLED;
343 }
344
345 static void sh_mobile_lcdc_start_stop(struct sh_mobile_lcdc_priv *priv,
346                                       int start)
347 {
348         unsigned long tmp = lcdc_read(priv, _LDCNT2R);
349         int k;
350
351         /* start or stop the lcdc */
352         if (start)
353                 lcdc_write(priv, _LDCNT2R, tmp | LDCNT2R_DO);
354         else
355                 lcdc_write(priv, _LDCNT2R, tmp & ~LDCNT2R_DO);
356
357         /* wait until power is applied/stopped on all channels */
358         for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
359                 if (lcdc_read(priv, _LDCNT2R) & priv->ch[k].enabled)
360                         while (1) {
361                                 tmp = lcdc_read_chan(&priv->ch[k], LDPMR)
362                                     & LDPMR_LPS;
363                                 if (start && tmp == LDPMR_LPS)
364                                         break;
365                                 if (!start && tmp == 0)
366                                         break;
367                                 cpu_relax();
368                         }
369
370         if (!start)
371                 lcdc_write(priv, _LDDCKSTPR, 1); /* stop dotclock */
372 }
373
374 static void sh_mobile_lcdc_geometry(struct sh_mobile_lcdc_chan *ch)
375 {
376         struct fb_var_screeninfo *var = &ch->info->var, *display_var = &ch->display_var;
377         unsigned long h_total, hsync_pos, display_h_total;
378         u32 tmp;
379
380         tmp = ch->ldmt1r_value;
381         tmp |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? 0 : LDMT1R_VPOL;
382         tmp |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? 0 : LDMT1R_HPOL;
383         tmp |= (ch->cfg.flags & LCDC_FLAGS_DWPOL) ? LDMT1R_DWPOL : 0;
384         tmp |= (ch->cfg.flags & LCDC_FLAGS_DIPOL) ? LDMT1R_DIPOL : 0;
385         tmp |= (ch->cfg.flags & LCDC_FLAGS_DAPOL) ? LDMT1R_DAPOL : 0;
386         tmp |= (ch->cfg.flags & LCDC_FLAGS_HSCNT) ? LDMT1R_HSCNT : 0;
387         tmp |= (ch->cfg.flags & LCDC_FLAGS_DWCNT) ? LDMT1R_DWCNT : 0;
388         lcdc_write_chan(ch, LDMT1R, tmp);
389
390         /* setup SYS bus */
391         lcdc_write_chan(ch, LDMT2R, ch->cfg.sys_bus_cfg.ldmt2r);
392         lcdc_write_chan(ch, LDMT3R, ch->cfg.sys_bus_cfg.ldmt3r);
393
394         /* horizontal configuration */
395         h_total = display_var->xres + display_var->hsync_len +
396                 display_var->left_margin + display_var->right_margin;
397         tmp = h_total / 8; /* HTCN */
398         tmp |= (min(display_var->xres, var->xres) / 8) << 16; /* HDCN */
399         lcdc_write_chan(ch, LDHCNR, tmp);
400
401         hsync_pos = display_var->xres + display_var->right_margin;
402         tmp = hsync_pos / 8; /* HSYNP */
403         tmp |= (display_var->hsync_len / 8) << 16; /* HSYNW */
404         lcdc_write_chan(ch, LDHSYNR, tmp);
405
406         /* vertical configuration */
407         tmp = display_var->yres + display_var->vsync_len +
408                 display_var->upper_margin + display_var->lower_margin; /* VTLN */
409         tmp |= min(display_var->yres, var->yres) << 16; /* VDLN */
410         lcdc_write_chan(ch, LDVLNR, tmp);
411
412         tmp = display_var->yres + display_var->lower_margin; /* VSYNP */
413         tmp |= display_var->vsync_len << 16; /* VSYNW */
414         lcdc_write_chan(ch, LDVSYNR, tmp);
415
416         /* Adjust horizontal synchronisation for HDMI */
417         display_h_total = display_var->xres + display_var->hsync_len +
418                 display_var->left_margin + display_var->right_margin;
419         tmp = ((display_var->xres & 7) << 24) |
420                 ((display_h_total & 7) << 16) |
421                 ((display_var->hsync_len & 7) << 8) |
422                 hsync_pos;
423         lcdc_write_chan(ch, LDHAJR, tmp);
424 }
425
426 /*
427  * __sh_mobile_lcdc_start - Configure and tart the LCDC
428  * @priv: LCDC device
429  *
430  * Configure all enabled channels and start the LCDC device. All external
431  * devices (clocks, MERAM, panels, ...) are not touched by this function.
432  */
433 static void __sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv *priv)
434 {
435         struct sh_mobile_lcdc_chan *ch;
436         unsigned long tmp;
437         int bpp = 0;
438         int k, m;
439
440         /* Enable LCDC channels. Read data from external memory, avoid using the
441          * BEU for now.
442          */
443         lcdc_write(priv, _LDCNT2R, priv->ch[0].enabled | priv->ch[1].enabled);
444
445         /* Stop the LCDC first and disable all interrupts. */
446         sh_mobile_lcdc_start_stop(priv, 0);
447         lcdc_write(priv, _LDINTR, 0);
448
449         /* Configure power supply, dot clocks and start them. */
450         tmp = priv->lddckr;
451         for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
452                 ch = &priv->ch[k];
453                 if (!ch->enabled)
454                         continue;
455
456                 if (!bpp)
457                         bpp = ch->info->var.bits_per_pixel;
458
459                 /* Power supply */
460                 lcdc_write_chan(ch, LDPMR, 0);
461
462                 m = ch->cfg.clock_divider;
463                 if (!m)
464                         continue;
465
466                 /* FIXME: sh7724 can only use 42, 48, 54 and 60 for the divider
467                  * denominator.
468                  */
469                 lcdc_write_chan(ch, LDDCKPAT1R, 0);
470                 lcdc_write_chan(ch, LDDCKPAT2R, (1 << (m/2)) - 1);
471
472                 if (m == 1)
473                         m = LDDCKR_MOSEL;
474                 tmp |= m << (lcdc_chan_is_sublcd(ch) ? 8 : 0);
475         }
476
477         lcdc_write(priv, _LDDCKR, tmp);
478         lcdc_write(priv, _LDDCKSTPR, 0);
479         lcdc_wait_bit(priv, _LDDCKSTPR, ~0, 0);
480
481         /* Setup geometry, format, frame buffer memory and operation mode. */
482         for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
483                 ch = &priv->ch[k];
484                 if (!ch->enabled)
485                         continue;
486
487                 sh_mobile_lcdc_geometry(ch);
488
489                 if (ch->info->var.nonstd) {
490                         tmp = (ch->info->var.nonstd << 16);
491                         switch (ch->info->var.bits_per_pixel) {
492                         case 12:
493                                 tmp |= LDDFR_YF_420;
494                                 break;
495                         case 16:
496                                 tmp |= LDDFR_YF_422;
497                                 break;
498                         case 24:
499                         default:
500                                 tmp |= LDDFR_YF_444;
501                                 break;
502                         }
503                 } else {
504                         switch (ch->info->var.bits_per_pixel) {
505                         case 16:
506                                 tmp = LDDFR_PKF_RGB16;
507                                 break;
508                         case 24:
509                                 tmp = LDDFR_PKF_RGB24;
510                                 break;
511                         case 32:
512                         default:
513                                 tmp = LDDFR_PKF_ARGB32;
514                                 break;
515                         }
516                 }
517
518                 lcdc_write_chan(ch, LDDFR, tmp);
519                 lcdc_write_chan(ch, LDMLSR, ch->pitch);
520                 lcdc_write_chan(ch, LDSA1R, ch->base_addr_y);
521                 if (ch->info->var.nonstd)
522                         lcdc_write_chan(ch, LDSA2R, ch->base_addr_c);
523
524                 /* When using deferred I/O mode, configure the LCDC for one-shot
525                  * operation and enable the frame end interrupt. Otherwise use
526                  * continuous read mode.
527                  */
528                 if (ch->ldmt1r_value & LDMT1R_IFM &&
529                     ch->cfg.sys_bus_cfg.deferred_io_msec) {
530                         lcdc_write_chan(ch, LDSM1R, LDSM1R_OS);
531                         lcdc_write(priv, _LDINTR, LDINTR_FE);
532                 } else {
533                         lcdc_write_chan(ch, LDSM1R, 0);
534                 }
535         }
536
537         /* Word and long word swap. */
538         if  (priv->ch[0].info->var.nonstd)
539                 tmp = LDDDSR_LS | LDDDSR_WS | LDDDSR_BS;
540         else {
541                 switch (bpp) {
542                 case 16:
543                         tmp = LDDDSR_LS | LDDDSR_WS;
544                         break;
545                 case 24:
546                         tmp = LDDDSR_LS | LDDDSR_WS | LDDDSR_BS;
547                         break;
548                 case 32:
549                 default:
550                         tmp = LDDDSR_LS;
551                         break;
552                 }
553         }
554         lcdc_write(priv, _LDDDSR, tmp);
555
556         /* Enable the display output. */
557         lcdc_write(priv, _LDCNT1R, LDCNT1R_DE);
558         sh_mobile_lcdc_start_stop(priv, 1);
559         priv->started = 1;
560 }
561
562 static int sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv *priv)
563 {
564         struct sh_mobile_meram_info *mdev = priv->meram_dev;
565         struct sh_mobile_lcdc_board_cfg *board_cfg;
566         struct sh_mobile_lcdc_chan *ch;
567         unsigned long tmp;
568         int ret;
569         int k;
570
571         /* enable clocks before accessing the hardware */
572         for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
573                 if (priv->ch[k].enabled)
574                         sh_mobile_lcdc_clk_on(priv);
575         }
576
577         /* reset */
578         lcdc_write(priv, _LDCNT2R, lcdc_read(priv, _LDCNT2R) | LDCNT2R_BR);
579         lcdc_wait_bit(priv, _LDCNT2R, LDCNT2R_BR, 0);
580
581         for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
582                 ch = &priv->ch[k];
583
584                 if (!ch->enabled)
585                         continue;
586
587                 board_cfg = &ch->cfg.board_cfg;
588                 if (board_cfg->setup_sys) {
589                         ret = board_cfg->setup_sys(board_cfg->board_data, ch,
590                                                    &sh_mobile_lcdc_sys_bus_ops);
591                         if (ret)
592                                 return ret;
593                 }
594         }
595
596         /* Compute frame buffer base address and pitch for each channel. */
597         for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
598                 struct sh_mobile_meram_cfg *cfg;
599                 int pixelformat;
600
601                 ch = &priv->ch[k];
602                 if (!ch->enabled)
603                         continue;
604
605                 ch->base_addr_y = ch->info->fix.smem_start;
606                 ch->base_addr_c = ch->base_addr_y
607                                 + ch->info->var.xres
608                                 * ch->info->var.yres_virtual;
609                 ch->pitch = ch->info->fix.line_length;
610
611                 /* Enable MERAM if possible. */
612                 cfg = ch->cfg.meram_cfg;
613                 if (mdev == NULL || mdev->ops == NULL || cfg == NULL)
614                         continue;
615
616                 /* we need to de-init configured ICBs before we can
617                  * re-initialize them.
618                  */
619                 if (ch->meram_enabled) {
620                         mdev->ops->meram_unregister(mdev, cfg);
621                         ch->meram_enabled = 0;
622                 }
623
624                 if (!ch->info->var.nonstd)
625                         pixelformat = SH_MOBILE_MERAM_PF_RGB;
626                 else if (ch->info->var.bits_per_pixel == 24)
627                         pixelformat = SH_MOBILE_MERAM_PF_NV24;
628                 else
629                         pixelformat = SH_MOBILE_MERAM_PF_NV;
630
631                 ret = mdev->ops->meram_register(mdev, cfg, ch->pitch,
632                                         ch->info->var.yres, pixelformat,
633                                         ch->base_addr_y, ch->base_addr_c,
634                                         &ch->base_addr_y, &ch->base_addr_c,
635                                         &ch->pitch);
636                 if (!ret)
637                         ch->meram_enabled = 1;
638         }
639
640         /* Start the LCDC. */
641         __sh_mobile_lcdc_start(priv);
642
643         /* Setup deferred I/O, tell the board code to enable the panels, and
644          * turn backlight on.
645          */
646         for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
647                 ch = &priv->ch[k];
648                 if (!ch->enabled)
649                         continue;
650
651                 tmp = ch->cfg.sys_bus_cfg.deferred_io_msec;
652                 if (ch->ldmt1r_value & LDMT1R_IFM && tmp) {
653                         ch->defio.deferred_io = sh_mobile_lcdc_deferred_io;
654                         ch->defio.delay = msecs_to_jiffies(tmp);
655                         ch->info->fbdefio = &ch->defio;
656                         fb_deferred_io_init(ch->info);
657                 }
658
659                 board_cfg = &ch->cfg.board_cfg;
660                 if (board_cfg->display_on && try_module_get(board_cfg->owner)) {
661                         board_cfg->display_on(board_cfg->board_data, ch->info);
662                         module_put(board_cfg->owner);
663                 }
664
665                 if (ch->bl) {
666                         ch->bl->props.power = FB_BLANK_UNBLANK;
667                         backlight_update_status(ch->bl);
668                 }
669         }
670
671         return 0;
672 }
673
674 static void sh_mobile_lcdc_stop(struct sh_mobile_lcdc_priv *priv)
675 {
676         struct sh_mobile_lcdc_chan *ch;
677         struct sh_mobile_lcdc_board_cfg *board_cfg;
678         int k;
679
680         /* clean up deferred io and ask board code to disable panel */
681         for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
682                 ch = &priv->ch[k];
683                 if (!ch->enabled)
684                         continue;
685
686                 /* deferred io mode:
687                  * flush frame, and wait for frame end interrupt
688                  * clean up deferred io and enable clock
689                  */
690                 if (ch->info && ch->info->fbdefio) {
691                         ch->frame_end = 0;
692                         schedule_delayed_work(&ch->info->deferred_work, 0);
693                         wait_event(ch->frame_end_wait, ch->frame_end);
694                         fb_deferred_io_cleanup(ch->info);
695                         ch->info->fbdefio = NULL;
696                         sh_mobile_lcdc_clk_on(priv);
697                 }
698
699                 if (ch->bl) {
700                         ch->bl->props.power = FB_BLANK_POWERDOWN;
701                         backlight_update_status(ch->bl);
702                 }
703
704                 board_cfg = &ch->cfg.board_cfg;
705                 if (board_cfg->display_off && try_module_get(board_cfg->owner)) {
706                         board_cfg->display_off(board_cfg->board_data);
707                         module_put(board_cfg->owner);
708                 }
709
710                 /* disable the meram */
711                 if (ch->meram_enabled) {
712                         struct sh_mobile_meram_cfg *cfg;
713                         struct sh_mobile_meram_info *mdev;
714                         cfg = ch->cfg.meram_cfg;
715                         mdev = priv->meram_dev;
716                         mdev->ops->meram_unregister(mdev, cfg);
717                         ch->meram_enabled = 0;
718                 }
719
720         }
721
722         /* stop the lcdc */
723         if (priv->started) {
724                 sh_mobile_lcdc_start_stop(priv, 0);
725                 priv->started = 0;
726         }
727
728         /* stop clocks */
729         for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
730                 if (priv->ch[k].enabled)
731                         sh_mobile_lcdc_clk_off(priv);
732 }
733
734 static int sh_mobile_lcdc_check_interface(struct sh_mobile_lcdc_chan *ch)
735 {
736         int interface_type = ch->cfg.interface_type;
737
738         switch (interface_type) {
739         case RGB8:
740         case RGB9:
741         case RGB12A:
742         case RGB12B:
743         case RGB16:
744         case RGB18:
745         case RGB24:
746         case SYS8A:
747         case SYS8B:
748         case SYS8C:
749         case SYS8D:
750         case SYS9:
751         case SYS12:
752         case SYS16A:
753         case SYS16B:
754         case SYS16C:
755         case SYS18:
756         case SYS24:
757                 break;
758         default:
759                 return -EINVAL;
760         }
761
762         /* SUBLCD only supports SYS interface */
763         if (lcdc_chan_is_sublcd(ch)) {
764                 if (!(interface_type & LDMT1R_IFM))
765                         return -EINVAL;
766
767                 interface_type &= ~LDMT1R_IFM;
768         }
769
770         ch->ldmt1r_value = interface_type;
771         return 0;
772 }
773
774 static int sh_mobile_lcdc_setup_clocks(struct platform_device *pdev,
775                                        int clock_source,
776                                        struct sh_mobile_lcdc_priv *priv)
777 {
778         char *str;
779
780         switch (clock_source) {
781         case LCDC_CLK_BUS:
782                 str = "bus_clk";
783                 priv->lddckr = LDDCKR_ICKSEL_BUS;
784                 break;
785         case LCDC_CLK_PERIPHERAL:
786                 str = "peripheral_clk";
787                 priv->lddckr = LDDCKR_ICKSEL_MIPI;
788                 break;
789         case LCDC_CLK_EXTERNAL:
790                 str = NULL;
791                 priv->lddckr = LDDCKR_ICKSEL_HDMI;
792                 break;
793         default:
794                 return -EINVAL;
795         }
796
797         if (str) {
798                 priv->dot_clk = clk_get(&pdev->dev, str);
799                 if (IS_ERR(priv->dot_clk)) {
800                         dev_err(&pdev->dev, "cannot get dot clock %s\n", str);
801                         return PTR_ERR(priv->dot_clk);
802                 }
803         }
804
805         /* Runtime PM support involves two step for this driver:
806          * 1) Enable Runtime PM
807          * 2) Force Runtime PM Resume since hardware is accessed from probe()
808          */
809         priv->dev = &pdev->dev;
810         pm_runtime_enable(priv->dev);
811         pm_runtime_resume(priv->dev);
812         return 0;
813 }
814
815 static int sh_mobile_lcdc_setcolreg(u_int regno,
816                                     u_int red, u_int green, u_int blue,
817                                     u_int transp, struct fb_info *info)
818 {
819         u32 *palette = info->pseudo_palette;
820
821         if (regno >= PALETTE_NR)
822                 return -EINVAL;
823
824         /* only FB_VISUAL_TRUECOLOR supported */
825
826         red >>= 16 - info->var.red.length;
827         green >>= 16 - info->var.green.length;
828         blue >>= 16 - info->var.blue.length;
829         transp >>= 16 - info->var.transp.length;
830
831         palette[regno] = (red << info->var.red.offset) |
832           (green << info->var.green.offset) |
833           (blue << info->var.blue.offset) |
834           (transp << info->var.transp.offset);
835
836         return 0;
837 }
838
839 static struct fb_fix_screeninfo sh_mobile_lcdc_fix  = {
840         .id =           "SH Mobile LCDC",
841         .type =         FB_TYPE_PACKED_PIXELS,
842         .visual =       FB_VISUAL_TRUECOLOR,
843         .accel =        FB_ACCEL_NONE,
844         .xpanstep =     0,
845         .ypanstep =     1,
846         .ywrapstep =    0,
847 };
848
849 static void sh_mobile_lcdc_fillrect(struct fb_info *info,
850                                     const struct fb_fillrect *rect)
851 {
852         sys_fillrect(info, rect);
853         sh_mobile_lcdc_deferred_io_touch(info);
854 }
855
856 static void sh_mobile_lcdc_copyarea(struct fb_info *info,
857                                     const struct fb_copyarea *area)
858 {
859         sys_copyarea(info, area);
860         sh_mobile_lcdc_deferred_io_touch(info);
861 }
862
863 static void sh_mobile_lcdc_imageblit(struct fb_info *info,
864                                      const struct fb_image *image)
865 {
866         sys_imageblit(info, image);
867         sh_mobile_lcdc_deferred_io_touch(info);
868 }
869
870 static int sh_mobile_fb_pan_display(struct fb_var_screeninfo *var,
871                                      struct fb_info *info)
872 {
873         struct sh_mobile_lcdc_chan *ch = info->par;
874         struct sh_mobile_lcdc_priv *priv = ch->lcdc;
875         unsigned long ldrcntr;
876         unsigned long new_pan_offset;
877         unsigned long base_addr_y, base_addr_c;
878         unsigned long c_offset;
879
880         if (!var->nonstd)
881                 new_pan_offset = (var->yoffset * info->fix.line_length) +
882                         (var->xoffset * (info->var.bits_per_pixel / 8));
883         else
884                 new_pan_offset = (var->yoffset * info->fix.line_length) +
885                         (var->xoffset);
886
887         if (new_pan_offset == ch->pan_offset)
888                 return 0;       /* No change, do nothing */
889
890         ldrcntr = lcdc_read(priv, _LDRCNTR);
891
892         /* Set the source address for the next refresh */
893         base_addr_y = ch->dma_handle + new_pan_offset;
894         if (var->nonstd) {
895                 /* Set y offset */
896                 c_offset = (var->yoffset *
897                         info->fix.line_length *
898                         (info->var.bits_per_pixel - 8)) / 8;
899                 base_addr_c = ch->dma_handle + var->xres * var->yres_virtual +
900                         c_offset;
901                 /* Set x offset */
902                 if (info->var.bits_per_pixel == 24)
903                         base_addr_c += 2 * var->xoffset;
904                 else
905                         base_addr_c += var->xoffset;
906         }
907
908         if (ch->meram_enabled) {
909                 struct sh_mobile_meram_cfg *cfg;
910                 struct sh_mobile_meram_info *mdev;
911                 int ret;
912
913                 cfg = ch->cfg.meram_cfg;
914                 mdev = priv->meram_dev;
915                 ret = mdev->ops->meram_update(mdev, cfg,
916                                         base_addr_y, base_addr_c,
917                                         &base_addr_y, &base_addr_c);
918                 if (ret)
919                         return ret;
920         }
921
922         ch->base_addr_y = base_addr_y;
923         ch->base_addr_c = base_addr_c;
924
925         lcdc_write_chan_mirror(ch, LDSA1R, base_addr_y);
926         if (var->nonstd)
927                 lcdc_write_chan_mirror(ch, LDSA2R, base_addr_c);
928
929         if (lcdc_chan_is_sublcd(ch))
930                 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_SRS);
931         else
932                 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_MRS);
933
934         ch->pan_offset = new_pan_offset;
935
936         sh_mobile_lcdc_deferred_io_touch(info);
937
938         return 0;
939 }
940
941 static int sh_mobile_wait_for_vsync(struct fb_info *info)
942 {
943         struct sh_mobile_lcdc_chan *ch = info->par;
944         unsigned long ldintr;
945         int ret;
946
947         /* Enable VSync End interrupt and be careful not to acknowledge any
948          * pending interrupt.
949          */
950         ldintr = lcdc_read(ch->lcdc, _LDINTR);
951         ldintr |= LDINTR_VEE | LDINTR_STATUS_MASK;
952         lcdc_write(ch->lcdc, _LDINTR, ldintr);
953
954         ret = wait_for_completion_interruptible_timeout(&ch->vsync_completion,
955                                                         msecs_to_jiffies(100));
956         if (!ret)
957                 return -ETIMEDOUT;
958
959         return 0;
960 }
961
962 static int sh_mobile_ioctl(struct fb_info *info, unsigned int cmd,
963                        unsigned long arg)
964 {
965         int retval;
966
967         switch (cmd) {
968         case FBIO_WAITFORVSYNC:
969                 retval = sh_mobile_wait_for_vsync(info);
970                 break;
971
972         default:
973                 retval = -ENOIOCTLCMD;
974                 break;
975         }
976         return retval;
977 }
978
979 static void sh_mobile_fb_reconfig(struct fb_info *info)
980 {
981         struct sh_mobile_lcdc_chan *ch = info->par;
982         struct fb_videomode mode1, mode2;
983         struct fb_event event;
984         int evnt = FB_EVENT_MODE_CHANGE_ALL;
985
986         if (ch->use_count > 1 || (ch->use_count == 1 && !info->fbcon_par))
987                 /* More framebuffer users are active */
988                 return;
989
990         fb_var_to_videomode(&mode1, &ch->display_var);
991         fb_var_to_videomode(&mode2, &info->var);
992
993         if (fb_mode_is_equal(&mode1, &mode2))
994                 return;
995
996         /* Display has been re-plugged, framebuffer is free now, reconfigure */
997         if (fb_set_var(info, &ch->display_var) < 0)
998                 /* Couldn't reconfigure, hopefully, can continue as before */
999                 return;
1000
1001         if (info->var.nonstd)
1002                 info->fix.line_length = mode1.xres;
1003         else
1004                 info->fix.line_length = mode1.xres * (ch->cfg.bpp / 8);
1005
1006         /*
1007          * fb_set_var() calls the notifier change internally, only if
1008          * FBINFO_MISC_USEREVENT flag is set. Since we do not want to fake a
1009          * user event, we have to call the chain ourselves.
1010          */
1011         event.info = info;
1012         event.data = &mode1;
1013         fb_notifier_call_chain(evnt, &event);
1014 }
1015
1016 /*
1017  * Locking: both .fb_release() and .fb_open() are called with info->lock held if
1018  * user == 1, or with console sem held, if user == 0.
1019  */
1020 static int sh_mobile_release(struct fb_info *info, int user)
1021 {
1022         struct sh_mobile_lcdc_chan *ch = info->par;
1023
1024         mutex_lock(&ch->open_lock);
1025         dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
1026
1027         ch->use_count--;
1028
1029         /* Nothing to reconfigure, when called from fbcon */
1030         if (user) {
1031                 console_lock();
1032                 sh_mobile_fb_reconfig(info);
1033                 console_unlock();
1034         }
1035
1036         mutex_unlock(&ch->open_lock);
1037
1038         return 0;
1039 }
1040
1041 static int sh_mobile_open(struct fb_info *info, int user)
1042 {
1043         struct sh_mobile_lcdc_chan *ch = info->par;
1044
1045         mutex_lock(&ch->open_lock);
1046         ch->use_count++;
1047
1048         dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
1049         mutex_unlock(&ch->open_lock);
1050
1051         return 0;
1052 }
1053
1054 static int sh_mobile_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
1055 {
1056         struct sh_mobile_lcdc_chan *ch = info->par;
1057         struct sh_mobile_lcdc_priv *p = ch->lcdc;
1058
1059         if (var->xres > MAX_XRES || var->yres > MAX_YRES ||
1060             var->xres * var->yres * (ch->cfg.bpp / 8) * 2 > info->fix.smem_len) {
1061                 dev_warn(info->dev, "Invalid info: %u-%u-%u-%u x %u-%u-%u-%u @ %lukHz!\n",
1062                          var->left_margin, var->xres, var->right_margin, var->hsync_len,
1063                          var->upper_margin, var->yres, var->lower_margin, var->vsync_len,
1064                          PICOS2KHZ(var->pixclock));
1065                 return -EINVAL;
1066         }
1067
1068         /* only accept the forced_bpp for dual channel configurations */
1069         if (p->forced_bpp && p->forced_bpp != var->bits_per_pixel)
1070                 return -EINVAL;
1071
1072         switch (var->bits_per_pixel) {
1073         case 16: /* PKF[4:0] = 00011 - RGB 565 */
1074         case 24: /* PKF[4:0] = 01011 - RGB 888 */
1075         case 32: /* PKF[4:0] = 00000 - RGBA 888 */
1076                 break;
1077         default:
1078                 return -EINVAL;
1079         }
1080
1081         return 0;
1082 }
1083
1084 /*
1085  * Screen blanking. Behavior is as follows:
1086  * FB_BLANK_UNBLANK: screen unblanked, clocks enabled
1087  * FB_BLANK_NORMAL: screen blanked, clocks enabled
1088  * FB_BLANK_VSYNC,
1089  * FB_BLANK_HSYNC,
1090  * FB_BLANK_POWEROFF: screen blanked, clocks disabled
1091  */
1092 static int sh_mobile_lcdc_blank(int blank, struct fb_info *info)
1093 {
1094         struct sh_mobile_lcdc_chan *ch = info->par;
1095         struct sh_mobile_lcdc_priv *p = ch->lcdc;
1096
1097         /* blank the screen? */
1098         if (blank > FB_BLANK_UNBLANK && ch->blank_status == FB_BLANK_UNBLANK) {
1099                 struct fb_fillrect rect = {
1100                         .width = info->var.xres,
1101                         .height = info->var.yres,
1102                 };
1103                 sh_mobile_lcdc_fillrect(info, &rect);
1104         }
1105         /* turn clocks on? */
1106         if (blank <= FB_BLANK_NORMAL && ch->blank_status > FB_BLANK_NORMAL) {
1107                 sh_mobile_lcdc_clk_on(p);
1108         }
1109         /* turn clocks off? */
1110         if (blank > FB_BLANK_NORMAL && ch->blank_status <= FB_BLANK_NORMAL) {
1111                 /* make sure the screen is updated with the black fill before
1112                  * switching the clocks off. one vsync is not enough since
1113                  * blanking may occur in the middle of a refresh. deferred io
1114                  * mode will reenable the clocks and update the screen in time,
1115                  * so it does not need this. */
1116                 if (!info->fbdefio) {
1117                         sh_mobile_wait_for_vsync(info);
1118                         sh_mobile_wait_for_vsync(info);
1119                 }
1120                 sh_mobile_lcdc_clk_off(p);
1121         }
1122
1123         ch->blank_status = blank;
1124         return 0;
1125 }
1126
1127 static struct fb_ops sh_mobile_lcdc_ops = {
1128         .owner          = THIS_MODULE,
1129         .fb_setcolreg   = sh_mobile_lcdc_setcolreg,
1130         .fb_read        = fb_sys_read,
1131         .fb_write       = fb_sys_write,
1132         .fb_fillrect    = sh_mobile_lcdc_fillrect,
1133         .fb_copyarea    = sh_mobile_lcdc_copyarea,
1134         .fb_imageblit   = sh_mobile_lcdc_imageblit,
1135         .fb_blank       = sh_mobile_lcdc_blank,
1136         .fb_pan_display = sh_mobile_fb_pan_display,
1137         .fb_ioctl       = sh_mobile_ioctl,
1138         .fb_open        = sh_mobile_open,
1139         .fb_release     = sh_mobile_release,
1140         .fb_check_var   = sh_mobile_check_var,
1141 };
1142
1143 static int sh_mobile_lcdc_update_bl(struct backlight_device *bdev)
1144 {
1145         struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev);
1146         struct sh_mobile_lcdc_board_cfg *cfg = &ch->cfg.board_cfg;
1147         int brightness = bdev->props.brightness;
1148
1149         if (bdev->props.power != FB_BLANK_UNBLANK ||
1150             bdev->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK))
1151                 brightness = 0;
1152
1153         return cfg->set_brightness(cfg->board_data, brightness);
1154 }
1155
1156 static int sh_mobile_lcdc_get_brightness(struct backlight_device *bdev)
1157 {
1158         struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev);
1159         struct sh_mobile_lcdc_board_cfg *cfg = &ch->cfg.board_cfg;
1160
1161         return cfg->get_brightness(cfg->board_data);
1162 }
1163
1164 static int sh_mobile_lcdc_check_fb(struct backlight_device *bdev,
1165                                    struct fb_info *info)
1166 {
1167         return (info->bl_dev == bdev);
1168 }
1169
1170 static struct backlight_ops sh_mobile_lcdc_bl_ops = {
1171         .options        = BL_CORE_SUSPENDRESUME,
1172         .update_status  = sh_mobile_lcdc_update_bl,
1173         .get_brightness = sh_mobile_lcdc_get_brightness,
1174         .check_fb       = sh_mobile_lcdc_check_fb,
1175 };
1176
1177 static struct backlight_device *sh_mobile_lcdc_bl_probe(struct device *parent,
1178                                                struct sh_mobile_lcdc_chan *ch)
1179 {
1180         struct backlight_device *bl;
1181
1182         bl = backlight_device_register(ch->cfg.bl_info.name, parent, ch,
1183                                        &sh_mobile_lcdc_bl_ops, NULL);
1184         if (IS_ERR(bl)) {
1185                 dev_err(parent, "unable to register backlight device: %ld\n",
1186                         PTR_ERR(bl));
1187                 return NULL;
1188         }
1189
1190         bl->props.max_brightness = ch->cfg.bl_info.max_brightness;
1191         bl->props.brightness = bl->props.max_brightness;
1192         backlight_update_status(bl);
1193
1194         return bl;
1195 }
1196
1197 static void sh_mobile_lcdc_bl_remove(struct backlight_device *bdev)
1198 {
1199         backlight_device_unregister(bdev);
1200 }
1201
1202 static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo *var, int bpp,
1203                                    int nonstd)
1204 {
1205         if (nonstd) {
1206                 switch (bpp) {
1207                 case 12:
1208                 case 16:
1209                 case 24:
1210                         var->bits_per_pixel = bpp;
1211                         var->nonstd = nonstd;
1212                         return 0;
1213                 default:
1214                         return -EINVAL;
1215                 }
1216         }
1217
1218         switch (bpp) {
1219         case 16: /* PKF[4:0] = 00011 - RGB 565 */
1220                 var->red.offset = 11;
1221                 var->red.length = 5;
1222                 var->green.offset = 5;
1223                 var->green.length = 6;
1224                 var->blue.offset = 0;
1225                 var->blue.length = 5;
1226                 var->transp.offset = 0;
1227                 var->transp.length = 0;
1228                 break;
1229
1230         case 24: /* PKF[4:0] = 01011 - RGB 888 */
1231                 var->red.offset = 16;
1232                 var->red.length = 8;
1233                 var->green.offset = 8;
1234                 var->green.length = 8;
1235                 var->blue.offset = 0;
1236                 var->blue.length = 8;
1237                 var->transp.offset = 0;
1238                 var->transp.length = 0;
1239                 break;
1240
1241         case 32: /* PKF[4:0] = 00000 - RGBA 888 */
1242                 var->red.offset = 16;
1243                 var->red.length = 8;
1244                 var->green.offset = 8;
1245                 var->green.length = 8;
1246                 var->blue.offset = 0;
1247                 var->blue.length = 8;
1248                 var->transp.offset = 24;
1249                 var->transp.length = 8;
1250                 break;
1251         default:
1252                 return -EINVAL;
1253         }
1254         var->bits_per_pixel = bpp;
1255         var->red.msb_right = 0;
1256         var->green.msb_right = 0;
1257         var->blue.msb_right = 0;
1258         var->transp.msb_right = 0;
1259         return 0;
1260 }
1261
1262 static int sh_mobile_lcdc_suspend(struct device *dev)
1263 {
1264         struct platform_device *pdev = to_platform_device(dev);
1265
1266         sh_mobile_lcdc_stop(platform_get_drvdata(pdev));
1267         return 0;
1268 }
1269
1270 static int sh_mobile_lcdc_resume(struct device *dev)
1271 {
1272         struct platform_device *pdev = to_platform_device(dev);
1273
1274         return sh_mobile_lcdc_start(platform_get_drvdata(pdev));
1275 }
1276
1277 static int sh_mobile_lcdc_runtime_suspend(struct device *dev)
1278 {
1279         struct platform_device *pdev = to_platform_device(dev);
1280         struct sh_mobile_lcdc_priv *priv = platform_get_drvdata(pdev);
1281
1282         /* turn off LCDC hardware */
1283         lcdc_write(priv, _LDCNT1R, 0);
1284
1285         return 0;
1286 }
1287
1288 static int sh_mobile_lcdc_runtime_resume(struct device *dev)
1289 {
1290         struct platform_device *pdev = to_platform_device(dev);
1291         struct sh_mobile_lcdc_priv *priv = platform_get_drvdata(pdev);
1292
1293         __sh_mobile_lcdc_start(priv);
1294
1295         return 0;
1296 }
1297
1298 static const struct dev_pm_ops sh_mobile_lcdc_dev_pm_ops = {
1299         .suspend = sh_mobile_lcdc_suspend,
1300         .resume = sh_mobile_lcdc_resume,
1301         .runtime_suspend = sh_mobile_lcdc_runtime_suspend,
1302         .runtime_resume = sh_mobile_lcdc_runtime_resume,
1303 };
1304
1305 /* locking: called with info->lock held */
1306 static int sh_mobile_lcdc_notify(struct notifier_block *nb,
1307                                  unsigned long action, void *data)
1308 {
1309         struct fb_event *event = data;
1310         struct fb_info *info = event->info;
1311         struct sh_mobile_lcdc_chan *ch = info->par;
1312         struct sh_mobile_lcdc_board_cfg *board_cfg = &ch->cfg.board_cfg;
1313
1314         if (&ch->lcdc->notifier != nb)
1315                 return NOTIFY_DONE;
1316
1317         dev_dbg(info->dev, "%s(): action = %lu, data = %p\n",
1318                 __func__, action, event->data);
1319
1320         switch(action) {
1321         case FB_EVENT_SUSPEND:
1322                 if (board_cfg->display_off && try_module_get(board_cfg->owner)) {
1323                         board_cfg->display_off(board_cfg->board_data);
1324                         module_put(board_cfg->owner);
1325                 }
1326                 sh_mobile_lcdc_stop(ch->lcdc);
1327                 break;
1328         case FB_EVENT_RESUME:
1329                 mutex_lock(&ch->open_lock);
1330                 sh_mobile_fb_reconfig(info);
1331                 mutex_unlock(&ch->open_lock);
1332
1333                 /* HDMI must be enabled before LCDC configuration */
1334                 if (board_cfg->display_on && try_module_get(board_cfg->owner)) {
1335                         board_cfg->display_on(board_cfg->board_data, info);
1336                         module_put(board_cfg->owner);
1337                 }
1338
1339                 sh_mobile_lcdc_start(ch->lcdc);
1340         }
1341
1342         return NOTIFY_OK;
1343 }
1344
1345 static int sh_mobile_lcdc_remove(struct platform_device *pdev);
1346
1347 static int __devinit sh_mobile_lcdc_probe(struct platform_device *pdev)
1348 {
1349         struct fb_info *info;
1350         struct sh_mobile_lcdc_priv *priv;
1351         struct sh_mobile_lcdc_info *pdata = pdev->dev.platform_data;
1352         struct resource *res;
1353         int error;
1354         void *buf;
1355         int i, j;
1356
1357         if (!pdata) {
1358                 dev_err(&pdev->dev, "no platform data defined\n");
1359                 return -EINVAL;
1360         }
1361
1362         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1363         i = platform_get_irq(pdev, 0);
1364         if (!res || i < 0) {
1365                 dev_err(&pdev->dev, "cannot get platform resources\n");
1366                 return -ENOENT;
1367         }
1368
1369         priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1370         if (!priv) {
1371                 dev_err(&pdev->dev, "cannot allocate device data\n");
1372                 return -ENOMEM;
1373         }
1374
1375         platform_set_drvdata(pdev, priv);
1376
1377         error = request_irq(i, sh_mobile_lcdc_irq, IRQF_DISABLED,
1378                             dev_name(&pdev->dev), priv);
1379         if (error) {
1380                 dev_err(&pdev->dev, "unable to request irq\n");
1381                 goto err1;
1382         }
1383
1384         priv->irq = i;
1385         atomic_set(&priv->hw_usecnt, -1);
1386
1387         j = 0;
1388         for (i = 0; i < ARRAY_SIZE(pdata->ch); i++) {
1389                 struct sh_mobile_lcdc_chan *ch = priv->ch + j;
1390
1391                 ch->lcdc = priv;
1392                 memcpy(&ch->cfg, &pdata->ch[i], sizeof(pdata->ch[i]));
1393
1394                 error = sh_mobile_lcdc_check_interface(ch);
1395                 if (error) {
1396                         dev_err(&pdev->dev, "unsupported interface type\n");
1397                         goto err1;
1398                 }
1399                 init_waitqueue_head(&ch->frame_end_wait);
1400                 init_completion(&ch->vsync_completion);
1401                 ch->pan_offset = 0;
1402
1403                 /* probe the backlight is there is one defined */
1404                 if (ch->cfg.bl_info.max_brightness)
1405                         ch->bl = sh_mobile_lcdc_bl_probe(&pdev->dev, ch);
1406
1407                 switch (pdata->ch[i].chan) {
1408                 case LCDC_CHAN_MAINLCD:
1409                         ch->enabled = LDCNT2R_ME;
1410                         ch->reg_offs = lcdc_offs_mainlcd;
1411                         j++;
1412                         break;
1413                 case LCDC_CHAN_SUBLCD:
1414                         ch->enabled = LDCNT2R_SE;
1415                         ch->reg_offs = lcdc_offs_sublcd;
1416                         j++;
1417                         break;
1418                 }
1419         }
1420
1421         if (!j) {
1422                 dev_err(&pdev->dev, "no channels defined\n");
1423                 error = -EINVAL;
1424                 goto err1;
1425         }
1426
1427         /* for dual channel LCDC (MAIN + SUB) force shared bpp setting */
1428         if (j == 2)
1429                 priv->forced_bpp = pdata->ch[0].bpp;
1430
1431         priv->base = ioremap_nocache(res->start, resource_size(res));
1432         if (!priv->base)
1433                 goto err1;
1434
1435         error = sh_mobile_lcdc_setup_clocks(pdev, pdata->clock_source, priv);
1436         if (error) {
1437                 dev_err(&pdev->dev, "unable to setup clocks\n");
1438                 goto err1;
1439         }
1440
1441         priv->meram_dev = pdata->meram_dev;
1442
1443         for (i = 0; i < j; i++) {
1444                 struct fb_var_screeninfo *var;
1445                 const struct fb_videomode *lcd_cfg, *max_cfg = NULL;
1446                 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
1447                 struct sh_mobile_lcdc_chan_cfg *cfg = &ch->cfg;
1448                 const struct fb_videomode *mode = cfg->lcd_cfg;
1449                 unsigned long max_size = 0;
1450                 int k;
1451                 int num_cfg;
1452
1453                 ch->info = framebuffer_alloc(0, &pdev->dev);
1454                 if (!ch->info) {
1455                         dev_err(&pdev->dev, "unable to allocate fb_info\n");
1456                         error = -ENOMEM;
1457                         break;
1458                 }
1459
1460                 info = ch->info;
1461                 var = &info->var;
1462                 info->fbops = &sh_mobile_lcdc_ops;
1463                 info->par = ch;
1464
1465                 mutex_init(&ch->open_lock);
1466
1467                 for (k = 0, lcd_cfg = mode;
1468                      k < cfg->num_cfg && lcd_cfg;
1469                      k++, lcd_cfg++) {
1470                         unsigned long size = lcd_cfg->yres * lcd_cfg->xres;
1471                         /* NV12 buffers must have even number of lines */
1472                         if ((cfg->nonstd) && cfg->bpp == 12 &&
1473                                         (lcd_cfg->yres & 0x1)) {
1474                                 dev_err(&pdev->dev, "yres must be multiple of 2"
1475                                                 " for YCbCr420 mode.\n");
1476                                 error = -EINVAL;
1477                                 goto err1;
1478                         }
1479
1480                         if (size > max_size) {
1481                                 max_cfg = lcd_cfg;
1482                                 max_size = size;
1483                         }
1484                 }
1485
1486                 if (!mode)
1487                         max_size = MAX_XRES * MAX_YRES;
1488                 else if (max_cfg)
1489                         dev_dbg(&pdev->dev, "Found largest videomode %ux%u\n",
1490                                 max_cfg->xres, max_cfg->yres);
1491
1492                 info->fix = sh_mobile_lcdc_fix;
1493                 info->fix.smem_len = max_size * 2 * cfg->bpp / 8;
1494
1495                  /* Only pan in 2 line steps for NV12 */
1496                 if (cfg->nonstd && cfg->bpp == 12)
1497                         info->fix.ypanstep = 2;
1498
1499                 if (!mode) {
1500                         mode = &default_720p;
1501                         num_cfg = 1;
1502                 } else {
1503                         num_cfg = cfg->num_cfg;
1504                 }
1505
1506                 fb_videomode_to_modelist(mode, num_cfg, &info->modelist);
1507
1508                 fb_videomode_to_var(var, mode);
1509                 var->width = cfg->lcd_size_cfg.width;
1510                 var->height = cfg->lcd_size_cfg.height;
1511                 /* Default Y virtual resolution is 2x panel size */
1512                 var->yres_virtual = var->yres * 2;
1513                 var->activate = FB_ACTIVATE_NOW;
1514
1515                 error = sh_mobile_lcdc_set_bpp(var, cfg->bpp, cfg->nonstd);
1516                 if (error)
1517                         break;
1518
1519                 buf = dma_alloc_coherent(&pdev->dev, info->fix.smem_len,
1520                                          &ch->dma_handle, GFP_KERNEL);
1521                 if (!buf) {
1522                         dev_err(&pdev->dev, "unable to allocate buffer\n");
1523                         error = -ENOMEM;
1524                         break;
1525                 }
1526
1527                 info->pseudo_palette = &ch->pseudo_palette;
1528                 info->flags = FBINFO_FLAG_DEFAULT;
1529
1530                 error = fb_alloc_cmap(&info->cmap, PALETTE_NR, 0);
1531                 if (error < 0) {
1532                         dev_err(&pdev->dev, "unable to allocate cmap\n");
1533                         dma_free_coherent(&pdev->dev, info->fix.smem_len,
1534                                           buf, ch->dma_handle);
1535                         break;
1536                 }
1537
1538                 info->fix.smem_start = ch->dma_handle;
1539                 if (var->nonstd)
1540                         info->fix.line_length = var->xres;
1541                 else
1542                         info->fix.line_length = var->xres * (cfg->bpp / 8);
1543
1544                 info->screen_base = buf;
1545                 info->device = &pdev->dev;
1546                 ch->display_var = *var;
1547         }
1548
1549         if (error)
1550                 goto err1;
1551
1552         error = sh_mobile_lcdc_start(priv);
1553         if (error) {
1554                 dev_err(&pdev->dev, "unable to start hardware\n");
1555                 goto err1;
1556         }
1557
1558         for (i = 0; i < j; i++) {
1559                 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
1560
1561                 info = ch->info;
1562
1563                 if (info->fbdefio) {
1564                         ch->sglist = vmalloc(sizeof(struct scatterlist) *
1565                                         info->fix.smem_len >> PAGE_SHIFT);
1566                         if (!ch->sglist) {
1567                                 dev_err(&pdev->dev, "cannot allocate sglist\n");
1568                                 goto err1;
1569                         }
1570                 }
1571
1572                 info->bl_dev = ch->bl;
1573
1574                 error = register_framebuffer(info);
1575                 if (error < 0)
1576                         goto err1;
1577
1578                 dev_info(info->dev,
1579                          "registered %s/%s as %dx%d %dbpp.\n",
1580                          pdev->name,
1581                          (ch->cfg.chan == LCDC_CHAN_MAINLCD) ?
1582                          "mainlcd" : "sublcd",
1583                          info->var.xres, info->var.yres,
1584                          ch->cfg.bpp);
1585
1586                 /* deferred io mode: disable clock to save power */
1587                 if (info->fbdefio || info->state == FBINFO_STATE_SUSPENDED)
1588                         sh_mobile_lcdc_clk_off(priv);
1589         }
1590
1591         /* Failure ignored */
1592         priv->notifier.notifier_call = sh_mobile_lcdc_notify;
1593         fb_register_client(&priv->notifier);
1594
1595         return 0;
1596 err1:
1597         sh_mobile_lcdc_remove(pdev);
1598
1599         return error;
1600 }
1601
1602 static int sh_mobile_lcdc_remove(struct platform_device *pdev)
1603 {
1604         struct sh_mobile_lcdc_priv *priv = platform_get_drvdata(pdev);
1605         struct fb_info *info;
1606         int i;
1607
1608         fb_unregister_client(&priv->notifier);
1609
1610         for (i = 0; i < ARRAY_SIZE(priv->ch); i++)
1611                 if (priv->ch[i].info && priv->ch[i].info->dev)
1612                         unregister_framebuffer(priv->ch[i].info);
1613
1614         sh_mobile_lcdc_stop(priv);
1615
1616         for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
1617                 info = priv->ch[i].info;
1618
1619                 if (!info || !info->device)
1620                         continue;
1621
1622                 if (priv->ch[i].sglist)
1623                         vfree(priv->ch[i].sglist);
1624
1625                 if (info->screen_base)
1626                         dma_free_coherent(&pdev->dev, info->fix.smem_len,
1627                                           info->screen_base,
1628                                           priv->ch[i].dma_handle);
1629                 fb_dealloc_cmap(&info->cmap);
1630                 framebuffer_release(info);
1631         }
1632
1633         for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
1634                 if (priv->ch[i].bl)
1635                         sh_mobile_lcdc_bl_remove(priv->ch[i].bl);
1636         }
1637
1638         if (priv->dot_clk)
1639                 clk_put(priv->dot_clk);
1640
1641         if (priv->dev)
1642                 pm_runtime_disable(priv->dev);
1643
1644         if (priv->base)
1645                 iounmap(priv->base);
1646
1647         if (priv->irq)
1648                 free_irq(priv->irq, priv);
1649         kfree(priv);
1650         return 0;
1651 }
1652
1653 static struct platform_driver sh_mobile_lcdc_driver = {
1654         .driver         = {
1655                 .name           = "sh_mobile_lcdc_fb",
1656                 .owner          = THIS_MODULE,
1657                 .pm             = &sh_mobile_lcdc_dev_pm_ops,
1658         },
1659         .probe          = sh_mobile_lcdc_probe,
1660         .remove         = sh_mobile_lcdc_remove,
1661 };
1662
1663 static int __init sh_mobile_lcdc_init(void)
1664 {
1665         return platform_driver_register(&sh_mobile_lcdc_driver);
1666 }
1667
1668 static void __exit sh_mobile_lcdc_exit(void)
1669 {
1670         platform_driver_unregister(&sh_mobile_lcdc_driver);
1671 }
1672
1673 module_init(sh_mobile_lcdc_init);
1674 module_exit(sh_mobile_lcdc_exit);
1675
1676 MODULE_DESCRIPTION("SuperH Mobile LCDC Framebuffer driver");
1677 MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
1678 MODULE_LICENSE("GPL v2");