1 /* linux/drivers/video/s3c-fb.c
3 * Copyright 2008 Openmoko Inc.
4 * Copyright 2008-2010 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>
6 * http://armlinux.simtec.co.uk/
8 * Samsung SoC Framebuffer driver
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software FoundatIon.
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/platform_device.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/slab.h>
20 #include <linux/init.h>
21 #include <linux/clk.h>
24 #include <linux/uaccess.h>
25 #include <linux/interrupt.h>
26 #include <linux/pm_runtime.h>
29 #include <plat/regs-fb-v4.h>
32 /* This driver will export a number of framebuffer interfaces depending
33 * on the configuration passed in via the platform data. Each fb instance
34 * maps to a hardware window. Currently there is no support for runtime
35 * setting of the alpha-blending functions that each window has, so only
36 * window 0 is actually useful.
38 * Window 0 is treated specially, it is used for the basis of the LCD
39 * output timings and as the control for the output power-down state.
42 /* note, the previous use of <mach/regs-fb.h> to get platform specific data
43 * has been replaced by using the platform device name to pick the correct
44 * configuration data for the system.
47 #ifdef CONFIG_FB_S3C_DEBUG_REGWRITE
49 #define writel(v, r) do { \
50 printk(KERN_DEBUG "%s: %08x => %p\n", __func__, (unsigned int)v, r); \
53 #endif /* FB_S3C_DEBUG_REGWRITE */
56 #define S3C_FB_VSYNC_IRQ_EN 0
58 #define VSYNC_TIMEOUT_MSEC 50
62 #define VALID_BPP(x) (1 << ((x) - 1))
64 #define OSD_BASE(win, variant) ((variant).osd + ((win) * (variant).osd_stride))
65 #define VIDOSD_A(win, variant) (OSD_BASE(win, variant) + 0x00)
66 #define VIDOSD_B(win, variant) (OSD_BASE(win, variant) + 0x04)
67 #define VIDOSD_C(win, variant) (OSD_BASE(win, variant) + 0x08)
68 #define VIDOSD_D(win, variant) (OSD_BASE(win, variant) + 0x0C)
71 * struct s3c_fb_variant - fb variant information
72 * @is_2443: Set if S3C2443/S3C2416 style hardware.
73 * @nr_windows: The number of windows.
74 * @vidtcon: The base for the VIDTCONx registers
75 * @wincon: The base for the WINxCON registers.
76 * @winmap: The base for the WINxMAP registers.
77 * @keycon: The abse for the WxKEYCON registers.
78 * @buf_start: Offset of buffer start registers.
79 * @buf_size: Offset of buffer size registers.
80 * @buf_end: Offset of buffer end registers.
81 * @osd: The base for the OSD registers.
82 * @palette: Address of palette memory, or 0 if none.
83 * @has_prtcon: Set if has PRTCON register.
84 * @has_shadowcon: Set if has SHADOWCON register.
85 * @has_blendcon: Set if has BLENDCON register.
86 * @has_clksel: Set if VIDCON0 register has CLKSEL bit.
87 * @has_fixvclk: Set if VIDCON1 register has FIXVCLK bits.
89 struct s3c_fb_variant
{
90 unsigned int is_2443
:1;
91 unsigned short nr_windows
;
93 unsigned short wincon
;
94 unsigned short winmap
;
95 unsigned short keycon
;
96 unsigned short buf_start
;
97 unsigned short buf_end
;
98 unsigned short buf_size
;
100 unsigned short osd_stride
;
101 unsigned short palette
[S3C_FB_MAX_WIN
];
103 unsigned int has_prtcon
:1;
104 unsigned int has_shadowcon
:1;
105 unsigned int has_blendcon
:1;
106 unsigned int has_clksel
:1;
107 unsigned int has_fixvclk
:1;
111 * struct s3c_fb_win_variant
112 * @has_osd_c: Set if has OSD C register.
113 * @has_osd_d: Set if has OSD D register.
114 * @has_osd_alpha: Set if can change alpha transparency for a window.
115 * @palette_sz: Size of palette in entries.
116 * @palette_16bpp: Set if palette is 16bits wide.
117 * @osd_size_off: If != 0, supports setting up OSD for a window; the appropriate
118 * register is located at the given offset from OSD_BASE.
119 * @valid_bpp: 1 bit per BPP setting to show valid bits-per-pixel.
121 * valid_bpp bit x is set if (x+1)BPP is supported.
123 struct s3c_fb_win_variant
{
124 unsigned int has_osd_c
:1;
125 unsigned int has_osd_d
:1;
126 unsigned int has_osd_alpha
:1;
127 unsigned int palette_16bpp
:1;
128 unsigned short osd_size_off
;
129 unsigned short palette_sz
;
134 * struct s3c_fb_driverdata - per-device type driver data for init time.
135 * @variant: The variant information for this driver.
136 * @win: The window information for each window.
138 struct s3c_fb_driverdata
{
139 struct s3c_fb_variant variant
;
140 struct s3c_fb_win_variant
*win
[S3C_FB_MAX_WIN
];
144 * struct s3c_fb_palette - palette information
146 * @g: Green bitfield.
148 * @a: Alpha bitfield.
150 struct s3c_fb_palette
{
151 struct fb_bitfield r
;
152 struct fb_bitfield g
;
153 struct fb_bitfield b
;
154 struct fb_bitfield a
;
158 * struct s3c_fb_win - per window private data for each framebuffer.
159 * @windata: The platform data supplied for the window configuration.
160 * @parent: The hardware that this window is part of.
161 * @fbinfo: Pointer pack to the framebuffer info for this window.
162 * @varint: The variant information for this window.
163 * @palette_buffer: Buffer/cache to hold palette entries.
164 * @pseudo_palette: For use in TRUECOLOUR modes for entries 0..15/
165 * @index: The window number of this window.
166 * @palette: The bitfields for changing r/g/b into a hardware palette entry.
169 struct s3c_fb_pd_win
*windata
;
170 struct s3c_fb
*parent
;
171 struct fb_info
*fbinfo
;
172 struct s3c_fb_palette palette
;
173 struct s3c_fb_win_variant variant
;
176 u32 pseudo_palette
[16];
181 * struct s3c_fb_vsync - vsync information
182 * @wait: a queue for processes waiting for vsync
183 * @count: vsync interrupt count
185 struct s3c_fb_vsync
{
186 wait_queue_head_t wait
;
191 * struct s3c_fb - overall hardware state of the hardware
192 * @slock: The spinlock protection for this data sturcture.
193 * @dev: The device that we bound to, for printing, etc.
194 * @bus_clk: The clk (hclk) feeding our interface and possibly pixclk.
195 * @lcd_clk: The clk (sclk) feeding pixclk.
196 * @regs: The mapped hardware registers.
197 * @variant: Variant information for this hardware.
198 * @enabled: A bitmask of enabled hardware windows.
199 * @output_on: Flag if the physical output is enabled.
200 * @pdata: The platform configuration data passed with the device.
201 * @windows: The hardware windows that have been claimed.
202 * @irq_no: IRQ line number
203 * @irq_flags: irq flags
204 * @vsync_info: VSYNC-related information (count, queues...)
212 struct s3c_fb_variant variant
;
214 unsigned char enabled
;
217 struct s3c_fb_platdata
*pdata
;
218 struct s3c_fb_win
*windows
[S3C_FB_MAX_WIN
];
221 unsigned long irq_flags
;
222 struct s3c_fb_vsync vsync_info
;
226 * s3c_fb_validate_win_bpp - validate the bits-per-pixel for this mode.
227 * @win: The device window.
228 * @bpp: The bit depth.
230 static bool s3c_fb_validate_win_bpp(struct s3c_fb_win
*win
, unsigned int bpp
)
232 return win
->variant
.valid_bpp
& VALID_BPP(bpp
);
236 * s3c_fb_check_var() - framebuffer layer request to verify a given mode.
237 * @var: The screen information to verify.
238 * @info: The framebuffer device.
240 * Framebuffer layer call to verify the given information and allow us to
241 * update various information depending on the hardware capabilities.
243 static int s3c_fb_check_var(struct fb_var_screeninfo
*var
,
244 struct fb_info
*info
)
246 struct s3c_fb_win
*win
= info
->par
;
247 struct s3c_fb
*sfb
= win
->parent
;
249 dev_dbg(sfb
->dev
, "checking parameters\n");
251 var
->xres_virtual
= max(var
->xres_virtual
, var
->xres
);
252 var
->yres_virtual
= max(var
->yres_virtual
, var
->yres
);
254 if (!s3c_fb_validate_win_bpp(win
, var
->bits_per_pixel
)) {
255 dev_dbg(sfb
->dev
, "win %d: unsupported bpp %d\n",
256 win
->index
, var
->bits_per_pixel
);
260 /* always ensure these are zero, for drop through cases below */
261 var
->transp
.offset
= 0;
262 var
->transp
.length
= 0;
264 switch (var
->bits_per_pixel
) {
269 if (sfb
->variant
.palette
[win
->index
] != 0) {
270 /* non palletised, A:1,R:2,G:3,B:2 mode */
272 var
->green
.offset
= 2;
273 var
->blue
.offset
= 0;
275 var
->green
.length
= 3;
276 var
->blue
.length
= 2;
277 var
->transp
.offset
= 7;
278 var
->transp
.length
= 1;
281 var
->red
.length
= var
->bits_per_pixel
;
282 var
->green
= var
->red
;
283 var
->blue
= var
->red
;
288 /* 666 with one bit alpha/transparency */
289 var
->transp
.offset
= 18;
290 var
->transp
.length
= 1;
292 var
->bits_per_pixel
= 32;
295 var
->red
.offset
= 12;
296 var
->green
.offset
= 6;
297 var
->blue
.offset
= 0;
299 var
->green
.length
= 6;
300 var
->blue
.length
= 6;
304 /* 16 bpp, 565 format */
305 var
->red
.offset
= 11;
306 var
->green
.offset
= 5;
307 var
->blue
.offset
= 0;
309 var
->green
.length
= 6;
310 var
->blue
.length
= 5;
316 var
->transp
.length
= var
->bits_per_pixel
- 24;
317 var
->transp
.offset
= 24;
320 /* our 24bpp is unpacked, so 32bpp */
321 var
->bits_per_pixel
= 32;
322 var
->red
.offset
= 16;
324 var
->green
.offset
= 8;
325 var
->green
.length
= 8;
326 var
->blue
.offset
= 0;
327 var
->blue
.length
= 8;
331 dev_err(sfb
->dev
, "invalid bpp\n");
334 dev_dbg(sfb
->dev
, "%s: verified parameters\n", __func__
);
339 * s3c_fb_calc_pixclk() - calculate the divider to create the pixel clock.
340 * @sfb: The hardware state.
341 * @pixclock: The pixel clock wanted, in picoseconds.
343 * Given the specified pixel clock, work out the necessary divider to get
344 * close to the output frequency.
346 static int s3c_fb_calc_pixclk(struct s3c_fb
*sfb
, unsigned int pixclk
)
349 unsigned long long tmp
;
352 if (sfb
->variant
.has_clksel
)
353 clk
= clk_get_rate(sfb
->bus_clk
);
355 clk
= clk_get_rate(sfb
->lcd_clk
);
357 tmp
= (unsigned long long)clk
;
360 do_div(tmp
, 1000000000UL);
361 result
= (unsigned int)tmp
/ 1000;
363 dev_dbg(sfb
->dev
, "pixclk=%u, clk=%lu, div=%d (%lu)\n",
364 pixclk
, clk
, result
, clk
/ result
);
370 * s3c_fb_align_word() - align pixel count to word boundary
371 * @bpp: The number of bits per pixel
372 * @pix: The value to be aligned.
374 * Align the given pixel count so that it will start on an 32bit word
377 static int s3c_fb_align_word(unsigned int bpp
, unsigned int pix
)
384 pix_per_word
= (8 * 32) / bpp
;
385 return ALIGN(pix
, pix_per_word
);
389 * vidosd_set_size() - set OSD size for a window
391 * @win: the window to set OSD size for
392 * @size: OSD size register value
394 static void vidosd_set_size(struct s3c_fb_win
*win
, u32 size
)
396 struct s3c_fb
*sfb
= win
->parent
;
398 /* OSD can be set up if osd_size_off != 0 for this window */
399 if (win
->variant
.osd_size_off
)
400 writel(size
, sfb
->regs
+ OSD_BASE(win
->index
, sfb
->variant
)
401 + win
->variant
.osd_size_off
);
405 * vidosd_set_alpha() - set alpha transparency for a window
407 * @win: the window to set OSD size for
408 * @alpha: alpha register value
410 static void vidosd_set_alpha(struct s3c_fb_win
*win
, u32 alpha
)
412 struct s3c_fb
*sfb
= win
->parent
;
414 if (win
->variant
.has_osd_alpha
)
415 writel(alpha
, sfb
->regs
+ VIDOSD_C(win
->index
, sfb
->variant
));
419 * shadow_protect_win() - disable updating values from shadow registers at vsync
421 * @win: window to protect registers for
422 * @protect: 1 to protect (disable updates)
424 static void shadow_protect_win(struct s3c_fb_win
*win
, bool protect
)
426 struct s3c_fb
*sfb
= win
->parent
;
430 if (sfb
->variant
.has_prtcon
) {
431 writel(PRTCON_PROTECT
, sfb
->regs
+ PRTCON
);
432 } else if (sfb
->variant
.has_shadowcon
) {
433 reg
= readl(sfb
->regs
+ SHADOWCON
);
434 writel(reg
| SHADOWCON_WINx_PROTECT(win
->index
),
435 sfb
->regs
+ SHADOWCON
);
438 if (sfb
->variant
.has_prtcon
) {
439 writel(0, sfb
->regs
+ PRTCON
);
440 } else if (sfb
->variant
.has_shadowcon
) {
441 reg
= readl(sfb
->regs
+ SHADOWCON
);
442 writel(reg
& ~SHADOWCON_WINx_PROTECT(win
->index
),
443 sfb
->regs
+ SHADOWCON
);
449 * s3c_fb_enable() - Set the state of the main LCD output
450 * @sfb: The main framebuffer state.
451 * @enable: The state to set.
453 static void s3c_fb_enable(struct s3c_fb
*sfb
, int enable
)
455 u32 vidcon0
= readl(sfb
->regs
+ VIDCON0
);
457 if (enable
&& !sfb
->output_on
)
458 pm_runtime_get_sync(sfb
->dev
);
461 vidcon0
|= VIDCON0_ENVID
| VIDCON0_ENVID_F
;
463 /* see the note in the framebuffer datasheet about
464 * why you cannot take both of these bits down at the
467 if (vidcon0
& VIDCON0_ENVID
) {
468 vidcon0
|= VIDCON0_ENVID
;
469 vidcon0
&= ~VIDCON0_ENVID_F
;
473 writel(vidcon0
, sfb
->regs
+ VIDCON0
);
475 if (!enable
&& sfb
->output_on
)
476 pm_runtime_put_sync(sfb
->dev
);
478 sfb
->output_on
= enable
;
482 * s3c_fb_set_par() - framebuffer request to set new framebuffer state.
483 * @info: The framebuffer to change.
485 * Framebuffer layer request to set a new mode for the specified framebuffer
487 static int s3c_fb_set_par(struct fb_info
*info
)
489 struct fb_var_screeninfo
*var
= &info
->var
;
490 struct s3c_fb_win
*win
= info
->par
;
491 struct s3c_fb
*sfb
= win
->parent
;
492 void __iomem
*regs
= sfb
->regs
;
493 void __iomem
*buf
= regs
;
494 int win_no
= win
->index
;
500 dev_dbg(sfb
->dev
, "setting framebuffer parameters\n");
502 pm_runtime_get_sync(sfb
->dev
);
504 shadow_protect_win(win
, 1);
506 switch (var
->bits_per_pixel
) {
511 info
->fix
.visual
= FB_VISUAL_TRUECOLOR
;
514 if (win
->variant
.palette_sz
>= 256)
515 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
517 info
->fix
.visual
= FB_VISUAL_TRUECOLOR
;
520 info
->fix
.visual
= FB_VISUAL_MONO01
;
523 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
527 info
->fix
.line_length
= (var
->xres_virtual
* var
->bits_per_pixel
) / 8;
529 info
->fix
.xpanstep
= info
->var
.xres_virtual
> info
->var
.xres
? 1 : 0;
530 info
->fix
.ypanstep
= info
->var
.yres_virtual
> info
->var
.yres
? 1 : 0;
532 /* disable the window whilst we update it */
533 writel(0, regs
+ WINCON(win_no
));
535 /* use platform specified window as the basis for the lcd timings */
537 if (win_no
== sfb
->pdata
->default_win
) {
538 clkdiv
= s3c_fb_calc_pixclk(sfb
, var
->pixclock
);
540 data
= sfb
->pdata
->vidcon0
;
541 data
&= ~(VIDCON0_CLKVAL_F_MASK
| VIDCON0_CLKDIR
);
544 data
|= VIDCON0_CLKVAL_F(clkdiv
-1) | VIDCON0_CLKDIR
;
546 data
&= ~VIDCON0_CLKDIR
; /* 1:1 clock */
548 /* write the timing data to the panel */
550 if (sfb
->variant
.is_2443
)
553 writel(data
, regs
+ VIDCON0
);
555 s3c_fb_enable(sfb
, 1);
557 data
= VIDTCON0_VBPD(var
->upper_margin
- 1) |
558 VIDTCON0_VFPD(var
->lower_margin
- 1) |
559 VIDTCON0_VSPW(var
->vsync_len
- 1);
561 writel(data
, regs
+ sfb
->variant
.vidtcon
);
563 data
= VIDTCON1_HBPD(var
->left_margin
- 1) |
564 VIDTCON1_HFPD(var
->right_margin
- 1) |
565 VIDTCON1_HSPW(var
->hsync_len
- 1);
568 writel(data
, regs
+ sfb
->variant
.vidtcon
+ 4);
570 data
= VIDTCON2_LINEVAL(var
->yres
- 1) |
571 VIDTCON2_HOZVAL(var
->xres
- 1) |
572 VIDTCON2_LINEVAL_E(var
->yres
- 1) |
573 VIDTCON2_HOZVAL_E(var
->xres
- 1);
574 writel(data
, regs
+ sfb
->variant
.vidtcon
+ 8);
577 /* write the buffer address */
579 /* start and end registers stride is 8 */
580 buf
= regs
+ win_no
* 8;
582 writel(info
->fix
.smem_start
, buf
+ sfb
->variant
.buf_start
);
584 data
= info
->fix
.smem_start
+ info
->fix
.line_length
* var
->yres
;
585 writel(data
, buf
+ sfb
->variant
.buf_end
);
587 pagewidth
= (var
->xres
* var
->bits_per_pixel
) >> 3;
588 data
= VIDW_BUF_SIZE_OFFSET(info
->fix
.line_length
- pagewidth
) |
589 VIDW_BUF_SIZE_PAGEWIDTH(pagewidth
) |
590 VIDW_BUF_SIZE_OFFSET_E(info
->fix
.line_length
- pagewidth
) |
591 VIDW_BUF_SIZE_PAGEWIDTH_E(pagewidth
);
592 writel(data
, regs
+ sfb
->variant
.buf_size
+ (win_no
* 4));
594 /* write 'OSD' registers to control position of framebuffer */
596 data
= VIDOSDxA_TOPLEFT_X(0) | VIDOSDxA_TOPLEFT_Y(0) |
597 VIDOSDxA_TOPLEFT_X_E(0) | VIDOSDxA_TOPLEFT_Y_E(0);
598 writel(data
, regs
+ VIDOSD_A(win_no
, sfb
->variant
));
600 data
= VIDOSDxB_BOTRIGHT_X(s3c_fb_align_word(var
->bits_per_pixel
,
602 VIDOSDxB_BOTRIGHT_Y(var
->yres
- 1) |
603 VIDOSDxB_BOTRIGHT_X_E(s3c_fb_align_word(var
->bits_per_pixel
,
605 VIDOSDxB_BOTRIGHT_Y_E(var
->yres
- 1);
607 writel(data
, regs
+ VIDOSD_B(win_no
, sfb
->variant
));
609 data
= var
->xres
* var
->yres
;
611 alpha
= VIDISD14C_ALPHA1_R(0xf) |
612 VIDISD14C_ALPHA1_G(0xf) |
613 VIDISD14C_ALPHA1_B(0xf);
615 vidosd_set_alpha(win
, alpha
);
616 vidosd_set_size(win
, data
);
618 /* Enable DMA channel for this window */
619 if (sfb
->variant
.has_shadowcon
) {
620 data
= readl(sfb
->regs
+ SHADOWCON
);
621 data
|= SHADOWCON_CHx_ENABLE(win_no
);
622 writel(data
, sfb
->regs
+ SHADOWCON
);
625 data
= WINCONx_ENWIN
;
626 sfb
->enabled
|= (1 << win
->index
);
628 /* note, since we have to round up the bits-per-pixel, we end up
629 * relying on the bitfield information for r/g/b/a to work out
630 * exactly which mode of operation is intended. */
632 switch (var
->bits_per_pixel
) {
634 data
|= WINCON0_BPPMODE_1BPP
;
635 data
|= WINCONx_BITSWP
;
636 data
|= WINCONx_BURSTLEN_4WORD
;
639 data
|= WINCON0_BPPMODE_2BPP
;
640 data
|= WINCONx_BITSWP
;
641 data
|= WINCONx_BURSTLEN_8WORD
;
644 data
|= WINCON0_BPPMODE_4BPP
;
645 data
|= WINCONx_BITSWP
;
646 data
|= WINCONx_BURSTLEN_8WORD
;
649 if (var
->transp
.length
!= 0)
650 data
|= WINCON1_BPPMODE_8BPP_1232
;
652 data
|= WINCON0_BPPMODE_8BPP_PALETTE
;
653 data
|= WINCONx_BURSTLEN_8WORD
;
654 data
|= WINCONx_BYTSWP
;
657 if (var
->transp
.length
!= 0)
658 data
|= WINCON1_BPPMODE_16BPP_A1555
;
660 data
|= WINCON0_BPPMODE_16BPP_565
;
661 data
|= WINCONx_HAWSWP
;
662 data
|= WINCONx_BURSTLEN_16WORD
;
666 if (var
->red
.length
== 6) {
667 if (var
->transp
.length
!= 0)
668 data
|= WINCON1_BPPMODE_19BPP_A1666
;
670 data
|= WINCON1_BPPMODE_18BPP_666
;
671 } else if (var
->transp
.length
== 1)
672 data
|= WINCON1_BPPMODE_25BPP_A1888
674 else if ((var
->transp
.length
== 4) ||
675 (var
->transp
.length
== 8))
676 data
|= WINCON1_BPPMODE_28BPP_A4888
677 | WINCON1_BLD_PIX
| WINCON1_ALPHA_SEL
;
679 data
|= WINCON0_BPPMODE_24BPP_888
;
681 data
|= WINCONx_WSWP
;
682 data
|= WINCONx_BURSTLEN_16WORD
;
686 /* Enable the colour keying for the window below this one */
688 u32 keycon0_data
= 0, keycon1_data
= 0;
689 void __iomem
*keycon
= regs
+ sfb
->variant
.keycon
;
691 keycon0_data
= ~(WxKEYCON0_KEYBL_EN
|
693 WxKEYCON0_DIRCON
) | WxKEYCON0_COMPKEY(0);
695 keycon1_data
= WxKEYCON1_COLVAL(0xffffff);
697 keycon
+= (win_no
- 1) * 8;
699 writel(keycon0_data
, keycon
+ WKEYCON0
);
700 writel(keycon1_data
, keycon
+ WKEYCON1
);
703 writel(data
, regs
+ sfb
->variant
.wincon
+ (win_no
* 4));
704 writel(0x0, regs
+ sfb
->variant
.winmap
+ (win_no
* 4));
706 /* Set alpha value width */
707 if (sfb
->variant
.has_blendcon
) {
708 data
= readl(sfb
->regs
+ BLENDCON
);
709 data
&= ~BLENDCON_NEW_MASK
;
710 if (var
->transp
.length
> 4)
711 data
|= BLENDCON_NEW_8BIT_ALPHA_VALUE
;
713 data
|= BLENDCON_NEW_4BIT_ALPHA_VALUE
;
714 writel(data
, sfb
->regs
+ BLENDCON
);
717 shadow_protect_win(win
, 0);
719 pm_runtime_put_sync(sfb
->dev
);
725 * s3c_fb_update_palette() - set or schedule a palette update.
726 * @sfb: The hardware information.
727 * @win: The window being updated.
728 * @reg: The palette index being changed.
729 * @value: The computed palette value.
731 * Change the value of a palette register, either by directly writing to
732 * the palette (this requires the palette RAM to be disconnected from the
733 * hardware whilst this is in progress) or schedule the update for later.
735 * At the moment, since we have no VSYNC interrupt support, we simply set
736 * the palette entry directly.
738 static void s3c_fb_update_palette(struct s3c_fb
*sfb
,
739 struct s3c_fb_win
*win
,
743 void __iomem
*palreg
;
746 palreg
= sfb
->regs
+ sfb
->variant
.palette
[win
->index
];
748 dev_dbg(sfb
->dev
, "%s: win %d, reg %d (%p): %08x\n",
749 __func__
, win
->index
, reg
, palreg
, value
);
751 win
->palette_buffer
[reg
] = value
;
753 palcon
= readl(sfb
->regs
+ WPALCON
);
754 writel(palcon
| WPALCON_PAL_UPDATE
, sfb
->regs
+ WPALCON
);
756 if (win
->variant
.palette_16bpp
)
757 writew(value
, palreg
+ (reg
* 2));
759 writel(value
, palreg
+ (reg
* 4));
761 writel(palcon
, sfb
->regs
+ WPALCON
);
764 static inline unsigned int chan_to_field(unsigned int chan
,
765 struct fb_bitfield
*bf
)
768 chan
>>= 16 - bf
->length
;
769 return chan
<< bf
->offset
;
773 * s3c_fb_setcolreg() - framebuffer layer request to change palette.
774 * @regno: The palette index to change.
775 * @red: The red field for the palette data.
776 * @green: The green field for the palette data.
777 * @blue: The blue field for the palette data.
778 * @trans: The transparency (alpha) field for the palette data.
779 * @info: The framebuffer being changed.
781 static int s3c_fb_setcolreg(unsigned regno
,
782 unsigned red
, unsigned green
, unsigned blue
,
783 unsigned transp
, struct fb_info
*info
)
785 struct s3c_fb_win
*win
= info
->par
;
786 struct s3c_fb
*sfb
= win
->parent
;
789 dev_dbg(sfb
->dev
, "%s: win %d: %d => rgb=%d/%d/%d\n",
790 __func__
, win
->index
, regno
, red
, green
, blue
);
792 pm_runtime_get_sync(sfb
->dev
);
794 switch (info
->fix
.visual
) {
795 case FB_VISUAL_TRUECOLOR
:
796 /* true-colour, use pseudo-palette */
799 u32
*pal
= info
->pseudo_palette
;
801 val
= chan_to_field(red
, &info
->var
.red
);
802 val
|= chan_to_field(green
, &info
->var
.green
);
803 val
|= chan_to_field(blue
, &info
->var
.blue
);
809 case FB_VISUAL_PSEUDOCOLOR
:
810 if (regno
< win
->variant
.palette_sz
) {
811 val
= chan_to_field(red
, &win
->palette
.r
);
812 val
|= chan_to_field(green
, &win
->palette
.g
);
813 val
|= chan_to_field(blue
, &win
->palette
.b
);
815 s3c_fb_update_palette(sfb
, win
, regno
, val
);
821 pm_runtime_put_sync(sfb
->dev
);
822 return 1; /* unknown type */
825 pm_runtime_put_sync(sfb
->dev
);
830 * s3c_fb_blank() - blank or unblank the given window
831 * @blank_mode: The blank state from FB_BLANK_*
832 * @info: The framebuffer to blank.
834 * Framebuffer layer request to change the power state.
836 static int s3c_fb_blank(int blank_mode
, struct fb_info
*info
)
838 struct s3c_fb_win
*win
= info
->par
;
839 struct s3c_fb
*sfb
= win
->parent
;
840 unsigned int index
= win
->index
;
843 dev_dbg(sfb
->dev
, "blank mode %d\n", blank_mode
);
845 pm_runtime_get_sync(sfb
->dev
);
847 wincon
= readl(sfb
->regs
+ sfb
->variant
.wincon
+ (index
* 4));
849 switch (blank_mode
) {
850 case FB_BLANK_POWERDOWN
:
851 wincon
&= ~WINCONx_ENWIN
;
852 sfb
->enabled
&= ~(1 << index
);
853 /* fall through to FB_BLANK_NORMAL */
855 case FB_BLANK_NORMAL
:
856 /* disable the DMA and display 0x0 (black) */
857 shadow_protect_win(win
, 1);
858 writel(WINxMAP_MAP
| WINxMAP_MAP_COLOUR(0x0),
859 sfb
->regs
+ sfb
->variant
.winmap
+ (index
* 4));
860 shadow_protect_win(win
, 0);
863 case FB_BLANK_UNBLANK
:
864 shadow_protect_win(win
, 1);
865 writel(0x0, sfb
->regs
+ sfb
->variant
.winmap
+ (index
* 4));
866 shadow_protect_win(win
, 0);
867 wincon
|= WINCONx_ENWIN
;
868 sfb
->enabled
|= (1 << index
);
871 case FB_BLANK_VSYNC_SUSPEND
:
872 case FB_BLANK_HSYNC_SUSPEND
:
874 pm_runtime_put_sync(sfb
->dev
);
878 shadow_protect_win(win
, 1);
879 writel(wincon
, sfb
->regs
+ sfb
->variant
.wincon
+ (index
* 4));
880 shadow_protect_win(win
, 0);
882 /* Check the enabled state to see if we need to be running the
883 * main LCD interface, as if there are no active windows then
884 * it is highly likely that we also do not need to output
888 /* We could do something like the following code, but the current
889 * system of using framebuffer events means that we cannot make
890 * the distinction between just window 0 being inactive and all
891 * the windows being down.
893 * s3c_fb_enable(sfb, sfb->enabled ? 1 : 0);
896 /* we're stuck with this until we can do something about overriding
897 * the power control using the blanking event for a single fb.
899 if (index
== sfb
->pdata
->default_win
) {
900 shadow_protect_win(win
, 1);
901 s3c_fb_enable(sfb
, blank_mode
!= FB_BLANK_POWERDOWN
? 1 : 0);
902 shadow_protect_win(win
, 0);
905 pm_runtime_put_sync(sfb
->dev
);
911 * s3c_fb_pan_display() - Pan the display.
913 * Note that the offsets can be written to the device at any time, as their
914 * values are latched at each vsync automatically. This also means that only
915 * the last call to this function will have any effect on next vsync, but
916 * there is no need to sleep waiting for it to prevent tearing.
918 * @var: The screen information to verify.
919 * @info: The framebuffer device.
921 static int s3c_fb_pan_display(struct fb_var_screeninfo
*var
,
922 struct fb_info
*info
)
924 struct s3c_fb_win
*win
= info
->par
;
925 struct s3c_fb
*sfb
= win
->parent
;
926 void __iomem
*buf
= sfb
->regs
+ win
->index
* 8;
927 unsigned int start_boff
, end_boff
;
929 pm_runtime_get_sync(sfb
->dev
);
931 /* Offset in bytes to the start of the displayed area */
932 start_boff
= var
->yoffset
* info
->fix
.line_length
;
933 /* X offset depends on the current bpp */
934 if (info
->var
.bits_per_pixel
>= 8) {
935 start_boff
+= var
->xoffset
* (info
->var
.bits_per_pixel
>> 3);
937 switch (info
->var
.bits_per_pixel
) {
939 start_boff
+= var
->xoffset
>> 1;
942 start_boff
+= var
->xoffset
>> 2;
945 start_boff
+= var
->xoffset
>> 3;
948 dev_err(sfb
->dev
, "invalid bpp\n");
949 pm_runtime_put_sync(sfb
->dev
);
953 /* Offset in bytes to the end of the displayed area */
954 end_boff
= start_boff
+ info
->var
.yres
* info
->fix
.line_length
;
956 /* Temporarily turn off per-vsync update from shadow registers until
957 * both start and end addresses are updated to prevent corruption */
958 shadow_protect_win(win
, 1);
960 writel(info
->fix
.smem_start
+ start_boff
, buf
+ sfb
->variant
.buf_start
);
961 writel(info
->fix
.smem_start
+ end_boff
, buf
+ sfb
->variant
.buf_end
);
963 shadow_protect_win(win
, 0);
965 pm_runtime_put_sync(sfb
->dev
);
970 * s3c_fb_enable_irq() - enable framebuffer interrupts
971 * @sfb: main hardware state
973 static void s3c_fb_enable_irq(struct s3c_fb
*sfb
)
975 void __iomem
*regs
= sfb
->regs
;
978 if (!test_and_set_bit(S3C_FB_VSYNC_IRQ_EN
, &sfb
->irq_flags
)) {
979 /* IRQ disabled, enable it */
980 irq_ctrl_reg
= readl(regs
+ VIDINTCON0
);
982 irq_ctrl_reg
|= VIDINTCON0_INT_ENABLE
;
983 irq_ctrl_reg
|= VIDINTCON0_INT_FRAME
;
985 irq_ctrl_reg
&= ~VIDINTCON0_FRAMESEL0_MASK
;
986 irq_ctrl_reg
|= VIDINTCON0_FRAMESEL0_VSYNC
;
987 irq_ctrl_reg
&= ~VIDINTCON0_FRAMESEL1_MASK
;
988 irq_ctrl_reg
|= VIDINTCON0_FRAMESEL1_NONE
;
990 writel(irq_ctrl_reg
, regs
+ VIDINTCON0
);
995 * s3c_fb_disable_irq() - disable framebuffer interrupts
996 * @sfb: main hardware state
998 static void s3c_fb_disable_irq(struct s3c_fb
*sfb
)
1000 void __iomem
*regs
= sfb
->regs
;
1003 if (test_and_clear_bit(S3C_FB_VSYNC_IRQ_EN
, &sfb
->irq_flags
)) {
1004 /* IRQ enabled, disable it */
1005 irq_ctrl_reg
= readl(regs
+ VIDINTCON0
);
1007 irq_ctrl_reg
&= ~VIDINTCON0_INT_FRAME
;
1008 irq_ctrl_reg
&= ~VIDINTCON0_INT_ENABLE
;
1010 writel(irq_ctrl_reg
, regs
+ VIDINTCON0
);
1014 static irqreturn_t
s3c_fb_irq(int irq
, void *dev_id
)
1016 struct s3c_fb
*sfb
= dev_id
;
1017 void __iomem
*regs
= sfb
->regs
;
1020 spin_lock(&sfb
->slock
);
1022 irq_sts_reg
= readl(regs
+ VIDINTCON1
);
1024 if (irq_sts_reg
& VIDINTCON1_INT_FRAME
) {
1026 /* VSYNC interrupt, accept it */
1027 writel(VIDINTCON1_INT_FRAME
, regs
+ VIDINTCON1
);
1029 sfb
->vsync_info
.count
++;
1030 wake_up_interruptible(&sfb
->vsync_info
.wait
);
1033 /* We only support waiting for VSYNC for now, so it's safe
1034 * to always disable irqs here.
1036 s3c_fb_disable_irq(sfb
);
1038 spin_unlock(&sfb
->slock
);
1043 * s3c_fb_wait_for_vsync() - sleep until next VSYNC interrupt or timeout
1044 * @sfb: main hardware state
1045 * @crtc: head index.
1047 static int s3c_fb_wait_for_vsync(struct s3c_fb
*sfb
, u32 crtc
)
1049 unsigned long count
;
1055 pm_runtime_get_sync(sfb
->dev
);
1057 count
= sfb
->vsync_info
.count
;
1058 s3c_fb_enable_irq(sfb
);
1059 ret
= wait_event_interruptible_timeout(sfb
->vsync_info
.wait
,
1060 count
!= sfb
->vsync_info
.count
,
1061 msecs_to_jiffies(VSYNC_TIMEOUT_MSEC
));
1063 pm_runtime_put_sync(sfb
->dev
);
1071 static int s3c_fb_ioctl(struct fb_info
*info
, unsigned int cmd
,
1074 struct s3c_fb_win
*win
= info
->par
;
1075 struct s3c_fb
*sfb
= win
->parent
;
1080 case FBIO_WAITFORVSYNC
:
1081 if (get_user(crtc
, (u32 __user
*)arg
)) {
1086 ret
= s3c_fb_wait_for_vsync(sfb
, crtc
);
1095 static struct fb_ops s3c_fb_ops
= {
1096 .owner
= THIS_MODULE
,
1097 .fb_check_var
= s3c_fb_check_var
,
1098 .fb_set_par
= s3c_fb_set_par
,
1099 .fb_blank
= s3c_fb_blank
,
1100 .fb_setcolreg
= s3c_fb_setcolreg
,
1101 .fb_fillrect
= cfb_fillrect
,
1102 .fb_copyarea
= cfb_copyarea
,
1103 .fb_imageblit
= cfb_imageblit
,
1104 .fb_pan_display
= s3c_fb_pan_display
,
1105 .fb_ioctl
= s3c_fb_ioctl
,
1109 * s3c_fb_missing_pixclock() - calculates pixel clock
1110 * @mode: The video mode to change.
1112 * Calculate the pixel clock when none has been given through platform data.
1114 static void __devinit
s3c_fb_missing_pixclock(struct fb_videomode
*mode
)
1116 u64 pixclk
= 1000000000000ULL;
1119 div
= mode
->left_margin
+ mode
->hsync_len
+ mode
->right_margin
+
1121 div
*= mode
->upper_margin
+ mode
->vsync_len
+ mode
->lower_margin
+
1123 div
*= mode
->refresh
? : 60;
1125 do_div(pixclk
, div
);
1127 mode
->pixclock
= pixclk
;
1131 * s3c_fb_alloc_memory() - allocate display memory for framebuffer window
1132 * @sfb: The base resources for the hardware.
1133 * @win: The window to initialise memory for.
1135 * Allocate memory for the given framebuffer.
1137 static int __devinit
s3c_fb_alloc_memory(struct s3c_fb
*sfb
,
1138 struct s3c_fb_win
*win
)
1140 struct s3c_fb_pd_win
*windata
= win
->windata
;
1141 unsigned int real_size
, virt_size
, size
;
1142 struct fb_info
*fbi
= win
->fbinfo
;
1145 dev_dbg(sfb
->dev
, "allocating memory for display\n");
1147 real_size
= windata
->win_mode
.xres
* windata
->win_mode
.yres
;
1148 virt_size
= windata
->virtual_x
* windata
->virtual_y
;
1150 dev_dbg(sfb
->dev
, "real_size=%u (%u.%u), virt_size=%u (%u.%u)\n",
1151 real_size
, windata
->win_mode
.xres
, windata
->win_mode
.yres
,
1152 virt_size
, windata
->virtual_x
, windata
->virtual_y
);
1154 size
= (real_size
> virt_size
) ? real_size
: virt_size
;
1155 size
*= (windata
->max_bpp
> 16) ? 32 : windata
->max_bpp
;
1158 fbi
->fix
.smem_len
= size
;
1159 size
= PAGE_ALIGN(size
);
1161 dev_dbg(sfb
->dev
, "want %u bytes for window\n", size
);
1163 fbi
->screen_base
= dma_alloc_writecombine(sfb
->dev
, size
,
1164 &map_dma
, GFP_KERNEL
);
1165 if (!fbi
->screen_base
)
1168 dev_dbg(sfb
->dev
, "mapped %x to %p\n",
1169 (unsigned int)map_dma
, fbi
->screen_base
);
1171 memset(fbi
->screen_base
, 0x0, size
);
1172 fbi
->fix
.smem_start
= map_dma
;
1178 * s3c_fb_free_memory() - free the display memory for the given window
1179 * @sfb: The base resources for the hardware.
1180 * @win: The window to free the display memory for.
1182 * Free the display memory allocated by s3c_fb_alloc_memory().
1184 static void s3c_fb_free_memory(struct s3c_fb
*sfb
, struct s3c_fb_win
*win
)
1186 struct fb_info
*fbi
= win
->fbinfo
;
1188 if (fbi
->screen_base
)
1189 dma_free_writecombine(sfb
->dev
, PAGE_ALIGN(fbi
->fix
.smem_len
),
1190 fbi
->screen_base
, fbi
->fix
.smem_start
);
1194 * s3c_fb_release_win() - release resources for a framebuffer window.
1195 * @win: The window to cleanup the resources for.
1197 * Release the resources that where claimed for the hardware window,
1198 * such as the framebuffer instance and any memory claimed for it.
1200 static void s3c_fb_release_win(struct s3c_fb
*sfb
, struct s3c_fb_win
*win
)
1205 if (sfb
->variant
.has_shadowcon
) {
1206 data
= readl(sfb
->regs
+ SHADOWCON
);
1207 data
&= ~SHADOWCON_CHx_ENABLE(win
->index
);
1208 data
&= ~SHADOWCON_CHx_LOCAL_ENABLE(win
->index
);
1209 writel(data
, sfb
->regs
+ SHADOWCON
);
1211 unregister_framebuffer(win
->fbinfo
);
1212 if (win
->fbinfo
->cmap
.len
)
1213 fb_dealloc_cmap(&win
->fbinfo
->cmap
);
1214 s3c_fb_free_memory(sfb
, win
);
1215 framebuffer_release(win
->fbinfo
);
1220 * s3c_fb_probe_win() - register an hardware window
1221 * @sfb: The base resources for the hardware
1222 * @variant: The variant information for this window.
1223 * @res: Pointer to where to place the resultant window.
1225 * Allocate and do the basic initialisation for one of the hardware's graphics
1228 static int __devinit
s3c_fb_probe_win(struct s3c_fb
*sfb
, unsigned int win_no
,
1229 struct s3c_fb_win_variant
*variant
,
1230 struct s3c_fb_win
**res
)
1232 struct fb_var_screeninfo
*var
;
1233 struct fb_videomode
*initmode
;
1234 struct s3c_fb_pd_win
*windata
;
1235 struct s3c_fb_win
*win
;
1236 struct fb_info
*fbinfo
;
1240 dev_dbg(sfb
->dev
, "probing window %d, variant %p\n", win_no
, variant
);
1242 init_waitqueue_head(&sfb
->vsync_info
.wait
);
1244 palette_size
= variant
->palette_sz
* 4;
1246 fbinfo
= framebuffer_alloc(sizeof(struct s3c_fb_win
) +
1247 palette_size
* sizeof(u32
), sfb
->dev
);
1249 dev_err(sfb
->dev
, "failed to allocate framebuffer\n");
1253 windata
= sfb
->pdata
->win
[win_no
];
1254 initmode
= &windata
->win_mode
;
1256 WARN_ON(windata
->max_bpp
== 0);
1257 WARN_ON(windata
->win_mode
.xres
== 0);
1258 WARN_ON(windata
->win_mode
.yres
== 0);
1263 win
->variant
= *variant
;
1264 win
->fbinfo
= fbinfo
;
1266 win
->windata
= windata
;
1267 win
->index
= win_no
;
1268 win
->palette_buffer
= (u32
*)(win
+ 1);
1270 ret
= s3c_fb_alloc_memory(sfb
, win
);
1272 dev_err(sfb
->dev
, "failed to allocate display memory\n");
1276 /* setup the r/b/g positions for the window's palette */
1277 if (win
->variant
.palette_16bpp
) {
1278 /* Set RGB 5:6:5 as default */
1279 win
->palette
.r
.offset
= 11;
1280 win
->palette
.r
.length
= 5;
1281 win
->palette
.g
.offset
= 5;
1282 win
->palette
.g
.length
= 6;
1283 win
->palette
.b
.offset
= 0;
1284 win
->palette
.b
.length
= 5;
1287 /* Set 8bpp or 8bpp and 1bit alpha */
1288 win
->palette
.r
.offset
= 16;
1289 win
->palette
.r
.length
= 8;
1290 win
->palette
.g
.offset
= 8;
1291 win
->palette
.g
.length
= 8;
1292 win
->palette
.b
.offset
= 0;
1293 win
->palette
.b
.length
= 8;
1296 /* setup the initial video mode from the window */
1297 fb_videomode_to_var(&fbinfo
->var
, initmode
);
1299 fbinfo
->fix
.type
= FB_TYPE_PACKED_PIXELS
;
1300 fbinfo
->fix
.accel
= FB_ACCEL_NONE
;
1301 fbinfo
->var
.activate
= FB_ACTIVATE_NOW
;
1302 fbinfo
->var
.vmode
= FB_VMODE_NONINTERLACED
;
1303 fbinfo
->var
.bits_per_pixel
= windata
->default_bpp
;
1304 fbinfo
->fbops
= &s3c_fb_ops
;
1305 fbinfo
->flags
= FBINFO_FLAG_DEFAULT
;
1306 fbinfo
->pseudo_palette
= &win
->pseudo_palette
;
1308 /* prepare to actually start the framebuffer */
1310 ret
= s3c_fb_check_var(&fbinfo
->var
, fbinfo
);
1312 dev_err(sfb
->dev
, "check_var failed on initial video params\n");
1316 /* create initial colour map */
1318 ret
= fb_alloc_cmap(&fbinfo
->cmap
, win
->variant
.palette_sz
, 1);
1320 fb_set_cmap(&fbinfo
->cmap
, fbinfo
);
1322 dev_err(sfb
->dev
, "failed to allocate fb cmap\n");
1324 s3c_fb_set_par(fbinfo
);
1326 dev_dbg(sfb
->dev
, "about to register framebuffer\n");
1328 /* run the check_var and set_par on our configuration. */
1330 ret
= register_framebuffer(fbinfo
);
1332 dev_err(sfb
->dev
, "failed to register framebuffer\n");
1336 dev_info(sfb
->dev
, "window %d: fb %s\n", win_no
, fbinfo
->fix
.id
);
1342 * s3c_fb_clear_win() - clear hardware window registers.
1343 * @sfb: The base resources for the hardware.
1344 * @win: The window to process.
1346 * Reset the specific window registers to a known state.
1348 static void s3c_fb_clear_win(struct s3c_fb
*sfb
, int win
)
1350 void __iomem
*regs
= sfb
->regs
;
1353 writel(0, regs
+ sfb
->variant
.wincon
+ (win
* 4));
1354 writel(0, regs
+ VIDOSD_A(win
, sfb
->variant
));
1355 writel(0, regs
+ VIDOSD_B(win
, sfb
->variant
));
1356 writel(0, regs
+ VIDOSD_C(win
, sfb
->variant
));
1357 reg
= readl(regs
+ SHADOWCON
);
1358 writel(reg
& ~SHADOWCON_WINx_PROTECT(win
), regs
+ SHADOWCON
);
1361 static int __devinit
s3c_fb_probe(struct platform_device
*pdev
)
1363 const struct platform_device_id
*platid
;
1364 struct s3c_fb_driverdata
*fbdrv
;
1365 struct device
*dev
= &pdev
->dev
;
1366 struct s3c_fb_platdata
*pd
;
1368 struct resource
*res
;
1373 platid
= platform_get_device_id(pdev
);
1374 fbdrv
= (struct s3c_fb_driverdata
*)platid
->driver_data
;
1376 if (fbdrv
->variant
.nr_windows
> S3C_FB_MAX_WIN
) {
1377 dev_err(dev
, "too many windows, cannot attach\n");
1381 pd
= pdev
->dev
.platform_data
;
1383 dev_err(dev
, "no platform data specified\n");
1387 sfb
= devm_kzalloc(dev
, sizeof(struct s3c_fb
), GFP_KERNEL
);
1389 dev_err(dev
, "no memory for framebuffers\n");
1393 dev_dbg(dev
, "allocate new framebuffer %p\n", sfb
);
1397 sfb
->variant
= fbdrv
->variant
;
1399 spin_lock_init(&sfb
->slock
);
1401 sfb
->bus_clk
= clk_get(dev
, "lcd");
1402 if (IS_ERR(sfb
->bus_clk
)) {
1403 dev_err(dev
, "failed to get bus clock\n");
1404 ret
= PTR_ERR(sfb
->bus_clk
);
1408 clk_enable(sfb
->bus_clk
);
1410 if (!sfb
->variant
.has_clksel
) {
1411 sfb
->lcd_clk
= clk_get(dev
, "sclk_fimd");
1412 if (IS_ERR(sfb
->lcd_clk
)) {
1413 dev_err(dev
, "failed to get lcd clock\n");
1414 ret
= PTR_ERR(sfb
->lcd_clk
);
1418 clk_enable(sfb
->lcd_clk
);
1421 pm_runtime_enable(sfb
->dev
);
1423 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1425 dev_err(dev
, "failed to find registers\n");
1430 sfb
->regs
= devm_request_and_ioremap(dev
, res
);
1432 dev_err(dev
, "failed to map registers\n");
1437 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
1439 dev_err(dev
, "failed to acquire irq resource\n");
1443 sfb
->irq_no
= res
->start
;
1444 ret
= devm_request_irq(dev
, sfb
->irq_no
, s3c_fb_irq
,
1447 dev_err(dev
, "irq request failed\n");
1451 dev_dbg(dev
, "got resources (regs %p), probing windows\n", sfb
->regs
);
1453 platform_set_drvdata(pdev
, sfb
);
1454 pm_runtime_get_sync(sfb
->dev
);
1456 /* setup gpio and output polarity controls */
1460 writel(pd
->vidcon1
, sfb
->regs
+ VIDCON1
);
1462 /* set video clock running at under-run */
1463 if (sfb
->variant
.has_fixvclk
) {
1464 reg
= readl(sfb
->regs
+ VIDCON1
);
1465 reg
&= ~VIDCON1_VCLK_MASK
;
1466 reg
|= VIDCON1_VCLK_RUN
;
1467 writel(reg
, sfb
->regs
+ VIDCON1
);
1470 /* zero all windows before we do anything */
1472 for (win
= 0; win
< fbdrv
->variant
.nr_windows
; win
++)
1473 s3c_fb_clear_win(sfb
, win
);
1475 /* initialise colour key controls */
1476 for (win
= 0; win
< (fbdrv
->variant
.nr_windows
- 1); win
++) {
1477 void __iomem
*regs
= sfb
->regs
+ sfb
->variant
.keycon
;
1480 writel(0xffffff, regs
+ WKEYCON0
);
1481 writel(0xffffff, regs
+ WKEYCON1
);
1484 /* we have the register setup, start allocating framebuffers */
1486 for (win
= 0; win
< fbdrv
->variant
.nr_windows
; win
++) {
1490 if (!pd
->win
[win
]->win_mode
.pixclock
)
1491 s3c_fb_missing_pixclock(&pd
->win
[win
]->win_mode
);
1493 ret
= s3c_fb_probe_win(sfb
, win
, fbdrv
->win
[win
],
1494 &sfb
->windows
[win
]);
1496 dev_err(dev
, "failed to create window %d\n", win
);
1497 for (; win
>= 0; win
--)
1498 s3c_fb_release_win(sfb
, sfb
->windows
[win
]);
1499 goto err_pm_runtime
;
1503 platform_set_drvdata(pdev
, sfb
);
1504 pm_runtime_put_sync(sfb
->dev
);
1509 pm_runtime_put_sync(sfb
->dev
);
1512 pm_runtime_disable(sfb
->dev
);
1514 if (!sfb
->variant
.has_clksel
) {
1515 clk_disable(sfb
->lcd_clk
);
1516 clk_put(sfb
->lcd_clk
);
1520 clk_disable(sfb
->bus_clk
);
1521 clk_put(sfb
->bus_clk
);
1528 * s3c_fb_remove() - Cleanup on module finalisation
1529 * @pdev: The platform device we are bound to.
1531 * Shutdown and then release all the resources that the driver allocated
1532 * on initialisation.
1534 static int __devexit
s3c_fb_remove(struct platform_device
*pdev
)
1536 struct s3c_fb
*sfb
= platform_get_drvdata(pdev
);
1539 pm_runtime_get_sync(sfb
->dev
);
1541 for (win
= 0; win
< S3C_FB_MAX_WIN
; win
++)
1542 if (sfb
->windows
[win
])
1543 s3c_fb_release_win(sfb
, sfb
->windows
[win
]);
1545 if (!sfb
->variant
.has_clksel
) {
1546 clk_disable(sfb
->lcd_clk
);
1547 clk_put(sfb
->lcd_clk
);
1550 clk_disable(sfb
->bus_clk
);
1551 clk_put(sfb
->bus_clk
);
1553 pm_runtime_put_sync(sfb
->dev
);
1554 pm_runtime_disable(sfb
->dev
);
1559 #ifdef CONFIG_PM_SLEEP
1560 static int s3c_fb_suspend(struct device
*dev
)
1562 struct platform_device
*pdev
= to_platform_device(dev
);
1563 struct s3c_fb
*sfb
= platform_get_drvdata(pdev
);
1564 struct s3c_fb_win
*win
;
1567 for (win_no
= S3C_FB_MAX_WIN
- 1; win_no
>= 0; win_no
--) {
1568 win
= sfb
->windows
[win_no
];
1572 /* use the blank function to push into power-down */
1573 s3c_fb_blank(FB_BLANK_POWERDOWN
, win
->fbinfo
);
1576 if (!sfb
->variant
.has_clksel
)
1577 clk_disable(sfb
->lcd_clk
);
1579 clk_disable(sfb
->bus_clk
);
1583 static int s3c_fb_resume(struct device
*dev
)
1585 struct platform_device
*pdev
= to_platform_device(dev
);
1586 struct s3c_fb
*sfb
= platform_get_drvdata(pdev
);
1587 struct s3c_fb_platdata
*pd
= sfb
->pdata
;
1588 struct s3c_fb_win
*win
;
1592 clk_enable(sfb
->bus_clk
);
1594 if (!sfb
->variant
.has_clksel
)
1595 clk_enable(sfb
->lcd_clk
);
1597 /* setup gpio and output polarity controls */
1599 writel(pd
->vidcon1
, sfb
->regs
+ VIDCON1
);
1601 /* set video clock running at under-run */
1602 if (sfb
->variant
.has_fixvclk
) {
1603 reg
= readl(sfb
->regs
+ VIDCON1
);
1604 reg
&= ~VIDCON1_VCLK_MASK
;
1605 reg
|= VIDCON1_VCLK_RUN
;
1606 writel(reg
, sfb
->regs
+ VIDCON1
);
1609 /* zero all windows before we do anything */
1610 for (win_no
= 0; win_no
< sfb
->variant
.nr_windows
; win_no
++)
1611 s3c_fb_clear_win(sfb
, win_no
);
1613 for (win_no
= 0; win_no
< sfb
->variant
.nr_windows
- 1; win_no
++) {
1614 void __iomem
*regs
= sfb
->regs
+ sfb
->variant
.keycon
;
1615 win
= sfb
->windows
[win_no
];
1619 shadow_protect_win(win
, 1);
1620 regs
+= (win_no
* 8);
1621 writel(0xffffff, regs
+ WKEYCON0
);
1622 writel(0xffffff, regs
+ WKEYCON1
);
1623 shadow_protect_win(win
, 0);
1626 /* restore framebuffers */
1627 for (win_no
= 0; win_no
< S3C_FB_MAX_WIN
; win_no
++) {
1628 win
= sfb
->windows
[win_no
];
1632 dev_dbg(&pdev
->dev
, "resuming window %d\n", win_no
);
1633 s3c_fb_set_par(win
->fbinfo
);
1640 #ifdef CONFIG_PM_RUNTIME
1641 static int s3c_fb_runtime_suspend(struct device
*dev
)
1643 struct platform_device
*pdev
= to_platform_device(dev
);
1644 struct s3c_fb
*sfb
= platform_get_drvdata(pdev
);
1646 if (!sfb
->variant
.has_clksel
)
1647 clk_disable(sfb
->lcd_clk
);
1649 clk_disable(sfb
->bus_clk
);
1654 static int s3c_fb_runtime_resume(struct device
*dev
)
1656 struct platform_device
*pdev
= to_platform_device(dev
);
1657 struct s3c_fb
*sfb
= platform_get_drvdata(pdev
);
1658 struct s3c_fb_platdata
*pd
= sfb
->pdata
;
1660 clk_enable(sfb
->bus_clk
);
1662 if (!sfb
->variant
.has_clksel
)
1663 clk_enable(sfb
->lcd_clk
);
1665 /* setup gpio and output polarity controls */
1667 writel(pd
->vidcon1
, sfb
->regs
+ VIDCON1
);
1673 #define VALID_BPP124 (VALID_BPP(1) | VALID_BPP(2) | VALID_BPP(4))
1674 #define VALID_BPP1248 (VALID_BPP124 | VALID_BPP(8))
1676 static struct s3c_fb_win_variant s3c_fb_data_64xx_wins
[] = {
1679 .osd_size_off
= 0x8,
1681 .valid_bpp
= (VALID_BPP1248
| VALID_BPP(16) |
1682 VALID_BPP(18) | VALID_BPP(24)),
1687 .osd_size_off
= 0xc,
1690 .valid_bpp
= (VALID_BPP1248
| VALID_BPP(16) |
1691 VALID_BPP(18) | VALID_BPP(19) |
1692 VALID_BPP(24) | VALID_BPP(25) |
1698 .osd_size_off
= 0xc,
1702 .valid_bpp
= (VALID_BPP1248
| VALID_BPP(16) |
1703 VALID_BPP(18) | VALID_BPP(19) |
1704 VALID_BPP(24) | VALID_BPP(25) |
1712 .valid_bpp
= (VALID_BPP124
| VALID_BPP(16) |
1713 VALID_BPP(18) | VALID_BPP(19) |
1714 VALID_BPP(24) | VALID_BPP(25) |
1722 .valid_bpp
= (VALID_BPP(1) | VALID_BPP(2) |
1723 VALID_BPP(16) | VALID_BPP(18) |
1724 VALID_BPP(19) | VALID_BPP(24) |
1725 VALID_BPP(25) | VALID_BPP(28)),
1729 static struct s3c_fb_win_variant s3c_fb_data_s5p_wins
[] = {
1732 .osd_size_off
= 0x8,
1734 .valid_bpp
= (VALID_BPP1248
| VALID_BPP(13) |
1735 VALID_BPP(15) | VALID_BPP(16) |
1736 VALID_BPP(18) | VALID_BPP(19) |
1737 VALID_BPP(24) | VALID_BPP(25) |
1743 .osd_size_off
= 0xc,
1746 .valid_bpp
= (VALID_BPP1248
| VALID_BPP(13) |
1747 VALID_BPP(15) | VALID_BPP(16) |
1748 VALID_BPP(18) | VALID_BPP(19) |
1749 VALID_BPP(24) | VALID_BPP(25) |
1755 .osd_size_off
= 0xc,
1758 .valid_bpp
= (VALID_BPP1248
| VALID_BPP(13) |
1759 VALID_BPP(15) | VALID_BPP(16) |
1760 VALID_BPP(18) | VALID_BPP(19) |
1761 VALID_BPP(24) | VALID_BPP(25) |
1768 .valid_bpp
= (VALID_BPP1248
| VALID_BPP(13) |
1769 VALID_BPP(15) | VALID_BPP(16) |
1770 VALID_BPP(18) | VALID_BPP(19) |
1771 VALID_BPP(24) | VALID_BPP(25) |
1778 .valid_bpp
= (VALID_BPP1248
| VALID_BPP(13) |
1779 VALID_BPP(15) | VALID_BPP(16) |
1780 VALID_BPP(18) | VALID_BPP(19) |
1781 VALID_BPP(24) | VALID_BPP(25) |
1786 static struct s3c_fb_driverdata s3c_fb_data_64xx
= {
1789 .vidtcon
= VIDTCON0
,
1790 .wincon
= WINCON(0),
1791 .winmap
= WINxMAP(0),
1795 .buf_start
= VIDW_BUF_START(0),
1796 .buf_size
= VIDW_BUF_SIZE(0),
1797 .buf_end
= VIDW_BUF_END(0),
1810 .win
[0] = &s3c_fb_data_64xx_wins
[0],
1811 .win
[1] = &s3c_fb_data_64xx_wins
[1],
1812 .win
[2] = &s3c_fb_data_64xx_wins
[2],
1813 .win
[3] = &s3c_fb_data_64xx_wins
[3],
1814 .win
[4] = &s3c_fb_data_64xx_wins
[4],
1817 static struct s3c_fb_driverdata s3c_fb_data_s5pc100
= {
1820 .vidtcon
= VIDTCON0
,
1821 .wincon
= WINCON(0),
1822 .winmap
= WINxMAP(0),
1826 .buf_start
= VIDW_BUF_START(0),
1827 .buf_size
= VIDW_BUF_SIZE(0),
1828 .buf_end
= VIDW_BUF_END(0),
1842 .win
[0] = &s3c_fb_data_s5p_wins
[0],
1843 .win
[1] = &s3c_fb_data_s5p_wins
[1],
1844 .win
[2] = &s3c_fb_data_s5p_wins
[2],
1845 .win
[3] = &s3c_fb_data_s5p_wins
[3],
1846 .win
[4] = &s3c_fb_data_s5p_wins
[4],
1849 static struct s3c_fb_driverdata s3c_fb_data_s5pv210
= {
1852 .vidtcon
= VIDTCON0
,
1853 .wincon
= WINCON(0),
1854 .winmap
= WINxMAP(0),
1858 .buf_start
= VIDW_BUF_START(0),
1859 .buf_size
= VIDW_BUF_SIZE(0),
1860 .buf_end
= VIDW_BUF_END(0),
1875 .win
[0] = &s3c_fb_data_s5p_wins
[0],
1876 .win
[1] = &s3c_fb_data_s5p_wins
[1],
1877 .win
[2] = &s3c_fb_data_s5p_wins
[2],
1878 .win
[3] = &s3c_fb_data_s5p_wins
[3],
1879 .win
[4] = &s3c_fb_data_s5p_wins
[4],
1882 static struct s3c_fb_driverdata s3c_fb_data_exynos4
= {
1885 .vidtcon
= VIDTCON0
,
1886 .wincon
= WINCON(0),
1887 .winmap
= WINxMAP(0),
1891 .buf_start
= VIDW_BUF_START(0),
1892 .buf_size
= VIDW_BUF_SIZE(0),
1893 .buf_end
= VIDW_BUF_END(0),
1907 .win
[0] = &s3c_fb_data_s5p_wins
[0],
1908 .win
[1] = &s3c_fb_data_s5p_wins
[1],
1909 .win
[2] = &s3c_fb_data_s5p_wins
[2],
1910 .win
[3] = &s3c_fb_data_s5p_wins
[3],
1911 .win
[4] = &s3c_fb_data_s5p_wins
[4],
1914 static struct s3c_fb_driverdata s3c_fb_data_exynos5
= {
1917 .vidtcon
= VIDTCON0
,
1918 .wincon
= WINCON(0),
1919 .winmap
= WINxMAP(0),
1923 .buf_start
= VIDW_BUF_START(0),
1924 .buf_size
= VIDW_BUF_SIZE(0),
1925 .buf_end
= VIDW_BUF_END(0),
1938 .win
[0] = &s3c_fb_data_s5p_wins
[0],
1939 .win
[1] = &s3c_fb_data_s5p_wins
[1],
1940 .win
[2] = &s3c_fb_data_s5p_wins
[2],
1941 .win
[3] = &s3c_fb_data_s5p_wins
[3],
1942 .win
[4] = &s3c_fb_data_s5p_wins
[4],
1945 /* S3C2443/S3C2416 style hardware */
1946 static struct s3c_fb_driverdata s3c_fb_data_s3c2443
= {
1967 .win
[0] = &(struct s3c_fb_win_variant
) {
1969 .valid_bpp
= VALID_BPP1248
| VALID_BPP(16) | VALID_BPP(24),
1971 .win
[1] = &(struct s3c_fb_win_variant
) {
1975 .valid_bpp
= (VALID_BPP1248
| VALID_BPP(16) |
1976 VALID_BPP(18) | VALID_BPP(19) |
1977 VALID_BPP(24) | VALID_BPP(25) |
1982 static struct s3c_fb_driverdata s3c_fb_data_s5p64x0
= {
1985 .vidtcon
= VIDTCON0
,
1986 .wincon
= WINCON(0),
1987 .winmap
= WINxMAP(0),
1991 .buf_start
= VIDW_BUF_START(0),
1992 .buf_size
= VIDW_BUF_SIZE(0),
1993 .buf_end
= VIDW_BUF_END(0),
2004 .win
[0] = &s3c_fb_data_s5p_wins
[0],
2005 .win
[1] = &s3c_fb_data_s5p_wins
[1],
2006 .win
[2] = &s3c_fb_data_s5p_wins
[2],
2009 static struct platform_device_id s3c_fb_driver_ids
[] = {
2012 .driver_data
= (unsigned long)&s3c_fb_data_64xx
,
2014 .name
= "s5pc100-fb",
2015 .driver_data
= (unsigned long)&s3c_fb_data_s5pc100
,
2017 .name
= "s5pv210-fb",
2018 .driver_data
= (unsigned long)&s3c_fb_data_s5pv210
,
2020 .name
= "exynos4-fb",
2021 .driver_data
= (unsigned long)&s3c_fb_data_exynos4
,
2023 .name
= "exynos5-fb",
2024 .driver_data
= (unsigned long)&s3c_fb_data_exynos5
,
2026 .name
= "s3c2443-fb",
2027 .driver_data
= (unsigned long)&s3c_fb_data_s3c2443
,
2029 .name
= "s5p64x0-fb",
2030 .driver_data
= (unsigned long)&s3c_fb_data_s5p64x0
,
2034 MODULE_DEVICE_TABLE(platform
, s3c_fb_driver_ids
);
2036 static const struct dev_pm_ops s3cfb_pm_ops
= {
2037 SET_SYSTEM_SLEEP_PM_OPS(s3c_fb_suspend
, s3c_fb_resume
)
2038 SET_RUNTIME_PM_OPS(s3c_fb_runtime_suspend
, s3c_fb_runtime_resume
,
2042 static struct platform_driver s3c_fb_driver
= {
2043 .probe
= s3c_fb_probe
,
2044 .remove
= __devexit_p(s3c_fb_remove
),
2045 .id_table
= s3c_fb_driver_ids
,
2048 .owner
= THIS_MODULE
,
2049 .pm
= &s3cfb_pm_ops
,
2053 module_platform_driver(s3c_fb_driver
);
2055 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
2056 MODULE_DESCRIPTION("Samsung S3C SoC Framebuffer driver");
2057 MODULE_LICENSE("GPL");
2058 MODULE_ALIAS("platform:s3c-fb");