blob: bf2629f83f409418a96bd46da1df53d6c4032efe [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
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/delay.h>
14#include <linux/mm.h>
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070015#include <linux/clk.h>
Magnus Damm0246c472009-08-14 10:49:08 +000016#include <linux/pm_runtime.h>
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070017#include <linux/platform_device.h>
18#include <linux/dma-mapping.h>
Magnus Damm85645572008-12-19 15:34:41 +090019#include <linux/interrupt.h>
Paul Mundt1c6a3072009-07-01 06:50:31 +000020#include <linux/vmalloc.h>
Phil Edworthy40331b22010-02-15 13:57:49 +000021#include <linux/ioctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +000023#include <linux/console.h>
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +000024#include <linux/backlight.h>
25#include <linux/gpio.h>
Paul Mundt225c9a82008-10-01 16:24:32 +090026#include <video/sh_mobile_lcdc.h>
Magnus Damm85645572008-12-19 15:34:41 +090027#include <asm/atomic.h>
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070028
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +000029#include "sh_mobile_lcdcfb.h"
30
Phil Edworthya6f15ad2009-09-15 12:00:30 +000031#define SIDE_B_OFFSET 0x1000
32#define MIRROR_OFFSET 0x2000
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070033
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070034/* shared registers */
35#define _LDDCKR 0x410
36#define _LDDCKSTPR 0x414
37#define _LDINTR 0x468
38#define _LDSR 0x46c
39#define _LDCNT1R 0x470
40#define _LDCNT2R 0x474
Phil Edworthy9dd38812009-09-15 12:00:18 +000041#define _LDRCNTR 0x478
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070042#define _LDDDSR 0x47c
43#define _LDDWD0R 0x800
44#define _LDDRDR 0x840
45#define _LDDWAR 0x900
46#define _LDDRAR 0x904
47
Magnus Damm0246c472009-08-14 10:49:08 +000048/* shared registers and their order for context save/restore */
49static int lcdc_shared_regs[] = {
50 _LDDCKR,
51 _LDDCKSTPR,
52 _LDINTR,
53 _LDDDSR,
54 _LDCNT1R,
55 _LDCNT2R,
56};
57#define NR_SHARED_REGS ARRAY_SIZE(lcdc_shared_regs)
58
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +000059#define MAX_XRES 1920
60#define MAX_YRES 1080
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070061
Magnus Damm0246c472009-08-14 10:49:08 +000062static unsigned long lcdc_offs_mainlcd[NR_CH_REGS] = {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070063 [LDDCKPAT1R] = 0x400,
64 [LDDCKPAT2R] = 0x404,
65 [LDMT1R] = 0x418,
66 [LDMT2R] = 0x41c,
67 [LDMT3R] = 0x420,
68 [LDDFR] = 0x424,
69 [LDSM1R] = 0x428,
Magnus Damm85645572008-12-19 15:34:41 +090070 [LDSM2R] = 0x42c,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070071 [LDSA1R] = 0x430,
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +000072 [LDSA2R] = 0x434,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070073 [LDMLSR] = 0x438,
74 [LDHCNR] = 0x448,
75 [LDHSYNR] = 0x44c,
76 [LDVLNR] = 0x450,
77 [LDVSYNR] = 0x454,
78 [LDPMR] = 0x460,
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +000079 [LDHAJR] = 0x4a0,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070080};
81
Magnus Damm0246c472009-08-14 10:49:08 +000082static unsigned long lcdc_offs_sublcd[NR_CH_REGS] = {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070083 [LDDCKPAT1R] = 0x408,
84 [LDDCKPAT2R] = 0x40c,
85 [LDMT1R] = 0x600,
86 [LDMT2R] = 0x604,
87 [LDMT3R] = 0x608,
88 [LDDFR] = 0x60c,
89 [LDSM1R] = 0x610,
Magnus Damm85645572008-12-19 15:34:41 +090090 [LDSM2R] = 0x614,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070091 [LDSA1R] = 0x618,
92 [LDMLSR] = 0x620,
93 [LDHCNR] = 0x624,
94 [LDHSYNR] = 0x628,
95 [LDVLNR] = 0x62c,
96 [LDVSYNR] = 0x630,
97 [LDPMR] = 0x63c,
98};
99
100#define START_LCDC 0x00000001
101#define LCDC_RESET 0x00000100
102#define DISPLAY_BEU 0x00000008
103#define LCDC_ENABLE 0x00000001
Magnus Damm85645572008-12-19 15:34:41 +0900104#define LDINTR_FE 0x00000400
Phil Edworthy9dd38812009-09-15 12:00:18 +0000105#define LDINTR_VSE 0x00000200
106#define LDINTR_VEE 0x00000100
Magnus Damm85645572008-12-19 15:34:41 +0900107#define LDINTR_FS 0x00000004
Phil Edworthy9dd38812009-09-15 12:00:18 +0000108#define LDINTR_VSS 0x00000002
109#define LDINTR_VES 0x00000001
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000110#define LDRCNTR_SRS 0x00020000
111#define LDRCNTR_SRC 0x00010000
112#define LDRCNTR_MRS 0x00000002
113#define LDRCNTR_MRC 0x00000001
Phil Edworthy40331b22010-02-15 13:57:49 +0000114#define LDSR_MRS 0x00000100
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700115
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +0000116static const struct fb_videomode default_720p = {
117 .name = "HDMI 720p",
118 .xres = 1280,
119 .yres = 720,
120
Guennadi Liakhovetski5ae0cf82010-11-04 11:06:01 +0000121 .left_margin = 220,
122 .right_margin = 110,
123 .hsync_len = 40,
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +0000124
125 .upper_margin = 20,
126 .lower_margin = 5,
127 .vsync_len = 5,
128
129 .pixclock = 13468,
Guennadi Liakhovetski5ae0cf82010-11-04 11:06:01 +0000130 .refresh = 60,
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +0000131 .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
Magnus Damm0246c472009-08-14 10:49:08 +0000132};
133
134struct sh_mobile_lcdc_priv {
135 void __iomem *base;
136 int irq;
137 atomic_t hw_usecnt;
138 struct device *dev;
139 struct clk *dot_clk;
140 unsigned long lddckr;
141 struct sh_mobile_lcdc_chan ch[2];
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000142 struct notifier_block notifier;
Magnus Damm0246c472009-08-14 10:49:08 +0000143 unsigned long saved_shared_regs[NR_SHARED_REGS];
144 int started;
Magnus Damm417d4822011-01-05 10:21:00 +0000145 int forced_bpp; /* 2 channel LCDC must share bpp setting */
Magnus Damm0246c472009-08-14 10:49:08 +0000146};
147
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000148static bool banked(int reg_nr)
149{
150 switch (reg_nr) {
151 case LDMT1R:
152 case LDMT2R:
153 case LDMT3R:
154 case LDDFR:
155 case LDSM1R:
156 case LDSA1R:
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000157 case LDSA2R:
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000158 case LDMLSR:
159 case LDHCNR:
160 case LDHSYNR:
161 case LDVLNR:
162 case LDVSYNR:
163 return true;
164 }
165 return false;
166}
167
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700168static void lcdc_write_chan(struct sh_mobile_lcdc_chan *chan,
169 int reg_nr, unsigned long data)
170{
171 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr]);
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000172 if (banked(reg_nr))
173 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
174 SIDE_B_OFFSET);
175}
176
177static void lcdc_write_chan_mirror(struct sh_mobile_lcdc_chan *chan,
178 int reg_nr, unsigned long data)
179{
180 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
181 MIRROR_OFFSET);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700182}
183
184static unsigned long lcdc_read_chan(struct sh_mobile_lcdc_chan *chan,
185 int reg_nr)
186{
187 return ioread32(chan->lcdc->base + chan->reg_offs[reg_nr]);
188}
189
190static void lcdc_write(struct sh_mobile_lcdc_priv *priv,
191 unsigned long reg_offs, unsigned long data)
192{
193 iowrite32(data, priv->base + reg_offs);
194}
195
196static unsigned long lcdc_read(struct sh_mobile_lcdc_priv *priv,
197 unsigned long reg_offs)
198{
199 return ioread32(priv->base + reg_offs);
200}
201
202static void lcdc_wait_bit(struct sh_mobile_lcdc_priv *priv,
203 unsigned long reg_offs,
204 unsigned long mask, unsigned long until)
205{
206 while ((lcdc_read(priv, reg_offs) & mask) != until)
207 cpu_relax();
208}
209
210static int lcdc_chan_is_sublcd(struct sh_mobile_lcdc_chan *chan)
211{
212 return chan->cfg.chan == LCDC_CHAN_SUBLCD;
213}
214
215static void lcdc_sys_write_index(void *handle, unsigned long data)
216{
217 struct sh_mobile_lcdc_chan *ch = handle;
218
219 lcdc_write(ch->lcdc, _LDDWD0R, data | 0x10000000);
220 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
221 lcdc_write(ch->lcdc, _LDDWAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0));
Magnus Damm909f10d2009-08-06 14:28:12 +0000222 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700223}
224
225static void lcdc_sys_write_data(void *handle, unsigned long data)
226{
227 struct sh_mobile_lcdc_chan *ch = handle;
228
229 lcdc_write(ch->lcdc, _LDDWD0R, data | 0x11000000);
230 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
231 lcdc_write(ch->lcdc, _LDDWAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0));
Magnus Damm909f10d2009-08-06 14:28:12 +0000232 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700233}
234
235static unsigned long lcdc_sys_read_data(void *handle)
236{
237 struct sh_mobile_lcdc_chan *ch = handle;
238
239 lcdc_write(ch->lcdc, _LDDRDR, 0x01000000);
240 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
241 lcdc_write(ch->lcdc, _LDDRAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0));
242 udelay(1);
Magnus Damm909f10d2009-08-06 14:28:12 +0000243 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700244
Magnus Dammec56b662009-08-06 14:34:38 +0000245 return lcdc_read(ch->lcdc, _LDDRDR) & 0x3ffff;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700246}
247
248struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops = {
249 lcdc_sys_write_index,
250 lcdc_sys_write_data,
251 lcdc_sys_read_data,
252};
253
Magnus Damm85645572008-12-19 15:34:41 +0900254static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv *priv)
255{
Magnus Damm0246c472009-08-14 10:49:08 +0000256 if (atomic_inc_and_test(&priv->hw_usecnt)) {
257 pm_runtime_get_sync(priv->dev);
Magnus Damm85645572008-12-19 15:34:41 +0900258 if (priv->dot_clk)
259 clk_enable(priv->dot_clk);
260 }
261}
262
263static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv *priv)
264{
Magnus Damm0246c472009-08-14 10:49:08 +0000265 if (atomic_sub_return(1, &priv->hw_usecnt) == -1) {
Magnus Damm85645572008-12-19 15:34:41 +0900266 if (priv->dot_clk)
267 clk_disable(priv->dot_clk);
Magnus Damm0246c472009-08-14 10:49:08 +0000268 pm_runtime_put(priv->dev);
Magnus Damm85645572008-12-19 15:34:41 +0900269 }
270}
Magnus Damm85645572008-12-19 15:34:41 +0900271
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;
Magnus Dammef61aae2009-12-07 14:20:06 +0000292 struct sh_mobile_lcdc_board_cfg *bcfg = &ch->cfg.board_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);
Magnus Dammef61aae2009-12-07 14:20:06 +0000317 if (bcfg->start_transfer)
318 bcfg->start_transfer(bcfg->board_data, ch,
319 &sh_mobile_lcdc_sys_bus_ops);
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900320 lcdc_write_chan(ch, LDSM2R, 1);
321 dma_unmap_sg(info->dev, ch->sglist, nr_pages, DMA_TO_DEVICE);
Magnus Dammef61aae2009-12-07 14:20:06 +0000322 } else {
323 if (bcfg->start_transfer)
324 bcfg->start_transfer(bcfg->board_data, ch,
325 &sh_mobile_lcdc_sys_bus_ops);
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900326 lcdc_write_chan(ch, LDSM2R, 1);
Magnus Dammef61aae2009-12-07 14:20:06 +0000327 }
Magnus Damm85645572008-12-19 15:34:41 +0900328}
329
330static void sh_mobile_lcdc_deferred_io_touch(struct fb_info *info)
331{
332 struct fb_deferred_io *fbdefio = info->fbdefio;
333
334 if (fbdefio)
335 schedule_delayed_work(&info->deferred_work, fbdefio->delay);
336}
337
338static irqreturn_t sh_mobile_lcdc_irq(int irq, void *data)
339{
340 struct sh_mobile_lcdc_priv *priv = data;
Magnus Damm2feb0752009-03-13 15:36:55 +0000341 struct sh_mobile_lcdc_chan *ch;
Magnus Damm85645572008-12-19 15:34:41 +0900342 unsigned long tmp;
Phil Edworthy9dd38812009-09-15 12:00:18 +0000343 unsigned long ldintr;
Magnus Damm2feb0752009-03-13 15:36:55 +0000344 int is_sub;
345 int k;
Magnus Damm85645572008-12-19 15:34:41 +0900346
347 /* acknowledge interrupt */
Phil Edworthy9dd38812009-09-15 12:00:18 +0000348 ldintr = tmp = lcdc_read(priv, _LDINTR);
349 /*
350 * disable further VSYNC End IRQs, preserve all other enabled IRQs,
351 * write 0 to bits 0-6 to ack all triggered IRQs.
352 */
353 tmp &= 0xffffff00 & ~LDINTR_VEE;
Magnus Damm85645572008-12-19 15:34:41 +0900354 lcdc_write(priv, _LDINTR, tmp);
355
Magnus Damm2feb0752009-03-13 15:36:55 +0000356 /* figure out if this interrupt is for main or sub lcd */
357 is_sub = (lcdc_read(priv, _LDSR) & (1 << 10)) ? 1 : 0;
358
Phil Edworthy9dd38812009-09-15 12:00:18 +0000359 /* wake up channel and disable clocks */
Magnus Damm2feb0752009-03-13 15:36:55 +0000360 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
361 ch = &priv->ch[k];
362
363 if (!ch->enabled)
364 continue;
365
Phil Edworthy9dd38812009-09-15 12:00:18 +0000366 /* Frame Start */
367 if (ldintr & LDINTR_FS) {
368 if (is_sub == lcdc_chan_is_sublcd(ch)) {
369 ch->frame_end = 1;
370 wake_up(&ch->frame_end_wait);
Magnus Damm2feb0752009-03-13 15:36:55 +0000371
Phil Edworthy9dd38812009-09-15 12:00:18 +0000372 sh_mobile_lcdc_clk_off(priv);
373 }
374 }
375
376 /* VSYNC End */
Phil Edworthy40331b22010-02-15 13:57:49 +0000377 if (ldintr & LDINTR_VES)
378 complete(&ch->vsync_completion);
Magnus Damm2feb0752009-03-13 15:36:55 +0000379 }
380
Magnus Damm85645572008-12-19 15:34:41 +0900381 return IRQ_HANDLED;
382}
383
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700384static void sh_mobile_lcdc_start_stop(struct sh_mobile_lcdc_priv *priv,
385 int start)
386{
387 unsigned long tmp = lcdc_read(priv, _LDCNT2R);
388 int k;
389
390 /* start or stop the lcdc */
391 if (start)
392 lcdc_write(priv, _LDCNT2R, tmp | START_LCDC);
393 else
394 lcdc_write(priv, _LDCNT2R, tmp & ~START_LCDC);
395
396 /* wait until power is applied/stopped on all channels */
397 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
398 if (lcdc_read(priv, _LDCNT2R) & priv->ch[k].enabled)
399 while (1) {
400 tmp = lcdc_read_chan(&priv->ch[k], LDPMR) & 3;
401 if (start && tmp == 3)
402 break;
403 if (!start && tmp == 0)
404 break;
405 cpu_relax();
406 }
407
408 if (!start)
409 lcdc_write(priv, _LDDCKSTPR, 1); /* stop dotclock */
410}
411
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000412static void sh_mobile_lcdc_geometry(struct sh_mobile_lcdc_chan *ch)
413{
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000414 struct fb_var_screeninfo *var = &ch->info->var, *display_var = &ch->display_var;
415 unsigned long h_total, hsync_pos, display_h_total;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000416 u32 tmp;
417
418 tmp = ch->ldmt1r_value;
419 tmp |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? 0 : 1 << 28;
420 tmp |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? 0 : 1 << 27;
421 tmp |= (ch->cfg.flags & LCDC_FLAGS_DWPOL) ? 1 << 26 : 0;
422 tmp |= (ch->cfg.flags & LCDC_FLAGS_DIPOL) ? 1 << 25 : 0;
423 tmp |= (ch->cfg.flags & LCDC_FLAGS_DAPOL) ? 1 << 24 : 0;
424 tmp |= (ch->cfg.flags & LCDC_FLAGS_HSCNT) ? 1 << 17 : 0;
425 tmp |= (ch->cfg.flags & LCDC_FLAGS_DWCNT) ? 1 << 16 : 0;
426 lcdc_write_chan(ch, LDMT1R, tmp);
427
428 /* setup SYS bus */
429 lcdc_write_chan(ch, LDMT2R, ch->cfg.sys_bus_cfg.ldmt2r);
430 lcdc_write_chan(ch, LDMT3R, ch->cfg.sys_bus_cfg.ldmt3r);
431
432 /* horizontal configuration */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000433 h_total = display_var->xres + display_var->hsync_len +
434 display_var->left_margin + display_var->right_margin;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000435 tmp = h_total / 8; /* HTCN */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000436 tmp |= (min(display_var->xres, var->xres) / 8) << 16; /* HDCN */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000437 lcdc_write_chan(ch, LDHCNR, tmp);
438
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000439 hsync_pos = display_var->xres + display_var->right_margin;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000440 tmp = hsync_pos / 8; /* HSYNP */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000441 tmp |= (display_var->hsync_len / 8) << 16; /* HSYNW */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000442 lcdc_write_chan(ch, LDHSYNR, tmp);
443
444 /* vertical configuration */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000445 tmp = display_var->yres + display_var->vsync_len +
446 display_var->upper_margin + display_var->lower_margin; /* VTLN */
447 tmp |= min(display_var->yres, var->yres) << 16; /* VDLN */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000448 lcdc_write_chan(ch, LDVLNR, tmp);
449
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000450 tmp = display_var->yres + display_var->lower_margin; /* VSYNP */
451 tmp |= display_var->vsync_len << 16; /* VSYNW */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000452 lcdc_write_chan(ch, LDVSYNR, tmp);
453
454 /* Adjust horizontal synchronisation for HDMI */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000455 display_h_total = display_var->xres + display_var->hsync_len +
456 display_var->left_margin + display_var->right_margin;
457 tmp = ((display_var->xres & 7) << 24) |
458 ((display_h_total & 7) << 16) |
459 ((display_var->hsync_len & 7) << 8) |
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000460 hsync_pos;
461 lcdc_write_chan(ch, LDHAJR, tmp);
462}
463
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700464static int sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv *priv)
465{
466 struct sh_mobile_lcdc_chan *ch;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700467 struct sh_mobile_lcdc_board_cfg *board_cfg;
468 unsigned long tmp;
Magnus Damm417d4822011-01-05 10:21:00 +0000469 int bpp = 0;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000470 unsigned long ldddsr;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700471 int k, m;
472 int ret = 0;
473
Magnus Damm85645572008-12-19 15:34:41 +0900474 /* enable clocks before accessing the hardware */
Magnus Damm417d4822011-01-05 10:21:00 +0000475 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
476 if (priv->ch[k].enabled) {
Magnus Damm85645572008-12-19 15:34:41 +0900477 sh_mobile_lcdc_clk_on(priv);
Magnus Damm417d4822011-01-05 10:21:00 +0000478 if (!bpp)
479 bpp = priv->ch[k].info->var.bits_per_pixel;
480 }
481 }
Magnus Damm85645572008-12-19 15:34:41 +0900482
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700483 /* reset */
484 lcdc_write(priv, _LDCNT2R, lcdc_read(priv, _LDCNT2R) | LCDC_RESET);
485 lcdc_wait_bit(priv, _LDCNT2R, LCDC_RESET, 0);
486
487 /* enable LCDC channels */
488 tmp = lcdc_read(priv, _LDCNT2R);
489 tmp |= priv->ch[0].enabled;
490 tmp |= priv->ch[1].enabled;
491 lcdc_write(priv, _LDCNT2R, tmp);
492
493 /* read data from external memory, avoid using the BEU for now */
494 lcdc_write(priv, _LDCNT2R, lcdc_read(priv, _LDCNT2R) & ~DISPLAY_BEU);
495
496 /* stop the lcdc first */
497 sh_mobile_lcdc_start_stop(priv, 0);
498
499 /* configure clocks */
500 tmp = priv->lddckr;
501 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
502 ch = &priv->ch[k];
503
504 if (!priv->ch[k].enabled)
505 continue;
506
507 m = ch->cfg.clock_divider;
508 if (!m)
509 continue;
510
511 if (m == 1)
512 m = 1 << 6;
513 tmp |= m << (lcdc_chan_is_sublcd(ch) ? 8 : 0);
514
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000515 /* FIXME: sh7724 can only use 42, 48, 54 and 60 for the divider denominator */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000516 lcdc_write_chan(ch, LDDCKPAT1R, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700517 lcdc_write_chan(ch, LDDCKPAT2R, (1 << (m/2)) - 1);
518 }
519
520 lcdc_write(priv, _LDDCKR, tmp);
521
522 /* start dotclock again */
523 lcdc_write(priv, _LDDCKSTPR, 0);
524 lcdc_wait_bit(priv, _LDDCKSTPR, ~0, 0);
525
Magnus Damm85645572008-12-19 15:34:41 +0900526 /* interrupts are disabled to begin with */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700527 lcdc_write(priv, _LDINTR, 0);
528
529 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
530 ch = &priv->ch[k];
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700531
532 if (!ch->enabled)
533 continue;
534
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000535 sh_mobile_lcdc_geometry(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700536
537 /* power supply */
538 lcdc_write_chan(ch, LDPMR, 0);
539
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700540 board_cfg = &ch->cfg.board_cfg;
541 if (board_cfg->setup_sys)
542 ret = board_cfg->setup_sys(board_cfg->board_data, ch,
543 &sh_mobile_lcdc_sys_bus_ops);
544 if (ret)
545 return ret;
546 }
547
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700548 /* word and long word swap */
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000549 ldddsr = lcdc_read(priv, _LDDDSR);
550 if (priv->ch[0].info->var.nonstd)
551 lcdc_write(priv, _LDDDSR, ldddsr | 7);
552 else {
553 switch (bpp) {
554 case 16:
555 lcdc_write(priv, _LDDDSR, ldddsr | 6);
556 break;
557 case 24:
558 lcdc_write(priv, _LDDDSR, ldddsr | 7);
559 break;
560 case 32:
561 lcdc_write(priv, _LDDDSR, ldddsr | 4);
562 break;
563 }
Magnus Damm417d4822011-01-05 10:21:00 +0000564 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700565
566 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
567 ch = &priv->ch[k];
568
569 if (!priv->ch[k].enabled)
570 continue;
571
572 /* set bpp format in PKF[4:0] */
573 tmp = lcdc_read_chan(ch, LDDFR);
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000574 tmp &= ~0x0003031f;
575 if (ch->info->var.nonstd) {
576 tmp |= (ch->info->var.nonstd << 16);
577 switch (ch->info->var.bits_per_pixel) {
578 case 12:
579 break;
580 case 16:
581 tmp |= (0x1 << 8);
582 break;
583 case 24:
584 tmp |= (0x2 << 8);
585 break;
586 }
587 } else {
588 switch (ch->info->var.bits_per_pixel) {
589 case 16:
590 tmp |= 0x03;
591 break;
592 case 24:
593 tmp |= 0x0b;
594 break;
595 case 32:
596 break;
597 }
Magnus Damm417d4822011-01-05 10:21:00 +0000598 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700599 lcdc_write_chan(ch, LDDFR, tmp);
600
601 /* point out our frame buffer */
Paul Mundte33afdd2009-07-07 11:24:32 +0900602 lcdc_write_chan(ch, LDSA1R, ch->info->fix.smem_start);
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000603 if (ch->info->var.nonstd)
604 lcdc_write_chan(ch, LDSA2R,
605 ch->info->fix.smem_start +
606 ch->info->var.xres *
607 ch->info->var.yres_virtual);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700608
609 /* set line size */
Paul Mundte33afdd2009-07-07 11:24:32 +0900610 lcdc_write_chan(ch, LDMLSR, ch->info->fix.line_length);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700611
Magnus Damm85645572008-12-19 15:34:41 +0900612 /* setup deferred io if SYS bus */
613 tmp = ch->cfg.sys_bus_cfg.deferred_io_msec;
614 if (ch->ldmt1r_value & (1 << 12) && tmp) {
615 ch->defio.deferred_io = sh_mobile_lcdc_deferred_io;
616 ch->defio.delay = msecs_to_jiffies(tmp);
Paul Mundte33afdd2009-07-07 11:24:32 +0900617 ch->info->fbdefio = &ch->defio;
618 fb_deferred_io_init(ch->info);
Magnus Damm85645572008-12-19 15:34:41 +0900619
620 /* one-shot mode */
621 lcdc_write_chan(ch, LDSM1R, 1);
622
623 /* enable "Frame End Interrupt Enable" bit */
624 lcdc_write(priv, _LDINTR, LDINTR_FE);
625
626 } else {
627 /* continuous read mode */
628 lcdc_write_chan(ch, LDSM1R, 0);
629 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700630 }
631
632 /* display output */
633 lcdc_write(priv, _LDCNT1R, LCDC_ENABLE);
634
635 /* start the lcdc */
636 sh_mobile_lcdc_start_stop(priv, 1);
Magnus Damm8e9bb192009-05-20 14:34:43 +0000637 priv->started = 1;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700638
639 /* tell the board code to enable the panel */
640 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
641 ch = &priv->ch[k];
Magnus Damm21bc1f02009-08-15 02:53:16 +0000642 if (!ch->enabled)
643 continue;
644
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700645 board_cfg = &ch->cfg.board_cfg;
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000646 if (try_module_get(board_cfg->owner) && board_cfg->display_on) {
Guennadi Liakhovetskic2439392010-07-21 10:13:17 +0000647 board_cfg->display_on(board_cfg->board_data, ch->info);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000648 module_put(board_cfg->owner);
649 }
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +0000650
651 if (ch->bl) {
652 ch->bl->props.power = FB_BLANK_UNBLANK;
653 backlight_update_status(ch->bl);
654 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700655 }
656
657 return 0;
658}
659
660static void sh_mobile_lcdc_stop(struct sh_mobile_lcdc_priv *priv)
661{
662 struct sh_mobile_lcdc_chan *ch;
663 struct sh_mobile_lcdc_board_cfg *board_cfg;
664 int k;
665
Magnus Damm2feb0752009-03-13 15:36:55 +0000666 /* clean up deferred io and ask board code to disable panel */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700667 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
668 ch = &priv->ch[k];
Magnus Damm21bc1f02009-08-15 02:53:16 +0000669 if (!ch->enabled)
670 continue;
Magnus Damm2feb0752009-03-13 15:36:55 +0000671
672 /* deferred io mode:
673 * flush frame, and wait for frame end interrupt
674 * clean up deferred io and enable clock
675 */
Guennadi Liakhovetski5ef6b502010-09-03 07:19:57 +0000676 if (ch->info && ch->info->fbdefio) {
Magnus Damm2feb0752009-03-13 15:36:55 +0000677 ch->frame_end = 0;
Paul Mundte33afdd2009-07-07 11:24:32 +0900678 schedule_delayed_work(&ch->info->deferred_work, 0);
Magnus Damm2feb0752009-03-13 15:36:55 +0000679 wait_event(ch->frame_end_wait, ch->frame_end);
Paul Mundte33afdd2009-07-07 11:24:32 +0900680 fb_deferred_io_cleanup(ch->info);
681 ch->info->fbdefio = NULL;
Magnus Damm2feb0752009-03-13 15:36:55 +0000682 sh_mobile_lcdc_clk_on(priv);
683 }
684
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +0000685 if (ch->bl) {
686 ch->bl->props.power = FB_BLANK_POWERDOWN;
687 backlight_update_status(ch->bl);
688 }
689
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700690 board_cfg = &ch->cfg.board_cfg;
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000691 if (try_module_get(board_cfg->owner) && board_cfg->display_off) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700692 board_cfg->display_off(board_cfg->board_data);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000693 module_put(board_cfg->owner);
694 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700695 }
696
697 /* stop the lcdc */
Magnus Damm8e9bb192009-05-20 14:34:43 +0000698 if (priv->started) {
699 sh_mobile_lcdc_start_stop(priv, 0);
700 priv->started = 0;
701 }
Magnus Dammb51339f2008-10-31 20:23:26 +0900702
Magnus Damm85645572008-12-19 15:34:41 +0900703 /* stop clocks */
704 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
705 if (priv->ch[k].enabled)
706 sh_mobile_lcdc_clk_off(priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700707}
708
709static int sh_mobile_lcdc_check_interface(struct sh_mobile_lcdc_chan *ch)
710{
711 int ifm, miftyp;
712
713 switch (ch->cfg.interface_type) {
714 case RGB8: ifm = 0; miftyp = 0; break;
715 case RGB9: ifm = 0; miftyp = 4; break;
716 case RGB12A: ifm = 0; miftyp = 5; break;
717 case RGB12B: ifm = 0; miftyp = 6; break;
718 case RGB16: ifm = 0; miftyp = 7; break;
719 case RGB18: ifm = 0; miftyp = 10; break;
720 case RGB24: ifm = 0; miftyp = 11; break;
721 case SYS8A: ifm = 1; miftyp = 0; break;
722 case SYS8B: ifm = 1; miftyp = 1; break;
723 case SYS8C: ifm = 1; miftyp = 2; break;
724 case SYS8D: ifm = 1; miftyp = 3; break;
725 case SYS9: ifm = 1; miftyp = 4; break;
726 case SYS12: ifm = 1; miftyp = 5; break;
727 case SYS16A: ifm = 1; miftyp = 7; break;
728 case SYS16B: ifm = 1; miftyp = 8; break;
729 case SYS16C: ifm = 1; miftyp = 9; break;
730 case SYS18: ifm = 1; miftyp = 10; break;
731 case SYS24: ifm = 1; miftyp = 11; break;
732 default: goto bad;
733 }
734
735 /* SUBLCD only supports SYS interface */
736 if (lcdc_chan_is_sublcd(ch)) {
737 if (ifm == 0)
738 goto bad;
739 else
740 ifm = 0;
741 }
742
743 ch->ldmt1r_value = (ifm << 12) | miftyp;
744 return 0;
745 bad:
746 return -EINVAL;
747}
748
Magnus Dammb51339f2008-10-31 20:23:26 +0900749static int sh_mobile_lcdc_setup_clocks(struct platform_device *pdev,
750 int clock_source,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700751 struct sh_mobile_lcdc_priv *priv)
752{
753 char *str;
754 int icksel;
755
756 switch (clock_source) {
757 case LCDC_CLK_BUS: str = "bus_clk"; icksel = 0; break;
758 case LCDC_CLK_PERIPHERAL: str = "peripheral_clk"; icksel = 1; break;
759 case LCDC_CLK_EXTERNAL: str = NULL; icksel = 2; break;
760 default:
761 return -EINVAL;
762 }
763
764 priv->lddckr = icksel << 16;
765
766 if (str) {
Magnus Dammb51339f2008-10-31 20:23:26 +0900767 priv->dot_clk = clk_get(&pdev->dev, str);
768 if (IS_ERR(priv->dot_clk)) {
769 dev_err(&pdev->dev, "cannot get dot clock %s\n", str);
Magnus Dammb51339f2008-10-31 20:23:26 +0900770 return PTR_ERR(priv->dot_clk);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700771 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700772 }
773
Magnus Damm0246c472009-08-14 10:49:08 +0000774 /* Runtime PM support involves two step for this driver:
775 * 1) Enable Runtime PM
776 * 2) Force Runtime PM Resume since hardware is accessed from probe()
777 */
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +0000778 priv->dev = &pdev->dev;
Magnus Damm0246c472009-08-14 10:49:08 +0000779 pm_runtime_enable(priv->dev);
780 pm_runtime_resume(priv->dev);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700781 return 0;
782}
783
784static int sh_mobile_lcdc_setcolreg(u_int regno,
785 u_int red, u_int green, u_int blue,
786 u_int transp, struct fb_info *info)
787{
788 u32 *palette = info->pseudo_palette;
789
790 if (regno >= PALETTE_NR)
791 return -EINVAL;
792
793 /* only FB_VISUAL_TRUECOLOR supported */
794
795 red >>= 16 - info->var.red.length;
796 green >>= 16 - info->var.green.length;
797 blue >>= 16 - info->var.blue.length;
798 transp >>= 16 - info->var.transp.length;
799
800 palette[regno] = (red << info->var.red.offset) |
801 (green << info->var.green.offset) |
802 (blue << info->var.blue.offset) |
803 (transp << info->var.transp.offset);
804
805 return 0;
806}
807
808static struct fb_fix_screeninfo sh_mobile_lcdc_fix = {
809 .id = "SH Mobile LCDC",
810 .type = FB_TYPE_PACKED_PIXELS,
811 .visual = FB_VISUAL_TRUECOLOR,
812 .accel = FB_ACCEL_NONE,
Phil Edworthy9dd38812009-09-15 12:00:18 +0000813 .xpanstep = 0,
814 .ypanstep = 1,
815 .ywrapstep = 0,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700816};
817
Magnus Damm85645572008-12-19 15:34:41 +0900818static void sh_mobile_lcdc_fillrect(struct fb_info *info,
819 const struct fb_fillrect *rect)
820{
821 sys_fillrect(info, rect);
822 sh_mobile_lcdc_deferred_io_touch(info);
823}
824
825static void sh_mobile_lcdc_copyarea(struct fb_info *info,
826 const struct fb_copyarea *area)
827{
828 sys_copyarea(info, area);
829 sh_mobile_lcdc_deferred_io_touch(info);
830}
831
832static void sh_mobile_lcdc_imageblit(struct fb_info *info,
833 const struct fb_image *image)
834{
835 sys_imageblit(info, image);
836 sh_mobile_lcdc_deferred_io_touch(info);
837}
838
Phil Edworthy9dd38812009-09-15 12:00:18 +0000839static int sh_mobile_fb_pan_display(struct fb_var_screeninfo *var,
840 struct fb_info *info)
841{
842 struct sh_mobile_lcdc_chan *ch = info->par;
Phil Edworthy92e1f9a2010-02-11 10:24:25 +0000843 struct sh_mobile_lcdc_priv *priv = ch->lcdc;
844 unsigned long ldrcntr;
845 unsigned long new_pan_offset;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000846 unsigned long base_addr_y, base_addr_c;
847 unsigned long c_offset;
Phil Edworthy9dd38812009-09-15 12:00:18 +0000848
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000849 if (!var->nonstd)
850 new_pan_offset = (var->yoffset * info->fix.line_length) +
851 (var->xoffset * (info->var.bits_per_pixel / 8));
852 else
853 new_pan_offset = (var->yoffset * info->fix.line_length) +
854 (var->xoffset);
Phil Edworthy9dd38812009-09-15 12:00:18 +0000855
Phil Edworthy92e1f9a2010-02-11 10:24:25 +0000856 if (new_pan_offset == ch->pan_offset)
857 return 0; /* No change, do nothing */
858
859 ldrcntr = lcdc_read(priv, _LDRCNTR);
860
861 /* Set the source address for the next refresh */
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000862 base_addr_y = ch->dma_handle + new_pan_offset;
863 if (var->nonstd) {
864 /* Set y offset */
865 c_offset = (var->yoffset *
866 info->fix.line_length *
867 (info->var.bits_per_pixel - 8)) / 8;
868 base_addr_c = ch->dma_handle + var->xres * var->yres_virtual +
869 c_offset;
870 /* Set x offset */
871 if (info->var.bits_per_pixel == 24)
872 base_addr_c += 2 * var->xoffset;
873 else
874 base_addr_c += var->xoffset;
875 } else
876 base_addr_c = 0;
877
878 lcdc_write_chan_mirror(ch, LDSA1R, base_addr_y);
879 if (base_addr_c)
880 lcdc_write_chan_mirror(ch, LDSA2R, base_addr_c);
881
Phil Edworthy92e1f9a2010-02-11 10:24:25 +0000882 if (lcdc_chan_is_sublcd(ch))
883 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_SRS);
884 else
885 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_MRS);
886
887 ch->pan_offset = new_pan_offset;
888
889 sh_mobile_lcdc_deferred_io_touch(info);
Phil Edworthy9dd38812009-09-15 12:00:18 +0000890
891 return 0;
892}
893
Phil Edworthy40331b22010-02-15 13:57:49 +0000894static int sh_mobile_wait_for_vsync(struct fb_info *info)
895{
896 struct sh_mobile_lcdc_chan *ch = info->par;
897 unsigned long ldintr;
898 int ret;
899
900 /* Enable VSync End interrupt */
901 ldintr = lcdc_read(ch->lcdc, _LDINTR);
902 ldintr |= LDINTR_VEE;
903 lcdc_write(ch->lcdc, _LDINTR, ldintr);
904
905 ret = wait_for_completion_interruptible_timeout(&ch->vsync_completion,
906 msecs_to_jiffies(100));
907 if (!ret)
908 return -ETIMEDOUT;
909
910 return 0;
911}
912
913static int sh_mobile_ioctl(struct fb_info *info, unsigned int cmd,
914 unsigned long arg)
915{
916 int retval;
917
918 switch (cmd) {
919 case FBIO_WAITFORVSYNC:
920 retval = sh_mobile_wait_for_vsync(info);
921 break;
922
923 default:
924 retval = -ENOIOCTLCMD;
925 break;
926 }
927 return retval;
928}
929
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000930static void sh_mobile_fb_reconfig(struct fb_info *info)
931{
932 struct sh_mobile_lcdc_chan *ch = info->par;
933 struct fb_videomode mode1, mode2;
934 struct fb_event event;
935 int evnt = FB_EVENT_MODE_CHANGE_ALL;
936
937 if (ch->use_count > 1 || (ch->use_count == 1 && !info->fbcon_par))
938 /* More framebuffer users are active */
939 return;
940
941 fb_var_to_videomode(&mode1, &ch->display_var);
942 fb_var_to_videomode(&mode2, &info->var);
943
944 if (fb_mode_is_equal(&mode1, &mode2))
945 return;
946
947 /* Display has been re-plugged, framebuffer is free now, reconfigure */
948 if (fb_set_var(info, &ch->display_var) < 0)
949 /* Couldn't reconfigure, hopefully, can continue as before */
950 return;
951
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +0000952 if (info->var.nonstd)
953 info->fix.line_length = mode1.xres;
954 else
955 info->fix.line_length = mode1.xres * (ch->cfg.bpp / 8);
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000956
957 /*
958 * fb_set_var() calls the notifier change internally, only if
959 * FBINFO_MISC_USEREVENT flag is set. Since we do not want to fake a
960 * user event, we have to call the chain ourselves.
961 */
962 event.info = info;
Arnd Hannemanncc267ec2010-11-15 21:43:22 +0000963 event.data = &mode1;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000964 fb_notifier_call_chain(evnt, &event);
965}
966
967/*
968 * Locking: both .fb_release() and .fb_open() are called with info->lock held if
969 * user == 1, or with console sem held, if user == 0.
970 */
971static int sh_mobile_release(struct fb_info *info, int user)
972{
973 struct sh_mobile_lcdc_chan *ch = info->par;
974
975 mutex_lock(&ch->open_lock);
976 dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
977
978 ch->use_count--;
979
980 /* Nothing to reconfigure, when called from fbcon */
981 if (user) {
Torben Hohnac751ef2011-01-25 15:07:35 -0800982 console_lock();
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000983 sh_mobile_fb_reconfig(info);
Torben Hohnac751ef2011-01-25 15:07:35 -0800984 console_unlock();
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000985 }
986
987 mutex_unlock(&ch->open_lock);
988
989 return 0;
990}
991
992static int sh_mobile_open(struct fb_info *info, int user)
993{
994 struct sh_mobile_lcdc_chan *ch = info->par;
995
996 mutex_lock(&ch->open_lock);
997 ch->use_count++;
998
999 dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
1000 mutex_unlock(&ch->open_lock);
1001
1002 return 0;
1003}
1004
1005static int sh_mobile_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
1006{
1007 struct sh_mobile_lcdc_chan *ch = info->par;
Magnus Damm417d4822011-01-05 10:21:00 +00001008 struct sh_mobile_lcdc_priv *p = ch->lcdc;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001009
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +00001010 if (var->xres > MAX_XRES || var->yres > MAX_YRES ||
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001011 var->xres * var->yres * (ch->cfg.bpp / 8) * 2 > info->fix.smem_len) {
Paul Mundt830539d2010-11-10 17:51:44 +09001012 dev_warn(info->dev, "Invalid info: %u-%u-%u-%u x %u-%u-%u-%u @ %lukHz!\n",
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +00001013 var->left_margin, var->xres, var->right_margin, var->hsync_len,
1014 var->upper_margin, var->yres, var->lower_margin, var->vsync_len,
1015 PICOS2KHZ(var->pixclock));
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001016 return -EINVAL;
1017 }
Magnus Damm417d4822011-01-05 10:21:00 +00001018
1019 /* only accept the forced_bpp for dual channel configurations */
1020 if (p->forced_bpp && p->forced_bpp != var->bits_per_pixel)
1021 return -EINVAL;
1022
1023 switch (var->bits_per_pixel) {
1024 case 16: /* PKF[4:0] = 00011 - RGB 565 */
1025 case 24: /* PKF[4:0] = 01011 - RGB 888 */
1026 case 32: /* PKF[4:0] = 00000 - RGBA 888 */
1027 break;
1028 default:
1029 return -EINVAL;
1030 }
1031
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001032 return 0;
1033}
Phil Edworthy40331b22010-02-15 13:57:49 +00001034
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001035static struct fb_ops sh_mobile_lcdc_ops = {
Phil Edworthy9dd38812009-09-15 12:00:18 +00001036 .owner = THIS_MODULE,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001037 .fb_setcolreg = sh_mobile_lcdc_setcolreg,
Magnus Damm2540c112008-12-17 17:29:49 +09001038 .fb_read = fb_sys_read,
1039 .fb_write = fb_sys_write,
Magnus Damm85645572008-12-19 15:34:41 +09001040 .fb_fillrect = sh_mobile_lcdc_fillrect,
1041 .fb_copyarea = sh_mobile_lcdc_copyarea,
1042 .fb_imageblit = sh_mobile_lcdc_imageblit,
Phil Edworthy9dd38812009-09-15 12:00:18 +00001043 .fb_pan_display = sh_mobile_fb_pan_display,
Phil Edworthy40331b22010-02-15 13:57:49 +00001044 .fb_ioctl = sh_mobile_ioctl,
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001045 .fb_open = sh_mobile_open,
1046 .fb_release = sh_mobile_release,
1047 .fb_check_var = sh_mobile_check_var,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001048};
1049
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001050static int sh_mobile_lcdc_update_bl(struct backlight_device *bdev)
1051{
1052 struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev);
1053 struct sh_mobile_lcdc_board_cfg *cfg = &ch->cfg.board_cfg;
1054 int brightness = bdev->props.brightness;
1055
1056 if (bdev->props.power != FB_BLANK_UNBLANK ||
1057 bdev->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK))
1058 brightness = 0;
1059
1060 return cfg->set_brightness(cfg->board_data, brightness);
1061}
1062
1063static int sh_mobile_lcdc_get_brightness(struct backlight_device *bdev)
1064{
1065 struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev);
1066 struct sh_mobile_lcdc_board_cfg *cfg = &ch->cfg.board_cfg;
1067
1068 return cfg->get_brightness(cfg->board_data);
1069}
1070
1071static int sh_mobile_lcdc_check_fb(struct backlight_device *bdev,
1072 struct fb_info *info)
1073{
1074 return (info->bl_dev == bdev);
1075}
1076
1077static struct backlight_ops sh_mobile_lcdc_bl_ops = {
1078 .options = BL_CORE_SUSPENDRESUME,
1079 .update_status = sh_mobile_lcdc_update_bl,
1080 .get_brightness = sh_mobile_lcdc_get_brightness,
1081 .check_fb = sh_mobile_lcdc_check_fb,
1082};
1083
1084static struct backlight_device *sh_mobile_lcdc_bl_probe(struct device *parent,
1085 struct sh_mobile_lcdc_chan *ch)
1086{
1087 struct backlight_device *bl;
1088
1089 bl = backlight_device_register(ch->cfg.bl_info.name, parent, ch,
1090 &sh_mobile_lcdc_bl_ops, NULL);
1091 if (!bl) {
1092 dev_err(parent, "unable to register backlight device\n");
1093 return NULL;
1094 }
1095
1096 bl->props.max_brightness = ch->cfg.bl_info.max_brightness;
1097 bl->props.brightness = bl->props.max_brightness;
1098 backlight_update_status(bl);
1099
1100 return bl;
1101}
1102
1103static void sh_mobile_lcdc_bl_remove(struct backlight_device *bdev)
1104{
1105 backlight_device_unregister(bdev);
1106}
1107
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001108static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo *var, int bpp,
1109 int nonstd)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001110{
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001111 if (nonstd) {
1112 switch (bpp) {
1113 case 12:
1114 case 16:
1115 case 24:
1116 var->bits_per_pixel = bpp;
1117 var->nonstd = nonstd;
1118 return 0;
1119 default:
1120 return -EINVAL;
1121 }
1122 }
1123
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001124 switch (bpp) {
1125 case 16: /* PKF[4:0] = 00011 - RGB 565 */
1126 var->red.offset = 11;
1127 var->red.length = 5;
1128 var->green.offset = 5;
1129 var->green.length = 6;
1130 var->blue.offset = 0;
1131 var->blue.length = 5;
1132 var->transp.offset = 0;
1133 var->transp.length = 0;
1134 break;
1135
Magnus Damm417d4822011-01-05 10:21:00 +00001136 case 24: /* PKF[4:0] = 01011 - RGB 888 */
1137 var->red.offset = 16;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001138 var->red.length = 8;
Magnus Damm417d4822011-01-05 10:21:00 +00001139 var->green.offset = 8;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001140 var->green.length = 8;
Magnus Damm417d4822011-01-05 10:21:00 +00001141 var->blue.offset = 0;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001142 var->blue.length = 8;
1143 var->transp.offset = 0;
1144 var->transp.length = 0;
1145 break;
Magnus Damm417d4822011-01-05 10:21:00 +00001146
1147 case 32: /* PKF[4:0] = 00000 - RGBA 888 */
1148 var->red.offset = 16;
1149 var->red.length = 8;
1150 var->green.offset = 8;
1151 var->green.length = 8;
1152 var->blue.offset = 0;
1153 var->blue.length = 8;
1154 var->transp.offset = 24;
1155 var->transp.length = 8;
1156 break;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001157 default:
1158 return -EINVAL;
1159 }
1160 var->bits_per_pixel = bpp;
1161 var->red.msb_right = 0;
1162 var->green.msb_right = 0;
1163 var->blue.msb_right = 0;
1164 var->transp.msb_right = 0;
1165 return 0;
1166}
1167
Magnus Damm2feb0752009-03-13 15:36:55 +00001168static int sh_mobile_lcdc_suspend(struct device *dev)
1169{
1170 struct platform_device *pdev = to_platform_device(dev);
1171
1172 sh_mobile_lcdc_stop(platform_get_drvdata(pdev));
1173 return 0;
1174}
1175
1176static int sh_mobile_lcdc_resume(struct device *dev)
1177{
1178 struct platform_device *pdev = to_platform_device(dev);
1179
1180 return sh_mobile_lcdc_start(platform_get_drvdata(pdev));
1181}
1182
Magnus Damm0246c472009-08-14 10:49:08 +00001183static int sh_mobile_lcdc_runtime_suspend(struct device *dev)
1184{
1185 struct platform_device *pdev = to_platform_device(dev);
1186 struct sh_mobile_lcdc_priv *p = platform_get_drvdata(pdev);
1187 struct sh_mobile_lcdc_chan *ch;
1188 int k, n;
1189
1190 /* save per-channel registers */
1191 for (k = 0; k < ARRAY_SIZE(p->ch); k++) {
1192 ch = &p->ch[k];
1193 if (!ch->enabled)
1194 continue;
1195 for (n = 0; n < NR_CH_REGS; n++)
1196 ch->saved_ch_regs[n] = lcdc_read_chan(ch, n);
1197 }
1198
1199 /* save shared registers */
1200 for (n = 0; n < NR_SHARED_REGS; n++)
1201 p->saved_shared_regs[n] = lcdc_read(p, lcdc_shared_regs[n]);
1202
1203 /* turn off LCDC hardware */
1204 lcdc_write(p, _LDCNT1R, 0);
1205 return 0;
1206}
1207
1208static int sh_mobile_lcdc_runtime_resume(struct device *dev)
1209{
1210 struct platform_device *pdev = to_platform_device(dev);
1211 struct sh_mobile_lcdc_priv *p = platform_get_drvdata(pdev);
1212 struct sh_mobile_lcdc_chan *ch;
1213 int k, n;
1214
1215 /* restore per-channel registers */
1216 for (k = 0; k < ARRAY_SIZE(p->ch); k++) {
1217 ch = &p->ch[k];
1218 if (!ch->enabled)
1219 continue;
1220 for (n = 0; n < NR_CH_REGS; n++)
1221 lcdc_write_chan(ch, n, ch->saved_ch_regs[n]);
1222 }
1223
1224 /* restore shared registers */
1225 for (n = 0; n < NR_SHARED_REGS; n++)
1226 lcdc_write(p, lcdc_shared_regs[n], p->saved_shared_regs[n]);
1227
1228 return 0;
1229}
1230
Alexey Dobriyan47145212009-12-14 18:00:08 -08001231static const struct dev_pm_ops sh_mobile_lcdc_dev_pm_ops = {
Magnus Damm2feb0752009-03-13 15:36:55 +00001232 .suspend = sh_mobile_lcdc_suspend,
1233 .resume = sh_mobile_lcdc_resume,
Magnus Damm0246c472009-08-14 10:49:08 +00001234 .runtime_suspend = sh_mobile_lcdc_runtime_suspend,
1235 .runtime_resume = sh_mobile_lcdc_runtime_resume,
Magnus Damm2feb0752009-03-13 15:36:55 +00001236};
1237
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001238/* locking: called with info->lock held */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001239static int sh_mobile_lcdc_notify(struct notifier_block *nb,
1240 unsigned long action, void *data)
1241{
1242 struct fb_event *event = data;
1243 struct fb_info *info = event->info;
1244 struct sh_mobile_lcdc_chan *ch = info->par;
1245 struct sh_mobile_lcdc_board_cfg *board_cfg = &ch->cfg.board_cfg;
Guennadi Liakhovetskiafe417c2010-09-03 07:20:39 +00001246 int ret;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001247
1248 if (&ch->lcdc->notifier != nb)
Guennadi Liakhovetskibaf16372010-09-03 07:20:08 +00001249 return NOTIFY_DONE;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001250
1251 dev_dbg(info->dev, "%s(): action = %lu, data = %p\n",
1252 __func__, action, event->data);
1253
1254 switch(action) {
1255 case FB_EVENT_SUSPEND:
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001256 if (try_module_get(board_cfg->owner) && board_cfg->display_off) {
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001257 board_cfg->display_off(board_cfg->board_data);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001258 module_put(board_cfg->owner);
1259 }
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001260 pm_runtime_put(info->device);
Guennadi Liakhovetskiafe417c2010-09-03 07:20:39 +00001261 sh_mobile_lcdc_stop(ch->lcdc);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001262 break;
1263 case FB_EVENT_RESUME:
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001264 mutex_lock(&ch->open_lock);
1265 sh_mobile_fb_reconfig(info);
1266 mutex_unlock(&ch->open_lock);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001267
1268 /* HDMI must be enabled before LCDC configuration */
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001269 if (try_module_get(board_cfg->owner) && board_cfg->display_on) {
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001270 board_cfg->display_on(board_cfg->board_data, info);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001271 module_put(board_cfg->owner);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001272 }
1273
Guennadi Liakhovetskiafe417c2010-09-03 07:20:39 +00001274 ret = sh_mobile_lcdc_start(ch->lcdc);
1275 if (!ret)
1276 pm_runtime_get_sync(info->device);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001277 }
1278
Guennadi Liakhovetskibaf16372010-09-03 07:20:08 +00001279 return NOTIFY_OK;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001280}
1281
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001282static int sh_mobile_lcdc_remove(struct platform_device *pdev);
1283
Uwe Kleine-Königc2e13032010-02-04 20:56:51 +01001284static int __devinit sh_mobile_lcdc_probe(struct platform_device *pdev)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001285{
1286 struct fb_info *info;
1287 struct sh_mobile_lcdc_priv *priv;
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001288 struct sh_mobile_lcdc_info *pdata = pdev->dev.platform_data;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001289 struct resource *res;
1290 int error;
1291 void *buf;
1292 int i, j;
1293
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001294 if (!pdata) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001295 dev_err(&pdev->dev, "no platform data defined\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001296 return -EINVAL;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001297 }
1298
1299 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Magnus Damm85645572008-12-19 15:34:41 +09001300 i = platform_get_irq(pdev, 0);
1301 if (!res || i < 0) {
1302 dev_err(&pdev->dev, "cannot get platform resources\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001303 return -ENOENT;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001304 }
1305
1306 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1307 if (!priv) {
1308 dev_err(&pdev->dev, "cannot allocate device data\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001309 return -ENOMEM;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001310 }
1311
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001312 platform_set_drvdata(pdev, priv);
1313
Magnus Damm85645572008-12-19 15:34:41 +09001314 error = request_irq(i, sh_mobile_lcdc_irq, IRQF_DISABLED,
Kay Sievers7ad33e72009-03-24 16:38:21 -07001315 dev_name(&pdev->dev), priv);
Magnus Damm85645572008-12-19 15:34:41 +09001316 if (error) {
1317 dev_err(&pdev->dev, "unable to request irq\n");
1318 goto err1;
1319 }
1320
1321 priv->irq = i;
Guennadi Liakhovetski5ef6b502010-09-03 07:19:57 +00001322 atomic_set(&priv->hw_usecnt, -1);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001323
1324 j = 0;
1325 for (i = 0; i < ARRAY_SIZE(pdata->ch); i++) {
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001326 struct sh_mobile_lcdc_chan *ch = priv->ch + j;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001327
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001328 ch->lcdc = priv;
1329 memcpy(&ch->cfg, &pdata->ch[i], sizeof(pdata->ch[i]));
1330
1331 error = sh_mobile_lcdc_check_interface(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001332 if (error) {
1333 dev_err(&pdev->dev, "unsupported interface type\n");
1334 goto err1;
1335 }
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001336 init_waitqueue_head(&ch->frame_end_wait);
1337 init_completion(&ch->vsync_completion);
1338 ch->pan_offset = 0;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001339
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001340 /* probe the backlight is there is one defined */
1341 if (ch->cfg.bl_info.max_brightness)
1342 ch->bl = sh_mobile_lcdc_bl_probe(&pdev->dev, ch);
1343
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001344 switch (pdata->ch[i].chan) {
1345 case LCDC_CHAN_MAINLCD:
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001346 ch->enabled = 1 << 1;
1347 ch->reg_offs = lcdc_offs_mainlcd;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001348 j++;
1349 break;
1350 case LCDC_CHAN_SUBLCD:
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001351 ch->enabled = 1 << 2;
1352 ch->reg_offs = lcdc_offs_sublcd;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001353 j++;
1354 break;
1355 }
1356 }
1357
1358 if (!j) {
1359 dev_err(&pdev->dev, "no channels defined\n");
1360 error = -EINVAL;
1361 goto err1;
1362 }
1363
Magnus Damm417d4822011-01-05 10:21:00 +00001364 /* for dual channel LCDC (MAIN + SUB) force shared bpp setting */
1365 if (j == 2)
1366 priv->forced_bpp = pdata->ch[0].bpp;
1367
Guennadi Liakhovetskidba6f382010-06-30 09:26:35 +00001368 priv->base = ioremap_nocache(res->start, resource_size(res));
1369 if (!priv->base)
1370 goto err1;
1371
Magnus Dammb51339f2008-10-31 20:23:26 +09001372 error = sh_mobile_lcdc_setup_clocks(pdev, pdata->clock_source, priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001373 if (error) {
1374 dev_err(&pdev->dev, "unable to setup clocks\n");
1375 goto err1;
1376 }
1377
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001378 for (i = 0; i < j; i++) {
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001379 struct fb_var_screeninfo *var;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001380 const struct fb_videomode *lcd_cfg, *max_cfg = NULL;
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001381 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001382 struct sh_mobile_lcdc_chan_cfg *cfg = &ch->cfg;
1383 const struct fb_videomode *mode = cfg->lcd_cfg;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001384 unsigned long max_size = 0;
1385 int k;
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001386 int num_cfg;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001387
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001388 ch->info = framebuffer_alloc(0, &pdev->dev);
1389 if (!ch->info) {
Paul Mundte33afdd2009-07-07 11:24:32 +09001390 dev_err(&pdev->dev, "unable to allocate fb_info\n");
1391 error = -ENOMEM;
1392 break;
1393 }
1394
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001395 info = ch->info;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001396 var = &info->var;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001397 info->fbops = &sh_mobile_lcdc_ops;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001398 info->par = ch;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001399
1400 mutex_init(&ch->open_lock);
1401
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001402 for (k = 0, lcd_cfg = mode;
1403 k < cfg->num_cfg && lcd_cfg;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001404 k++, lcd_cfg++) {
1405 unsigned long size = lcd_cfg->yres * lcd_cfg->xres;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001406 /* NV12 buffers must have even number of lines */
1407 if ((cfg->nonstd) && cfg->bpp == 12 &&
1408 (lcd_cfg->yres & 0x1)) {
1409 dev_err(&pdev->dev, "yres must be multiple of 2"
1410 " for YCbCr420 mode.\n");
1411 error = -EINVAL;
1412 goto err1;
1413 }
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001414
1415 if (size > max_size) {
1416 max_cfg = lcd_cfg;
1417 max_size = size;
1418 }
1419 }
1420
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001421 if (!mode)
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +00001422 max_size = MAX_XRES * MAX_YRES;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001423 else if (max_cfg)
1424 dev_dbg(&pdev->dev, "Found largest videomode %ux%u\n",
1425 max_cfg->xres, max_cfg->yres);
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001426
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001427 info->fix = sh_mobile_lcdc_fix;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001428 info->fix.smem_len = max_size * 2 * cfg->bpp / 8;
1429
1430 /* Only pan in 2 line steps for NV12 */
1431 if (cfg->nonstd && cfg->bpp == 12)
1432 info->fix.ypanstep = 2;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001433
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001434 if (!mode) {
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001435 mode = &default_720p;
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001436 num_cfg = 1;
1437 } else {
Guennadi Liakhovetskie0b9fb22010-12-21 11:46:26 +01001438 num_cfg = cfg->num_cfg;
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001439 }
1440
1441 fb_videomode_to_modelist(mode, num_cfg, &info->modelist);
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001442
1443 fb_videomode_to_var(var, mode);
Guennadi Liakhovetskie0b9fb22010-12-21 11:46:26 +01001444 var->width = cfg->lcd_size_cfg.width;
1445 var->height = cfg->lcd_size_cfg.height;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001446 /* Default Y virtual resolution is 2x panel size */
1447 var->yres_virtual = var->yres * 2;
Paul Mundt1c6a3072009-07-01 06:50:31 +00001448 var->activate = FB_ACTIVATE_NOW;
Paul Mundt1c6a3072009-07-01 06:50:31 +00001449
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001450 error = sh_mobile_lcdc_set_bpp(var, cfg->bpp, cfg->nonstd);
Paul Mundt1c6a3072009-07-01 06:50:31 +00001451 if (error)
1452 break;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001453
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001454 buf = dma_alloc_coherent(&pdev->dev, info->fix.smem_len,
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001455 &ch->dma_handle, GFP_KERNEL);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001456 if (!buf) {
1457 dev_err(&pdev->dev, "unable to allocate buffer\n");
1458 error = -ENOMEM;
1459 break;
1460 }
1461
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001462 info->pseudo_palette = &ch->pseudo_palette;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001463 info->flags = FBINFO_FLAG_DEFAULT;
1464
1465 error = fb_alloc_cmap(&info->cmap, PALETTE_NR, 0);
1466 if (error < 0) {
1467 dev_err(&pdev->dev, "unable to allocate cmap\n");
1468 dma_free_coherent(&pdev->dev, info->fix.smem_len,
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001469 buf, ch->dma_handle);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001470 break;
1471 }
1472
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001473 info->fix.smem_start = ch->dma_handle;
Damian Hobson-Garcia53b50312011-02-24 05:47:13 +00001474 if (var->nonstd)
1475 info->fix.line_length = var->xres;
1476 else
1477 info->fix.line_length = var->xres * (cfg->bpp / 8);
1478
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001479 info->screen_base = buf;
1480 info->device = &pdev->dev;
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +00001481 ch->display_var = *var;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001482 }
1483
1484 if (error)
1485 goto err1;
1486
1487 error = sh_mobile_lcdc_start(priv);
1488 if (error) {
1489 dev_err(&pdev->dev, "unable to start hardware\n");
1490 goto err1;
1491 }
1492
1493 for (i = 0; i < j; i++) {
1494 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
1495
1496 info = ch->info;
1497
1498 if (info->fbdefio) {
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001499 ch->sglist = vmalloc(sizeof(struct scatterlist) *
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001500 info->fix.smem_len >> PAGE_SHIFT);
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001501 if (!ch->sglist) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001502 dev_err(&pdev->dev, "cannot allocate sglist\n");
1503 goto err1;
1504 }
1505 }
1506
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001507 info->bl_dev = ch->bl;
1508
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001509 error = register_framebuffer(info);
1510 if (error < 0)
1511 goto err1;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001512
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001513 dev_info(info->dev,
1514 "registered %s/%s as %dx%d %dbpp.\n",
1515 pdev->name,
Paul Mundt1c6a3072009-07-01 06:50:31 +00001516 (ch->cfg.chan == LCDC_CHAN_MAINLCD) ?
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001517 "mainlcd" : "sublcd",
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001518 info->var.xres, info->var.yres,
Paul Mundt1c6a3072009-07-01 06:50:31 +00001519 ch->cfg.bpp);
Magnus Damm85645572008-12-19 15:34:41 +09001520
1521 /* deferred io mode: disable clock to save power */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001522 if (info->fbdefio || info->state == FBINFO_STATE_SUSPENDED)
Magnus Damm85645572008-12-19 15:34:41 +09001523 sh_mobile_lcdc_clk_off(priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001524 }
1525
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001526 /* Failure ignored */
1527 priv->notifier.notifier_call = sh_mobile_lcdc_notify;
1528 fb_register_client(&priv->notifier);
1529
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001530 return 0;
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001531err1:
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001532 sh_mobile_lcdc_remove(pdev);
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001533
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001534 return error;
1535}
1536
1537static int sh_mobile_lcdc_remove(struct platform_device *pdev)
1538{
1539 struct sh_mobile_lcdc_priv *priv = platform_get_drvdata(pdev);
1540 struct fb_info *info;
1541 int i;
1542
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001543 fb_unregister_client(&priv->notifier);
1544
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001545 for (i = 0; i < ARRAY_SIZE(priv->ch); i++)
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001546 if (priv->ch[i].info && priv->ch[i].info->dev)
Paul Mundte33afdd2009-07-07 11:24:32 +09001547 unregister_framebuffer(priv->ch[i].info);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001548
1549 sh_mobile_lcdc_stop(priv);
1550
1551 for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
Paul Mundte33afdd2009-07-07 11:24:32 +09001552 info = priv->ch[i].info;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001553
Paul Mundte33afdd2009-07-07 11:24:32 +09001554 if (!info || !info->device)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001555 continue;
1556
Paul Mundt1c6a3072009-07-01 06:50:31 +00001557 if (priv->ch[i].sglist)
1558 vfree(priv->ch[i].sglist);
1559
Magnus Damm1ffbb032010-10-13 07:17:45 +00001560 if (info->screen_base)
1561 dma_free_coherent(&pdev->dev, info->fix.smem_len,
1562 info->screen_base,
1563 priv->ch[i].dma_handle);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001564 fb_dealloc_cmap(&info->cmap);
Paul Mundte33afdd2009-07-07 11:24:32 +09001565 framebuffer_release(info);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001566 }
1567
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001568 for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
1569 if (priv->ch[i].bl)
1570 sh_mobile_lcdc_bl_remove(priv->ch[i].bl);
1571 }
1572
Magnus Dammb51339f2008-10-31 20:23:26 +09001573 if (priv->dot_clk)
1574 clk_put(priv->dot_clk);
Magnus Damm0246c472009-08-14 10:49:08 +00001575
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001576 if (priv->dev)
1577 pm_runtime_disable(priv->dev);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001578
1579 if (priv->base)
1580 iounmap(priv->base);
1581
Magnus Damm85645572008-12-19 15:34:41 +09001582 if (priv->irq)
1583 free_irq(priv->irq, priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001584 kfree(priv);
1585 return 0;
1586}
1587
1588static struct platform_driver sh_mobile_lcdc_driver = {
1589 .driver = {
1590 .name = "sh_mobile_lcdc_fb",
1591 .owner = THIS_MODULE,
Magnus Damm2feb0752009-03-13 15:36:55 +00001592 .pm = &sh_mobile_lcdc_dev_pm_ops,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001593 },
1594 .probe = sh_mobile_lcdc_probe,
1595 .remove = sh_mobile_lcdc_remove,
1596};
1597
1598static int __init sh_mobile_lcdc_init(void)
1599{
1600 return platform_driver_register(&sh_mobile_lcdc_driver);
1601}
1602
1603static void __exit sh_mobile_lcdc_exit(void)
1604{
1605 platform_driver_unregister(&sh_mobile_lcdc_driver);
1606}
1607
1608module_init(sh_mobile_lcdc_init);
1609module_exit(sh_mobile_lcdc_exit);
1610
1611MODULE_DESCRIPTION("SuperH Mobile LCDC Framebuffer driver");
1612MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
1613MODULE_LICENSE("GPL v2");