2 * SuperH Mobile LCDC Framebuffer
4 * Copyright (c) 2008 Magnus Damm
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
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/delay.h>
15 #include <linux/clk.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/platform_device.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/interrupt.h>
20 #include <linux/vmalloc.h>
21 #include <linux/ioctl.h>
22 #include <linux/slab.h>
23 #include <linux/console.h>
24 #include <linux/backlight.h>
25 #include <linux/gpio.h>
26 #include <video/sh_mobile_lcdc.h>
27 #include <linux/atomic.h>
29 #include "sh_mobile_lcdcfb.h"
30 #include "sh_mobile_meram.h"
32 #define SIDE_B_OFFSET 0x1000
33 #define MIRROR_OFFSET 0x2000
35 /* shared registers */
37 #define _LDDCKSTPR 0x414
40 #define _LDCNT1R 0x470
41 #define _LDCNT2R 0x474
42 #define _LDRCNTR 0x478
44 #define _LDDWD0R 0x800
49 /* shared registers and their order for context save/restore */
50 static int lcdc_shared_regs
[] = {
58 #define NR_SHARED_REGS ARRAY_SIZE(lcdc_shared_regs)
63 static unsigned long lcdc_offs_mainlcd
[NR_CH_REGS
] = {
83 static unsigned long lcdc_offs_sublcd
[NR_CH_REGS
] = {
101 #define START_LCDC 0x00000001
102 #define LCDC_RESET 0x00000100
103 #define DISPLAY_BEU 0x00000008
104 #define LCDC_ENABLE 0x00000001
105 #define LDINTR_FE 0x00000400
106 #define LDINTR_VSE 0x00000200
107 #define LDINTR_VEE 0x00000100
108 #define LDINTR_FS 0x00000004
109 #define LDINTR_VSS 0x00000002
110 #define LDINTR_VES 0x00000001
111 #define LDRCNTR_SRS 0x00020000
112 #define LDRCNTR_SRC 0x00010000
113 #define LDRCNTR_MRS 0x00000002
114 #define LDRCNTR_MRC 0x00000001
115 #define LDSR_MRS 0x00000100
117 static const struct fb_videomode default_720p
= {
132 .sync
= FB_SYNC_VERT_HIGH_ACT
| FB_SYNC_HOR_HIGH_ACT
,
135 struct sh_mobile_lcdc_priv
{
141 unsigned long lddckr
;
142 struct sh_mobile_lcdc_chan ch
[2];
143 struct notifier_block notifier
;
144 unsigned long saved_shared_regs
[NR_SHARED_REGS
];
146 int forced_bpp
; /* 2 channel LCDC must share bpp setting */
147 struct sh_mobile_meram_info
*meram_dev
;
150 static bool banked(int reg_nr
)
170 static void lcdc_write_chan(struct sh_mobile_lcdc_chan
*chan
,
171 int reg_nr
, unsigned long data
)
173 iowrite32(data
, chan
->lcdc
->base
+ chan
->reg_offs
[reg_nr
]);
175 iowrite32(data
, chan
->lcdc
->base
+ chan
->reg_offs
[reg_nr
] +
179 static void lcdc_write_chan_mirror(struct sh_mobile_lcdc_chan
*chan
,
180 int reg_nr
, unsigned long data
)
182 iowrite32(data
, chan
->lcdc
->base
+ chan
->reg_offs
[reg_nr
] +
186 static unsigned long lcdc_read_chan(struct sh_mobile_lcdc_chan
*chan
,
189 return ioread32(chan
->lcdc
->base
+ chan
->reg_offs
[reg_nr
]);
192 static void lcdc_write(struct sh_mobile_lcdc_priv
*priv
,
193 unsigned long reg_offs
, unsigned long data
)
195 iowrite32(data
, priv
->base
+ reg_offs
);
198 static unsigned long lcdc_read(struct sh_mobile_lcdc_priv
*priv
,
199 unsigned long reg_offs
)
201 return ioread32(priv
->base
+ reg_offs
);
204 static void lcdc_wait_bit(struct sh_mobile_lcdc_priv
*priv
,
205 unsigned long reg_offs
,
206 unsigned long mask
, unsigned long until
)
208 while ((lcdc_read(priv
, reg_offs
) & mask
) != until
)
212 static int lcdc_chan_is_sublcd(struct sh_mobile_lcdc_chan
*chan
)
214 return chan
->cfg
.chan
== LCDC_CHAN_SUBLCD
;
217 static void lcdc_sys_write_index(void *handle
, unsigned long data
)
219 struct sh_mobile_lcdc_chan
*ch
= handle
;
221 lcdc_write(ch
->lcdc
, _LDDWD0R
, data
| 0x10000000);
222 lcdc_wait_bit(ch
->lcdc
, _LDSR
, 2, 0);
223 lcdc_write(ch
->lcdc
, _LDDWAR
, 1 | (lcdc_chan_is_sublcd(ch
) ? 2 : 0));
224 lcdc_wait_bit(ch
->lcdc
, _LDSR
, 2, 0);
227 static void lcdc_sys_write_data(void *handle
, unsigned long data
)
229 struct sh_mobile_lcdc_chan
*ch
= handle
;
231 lcdc_write(ch
->lcdc
, _LDDWD0R
, data
| 0x11000000);
232 lcdc_wait_bit(ch
->lcdc
, _LDSR
, 2, 0);
233 lcdc_write(ch
->lcdc
, _LDDWAR
, 1 | (lcdc_chan_is_sublcd(ch
) ? 2 : 0));
234 lcdc_wait_bit(ch
->lcdc
, _LDSR
, 2, 0);
237 static unsigned long lcdc_sys_read_data(void *handle
)
239 struct sh_mobile_lcdc_chan
*ch
= handle
;
241 lcdc_write(ch
->lcdc
, _LDDRDR
, 0x01000000);
242 lcdc_wait_bit(ch
->lcdc
, _LDSR
, 2, 0);
243 lcdc_write(ch
->lcdc
, _LDDRAR
, 1 | (lcdc_chan_is_sublcd(ch
) ? 2 : 0));
245 lcdc_wait_bit(ch
->lcdc
, _LDSR
, 2, 0);
247 return lcdc_read(ch
->lcdc
, _LDDRDR
) & 0x3ffff;
250 struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops
= {
251 lcdc_sys_write_index
,
256 static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv
*priv
)
258 if (atomic_inc_and_test(&priv
->hw_usecnt
)) {
259 pm_runtime_get_sync(priv
->dev
);
261 clk_enable(priv
->dot_clk
);
265 static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv
*priv
)
267 if (atomic_sub_return(1, &priv
->hw_usecnt
) == -1) {
269 clk_disable(priv
->dot_clk
);
270 pm_runtime_put(priv
->dev
);
274 static int sh_mobile_lcdc_sginit(struct fb_info
*info
,
275 struct list_head
*pagelist
)
277 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
278 unsigned int nr_pages_max
= info
->fix
.smem_len
>> PAGE_SHIFT
;
282 sg_init_table(ch
->sglist
, nr_pages_max
);
284 list_for_each_entry(page
, pagelist
, lru
)
285 sg_set_page(&ch
->sglist
[nr_pages
++], page
, PAGE_SIZE
, 0);
290 static void sh_mobile_lcdc_deferred_io(struct fb_info
*info
,
291 struct list_head
*pagelist
)
293 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
294 struct sh_mobile_lcdc_board_cfg
*bcfg
= &ch
->cfg
.board_cfg
;
296 /* enable clocks before accessing hardware */
297 sh_mobile_lcdc_clk_on(ch
->lcdc
);
300 * It's possible to get here without anything on the pagelist via
301 * sh_mobile_lcdc_deferred_io_touch() or via a userspace fsync()
302 * invocation. In the former case, the acceleration routines are
303 * stepped in to when using the framebuffer console causing the
304 * workqueue to be scheduled without any dirty pages on the list.
306 * Despite this, a panel update is still needed given that the
307 * acceleration routines have their own methods for writing in
308 * that still need to be updated.
310 * The fsync() and empty pagelist case could be optimized for,
311 * but we don't bother, as any application exhibiting such
312 * behaviour is fundamentally broken anyways.
314 if (!list_empty(pagelist
)) {
315 unsigned int nr_pages
= sh_mobile_lcdc_sginit(info
, pagelist
);
317 /* trigger panel update */
318 dma_map_sg(info
->dev
, ch
->sglist
, nr_pages
, DMA_TO_DEVICE
);
319 if (bcfg
->start_transfer
)
320 bcfg
->start_transfer(bcfg
->board_data
, ch
,
321 &sh_mobile_lcdc_sys_bus_ops
);
322 lcdc_write_chan(ch
, LDSM2R
, 1);
323 dma_unmap_sg(info
->dev
, ch
->sglist
, nr_pages
, DMA_TO_DEVICE
);
325 if (bcfg
->start_transfer
)
326 bcfg
->start_transfer(bcfg
->board_data
, ch
,
327 &sh_mobile_lcdc_sys_bus_ops
);
328 lcdc_write_chan(ch
, LDSM2R
, 1);
332 static void sh_mobile_lcdc_deferred_io_touch(struct fb_info
*info
)
334 struct fb_deferred_io
*fbdefio
= info
->fbdefio
;
337 schedule_delayed_work(&info
->deferred_work
, fbdefio
->delay
);
340 static irqreturn_t
sh_mobile_lcdc_irq(int irq
, void *data
)
342 struct sh_mobile_lcdc_priv
*priv
= data
;
343 struct sh_mobile_lcdc_chan
*ch
;
345 unsigned long ldintr
;
349 /* acknowledge interrupt */
350 ldintr
= tmp
= lcdc_read(priv
, _LDINTR
);
352 * disable further VSYNC End IRQs, preserve all other enabled IRQs,
353 * write 0 to bits 0-6 to ack all triggered IRQs.
355 tmp
&= 0xffffff00 & ~LDINTR_VEE
;
356 lcdc_write(priv
, _LDINTR
, tmp
);
358 /* figure out if this interrupt is for main or sub lcd */
359 is_sub
= (lcdc_read(priv
, _LDSR
) & (1 << 10)) ? 1 : 0;
361 /* wake up channel and disable clocks */
362 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
369 if (ldintr
& LDINTR_FS
) {
370 if (is_sub
== lcdc_chan_is_sublcd(ch
)) {
372 wake_up(&ch
->frame_end_wait
);
374 sh_mobile_lcdc_clk_off(priv
);
379 if (ldintr
& LDINTR_VES
)
380 complete(&ch
->vsync_completion
);
386 static void sh_mobile_lcdc_start_stop(struct sh_mobile_lcdc_priv
*priv
,
389 unsigned long tmp
= lcdc_read(priv
, _LDCNT2R
);
392 /* start or stop the lcdc */
394 lcdc_write(priv
, _LDCNT2R
, tmp
| START_LCDC
);
396 lcdc_write(priv
, _LDCNT2R
, tmp
& ~START_LCDC
);
398 /* wait until power is applied/stopped on all channels */
399 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++)
400 if (lcdc_read(priv
, _LDCNT2R
) & priv
->ch
[k
].enabled
)
402 tmp
= lcdc_read_chan(&priv
->ch
[k
], LDPMR
) & 3;
403 if (start
&& tmp
== 3)
405 if (!start
&& tmp
== 0)
411 lcdc_write(priv
, _LDDCKSTPR
, 1); /* stop dotclock */
414 static void sh_mobile_lcdc_geometry(struct sh_mobile_lcdc_chan
*ch
)
416 struct fb_var_screeninfo
*var
= &ch
->info
->var
, *display_var
= &ch
->display_var
;
417 unsigned long h_total
, hsync_pos
, display_h_total
;
420 tmp
= ch
->ldmt1r_value
;
421 tmp
|= (var
->sync
& FB_SYNC_VERT_HIGH_ACT
) ? 0 : 1 << 28;
422 tmp
|= (var
->sync
& FB_SYNC_HOR_HIGH_ACT
) ? 0 : 1 << 27;
423 tmp
|= (ch
->cfg
.flags
& LCDC_FLAGS_DWPOL
) ? 1 << 26 : 0;
424 tmp
|= (ch
->cfg
.flags
& LCDC_FLAGS_DIPOL
) ? 1 << 25 : 0;
425 tmp
|= (ch
->cfg
.flags
& LCDC_FLAGS_DAPOL
) ? 1 << 24 : 0;
426 tmp
|= (ch
->cfg
.flags
& LCDC_FLAGS_HSCNT
) ? 1 << 17 : 0;
427 tmp
|= (ch
->cfg
.flags
& LCDC_FLAGS_DWCNT
) ? 1 << 16 : 0;
428 lcdc_write_chan(ch
, LDMT1R
, tmp
);
431 lcdc_write_chan(ch
, LDMT2R
, ch
->cfg
.sys_bus_cfg
.ldmt2r
);
432 lcdc_write_chan(ch
, LDMT3R
, ch
->cfg
.sys_bus_cfg
.ldmt3r
);
434 /* horizontal configuration */
435 h_total
= display_var
->xres
+ display_var
->hsync_len
+
436 display_var
->left_margin
+ display_var
->right_margin
;
437 tmp
= h_total
/ 8; /* HTCN */
438 tmp
|= (min(display_var
->xres
, var
->xres
) / 8) << 16; /* HDCN */
439 lcdc_write_chan(ch
, LDHCNR
, tmp
);
441 hsync_pos
= display_var
->xres
+ display_var
->right_margin
;
442 tmp
= hsync_pos
/ 8; /* HSYNP */
443 tmp
|= (display_var
->hsync_len
/ 8) << 16; /* HSYNW */
444 lcdc_write_chan(ch
, LDHSYNR
, tmp
);
446 /* vertical configuration */
447 tmp
= display_var
->yres
+ display_var
->vsync_len
+
448 display_var
->upper_margin
+ display_var
->lower_margin
; /* VTLN */
449 tmp
|= min(display_var
->yres
, var
->yres
) << 16; /* VDLN */
450 lcdc_write_chan(ch
, LDVLNR
, tmp
);
452 tmp
= display_var
->yres
+ display_var
->lower_margin
; /* VSYNP */
453 tmp
|= display_var
->vsync_len
<< 16; /* VSYNW */
454 lcdc_write_chan(ch
, LDVSYNR
, tmp
);
456 /* Adjust horizontal synchronisation for HDMI */
457 display_h_total
= display_var
->xres
+ display_var
->hsync_len
+
458 display_var
->left_margin
+ display_var
->right_margin
;
459 tmp
= ((display_var
->xres
& 7) << 24) |
460 ((display_h_total
& 7) << 16) |
461 ((display_var
->hsync_len
& 7) << 8) |
463 lcdc_write_chan(ch
, LDHAJR
, tmp
);
466 static int sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv
*priv
)
468 struct sh_mobile_lcdc_chan
*ch
;
469 struct sh_mobile_lcdc_board_cfg
*board_cfg
;
472 unsigned long ldddsr
;
475 /* enable clocks before accessing the hardware */
476 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
477 if (priv
->ch
[k
].enabled
) {
478 sh_mobile_lcdc_clk_on(priv
);
480 bpp
= priv
->ch
[k
].info
->var
.bits_per_pixel
;
485 lcdc_write(priv
, _LDCNT2R
, lcdc_read(priv
, _LDCNT2R
) | LCDC_RESET
);
486 lcdc_wait_bit(priv
, _LDCNT2R
, LCDC_RESET
, 0);
488 /* enable LCDC channels */
489 tmp
= lcdc_read(priv
, _LDCNT2R
);
490 tmp
|= priv
->ch
[0].enabled
;
491 tmp
|= priv
->ch
[1].enabled
;
492 lcdc_write(priv
, _LDCNT2R
, tmp
);
494 /* read data from external memory, avoid using the BEU for now */
495 lcdc_write(priv
, _LDCNT2R
, lcdc_read(priv
, _LDCNT2R
) & ~DISPLAY_BEU
);
497 /* stop the lcdc first */
498 sh_mobile_lcdc_start_stop(priv
, 0);
500 /* configure clocks */
502 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
505 if (!priv
->ch
[k
].enabled
)
508 m
= ch
->cfg
.clock_divider
;
514 tmp
|= m
<< (lcdc_chan_is_sublcd(ch
) ? 8 : 0);
516 /* FIXME: sh7724 can only use 42, 48, 54 and 60 for the divider denominator */
517 lcdc_write_chan(ch
, LDDCKPAT1R
, 0);
518 lcdc_write_chan(ch
, LDDCKPAT2R
, (1 << (m
/2)) - 1);
521 lcdc_write(priv
, _LDDCKR
, tmp
);
523 /* start dotclock again */
524 lcdc_write(priv
, _LDDCKSTPR
, 0);
525 lcdc_wait_bit(priv
, _LDDCKSTPR
, ~0, 0);
527 /* interrupts are disabled to begin with */
528 lcdc_write(priv
, _LDINTR
, 0);
530 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
536 sh_mobile_lcdc_geometry(ch
);
539 lcdc_write_chan(ch
, LDPMR
, 0);
541 board_cfg
= &ch
->cfg
.board_cfg
;
542 if (board_cfg
->setup_sys
) {
543 ret
= board_cfg
->setup_sys(board_cfg
->board_data
,
544 ch
, &sh_mobile_lcdc_sys_bus_ops
);
550 /* word and long word swap */
551 ldddsr
= lcdc_read(priv
, _LDDDSR
);
552 if (priv
->ch
[0].info
->var
.nonstd
)
553 lcdc_write(priv
, _LDDDSR
, ldddsr
| 7);
557 lcdc_write(priv
, _LDDDSR
, ldddsr
| 6);
560 lcdc_write(priv
, _LDDDSR
, ldddsr
| 7);
563 lcdc_write(priv
, _LDDDSR
, ldddsr
| 4);
568 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
569 unsigned long base_addr_y
;
570 unsigned long base_addr_c
= 0;
574 if (!priv
->ch
[k
].enabled
)
577 /* set bpp format in PKF[4:0] */
578 tmp
= lcdc_read_chan(ch
, LDDFR
);
580 if (ch
->info
->var
.nonstd
) {
581 tmp
|= (ch
->info
->var
.nonstd
<< 16);
582 switch (ch
->info
->var
.bits_per_pixel
) {
593 switch (ch
->info
->var
.bits_per_pixel
) {
604 lcdc_write_chan(ch
, LDDFR
, tmp
);
606 base_addr_y
= ch
->info
->fix
.smem_start
;
607 base_addr_c
= base_addr_y
+
609 ch
->info
->var
.yres_virtual
;
610 pitch
= ch
->info
->fix
.line_length
;
612 /* test if we can enable meram */
613 if (ch
->cfg
.meram_cfg
&& priv
->meram_dev
&&
614 priv
->meram_dev
->ops
) {
615 struct sh_mobile_meram_cfg
*cfg
;
616 struct sh_mobile_meram_info
*mdev
;
617 unsigned long icb_addr_y
, icb_addr_c
;
621 cfg
= ch
->cfg
.meram_cfg
;
622 mdev
= priv
->meram_dev
;
623 /* we need to de-init configured ICBs before we
624 * we can re-initialize them.
626 if (ch
->meram_enabled
)
627 mdev
->ops
->meram_unregister(mdev
, cfg
);
629 ch
->meram_enabled
= 0;
631 if (ch
->info
->var
.nonstd
) {
632 if (ch
->info
->var
.bits_per_pixel
== 24)
633 pf
= SH_MOBILE_MERAM_PF_NV24
;
635 pf
= SH_MOBILE_MERAM_PF_NV
;
637 pf
= SH_MOBILE_MERAM_PF_RGB
;
640 ret
= mdev
->ops
->meram_register(mdev
, cfg
, pitch
,
649 /* set LDSA1R value */
650 base_addr_y
= icb_addr_y
;
653 /* set LDSA2R value if required */
655 base_addr_c
= icb_addr_c
;
657 ch
->meram_enabled
= 1;
661 /* point out our frame buffer */
662 lcdc_write_chan(ch
, LDSA1R
, base_addr_y
);
663 if (ch
->info
->var
.nonstd
)
664 lcdc_write_chan(ch
, LDSA2R
, base_addr_c
);
667 lcdc_write_chan(ch
, LDMLSR
, pitch
);
669 /* setup deferred io if SYS bus */
670 tmp
= ch
->cfg
.sys_bus_cfg
.deferred_io_msec
;
671 if (ch
->ldmt1r_value
& (1 << 12) && tmp
) {
672 ch
->defio
.deferred_io
= sh_mobile_lcdc_deferred_io
;
673 ch
->defio
.delay
= msecs_to_jiffies(tmp
);
674 ch
->info
->fbdefio
= &ch
->defio
;
675 fb_deferred_io_init(ch
->info
);
678 lcdc_write_chan(ch
, LDSM1R
, 1);
680 /* enable "Frame End Interrupt Enable" bit */
681 lcdc_write(priv
, _LDINTR
, LDINTR_FE
);
684 /* continuous read mode */
685 lcdc_write_chan(ch
, LDSM1R
, 0);
690 lcdc_write(priv
, _LDCNT1R
, LCDC_ENABLE
);
693 sh_mobile_lcdc_start_stop(priv
, 1);
696 /* tell the board code to enable the panel */
697 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
702 board_cfg
= &ch
->cfg
.board_cfg
;
703 if (board_cfg
->display_on
&& try_module_get(board_cfg
->owner
)) {
704 board_cfg
->display_on(board_cfg
->board_data
, ch
->info
);
705 module_put(board_cfg
->owner
);
709 ch
->bl
->props
.power
= FB_BLANK_UNBLANK
;
710 backlight_update_status(ch
->bl
);
717 static void sh_mobile_lcdc_stop(struct sh_mobile_lcdc_priv
*priv
)
719 struct sh_mobile_lcdc_chan
*ch
;
720 struct sh_mobile_lcdc_board_cfg
*board_cfg
;
723 /* clean up deferred io and ask board code to disable panel */
724 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
730 * flush frame, and wait for frame end interrupt
731 * clean up deferred io and enable clock
733 if (ch
->info
&& ch
->info
->fbdefio
) {
735 schedule_delayed_work(&ch
->info
->deferred_work
, 0);
736 wait_event(ch
->frame_end_wait
, ch
->frame_end
);
737 fb_deferred_io_cleanup(ch
->info
);
738 ch
->info
->fbdefio
= NULL
;
739 sh_mobile_lcdc_clk_on(priv
);
743 ch
->bl
->props
.power
= FB_BLANK_POWERDOWN
;
744 backlight_update_status(ch
->bl
);
747 board_cfg
= &ch
->cfg
.board_cfg
;
748 if (board_cfg
->display_off
&& try_module_get(board_cfg
->owner
)) {
749 board_cfg
->display_off(board_cfg
->board_data
);
750 module_put(board_cfg
->owner
);
753 /* disable the meram */
754 if (ch
->meram_enabled
) {
755 struct sh_mobile_meram_cfg
*cfg
;
756 struct sh_mobile_meram_info
*mdev
;
757 cfg
= ch
->cfg
.meram_cfg
;
758 mdev
= priv
->meram_dev
;
759 mdev
->ops
->meram_unregister(mdev
, cfg
);
760 ch
->meram_enabled
= 0;
767 sh_mobile_lcdc_start_stop(priv
, 0);
772 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++)
773 if (priv
->ch
[k
].enabled
)
774 sh_mobile_lcdc_clk_off(priv
);
777 static int sh_mobile_lcdc_check_interface(struct sh_mobile_lcdc_chan
*ch
)
781 switch (ch
->cfg
.interface_type
) {
782 case RGB8
: ifm
= 0; miftyp
= 0; break;
783 case RGB9
: ifm
= 0; miftyp
= 4; break;
784 case RGB12A
: ifm
= 0; miftyp
= 5; break;
785 case RGB12B
: ifm
= 0; miftyp
= 6; break;
786 case RGB16
: ifm
= 0; miftyp
= 7; break;
787 case RGB18
: ifm
= 0; miftyp
= 10; break;
788 case RGB24
: ifm
= 0; miftyp
= 11; break;
789 case SYS8A
: ifm
= 1; miftyp
= 0; break;
790 case SYS8B
: ifm
= 1; miftyp
= 1; break;
791 case SYS8C
: ifm
= 1; miftyp
= 2; break;
792 case SYS8D
: ifm
= 1; miftyp
= 3; break;
793 case SYS9
: ifm
= 1; miftyp
= 4; break;
794 case SYS12
: ifm
= 1; miftyp
= 5; break;
795 case SYS16A
: ifm
= 1; miftyp
= 7; break;
796 case SYS16B
: ifm
= 1; miftyp
= 8; break;
797 case SYS16C
: ifm
= 1; miftyp
= 9; break;
798 case SYS18
: ifm
= 1; miftyp
= 10; break;
799 case SYS24
: ifm
= 1; miftyp
= 11; break;
803 /* SUBLCD only supports SYS interface */
804 if (lcdc_chan_is_sublcd(ch
)) {
811 ch
->ldmt1r_value
= (ifm
<< 12) | miftyp
;
817 static int sh_mobile_lcdc_setup_clocks(struct platform_device
*pdev
,
819 struct sh_mobile_lcdc_priv
*priv
)
824 switch (clock_source
) {
825 case LCDC_CLK_BUS
: str
= "bus_clk"; icksel
= 0; break;
826 case LCDC_CLK_PERIPHERAL
: str
= "peripheral_clk"; icksel
= 1; break;
827 case LCDC_CLK_EXTERNAL
: str
= NULL
; icksel
= 2; break;
832 priv
->lddckr
= icksel
<< 16;
835 priv
->dot_clk
= clk_get(&pdev
->dev
, str
);
836 if (IS_ERR(priv
->dot_clk
)) {
837 dev_err(&pdev
->dev
, "cannot get dot clock %s\n", str
);
838 return PTR_ERR(priv
->dot_clk
);
842 /* Runtime PM support involves two step for this driver:
843 * 1) Enable Runtime PM
844 * 2) Force Runtime PM Resume since hardware is accessed from probe()
846 priv
->dev
= &pdev
->dev
;
847 pm_runtime_enable(priv
->dev
);
848 pm_runtime_resume(priv
->dev
);
852 static int sh_mobile_lcdc_setcolreg(u_int regno
,
853 u_int red
, u_int green
, u_int blue
,
854 u_int transp
, struct fb_info
*info
)
856 u32
*palette
= info
->pseudo_palette
;
858 if (regno
>= PALETTE_NR
)
861 /* only FB_VISUAL_TRUECOLOR supported */
863 red
>>= 16 - info
->var
.red
.length
;
864 green
>>= 16 - info
->var
.green
.length
;
865 blue
>>= 16 - info
->var
.blue
.length
;
866 transp
>>= 16 - info
->var
.transp
.length
;
868 palette
[regno
] = (red
<< info
->var
.red
.offset
) |
869 (green
<< info
->var
.green
.offset
) |
870 (blue
<< info
->var
.blue
.offset
) |
871 (transp
<< info
->var
.transp
.offset
);
876 static struct fb_fix_screeninfo sh_mobile_lcdc_fix
= {
877 .id
= "SH Mobile LCDC",
878 .type
= FB_TYPE_PACKED_PIXELS
,
879 .visual
= FB_VISUAL_TRUECOLOR
,
880 .accel
= FB_ACCEL_NONE
,
886 static void sh_mobile_lcdc_fillrect(struct fb_info
*info
,
887 const struct fb_fillrect
*rect
)
889 sys_fillrect(info
, rect
);
890 sh_mobile_lcdc_deferred_io_touch(info
);
893 static void sh_mobile_lcdc_copyarea(struct fb_info
*info
,
894 const struct fb_copyarea
*area
)
896 sys_copyarea(info
, area
);
897 sh_mobile_lcdc_deferred_io_touch(info
);
900 static void sh_mobile_lcdc_imageblit(struct fb_info
*info
,
901 const struct fb_image
*image
)
903 sys_imageblit(info
, image
);
904 sh_mobile_lcdc_deferred_io_touch(info
);
907 static int sh_mobile_fb_pan_display(struct fb_var_screeninfo
*var
,
908 struct fb_info
*info
)
910 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
911 struct sh_mobile_lcdc_priv
*priv
= ch
->lcdc
;
912 unsigned long ldrcntr
;
913 unsigned long new_pan_offset
;
914 unsigned long base_addr_y
, base_addr_c
;
915 unsigned long c_offset
;
918 new_pan_offset
= (var
->yoffset
* info
->fix
.line_length
) +
919 (var
->xoffset
* (info
->var
.bits_per_pixel
/ 8));
921 new_pan_offset
= (var
->yoffset
* info
->fix
.line_length
) +
924 if (new_pan_offset
== ch
->pan_offset
)
925 return 0; /* No change, do nothing */
927 ldrcntr
= lcdc_read(priv
, _LDRCNTR
);
929 /* Set the source address for the next refresh */
930 base_addr_y
= ch
->dma_handle
+ new_pan_offset
;
933 c_offset
= (var
->yoffset
*
934 info
->fix
.line_length
*
935 (info
->var
.bits_per_pixel
- 8)) / 8;
936 base_addr_c
= ch
->dma_handle
+ var
->xres
* var
->yres_virtual
+
939 if (info
->var
.bits_per_pixel
== 24)
940 base_addr_c
+= 2 * var
->xoffset
;
942 base_addr_c
+= var
->xoffset
;
946 if (!ch
->meram_enabled
) {
947 lcdc_write_chan_mirror(ch
, LDSA1R
, base_addr_y
);
949 lcdc_write_chan_mirror(ch
, LDSA2R
, base_addr_c
);
951 struct sh_mobile_meram_cfg
*cfg
;
952 struct sh_mobile_meram_info
*mdev
;
953 unsigned long icb_addr_y
, icb_addr_c
;
956 cfg
= ch
->cfg
.meram_cfg
;
957 mdev
= priv
->meram_dev
;
958 ret
= mdev
->ops
->meram_update(mdev
, cfg
,
959 base_addr_y
, base_addr_c
,
960 &icb_addr_y
, &icb_addr_c
);
964 lcdc_write_chan_mirror(ch
, LDSA1R
, icb_addr_y
);
966 lcdc_write_chan_mirror(ch
, LDSA2R
, icb_addr_c
);
970 if (lcdc_chan_is_sublcd(ch
))
971 lcdc_write(ch
->lcdc
, _LDRCNTR
, ldrcntr
^ LDRCNTR_SRS
);
973 lcdc_write(ch
->lcdc
, _LDRCNTR
, ldrcntr
^ LDRCNTR_MRS
);
975 ch
->pan_offset
= new_pan_offset
;
977 sh_mobile_lcdc_deferred_io_touch(info
);
982 static int sh_mobile_wait_for_vsync(struct fb_info
*info
)
984 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
985 unsigned long ldintr
;
988 /* Enable VSync End interrupt */
989 ldintr
= lcdc_read(ch
->lcdc
, _LDINTR
);
990 ldintr
|= LDINTR_VEE
;
991 lcdc_write(ch
->lcdc
, _LDINTR
, ldintr
);
993 ret
= wait_for_completion_interruptible_timeout(&ch
->vsync_completion
,
994 msecs_to_jiffies(100));
1001 static int sh_mobile_ioctl(struct fb_info
*info
, unsigned int cmd
,
1007 case FBIO_WAITFORVSYNC
:
1008 retval
= sh_mobile_wait_for_vsync(info
);
1012 retval
= -ENOIOCTLCMD
;
1018 static void sh_mobile_fb_reconfig(struct fb_info
*info
)
1020 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
1021 struct fb_videomode mode1
, mode2
;
1022 struct fb_event event
;
1023 int evnt
= FB_EVENT_MODE_CHANGE_ALL
;
1025 if (ch
->use_count
> 1 || (ch
->use_count
== 1 && !info
->fbcon_par
))
1026 /* More framebuffer users are active */
1029 fb_var_to_videomode(&mode1
, &ch
->display_var
);
1030 fb_var_to_videomode(&mode2
, &info
->var
);
1032 if (fb_mode_is_equal(&mode1
, &mode2
))
1035 /* Display has been re-plugged, framebuffer is free now, reconfigure */
1036 if (fb_set_var(info
, &ch
->display_var
) < 0)
1037 /* Couldn't reconfigure, hopefully, can continue as before */
1040 if (info
->var
.nonstd
)
1041 info
->fix
.line_length
= mode1
.xres
;
1043 info
->fix
.line_length
= mode1
.xres
* (ch
->cfg
.bpp
/ 8);
1046 * fb_set_var() calls the notifier change internally, only if
1047 * FBINFO_MISC_USEREVENT flag is set. Since we do not want to fake a
1048 * user event, we have to call the chain ourselves.
1051 event
.data
= &mode1
;
1052 fb_notifier_call_chain(evnt
, &event
);
1056 * Locking: both .fb_release() and .fb_open() are called with info->lock held if
1057 * user == 1, or with console sem held, if user == 0.
1059 static int sh_mobile_release(struct fb_info
*info
, int user
)
1061 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
1063 mutex_lock(&ch
->open_lock
);
1064 dev_dbg(info
->dev
, "%s(): %d users\n", __func__
, ch
->use_count
);
1068 /* Nothing to reconfigure, when called from fbcon */
1071 sh_mobile_fb_reconfig(info
);
1075 mutex_unlock(&ch
->open_lock
);
1080 static int sh_mobile_open(struct fb_info
*info
, int user
)
1082 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
1084 mutex_lock(&ch
->open_lock
);
1087 dev_dbg(info
->dev
, "%s(): %d users\n", __func__
, ch
->use_count
);
1088 mutex_unlock(&ch
->open_lock
);
1093 static int sh_mobile_check_var(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
1095 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
1096 struct sh_mobile_lcdc_priv
*p
= ch
->lcdc
;
1098 if (var
->xres
> MAX_XRES
|| var
->yres
> MAX_YRES
||
1099 var
->xres
* var
->yres
* (ch
->cfg
.bpp
/ 8) * 2 > info
->fix
.smem_len
) {
1100 dev_warn(info
->dev
, "Invalid info: %u-%u-%u-%u x %u-%u-%u-%u @ %lukHz!\n",
1101 var
->left_margin
, var
->xres
, var
->right_margin
, var
->hsync_len
,
1102 var
->upper_margin
, var
->yres
, var
->lower_margin
, var
->vsync_len
,
1103 PICOS2KHZ(var
->pixclock
));
1107 /* only accept the forced_bpp for dual channel configurations */
1108 if (p
->forced_bpp
&& p
->forced_bpp
!= var
->bits_per_pixel
)
1111 switch (var
->bits_per_pixel
) {
1112 case 16: /* PKF[4:0] = 00011 - RGB 565 */
1113 case 24: /* PKF[4:0] = 01011 - RGB 888 */
1114 case 32: /* PKF[4:0] = 00000 - RGBA 888 */
1124 * Screen blanking. Behavior is as follows:
1125 * FB_BLANK_UNBLANK: screen unblanked, clocks enabled
1126 * FB_BLANK_NORMAL: screen blanked, clocks enabled
1129 * FB_BLANK_POWEROFF: screen blanked, clocks disabled
1131 static int sh_mobile_lcdc_blank(int blank
, struct fb_info
*info
)
1133 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
1134 struct sh_mobile_lcdc_priv
*p
= ch
->lcdc
;
1136 /* blank the screen? */
1137 if (blank
> FB_BLANK_UNBLANK
&& ch
->blank_status
== FB_BLANK_UNBLANK
) {
1138 struct fb_fillrect rect
= {
1139 .width
= info
->var
.xres
,
1140 .height
= info
->var
.yres
,
1142 sh_mobile_lcdc_fillrect(info
, &rect
);
1144 /* turn clocks on? */
1145 if (blank
<= FB_BLANK_NORMAL
&& ch
->blank_status
> FB_BLANK_NORMAL
) {
1146 sh_mobile_lcdc_clk_on(p
);
1148 /* turn clocks off? */
1149 if (blank
> FB_BLANK_NORMAL
&& ch
->blank_status
<= FB_BLANK_NORMAL
) {
1150 /* make sure the screen is updated with the black fill before
1151 * switching the clocks off. one vsync is not enough since
1152 * blanking may occur in the middle of a refresh. deferred io
1153 * mode will reenable the clocks and update the screen in time,
1154 * so it does not need this. */
1155 if (!info
->fbdefio
) {
1156 sh_mobile_wait_for_vsync(info
);
1157 sh_mobile_wait_for_vsync(info
);
1159 sh_mobile_lcdc_clk_off(p
);
1162 ch
->blank_status
= blank
;
1166 static struct fb_ops sh_mobile_lcdc_ops
= {
1167 .owner
= THIS_MODULE
,
1168 .fb_setcolreg
= sh_mobile_lcdc_setcolreg
,
1169 .fb_read
= fb_sys_read
,
1170 .fb_write
= fb_sys_write
,
1171 .fb_fillrect
= sh_mobile_lcdc_fillrect
,
1172 .fb_copyarea
= sh_mobile_lcdc_copyarea
,
1173 .fb_imageblit
= sh_mobile_lcdc_imageblit
,
1174 .fb_blank
= sh_mobile_lcdc_blank
,
1175 .fb_pan_display
= sh_mobile_fb_pan_display
,
1176 .fb_ioctl
= sh_mobile_ioctl
,
1177 .fb_open
= sh_mobile_open
,
1178 .fb_release
= sh_mobile_release
,
1179 .fb_check_var
= sh_mobile_check_var
,
1182 static int sh_mobile_lcdc_update_bl(struct backlight_device
*bdev
)
1184 struct sh_mobile_lcdc_chan
*ch
= bl_get_data(bdev
);
1185 struct sh_mobile_lcdc_board_cfg
*cfg
= &ch
->cfg
.board_cfg
;
1186 int brightness
= bdev
->props
.brightness
;
1188 if (bdev
->props
.power
!= FB_BLANK_UNBLANK
||
1189 bdev
->props
.state
& (BL_CORE_SUSPENDED
| BL_CORE_FBBLANK
))
1192 return cfg
->set_brightness(cfg
->board_data
, brightness
);
1195 static int sh_mobile_lcdc_get_brightness(struct backlight_device
*bdev
)
1197 struct sh_mobile_lcdc_chan
*ch
= bl_get_data(bdev
);
1198 struct sh_mobile_lcdc_board_cfg
*cfg
= &ch
->cfg
.board_cfg
;
1200 return cfg
->get_brightness(cfg
->board_data
);
1203 static int sh_mobile_lcdc_check_fb(struct backlight_device
*bdev
,
1204 struct fb_info
*info
)
1206 return (info
->bl_dev
== bdev
);
1209 static struct backlight_ops sh_mobile_lcdc_bl_ops
= {
1210 .options
= BL_CORE_SUSPENDRESUME
,
1211 .update_status
= sh_mobile_lcdc_update_bl
,
1212 .get_brightness
= sh_mobile_lcdc_get_brightness
,
1213 .check_fb
= sh_mobile_lcdc_check_fb
,
1216 static struct backlight_device
*sh_mobile_lcdc_bl_probe(struct device
*parent
,
1217 struct sh_mobile_lcdc_chan
*ch
)
1219 struct backlight_device
*bl
;
1221 bl
= backlight_device_register(ch
->cfg
.bl_info
.name
, parent
, ch
,
1222 &sh_mobile_lcdc_bl_ops
, NULL
);
1224 dev_err(parent
, "unable to register backlight device: %ld\n",
1229 bl
->props
.max_brightness
= ch
->cfg
.bl_info
.max_brightness
;
1230 bl
->props
.brightness
= bl
->props
.max_brightness
;
1231 backlight_update_status(bl
);
1236 static void sh_mobile_lcdc_bl_remove(struct backlight_device
*bdev
)
1238 backlight_device_unregister(bdev
);
1241 static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo
*var
, int bpp
,
1249 var
->bits_per_pixel
= bpp
;
1250 var
->nonstd
= nonstd
;
1258 case 16: /* PKF[4:0] = 00011 - RGB 565 */
1259 var
->red
.offset
= 11;
1260 var
->red
.length
= 5;
1261 var
->green
.offset
= 5;
1262 var
->green
.length
= 6;
1263 var
->blue
.offset
= 0;
1264 var
->blue
.length
= 5;
1265 var
->transp
.offset
= 0;
1266 var
->transp
.length
= 0;
1269 case 24: /* PKF[4:0] = 01011 - RGB 888 */
1270 var
->red
.offset
= 16;
1271 var
->red
.length
= 8;
1272 var
->green
.offset
= 8;
1273 var
->green
.length
= 8;
1274 var
->blue
.offset
= 0;
1275 var
->blue
.length
= 8;
1276 var
->transp
.offset
= 0;
1277 var
->transp
.length
= 0;
1280 case 32: /* PKF[4:0] = 00000 - RGBA 888 */
1281 var
->red
.offset
= 16;
1282 var
->red
.length
= 8;
1283 var
->green
.offset
= 8;
1284 var
->green
.length
= 8;
1285 var
->blue
.offset
= 0;
1286 var
->blue
.length
= 8;
1287 var
->transp
.offset
= 24;
1288 var
->transp
.length
= 8;
1293 var
->bits_per_pixel
= bpp
;
1294 var
->red
.msb_right
= 0;
1295 var
->green
.msb_right
= 0;
1296 var
->blue
.msb_right
= 0;
1297 var
->transp
.msb_right
= 0;
1301 static int sh_mobile_lcdc_suspend(struct device
*dev
)
1303 struct platform_device
*pdev
= to_platform_device(dev
);
1305 sh_mobile_lcdc_stop(platform_get_drvdata(pdev
));
1309 static int sh_mobile_lcdc_resume(struct device
*dev
)
1311 struct platform_device
*pdev
= to_platform_device(dev
);
1313 return sh_mobile_lcdc_start(platform_get_drvdata(pdev
));
1316 static int sh_mobile_lcdc_runtime_suspend(struct device
*dev
)
1318 struct platform_device
*pdev
= to_platform_device(dev
);
1319 struct sh_mobile_lcdc_priv
*p
= platform_get_drvdata(pdev
);
1320 struct sh_mobile_lcdc_chan
*ch
;
1323 /* save per-channel registers */
1324 for (k
= 0; k
< ARRAY_SIZE(p
->ch
); k
++) {
1328 for (n
= 0; n
< NR_CH_REGS
; n
++)
1329 ch
->saved_ch_regs
[n
] = lcdc_read_chan(ch
, n
);
1332 /* save shared registers */
1333 for (n
= 0; n
< NR_SHARED_REGS
; n
++)
1334 p
->saved_shared_regs
[n
] = lcdc_read(p
, lcdc_shared_regs
[n
]);
1336 /* turn off LCDC hardware */
1337 lcdc_write(p
, _LDCNT1R
, 0);
1341 static int sh_mobile_lcdc_runtime_resume(struct device
*dev
)
1343 struct platform_device
*pdev
= to_platform_device(dev
);
1344 struct sh_mobile_lcdc_priv
*p
= platform_get_drvdata(pdev
);
1345 struct sh_mobile_lcdc_chan
*ch
;
1348 /* restore per-channel registers */
1349 for (k
= 0; k
< ARRAY_SIZE(p
->ch
); k
++) {
1353 for (n
= 0; n
< NR_CH_REGS
; n
++)
1354 lcdc_write_chan(ch
, n
, ch
->saved_ch_regs
[n
]);
1357 /* restore shared registers */
1358 for (n
= 0; n
< NR_SHARED_REGS
; n
++)
1359 lcdc_write(p
, lcdc_shared_regs
[n
], p
->saved_shared_regs
[n
]);
1364 static const struct dev_pm_ops sh_mobile_lcdc_dev_pm_ops
= {
1365 .suspend
= sh_mobile_lcdc_suspend
,
1366 .resume
= sh_mobile_lcdc_resume
,
1367 .runtime_suspend
= sh_mobile_lcdc_runtime_suspend
,
1368 .runtime_resume
= sh_mobile_lcdc_runtime_resume
,
1371 /* locking: called with info->lock held */
1372 static int sh_mobile_lcdc_notify(struct notifier_block
*nb
,
1373 unsigned long action
, void *data
)
1375 struct fb_event
*event
= data
;
1376 struct fb_info
*info
= event
->info
;
1377 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
1378 struct sh_mobile_lcdc_board_cfg
*board_cfg
= &ch
->cfg
.board_cfg
;
1380 if (&ch
->lcdc
->notifier
!= nb
)
1383 dev_dbg(info
->dev
, "%s(): action = %lu, data = %p\n",
1384 __func__
, action
, event
->data
);
1387 case FB_EVENT_SUSPEND
:
1388 if (board_cfg
->display_off
&& try_module_get(board_cfg
->owner
)) {
1389 board_cfg
->display_off(board_cfg
->board_data
);
1390 module_put(board_cfg
->owner
);
1392 sh_mobile_lcdc_stop(ch
->lcdc
);
1394 case FB_EVENT_RESUME
:
1395 mutex_lock(&ch
->open_lock
);
1396 sh_mobile_fb_reconfig(info
);
1397 mutex_unlock(&ch
->open_lock
);
1399 /* HDMI must be enabled before LCDC configuration */
1400 if (board_cfg
->display_on
&& try_module_get(board_cfg
->owner
)) {
1401 board_cfg
->display_on(board_cfg
->board_data
, info
);
1402 module_put(board_cfg
->owner
);
1405 sh_mobile_lcdc_start(ch
->lcdc
);
1411 static int sh_mobile_lcdc_remove(struct platform_device
*pdev
);
1413 static int __devinit
sh_mobile_lcdc_probe(struct platform_device
*pdev
)
1415 struct fb_info
*info
;
1416 struct sh_mobile_lcdc_priv
*priv
;
1417 struct sh_mobile_lcdc_info
*pdata
= pdev
->dev
.platform_data
;
1418 struct resource
*res
;
1424 dev_err(&pdev
->dev
, "no platform data defined\n");
1428 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1429 i
= platform_get_irq(pdev
, 0);
1430 if (!res
|| i
< 0) {
1431 dev_err(&pdev
->dev
, "cannot get platform resources\n");
1435 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
1437 dev_err(&pdev
->dev
, "cannot allocate device data\n");
1441 platform_set_drvdata(pdev
, priv
);
1443 error
= request_irq(i
, sh_mobile_lcdc_irq
, IRQF_DISABLED
,
1444 dev_name(&pdev
->dev
), priv
);
1446 dev_err(&pdev
->dev
, "unable to request irq\n");
1451 atomic_set(&priv
->hw_usecnt
, -1);
1454 for (i
= 0; i
< ARRAY_SIZE(pdata
->ch
); i
++) {
1455 struct sh_mobile_lcdc_chan
*ch
= priv
->ch
+ j
;
1458 memcpy(&ch
->cfg
, &pdata
->ch
[i
], sizeof(pdata
->ch
[i
]));
1460 error
= sh_mobile_lcdc_check_interface(ch
);
1462 dev_err(&pdev
->dev
, "unsupported interface type\n");
1465 init_waitqueue_head(&ch
->frame_end_wait
);
1466 init_completion(&ch
->vsync_completion
);
1469 /* probe the backlight is there is one defined */
1470 if (ch
->cfg
.bl_info
.max_brightness
)
1471 ch
->bl
= sh_mobile_lcdc_bl_probe(&pdev
->dev
, ch
);
1473 switch (pdata
->ch
[i
].chan
) {
1474 case LCDC_CHAN_MAINLCD
:
1475 ch
->enabled
= 1 << 1;
1476 ch
->reg_offs
= lcdc_offs_mainlcd
;
1479 case LCDC_CHAN_SUBLCD
:
1480 ch
->enabled
= 1 << 2;
1481 ch
->reg_offs
= lcdc_offs_sublcd
;
1488 dev_err(&pdev
->dev
, "no channels defined\n");
1493 /* for dual channel LCDC (MAIN + SUB) force shared bpp setting */
1495 priv
->forced_bpp
= pdata
->ch
[0].bpp
;
1497 priv
->base
= ioremap_nocache(res
->start
, resource_size(res
));
1501 error
= sh_mobile_lcdc_setup_clocks(pdev
, pdata
->clock_source
, priv
);
1503 dev_err(&pdev
->dev
, "unable to setup clocks\n");
1507 priv
->meram_dev
= pdata
->meram_dev
;
1509 for (i
= 0; i
< j
; i
++) {
1510 struct fb_var_screeninfo
*var
;
1511 const struct fb_videomode
*lcd_cfg
, *max_cfg
= NULL
;
1512 struct sh_mobile_lcdc_chan
*ch
= priv
->ch
+ i
;
1513 struct sh_mobile_lcdc_chan_cfg
*cfg
= &ch
->cfg
;
1514 const struct fb_videomode
*mode
= cfg
->lcd_cfg
;
1515 unsigned long max_size
= 0;
1519 ch
->info
= framebuffer_alloc(0, &pdev
->dev
);
1521 dev_err(&pdev
->dev
, "unable to allocate fb_info\n");
1528 info
->fbops
= &sh_mobile_lcdc_ops
;
1531 mutex_init(&ch
->open_lock
);
1533 for (k
= 0, lcd_cfg
= mode
;
1534 k
< cfg
->num_cfg
&& lcd_cfg
;
1536 unsigned long size
= lcd_cfg
->yres
* lcd_cfg
->xres
;
1537 /* NV12 buffers must have even number of lines */
1538 if ((cfg
->nonstd
) && cfg
->bpp
== 12 &&
1539 (lcd_cfg
->yres
& 0x1)) {
1540 dev_err(&pdev
->dev
, "yres must be multiple of 2"
1541 " for YCbCr420 mode.\n");
1546 if (size
> max_size
) {
1553 max_size
= MAX_XRES
* MAX_YRES
;
1555 dev_dbg(&pdev
->dev
, "Found largest videomode %ux%u\n",
1556 max_cfg
->xres
, max_cfg
->yres
);
1558 info
->fix
= sh_mobile_lcdc_fix
;
1559 info
->fix
.smem_len
= max_size
* 2 * cfg
->bpp
/ 8;
1561 /* Only pan in 2 line steps for NV12 */
1562 if (cfg
->nonstd
&& cfg
->bpp
== 12)
1563 info
->fix
.ypanstep
= 2;
1566 mode
= &default_720p
;
1569 num_cfg
= cfg
->num_cfg
;
1572 fb_videomode_to_modelist(mode
, num_cfg
, &info
->modelist
);
1574 fb_videomode_to_var(var
, mode
);
1575 var
->width
= cfg
->lcd_size_cfg
.width
;
1576 var
->height
= cfg
->lcd_size_cfg
.height
;
1577 /* Default Y virtual resolution is 2x panel size */
1578 var
->yres_virtual
= var
->yres
* 2;
1579 var
->activate
= FB_ACTIVATE_NOW
;
1581 error
= sh_mobile_lcdc_set_bpp(var
, cfg
->bpp
, cfg
->nonstd
);
1585 buf
= dma_alloc_coherent(&pdev
->dev
, info
->fix
.smem_len
,
1586 &ch
->dma_handle
, GFP_KERNEL
);
1588 dev_err(&pdev
->dev
, "unable to allocate buffer\n");
1593 info
->pseudo_palette
= &ch
->pseudo_palette
;
1594 info
->flags
= FBINFO_FLAG_DEFAULT
;
1596 error
= fb_alloc_cmap(&info
->cmap
, PALETTE_NR
, 0);
1598 dev_err(&pdev
->dev
, "unable to allocate cmap\n");
1599 dma_free_coherent(&pdev
->dev
, info
->fix
.smem_len
,
1600 buf
, ch
->dma_handle
);
1604 info
->fix
.smem_start
= ch
->dma_handle
;
1606 info
->fix
.line_length
= var
->xres
;
1608 info
->fix
.line_length
= var
->xres
* (cfg
->bpp
/ 8);
1610 info
->screen_base
= buf
;
1611 info
->device
= &pdev
->dev
;
1612 ch
->display_var
= *var
;
1618 error
= sh_mobile_lcdc_start(priv
);
1620 dev_err(&pdev
->dev
, "unable to start hardware\n");
1624 for (i
= 0; i
< j
; i
++) {
1625 struct sh_mobile_lcdc_chan
*ch
= priv
->ch
+ i
;
1629 if (info
->fbdefio
) {
1630 ch
->sglist
= vmalloc(sizeof(struct scatterlist
) *
1631 info
->fix
.smem_len
>> PAGE_SHIFT
);
1633 dev_err(&pdev
->dev
, "cannot allocate sglist\n");
1638 info
->bl_dev
= ch
->bl
;
1640 error
= register_framebuffer(info
);
1645 "registered %s/%s as %dx%d %dbpp.\n",
1647 (ch
->cfg
.chan
== LCDC_CHAN_MAINLCD
) ?
1648 "mainlcd" : "sublcd",
1649 info
->var
.xres
, info
->var
.yres
,
1652 /* deferred io mode: disable clock to save power */
1653 if (info
->fbdefio
|| info
->state
== FBINFO_STATE_SUSPENDED
)
1654 sh_mobile_lcdc_clk_off(priv
);
1657 /* Failure ignored */
1658 priv
->notifier
.notifier_call
= sh_mobile_lcdc_notify
;
1659 fb_register_client(&priv
->notifier
);
1663 sh_mobile_lcdc_remove(pdev
);
1668 static int sh_mobile_lcdc_remove(struct platform_device
*pdev
)
1670 struct sh_mobile_lcdc_priv
*priv
= platform_get_drvdata(pdev
);
1671 struct fb_info
*info
;
1674 fb_unregister_client(&priv
->notifier
);
1676 for (i
= 0; i
< ARRAY_SIZE(priv
->ch
); i
++)
1677 if (priv
->ch
[i
].info
&& priv
->ch
[i
].info
->dev
)
1678 unregister_framebuffer(priv
->ch
[i
].info
);
1680 sh_mobile_lcdc_stop(priv
);
1682 for (i
= 0; i
< ARRAY_SIZE(priv
->ch
); i
++) {
1683 info
= priv
->ch
[i
].info
;
1685 if (!info
|| !info
->device
)
1688 if (priv
->ch
[i
].sglist
)
1689 vfree(priv
->ch
[i
].sglist
);
1691 if (info
->screen_base
)
1692 dma_free_coherent(&pdev
->dev
, info
->fix
.smem_len
,
1694 priv
->ch
[i
].dma_handle
);
1695 fb_dealloc_cmap(&info
->cmap
);
1696 framebuffer_release(info
);
1699 for (i
= 0; i
< ARRAY_SIZE(priv
->ch
); i
++) {
1701 sh_mobile_lcdc_bl_remove(priv
->ch
[i
].bl
);
1705 clk_put(priv
->dot_clk
);
1708 pm_runtime_disable(priv
->dev
);
1711 iounmap(priv
->base
);
1714 free_irq(priv
->irq
, priv
);
1719 static struct platform_driver sh_mobile_lcdc_driver
= {
1721 .name
= "sh_mobile_lcdc_fb",
1722 .owner
= THIS_MODULE
,
1723 .pm
= &sh_mobile_lcdc_dev_pm_ops
,
1725 .probe
= sh_mobile_lcdc_probe
,
1726 .remove
= sh_mobile_lcdc_remove
,
1729 static int __init
sh_mobile_lcdc_init(void)
1731 return platform_driver_register(&sh_mobile_lcdc_driver
);
1734 static void __exit
sh_mobile_lcdc_exit(void)
1736 platform_driver_unregister(&sh_mobile_lcdc_driver
);
1739 module_init(sh_mobile_lcdc_init
);
1740 module_exit(sh_mobile_lcdc_exit
);
1742 MODULE_DESCRIPTION("SuperH Mobile LCDC Framebuffer driver");
1743 MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
1744 MODULE_LICENSE("GPL v2");