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>
16 #include <linux/clk.h>
17 #include <linux/pm_runtime.h>
18 #include <linux/platform_device.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/interrupt.h>
21 #include <linux/vmalloc.h>
22 #include <video/sh_mobile_lcdc.h>
23 #include <asm/atomic.h>
26 #define SIDE_B_OFFSET 0x1000
27 #define MIRROR_OFFSET 0x2000
29 /* shared registers */
31 #define _LDDCKSTPR 0x414
34 #define _LDCNT1R 0x470
35 #define _LDCNT2R 0x474
36 #define _LDRCNTR 0x478
38 #define _LDDWD0R 0x800
43 /* shared registers and their order for context save/restore */
44 static int lcdc_shared_regs
[] = {
52 #define NR_SHARED_REGS ARRAY_SIZE(lcdc_shared_regs)
54 /* per-channel registers */
55 enum { LDDCKPAT1R
, LDDCKPAT2R
, LDMT1R
, LDMT2R
, LDMT3R
, LDDFR
, LDSM1R
,
56 LDSM2R
, LDSA1R
, LDMLSR
, LDHCNR
, LDHSYNR
, LDVLNR
, LDVSYNR
, LDPMR
,
59 static unsigned long lcdc_offs_mainlcd
[NR_CH_REGS
] = {
77 static unsigned long lcdc_offs_sublcd
[NR_CH_REGS
] = {
95 #define START_LCDC 0x00000001
96 #define LCDC_RESET 0x00000100
97 #define DISPLAY_BEU 0x00000008
98 #define LCDC_ENABLE 0x00000001
99 #define LDINTR_FE 0x00000400
100 #define LDINTR_VSE 0x00000200
101 #define LDINTR_VEE 0x00000100
102 #define LDINTR_FS 0x00000004
103 #define LDINTR_VSS 0x00000002
104 #define LDINTR_VES 0x00000001
105 #define LDRCNTR_SRS 0x00020000
106 #define LDRCNTR_SRC 0x00010000
107 #define LDRCNTR_MRS 0x00000002
108 #define LDRCNTR_MRC 0x00000001
110 struct sh_mobile_lcdc_priv
;
111 struct sh_mobile_lcdc_chan
{
112 struct sh_mobile_lcdc_priv
*lcdc
;
113 unsigned long *reg_offs
;
114 unsigned long ldmt1r_value
;
115 unsigned long enabled
; /* ME and SE in LDCNT2R */
116 struct sh_mobile_lcdc_chan_cfg cfg
;
117 u32 pseudo_palette
[PALETTE_NR
];
118 unsigned long saved_ch_regs
[NR_CH_REGS
];
119 struct fb_info
*info
;
120 dma_addr_t dma_handle
;
121 struct fb_deferred_io defio
;
122 struct scatterlist
*sglist
;
123 unsigned long frame_end
;
124 unsigned long pan_offset
;
125 unsigned long new_pan_offset
;
126 wait_queue_head_t frame_end_wait
;
129 struct sh_mobile_lcdc_priv
{
135 unsigned long lddckr
;
136 struct sh_mobile_lcdc_chan ch
[2];
137 unsigned long saved_shared_regs
[NR_SHARED_REGS
];
141 static bool banked(int reg_nr
)
160 static void lcdc_write_chan(struct sh_mobile_lcdc_chan
*chan
,
161 int reg_nr
, unsigned long data
)
163 iowrite32(data
, chan
->lcdc
->base
+ chan
->reg_offs
[reg_nr
]);
165 iowrite32(data
, chan
->lcdc
->base
+ chan
->reg_offs
[reg_nr
] +
169 static void lcdc_write_chan_mirror(struct sh_mobile_lcdc_chan
*chan
,
170 int reg_nr
, unsigned long data
)
172 iowrite32(data
, chan
->lcdc
->base
+ chan
->reg_offs
[reg_nr
] +
176 static unsigned long lcdc_read_chan(struct sh_mobile_lcdc_chan
*chan
,
179 return ioread32(chan
->lcdc
->base
+ chan
->reg_offs
[reg_nr
]);
182 static void lcdc_write(struct sh_mobile_lcdc_priv
*priv
,
183 unsigned long reg_offs
, unsigned long data
)
185 iowrite32(data
, priv
->base
+ reg_offs
);
188 static unsigned long lcdc_read(struct sh_mobile_lcdc_priv
*priv
,
189 unsigned long reg_offs
)
191 return ioread32(priv
->base
+ reg_offs
);
194 static void lcdc_wait_bit(struct sh_mobile_lcdc_priv
*priv
,
195 unsigned long reg_offs
,
196 unsigned long mask
, unsigned long until
)
198 while ((lcdc_read(priv
, reg_offs
) & mask
) != until
)
202 static int lcdc_chan_is_sublcd(struct sh_mobile_lcdc_chan
*chan
)
204 return chan
->cfg
.chan
== LCDC_CHAN_SUBLCD
;
207 static void lcdc_sys_write_index(void *handle
, unsigned long data
)
209 struct sh_mobile_lcdc_chan
*ch
= handle
;
211 lcdc_write(ch
->lcdc
, _LDDWD0R
, data
| 0x10000000);
212 lcdc_wait_bit(ch
->lcdc
, _LDSR
, 2, 0);
213 lcdc_write(ch
->lcdc
, _LDDWAR
, 1 | (lcdc_chan_is_sublcd(ch
) ? 2 : 0));
214 lcdc_wait_bit(ch
->lcdc
, _LDSR
, 2, 0);
217 static void lcdc_sys_write_data(void *handle
, unsigned long data
)
219 struct sh_mobile_lcdc_chan
*ch
= handle
;
221 lcdc_write(ch
->lcdc
, _LDDWD0R
, data
| 0x11000000);
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 unsigned long lcdc_sys_read_data(void *handle
)
229 struct sh_mobile_lcdc_chan
*ch
= handle
;
231 lcdc_write(ch
->lcdc
, _LDDRDR
, 0x01000000);
232 lcdc_wait_bit(ch
->lcdc
, _LDSR
, 2, 0);
233 lcdc_write(ch
->lcdc
, _LDDRAR
, 1 | (lcdc_chan_is_sublcd(ch
) ? 2 : 0));
235 lcdc_wait_bit(ch
->lcdc
, _LDSR
, 2, 0);
237 return lcdc_read(ch
->lcdc
, _LDDRDR
) & 0x3ffff;
240 struct sh_mobile_lcdc_sys_bus_ops sh_mobile_lcdc_sys_bus_ops
= {
241 lcdc_sys_write_index
,
246 static void sh_mobile_lcdc_clk_on(struct sh_mobile_lcdc_priv
*priv
)
248 if (atomic_inc_and_test(&priv
->hw_usecnt
)) {
249 pm_runtime_get_sync(priv
->dev
);
251 clk_enable(priv
->dot_clk
);
255 static void sh_mobile_lcdc_clk_off(struct sh_mobile_lcdc_priv
*priv
)
257 if (atomic_sub_return(1, &priv
->hw_usecnt
) == -1) {
259 clk_disable(priv
->dot_clk
);
260 pm_runtime_put(priv
->dev
);
264 static int sh_mobile_lcdc_sginit(struct fb_info
*info
,
265 struct list_head
*pagelist
)
267 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
268 unsigned int nr_pages_max
= info
->fix
.smem_len
>> PAGE_SHIFT
;
272 sg_init_table(ch
->sglist
, nr_pages_max
);
274 list_for_each_entry(page
, pagelist
, lru
)
275 sg_set_page(&ch
->sglist
[nr_pages
++], page
, PAGE_SIZE
, 0);
280 static void sh_mobile_lcdc_deferred_io(struct fb_info
*info
,
281 struct list_head
*pagelist
)
283 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
284 unsigned int nr_pages
;
286 /* enable clocks before accessing hardware */
287 sh_mobile_lcdc_clk_on(ch
->lcdc
);
289 nr_pages
= sh_mobile_lcdc_sginit(info
, pagelist
);
290 dma_map_sg(info
->dev
, ch
->sglist
, nr_pages
, DMA_TO_DEVICE
);
292 /* trigger panel update */
293 lcdc_write_chan(ch
, LDSM2R
, 1);
295 dma_unmap_sg(info
->dev
, ch
->sglist
, nr_pages
, DMA_TO_DEVICE
);
298 static void sh_mobile_lcdc_deferred_io_touch(struct fb_info
*info
)
300 struct fb_deferred_io
*fbdefio
= info
->fbdefio
;
303 schedule_delayed_work(&info
->deferred_work
, fbdefio
->delay
);
306 static irqreturn_t
sh_mobile_lcdc_irq(int irq
, void *data
)
308 struct sh_mobile_lcdc_priv
*priv
= data
;
309 struct sh_mobile_lcdc_chan
*ch
;
311 unsigned long ldintr
;
315 /* acknowledge interrupt */
316 ldintr
= tmp
= lcdc_read(priv
, _LDINTR
);
318 * disable further VSYNC End IRQs, preserve all other enabled IRQs,
319 * write 0 to bits 0-6 to ack all triggered IRQs.
321 tmp
&= 0xffffff00 & ~LDINTR_VEE
;
322 lcdc_write(priv
, _LDINTR
, tmp
);
324 /* figure out if this interrupt is for main or sub lcd */
325 is_sub
= (lcdc_read(priv
, _LDSR
) & (1 << 10)) ? 1 : 0;
327 /* wake up channel and disable clocks */
328 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
335 if (ldintr
& LDINTR_FS
) {
336 if (is_sub
== lcdc_chan_is_sublcd(ch
)) {
338 wake_up(&ch
->frame_end_wait
);
340 sh_mobile_lcdc_clk_off(priv
);
345 if (ldintr
& LDINTR_VES
) {
346 unsigned long ldrcntr
= lcdc_read(priv
, _LDRCNTR
);
347 /* Set the source address for the next refresh */
348 lcdc_write_chan_mirror(ch
, LDSA1R
, ch
->dma_handle
+
350 if (lcdc_chan_is_sublcd(ch
))
351 lcdc_write(ch
->lcdc
, _LDRCNTR
,
352 ldrcntr
^ LDRCNTR_SRS
);
354 lcdc_write(ch
->lcdc
, _LDRCNTR
,
355 ldrcntr
^ LDRCNTR_MRS
);
356 ch
->pan_offset
= ch
->new_pan_offset
;
363 static void sh_mobile_lcdc_start_stop(struct sh_mobile_lcdc_priv
*priv
,
366 unsigned long tmp
= lcdc_read(priv
, _LDCNT2R
);
369 /* start or stop the lcdc */
371 lcdc_write(priv
, _LDCNT2R
, tmp
| START_LCDC
);
373 lcdc_write(priv
, _LDCNT2R
, tmp
& ~START_LCDC
);
375 /* wait until power is applied/stopped on all channels */
376 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++)
377 if (lcdc_read(priv
, _LDCNT2R
) & priv
->ch
[k
].enabled
)
379 tmp
= lcdc_read_chan(&priv
->ch
[k
], LDPMR
) & 3;
380 if (start
&& tmp
== 3)
382 if (!start
&& tmp
== 0)
388 lcdc_write(priv
, _LDDCKSTPR
, 1); /* stop dotclock */
391 static int sh_mobile_lcdc_start(struct sh_mobile_lcdc_priv
*priv
)
393 struct sh_mobile_lcdc_chan
*ch
;
394 struct fb_videomode
*lcd_cfg
;
395 struct sh_mobile_lcdc_board_cfg
*board_cfg
;
400 /* enable clocks before accessing the hardware */
401 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++)
402 if (priv
->ch
[k
].enabled
)
403 sh_mobile_lcdc_clk_on(priv
);
406 lcdc_write(priv
, _LDCNT2R
, lcdc_read(priv
, _LDCNT2R
) | LCDC_RESET
);
407 lcdc_wait_bit(priv
, _LDCNT2R
, LCDC_RESET
, 0);
409 /* enable LCDC channels */
410 tmp
= lcdc_read(priv
, _LDCNT2R
);
411 tmp
|= priv
->ch
[0].enabled
;
412 tmp
|= priv
->ch
[1].enabled
;
413 lcdc_write(priv
, _LDCNT2R
, tmp
);
415 /* read data from external memory, avoid using the BEU for now */
416 lcdc_write(priv
, _LDCNT2R
, lcdc_read(priv
, _LDCNT2R
) & ~DISPLAY_BEU
);
418 /* stop the lcdc first */
419 sh_mobile_lcdc_start_stop(priv
, 0);
421 /* configure clocks */
423 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
426 if (!priv
->ch
[k
].enabled
)
429 m
= ch
->cfg
.clock_divider
;
435 tmp
|= m
<< (lcdc_chan_is_sublcd(ch
) ? 8 : 0);
437 lcdc_write_chan(ch
, LDDCKPAT1R
, 0x00000000);
438 lcdc_write_chan(ch
, LDDCKPAT2R
, (1 << (m
/2)) - 1);
441 lcdc_write(priv
, _LDDCKR
, tmp
);
443 /* start dotclock again */
444 lcdc_write(priv
, _LDDCKSTPR
, 0);
445 lcdc_wait_bit(priv
, _LDDCKSTPR
, ~0, 0);
447 /* interrupts are disabled to begin with */
448 lcdc_write(priv
, _LDINTR
, 0);
450 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
452 lcd_cfg
= &ch
->cfg
.lcd_cfg
;
457 tmp
= ch
->ldmt1r_value
;
458 tmp
|= (lcd_cfg
->sync
& FB_SYNC_VERT_HIGH_ACT
) ? 0 : 1 << 28;
459 tmp
|= (lcd_cfg
->sync
& FB_SYNC_HOR_HIGH_ACT
) ? 0 : 1 << 27;
460 tmp
|= (ch
->cfg
.flags
& LCDC_FLAGS_DWPOL
) ? 1 << 26 : 0;
461 tmp
|= (ch
->cfg
.flags
& LCDC_FLAGS_DIPOL
) ? 1 << 25 : 0;
462 tmp
|= (ch
->cfg
.flags
& LCDC_FLAGS_DAPOL
) ? 1 << 24 : 0;
463 tmp
|= (ch
->cfg
.flags
& LCDC_FLAGS_HSCNT
) ? 1 << 17 : 0;
464 tmp
|= (ch
->cfg
.flags
& LCDC_FLAGS_DWCNT
) ? 1 << 16 : 0;
465 lcdc_write_chan(ch
, LDMT1R
, tmp
);
468 lcdc_write_chan(ch
, LDMT2R
, ch
->cfg
.sys_bus_cfg
.ldmt2r
);
469 lcdc_write_chan(ch
, LDMT3R
, ch
->cfg
.sys_bus_cfg
.ldmt3r
);
471 /* horizontal configuration */
472 tmp
= lcd_cfg
->xres
+ lcd_cfg
->hsync_len
;
473 tmp
+= lcd_cfg
->left_margin
;
474 tmp
+= lcd_cfg
->right_margin
;
476 tmp
|= (lcd_cfg
->xres
/ 8) << 16; /* HDCN */
477 lcdc_write_chan(ch
, LDHCNR
, tmp
);
480 tmp
+= lcd_cfg
->right_margin
;
481 tmp
/= 8; /* HSYNP */
482 tmp
|= (lcd_cfg
->hsync_len
/ 8) << 16; /* HSYNW */
483 lcdc_write_chan(ch
, LDHSYNR
, tmp
);
486 lcdc_write_chan(ch
, LDPMR
, 0);
488 /* vertical configuration */
489 tmp
= lcd_cfg
->yres
+ lcd_cfg
->vsync_len
;
490 tmp
+= lcd_cfg
->upper_margin
;
491 tmp
+= lcd_cfg
->lower_margin
; /* VTLN */
492 tmp
|= lcd_cfg
->yres
<< 16; /* VDLN */
493 lcdc_write_chan(ch
, LDVLNR
, tmp
);
496 tmp
+= lcd_cfg
->lower_margin
; /* VSYNP */
497 tmp
|= lcd_cfg
->vsync_len
<< 16; /* VSYNW */
498 lcdc_write_chan(ch
, LDVSYNR
, tmp
);
500 board_cfg
= &ch
->cfg
.board_cfg
;
501 if (board_cfg
->setup_sys
)
502 ret
= board_cfg
->setup_sys(board_cfg
->board_data
, ch
,
503 &sh_mobile_lcdc_sys_bus_ops
);
508 /* word and long word swap */
509 lcdc_write(priv
, _LDDDSR
, lcdc_read(priv
, _LDDDSR
) | 6);
511 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
514 if (!priv
->ch
[k
].enabled
)
517 /* set bpp format in PKF[4:0] */
518 tmp
= lcdc_read_chan(ch
, LDDFR
);
519 tmp
&= ~(0x0001001f);
520 tmp
|= (ch
->info
->var
.bits_per_pixel
== 16) ? 3 : 0;
521 lcdc_write_chan(ch
, LDDFR
, tmp
);
523 /* point out our frame buffer */
524 lcdc_write_chan(ch
, LDSA1R
, ch
->info
->fix
.smem_start
);
527 lcdc_write_chan(ch
, LDMLSR
, ch
->info
->fix
.line_length
);
529 /* setup deferred io if SYS bus */
530 tmp
= ch
->cfg
.sys_bus_cfg
.deferred_io_msec
;
531 if (ch
->ldmt1r_value
& (1 << 12) && tmp
) {
532 ch
->defio
.deferred_io
= sh_mobile_lcdc_deferred_io
;
533 ch
->defio
.delay
= msecs_to_jiffies(tmp
);
534 ch
->info
->fbdefio
= &ch
->defio
;
535 fb_deferred_io_init(ch
->info
);
538 lcdc_write_chan(ch
, LDSM1R
, 1);
540 /* enable "Frame End Interrupt Enable" bit */
541 lcdc_write(priv
, _LDINTR
, LDINTR_FE
);
544 /* continuous read mode */
545 lcdc_write_chan(ch
, LDSM1R
, 0);
550 lcdc_write(priv
, _LDCNT1R
, LCDC_ENABLE
);
553 sh_mobile_lcdc_start_stop(priv
, 1);
556 /* tell the board code to enable the panel */
557 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
562 board_cfg
= &ch
->cfg
.board_cfg
;
563 if (board_cfg
->display_on
)
564 board_cfg
->display_on(board_cfg
->board_data
);
570 static void sh_mobile_lcdc_stop(struct sh_mobile_lcdc_priv
*priv
)
572 struct sh_mobile_lcdc_chan
*ch
;
573 struct sh_mobile_lcdc_board_cfg
*board_cfg
;
576 /* clean up deferred io and ask board code to disable panel */
577 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++) {
583 * flush frame, and wait for frame end interrupt
584 * clean up deferred io and enable clock
586 if (ch
->info
->fbdefio
) {
588 schedule_delayed_work(&ch
->info
->deferred_work
, 0);
589 wait_event(ch
->frame_end_wait
, ch
->frame_end
);
590 fb_deferred_io_cleanup(ch
->info
);
591 ch
->info
->fbdefio
= NULL
;
592 sh_mobile_lcdc_clk_on(priv
);
595 board_cfg
= &ch
->cfg
.board_cfg
;
596 if (board_cfg
->display_off
)
597 board_cfg
->display_off(board_cfg
->board_data
);
602 sh_mobile_lcdc_start_stop(priv
, 0);
607 for (k
= 0; k
< ARRAY_SIZE(priv
->ch
); k
++)
608 if (priv
->ch
[k
].enabled
)
609 sh_mobile_lcdc_clk_off(priv
);
612 static int sh_mobile_lcdc_check_interface(struct sh_mobile_lcdc_chan
*ch
)
616 switch (ch
->cfg
.interface_type
) {
617 case RGB8
: ifm
= 0; miftyp
= 0; break;
618 case RGB9
: ifm
= 0; miftyp
= 4; break;
619 case RGB12A
: ifm
= 0; miftyp
= 5; break;
620 case RGB12B
: ifm
= 0; miftyp
= 6; break;
621 case RGB16
: ifm
= 0; miftyp
= 7; break;
622 case RGB18
: ifm
= 0; miftyp
= 10; break;
623 case RGB24
: ifm
= 0; miftyp
= 11; break;
624 case SYS8A
: ifm
= 1; miftyp
= 0; break;
625 case SYS8B
: ifm
= 1; miftyp
= 1; break;
626 case SYS8C
: ifm
= 1; miftyp
= 2; break;
627 case SYS8D
: ifm
= 1; miftyp
= 3; break;
628 case SYS9
: ifm
= 1; miftyp
= 4; break;
629 case SYS12
: ifm
= 1; miftyp
= 5; break;
630 case SYS16A
: ifm
= 1; miftyp
= 7; break;
631 case SYS16B
: ifm
= 1; miftyp
= 8; break;
632 case SYS16C
: ifm
= 1; miftyp
= 9; break;
633 case SYS18
: ifm
= 1; miftyp
= 10; break;
634 case SYS24
: ifm
= 1; miftyp
= 11; break;
638 /* SUBLCD only supports SYS interface */
639 if (lcdc_chan_is_sublcd(ch
)) {
646 ch
->ldmt1r_value
= (ifm
<< 12) | miftyp
;
652 static int sh_mobile_lcdc_setup_clocks(struct platform_device
*pdev
,
654 struct sh_mobile_lcdc_priv
*priv
)
659 switch (clock_source
) {
660 case LCDC_CLK_BUS
: str
= "bus_clk"; icksel
= 0; break;
661 case LCDC_CLK_PERIPHERAL
: str
= "peripheral_clk"; icksel
= 1; break;
662 case LCDC_CLK_EXTERNAL
: str
= NULL
; icksel
= 2; break;
667 priv
->lddckr
= icksel
<< 16;
670 priv
->dot_clk
= clk_get(&pdev
->dev
, str
);
671 if (IS_ERR(priv
->dot_clk
)) {
672 dev_err(&pdev
->dev
, "cannot get dot clock %s\n", str
);
673 return PTR_ERR(priv
->dot_clk
);
676 atomic_set(&priv
->hw_usecnt
, -1);
678 /* Runtime PM support involves two step for this driver:
679 * 1) Enable Runtime PM
680 * 2) Force Runtime PM Resume since hardware is accessed from probe()
682 pm_runtime_enable(priv
->dev
);
683 pm_runtime_resume(priv
->dev
);
687 static int sh_mobile_lcdc_setcolreg(u_int regno
,
688 u_int red
, u_int green
, u_int blue
,
689 u_int transp
, struct fb_info
*info
)
691 u32
*palette
= info
->pseudo_palette
;
693 if (regno
>= PALETTE_NR
)
696 /* only FB_VISUAL_TRUECOLOR supported */
698 red
>>= 16 - info
->var
.red
.length
;
699 green
>>= 16 - info
->var
.green
.length
;
700 blue
>>= 16 - info
->var
.blue
.length
;
701 transp
>>= 16 - info
->var
.transp
.length
;
703 palette
[regno
] = (red
<< info
->var
.red
.offset
) |
704 (green
<< info
->var
.green
.offset
) |
705 (blue
<< info
->var
.blue
.offset
) |
706 (transp
<< info
->var
.transp
.offset
);
711 static struct fb_fix_screeninfo sh_mobile_lcdc_fix
= {
712 .id
= "SH Mobile LCDC",
713 .type
= FB_TYPE_PACKED_PIXELS
,
714 .visual
= FB_VISUAL_TRUECOLOR
,
715 .accel
= FB_ACCEL_NONE
,
721 static void sh_mobile_lcdc_fillrect(struct fb_info
*info
,
722 const struct fb_fillrect
*rect
)
724 sys_fillrect(info
, rect
);
725 sh_mobile_lcdc_deferred_io_touch(info
);
728 static void sh_mobile_lcdc_copyarea(struct fb_info
*info
,
729 const struct fb_copyarea
*area
)
731 sys_copyarea(info
, area
);
732 sh_mobile_lcdc_deferred_io_touch(info
);
735 static void sh_mobile_lcdc_imageblit(struct fb_info
*info
,
736 const struct fb_image
*image
)
738 sys_imageblit(info
, image
);
739 sh_mobile_lcdc_deferred_io_touch(info
);
742 static int sh_mobile_fb_pan_display(struct fb_var_screeninfo
*var
,
743 struct fb_info
*info
)
745 struct sh_mobile_lcdc_chan
*ch
= info
->par
;
747 if (info
->var
.xoffset
== var
->xoffset
&&
748 info
->var
.yoffset
== var
->yoffset
)
749 return 0; /* No change, do nothing */
751 ch
->new_pan_offset
= (var
->yoffset
* info
->fix
.line_length
) +
752 (var
->xoffset
* (info
->var
.bits_per_pixel
/ 8));
754 if (ch
->new_pan_offset
!= ch
->pan_offset
) {
755 unsigned long ldintr
;
756 ldintr
= lcdc_read(ch
->lcdc
, _LDINTR
);
757 ldintr
|= LDINTR_VEE
;
758 lcdc_write(ch
->lcdc
, _LDINTR
, ldintr
);
759 sh_mobile_lcdc_deferred_io_touch(info
);
765 static struct fb_ops sh_mobile_lcdc_ops
= {
766 .owner
= THIS_MODULE
,
767 .fb_setcolreg
= sh_mobile_lcdc_setcolreg
,
768 .fb_read
= fb_sys_read
,
769 .fb_write
= fb_sys_write
,
770 .fb_fillrect
= sh_mobile_lcdc_fillrect
,
771 .fb_copyarea
= sh_mobile_lcdc_copyarea
,
772 .fb_imageblit
= sh_mobile_lcdc_imageblit
,
773 .fb_pan_display
= sh_mobile_fb_pan_display
,
776 static int sh_mobile_lcdc_set_bpp(struct fb_var_screeninfo
*var
, int bpp
)
779 case 16: /* PKF[4:0] = 00011 - RGB 565 */
780 var
->red
.offset
= 11;
782 var
->green
.offset
= 5;
783 var
->green
.length
= 6;
784 var
->blue
.offset
= 0;
785 var
->blue
.length
= 5;
786 var
->transp
.offset
= 0;
787 var
->transp
.length
= 0;
790 case 32: /* PKF[4:0] = 00000 - RGB 888
791 * sh7722 pdf says 00RRGGBB but reality is GGBB00RR
792 * this may be because LDDDSR has word swap enabled..
796 var
->green
.offset
= 24;
797 var
->green
.length
= 8;
798 var
->blue
.offset
= 16;
799 var
->blue
.length
= 8;
800 var
->transp
.offset
= 0;
801 var
->transp
.length
= 0;
806 var
->bits_per_pixel
= bpp
;
807 var
->red
.msb_right
= 0;
808 var
->green
.msb_right
= 0;
809 var
->blue
.msb_right
= 0;
810 var
->transp
.msb_right
= 0;
814 static int sh_mobile_lcdc_suspend(struct device
*dev
)
816 struct platform_device
*pdev
= to_platform_device(dev
);
818 sh_mobile_lcdc_stop(platform_get_drvdata(pdev
));
822 static int sh_mobile_lcdc_resume(struct device
*dev
)
824 struct platform_device
*pdev
= to_platform_device(dev
);
826 return sh_mobile_lcdc_start(platform_get_drvdata(pdev
));
829 static int sh_mobile_lcdc_runtime_suspend(struct device
*dev
)
831 struct platform_device
*pdev
= to_platform_device(dev
);
832 struct sh_mobile_lcdc_priv
*p
= platform_get_drvdata(pdev
);
833 struct sh_mobile_lcdc_chan
*ch
;
836 /* save per-channel registers */
837 for (k
= 0; k
< ARRAY_SIZE(p
->ch
); k
++) {
841 for (n
= 0; n
< NR_CH_REGS
; n
++)
842 ch
->saved_ch_regs
[n
] = lcdc_read_chan(ch
, n
);
845 /* save shared registers */
846 for (n
= 0; n
< NR_SHARED_REGS
; n
++)
847 p
->saved_shared_regs
[n
] = lcdc_read(p
, lcdc_shared_regs
[n
]);
849 /* turn off LCDC hardware */
850 lcdc_write(p
, _LDCNT1R
, 0);
854 static int sh_mobile_lcdc_runtime_resume(struct device
*dev
)
856 struct platform_device
*pdev
= to_platform_device(dev
);
857 struct sh_mobile_lcdc_priv
*p
= platform_get_drvdata(pdev
);
858 struct sh_mobile_lcdc_chan
*ch
;
861 /* restore per-channel registers */
862 for (k
= 0; k
< ARRAY_SIZE(p
->ch
); k
++) {
866 for (n
= 0; n
< NR_CH_REGS
; n
++)
867 lcdc_write_chan(ch
, n
, ch
->saved_ch_regs
[n
]);
870 /* restore shared registers */
871 for (n
= 0; n
< NR_SHARED_REGS
; n
++)
872 lcdc_write(p
, lcdc_shared_regs
[n
], p
->saved_shared_regs
[n
]);
877 static struct dev_pm_ops sh_mobile_lcdc_dev_pm_ops
= {
878 .suspend
= sh_mobile_lcdc_suspend
,
879 .resume
= sh_mobile_lcdc_resume
,
880 .runtime_suspend
= sh_mobile_lcdc_runtime_suspend
,
881 .runtime_resume
= sh_mobile_lcdc_runtime_resume
,
884 static int sh_mobile_lcdc_remove(struct platform_device
*pdev
);
886 static int __init
sh_mobile_lcdc_probe(struct platform_device
*pdev
)
888 struct fb_info
*info
;
889 struct sh_mobile_lcdc_priv
*priv
;
890 struct sh_mobile_lcdc_info
*pdata
;
891 struct sh_mobile_lcdc_chan_cfg
*cfg
;
892 struct resource
*res
;
897 if (!pdev
->dev
.platform_data
) {
898 dev_err(&pdev
->dev
, "no platform data defined\n");
903 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
904 i
= platform_get_irq(pdev
, 0);
906 dev_err(&pdev
->dev
, "cannot get platform resources\n");
911 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
913 dev_err(&pdev
->dev
, "cannot allocate device data\n");
918 error
= request_irq(i
, sh_mobile_lcdc_irq
, IRQF_DISABLED
,
919 dev_name(&pdev
->dev
), priv
);
921 dev_err(&pdev
->dev
, "unable to request irq\n");
926 priv
->dev
= &pdev
->dev
;
927 platform_set_drvdata(pdev
, priv
);
928 pdata
= pdev
->dev
.platform_data
;
931 for (i
= 0; i
< ARRAY_SIZE(pdata
->ch
); i
++) {
932 priv
->ch
[j
].lcdc
= priv
;
933 memcpy(&priv
->ch
[j
].cfg
, &pdata
->ch
[i
], sizeof(pdata
->ch
[i
]));
935 error
= sh_mobile_lcdc_check_interface(&priv
->ch
[i
]);
937 dev_err(&pdev
->dev
, "unsupported interface type\n");
940 init_waitqueue_head(&priv
->ch
[i
].frame_end_wait
);
941 priv
->ch
[j
].pan_offset
= 0;
942 priv
->ch
[j
].new_pan_offset
= 0;
944 switch (pdata
->ch
[i
].chan
) {
945 case LCDC_CHAN_MAINLCD
:
946 priv
->ch
[j
].enabled
= 1 << 1;
947 priv
->ch
[j
].reg_offs
= lcdc_offs_mainlcd
;
950 case LCDC_CHAN_SUBLCD
:
951 priv
->ch
[j
].enabled
= 1 << 2;
952 priv
->ch
[j
].reg_offs
= lcdc_offs_sublcd
;
959 dev_err(&pdev
->dev
, "no channels defined\n");
964 error
= sh_mobile_lcdc_setup_clocks(pdev
, pdata
->clock_source
, priv
);
966 dev_err(&pdev
->dev
, "unable to setup clocks\n");
970 priv
->base
= ioremap_nocache(res
->start
, (res
->end
- res
->start
) + 1);
972 for (i
= 0; i
< j
; i
++) {
973 cfg
= &priv
->ch
[i
].cfg
;
975 priv
->ch
[i
].info
= framebuffer_alloc(0, &pdev
->dev
);
976 if (!priv
->ch
[i
].info
) {
977 dev_err(&pdev
->dev
, "unable to allocate fb_info\n");
982 info
= priv
->ch
[i
].info
;
983 info
->fbops
= &sh_mobile_lcdc_ops
;
984 info
->var
.xres
= info
->var
.xres_virtual
= cfg
->lcd_cfg
.xres
;
985 info
->var
.yres
= cfg
->lcd_cfg
.yres
;
986 /* Default Y virtual resolution is 2x panel size */
987 info
->var
.yres_virtual
= info
->var
.yres
* 2;
988 info
->var
.width
= cfg
->lcd_size_cfg
.width
;
989 info
->var
.height
= cfg
->lcd_size_cfg
.height
;
990 info
->var
.activate
= FB_ACTIVATE_NOW
;
991 error
= sh_mobile_lcdc_set_bpp(&info
->var
, cfg
->bpp
);
995 info
->fix
= sh_mobile_lcdc_fix
;
996 info
->fix
.line_length
= cfg
->lcd_cfg
.xres
* (cfg
->bpp
/ 8);
997 info
->fix
.smem_len
= info
->fix
.line_length
*
998 info
->var
.yres_virtual
;
1000 buf
= dma_alloc_coherent(&pdev
->dev
, info
->fix
.smem_len
,
1001 &priv
->ch
[i
].dma_handle
, GFP_KERNEL
);
1003 dev_err(&pdev
->dev
, "unable to allocate buffer\n");
1008 info
->pseudo_palette
= &priv
->ch
[i
].pseudo_palette
;
1009 info
->flags
= FBINFO_FLAG_DEFAULT
;
1011 error
= fb_alloc_cmap(&info
->cmap
, PALETTE_NR
, 0);
1013 dev_err(&pdev
->dev
, "unable to allocate cmap\n");
1014 dma_free_coherent(&pdev
->dev
, info
->fix
.smem_len
,
1015 buf
, priv
->ch
[i
].dma_handle
);
1019 memset(buf
, 0, info
->fix
.smem_len
);
1020 info
->fix
.smem_start
= priv
->ch
[i
].dma_handle
;
1021 info
->screen_base
= buf
;
1022 info
->device
= &pdev
->dev
;
1023 info
->par
= &priv
->ch
[i
];
1029 error
= sh_mobile_lcdc_start(priv
);
1031 dev_err(&pdev
->dev
, "unable to start hardware\n");
1035 for (i
= 0; i
< j
; i
++) {
1036 struct sh_mobile_lcdc_chan
*ch
= priv
->ch
+ i
;
1040 if (info
->fbdefio
) {
1041 priv
->ch
->sglist
= vmalloc(sizeof(struct scatterlist
) *
1042 info
->fix
.smem_len
>> PAGE_SHIFT
);
1043 if (!priv
->ch
->sglist
) {
1044 dev_err(&pdev
->dev
, "cannot allocate sglist\n");
1049 error
= register_framebuffer(info
);
1054 "registered %s/%s as %dx%d %dbpp.\n",
1056 (ch
->cfg
.chan
== LCDC_CHAN_MAINLCD
) ?
1057 "mainlcd" : "sublcd",
1058 (int) ch
->cfg
.lcd_cfg
.xres
,
1059 (int) ch
->cfg
.lcd_cfg
.yres
,
1062 /* deferred io mode: disable clock to save power */
1064 sh_mobile_lcdc_clk_off(priv
);
1069 sh_mobile_lcdc_remove(pdev
);
1074 static int sh_mobile_lcdc_remove(struct platform_device
*pdev
)
1076 struct sh_mobile_lcdc_priv
*priv
= platform_get_drvdata(pdev
);
1077 struct fb_info
*info
;
1080 for (i
= 0; i
< ARRAY_SIZE(priv
->ch
); i
++)
1081 if (priv
->ch
[i
].info
->dev
)
1082 unregister_framebuffer(priv
->ch
[i
].info
);
1084 sh_mobile_lcdc_stop(priv
);
1086 for (i
= 0; i
< ARRAY_SIZE(priv
->ch
); i
++) {
1087 info
= priv
->ch
[i
].info
;
1089 if (!info
|| !info
->device
)
1092 if (priv
->ch
[i
].sglist
)
1093 vfree(priv
->ch
[i
].sglist
);
1095 dma_free_coherent(&pdev
->dev
, info
->fix
.smem_len
,
1096 info
->screen_base
, priv
->ch
[i
].dma_handle
);
1097 fb_dealloc_cmap(&info
->cmap
);
1098 framebuffer_release(info
);
1102 clk_put(priv
->dot_clk
);
1104 pm_runtime_disable(priv
->dev
);
1107 iounmap(priv
->base
);
1110 free_irq(priv
->irq
, priv
);
1115 static struct platform_driver sh_mobile_lcdc_driver
= {
1117 .name
= "sh_mobile_lcdc_fb",
1118 .owner
= THIS_MODULE
,
1119 .pm
= &sh_mobile_lcdc_dev_pm_ops
,
1121 .probe
= sh_mobile_lcdc_probe
,
1122 .remove
= sh_mobile_lcdc_remove
,
1125 static int __init
sh_mobile_lcdc_init(void)
1127 return platform_driver_register(&sh_mobile_lcdc_driver
);
1130 static void __exit
sh_mobile_lcdc_exit(void)
1132 platform_driver_unregister(&sh_mobile_lcdc_driver
);
1135 module_init(sh_mobile_lcdc_init
);
1136 module_exit(sh_mobile_lcdc_exit
);
1138 MODULE_DESCRIPTION("SuperH Mobile LCDC Framebuffer driver");
1139 MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
1140 MODULE_LICENSE("GPL v2");