blob: 37419ba2c29a0cda8c1e3bffa3934ce3cbda7774 [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>
Paul Mundt225c9a82008-10-01 16:24:32 +090024#include <video/sh_mobile_lcdc.h>
Magnus Damm85645572008-12-19 15:34:41 +090025#include <asm/atomic.h>
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070026
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +000027#include "sh_mobile_lcdcfb.h"
28
Phil Edworthya6f15ad2009-09-15 12:00:30 +000029#define SIDE_B_OFFSET 0x1000
30#define MIRROR_OFFSET 0x2000
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070031
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070032/* shared registers */
33#define _LDDCKR 0x410
34#define _LDDCKSTPR 0x414
35#define _LDINTR 0x468
36#define _LDSR 0x46c
37#define _LDCNT1R 0x470
38#define _LDCNT2R 0x474
Phil Edworthy9dd38812009-09-15 12:00:18 +000039#define _LDRCNTR 0x478
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070040#define _LDDDSR 0x47c
41#define _LDDWD0R 0x800
42#define _LDDRDR 0x840
43#define _LDDWAR 0x900
44#define _LDDRAR 0x904
45
Magnus Damm0246c472009-08-14 10:49:08 +000046/* shared registers and their order for context save/restore */
47static int lcdc_shared_regs[] = {
48 _LDDCKR,
49 _LDDCKSTPR,
50 _LDINTR,
51 _LDDDSR,
52 _LDCNT1R,
53 _LDCNT2R,
54};
55#define NR_SHARED_REGS ARRAY_SIZE(lcdc_shared_regs)
56
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +000057#define MAX_XRES 1920
58#define MAX_YRES 1080
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070059
Magnus Damm0246c472009-08-14 10:49:08 +000060static unsigned long lcdc_offs_mainlcd[NR_CH_REGS] = {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070061 [LDDCKPAT1R] = 0x400,
62 [LDDCKPAT2R] = 0x404,
63 [LDMT1R] = 0x418,
64 [LDMT2R] = 0x41c,
65 [LDMT3R] = 0x420,
66 [LDDFR] = 0x424,
67 [LDSM1R] = 0x428,
Magnus Damm85645572008-12-19 15:34:41 +090068 [LDSM2R] = 0x42c,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070069 [LDSA1R] = 0x430,
70 [LDMLSR] = 0x438,
71 [LDHCNR] = 0x448,
72 [LDHSYNR] = 0x44c,
73 [LDVLNR] = 0x450,
74 [LDVSYNR] = 0x454,
75 [LDPMR] = 0x460,
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +000076 [LDHAJR] = 0x4a0,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070077};
78
Magnus Damm0246c472009-08-14 10:49:08 +000079static unsigned long lcdc_offs_sublcd[NR_CH_REGS] = {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070080 [LDDCKPAT1R] = 0x408,
81 [LDDCKPAT2R] = 0x40c,
82 [LDMT1R] = 0x600,
83 [LDMT2R] = 0x604,
84 [LDMT3R] = 0x608,
85 [LDDFR] = 0x60c,
86 [LDSM1R] = 0x610,
Magnus Damm85645572008-12-19 15:34:41 +090087 [LDSM2R] = 0x614,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -070088 [LDSA1R] = 0x618,
89 [LDMLSR] = 0x620,
90 [LDHCNR] = 0x624,
91 [LDHSYNR] = 0x628,
92 [LDVLNR] = 0x62c,
93 [LDVSYNR] = 0x630,
94 [LDPMR] = 0x63c,
95};
96
97#define START_LCDC 0x00000001
98#define LCDC_RESET 0x00000100
99#define DISPLAY_BEU 0x00000008
100#define LCDC_ENABLE 0x00000001
Magnus Damm85645572008-12-19 15:34:41 +0900101#define LDINTR_FE 0x00000400
Phil Edworthy9dd38812009-09-15 12:00:18 +0000102#define LDINTR_VSE 0x00000200
103#define LDINTR_VEE 0x00000100
Magnus Damm85645572008-12-19 15:34:41 +0900104#define LDINTR_FS 0x00000004
Phil Edworthy9dd38812009-09-15 12:00:18 +0000105#define LDINTR_VSS 0x00000002
106#define LDINTR_VES 0x00000001
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000107#define LDRCNTR_SRS 0x00020000
108#define LDRCNTR_SRC 0x00010000
109#define LDRCNTR_MRS 0x00000002
110#define LDRCNTR_MRC 0x00000001
Phil Edworthy40331b22010-02-15 13:57:49 +0000111#define LDSR_MRS 0x00000100
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700112
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +0000113static const struct fb_videomode default_720p = {
114 .name = "HDMI 720p",
115 .xres = 1280,
116 .yres = 720,
117
Guennadi Liakhovetski5ae0cf82010-11-04 11:06:01 +0000118 .left_margin = 220,
119 .right_margin = 110,
120 .hsync_len = 40,
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +0000121
122 .upper_margin = 20,
123 .lower_margin = 5,
124 .vsync_len = 5,
125
126 .pixclock = 13468,
Guennadi Liakhovetski5ae0cf82010-11-04 11:06:01 +0000127 .refresh = 60,
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +0000128 .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
Magnus Damm0246c472009-08-14 10:49:08 +0000129};
130
131struct sh_mobile_lcdc_priv {
132 void __iomem *base;
133 int irq;
134 atomic_t hw_usecnt;
135 struct device *dev;
136 struct clk *dot_clk;
137 unsigned long lddckr;
138 struct sh_mobile_lcdc_chan ch[2];
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000139 struct notifier_block notifier;
Magnus Damm0246c472009-08-14 10:49:08 +0000140 unsigned long saved_shared_regs[NR_SHARED_REGS];
141 int started;
142};
143
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000144static bool banked(int reg_nr)
145{
146 switch (reg_nr) {
147 case LDMT1R:
148 case LDMT2R:
149 case LDMT3R:
150 case LDDFR:
151 case LDSM1R:
152 case LDSA1R:
153 case LDMLSR:
154 case LDHCNR:
155 case LDHSYNR:
156 case LDVLNR:
157 case LDVSYNR:
158 return true;
159 }
160 return false;
161}
162
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700163static void lcdc_write_chan(struct sh_mobile_lcdc_chan *chan,
164 int reg_nr, unsigned long data)
165{
166 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr]);
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000167 if (banked(reg_nr))
168 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
169 SIDE_B_OFFSET);
170}
171
172static void lcdc_write_chan_mirror(struct sh_mobile_lcdc_chan *chan,
173 int reg_nr, unsigned long data)
174{
175 iowrite32(data, chan->lcdc->base + chan->reg_offs[reg_nr] +
176 MIRROR_OFFSET);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700177}
178
179static unsigned long lcdc_read_chan(struct sh_mobile_lcdc_chan *chan,
180 int reg_nr)
181{
182 return ioread32(chan->lcdc->base + chan->reg_offs[reg_nr]);
183}
184
185static void lcdc_write(struct sh_mobile_lcdc_priv *priv,
186 unsigned long reg_offs, unsigned long data)
187{
188 iowrite32(data, priv->base + reg_offs);
189}
190
191static unsigned long lcdc_read(struct sh_mobile_lcdc_priv *priv,
192 unsigned long reg_offs)
193{
194 return ioread32(priv->base + reg_offs);
195}
196
197static void lcdc_wait_bit(struct sh_mobile_lcdc_priv *priv,
198 unsigned long reg_offs,
199 unsigned long mask, unsigned long until)
200{
201 while ((lcdc_read(priv, reg_offs) & mask) != until)
202 cpu_relax();
203}
204
205static int lcdc_chan_is_sublcd(struct sh_mobile_lcdc_chan *chan)
206{
207 return chan->cfg.chan == LCDC_CHAN_SUBLCD;
208}
209
210static void lcdc_sys_write_index(void *handle, unsigned long data)
211{
212 struct sh_mobile_lcdc_chan *ch = handle;
213
214 lcdc_write(ch->lcdc, _LDDWD0R, data | 0x10000000);
215 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
216 lcdc_write(ch->lcdc, _LDDWAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0));
Magnus Damm909f10d2009-08-06 14:28:12 +0000217 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700218}
219
220static void lcdc_sys_write_data(void *handle, unsigned long data)
221{
222 struct sh_mobile_lcdc_chan *ch = handle;
223
224 lcdc_write(ch->lcdc, _LDDWD0R, data | 0x11000000);
225 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
226 lcdc_write(ch->lcdc, _LDDWAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0));
Magnus Damm909f10d2009-08-06 14:28:12 +0000227 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700228}
229
230static unsigned long lcdc_sys_read_data(void *handle)
231{
232 struct sh_mobile_lcdc_chan *ch = handle;
233
234 lcdc_write(ch->lcdc, _LDDRDR, 0x01000000);
235 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
236 lcdc_write(ch->lcdc, _LDDRAR, 1 | (lcdc_chan_is_sublcd(ch) ? 2 : 0));
237 udelay(1);
Magnus Damm909f10d2009-08-06 14:28:12 +0000238 lcdc_wait_bit(ch->lcdc, _LDSR, 2, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700239
Magnus Dammec56b662009-08-06 14:34:38 +0000240 return lcdc_read(ch->lcdc, _LDDRDR) & 0x3ffff;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700241}
242
243struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops = {
244 lcdc_sys_write_index,
245 lcdc_sys_write_data,
246 lcdc_sys_read_data,
247};
248
Magnus Damm85645572008-12-19 15:34:41 +0900249static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv *priv)
250{
Magnus Damm0246c472009-08-14 10:49:08 +0000251 if (atomic_inc_and_test(&priv->hw_usecnt)) {
252 pm_runtime_get_sync(priv->dev);
Magnus Damm85645572008-12-19 15:34:41 +0900253 if (priv->dot_clk)
254 clk_enable(priv->dot_clk);
255 }
256}
257
258static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv *priv)
259{
Magnus Damm0246c472009-08-14 10:49:08 +0000260 if (atomic_sub_return(1, &priv->hw_usecnt) == -1) {
Magnus Damm85645572008-12-19 15:34:41 +0900261 if (priv->dot_clk)
262 clk_disable(priv->dot_clk);
Magnus Damm0246c472009-08-14 10:49:08 +0000263 pm_runtime_put(priv->dev);
Magnus Damm85645572008-12-19 15:34:41 +0900264 }
265}
Magnus Damm85645572008-12-19 15:34:41 +0900266
Paul Mundt1c6a3072009-07-01 06:50:31 +0000267static int sh_mobile_lcdc_sginit(struct fb_info *info,
268 struct list_head *pagelist)
269{
270 struct sh_mobile_lcdc_chan *ch = info->par;
271 unsigned int nr_pages_max = info->fix.smem_len >> PAGE_SHIFT;
272 struct page *page;
273 int nr_pages = 0;
274
275 sg_init_table(ch->sglist, nr_pages_max);
276
277 list_for_each_entry(page, pagelist, lru)
278 sg_set_page(&ch->sglist[nr_pages++], page, PAGE_SIZE, 0);
279
280 return nr_pages;
281}
282
Magnus Damm85645572008-12-19 15:34:41 +0900283static void sh_mobile_lcdc_deferred_io(struct fb_info *info,
284 struct list_head *pagelist)
285{
286 struct sh_mobile_lcdc_chan *ch = info->par;
Magnus Dammef61aae2009-12-07 14:20:06 +0000287 struct sh_mobile_lcdc_board_cfg *bcfg = &ch->cfg.board_cfg;
Magnus Damm85645572008-12-19 15:34:41 +0900288
289 /* enable clocks before accessing hardware */
290 sh_mobile_lcdc_clk_on(ch->lcdc);
291
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900292 /*
293 * It's possible to get here without anything on the pagelist via
294 * sh_mobile_lcdc_deferred_io_touch() or via a userspace fsync()
295 * invocation. In the former case, the acceleration routines are
296 * stepped in to when using the framebuffer console causing the
297 * workqueue to be scheduled without any dirty pages on the list.
298 *
299 * Despite this, a panel update is still needed given that the
300 * acceleration routines have their own methods for writing in
301 * that still need to be updated.
302 *
303 * The fsync() and empty pagelist case could be optimized for,
304 * but we don't bother, as any application exhibiting such
305 * behaviour is fundamentally broken anyways.
306 */
307 if (!list_empty(pagelist)) {
308 unsigned int nr_pages = sh_mobile_lcdc_sginit(info, pagelist);
Paul Mundt1c6a3072009-07-01 06:50:31 +0000309
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900310 /* trigger panel update */
311 dma_map_sg(info->dev, ch->sglist, nr_pages, DMA_TO_DEVICE);
Magnus Dammef61aae2009-12-07 14:20:06 +0000312 if (bcfg->start_transfer)
313 bcfg->start_transfer(bcfg->board_data, ch,
314 &sh_mobile_lcdc_sys_bus_ops);
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900315 lcdc_write_chan(ch, LDSM2R, 1);
316 dma_unmap_sg(info->dev, ch->sglist, nr_pages, DMA_TO_DEVICE);
Magnus Dammef61aae2009-12-07 14:20:06 +0000317 } else {
318 if (bcfg->start_transfer)
319 bcfg->start_transfer(bcfg->board_data, ch,
320 &sh_mobile_lcdc_sys_bus_ops);
Paul Mundt5c1a56b2009-11-04 15:59:04 +0900321 lcdc_write_chan(ch, LDSM2R, 1);
Magnus Dammef61aae2009-12-07 14:20:06 +0000322 }
Magnus Damm85645572008-12-19 15:34:41 +0900323}
324
325static void sh_mobile_lcdc_deferred_io_touch(struct fb_info *info)
326{
327 struct fb_deferred_io *fbdefio = info->fbdefio;
328
329 if (fbdefio)
330 schedule_delayed_work(&info->deferred_work, fbdefio->delay);
331}
332
333static irqreturn_t sh_mobile_lcdc_irq(int irq, void *data)
334{
335 struct sh_mobile_lcdc_priv *priv = data;
Magnus Damm2feb0752009-03-13 15:36:55 +0000336 struct sh_mobile_lcdc_chan *ch;
Magnus Damm85645572008-12-19 15:34:41 +0900337 unsigned long tmp;
Phil Edworthy9dd38812009-09-15 12:00:18 +0000338 unsigned long ldintr;
Magnus Damm2feb0752009-03-13 15:36:55 +0000339 int is_sub;
340 int k;
Magnus Damm85645572008-12-19 15:34:41 +0900341
342 /* acknowledge interrupt */
Phil Edworthy9dd38812009-09-15 12:00:18 +0000343 ldintr = tmp = lcdc_read(priv, _LDINTR);
344 /*
345 * disable further VSYNC End IRQs, preserve all other enabled IRQs,
346 * write 0 to bits 0-6 to ack all triggered IRQs.
347 */
348 tmp &= 0xffffff00 & ~LDINTR_VEE;
Magnus Damm85645572008-12-19 15:34:41 +0900349 lcdc_write(priv, _LDINTR, tmp);
350
Magnus Damm2feb0752009-03-13 15:36:55 +0000351 /* figure out if this interrupt is for main or sub lcd */
352 is_sub = (lcdc_read(priv, _LDSR) & (1 << 10)) ? 1 : 0;
353
Phil Edworthy9dd38812009-09-15 12:00:18 +0000354 /* wake up channel and disable clocks */
Magnus Damm2feb0752009-03-13 15:36:55 +0000355 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
356 ch = &priv->ch[k];
357
358 if (!ch->enabled)
359 continue;
360
Phil Edworthy9dd38812009-09-15 12:00:18 +0000361 /* Frame Start */
362 if (ldintr & LDINTR_FS) {
363 if (is_sub == lcdc_chan_is_sublcd(ch)) {
364 ch->frame_end = 1;
365 wake_up(&ch->frame_end_wait);
Magnus Damm2feb0752009-03-13 15:36:55 +0000366
Phil Edworthy9dd38812009-09-15 12:00:18 +0000367 sh_mobile_lcdc_clk_off(priv);
368 }
369 }
370
371 /* VSYNC End */
Phil Edworthy40331b22010-02-15 13:57:49 +0000372 if (ldintr & LDINTR_VES)
373 complete(&ch->vsync_completion);
Magnus Damm2feb0752009-03-13 15:36:55 +0000374 }
375
Magnus Damm85645572008-12-19 15:34:41 +0900376 return IRQ_HANDLED;
377}
378
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700379static void sh_mobile_lcdc_start_stop(struct sh_mobile_lcdc_priv *priv,
380 int start)
381{
382 unsigned long tmp = lcdc_read(priv, _LDCNT2R);
383 int k;
384
385 /* start or stop the lcdc */
386 if (start)
387 lcdc_write(priv, _LDCNT2R, tmp | START_LCDC);
388 else
389 lcdc_write(priv, _LDCNT2R, tmp & ~START_LCDC);
390
391 /* wait until power is applied/stopped on all channels */
392 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
393 if (lcdc_read(priv, _LDCNT2R) & priv->ch[k].enabled)
394 while (1) {
395 tmp = lcdc_read_chan(&priv->ch[k], LDPMR) & 3;
396 if (start && tmp == 3)
397 break;
398 if (!start && tmp == 0)
399 break;
400 cpu_relax();
401 }
402
403 if (!start)
404 lcdc_write(priv, _LDDCKSTPR, 1); /* stop dotclock */
405}
406
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000407static void sh_mobile_lcdc_geometry(struct sh_mobile_lcdc_chan *ch)
408{
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000409 struct fb_var_screeninfo *var = &ch->info->var, *display_var = &ch->display_var;
410 unsigned long h_total, hsync_pos, display_h_total;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000411 u32 tmp;
412
413 tmp = ch->ldmt1r_value;
414 tmp |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? 0 : 1 << 28;
415 tmp |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? 0 : 1 << 27;
416 tmp |= (ch->cfg.flags & LCDC_FLAGS_DWPOL) ? 1 << 26 : 0;
417 tmp |= (ch->cfg.flags & LCDC_FLAGS_DIPOL) ? 1 << 25 : 0;
418 tmp |= (ch->cfg.flags & LCDC_FLAGS_DAPOL) ? 1 << 24 : 0;
419 tmp |= (ch->cfg.flags & LCDC_FLAGS_HSCNT) ? 1 << 17 : 0;
420 tmp |= (ch->cfg.flags & LCDC_FLAGS_DWCNT) ? 1 << 16 : 0;
421 lcdc_write_chan(ch, LDMT1R, tmp);
422
423 /* setup SYS bus */
424 lcdc_write_chan(ch, LDMT2R, ch->cfg.sys_bus_cfg.ldmt2r);
425 lcdc_write_chan(ch, LDMT3R, ch->cfg.sys_bus_cfg.ldmt3r);
426
427 /* horizontal configuration */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000428 h_total = display_var->xres + display_var->hsync_len +
429 display_var->left_margin + display_var->right_margin;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000430 tmp = h_total / 8; /* HTCN */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000431 tmp |= (min(display_var->xres, var->xres) / 8) << 16; /* HDCN */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000432 lcdc_write_chan(ch, LDHCNR, tmp);
433
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000434 hsync_pos = display_var->xres + display_var->right_margin;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000435 tmp = hsync_pos / 8; /* HSYNP */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000436 tmp |= (display_var->hsync_len / 8) << 16; /* HSYNW */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000437 lcdc_write_chan(ch, LDHSYNR, tmp);
438
439 /* vertical configuration */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000440 tmp = display_var->yres + display_var->vsync_len +
441 display_var->upper_margin + display_var->lower_margin; /* VTLN */
442 tmp |= min(display_var->yres, var->yres) << 16; /* VDLN */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000443 lcdc_write_chan(ch, LDVLNR, tmp);
444
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000445 tmp = display_var->yres + display_var->lower_margin; /* VSYNP */
446 tmp |= display_var->vsync_len << 16; /* VSYNW */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000447 lcdc_write_chan(ch, LDVSYNR, tmp);
448
449 /* Adjust horizontal synchronisation for HDMI */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000450 display_h_total = display_var->xres + display_var->hsync_len +
451 display_var->left_margin + display_var->right_margin;
452 tmp = ((display_var->xres & 7) << 24) |
453 ((display_h_total & 7) << 16) |
454 ((display_var->hsync_len & 7) << 8) |
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000455 hsync_pos;
456 lcdc_write_chan(ch, LDHAJR, tmp);
457}
458
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700459static int sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv *priv)
460{
461 struct sh_mobile_lcdc_chan *ch;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700462 struct sh_mobile_lcdc_board_cfg *board_cfg;
463 unsigned long tmp;
464 int k, m;
465 int ret = 0;
466
Magnus Damm85645572008-12-19 15:34:41 +0900467 /* enable clocks before accessing the hardware */
468 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
469 if (priv->ch[k].enabled)
470 sh_mobile_lcdc_clk_on(priv);
471
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700472 /* reset */
473 lcdc_write(priv, _LDCNT2R, lcdc_read(priv, _LDCNT2R) | LCDC_RESET);
474 lcdc_wait_bit(priv, _LDCNT2R, LCDC_RESET, 0);
475
476 /* enable LCDC channels */
477 tmp = lcdc_read(priv, _LDCNT2R);
478 tmp |= priv->ch[0].enabled;
479 tmp |= priv->ch[1].enabled;
480 lcdc_write(priv, _LDCNT2R, tmp);
481
482 /* read data from external memory, avoid using the BEU for now */
483 lcdc_write(priv, _LDCNT2R, lcdc_read(priv, _LDCNT2R) & ~DISPLAY_BEU);
484
485 /* stop the lcdc first */
486 sh_mobile_lcdc_start_stop(priv, 0);
487
488 /* configure clocks */
489 tmp = priv->lddckr;
490 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
491 ch = &priv->ch[k];
492
493 if (!priv->ch[k].enabled)
494 continue;
495
496 m = ch->cfg.clock_divider;
497 if (!m)
498 continue;
499
500 if (m == 1)
501 m = 1 << 6;
502 tmp |= m << (lcdc_chan_is_sublcd(ch) ? 8 : 0);
503
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000504 /* FIXME: sh7724 can only use 42, 48, 54 and 60 for the divider denominator */
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000505 lcdc_write_chan(ch, LDDCKPAT1R, 0);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700506 lcdc_write_chan(ch, LDDCKPAT2R, (1 << (m/2)) - 1);
507 }
508
509 lcdc_write(priv, _LDDCKR, tmp);
510
511 /* start dotclock again */
512 lcdc_write(priv, _LDDCKSTPR, 0);
513 lcdc_wait_bit(priv, _LDDCKSTPR, ~0, 0);
514
Magnus Damm85645572008-12-19 15:34:41 +0900515 /* interrupts are disabled to begin with */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700516 lcdc_write(priv, _LDINTR, 0);
517
518 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
519 ch = &priv->ch[k];
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700520
521 if (!ch->enabled)
522 continue;
523
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +0000524 sh_mobile_lcdc_geometry(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700525
526 /* power supply */
527 lcdc_write_chan(ch, LDPMR, 0);
528
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700529 board_cfg = &ch->cfg.board_cfg;
530 if (board_cfg->setup_sys)
531 ret = board_cfg->setup_sys(board_cfg->board_data, ch,
532 &sh_mobile_lcdc_sys_bus_ops);
533 if (ret)
534 return ret;
535 }
536
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700537 /* word and long word swap */
538 lcdc_write(priv, _LDDDSR, lcdc_read(priv, _LDDDSR) | 6);
539
540 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
541 ch = &priv->ch[k];
542
543 if (!priv->ch[k].enabled)
544 continue;
545
546 /* set bpp format in PKF[4:0] */
547 tmp = lcdc_read_chan(ch, LDDFR);
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +0000548 tmp &= ~0x0001001f;
Paul Mundte33afdd2009-07-07 11:24:32 +0900549 tmp |= (ch->info->var.bits_per_pixel == 16) ? 3 : 0;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700550 lcdc_write_chan(ch, LDDFR, tmp);
551
552 /* point out our frame buffer */
Paul Mundte33afdd2009-07-07 11:24:32 +0900553 lcdc_write_chan(ch, LDSA1R, ch->info->fix.smem_start);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700554
555 /* set line size */
Paul Mundte33afdd2009-07-07 11:24:32 +0900556 lcdc_write_chan(ch, LDMLSR, ch->info->fix.line_length);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700557
Magnus Damm85645572008-12-19 15:34:41 +0900558 /* setup deferred io if SYS bus */
559 tmp = ch->cfg.sys_bus_cfg.deferred_io_msec;
560 if (ch->ldmt1r_value & (1 << 12) && tmp) {
561 ch->defio.deferred_io = sh_mobile_lcdc_deferred_io;
562 ch->defio.delay = msecs_to_jiffies(tmp);
Paul Mundte33afdd2009-07-07 11:24:32 +0900563 ch->info->fbdefio = &ch->defio;
564 fb_deferred_io_init(ch->info);
Magnus Damm85645572008-12-19 15:34:41 +0900565
566 /* one-shot mode */
567 lcdc_write_chan(ch, LDSM1R, 1);
568
569 /* enable "Frame End Interrupt Enable" bit */
570 lcdc_write(priv, _LDINTR, LDINTR_FE);
571
572 } else {
573 /* continuous read mode */
574 lcdc_write_chan(ch, LDSM1R, 0);
575 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700576 }
577
578 /* display output */
579 lcdc_write(priv, _LDCNT1R, LCDC_ENABLE);
580
581 /* start the lcdc */
582 sh_mobile_lcdc_start_stop(priv, 1);
Magnus Damm8e9bb192009-05-20 14:34:43 +0000583 priv->started = 1;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700584
585 /* tell the board code to enable the panel */
586 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
587 ch = &priv->ch[k];
Magnus Damm21bc1f02009-08-15 02:53:16 +0000588 if (!ch->enabled)
589 continue;
590
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700591 board_cfg = &ch->cfg.board_cfg;
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000592 if (try_module_get(board_cfg->owner) && board_cfg->display_on) {
Guennadi Liakhovetskic2439392010-07-21 10:13:17 +0000593 board_cfg->display_on(board_cfg->board_data, ch->info);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000594 module_put(board_cfg->owner);
595 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700596 }
597
598 return 0;
599}
600
601static void sh_mobile_lcdc_stop(struct sh_mobile_lcdc_priv *priv)
602{
603 struct sh_mobile_lcdc_chan *ch;
604 struct sh_mobile_lcdc_board_cfg *board_cfg;
605 int k;
606
Magnus Damm2feb0752009-03-13 15:36:55 +0000607 /* clean up deferred io and ask board code to disable panel */
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700608 for (k = 0; k < ARRAY_SIZE(priv->ch); k++) {
609 ch = &priv->ch[k];
Magnus Damm21bc1f02009-08-15 02:53:16 +0000610 if (!ch->enabled)
611 continue;
Magnus Damm2feb0752009-03-13 15:36:55 +0000612
613 /* deferred io mode:
614 * flush frame, and wait for frame end interrupt
615 * clean up deferred io and enable clock
616 */
Guennadi Liakhovetski5ef6b502010-09-03 07:19:57 +0000617 if (ch->info && ch->info->fbdefio) {
Magnus Damm2feb0752009-03-13 15:36:55 +0000618 ch->frame_end = 0;
Paul Mundte33afdd2009-07-07 11:24:32 +0900619 schedule_delayed_work(&ch->info->deferred_work, 0);
Magnus Damm2feb0752009-03-13 15:36:55 +0000620 wait_event(ch->frame_end_wait, ch->frame_end);
Paul Mundte33afdd2009-07-07 11:24:32 +0900621 fb_deferred_io_cleanup(ch->info);
622 ch->info->fbdefio = NULL;
Magnus Damm2feb0752009-03-13 15:36:55 +0000623 sh_mobile_lcdc_clk_on(priv);
624 }
625
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700626 board_cfg = &ch->cfg.board_cfg;
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000627 if (try_module_get(board_cfg->owner) && board_cfg->display_off) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700628 board_cfg->display_off(board_cfg->board_data);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +0000629 module_put(board_cfg->owner);
630 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700631 }
632
633 /* stop the lcdc */
Magnus Damm8e9bb192009-05-20 14:34:43 +0000634 if (priv->started) {
635 sh_mobile_lcdc_start_stop(priv, 0);
636 priv->started = 0;
637 }
Magnus Dammb51339f2008-10-31 20:23:26 +0900638
Magnus Damm85645572008-12-19 15:34:41 +0900639 /* stop clocks */
640 for (k = 0; k < ARRAY_SIZE(priv->ch); k++)
641 if (priv->ch[k].enabled)
642 sh_mobile_lcdc_clk_off(priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700643}
644
645static int sh_mobile_lcdc_check_interface(struct sh_mobile_lcdc_chan *ch)
646{
647 int ifm, miftyp;
648
649 switch (ch->cfg.interface_type) {
650 case RGB8: ifm = 0; miftyp = 0; break;
651 case RGB9: ifm = 0; miftyp = 4; break;
652 case RGB12A: ifm = 0; miftyp = 5; break;
653 case RGB12B: ifm = 0; miftyp = 6; break;
654 case RGB16: ifm = 0; miftyp = 7; break;
655 case RGB18: ifm = 0; miftyp = 10; break;
656 case RGB24: ifm = 0; miftyp = 11; break;
657 case SYS8A: ifm = 1; miftyp = 0; break;
658 case SYS8B: ifm = 1; miftyp = 1; break;
659 case SYS8C: ifm = 1; miftyp = 2; break;
660 case SYS8D: ifm = 1; miftyp = 3; break;
661 case SYS9: ifm = 1; miftyp = 4; break;
662 case SYS12: ifm = 1; miftyp = 5; break;
663 case SYS16A: ifm = 1; miftyp = 7; break;
664 case SYS16B: ifm = 1; miftyp = 8; break;
665 case SYS16C: ifm = 1; miftyp = 9; break;
666 case SYS18: ifm = 1; miftyp = 10; break;
667 case SYS24: ifm = 1; miftyp = 11; break;
668 default: goto bad;
669 }
670
671 /* SUBLCD only supports SYS interface */
672 if (lcdc_chan_is_sublcd(ch)) {
673 if (ifm == 0)
674 goto bad;
675 else
676 ifm = 0;
677 }
678
679 ch->ldmt1r_value = (ifm << 12) | miftyp;
680 return 0;
681 bad:
682 return -EINVAL;
683}
684
Magnus Dammb51339f2008-10-31 20:23:26 +0900685static int sh_mobile_lcdc_setup_clocks(struct platform_device *pdev,
686 int clock_source,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700687 struct sh_mobile_lcdc_priv *priv)
688{
689 char *str;
690 int icksel;
691
692 switch (clock_source) {
693 case LCDC_CLK_BUS: str = "bus_clk"; icksel = 0; break;
694 case LCDC_CLK_PERIPHERAL: str = "peripheral_clk"; icksel = 1; break;
695 case LCDC_CLK_EXTERNAL: str = NULL; icksel = 2; break;
696 default:
697 return -EINVAL;
698 }
699
700 priv->lddckr = icksel << 16;
701
702 if (str) {
Magnus Dammb51339f2008-10-31 20:23:26 +0900703 priv->dot_clk = clk_get(&pdev->dev, str);
704 if (IS_ERR(priv->dot_clk)) {
705 dev_err(&pdev->dev, "cannot get dot clock %s\n", str);
Magnus Dammb51339f2008-10-31 20:23:26 +0900706 return PTR_ERR(priv->dot_clk);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700707 }
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700708 }
709
Magnus Damm0246c472009-08-14 10:49:08 +0000710 /* Runtime PM support involves two step for this driver:
711 * 1) Enable Runtime PM
712 * 2) Force Runtime PM Resume since hardware is accessed from probe()
713 */
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +0000714 priv->dev = &pdev->dev;
Magnus Damm0246c472009-08-14 10:49:08 +0000715 pm_runtime_enable(priv->dev);
716 pm_runtime_resume(priv->dev);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700717 return 0;
718}
719
720static int sh_mobile_lcdc_setcolreg(u_int regno,
721 u_int red, u_int green, u_int blue,
722 u_int transp, struct fb_info *info)
723{
724 u32 *palette = info->pseudo_palette;
725
726 if (regno >= PALETTE_NR)
727 return -EINVAL;
728
729 /* only FB_VISUAL_TRUECOLOR supported */
730
731 red >>= 16 - info->var.red.length;
732 green >>= 16 - info->var.green.length;
733 blue >>= 16 - info->var.blue.length;
734 transp >>= 16 - info->var.transp.length;
735
736 palette[regno] = (red << info->var.red.offset) |
737 (green << info->var.green.offset) |
738 (blue << info->var.blue.offset) |
739 (transp << info->var.transp.offset);
740
741 return 0;
742}
743
744static struct fb_fix_screeninfo sh_mobile_lcdc_fix = {
745 .id = "SH Mobile LCDC",
746 .type = FB_TYPE_PACKED_PIXELS,
747 .visual = FB_VISUAL_TRUECOLOR,
748 .accel = FB_ACCEL_NONE,
Phil Edworthy9dd38812009-09-15 12:00:18 +0000749 .xpanstep = 0,
750 .ypanstep = 1,
751 .ywrapstep = 0,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700752};
753
Magnus Damm85645572008-12-19 15:34:41 +0900754static void sh_mobile_lcdc_fillrect(struct fb_info *info,
755 const struct fb_fillrect *rect)
756{
757 sys_fillrect(info, rect);
758 sh_mobile_lcdc_deferred_io_touch(info);
759}
760
761static void sh_mobile_lcdc_copyarea(struct fb_info *info,
762 const struct fb_copyarea *area)
763{
764 sys_copyarea(info, area);
765 sh_mobile_lcdc_deferred_io_touch(info);
766}
767
768static void sh_mobile_lcdc_imageblit(struct fb_info *info,
769 const struct fb_image *image)
770{
771 sys_imageblit(info, image);
772 sh_mobile_lcdc_deferred_io_touch(info);
773}
774
Phil Edworthy9dd38812009-09-15 12:00:18 +0000775static int sh_mobile_fb_pan_display(struct fb_var_screeninfo *var,
776 struct fb_info *info)
777{
778 struct sh_mobile_lcdc_chan *ch = info->par;
Phil Edworthy92e1f9a2010-02-11 10:24:25 +0000779 struct sh_mobile_lcdc_priv *priv = ch->lcdc;
780 unsigned long ldrcntr;
781 unsigned long new_pan_offset;
Phil Edworthy9dd38812009-09-15 12:00:18 +0000782
Phil Edworthy92e1f9a2010-02-11 10:24:25 +0000783 new_pan_offset = (var->yoffset * info->fix.line_length) +
Phil Edworthy9dd38812009-09-15 12:00:18 +0000784 (var->xoffset * (info->var.bits_per_pixel / 8));
785
Phil Edworthy92e1f9a2010-02-11 10:24:25 +0000786 if (new_pan_offset == ch->pan_offset)
787 return 0; /* No change, do nothing */
788
789 ldrcntr = lcdc_read(priv, _LDRCNTR);
790
791 /* Set the source address for the next refresh */
792 lcdc_write_chan_mirror(ch, LDSA1R, ch->dma_handle + new_pan_offset);
793 if (lcdc_chan_is_sublcd(ch))
794 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_SRS);
795 else
796 lcdc_write(ch->lcdc, _LDRCNTR, ldrcntr ^ LDRCNTR_MRS);
797
798 ch->pan_offset = new_pan_offset;
799
800 sh_mobile_lcdc_deferred_io_touch(info);
Phil Edworthy9dd38812009-09-15 12:00:18 +0000801
802 return 0;
803}
804
Phil Edworthy40331b22010-02-15 13:57:49 +0000805static int sh_mobile_wait_for_vsync(struct fb_info *info)
806{
807 struct sh_mobile_lcdc_chan *ch = info->par;
808 unsigned long ldintr;
809 int ret;
810
811 /* Enable VSync End interrupt */
812 ldintr = lcdc_read(ch->lcdc, _LDINTR);
813 ldintr |= LDINTR_VEE;
814 lcdc_write(ch->lcdc, _LDINTR, ldintr);
815
816 ret = wait_for_completion_interruptible_timeout(&ch->vsync_completion,
817 msecs_to_jiffies(100));
818 if (!ret)
819 return -ETIMEDOUT;
820
821 return 0;
822}
823
824static int sh_mobile_ioctl(struct fb_info *info, unsigned int cmd,
825 unsigned long arg)
826{
827 int retval;
828
829 switch (cmd) {
830 case FBIO_WAITFORVSYNC:
831 retval = sh_mobile_wait_for_vsync(info);
832 break;
833
834 default:
835 retval = -ENOIOCTLCMD;
836 break;
837 }
838 return retval;
839}
840
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000841static void sh_mobile_fb_reconfig(struct fb_info *info)
842{
843 struct sh_mobile_lcdc_chan *ch = info->par;
844 struct fb_videomode mode1, mode2;
845 struct fb_event event;
846 int evnt = FB_EVENT_MODE_CHANGE_ALL;
847
848 if (ch->use_count > 1 || (ch->use_count == 1 && !info->fbcon_par))
849 /* More framebuffer users are active */
850 return;
851
852 fb_var_to_videomode(&mode1, &ch->display_var);
853 fb_var_to_videomode(&mode2, &info->var);
854
855 if (fb_mode_is_equal(&mode1, &mode2))
856 return;
857
858 /* Display has been re-plugged, framebuffer is free now, reconfigure */
859 if (fb_set_var(info, &ch->display_var) < 0)
860 /* Couldn't reconfigure, hopefully, can continue as before */
861 return;
862
863 info->fix.line_length = mode2.xres * (ch->cfg.bpp / 8);
864
865 /*
866 * fb_set_var() calls the notifier change internally, only if
867 * FBINFO_MISC_USEREVENT flag is set. Since we do not want to fake a
868 * user event, we have to call the chain ourselves.
869 */
870 event.info = info;
871 event.data = &mode2;
872 fb_notifier_call_chain(evnt, &event);
873}
874
875/*
876 * Locking: both .fb_release() and .fb_open() are called with info->lock held if
877 * user == 1, or with console sem held, if user == 0.
878 */
879static int sh_mobile_release(struct fb_info *info, int user)
880{
881 struct sh_mobile_lcdc_chan *ch = info->par;
882
883 mutex_lock(&ch->open_lock);
884 dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
885
886 ch->use_count--;
887
888 /* Nothing to reconfigure, when called from fbcon */
889 if (user) {
890 acquire_console_sem();
891 sh_mobile_fb_reconfig(info);
892 release_console_sem();
893 }
894
895 mutex_unlock(&ch->open_lock);
896
897 return 0;
898}
899
900static int sh_mobile_open(struct fb_info *info, int user)
901{
902 struct sh_mobile_lcdc_chan *ch = info->par;
903
904 mutex_lock(&ch->open_lock);
905 ch->use_count++;
906
907 dev_dbg(info->dev, "%s(): %d users\n", __func__, ch->use_count);
908 mutex_unlock(&ch->open_lock);
909
910 return 0;
911}
912
913static int sh_mobile_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
914{
915 struct sh_mobile_lcdc_chan *ch = info->par;
916
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +0000917 if (var->xres > MAX_XRES || var->yres > MAX_YRES ||
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000918 var->xres * var->yres * (ch->cfg.bpp / 8) * 2 > info->fix.smem_len) {
Paul Mundt830539d2010-11-10 17:51:44 +0900919 dev_warn(info->dev, "Invalid info: %u-%u-%u-%u x %u-%u-%u-%u @ %lukHz!\n",
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +0000920 var->left_margin, var->xres, var->right_margin, var->hsync_len,
921 var->upper_margin, var->yres, var->lower_margin, var->vsync_len,
922 PICOS2KHZ(var->pixclock));
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000923 return -EINVAL;
924 }
925 return 0;
926}
Phil Edworthy40331b22010-02-15 13:57:49 +0000927
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700928static struct fb_ops sh_mobile_lcdc_ops = {
Phil Edworthy9dd38812009-09-15 12:00:18 +0000929 .owner = THIS_MODULE,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700930 .fb_setcolreg = sh_mobile_lcdc_setcolreg,
Magnus Damm2540c112008-12-17 17:29:49 +0900931 .fb_read = fb_sys_read,
932 .fb_write = fb_sys_write,
Magnus Damm85645572008-12-19 15:34:41 +0900933 .fb_fillrect = sh_mobile_lcdc_fillrect,
934 .fb_copyarea = sh_mobile_lcdc_copyarea,
935 .fb_imageblit = sh_mobile_lcdc_imageblit,
Phil Edworthy9dd38812009-09-15 12:00:18 +0000936 .fb_pan_display = sh_mobile_fb_pan_display,
Phil Edworthy40331b22010-02-15 13:57:49 +0000937 .fb_ioctl = sh_mobile_ioctl,
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +0000938 .fb_open = sh_mobile_open,
939 .fb_release = sh_mobile_release,
940 .fb_check_var = sh_mobile_check_var,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -0700941};
942
943static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo *var, int bpp)
944{
945 switch (bpp) {
946 case 16: /* PKF[4:0] = 00011 - RGB 565 */
947 var->red.offset = 11;
948 var->red.length = 5;
949 var->green.offset = 5;
950 var->green.length = 6;
951 var->blue.offset = 0;
952 var->blue.length = 5;
953 var->transp.offset = 0;
954 var->transp.length = 0;
955 break;
956
957 case 32: /* PKF[4:0] = 00000 - RGB 888
958 * sh7722 pdf says 00RRGGBB but reality is GGBB00RR
959 * this may be because LDDDSR has word swap enabled..
960 */
961 var->red.offset = 0;
962 var->red.length = 8;
963 var->green.offset = 24;
964 var->green.length = 8;
965 var->blue.offset = 16;
966 var->blue.length = 8;
967 var->transp.offset = 0;
968 var->transp.length = 0;
969 break;
970 default:
971 return -EINVAL;
972 }
973 var->bits_per_pixel = bpp;
974 var->red.msb_right = 0;
975 var->green.msb_right = 0;
976 var->blue.msb_right = 0;
977 var->transp.msb_right = 0;
978 return 0;
979}
980
Magnus Damm2feb0752009-03-13 15:36:55 +0000981static int sh_mobile_lcdc_suspend(struct device *dev)
982{
983 struct platform_device *pdev = to_platform_device(dev);
984
985 sh_mobile_lcdc_stop(platform_get_drvdata(pdev));
986 return 0;
987}
988
989static int sh_mobile_lcdc_resume(struct device *dev)
990{
991 struct platform_device *pdev = to_platform_device(dev);
992
993 return sh_mobile_lcdc_start(platform_get_drvdata(pdev));
994}
995
Magnus Damm0246c472009-08-14 10:49:08 +0000996static int sh_mobile_lcdc_runtime_suspend(struct device *dev)
997{
998 struct platform_device *pdev = to_platform_device(dev);
999 struct sh_mobile_lcdc_priv *p = platform_get_drvdata(pdev);
1000 struct sh_mobile_lcdc_chan *ch;
1001 int k, n;
1002
1003 /* save per-channel registers */
1004 for (k = 0; k < ARRAY_SIZE(p->ch); k++) {
1005 ch = &p->ch[k];
1006 if (!ch->enabled)
1007 continue;
1008 for (n = 0; n < NR_CH_REGS; n++)
1009 ch->saved_ch_regs[n] = lcdc_read_chan(ch, n);
1010 }
1011
1012 /* save shared registers */
1013 for (n = 0; n < NR_SHARED_REGS; n++)
1014 p->saved_shared_regs[n] = lcdc_read(p, lcdc_shared_regs[n]);
1015
1016 /* turn off LCDC hardware */
1017 lcdc_write(p, _LDCNT1R, 0);
1018 return 0;
1019}
1020
1021static int sh_mobile_lcdc_runtime_resume(struct device *dev)
1022{
1023 struct platform_device *pdev = to_platform_device(dev);
1024 struct sh_mobile_lcdc_priv *p = platform_get_drvdata(pdev);
1025 struct sh_mobile_lcdc_chan *ch;
1026 int k, n;
1027
1028 /* restore per-channel registers */
1029 for (k = 0; k < ARRAY_SIZE(p->ch); k++) {
1030 ch = &p->ch[k];
1031 if (!ch->enabled)
1032 continue;
1033 for (n = 0; n < NR_CH_REGS; n++)
1034 lcdc_write_chan(ch, n, ch->saved_ch_regs[n]);
1035 }
1036
1037 /* restore shared registers */
1038 for (n = 0; n < NR_SHARED_REGS; n++)
1039 lcdc_write(p, lcdc_shared_regs[n], p->saved_shared_regs[n]);
1040
1041 return 0;
1042}
1043
Alexey Dobriyan47145212009-12-14 18:00:08 -08001044static const struct dev_pm_ops sh_mobile_lcdc_dev_pm_ops = {
Magnus Damm2feb0752009-03-13 15:36:55 +00001045 .suspend = sh_mobile_lcdc_suspend,
1046 .resume = sh_mobile_lcdc_resume,
Magnus Damm0246c472009-08-14 10:49:08 +00001047 .runtime_suspend = sh_mobile_lcdc_runtime_suspend,
1048 .runtime_resume = sh_mobile_lcdc_runtime_resume,
Magnus Damm2feb0752009-03-13 15:36:55 +00001049};
1050
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001051/* locking: called with info->lock held */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001052static int sh_mobile_lcdc_notify(struct notifier_block *nb,
1053 unsigned long action, void *data)
1054{
1055 struct fb_event *event = data;
1056 struct fb_info *info = event->info;
1057 struct sh_mobile_lcdc_chan *ch = info->par;
1058 struct sh_mobile_lcdc_board_cfg *board_cfg = &ch->cfg.board_cfg;
Guennadi Liakhovetskiafe417c2010-09-03 07:20:39 +00001059 int ret;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001060
1061 if (&ch->lcdc->notifier != nb)
Guennadi Liakhovetskibaf16372010-09-03 07:20:08 +00001062 return NOTIFY_DONE;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001063
1064 dev_dbg(info->dev, "%s(): action = %lu, data = %p\n",
1065 __func__, action, event->data);
1066
1067 switch(action) {
1068 case FB_EVENT_SUSPEND:
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001069 if (try_module_get(board_cfg->owner) && board_cfg->display_off) {
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001070 board_cfg->display_off(board_cfg->board_data);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001071 module_put(board_cfg->owner);
1072 }
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001073 pm_runtime_put(info->device);
Guennadi Liakhovetskiafe417c2010-09-03 07:20:39 +00001074 sh_mobile_lcdc_stop(ch->lcdc);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001075 break;
1076 case FB_EVENT_RESUME:
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001077 mutex_lock(&ch->open_lock);
1078 sh_mobile_fb_reconfig(info);
1079 mutex_unlock(&ch->open_lock);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001080
1081 /* HDMI must be enabled before LCDC configuration */
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001082 if (try_module_get(board_cfg->owner) && board_cfg->display_on) {
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001083 board_cfg->display_on(board_cfg->board_data, info);
Guennadi Liakhovetski6de9edd2010-09-03 07:20:23 +00001084 module_put(board_cfg->owner);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001085 }
1086
Guennadi Liakhovetskiafe417c2010-09-03 07:20:39 +00001087 ret = sh_mobile_lcdc_start(ch->lcdc);
1088 if (!ret)
1089 pm_runtime_get_sync(info->device);
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001090 }
1091
Guennadi Liakhovetskibaf16372010-09-03 07:20:08 +00001092 return NOTIFY_OK;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001093}
1094
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001095static int sh_mobile_lcdc_remove(struct platform_device *pdev);
1096
Uwe Kleine-Königc2e13032010-02-04 20:56:51 +01001097static int __devinit sh_mobile_lcdc_probe(struct platform_device *pdev)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001098{
1099 struct fb_info *info;
1100 struct sh_mobile_lcdc_priv *priv;
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001101 struct sh_mobile_lcdc_info *pdata = pdev->dev.platform_data;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001102 struct resource *res;
1103 int error;
1104 void *buf;
1105 int i, j;
1106
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001107 if (!pdata) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001108 dev_err(&pdev->dev, "no platform data defined\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001109 return -EINVAL;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001110 }
1111
1112 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Magnus Damm85645572008-12-19 15:34:41 +09001113 i = platform_get_irq(pdev, 0);
1114 if (!res || i < 0) {
1115 dev_err(&pdev->dev, "cannot get platform resources\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001116 return -ENOENT;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001117 }
1118
1119 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1120 if (!priv) {
1121 dev_err(&pdev->dev, "cannot allocate device data\n");
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001122 return -ENOMEM;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001123 }
1124
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001125 platform_set_drvdata(pdev, priv);
1126
Magnus Damm85645572008-12-19 15:34:41 +09001127 error = request_irq(i, sh_mobile_lcdc_irq, IRQF_DISABLED,
Kay Sievers7ad33e72009-03-24 16:38:21 -07001128 dev_name(&pdev->dev), priv);
Magnus Damm85645572008-12-19 15:34:41 +09001129 if (error) {
1130 dev_err(&pdev->dev, "unable to request irq\n");
1131 goto err1;
1132 }
1133
1134 priv->irq = i;
Guennadi Liakhovetski5ef6b502010-09-03 07:19:57 +00001135 atomic_set(&priv->hw_usecnt, -1);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001136
1137 j = 0;
1138 for (i = 0; i < ARRAY_SIZE(pdata->ch); i++) {
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001139 struct sh_mobile_lcdc_chan *ch = priv->ch + j;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001140
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001141 ch->lcdc = priv;
1142 memcpy(&ch->cfg, &pdata->ch[i], sizeof(pdata->ch[i]));
1143
1144 error = sh_mobile_lcdc_check_interface(ch);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001145 if (error) {
1146 dev_err(&pdev->dev, "unsupported interface type\n");
1147 goto err1;
1148 }
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001149 init_waitqueue_head(&ch->frame_end_wait);
1150 init_completion(&ch->vsync_completion);
1151 ch->pan_offset = 0;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001152
1153 switch (pdata->ch[i].chan) {
1154 case LCDC_CHAN_MAINLCD:
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001155 ch->enabled = 1 << 1;
1156 ch->reg_offs = lcdc_offs_mainlcd;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001157 j++;
1158 break;
1159 case LCDC_CHAN_SUBLCD:
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001160 ch->enabled = 1 << 2;
1161 ch->reg_offs = lcdc_offs_sublcd;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001162 j++;
1163 break;
1164 }
1165 }
1166
1167 if (!j) {
1168 dev_err(&pdev->dev, "no channels defined\n");
1169 error = -EINVAL;
1170 goto err1;
1171 }
1172
Guennadi Liakhovetskidba6f382010-06-30 09:26:35 +00001173 priv->base = ioremap_nocache(res->start, resource_size(res));
1174 if (!priv->base)
1175 goto err1;
1176
Magnus Dammb51339f2008-10-31 20:23:26 +09001177 error = sh_mobile_lcdc_setup_clocks(pdev, pdata->clock_source, priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001178 if (error) {
1179 dev_err(&pdev->dev, "unable to setup clocks\n");
1180 goto err1;
1181 }
1182
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001183 for (i = 0; i < j; i++) {
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001184 struct fb_var_screeninfo *var;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001185 const struct fb_videomode *lcd_cfg, *max_cfg = NULL;
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001186 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001187 struct sh_mobile_lcdc_chan_cfg *cfg = &ch->cfg;
1188 const struct fb_videomode *mode = cfg->lcd_cfg;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001189 unsigned long max_size = 0;
1190 int k;
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001191 int num_cfg;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001192
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001193 ch->info = framebuffer_alloc(0, &pdev->dev);
1194 if (!ch->info) {
Paul Mundte33afdd2009-07-07 11:24:32 +09001195 dev_err(&pdev->dev, "unable to allocate fb_info\n");
1196 error = -ENOMEM;
1197 break;
1198 }
1199
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001200 info = ch->info;
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001201 var = &info->var;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001202 info->fbops = &sh_mobile_lcdc_ops;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001203 info->par = ch;
Guennadi Liakhovetskidd210502010-09-14 14:48:54 +00001204
1205 mutex_init(&ch->open_lock);
1206
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001207 for (k = 0, lcd_cfg = mode;
1208 k < cfg->num_cfg && lcd_cfg;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001209 k++, lcd_cfg++) {
1210 unsigned long size = lcd_cfg->yres * lcd_cfg->xres;
1211
1212 if (size > max_size) {
1213 max_cfg = lcd_cfg;
1214 max_size = size;
1215 }
1216 }
1217
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001218 if (!mode)
Guennadi Liakhovetskid2ecbab2010-11-04 11:06:06 +00001219 max_size = MAX_XRES * MAX_YRES;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001220 else if (max_cfg)
1221 dev_dbg(&pdev->dev, "Found largest videomode %ux%u\n",
1222 max_cfg->xres, max_cfg->yres);
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001223
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001224 info->fix = sh_mobile_lcdc_fix;
Guennadi Liakhovetski71d3b0f2010-09-03 07:20:12 +00001225 info->fix.smem_len = max_size * (cfg->bpp / 8) * 2;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001226
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001227 if (!mode) {
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001228 mode = &default_720p;
Guennadi Liakhovetski5fd284e2010-11-04 11:06:11 +00001229 num_cfg = 1;
1230 } else {
1231 num_cfg = ch->cfg.num_cfg;
1232 }
1233
1234 fb_videomode_to_modelist(mode, num_cfg, &info->modelist);
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001235
1236 fb_videomode_to_var(var, mode);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001237 /* Default Y virtual resolution is 2x panel size */
1238 var->yres_virtual = var->yres * 2;
Paul Mundt1c6a3072009-07-01 06:50:31 +00001239 var->activate = FB_ACTIVATE_NOW;
Paul Mundt1c6a3072009-07-01 06:50:31 +00001240
1241 error = sh_mobile_lcdc_set_bpp(var, cfg->bpp);
1242 if (error)
1243 break;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001244
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001245 buf = dma_alloc_coherent(&pdev->dev, info->fix.smem_len,
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001246 &ch->dma_handle, GFP_KERNEL);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001247 if (!buf) {
1248 dev_err(&pdev->dev, "unable to allocate buffer\n");
1249 error = -ENOMEM;
1250 break;
1251 }
1252
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001253 info->pseudo_palette = &ch->pseudo_palette;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001254 info->flags = FBINFO_FLAG_DEFAULT;
1255
1256 error = fb_alloc_cmap(&info->cmap, PALETTE_NR, 0);
1257 if (error < 0) {
1258 dev_err(&pdev->dev, "unable to allocate cmap\n");
1259 dma_free_coherent(&pdev->dev, info->fix.smem_len,
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001260 buf, ch->dma_handle);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001261 break;
1262 }
1263
Guennadi Liakhovetski01ac25b2010-09-03 07:20:00 +00001264 info->fix.smem_start = ch->dma_handle;
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001265 info->fix.line_length = var->xres * (cfg->bpp / 8);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001266 info->screen_base = buf;
1267 info->device = &pdev->dev;
Guennadi Liakhovetski1c120de2010-09-03 07:20:27 +00001268 ch->display_var = *var;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001269 }
1270
1271 if (error)
1272 goto err1;
1273
1274 error = sh_mobile_lcdc_start(priv);
1275 if (error) {
1276 dev_err(&pdev->dev, "unable to start hardware\n");
1277 goto err1;
1278 }
1279
1280 for (i = 0; i < j; i++) {
1281 struct sh_mobile_lcdc_chan *ch = priv->ch + i;
1282
1283 info = ch->info;
1284
1285 if (info->fbdefio) {
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001286 ch->sglist = vmalloc(sizeof(struct scatterlist) *
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001287 info->fix.smem_len >> PAGE_SHIFT);
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001288 if (!ch->sglist) {
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001289 dev_err(&pdev->dev, "cannot allocate sglist\n");
1290 goto err1;
1291 }
1292 }
1293
1294 error = register_framebuffer(info);
1295 if (error < 0)
1296 goto err1;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001297
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001298 dev_info(info->dev,
1299 "registered %s/%s as %dx%d %dbpp.\n",
1300 pdev->name,
Paul Mundt1c6a3072009-07-01 06:50:31 +00001301 (ch->cfg.chan == LCDC_CHAN_MAINLCD) ?
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001302 "mainlcd" : "sublcd",
Guennadi Liakhovetskic44f9f72010-10-15 07:53:52 +00001303 info->var.xres, info->var.yres,
Paul Mundt1c6a3072009-07-01 06:50:31 +00001304 ch->cfg.bpp);
Magnus Damm85645572008-12-19 15:34:41 +09001305
1306 /* deferred io mode: disable clock to save power */
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001307 if (info->fbdefio || info->state == FBINFO_STATE_SUSPENDED)
Magnus Damm85645572008-12-19 15:34:41 +09001308 sh_mobile_lcdc_clk_off(priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001309 }
1310
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001311 /* Failure ignored */
1312 priv->notifier.notifier_call = sh_mobile_lcdc_notify;
1313 fb_register_client(&priv->notifier);
1314
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001315 return 0;
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001316err1:
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001317 sh_mobile_lcdc_remove(pdev);
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001318
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001319 return error;
1320}
1321
1322static int sh_mobile_lcdc_remove(struct platform_device *pdev)
1323{
1324 struct sh_mobile_lcdc_priv *priv = platform_get_drvdata(pdev);
1325 struct fb_info *info;
1326 int i;
1327
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001328 fb_unregister_client(&priv->notifier);
1329
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001330 for (i = 0; i < ARRAY_SIZE(priv->ch); i++)
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001331 if (priv->ch[i].info && priv->ch[i].info->dev)
Paul Mundte33afdd2009-07-07 11:24:32 +09001332 unregister_framebuffer(priv->ch[i].info);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001333
1334 sh_mobile_lcdc_stop(priv);
1335
1336 for (i = 0; i < ARRAY_SIZE(priv->ch); i++) {
Paul Mundte33afdd2009-07-07 11:24:32 +09001337 info = priv->ch[i].info;
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001338
Paul Mundte33afdd2009-07-07 11:24:32 +09001339 if (!info || !info->device)
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001340 continue;
1341
Paul Mundt1c6a3072009-07-01 06:50:31 +00001342 if (priv->ch[i].sglist)
1343 vfree(priv->ch[i].sglist);
1344
Magnus Damm1ffbb032010-10-13 07:17:45 +00001345 if (info->screen_base)
1346 dma_free_coherent(&pdev->dev, info->fix.smem_len,
1347 info->screen_base,
1348 priv->ch[i].dma_handle);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001349 fb_dealloc_cmap(&info->cmap);
Paul Mundte33afdd2009-07-07 11:24:32 +09001350 framebuffer_release(info);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001351 }
1352
Magnus Dammb51339f2008-10-31 20:23:26 +09001353 if (priv->dot_clk)
1354 clk_put(priv->dot_clk);
Magnus Damm0246c472009-08-14 10:49:08 +00001355
Guennadi Liakhovetski8bed9052010-04-30 16:07:00 +00001356 if (priv->dev)
1357 pm_runtime_disable(priv->dev);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001358
1359 if (priv->base)
1360 iounmap(priv->base);
1361
Magnus Damm85645572008-12-19 15:34:41 +09001362 if (priv->irq)
1363 free_irq(priv->irq, priv);
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001364 kfree(priv);
1365 return 0;
1366}
1367
1368static struct platform_driver sh_mobile_lcdc_driver = {
1369 .driver = {
1370 .name = "sh_mobile_lcdc_fb",
1371 .owner = THIS_MODULE,
Magnus Damm2feb0752009-03-13 15:36:55 +00001372 .pm = &sh_mobile_lcdc_dev_pm_ops,
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001373 },
1374 .probe = sh_mobile_lcdc_probe,
1375 .remove = sh_mobile_lcdc_remove,
1376};
1377
1378static int __init sh_mobile_lcdc_init(void)
1379{
1380 return platform_driver_register(&sh_mobile_lcdc_driver);
1381}
1382
1383static void __exit sh_mobile_lcdc_exit(void)
1384{
1385 platform_driver_unregister(&sh_mobile_lcdc_driver);
1386}
1387
1388module_init(sh_mobile_lcdc_init);
1389module_exit(sh_mobile_lcdc_exit);
1390
1391MODULE_DESCRIPTION("SuperH Mobile LCDC Framebuffer driver");
1392MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
1393MODULE_LICENSE("GPL v2");