blob: e040e46d7d912e33fe4911dc4f03b2dcfd7dcbce [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,
72 [LDMLSR] = 0x438,
73 [LDHCNR] = 0x448,
74 [LDHSYNR] = 0x44c,
75 [LDVLNR] = 0x450,
76 [LDVSYNR] = 0x454,
77 [LDPMR] = 0x460,
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +000078 [LDHAJR] = 0x4a0,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070079};
80
Magnus Damm0246c472009-08-14 10:49:08 +000081static unsigned long lcdc_offs_sublcd[NR_CH_REGS] = {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070082 [LDDCKPAT1R] = 0x408,
83 [LDDCKPAT2R] = 0x40c,
84 [LDMT1R] = 0x600,
85 [LDMT2R] = 0x604,
86 [LDMT3R] = 0x608,
87 [LDDFR] = 0x60c,
88 [LDSM1R] = 0x610,
Magnus Damm85645572008-12-19 15:34:41 +090089 [LDSM2R] = 0x614,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070090 [LDSA1R] = 0x618,
91 [LDMLSR] = 0x620,
92 [LDHCNR] = 0x624,
93 [LDHSYNR] = 0x628,
94 [LDVLNR] = 0x62c,
95 [LDVSYNR] = 0x630,
96 [LDPMR] = 0x63c,
97};
98
99#define START_LCDC 0x00000001
100#define LCDC_RESET 0x00000100
101#define DISPLAY_BEU 0x00000008
102#define LCDC_ENABLE 0x00000001
Magnus Damm85645572008-12-19 15:34:41 +0900103#define LDINTR_FE 0x00000400
Phil Edworthy9dd38812009-09-15 12:00:18 +0000104#define LDINTR_VSE 0x00000200
105#define LDINTR_VEE 0x00000100
Magnus Damm85645572008-12-19 15:34:41 +0900106#define LDINTR_FS 0x00000004
Phil Edworthy9dd38812009-09-15 12:00:18 +0000107#define LDINTR_VSS 0x00000002
108#define LDINTR_VES 0x00000001
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000109#define LDRCNTR_SRS 0x00020000
110#define LDRCNTR_SRC 0x00010000
111#define LDRCNTR_MRS 0x00000002
112#define LDRCNTR_MRC 0x00000001
Phil Edworthy40331b22010-02-15 13:57:49 +0000113#define LDSR_MRS 0x00000100
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700114
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +0000115static const struct fb_videomode default_720p = {
116 .name = "HDMI 720p",
117 .xres = 1280,
118 .yres = 720,
119
Guennadi Liakhovetski5ae0cf82010-11-04 11:06:01 +0000120 .left_margin = 220,
121 .right_margin = 110,
122 .hsync_len = 40,
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +0000123
124 .upper_margin = 20,
125 .lower_margin = 5,
126 .vsync_len = 5,
127
128 .pixclock = 13468,
Guennadi Liakhovetski5ae0cf82010-11-04 11:06:01 +0000129 .refresh = 60,
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +0000130 .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
Magnus Damm0246c472009-08-14 10:49:08 +0000131};
132
133struct sh_mobile_lcdc_priv {
134 void __iomem *base;
135 int irq;
136 atomic_t hw_usecnt;
137 struct device *dev;
138 struct clk *dot_clk;
139 unsigned long lddckr;
140 struct sh_mobile_lcdc_chan ch[2];
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000141 struct notifier_block notifier;
Magnus Damm0246c472009-08-14 10:49:08 +0000142 unsigned long saved_shared_regs[NR_SHARED_REGS];
143 int started;
Magnus Damm417d4822011-01-05 10:21:00 +0000144 int forced_bpp; /* 2 channel LCDC must share bpp setting */
Magnus Damm0246c472009-08-14 10:49:08 +0000145};
146
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000147static bool banked(int reg_nr)
148{
149 switch (reg_nr) {
150 case LDMT1R:
151 case LDMT2R:
152 case LDMT3R:
153 case LDDFR:
154 case LDSM1R:
155 case LDSA1R:
156 case LDMLSR:
157 case LDHCNR:
158 case LDHSYNR:
159 case LDVLNR:
160 case LDVSYNR:
161 return true;
162 }
163 return false;
164}
165
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700166static void lcdc_write_chan(struct sh_mobile_lcdc_chan *chan,
167 int reg_nr, unsigned long data)
168{
169 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr]);
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000170 if (banked(reg_nr))
171 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
172 SIDE_B_OFFSET);
173}
174
175static void lcdc_write_chan_mirror(struct sh_mobile_lcdc_chan *chan,
176 int reg_nr, unsigned long data)
177{
178 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
179 MIRROR_OFFSET);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700180}
181
182static unsigned long lcdc_read_chan(struct sh_mobile_lcdc_chan *chan,
183 int reg_nr)
184{
185 return ioread32(chan->lcdc->base + chan->reg_offs[reg_nr]);
186}
187
188static void lcdc_write(struct sh_mobile_lcdc_priv *priv,
189 unsigned long reg_offs, unsigned long data)
190{
191 iowrite32(data, priv->base + reg_offs);
192}
193
194static unsigned long lcdc_read(struct sh_mobile_lcdc_priv *priv,
195 unsigned long reg_offs)
196{
197 return ioread32(priv->base + reg_offs);
198}
199
200static void lcdc_wait_bit(struct sh_mobile_lcdc_priv *priv,
201 unsigned long reg_offs,
202 unsigned long mask, unsigned long until)
203{
204 while ((lcdc_read(priv, reg_offs) & mask) != until)
205 cpu_relax();
206}
207
208static int lcdc_chan_is_sublcd(struct sh_mobile_lcdc_chan *chan)
209{
210 return chan->cfg.chan == LCDC_CHAN_SUBLCD;
211}
212
213static void lcdc_sys_write_index(void *handle, unsigned long data)
214{
215 struct sh_mobile_lcdc_chan *ch = handle;
216
217 lcdc_write(ch->lcdc, _LDDWD0R, data | 0x10000000);
218 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
219 lcdc_write(ch->lcdc, _LDDWAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0));
Magnus Damm909f10d2009-08-06 14:28:12 +0000220 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700221}
222
223static void lcdc_sys_write_data(void *handle, unsigned long data)
224{
225 struct sh_mobile_lcdc_chan *ch = handle;
226
227 lcdc_write(ch->lcdc, _LDDWD0R, data | 0x11000000);
228 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
229 lcdc_write(ch->lcdc, _LDDWAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0));
Magnus Damm909f10d2009-08-06 14:28:12 +0000230 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700231}
232
233static unsigned long lcdc_sys_read_data(void *handle)
234{
235 struct sh_mobile_lcdc_chan *ch = handle;
236
237 lcdc_write(ch->lcdc, _LDDRDR, 0x01000000);
238 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
239 lcdc_write(ch->lcdc, _LDDRAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0));
240 udelay(1);
Magnus Damm909f10d2009-08-06 14:28:12 +0000241 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700242
Magnus Dammec56b662009-08-06 14:34:38 +0000243 return lcdc_read(ch->lcdc, _LDDRDR) & 0x3ffff;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700244}
245
246struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops = {
247 lcdc_sys_write_index,
248 lcdc_sys_write_data,
249 lcdc_sys_read_data,
250};
251
Magnus Damm85645572008-12-19 15:34:41 +0900252static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv *priv)
253{
Magnus Damm0246c472009-08-14 10:49:08 +0000254 if (atomic_inc_and_test(&priv->hw_usecnt)) {
255 pm_runtime_get_sync(priv->dev);
Magnus Damm85645572008-12-19 15:34:41 +0900256 if (priv->dot_clk)
257 clk_enable(priv->dot_clk);
258 }
259}
260
261static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv *priv)
262{
Magnus Damm0246c472009-08-14 10:49:08 +0000263 if (atomic_sub_return(1, &priv->hw_usecnt) == -1) {
Magnus Damm85645572008-12-19 15:34:41 +0900264 if (priv->dot_clk)
265 clk_disable(priv->dot_clk);
Magnus Damm0246c472009-08-14 10:49:08 +0000266 pm_runtime_put(priv->dev);
Magnus Damm85645572008-12-19 15:34:41 +0900267 }
268}
Magnus Damm85645572008-12-19 15:34:41 +0900269
Paul Mundt1c6a3072009-07-01 06:50:31 +0000270static int sh_mobile_lcdc_sginit(struct fb_info *info,
271 struct list_head *pagelist)
272{
273 struct sh_mobile_lcdc_chan *ch = info->par;
274 unsigned int nr_pages_max = info->fix.smem_len >> PAGE_SHIFT;
275 struct page *page;
276 int nr_pages = 0;
277
278 sg_init_table(ch->sglist, nr_pages_max);
279
280 list_for_each_entry(page, pagelist, lru)
281 sg_set_page(&ch->sglist[nr_pages++], page, PAGE_SIZE, 0);
282
283 return nr_pages;
284}
285
Magnus Damm85645572008-12-19 15:34:41 +0900286static void sh_mobile_lcdc_deferred_io(struct fb_info *info,
287 struct list_head *pagelist)
288{
289 struct sh_mobile_lcdc_chan *ch = info->par;
Magnus Dammef61aae2009-12-07 14:20:06 +0000290 struct sh_mobile_lcdc_board_cfg *bcfg = &ch->cfg.board_cfg;
Magnus Damm85645572008-12-19 15:34:41 +0900291
292 /* enable clocks before accessing hardware */
293 sh_mobile_lcdc_clk_on(ch->lcdc);
294
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900295 /*
296 * It's possible to get here without anything on the pagelist via
297 * sh_mobile_lcdc_deferred_io_touch() or via a userspace fsync()
298 * invocation. In the former case, the acceleration routines are
299 * stepped in to when using the framebuffer console causing the
300 * workqueue to be scheduled without any dirty pages on the list.
301 *
302 * Despite this, a panel update is still needed given that the
303 * acceleration routines have their own methods for writing in
304 * that still need to be updated.
305 *
306 * The fsync() and empty pagelist case could be optimized for,
307 * but we don't bother, as any application exhibiting such
308 * behaviour is fundamentally broken anyways.
309 */
310 if (!list_empty(pagelist)) {
311 unsigned int nr_pages = sh_mobile_lcdc_sginit(info, pagelist);
Paul Mundt1c6a3072009-07-01 06:50:31 +0000312
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900313 /* trigger panel update */
314 dma_map_sg(info->dev, ch->sglist, nr_pages, DMA_TO_DEVICE);
Magnus Dammef61aae2009-12-07 14:20:06 +0000315 if (bcfg->start_transfer)
316 bcfg->start_transfer(bcfg->board_data, ch,
317 &sh_mobile_lcdc_sys_bus_ops);
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900318 lcdc_write_chan(ch, LDSM2R, 1);
319 dma_unmap_sg(info->dev, ch->sglist, nr_pages, DMA_TO_DEVICE);
Magnus Dammef61aae2009-12-07 14:20:06 +0000320 } else {
321 if (bcfg->start_transfer)
322 bcfg->start_transfer(bcfg->board_data, ch,
323 &sh_mobile_lcdc_sys_bus_ops);
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900324 lcdc_write_chan(ch, LDSM2R, 1);
Magnus Dammef61aae2009-12-07 14:20:06 +0000325 }
Magnus Damm85645572008-12-19 15:34:41 +0900326}
327
328static void sh_mobile_lcdc_deferred_io_touch(struct fb_info *info)
329{
330 struct fb_deferred_io *fbdefio = info->fbdefio;
331
332 if (fbdefio)
333 schedule_delayed_work(&info->deferred_work, fbdefio->delay);
334}
335
336static irqreturn_t sh_mobile_lcdc_irq(int irq, void *data)
337{
338 struct sh_mobile_lcdc_priv *priv = data;
Magnus Damm2feb0752009-03-13 15:36:55 +0000339 struct sh_mobile_lcdc_chan *ch;
Magnus Damm85645572008-12-19 15:34:41 +0900340 unsigned long tmp;
Phil Edworthy9dd38812009-09-15 12:00:18 +0000341 unsigned long ldintr;
Magnus Damm2feb0752009-03-13 15:36:55 +0000342 int is_sub;
343 int k;
Magnus Damm85645572008-12-19 15:34:41 +0900344
345 /* acknowledge interrupt */
Phil Edworthy9dd38812009-09-15 12:00:18 +0000346 ldintr = tmp = lcdc_read(priv, _LDINTR);
347 /*
348 * disable further VSYNC End IRQs, preserve all other enabled IRQs,
349 * write 0 to bits 0-6 to ack all triggered IRQs.
350 */
351 tmp &= 0xffffff00 & ~LDINTR_VEE;
Magnus Damm85645572008-12-19 15:34:41 +0900352 lcdc_write(priv, _LDINTR, tmp);
353
Magnus Damm2feb0752009-03-13 15:36:55 +0000354 /* figure out if this interrupt is for main or sub lcd */
355 is_sub = (lcdc_read(priv, _LDSR) & (1 << 10)) ? 1 : 0;
356
Phil Edworthy9dd38812009-09-15 12:00:18 +0000357 /* wake up channel and disable clocks */
Magnus Damm2feb0752009-03-13 15:36:55 +0000358 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
359 ch = &priv->ch[k];
360
361 if (!ch->enabled)
362 continue;
363
Phil Edworthy9dd38812009-09-15 12:00:18 +0000364 /* Frame Start */
365 if (ldintr & LDINTR_FS) {
366 if (is_sub == lcdc_chan_is_sublcd(ch)) {
367 ch->frame_end = 1;
368 wake_up(&ch->frame_end_wait);
Magnus Damm2feb0752009-03-13 15:36:55 +0000369
Phil Edworthy9dd38812009-09-15 12:00:18 +0000370 sh_mobile_lcdc_clk_off(priv);
371 }
372 }
373
374 /* VSYNC End */
Phil Edworthy40331b22010-02-15 13:57:49 +0000375 if (ldintr & LDINTR_VES)
376 complete(&ch->vsync_completion);
Magnus Damm2feb0752009-03-13 15:36:55 +0000377 }
378
Magnus Damm85645572008-12-19 15:34:41 +0900379 return IRQ_HANDLED;
380}
381
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700382static void sh_mobile_lcdc_start_stop(struct sh_mobile_lcdc_priv *priv,
383 int start)
384{
385 unsigned long tmp = lcdc_read(priv, _LDCNT2R);
386 int k;
387
388 /* start or stop the lcdc */
389 if (start)
390 lcdc_write(priv, _LDCNT2R, tmp | START_LCDC);
391 else
392 lcdc_write(priv, _LDCNT2R, tmp & ~START_LCDC);
393
394 /* wait until power is applied/stopped on all channels */
395 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
396 if (lcdc_read(priv, _LDCNT2R) & priv->ch[k].enabled)
397 while (1) {
398 tmp = lcdc_read_chan(&priv->ch[k], LDPMR) & 3;
399 if (start && tmp == 3)
400 break;
401 if (!start && tmp == 0)
402 break;
403 cpu_relax();
404 }
405
406 if (!start)
407 lcdc_write(priv, _LDDCKSTPR, 1); /* stop dotclock */
408}
409
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000410static void sh_mobile_lcdc_geometry(struct sh_mobile_lcdc_chan *ch)
411{
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000412 struct fb_var_screeninfo *var = &ch->info->var, *display_var = &ch->display_var;
413 unsigned long h_total, hsync_pos, display_h_total;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000414 u32 tmp;
415
416 tmp = ch->ldmt1r_value;
417 tmp |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? 0 : 1 << 28;
418 tmp |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? 0 : 1 << 27;
419 tmp |= (ch->cfg.flags & LCDC_FLAGS_DWPOL) ? 1 << 26 : 0;
420 tmp |= (ch->cfg.flags & LCDC_FLAGS_DIPOL) ? 1 << 25 : 0;
421 tmp |= (ch->cfg.flags & LCDC_FLAGS_DAPOL) ? 1 << 24 : 0;
422 tmp |= (ch->cfg.flags & LCDC_FLAGS_HSCNT) ? 1 << 17 : 0;
423 tmp |= (ch->cfg.flags & LCDC_FLAGS_DWCNT) ? 1 << 16 : 0;
424 lcdc_write_chan(ch, LDMT1R, tmp);
425
426 /* setup SYS bus */
427 lcdc_write_chan(ch, LDMT2R, ch->cfg.sys_bus_cfg.ldmt2r);
428 lcdc_write_chan(ch, LDMT3R, ch->cfg.sys_bus_cfg.ldmt3r);
429
430 /* horizontal configuration */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000431 h_total = display_var->xres + display_var->hsync_len +
432 display_var->left_margin + display_var->right_margin;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000433 tmp = h_total / 8; /* HTCN */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000434 tmp |= (min(display_var->xres, var->xres) / 8) << 16; /* HDCN */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000435 lcdc_write_chan(ch, LDHCNR, tmp);
436
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000437 hsync_pos = display_var->xres + display_var->right_margin;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000438 tmp = hsync_pos / 8; /* HSYNP */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000439 tmp |= (display_var->hsync_len / 8) << 16; /* HSYNW */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000440 lcdc_write_chan(ch, LDHSYNR, tmp);
441
442 /* vertical configuration */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000443 tmp = display_var->yres + display_var->vsync_len +
444 display_var->upper_margin + display_var->lower_margin; /* VTLN */
445 tmp |= min(display_var->yres, var->yres) << 16; /* VDLN */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000446 lcdc_write_chan(ch, LDVLNR, tmp);
447
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000448 tmp = display_var->yres + display_var->lower_margin; /* VSYNP */
449 tmp |= display_var->vsync_len << 16; /* VSYNW */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000450 lcdc_write_chan(ch, LDVSYNR, tmp);
451
452 /* Adjust horizontal synchronisation for HDMI */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000453 display_h_total = display_var->xres + display_var->hsync_len +
454 display_var->left_margin + display_var->right_margin;
455 tmp = ((display_var->xres & 7) << 24) |
456 ((display_h_total & 7) << 16) |
457 ((display_var->hsync_len & 7) << 8) |
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000458 hsync_pos;
459 lcdc_write_chan(ch, LDHAJR, tmp);
460}
461
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700462static int sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv *priv)
463{
464 struct sh_mobile_lcdc_chan *ch;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700465 struct sh_mobile_lcdc_board_cfg *board_cfg;
466 unsigned long tmp;
Magnus Damm417d4822011-01-05 10:21:00 +0000467 int bpp = 0;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700468 int k, m;
469 int ret = 0;
470
Magnus Damm85645572008-12-19 15:34:41 +0900471 /* enable clocks before accessing the hardware */
Magnus Damm417d4822011-01-05 10:21:00 +0000472 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
473 if (priv->ch[k].enabled) {
Magnus Damm85645572008-12-19 15:34:41 +0900474 sh_mobile_lcdc_clk_on(priv);
Magnus Damm417d4822011-01-05 10:21:00 +0000475 if (!bpp)
476 bpp = priv->ch[k].info->var.bits_per_pixel;
477 }
478 }
Magnus Damm85645572008-12-19 15:34:41 +0900479
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700480 /* reset */
481 lcdc_write(priv, _LDCNT2R, lcdc_read(priv, _LDCNT2R) | LCDC_RESET);
482 lcdc_wait_bit(priv, _LDCNT2R, LCDC_RESET, 0);
483
484 /* enable LCDC channels */
485 tmp = lcdc_read(priv, _LDCNT2R);
486 tmp |= priv->ch[0].enabled;
487 tmp |= priv->ch[1].enabled;
488 lcdc_write(priv, _LDCNT2R, tmp);
489
490 /* read data from external memory, avoid using the BEU for now */
491 lcdc_write(priv, _LDCNT2R, lcdc_read(priv, _LDCNT2R) & ~DISPLAY_BEU);
492
493 /* stop the lcdc first */
494 sh_mobile_lcdc_start_stop(priv, 0);
495
496 /* configure clocks */
497 tmp = priv->lddckr;
498 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
499 ch = &priv->ch[k];
500
501 if (!priv->ch[k].enabled)
502 continue;
503
504 m = ch->cfg.clock_divider;
505 if (!m)
506 continue;
507
508 if (m == 1)
509 m = 1 << 6;
510 tmp |= m << (lcdc_chan_is_sublcd(ch) ? 8 : 0);
511
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000512 /* FIXME: sh7724 can only use 42, 48, 54 and 60 for the divider denominator */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000513 lcdc_write_chan(ch, LDDCKPAT1R, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700514 lcdc_write_chan(ch, LDDCKPAT2R, (1 << (m/2)) - 1);
515 }
516
517 lcdc_write(priv, _LDDCKR, tmp);
518
519 /* start dotclock again */
520 lcdc_write(priv, _LDDCKSTPR, 0);
521 lcdc_wait_bit(priv, _LDDCKSTPR, ~0, 0);
522
Magnus Damm85645572008-12-19 15:34:41 +0900523 /* interrupts are disabled to begin with */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700524 lcdc_write(priv, _LDINTR, 0);
525
526 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
527 ch = &priv->ch[k];
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700528
529 if (!ch->enabled)
530 continue;
531
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000532 sh_mobile_lcdc_geometry(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700533
534 /* power supply */
535 lcdc_write_chan(ch, LDPMR, 0);
536
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700537 board_cfg = &ch->cfg.board_cfg;
538 if (board_cfg->setup_sys)
539 ret = board_cfg->setup_sys(board_cfg->board_data, ch,
540 &sh_mobile_lcdc_sys_bus_ops);
541 if (ret)
542 return ret;
543 }
544
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700545 /* word and long word swap */
Magnus Damm417d4822011-01-05 10:21:00 +0000546 switch (bpp) {
547 case 16:
548 lcdc_write(priv, _LDDDSR, lcdc_read(priv, _LDDDSR) | 6);
549 break;
550 case 24:
551 lcdc_write(priv, _LDDDSR, lcdc_read(priv, _LDDDSR) | 7);
552 break;
553 case 32:
554 lcdc_write(priv, _LDDDSR, lcdc_read(priv, _LDDDSR) | 4);
555 break;
556 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700557
558 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
559 ch = &priv->ch[k];
560
561 if (!priv->ch[k].enabled)
562 continue;
563
564 /* set bpp format in PKF[4:0] */
565 tmp = lcdc_read_chan(ch, LDDFR);
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000566 tmp &= ~0x0001001f;
Magnus Damm417d4822011-01-05 10:21:00 +0000567 switch (ch->info->var.bits_per_pixel) {
568 case 16:
569 tmp |= 0x03;
570 break;
571 case 24:
572 tmp |= 0x0b;
573 break;
574 case 32:
575 break;
576 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700577 lcdc_write_chan(ch, LDDFR, tmp);
578
579 /* point out our frame buffer */
Paul Mundte33afdd2009-07-07 11:24:32 +0900580 lcdc_write_chan(ch, LDSA1R, ch->info->fix.smem_start);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700581
582 /* set line size */
Paul Mundte33afdd2009-07-07 11:24:32 +0900583 lcdc_write_chan(ch, LDMLSR, ch->info->fix.line_length);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700584
Magnus Damm85645572008-12-19 15:34:41 +0900585 /* setup deferred io if SYS bus */
586 tmp = ch->cfg.sys_bus_cfg.deferred_io_msec;
587 if (ch->ldmt1r_value & (1 << 12) && tmp) {
588 ch->defio.deferred_io = sh_mobile_lcdc_deferred_io;
589 ch->defio.delay = msecs_to_jiffies(tmp);
Paul Mundte33afdd2009-07-07 11:24:32 +0900590 ch->info->fbdefio = &ch->defio;
591 fb_deferred_io_init(ch->info);
Magnus Damm85645572008-12-19 15:34:41 +0900592
593 /* one-shot mode */
594 lcdc_write_chan(ch, LDSM1R, 1);
595
596 /* enable "Frame End Interrupt Enable" bit */
597 lcdc_write(priv, _LDINTR, LDINTR_FE);
598
599 } else {
600 /* continuous read mode */
601 lcdc_write_chan(ch, LDSM1R, 0);
602 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700603 }
604
605 /* display output */
606 lcdc_write(priv, _LDCNT1R, LCDC_ENABLE);
607
608 /* start the lcdc */
609 sh_mobile_lcdc_start_stop(priv, 1);
Magnus Damm8e9bb192009-05-20 14:34:43 +0000610 priv->started = 1;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700611
612 /* tell the board code to enable the panel */
613 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
614 ch = &priv->ch[k];
Magnus Damm21bc1f02009-08-15 02:53:16 +0000615 if (!ch->enabled)
616 continue;
617
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700618 board_cfg = &ch->cfg.board_cfg;
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000619 if (try_module_get(board_cfg->owner) && board_cfg->display_on) {
Guennadi Liakhovetskic2439392010-07-21 10:13:17 +0000620 board_cfg->display_on(board_cfg->board_data, ch->info);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000621 module_put(board_cfg->owner);
622 }
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +0000623
624 if (ch->bl) {
625 ch->bl->props.power = FB_BLANK_UNBLANK;
626 backlight_update_status(ch->bl);
627 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700628 }
629
630 return 0;
631}
632
633static void sh_mobile_lcdc_stop(struct sh_mobile_lcdc_priv *priv)
634{
635 struct sh_mobile_lcdc_chan *ch;
636 struct sh_mobile_lcdc_board_cfg *board_cfg;
637 int k;
638
Magnus Damm2feb0752009-03-13 15:36:55 +0000639 /* clean up deferred io and ask board code to disable panel */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700640 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;
Magnus Damm2feb0752009-03-13 15:36:55 +0000644
645 /* deferred io mode:
646 * flush frame, and wait for frame end interrupt
647 * clean up deferred io and enable clock
648 */
Guennadi Liakhovetski5ef6b502010-09-03 07:19:57 +0000649 if (ch->info && ch->info->fbdefio) {
Magnus Damm2feb0752009-03-13 15:36:55 +0000650 ch->frame_end = 0;
Paul Mundte33afdd2009-07-07 11:24:32 +0900651 schedule_delayed_work(&ch->info->deferred_work, 0);
Magnus Damm2feb0752009-03-13 15:36:55 +0000652 wait_event(ch->frame_end_wait, ch->frame_end);
Paul Mundte33afdd2009-07-07 11:24:32 +0900653 fb_deferred_io_cleanup(ch->info);
654 ch->info->fbdefio = NULL;
Magnus Damm2feb0752009-03-13 15:36:55 +0000655 sh_mobile_lcdc_clk_on(priv);
656 }
657
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +0000658 if (ch->bl) {
659 ch->bl->props.power = FB_BLANK_POWERDOWN;
660 backlight_update_status(ch->bl);
661 }
662
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700663 board_cfg = &ch->cfg.board_cfg;
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000664 if (try_module_get(board_cfg->owner) && board_cfg->display_off) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700665 board_cfg->display_off(board_cfg->board_data);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000666 module_put(board_cfg->owner);
667 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700668 }
669
670 /* stop the lcdc */
Magnus Damm8e9bb192009-05-20 14:34:43 +0000671 if (priv->started) {
672 sh_mobile_lcdc_start_stop(priv, 0);
673 priv->started = 0;
674 }
Magnus Dammb51339f2008-10-31 20:23:26 +0900675
Magnus Damm85645572008-12-19 15:34:41 +0900676 /* stop clocks */
677 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
678 if (priv->ch[k].enabled)
679 sh_mobile_lcdc_clk_off(priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700680}
681
682static int sh_mobile_lcdc_check_interface(struct sh_mobile_lcdc_chan *ch)
683{
684 int ifm, miftyp;
685
686 switch (ch->cfg.interface_type) {
687 case RGB8: ifm = 0; miftyp = 0; break;
688 case RGB9: ifm = 0; miftyp = 4; break;
689 case RGB12A: ifm = 0; miftyp = 5; break;
690 case RGB12B: ifm = 0; miftyp = 6; break;
691 case RGB16: ifm = 0; miftyp = 7; break;
692 case RGB18: ifm = 0; miftyp = 10; break;
693 case RGB24: ifm = 0; miftyp = 11; break;
694 case SYS8A: ifm = 1; miftyp = 0; break;
695 case SYS8B: ifm = 1; miftyp = 1; break;
696 case SYS8C: ifm = 1; miftyp = 2; break;
697 case SYS8D: ifm = 1; miftyp = 3; break;
698 case SYS9: ifm = 1; miftyp = 4; break;
699 case SYS12: ifm = 1; miftyp = 5; break;
700 case SYS16A: ifm = 1; miftyp = 7; break;
701 case SYS16B: ifm = 1; miftyp = 8; break;
702 case SYS16C: ifm = 1; miftyp = 9; break;
703 case SYS18: ifm = 1; miftyp = 10; break;
704 case SYS24: ifm = 1; miftyp = 11; break;
705 default: goto bad;
706 }
707
708 /* SUBLCD only supports SYS interface */
709 if (lcdc_chan_is_sublcd(ch)) {
710 if (ifm == 0)
711 goto bad;
712 else
713 ifm = 0;
714 }
715
716 ch->ldmt1r_value = (ifm << 12) | miftyp;
717 return 0;
718 bad:
719 return -EINVAL;
720}
721
Magnus Dammb51339f2008-10-31 20:23:26 +0900722static int sh_mobile_lcdc_setup_clocks(struct platform_device *pdev,
723 int clock_source,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700724 struct sh_mobile_lcdc_priv *priv)
725{
726 char *str;
727 int icksel;
728
729 switch (clock_source) {
730 case LCDC_CLK_BUS: str = "bus_clk"; icksel = 0; break;
731 case LCDC_CLK_PERIPHERAL: str = "peripheral_clk"; icksel = 1; break;
732 case LCDC_CLK_EXTERNAL: str = NULL; icksel = 2; break;
733 default:
734 return -EINVAL;
735 }
736
737 priv->lddckr = icksel << 16;
738
739 if (str) {
Magnus Dammb51339f2008-10-31 20:23:26 +0900740 priv->dot_clk = clk_get(&pdev->dev, str);
741 if (IS_ERR(priv->dot_clk)) {
742 dev_err(&pdev->dev, "cannot get dot clock %s\n", str);
Magnus Dammb51339f2008-10-31 20:23:26 +0900743 return PTR_ERR(priv->dot_clk);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700744 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700745 }
746
Magnus Damm0246c472009-08-14 10:49:08 +0000747 /* Runtime PM support involves two step for this driver:
748 * 1) Enable Runtime PM
749 * 2) Force Runtime PM Resume since hardware is accessed from probe()
750 */
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +0000751 priv->dev = &pdev->dev;
Magnus Damm0246c472009-08-14 10:49:08 +0000752 pm_runtime_enable(priv->dev);
753 pm_runtime_resume(priv->dev);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700754 return 0;
755}
756
757static int sh_mobile_lcdc_setcolreg(u_int regno,
758 u_int red, u_int green, u_int blue,
759 u_int transp, struct fb_info *info)
760{
761 u32 *palette = info->pseudo_palette;
762
763 if (regno >= PALETTE_NR)
764 return -EINVAL;
765
766 /* only FB_VISUAL_TRUECOLOR supported */
767
768 red >>= 16 - info->var.red.length;
769 green >>= 16 - info->var.green.length;
770 blue >>= 16 - info->var.blue.length;
771 transp >>= 16 - info->var.transp.length;
772
773 palette[regno] = (red << info->var.red.offset) |
774 (green << info->var.green.offset) |
775 (blue << info->var.blue.offset) |
776 (transp << info->var.transp.offset);
777
778 return 0;
779}
780
781static struct fb_fix_screeninfo sh_mobile_lcdc_fix = {
782 .id = "SH Mobile LCDC",
783 .type = FB_TYPE_PACKED_PIXELS,
784 .visual = FB_VISUAL_TRUECOLOR,
785 .accel = FB_ACCEL_NONE,
Phil Edworthy9dd38812009-09-15 12:00:18 +0000786 .xpanstep = 0,
787 .ypanstep = 1,
788 .ywrapstep = 0,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700789};
790
Magnus Damm85645572008-12-19 15:34:41 +0900791static void sh_mobile_lcdc_fillrect(struct fb_info *info,
792 const struct fb_fillrect *rect)
793{
794 sys_fillrect(info, rect);
795 sh_mobile_lcdc_deferred_io_touch(info);
796}
797
798static void sh_mobile_lcdc_copyarea(struct fb_info *info,
799 const struct fb_copyarea *area)
800{
801 sys_copyarea(info, area);
802 sh_mobile_lcdc_deferred_io_touch(info);
803}
804
805static void sh_mobile_lcdc_imageblit(struct fb_info *info,
806 const struct fb_image *image)
807{
808 sys_imageblit(info, image);
809 sh_mobile_lcdc_deferred_io_touch(info);
810}
811
Phil Edworthy9dd38812009-09-15 12:00:18 +0000812static int sh_mobile_fb_pan_display(struct fb_var_screeninfo *var,
813 struct fb_info *info)
814{
815 struct sh_mobile_lcdc_chan *ch = info->par;
Phil Edworthy92e1f9a2010-02-11 10:24:25 +0000816 struct sh_mobile_lcdc_priv *priv = ch->lcdc;
817 unsigned long ldrcntr;
818 unsigned long new_pan_offset;
Phil Edworthy9dd38812009-09-15 12:00:18 +0000819
Phil Edworthy92e1f9a2010-02-11 10:24:25 +0000820 new_pan_offset = (var->yoffset * info->fix.line_length) +
Phil Edworthy9dd38812009-09-15 12:00:18 +0000821 (var->xoffset * (info->var.bits_per_pixel / 8));
822
Phil Edworthy92e1f9a2010-02-11 10:24:25 +0000823 if (new_pan_offset == ch->pan_offset)
824 return 0; /* No change, do nothing */
825
826 ldrcntr = lcdc_read(priv, _LDRCNTR);
827
828 /* Set the source address for the next refresh */
829 lcdc_write_chan_mirror(ch, LDSA1R, ch->dma_handle + new_pan_offset);
830 if (lcdc_chan_is_sublcd(ch))
831 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_SRS);
832 else
833 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_MRS);
834
835 ch->pan_offset = new_pan_offset;
836
837 sh_mobile_lcdc_deferred_io_touch(info);
Phil Edworthy9dd38812009-09-15 12:00:18 +0000838
839 return 0;
840}
841
Phil Edworthy40331b22010-02-15 13:57:49 +0000842static int sh_mobile_wait_for_vsync(struct fb_info *info)
843{
844 struct sh_mobile_lcdc_chan *ch = info->par;
845 unsigned long ldintr;
846 int ret;
847
848 /* Enable VSync End interrupt */
849 ldintr = lcdc_read(ch->lcdc, _LDINTR);
850 ldintr |= LDINTR_VEE;
851 lcdc_write(ch->lcdc, _LDINTR, ldintr);
852
853 ret = wait_for_completion_interruptible_timeout(&ch->vsync_completion,
854 msecs_to_jiffies(100));
855 if (!ret)
856 return -ETIMEDOUT;
857
858 return 0;
859}
860
861static int sh_mobile_ioctl(struct fb_info *info, unsigned int cmd,
862 unsigned long arg)
863{
864 int retval;
865
866 switch (cmd) {
867 case FBIO_WAITFORVSYNC:
868 retval = sh_mobile_wait_for_vsync(info);
869 break;
870
871 default:
872 retval = -ENOIOCTLCMD;
873 break;
874 }
875 return retval;
876}
877
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000878static void sh_mobile_fb_reconfig(struct fb_info *info)
879{
880 struct sh_mobile_lcdc_chan *ch = info->par;
881 struct fb_videomode mode1, mode2;
882 struct fb_event event;
883 int evnt = FB_EVENT_MODE_CHANGE_ALL;
884
885 if (ch->use_count > 1 || (ch->use_count == 1 && !info->fbcon_par))
886 /* More framebuffer users are active */
887 return;
888
889 fb_var_to_videomode(&mode1, &ch->display_var);
890 fb_var_to_videomode(&mode2, &info->var);
891
892 if (fb_mode_is_equal(&mode1, &mode2))
893 return;
894
895 /* Display has been re-plugged, framebuffer is free now, reconfigure */
896 if (fb_set_var(info, &ch->display_var) < 0)
897 /* Couldn't reconfigure, hopefully, can continue as before */
898 return;
899
Arnd Hannemanncc267ec2010-11-15 21:43:22 +0000900 info->fix.line_length = mode1.xres * (ch->cfg.bpp / 8);
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000901
902 /*
903 * fb_set_var() calls the notifier change internally, only if
904 * FBINFO_MISC_USEREVENT flag is set. Since we do not want to fake a
905 * user event, we have to call the chain ourselves.
906 */
907 event.info = info;
Arnd Hannemanncc267ec2010-11-15 21:43:22 +0000908 event.data = &mode1;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000909 fb_notifier_call_chain(evnt, &event);
910}
911
912/*
913 * Locking: both .fb_release() and .fb_open() are called with info->lock held if
914 * user == 1, or with console sem held, if user == 0.
915 */
916static int sh_mobile_release(struct fb_info *info, int user)
917{
918 struct sh_mobile_lcdc_chan *ch = info->par;
919
920 mutex_lock(&ch->open_lock);
921 dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
922
923 ch->use_count--;
924
925 /* Nothing to reconfigure, when called from fbcon */
926 if (user) {
Torben Hohnac751ef2011-01-25 15:07:35 -0800927 console_lock();
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000928 sh_mobile_fb_reconfig(info);
Torben Hohnac751ef2011-01-25 15:07:35 -0800929 console_unlock();
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000930 }
931
932 mutex_unlock(&ch->open_lock);
933
934 return 0;
935}
936
937static int sh_mobile_open(struct fb_info *info, int user)
938{
939 struct sh_mobile_lcdc_chan *ch = info->par;
940
941 mutex_lock(&ch->open_lock);
942 ch->use_count++;
943
944 dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
945 mutex_unlock(&ch->open_lock);
946
947 return 0;
948}
949
950static int sh_mobile_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
951{
952 struct sh_mobile_lcdc_chan *ch = info->par;
Magnus Damm417d4822011-01-05 10:21:00 +0000953 struct sh_mobile_lcdc_priv *p = ch->lcdc;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000954
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +0000955 if (var->xres > MAX_XRES || var->yres > MAX_YRES ||
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000956 var->xres * var->yres * (ch->cfg.bpp / 8) * 2 > info->fix.smem_len) {
Paul Mundt830539d2010-11-10 17:51:44 +0900957 dev_warn(info->dev, "Invalid info: %u-%u-%u-%u x %u-%u-%u-%u @ %lukHz!\n",
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +0000958 var->left_margin, var->xres, var->right_margin, var->hsync_len,
959 var->upper_margin, var->yres, var->lower_margin, var->vsync_len,
960 PICOS2KHZ(var->pixclock));
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000961 return -EINVAL;
962 }
Magnus Damm417d4822011-01-05 10:21:00 +0000963
964 /* only accept the forced_bpp for dual channel configurations */
965 if (p->forced_bpp && p->forced_bpp != var->bits_per_pixel)
966 return -EINVAL;
967
968 switch (var->bits_per_pixel) {
969 case 16: /* PKF[4:0] = 00011 - RGB 565 */
970 case 24: /* PKF[4:0] = 01011 - RGB 888 */
971 case 32: /* PKF[4:0] = 00000 - RGBA 888 */
972 break;
973 default:
974 return -EINVAL;
975 }
976
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000977 return 0;
978}
Phil Edworthy40331b22010-02-15 13:57:49 +0000979
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700980static struct fb_ops sh_mobile_lcdc_ops = {
Phil Edworthy9dd38812009-09-15 12:00:18 +0000981 .owner = THIS_MODULE,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700982 .fb_setcolreg = sh_mobile_lcdc_setcolreg,
Magnus Damm2540c112008-12-17 17:29:49 +0900983 .fb_read = fb_sys_read,
984 .fb_write = fb_sys_write,
Magnus Damm85645572008-12-19 15:34:41 +0900985 .fb_fillrect = sh_mobile_lcdc_fillrect,
986 .fb_copyarea = sh_mobile_lcdc_copyarea,
987 .fb_imageblit = sh_mobile_lcdc_imageblit,
Phil Edworthy9dd38812009-09-15 12:00:18 +0000988 .fb_pan_display = sh_mobile_fb_pan_display,
Phil Edworthy40331b22010-02-15 13:57:49 +0000989 .fb_ioctl = sh_mobile_ioctl,
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000990 .fb_open = sh_mobile_open,
991 .fb_release = sh_mobile_release,
992 .fb_check_var = sh_mobile_check_var,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700993};
994
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +0000995static int sh_mobile_lcdc_update_bl(struct backlight_device *bdev)
996{
997 struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev);
998 struct sh_mobile_lcdc_board_cfg *cfg = &ch->cfg.board_cfg;
999 int brightness = bdev->props.brightness;
1000
1001 if (bdev->props.power != FB_BLANK_UNBLANK ||
1002 bdev->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK))
1003 brightness = 0;
1004
1005 return cfg->set_brightness(cfg->board_data, brightness);
1006}
1007
1008static int sh_mobile_lcdc_get_brightness(struct backlight_device *bdev)
1009{
1010 struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev);
1011 struct sh_mobile_lcdc_board_cfg *cfg = &ch->cfg.board_cfg;
1012
1013 return cfg->get_brightness(cfg->board_data);
1014}
1015
1016static int sh_mobile_lcdc_check_fb(struct backlight_device *bdev,
1017 struct fb_info *info)
1018{
1019 return (info->bl_dev == bdev);
1020}
1021
1022static struct backlight_ops sh_mobile_lcdc_bl_ops = {
1023 .options = BL_CORE_SUSPENDRESUME,
1024 .update_status = sh_mobile_lcdc_update_bl,
1025 .get_brightness = sh_mobile_lcdc_get_brightness,
1026 .check_fb = sh_mobile_lcdc_check_fb,
1027};
1028
1029static struct backlight_device *sh_mobile_lcdc_bl_probe(struct device *parent,
1030 struct sh_mobile_lcdc_chan *ch)
1031{
1032 struct backlight_device *bl;
1033
1034 bl = backlight_device_register(ch->cfg.bl_info.name, parent, ch,
1035 &sh_mobile_lcdc_bl_ops, NULL);
1036 if (!bl) {
1037 dev_err(parent, "unable to register backlight device\n");
1038 return NULL;
1039 }
1040
1041 bl->props.max_brightness = ch->cfg.bl_info.max_brightness;
1042 bl->props.brightness = bl->props.max_brightness;
1043 backlight_update_status(bl);
1044
1045 return bl;
1046}
1047
1048static void sh_mobile_lcdc_bl_remove(struct backlight_device *bdev)
1049{
1050 backlight_device_unregister(bdev);
1051}
1052
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001053static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo *var, int bpp)
1054{
1055 switch (bpp) {
1056 case 16: /* PKF[4:0] = 00011 - RGB 565 */
1057 var->red.offset = 11;
1058 var->red.length = 5;
1059 var->green.offset = 5;
1060 var->green.length = 6;
1061 var->blue.offset = 0;
1062 var->blue.length = 5;
1063 var->transp.offset = 0;
1064 var->transp.length = 0;
1065 break;
1066
Magnus Damm417d4822011-01-05 10:21:00 +00001067 case 24: /* PKF[4:0] = 01011 - RGB 888 */
1068 var->red.offset = 16;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001069 var->red.length = 8;
Magnus Damm417d4822011-01-05 10:21:00 +00001070 var->green.offset = 8;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001071 var->green.length = 8;
Magnus Damm417d4822011-01-05 10:21:00 +00001072 var->blue.offset = 0;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001073 var->blue.length = 8;
1074 var->transp.offset = 0;
1075 var->transp.length = 0;
1076 break;
Magnus Damm417d4822011-01-05 10:21:00 +00001077
1078 case 32: /* PKF[4:0] = 00000 - RGBA 888 */
1079 var->red.offset = 16;
1080 var->red.length = 8;
1081 var->green.offset = 8;
1082 var->green.length = 8;
1083 var->blue.offset = 0;
1084 var->blue.length = 8;
1085 var->transp.offset = 24;
1086 var->transp.length = 8;
1087 break;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001088 default:
1089 return -EINVAL;
1090 }
1091 var->bits_per_pixel = bpp;
1092 var->red.msb_right = 0;
1093 var->green.msb_right = 0;
1094 var->blue.msb_right = 0;
1095 var->transp.msb_right = 0;
1096 return 0;
1097}
1098
Magnus Damm2feb0752009-03-13 15:36:55 +00001099static int sh_mobile_lcdc_suspend(struct device *dev)
1100{
1101 struct platform_device *pdev = to_platform_device(dev);
1102
1103 sh_mobile_lcdc_stop(platform_get_drvdata(pdev));
1104 return 0;
1105}
1106
1107static int sh_mobile_lcdc_resume(struct device *dev)
1108{
1109 struct platform_device *pdev = to_platform_device(dev);
1110
1111 return sh_mobile_lcdc_start(platform_get_drvdata(pdev));
1112}
1113
Magnus Damm0246c472009-08-14 10:49:08 +00001114static int sh_mobile_lcdc_runtime_suspend(struct device *dev)
1115{
1116 struct platform_device *pdev = to_platform_device(dev);
1117 struct sh_mobile_lcdc_priv *p = platform_get_drvdata(pdev);
1118 struct sh_mobile_lcdc_chan *ch;
1119 int k, n;
1120
1121 /* save per-channel registers */
1122 for (k = 0; k < ARRAY_SIZE(p->ch); k++) {
1123 ch = &p->ch[k];
1124 if (!ch->enabled)
1125 continue;
1126 for (n = 0; n < NR_CH_REGS; n++)
1127 ch->saved_ch_regs[n] = lcdc_read_chan(ch, n);
1128 }
1129
1130 /* save shared registers */
1131 for (n = 0; n < NR_SHARED_REGS; n++)
1132 p->saved_shared_regs[n] = lcdc_read(p, lcdc_shared_regs[n]);
1133
1134 /* turn off LCDC hardware */
1135 lcdc_write(p, _LDCNT1R, 0);
1136 return 0;
1137}
1138
1139static int sh_mobile_lcdc_runtime_resume(struct device *dev)
1140{
1141 struct platform_device *pdev = to_platform_device(dev);
1142 struct sh_mobile_lcdc_priv *p = platform_get_drvdata(pdev);
1143 struct sh_mobile_lcdc_chan *ch;
1144 int k, n;
1145
1146 /* restore per-channel registers */
1147 for (k = 0; k < ARRAY_SIZE(p->ch); k++) {
1148 ch = &p->ch[k];
1149 if (!ch->enabled)
1150 continue;
1151 for (n = 0; n < NR_CH_REGS; n++)
1152 lcdc_write_chan(ch, n, ch->saved_ch_regs[n]);
1153 }
1154
1155 /* restore shared registers */
1156 for (n = 0; n < NR_SHARED_REGS; n++)
1157 lcdc_write(p, lcdc_shared_regs[n], p->saved_shared_regs[n]);
1158
1159 return 0;
1160}
1161
Alexey Dobriyan47145212009-12-14 18:00:08 -08001162static const struct dev_pm_ops sh_mobile_lcdc_dev_pm_ops = {
Magnus Damm2feb0752009-03-13 15:36:55 +00001163 .suspend = sh_mobile_lcdc_suspend,
1164 .resume = sh_mobile_lcdc_resume,
Magnus Damm0246c472009-08-14 10:49:08 +00001165 .runtime_suspend = sh_mobile_lcdc_runtime_suspend,
1166 .runtime_resume = sh_mobile_lcdc_runtime_resume,
Magnus Damm2feb0752009-03-13 15:36:55 +00001167};
1168
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001169/* locking: called with info->lock held */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001170static int sh_mobile_lcdc_notify(struct notifier_block *nb,
1171 unsigned long action, void *data)
1172{
1173 struct fb_event *event = data;
1174 struct fb_info *info = event->info;
1175 struct sh_mobile_lcdc_chan *ch = info->par;
1176 struct sh_mobile_lcdc_board_cfg *board_cfg = &ch->cfg.board_cfg;
Guennadi Liakhovetskiafe417c2010-09-03 07:20:39 +00001177 int ret;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001178
1179 if (&ch->lcdc->notifier != nb)
Guennadi Liakhovetskibaf16372010-09-03 07:20:08 +00001180 return NOTIFY_DONE;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001181
1182 dev_dbg(info->dev, "%s(): action = %lu, data = %p\n",
1183 __func__, action, event->data);
1184
1185 switch(action) {
1186 case FB_EVENT_SUSPEND:
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001187 if (try_module_get(board_cfg->owner) && board_cfg->display_off) {
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001188 board_cfg->display_off(board_cfg->board_data);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001189 module_put(board_cfg->owner);
1190 }
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001191 pm_runtime_put(info->device);
Guennadi Liakhovetskiafe417c2010-09-03 07:20:39 +00001192 sh_mobile_lcdc_stop(ch->lcdc);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001193 break;
1194 case FB_EVENT_RESUME:
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001195 mutex_lock(&ch->open_lock);
1196 sh_mobile_fb_reconfig(info);
1197 mutex_unlock(&ch->open_lock);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001198
1199 /* HDMI must be enabled before LCDC configuration */
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001200 if (try_module_get(board_cfg->owner) && board_cfg->display_on) {
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001201 board_cfg->display_on(board_cfg->board_data, info);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001202 module_put(board_cfg->owner);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001203 }
1204
Guennadi Liakhovetskiafe417c2010-09-03 07:20:39 +00001205 ret = sh_mobile_lcdc_start(ch->lcdc);
1206 if (!ret)
1207 pm_runtime_get_sync(info->device);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001208 }
1209
Guennadi Liakhovetskibaf16372010-09-03 07:20:08 +00001210 return NOTIFY_OK;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001211}
1212
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001213static int sh_mobile_lcdc_remove(struct platform_device *pdev);
1214
Uwe Kleine-Königc2e13032010-02-04 20:56:51 +01001215static int __devinit sh_mobile_lcdc_probe(struct platform_device *pdev)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001216{
1217 struct fb_info *info;
1218 struct sh_mobile_lcdc_priv *priv;
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001219 struct sh_mobile_lcdc_info *pdata = pdev->dev.platform_data;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001220 struct resource *res;
1221 int error;
1222 void *buf;
1223 int i, j;
1224
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001225 if (!pdata) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001226 dev_err(&pdev->dev, "no platform data defined\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001227 return -EINVAL;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001228 }
1229
1230 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Magnus Damm85645572008-12-19 15:34:41 +09001231 i = platform_get_irq(pdev, 0);
1232 if (!res || i < 0) {
1233 dev_err(&pdev->dev, "cannot get platform resources\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001234 return -ENOENT;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001235 }
1236
1237 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1238 if (!priv) {
1239 dev_err(&pdev->dev, "cannot allocate device data\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001240 return -ENOMEM;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001241 }
1242
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001243 platform_set_drvdata(pdev, priv);
1244
Magnus Damm85645572008-12-19 15:34:41 +09001245 error = request_irq(i, sh_mobile_lcdc_irq, IRQF_DISABLED,
Kay Sievers7ad33e72009-03-24 16:38:21 -07001246 dev_name(&pdev->dev), priv);
Magnus Damm85645572008-12-19 15:34:41 +09001247 if (error) {
1248 dev_err(&pdev->dev, "unable to request irq\n");
1249 goto err1;
1250 }
1251
1252 priv->irq = i;
Guennadi Liakhovetski5ef6b502010-09-03 07:19:57 +00001253 atomic_set(&priv->hw_usecnt, -1);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001254
1255 j = 0;
1256 for (i = 0; i < ARRAY_SIZE(pdata->ch); i++) {
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001257 struct sh_mobile_lcdc_chan *ch = priv->ch + j;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001258
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001259 ch->lcdc = priv;
1260 memcpy(&ch->cfg, &pdata->ch[i], sizeof(pdata->ch[i]));
1261
1262 error = sh_mobile_lcdc_check_interface(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001263 if (error) {
1264 dev_err(&pdev->dev, "unsupported interface type\n");
1265 goto err1;
1266 }
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001267 init_waitqueue_head(&ch->frame_end_wait);
1268 init_completion(&ch->vsync_completion);
1269 ch->pan_offset = 0;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001270
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001271 /* probe the backlight is there is one defined */
1272 if (ch->cfg.bl_info.max_brightness)
1273 ch->bl = sh_mobile_lcdc_bl_probe(&pdev->dev, ch);
1274
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001275 switch (pdata->ch[i].chan) {
1276 case LCDC_CHAN_MAINLCD:
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001277 ch->enabled = 1 << 1;
1278 ch->reg_offs = lcdc_offs_mainlcd;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001279 j++;
1280 break;
1281 case LCDC_CHAN_SUBLCD:
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001282 ch->enabled = 1 << 2;
1283 ch->reg_offs = lcdc_offs_sublcd;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001284 j++;
1285 break;
1286 }
1287 }
1288
1289 if (!j) {
1290 dev_err(&pdev->dev, "no channels defined\n");
1291 error = -EINVAL;
1292 goto err1;
1293 }
1294
Magnus Damm417d4822011-01-05 10:21:00 +00001295 /* for dual channel LCDC (MAIN + SUB) force shared bpp setting */
1296 if (j == 2)
1297 priv->forced_bpp = pdata->ch[0].bpp;
1298
Guennadi Liakhovetskidba6f382010-06-30 09:26:35 +00001299 priv->base = ioremap_nocache(res->start, resource_size(res));
1300 if (!priv->base)
1301 goto err1;
1302
Magnus Dammb51339f2008-10-31 20:23:26 +09001303 error = sh_mobile_lcdc_setup_clocks(pdev, pdata->clock_source, priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001304 if (error) {
1305 dev_err(&pdev->dev, "unable to setup clocks\n");
1306 goto err1;
1307 }
1308
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001309 for (i = 0; i < j; i++) {
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001310 struct fb_var_screeninfo *var;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001311 const struct fb_videomode *lcd_cfg, *max_cfg = NULL;
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001312 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001313 struct sh_mobile_lcdc_chan_cfg *cfg = &ch->cfg;
1314 const struct fb_videomode *mode = cfg->lcd_cfg;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001315 unsigned long max_size = 0;
1316 int k;
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001317 int num_cfg;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001318
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001319 ch->info = framebuffer_alloc(0, &pdev->dev);
1320 if (!ch->info) {
Paul Mundte33afdd2009-07-07 11:24:32 +09001321 dev_err(&pdev->dev, "unable to allocate fb_info\n");
1322 error = -ENOMEM;
1323 break;
1324 }
1325
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001326 info = ch->info;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001327 var = &info->var;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001328 info->fbops = &sh_mobile_lcdc_ops;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001329 info->par = ch;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001330
1331 mutex_init(&ch->open_lock);
1332
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001333 for (k = 0, lcd_cfg = mode;
1334 k < cfg->num_cfg && lcd_cfg;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001335 k++, lcd_cfg++) {
1336 unsigned long size = lcd_cfg->yres * lcd_cfg->xres;
1337
1338 if (size > max_size) {
1339 max_cfg = lcd_cfg;
1340 max_size = size;
1341 }
1342 }
1343
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001344 if (!mode)
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +00001345 max_size = MAX_XRES * MAX_YRES;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001346 else if (max_cfg)
1347 dev_dbg(&pdev->dev, "Found largest videomode %ux%u\n",
1348 max_cfg->xres, max_cfg->yres);
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001349
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001350 info->fix = sh_mobile_lcdc_fix;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001351 info->fix.smem_len = max_size * (cfg->bpp / 8) * 2;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001352
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001353 if (!mode) {
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001354 mode = &default_720p;
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001355 num_cfg = 1;
1356 } else {
Guennadi Liakhovetskie0b9fb22010-12-21 11:46:26 +01001357 num_cfg = cfg->num_cfg;
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001358 }
1359
1360 fb_videomode_to_modelist(mode, num_cfg, &info->modelist);
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001361
1362 fb_videomode_to_var(var, mode);
Guennadi Liakhovetskie0b9fb22010-12-21 11:46:26 +01001363 var->width = cfg->lcd_size_cfg.width;
1364 var->height = cfg->lcd_size_cfg.height;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001365 /* Default Y virtual resolution is 2x panel size */
1366 var->yres_virtual = var->yres * 2;
Paul Mundt1c6a3072009-07-01 06:50:31 +00001367 var->activate = FB_ACTIVATE_NOW;
Paul Mundt1c6a3072009-07-01 06:50:31 +00001368
1369 error = sh_mobile_lcdc_set_bpp(var, cfg->bpp);
1370 if (error)
1371 break;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001372
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001373 buf = dma_alloc_coherent(&pdev->dev, info->fix.smem_len,
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001374 &ch->dma_handle, GFP_KERNEL);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001375 if (!buf) {
1376 dev_err(&pdev->dev, "unable to allocate buffer\n");
1377 error = -ENOMEM;
1378 break;
1379 }
1380
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001381 info->pseudo_palette = &ch->pseudo_palette;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001382 info->flags = FBINFO_FLAG_DEFAULT;
1383
1384 error = fb_alloc_cmap(&info->cmap, PALETTE_NR, 0);
1385 if (error < 0) {
1386 dev_err(&pdev->dev, "unable to allocate cmap\n");
1387 dma_free_coherent(&pdev->dev, info->fix.smem_len,
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001388 buf, ch->dma_handle);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001389 break;
1390 }
1391
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001392 info->fix.smem_start = ch->dma_handle;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001393 info->fix.line_length = var->xres * (cfg->bpp / 8);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001394 info->screen_base = buf;
1395 info->device = &pdev->dev;
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +00001396 ch->display_var = *var;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001397 }
1398
1399 if (error)
1400 goto err1;
1401
1402 error = sh_mobile_lcdc_start(priv);
1403 if (error) {
1404 dev_err(&pdev->dev, "unable to start hardware\n");
1405 goto err1;
1406 }
1407
1408 for (i = 0; i < j; i++) {
1409 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
1410
1411 info = ch->info;
1412
1413 if (info->fbdefio) {
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001414 ch->sglist = vmalloc(sizeof(struct scatterlist) *
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001415 info->fix.smem_len >> PAGE_SHIFT);
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001416 if (!ch->sglist) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001417 dev_err(&pdev->dev, "cannot allocate sglist\n");
1418 goto err1;
1419 }
1420 }
1421
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001422 info->bl_dev = ch->bl;
1423
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001424 error = register_framebuffer(info);
1425 if (error < 0)
1426 goto err1;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001427
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001428 dev_info(info->dev,
1429 "registered %s/%s as %dx%d %dbpp.\n",
1430 pdev->name,
Paul Mundt1c6a3072009-07-01 06:50:31 +00001431 (ch->cfg.chan == LCDC_CHAN_MAINLCD) ?
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001432 "mainlcd" : "sublcd",
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001433 info->var.xres, info->var.yres,
Paul Mundt1c6a3072009-07-01 06:50:31 +00001434 ch->cfg.bpp);
Magnus Damm85645572008-12-19 15:34:41 +09001435
1436 /* deferred io mode: disable clock to save power */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001437 if (info->fbdefio || info->state == FBINFO_STATE_SUSPENDED)
Magnus Damm85645572008-12-19 15:34:41 +09001438 sh_mobile_lcdc_clk_off(priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001439 }
1440
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001441 /* Failure ignored */
1442 priv->notifier.notifier_call = sh_mobile_lcdc_notify;
1443 fb_register_client(&priv->notifier);
1444
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001445 return 0;
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001446err1:
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001447 sh_mobile_lcdc_remove(pdev);
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001448
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001449 return error;
1450}
1451
1452static int sh_mobile_lcdc_remove(struct platform_device *pdev)
1453{
1454 struct sh_mobile_lcdc_priv *priv = platform_get_drvdata(pdev);
1455 struct fb_info *info;
1456 int i;
1457
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001458 fb_unregister_client(&priv->notifier);
1459
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001460 for (i = 0; i < ARRAY_SIZE(priv->ch); i++)
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001461 if (priv->ch[i].info && priv->ch[i].info->dev)
Paul Mundte33afdd2009-07-07 11:24:32 +09001462 unregister_framebuffer(priv->ch[i].info);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001463
1464 sh_mobile_lcdc_stop(priv);
1465
1466 for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
Paul Mundte33afdd2009-07-07 11:24:32 +09001467 info = priv->ch[i].info;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001468
Paul Mundte33afdd2009-07-07 11:24:32 +09001469 if (!info || !info->device)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001470 continue;
1471
Paul Mundt1c6a3072009-07-01 06:50:31 +00001472 if (priv->ch[i].sglist)
1473 vfree(priv->ch[i].sglist);
1474
Magnus Damm1ffbb032010-10-13 07:17:45 +00001475 if (info->screen_base)
1476 dma_free_coherent(&pdev->dev, info->fix.smem_len,
1477 info->screen_base,
1478 priv->ch[i].dma_handle);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001479 fb_dealloc_cmap(&info->cmap);
Paul Mundte33afdd2009-07-07 11:24:32 +09001480 framebuffer_release(info);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001481 }
1482
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001483 for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
1484 if (priv->ch[i].bl)
1485 sh_mobile_lcdc_bl_remove(priv->ch[i].bl);
1486 }
1487
Magnus Dammb51339f2008-10-31 20:23:26 +09001488 if (priv->dot_clk)
1489 clk_put(priv->dot_clk);
Magnus Damm0246c472009-08-14 10:49:08 +00001490
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001491 if (priv->dev)
1492 pm_runtime_disable(priv->dev);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001493
1494 if (priv->base)
1495 iounmap(priv->base);
1496
Magnus Damm85645572008-12-19 15:34:41 +09001497 if (priv->irq)
1498 free_irq(priv->irq, priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001499 kfree(priv);
1500 return 0;
1501}
1502
1503static struct platform_driver sh_mobile_lcdc_driver = {
1504 .driver = {
1505 .name = "sh_mobile_lcdc_fb",
1506 .owner = THIS_MODULE,
Magnus Damm2feb0752009-03-13 15:36:55 +00001507 .pm = &sh_mobile_lcdc_dev_pm_ops,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001508 },
1509 .probe = sh_mobile_lcdc_probe,
1510 .remove = sh_mobile_lcdc_remove,
1511};
1512
1513static int __init sh_mobile_lcdc_init(void)
1514{
1515 return platform_driver_register(&sh_mobile_lcdc_driver);
1516}
1517
1518static void __exit sh_mobile_lcdc_exit(void)
1519{
1520 platform_driver_unregister(&sh_mobile_lcdc_driver);
1521}
1522
1523module_init(sh_mobile_lcdc_init);
1524module_exit(sh_mobile_lcdc_exit);
1525
1526MODULE_DESCRIPTION("SuperH Mobile LCDC Framebuffer driver");
1527MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
1528MODULE_LICENSE("GPL v2");