]>
Commit | Line | Data |
---|---|---|
20fd5767 AP |
1 | /* |
2 | * linux/drivers/video/s3c2410fb.c | |
3 | * Copyright (c) Arnaud Patard, Ben Dooks | |
4 | * | |
5 | * This file is subject to the terms and conditions of the GNU General Public | |
6 | * License. See the file COPYING in the main directory of this archive for | |
7 | * more details. | |
8 | * | |
9 | * S3C2410 LCD Controller Frame Buffer Driver | |
10 | * based on skeletonfb.c, sa1100fb.c and others | |
11 | * | |
12 | * ChangeLog | |
13 | * 2005-04-07: Arnaud Patard <[email protected]> | |
14 | * - u32 state -> pm_message_t state | |
15 | * - S3C2410_{VA,SZ}_LCD -> S3C24XX | |
16 | * | |
17 | * 2005-03-15: Arnaud Patard <[email protected]> | |
18 | * - Removed the ioctl | |
19 | * - use readl/writel instead of __raw_writel/__raw_readl | |
20 | * | |
21 | * 2004-12-04: Arnaud Patard <[email protected]> | |
22 | * - Added the possibility to set on or off the | |
9fa7bc01 | 23 | * debugging messages |
20fd5767 AP |
24 | * - Replaced 0 and 1 by on or off when reading the |
25 | * /sys files | |
26 | * | |
27 | * 2005-03-23: Ben Dooks <[email protected]> | |
28 | * - added non 16bpp modes | |
29 | * - updated platform information for range of x/y/bpp | |
30 | * - add code to ensure palette is written correctly | |
31 | * - add pixel clock divisor control | |
32 | * | |
33 | * 2004-11-11: Arnaud Patard <[email protected]> | |
9fa7bc01 | 34 | * - Removed the use of currcon as it no more exists |
b0831941 | 35 | * - Added LCD power sysfs interface |
20fd5767 AP |
36 | * |
37 | * 2004-11-03: Ben Dooks <[email protected]> | |
38 | * - minor cleanups | |
39 | * - add suspend/resume support | |
40 | * - s3c2410fb_setcolreg() not valid in >8bpp modes | |
41 | * - removed last CONFIG_FB_S3C2410_FIXED | |
42 | * - ensure lcd controller stopped before cleanup | |
43 | * - added sysfs interface for backlight power | |
44 | * - added mask for gpio configuration | |
45 | * - ensured IRQs disabled during GPIO configuration | |
46 | * - disable TPAL before enabling video | |
47 | * | |
48 | * 2004-09-20: Arnaud Patard <[email protected]> | |
49 | * - Suppress command line options | |
50 | * | |
51 | * 2004-09-15: Arnaud Patard <[email protected]> | |
b0831941 | 52 | * - code cleanup |
20fd5767 AP |
53 | * |
54 | * 2004-09-07: Arnaud Patard <[email protected]> | |
b0831941 KH |
55 | * - Renamed from h1940fb.c to s3c2410fb.c |
56 | * - Add support for different devices | |
57 | * - Backlight support | |
20fd5767 | 58 | * |
96de0e25 | 59 | * 2004-09-05: Herbert Pötzl <[email protected]> |
20fd5767 AP |
60 | * - added clock (de-)allocation code |
61 | * - added fixem fbmem option | |
62 | * | |
63 | * 2004-07-27: Arnaud Patard <[email protected]> | |
64 | * - code cleanup | |
65 | * - added a forgotten return in h1940fb_init | |
66 | * | |
96de0e25 | 67 | * 2004-07-19: Herbert Pötzl <[email protected]> |
20fd5767 AP |
68 | * - code cleanup and extended debugging |
69 | * | |
70 | * 2004-07-15: Arnaud Patard <[email protected]> | |
71 | * - First version | |
72 | */ | |
73 | ||
74 | #include <linux/module.h> | |
75 | #include <linux/kernel.h> | |
76 | #include <linux/errno.h> | |
77 | #include <linux/string.h> | |
78 | #include <linux/mm.h> | |
20fd5767 AP |
79 | #include <linux/slab.h> |
80 | #include <linux/delay.h> | |
81 | #include <linux/fb.h> | |
82 | #include <linux/init.h> | |
83 | #include <linux/dma-mapping.h> | |
20fd5767 | 84 | #include <linux/interrupt.h> |
d052d1be | 85 | #include <linux/platform_device.h> |
f8ce2547 | 86 | #include <linux/clk.h> |
20fd5767 AP |
87 | |
88 | #include <asm/io.h> | |
20fd5767 AP |
89 | #include <asm/div64.h> |
90 | ||
91 | #include <asm/mach/map.h> | |
92 | #include <asm/arch/regs-lcd.h> | |
93 | #include <asm/arch/regs-gpio.h> | |
94 | #include <asm/arch/fb.h> | |
20fd5767 AP |
95 | |
96 | #ifdef CONFIG_PM | |
97 | #include <linux/pm.h> | |
98 | #endif | |
99 | ||
100 | #include "s3c2410fb.h" | |
101 | ||
20fd5767 AP |
102 | /* Debugging stuff */ |
103 | #ifdef CONFIG_FB_S3C2410_DEBUG | |
b0831941 | 104 | static int debug = 1; |
20fd5767 | 105 | #else |
b0831941 | 106 | static int debug = 0; |
20fd5767 AP |
107 | #endif |
108 | ||
109 | #define dprintk(msg...) if (debug) { printk(KERN_DEBUG "s3c2410fb: " msg); } | |
110 | ||
111 | /* useful functions */ | |
112 | ||
f62e770b BD |
113 | static int is_s3c2412(struct s3c2410fb_info *fbi) |
114 | { | |
115 | return (fbi->drv_type == DRV_S3C2412); | |
116 | } | |
117 | ||
20fd5767 AP |
118 | /* s3c2410fb_set_lcdaddr |
119 | * | |
120 | * initialise lcd controller address pointers | |
b0831941 | 121 | */ |
110c1fa7 | 122 | static void s3c2410fb_set_lcdaddr(struct fb_info *info) |
20fd5767 | 123 | { |
20fd5767 | 124 | unsigned long saddr1, saddr2, saddr3; |
7ee0fe41 KH |
125 | struct s3c2410fb_info *fbi = info->par; |
126 | void __iomem *regs = fbi->io; | |
20fd5767 | 127 | |
110c1fa7 KH |
128 | saddr1 = info->fix.smem_start >> 1; |
129 | saddr2 = info->fix.smem_start; | |
9fa7bc01 | 130 | saddr2 += info->fix.line_length * info->var.yres; |
b0831941 | 131 | saddr2 >>= 1; |
20fd5767 | 132 | |
b0831941 | 133 | saddr3 = S3C2410_OFFSIZE(0) | |
9fa7bc01 | 134 | S3C2410_PAGEWIDTH((info->fix.line_length / 2) & 0x3ff); |
20fd5767 AP |
135 | |
136 | dprintk("LCDSADDR1 = 0x%08lx\n", saddr1); | |
137 | dprintk("LCDSADDR2 = 0x%08lx\n", saddr2); | |
138 | dprintk("LCDSADDR3 = 0x%08lx\n", saddr3); | |
139 | ||
7ee0fe41 KH |
140 | writel(saddr1, regs + S3C2410_LCDSADDR1); |
141 | writel(saddr2, regs + S3C2410_LCDSADDR2); | |
142 | writel(saddr3, regs + S3C2410_LCDSADDR3); | |
20fd5767 AP |
143 | } |
144 | ||
145 | /* s3c2410fb_calc_pixclk() | |
146 | * | |
147 | * calculate divisor for clk->pixclk | |
b0831941 | 148 | */ |
20fd5767 AP |
149 | static unsigned int s3c2410fb_calc_pixclk(struct s3c2410fb_info *fbi, |
150 | unsigned long pixclk) | |
151 | { | |
152 | unsigned long clk = clk_get_rate(fbi->clk); | |
153 | unsigned long long div; | |
154 | ||
9fa7bc01 | 155 | /* pixclk is in picoseconds, our clock is in Hz |
20fd5767 AP |
156 | * |
157 | * Hz -> picoseconds is / 10^-12 | |
158 | */ | |
159 | ||
160 | div = (unsigned long long)clk * pixclk; | |
9fa7bc01 KH |
161 | div >>= 12; /* div / 2^12 */ |
162 | do_div(div, 625 * 625UL * 625); /* div / 5^12 */ | |
20fd5767 AP |
163 | |
164 | dprintk("pixclk %ld, divisor is %ld\n", pixclk, (long)div); | |
165 | return div; | |
166 | } | |
167 | ||
168 | /* | |
169 | * s3c2410fb_check_var(): | |
170 | * Get the video params out of 'var'. If a value doesn't fit, round it up, | |
171 | * if it's too big, return -EINVAL. | |
172 | * | |
173 | */ | |
174 | static int s3c2410fb_check_var(struct fb_var_screeninfo *var, | |
175 | struct fb_info *info) | |
176 | { | |
177 | struct s3c2410fb_info *fbi = info->par; | |
9fa7bc01 | 178 | struct s3c2410fb_mach_info *mach_info = fbi->dev->platform_data; |
09fe75f6 | 179 | struct s3c2410fb_display *display = NULL; |
e7076389 KH |
180 | struct s3c2410fb_display *default_display = mach_info->displays + |
181 | mach_info->default_display; | |
182 | int type = default_display->type; | |
09fe75f6 | 183 | unsigned i; |
20fd5767 AP |
184 | |
185 | dprintk("check_var(var=%p, info=%p)\n", var, info); | |
186 | ||
187 | /* validate x/y resolution */ | |
e7076389 KH |
188 | /* choose default mode if possible */ |
189 | if (var->yres == default_display->yres && | |
190 | var->xres == default_display->xres && | |
191 | var->bits_per_pixel == default_display->bpp) | |
192 | display = default_display; | |
193 | else | |
194 | for (i = 0; i < mach_info->num_displays; i++) | |
195 | if (type == mach_info->displays[i].type && | |
196 | var->yres == mach_info->displays[i].yres && | |
197 | var->xres == mach_info->displays[i].xres && | |
198 | var->bits_per_pixel == mach_info->displays[i].bpp) { | |
199 | display = mach_info->displays + i; | |
200 | break; | |
201 | } | |
20fd5767 | 202 | |
09fe75f6 KH |
203 | if (!display) { |
204 | dprintk("wrong resolution or depth %dx%d at %d bpp\n", | |
205 | var->xres, var->yres, var->bits_per_pixel); | |
206 | return -EINVAL; | |
207 | } | |
20fd5767 | 208 | |
9939a481 KH |
209 | /* it is always the size as the display */ |
210 | var->xres_virtual = display->xres; | |
211 | var->yres_virtual = display->yres; | |
9fa7bc01 KH |
212 | var->height = display->height; |
213 | var->width = display->width; | |
9939a481 KH |
214 | |
215 | /* copy lcd settings */ | |
69816699 | 216 | var->pixclock = display->pixclock; |
9939a481 KH |
217 | var->left_margin = display->left_margin; |
218 | var->right_margin = display->right_margin; | |
9fa7bc01 KH |
219 | var->upper_margin = display->upper_margin; |
220 | var->lower_margin = display->lower_margin; | |
221 | var->vsync_len = display->vsync_len; | |
222 | var->hsync_len = display->hsync_len; | |
223 | ||
9fa7bc01 KH |
224 | fbi->regs.lcdcon5 = display->lcdcon5; |
225 | /* set display type */ | |
36f31a70 | 226 | fbi->regs.lcdcon1 = display->type; |
9939a481 | 227 | |
b0831941 KH |
228 | var->transp.offset = 0; |
229 | var->transp.length = 0; | |
20fd5767 | 230 | /* set r/g/b positions */ |
357b819d | 231 | switch (var->bits_per_pixel) { |
b0831941 KH |
232 | case 1: |
233 | case 2: | |
234 | case 4: | |
235 | var->red.offset = 0; | |
236 | var->red.length = var->bits_per_pixel; | |
237 | var->green = var->red; | |
238 | var->blue = var->red; | |
239 | break; | |
240 | case 8: | |
09fe75f6 | 241 | if (display->type != S3C2410_LCDCON1_TFT) { |
b0831941 KH |
242 | /* 8 bpp 332 */ |
243 | var->red.length = 3; | |
244 | var->red.offset = 5; | |
245 | var->green.length = 3; | |
246 | var->green.offset = 2; | |
247 | var->blue.length = 2; | |
357b819d | 248 | var->blue.offset = 0; |
b0831941 KH |
249 | } else { |
250 | var->red.offset = 0; | |
357b819d | 251 | var->red.length = 8; |
b0831941 KH |
252 | var->green = var->red; |
253 | var->blue = var->red; | |
254 | } | |
255 | break; | |
256 | case 12: | |
257 | /* 12 bpp 444 */ | |
258 | var->red.length = 4; | |
259 | var->red.offset = 8; | |
260 | var->green.length = 4; | |
261 | var->green.offset = 4; | |
262 | var->blue.length = 4; | |
263 | var->blue.offset = 0; | |
264 | break; | |
265 | ||
266 | default: | |
267 | case 16: | |
f28ef573 | 268 | if (display->lcdcon5 & S3C2410_LCDCON5_FRM565) { |
b0831941 KH |
269 | /* 16 bpp, 565 format */ |
270 | var->red.offset = 11; | |
271 | var->green.offset = 5; | |
357b819d | 272 | var->blue.offset = 0; |
b0831941 KH |
273 | var->red.length = 5; |
274 | var->green.length = 6; | |
275 | var->blue.length = 5; | |
276 | } else { | |
277 | /* 16 bpp, 5551 format */ | |
278 | var->red.offset = 11; | |
279 | var->green.offset = 6; | |
280 | var->blue.offset = 1; | |
281 | var->red.length = 5; | |
282 | var->green.length = 5; | |
283 | var->blue.length = 5; | |
284 | } | |
285 | break; | |
93613b9f KH |
286 | case 32: |
287 | /* 24 bpp 888 and 8 dummy */ | |
b0831941 KH |
288 | var->red.length = 8; |
289 | var->red.offset = 16; | |
290 | var->green.length = 8; | |
291 | var->green.offset = 8; | |
292 | var->blue.length = 8; | |
293 | var->blue.offset = 0; | |
294 | break; | |
357b819d | 295 | } |
20fd5767 AP |
296 | return 0; |
297 | } | |
298 | ||
9939a481 | 299 | /* s3c2410fb_calculate_stn_lcd_regs |
20fd5767 | 300 | * |
9939a481 | 301 | * calculate register values from var settings |
b0831941 | 302 | */ |
9939a481 KH |
303 | static void s3c2410fb_calculate_stn_lcd_regs(const struct fb_info *info, |
304 | struct s3c2410fb_hw *regs) | |
20fd5767 | 305 | { |
9939a481 KH |
306 | const struct s3c2410fb_info *fbi = info->par; |
307 | const struct fb_var_screeninfo *var = &info->var; | |
308 | int type = regs->lcdcon1 & ~S3C2410_LCDCON1_TFT; | |
309 | int hs = var->xres >> 2; | |
310 | unsigned wdly = (var->left_margin >> 4) - 1; | |
93d11f5a | 311 | unsigned wlh = (var->hsync_len >> 4) - 1; |
20fd5767 | 312 | |
9939a481 KH |
313 | if (type != S3C2410_LCDCON1_STN4) |
314 | hs >>= 1; | |
357b819d | 315 | |
9939a481 KH |
316 | switch (var->bits_per_pixel) { |
317 | case 1: | |
318 | regs->lcdcon1 |= S3C2410_LCDCON1_STN1BPP; | |
319 | break; | |
320 | case 2: | |
321 | regs->lcdcon1 |= S3C2410_LCDCON1_STN2GREY; | |
322 | break; | |
323 | case 4: | |
324 | regs->lcdcon1 |= S3C2410_LCDCON1_STN4GREY; | |
325 | break; | |
326 | case 8: | |
327 | regs->lcdcon1 |= S3C2410_LCDCON1_STN8BPP; | |
328 | hs *= 3; | |
329 | break; | |
330 | case 12: | |
331 | regs->lcdcon1 |= S3C2410_LCDCON1_STN12BPP; | |
332 | hs *= 3; | |
333 | break; | |
20fd5767 | 334 | |
9939a481 KH |
335 | default: |
336 | /* invalid pixel depth */ | |
337 | dev_err(fbi->dev, "invalid bpp %d\n", | |
338 | var->bits_per_pixel); | |
339 | } | |
340 | /* update X/Y info */ | |
9939a481 KH |
341 | dprintk("setting horz: lft=%d, rt=%d, sync=%d\n", |
342 | var->left_margin, var->right_margin, var->hsync_len); | |
20fd5767 | 343 | |
3c9ffd05 | 344 | regs->lcdcon2 = S3C2410_LCDCON2_LINEVAL(var->yres - 1); |
20fd5767 | 345 | |
9939a481 KH |
346 | if (wdly > 3) |
347 | wdly = 3; | |
20fd5767 | 348 | |
93d11f5a KH |
349 | if (wlh > 3) |
350 | wlh = 3; | |
351 | ||
9939a481 KH |
352 | regs->lcdcon3 = S3C2410_LCDCON3_WDLY(wdly) | |
353 | S3C2410_LCDCON3_LINEBLANK(var->right_margin / 8) | | |
354 | S3C2410_LCDCON3_HOZVAL(hs - 1); | |
93d11f5a | 355 | |
e92e7395 | 356 | regs->lcdcon4 = S3C2410_LCDCON4_WLH(wlh); |
9939a481 | 357 | } |
20fd5767 | 358 | |
9939a481 KH |
359 | /* s3c2410fb_calculate_tft_lcd_regs |
360 | * | |
361 | * calculate register values from var settings | |
362 | */ | |
363 | static void s3c2410fb_calculate_tft_lcd_regs(const struct fb_info *info, | |
364 | struct s3c2410fb_hw *regs) | |
365 | { | |
366 | const struct s3c2410fb_info *fbi = info->par; | |
367 | const struct fb_var_screeninfo *var = &info->var; | |
20fd5767 | 368 | |
9939a481 KH |
369 | switch (var->bits_per_pixel) { |
370 | case 1: | |
371 | regs->lcdcon1 |= S3C2410_LCDCON1_TFT1BPP; | |
372 | break; | |
373 | case 2: | |
374 | regs->lcdcon1 |= S3C2410_LCDCON1_TFT2BPP; | |
b0831941 | 375 | break; |
9939a481 KH |
376 | case 4: |
377 | regs->lcdcon1 |= S3C2410_LCDCON1_TFT4BPP; | |
b0831941 | 378 | break; |
9939a481 KH |
379 | case 8: |
380 | regs->lcdcon1 |= S3C2410_LCDCON1_TFT8BPP; | |
93613b9f KH |
381 | regs->lcdcon5 |= S3C2410_LCDCON5_BSWP | |
382 | S3C2410_LCDCON5_FRM565; | |
383 | regs->lcdcon5 &= ~S3C2410_LCDCON5_HWSWP; | |
9939a481 KH |
384 | break; |
385 | case 16: | |
386 | regs->lcdcon1 |= S3C2410_LCDCON1_TFT16BPP; | |
93613b9f KH |
387 | regs->lcdcon5 &= ~S3C2410_LCDCON5_BSWP; |
388 | regs->lcdcon5 |= S3C2410_LCDCON5_HWSWP; | |
389 | break; | |
390 | case 32: | |
391 | regs->lcdcon1 |= S3C2410_LCDCON1_TFT24BPP; | |
392 | regs->lcdcon5 &= ~(S3C2410_LCDCON5_BSWP | | |
393 | S3C2410_LCDCON5_HWSWP | | |
394 | S3C2410_LCDCON5_BPP24BL); | |
b0831941 | 395 | break; |
9939a481 KH |
396 | default: |
397 | /* invalid pixel depth */ | |
398 | dev_err(fbi->dev, "invalid bpp %d\n", | |
399 | var->bits_per_pixel); | |
357b819d | 400 | } |
9939a481 KH |
401 | /* update X/Y info */ |
402 | dprintk("setting vert: up=%d, low=%d, sync=%d\n", | |
403 | var->upper_margin, var->lower_margin, var->vsync_len); | |
357b819d | 404 | |
9939a481 KH |
405 | dprintk("setting horz: lft=%d, rt=%d, sync=%d\n", |
406 | var->left_margin, var->right_margin, var->hsync_len); | |
357b819d | 407 | |
93d11f5a KH |
408 | regs->lcdcon2 = S3C2410_LCDCON2_LINEVAL(var->yres - 1) | |
409 | S3C2410_LCDCON2_VBPD(var->upper_margin - 1) | | |
410 | S3C2410_LCDCON2_VFPD(var->lower_margin - 1) | | |
411 | S3C2410_LCDCON2_VSPW(var->vsync_len - 1); | |
9939a481 KH |
412 | |
413 | regs->lcdcon3 = S3C2410_LCDCON3_HBPD(var->right_margin - 1) | | |
414 | S3C2410_LCDCON3_HFPD(var->left_margin - 1) | | |
415 | S3C2410_LCDCON3_HOZVAL(var->xres - 1); | |
93d11f5a | 416 | |
e92e7395 | 417 | regs->lcdcon4 = S3C2410_LCDCON4_HSPW(var->hsync_len - 1); |
9939a481 KH |
418 | } |
419 | ||
420 | /* s3c2410fb_activate_var | |
421 | * | |
422 | * activate (set) the controller from the given framebuffer | |
423 | * information | |
424 | */ | |
425 | static void s3c2410fb_activate_var(struct fb_info *info) | |
426 | { | |
427 | struct s3c2410fb_info *fbi = info->par; | |
7ee0fe41 | 428 | void __iomem *regs = fbi->io; |
9fa7bc01 | 429 | int type = fbi->regs.lcdcon1 & S3C2410_LCDCON1_TFT; |
9939a481 | 430 | struct fb_var_screeninfo *var = &info->var; |
69816699 | 431 | int clkdiv = s3c2410fb_calc_pixclk(fbi, var->pixclock) / 2; |
9939a481 | 432 | |
69816699 KH |
433 | dprintk("%s: var->xres = %d\n", __FUNCTION__, var->xres); |
434 | dprintk("%s: var->yres = %d\n", __FUNCTION__, var->yres); | |
435 | dprintk("%s: var->bpp = %d\n", __FUNCTION__, var->bits_per_pixel); | |
20fd5767 | 436 | |
69816699 | 437 | if (type == S3C2410_LCDCON1_TFT) { |
9939a481 | 438 | s3c2410fb_calculate_tft_lcd_regs(info, &fbi->regs); |
69816699 KH |
439 | --clkdiv; |
440 | if (clkdiv < 0) | |
441 | clkdiv = 0; | |
442 | } else { | |
9939a481 | 443 | s3c2410fb_calculate_stn_lcd_regs(info, &fbi->regs); |
69816699 KH |
444 | if (clkdiv < 2) |
445 | clkdiv = 2; | |
446 | } | |
447 | ||
69816699 | 448 | fbi->regs.lcdcon1 |= S3C2410_LCDCON1_CLKVAL(clkdiv); |
9939a481 | 449 | |
20fd5767 AP |
450 | /* write new registers */ |
451 | ||
452 | dprintk("new register set:\n"); | |
453 | dprintk("lcdcon[1] = 0x%08lx\n", fbi->regs.lcdcon1); | |
454 | dprintk("lcdcon[2] = 0x%08lx\n", fbi->regs.lcdcon2); | |
455 | dprintk("lcdcon[3] = 0x%08lx\n", fbi->regs.lcdcon3); | |
456 | dprintk("lcdcon[4] = 0x%08lx\n", fbi->regs.lcdcon4); | |
457 | dprintk("lcdcon[5] = 0x%08lx\n", fbi->regs.lcdcon5); | |
458 | ||
7ee0fe41 KH |
459 | writel(fbi->regs.lcdcon1 & ~S3C2410_LCDCON1_ENVID, |
460 | regs + S3C2410_LCDCON1); | |
461 | writel(fbi->regs.lcdcon2, regs + S3C2410_LCDCON2); | |
462 | writel(fbi->regs.lcdcon3, regs + S3C2410_LCDCON3); | |
463 | writel(fbi->regs.lcdcon4, regs + S3C2410_LCDCON4); | |
464 | writel(fbi->regs.lcdcon5, regs + S3C2410_LCDCON5); | |
20fd5767 AP |
465 | |
466 | /* set lcd address pointers */ | |
110c1fa7 | 467 | s3c2410fb_set_lcdaddr(info); |
20fd5767 | 468 | |
9fa7bc01 | 469 | fbi->regs.lcdcon1 |= S3C2410_LCDCON1_ENVID, |
7ee0fe41 | 470 | writel(fbi->regs.lcdcon1, regs + S3C2410_LCDCON1); |
20fd5767 AP |
471 | } |
472 | ||
20fd5767 | 473 | /* |
b0831941 | 474 | * s3c2410fb_set_par - Alters the hardware state. |
20fd5767 AP |
475 | * @info: frame buffer structure that represents a single frame buffer |
476 | * | |
477 | */ | |
478 | static int s3c2410fb_set_par(struct fb_info *info) | |
479 | { | |
20fd5767 AP |
480 | struct fb_var_screeninfo *var = &info->var; |
481 | ||
b0831941 | 482 | switch (var->bits_per_pixel) { |
93613b9f | 483 | case 32: |
b0831941 | 484 | case 16: |
93613b9f | 485 | case 12: |
b0831941 KH |
486 | info->fix.visual = FB_VISUAL_TRUECOLOR; |
487 | break; | |
488 | case 1: | |
489 | info->fix.visual = FB_VISUAL_MONO01; | |
490 | break; | |
491 | default: | |
492 | info->fix.visual = FB_VISUAL_PSEUDOCOLOR; | |
493 | break; | |
357b819d | 494 | } |
20fd5767 | 495 | |
a1033604 | 496 | info->fix.line_length = (var->xres_virtual * var->bits_per_pixel) / 8; |
20fd5767 AP |
497 | |
498 | /* activate this new configuration */ | |
499 | ||
9939a481 | 500 | s3c2410fb_activate_var(info); |
20fd5767 AP |
501 | return 0; |
502 | } | |
503 | ||
504 | static void schedule_palette_update(struct s3c2410fb_info *fbi, | |
505 | unsigned int regno, unsigned int val) | |
506 | { | |
507 | unsigned long flags; | |
508 | unsigned long irqen; | |
f62e770b | 509 | void __iomem *irq_base = fbi->irq_base; |
20fd5767 AP |
510 | |
511 | local_irq_save(flags); | |
512 | ||
513 | fbi->palette_buffer[regno] = val; | |
514 | ||
515 | if (!fbi->palette_ready) { | |
516 | fbi->palette_ready = 1; | |
517 | ||
518 | /* enable IRQ */ | |
f62e770b | 519 | irqen = readl(irq_base + S3C24XX_LCDINTMSK); |
20fd5767 | 520 | irqen &= ~S3C2410_LCDINT_FRSYNC; |
f62e770b | 521 | writel(irqen, irq_base + S3C24XX_LCDINTMSK); |
20fd5767 AP |
522 | } |
523 | ||
524 | local_irq_restore(flags); | |
525 | } | |
526 | ||
527 | /* from pxafb.c */ | |
b0831941 KH |
528 | static inline unsigned int chan_to_field(unsigned int chan, |
529 | struct fb_bitfield *bf) | |
20fd5767 AP |
530 | { |
531 | chan &= 0xffff; | |
532 | chan >>= 16 - bf->length; | |
533 | return chan << bf->offset; | |
534 | } | |
535 | ||
536 | static int s3c2410fb_setcolreg(unsigned regno, | |
537 | unsigned red, unsigned green, unsigned blue, | |
538 | unsigned transp, struct fb_info *info) | |
539 | { | |
540 | struct s3c2410fb_info *fbi = info->par; | |
7ee0fe41 | 541 | void __iomem *regs = fbi->io; |
20fd5767 AP |
542 | unsigned int val; |
543 | ||
b0831941 KH |
544 | /* dprintk("setcol: regno=%d, rgb=%d,%d,%d\n", |
545 | regno, red, green, blue); */ | |
20fd5767 | 546 | |
b0831941 | 547 | switch (info->fix.visual) { |
20fd5767 | 548 | case FB_VISUAL_TRUECOLOR: |
b0831941 | 549 | /* true-colour, use pseudo-palette */ |
20fd5767 AP |
550 | |
551 | if (regno < 16) { | |
b0831941 | 552 | u32 *pal = info->pseudo_palette; |
20fd5767 | 553 | |
b0831941 KH |
554 | val = chan_to_field(red, &info->var.red); |
555 | val |= chan_to_field(green, &info->var.green); | |
556 | val |= chan_to_field(blue, &info->var.blue); | |
20fd5767 AP |
557 | |
558 | pal[regno] = val; | |
559 | } | |
560 | break; | |
561 | ||
562 | case FB_VISUAL_PSEUDOCOLOR: | |
563 | if (regno < 256) { | |
564 | /* currently assume RGB 5-6-5 mode */ | |
565 | ||
9fa7bc01 KH |
566 | val = (red >> 0) & 0xf800; |
567 | val |= (green >> 5) & 0x07e0; | |
568 | val |= (blue >> 11) & 0x001f; | |
20fd5767 | 569 | |
7ee0fe41 | 570 | writel(val, regs + S3C2410_TFTPAL(regno)); |
20fd5767 AP |
571 | schedule_palette_update(fbi, regno, val); |
572 | } | |
573 | ||
574 | break; | |
575 | ||
576 | default: | |
b0831941 | 577 | return 1; /* unknown type */ |
20fd5767 AP |
578 | } |
579 | ||
580 | return 0; | |
581 | } | |
582 | ||
b0831941 | 583 | /* |
20fd5767 AP |
584 | * s3c2410fb_blank |
585 | * @blank_mode: the blank mode we want. | |
586 | * @info: frame buffer structure that represents a single frame buffer | |
587 | * | |
588 | * Blank the screen if blank_mode != 0, else unblank. Return 0 if | |
589 | * blanking succeeded, != 0 if un-/blanking failed due to e.g. a | |
590 | * video mode which doesn't support it. Implements VESA suspend | |
591 | * and powerdown modes on hardware that supports disabling hsync/vsync: | |
592 | * blank_mode == 2: suspend vsync | |
593 | * blank_mode == 3: suspend hsync | |
594 | * blank_mode == 4: powerdown | |
595 | * | |
596 | * Returns negative errno on error, or zero on success. | |
597 | * | |
598 | */ | |
599 | static int s3c2410fb_blank(int blank_mode, struct fb_info *info) | |
600 | { | |
7ee0fe41 | 601 | struct s3c2410fb_info *fbi = info->par; |
f62e770b | 602 | void __iomem *tpal_reg = fbi->io; |
7ee0fe41 | 603 | |
20fd5767 AP |
604 | dprintk("blank(mode=%d, info=%p)\n", blank_mode, info); |
605 | ||
f62e770b BD |
606 | tpal_reg += is_s3c2412(fbi) ? S3C2412_TPAL : S3C2410_TPAL; |
607 | ||
20fd5767 | 608 | if (blank_mode == FB_BLANK_UNBLANK) |
f62e770b | 609 | writel(0x0, tpal_reg); |
20fd5767 AP |
610 | else { |
611 | dprintk("setting TPAL to output 0x000000\n"); | |
f62e770b | 612 | writel(S3C2410_TPAL_EN, tpal_reg); |
20fd5767 AP |
613 | } |
614 | ||
615 | return 0; | |
616 | } | |
617 | ||
b0831941 KH |
618 | static int s3c2410fb_debug_show(struct device *dev, |
619 | struct device_attribute *attr, char *buf) | |
20fd5767 AP |
620 | { |
621 | return snprintf(buf, PAGE_SIZE, "%s\n", debug ? "on" : "off"); | |
622 | } | |
9fa7bc01 | 623 | |
b0831941 KH |
624 | static int s3c2410fb_debug_store(struct device *dev, |
625 | struct device_attribute *attr, | |
626 | const char *buf, size_t len) | |
20fd5767 | 627 | { |
20fd5767 AP |
628 | if (len < 1) |
629 | return -EINVAL; | |
630 | ||
631 | if (strnicmp(buf, "on", 2) == 0 || | |
632 | strnicmp(buf, "1", 1) == 0) { | |
633 | debug = 1; | |
634 | printk(KERN_DEBUG "s3c2410fb: Debug On"); | |
635 | } else if (strnicmp(buf, "off", 3) == 0 || | |
636 | strnicmp(buf, "0", 1) == 0) { | |
637 | debug = 0; | |
638 | printk(KERN_DEBUG "s3c2410fb: Debug Off"); | |
639 | } else { | |
640 | return -EINVAL; | |
641 | } | |
642 | ||
643 | return len; | |
644 | } | |
645 | ||
b0831941 | 646 | static DEVICE_ATTR(debug, 0666, s3c2410fb_debug_show, s3c2410fb_debug_store); |
20fd5767 AP |
647 | |
648 | static struct fb_ops s3c2410fb_ops = { | |
649 | .owner = THIS_MODULE, | |
650 | .fb_check_var = s3c2410fb_check_var, | |
651 | .fb_set_par = s3c2410fb_set_par, | |
652 | .fb_blank = s3c2410fb_blank, | |
653 | .fb_setcolreg = s3c2410fb_setcolreg, | |
654 | .fb_fillrect = cfb_fillrect, | |
655 | .fb_copyarea = cfb_copyarea, | |
656 | .fb_imageblit = cfb_imageblit, | |
20fd5767 AP |
657 | }; |
658 | ||
20fd5767 AP |
659 | /* |
660 | * s3c2410fb_map_video_memory(): | |
661 | * Allocates the DRAM memory for the frame buffer. This buffer is | |
662 | * remapped into a non-cached, non-buffered, memory region to | |
663 | * allow palette and pixel writes to occur without flushing the | |
664 | * cache. Once this area is remapped, all virtual memory | |
665 | * access to the video memory should occur at the new region. | |
666 | */ | |
110c1fa7 | 667 | static int __init s3c2410fb_map_video_memory(struct fb_info *info) |
20fd5767 | 668 | { |
110c1fa7 | 669 | struct s3c2410fb_info *fbi = info->par; |
9fa7bc01 KH |
670 | dma_addr_t map_dma; |
671 | unsigned map_size = PAGE_ALIGN(info->fix.smem_len); | |
110c1fa7 | 672 | |
38a02f56 | 673 | dprintk("map_video_memory(fbi=%p) map_size %u\n", fbi, map_size); |
20fd5767 | 674 | |
9fa7bc01 KH |
675 | info->screen_base = dma_alloc_writecombine(fbi->dev, map_size, |
676 | &map_dma, GFP_KERNEL); | |
20fd5767 | 677 | |
9fa7bc01 | 678 | if (info->screen_base) { |
20fd5767 AP |
679 | /* prevent initial garbage on screen */ |
680 | dprintk("map_video_memory: clear %p:%08x\n", | |
9fa7bc01 | 681 | info->screen_base, map_size); |
c0d40335 | 682 | memset(info->screen_base, 0x00, map_size); |
20fd5767 | 683 | |
9fa7bc01 | 684 | info->fix.smem_start = map_dma; |
20fd5767 | 685 | |
9fa7bc01 KH |
686 | dprintk("map_video_memory: dma=%08lx cpu=%p size=%08x\n", |
687 | info->fix.smem_start, info->screen_base, map_size); | |
20fd5767 AP |
688 | } |
689 | ||
9fa7bc01 | 690 | return info->screen_base ? 0 : -ENOMEM; |
20fd5767 AP |
691 | } |
692 | ||
9fa7bc01 | 693 | static inline void s3c2410fb_unmap_video_memory(struct fb_info *info) |
20fd5767 | 694 | { |
9fa7bc01 KH |
695 | struct s3c2410fb_info *fbi = info->par; |
696 | ||
697 | dma_free_writecombine(fbi->dev, PAGE_ALIGN(info->fix.smem_len), | |
698 | info->screen_base, info->fix.smem_start); | |
20fd5767 AP |
699 | } |
700 | ||
701 | static inline void modify_gpio(void __iomem *reg, | |
702 | unsigned long set, unsigned long mask) | |
703 | { | |
704 | unsigned long tmp; | |
705 | ||
706 | tmp = readl(reg) & ~mask; | |
707 | writel(tmp | set, reg); | |
708 | } | |
709 | ||
20fd5767 AP |
710 | /* |
711 | * s3c2410fb_init_registers - Initialise all LCD-related registers | |
712 | */ | |
110c1fa7 | 713 | static int s3c2410fb_init_registers(struct fb_info *info) |
20fd5767 | 714 | { |
110c1fa7 | 715 | struct s3c2410fb_info *fbi = info->par; |
9fa7bc01 | 716 | struct s3c2410fb_mach_info *mach_info = fbi->dev->platform_data; |
20fd5767 | 717 | unsigned long flags; |
aff39a85 | 718 | void __iomem *regs = fbi->io; |
f62e770b BD |
719 | void __iomem *tpal; |
720 | void __iomem *lpcsel; | |
721 | ||
722 | if (is_s3c2412(fbi)) { | |
723 | tpal = regs + S3C2412_TPAL; | |
724 | lpcsel = regs + S3C2412_TCONSEL; | |
725 | } else { | |
726 | tpal = regs + S3C2410_TPAL; | |
727 | lpcsel = regs + S3C2410_LPCSEL; | |
728 | } | |
20fd5767 AP |
729 | |
730 | /* Initialise LCD with values from haret */ | |
731 | ||
732 | local_irq_save(flags); | |
733 | ||
734 | /* modify the gpio(s) with interrupts set (bjd) */ | |
735 | ||
736 | modify_gpio(S3C2410_GPCUP, mach_info->gpcup, mach_info->gpcup_mask); | |
737 | modify_gpio(S3C2410_GPCCON, mach_info->gpccon, mach_info->gpccon_mask); | |
738 | modify_gpio(S3C2410_GPDUP, mach_info->gpdup, mach_info->gpdup_mask); | |
739 | modify_gpio(S3C2410_GPDCON, mach_info->gpdcon, mach_info->gpdcon_mask); | |
740 | ||
741 | local_irq_restore(flags); | |
742 | ||
20fd5767 | 743 | dprintk("LPCSEL = 0x%08lx\n", mach_info->lpcsel); |
f62e770b | 744 | writel(mach_info->lpcsel, lpcsel); |
20fd5767 | 745 | |
f62e770b | 746 | dprintk("replacing TPAL %08x\n", readl(tpal)); |
20fd5767 AP |
747 | |
748 | /* ensure temporary palette disabled */ | |
f62e770b | 749 | writel(0x00, tpal); |
20fd5767 | 750 | |
20fd5767 AP |
751 | return 0; |
752 | } | |
753 | ||
754 | static void s3c2410fb_write_palette(struct s3c2410fb_info *fbi) | |
755 | { | |
756 | unsigned int i; | |
aff39a85 | 757 | void __iomem *regs = fbi->io; |
20fd5767 AP |
758 | |
759 | fbi->palette_ready = 0; | |
760 | ||
761 | for (i = 0; i < 256; i++) { | |
b0831941 KH |
762 | unsigned long ent = fbi->palette_buffer[i]; |
763 | if (ent == PALETTE_BUFF_CLEAR) | |
20fd5767 AP |
764 | continue; |
765 | ||
aff39a85 | 766 | writel(ent, regs + S3C2410_TFTPAL(i)); |
20fd5767 AP |
767 | |
768 | /* it seems the only way to know exactly | |
769 | * if the palette wrote ok, is to check | |
770 | * to see if the value verifies ok | |
771 | */ | |
772 | ||
aff39a85 | 773 | if (readw(regs + S3C2410_TFTPAL(i)) == ent) |
20fd5767 AP |
774 | fbi->palette_buffer[i] = PALETTE_BUFF_CLEAR; |
775 | else | |
776 | fbi->palette_ready = 1; /* retry */ | |
777 | } | |
778 | } | |
779 | ||
7d12e780 | 780 | static irqreturn_t s3c2410fb_irq(int irq, void *dev_id) |
20fd5767 AP |
781 | { |
782 | struct s3c2410fb_info *fbi = dev_id; | |
f62e770b BD |
783 | void __iomem *irq_base = fbi->irq_base; |
784 | unsigned long lcdirq = readl(irq_base + S3C24XX_LCDINTPND); | |
20fd5767 AP |
785 | |
786 | if (lcdirq & S3C2410_LCDINT_FRSYNC) { | |
787 | if (fbi->palette_ready) | |
788 | s3c2410fb_write_palette(fbi); | |
789 | ||
f62e770b BD |
790 | writel(S3C2410_LCDINT_FRSYNC, irq_base + S3C24XX_LCDINTPND); |
791 | writel(S3C2410_LCDINT_FRSYNC, irq_base + S3C24XX_LCDSRCPND); | |
20fd5767 AP |
792 | } |
793 | ||
794 | return IRQ_HANDLED; | |
795 | } | |
796 | ||
b0831941 | 797 | static char driver_name[] = "s3c2410fb"; |
20fd5767 | 798 | |
f62e770b BD |
799 | static int __init s3c24xxfb_probe(struct platform_device *pdev, |
800 | enum s3c_drv_type drv_type) | |
20fd5767 AP |
801 | { |
802 | struct s3c2410fb_info *info; | |
09fe75f6 | 803 | struct s3c2410fb_display *display; |
b0831941 | 804 | struct fb_info *fbinfo; |
9fa7bc01 | 805 | struct s3c2410fb_mach_info *mach_info; |
aff39a85 | 806 | struct resource *res; |
20fd5767 AP |
807 | int ret; |
808 | int irq; | |
809 | int i; | |
aff39a85 | 810 | int size; |
6931a764 | 811 | u32 lcdcon1; |
20fd5767 | 812 | |
3ae5eaec | 813 | mach_info = pdev->dev.platform_data; |
20fd5767 | 814 | if (mach_info == NULL) { |
b0831941 KH |
815 | dev_err(&pdev->dev, |
816 | "no platform data for lcd, cannot attach\n"); | |
20fd5767 AP |
817 | return -EINVAL; |
818 | } | |
819 | ||
e8973637 BD |
820 | if (mach_info->default_display >= mach_info->num_displays) { |
821 | dev_err(&pdev->dev, "default is %d but only %d displays\n", | |
822 | mach_info->default_display, mach_info->num_displays); | |
823 | return -EINVAL; | |
824 | } | |
825 | ||
09fe75f6 | 826 | display = mach_info->displays + mach_info->default_display; |
20fd5767 AP |
827 | |
828 | irq = platform_get_irq(pdev, 0); | |
829 | if (irq < 0) { | |
3ae5eaec | 830 | dev_err(&pdev->dev, "no irq for device\n"); |
20fd5767 AP |
831 | return -ENOENT; |
832 | } | |
833 | ||
3ae5eaec | 834 | fbinfo = framebuffer_alloc(sizeof(struct s3c2410fb_info), &pdev->dev); |
b0831941 | 835 | if (!fbinfo) |
20fd5767 | 836 | return -ENOMEM; |
20fd5767 | 837 | |
9fa7bc01 KH |
838 | platform_set_drvdata(pdev, fbinfo); |
839 | ||
20fd5767 | 840 | info = fbinfo->par; |
0187f221 | 841 | info->dev = &pdev->dev; |
f62e770b | 842 | info->drv_type = drv_type; |
0187f221 | 843 | |
aff39a85 BD |
844 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
845 | if (res == NULL) { | |
b0831941 | 846 | dev_err(&pdev->dev, "failed to get memory registers\n"); |
aff39a85 BD |
847 | ret = -ENXIO; |
848 | goto dealloc_fb; | |
849 | } | |
850 | ||
b0831941 | 851 | size = (res->end - res->start) + 1; |
aff39a85 BD |
852 | info->mem = request_mem_region(res->start, size, pdev->name); |
853 | if (info->mem == NULL) { | |
854 | dev_err(&pdev->dev, "failed to get memory region\n"); | |
855 | ret = -ENOENT; | |
856 | goto dealloc_fb; | |
857 | } | |
858 | ||
859 | info->io = ioremap(res->start, size); | |
860 | if (info->io == NULL) { | |
861 | dev_err(&pdev->dev, "ioremap() of registers failed\n"); | |
862 | ret = -ENXIO; | |
863 | goto release_mem; | |
864 | } | |
865 | ||
f62e770b BD |
866 | info->irq_base = info->io + ((drv_type == DRV_S3C2412) ? S3C2412_LCDINTBASE : S3C2410_LCDINTBASE); |
867 | ||
20fd5767 AP |
868 | dprintk("devinit\n"); |
869 | ||
870 | strcpy(fbinfo->fix.id, driver_name); | |
871 | ||
9fa7bc01 | 872 | /* Stop the video */ |
aff39a85 BD |
873 | lcdcon1 = readl(info->io + S3C2410_LCDCON1); |
874 | writel(lcdcon1 & ~S3C2410_LCDCON1_ENVID, info->io + S3C2410_LCDCON1); | |
6931a764 | 875 | |
20fd5767 AP |
876 | fbinfo->fix.type = FB_TYPE_PACKED_PIXELS; |
877 | fbinfo->fix.type_aux = 0; | |
878 | fbinfo->fix.xpanstep = 0; | |
879 | fbinfo->fix.ypanstep = 0; | |
880 | fbinfo->fix.ywrapstep = 0; | |
881 | fbinfo->fix.accel = FB_ACCEL_NONE; | |
882 | ||
883 | fbinfo->var.nonstd = 0; | |
884 | fbinfo->var.activate = FB_ACTIVATE_NOW; | |
20fd5767 AP |
885 | fbinfo->var.accel_flags = 0; |
886 | fbinfo->var.vmode = FB_VMODE_NONINTERLACED; | |
887 | ||
888 | fbinfo->fbops = &s3c2410fb_ops; | |
889 | fbinfo->flags = FBINFO_FLAG_DEFAULT; | |
890 | fbinfo->pseudo_palette = &info->pseudo_pal; | |
891 | ||
20fd5767 AP |
892 | for (i = 0; i < 256; i++) |
893 | info->palette_buffer[i] = PALETTE_BUFF_CLEAR; | |
894 | ||
63a43399 | 895 | ret = request_irq(irq, s3c2410fb_irq, IRQF_DISABLED, pdev->name, info); |
20fd5767 | 896 | if (ret) { |
3ae5eaec | 897 | dev_err(&pdev->dev, "cannot get irq %d - err %d\n", irq, ret); |
20fd5767 | 898 | ret = -EBUSY; |
aff39a85 | 899 | goto release_regs; |
20fd5767 AP |
900 | } |
901 | ||
902 | info->clk = clk_get(NULL, "lcd"); | |
903 | if (!info->clk || IS_ERR(info->clk)) { | |
904 | printk(KERN_ERR "failed to get lcd clock source\n"); | |
905 | ret = -ENOENT; | |
906 | goto release_irq; | |
907 | } | |
908 | ||
20fd5767 AP |
909 | clk_enable(info->clk); |
910 | dprintk("got and enabled clock\n"); | |
911 | ||
912 | msleep(1); | |
913 | ||
9fa7bc01 KH |
914 | /* find maximum required memory size for display */ |
915 | for (i = 0; i < mach_info->num_displays; i++) { | |
916 | unsigned long smem_len = mach_info->displays[i].xres; | |
917 | ||
918 | smem_len *= mach_info->displays[i].yres; | |
919 | smem_len *= mach_info->displays[i].bpp; | |
920 | smem_len >>= 3; | |
921 | if (fbinfo->fix.smem_len < smem_len) | |
922 | fbinfo->fix.smem_len = smem_len; | |
923 | } | |
924 | ||
20fd5767 | 925 | /* Initialize video memory */ |
110c1fa7 | 926 | ret = s3c2410fb_map_video_memory(fbinfo); |
20fd5767 | 927 | if (ret) { |
b0831941 | 928 | printk(KERN_ERR "Failed to allocate video RAM: %d\n", ret); |
20fd5767 AP |
929 | ret = -ENOMEM; |
930 | goto release_clock; | |
931 | } | |
aff39a85 | 932 | |
20fd5767 AP |
933 | dprintk("got video memory\n"); |
934 | ||
9fa7bc01 KH |
935 | fbinfo->var.xres = display->xres; |
936 | fbinfo->var.yres = display->yres; | |
937 | fbinfo->var.bits_per_pixel = display->bpp; | |
938 | ||
110c1fa7 | 939 | s3c2410fb_init_registers(fbinfo); |
20fd5767 | 940 | |
b0831941 | 941 | s3c2410fb_check_var(&fbinfo->var, fbinfo); |
20fd5767 AP |
942 | |
943 | ret = register_framebuffer(fbinfo); | |
944 | if (ret < 0) { | |
b0831941 KH |
945 | printk(KERN_ERR "Failed to register framebuffer device: %d\n", |
946 | ret); | |
20fd5767 AP |
947 | goto free_video_memory; |
948 | } | |
949 | ||
950 | /* create device files */ | |
3ae5eaec | 951 | device_create_file(&pdev->dev, &dev_attr_debug); |
20fd5767 AP |
952 | |
953 | printk(KERN_INFO "fb%d: %s frame buffer device\n", | |
954 | fbinfo->node, fbinfo->fix.id); | |
955 | ||
956 | return 0; | |
957 | ||
958 | free_video_memory: | |
9fa7bc01 | 959 | s3c2410fb_unmap_video_memory(fbinfo); |
20fd5767 AP |
960 | release_clock: |
961 | clk_disable(info->clk); | |
20fd5767 AP |
962 | clk_put(info->clk); |
963 | release_irq: | |
b0831941 | 964 | free_irq(irq, info); |
aff39a85 BD |
965 | release_regs: |
966 | iounmap(info->io); | |
20fd5767 | 967 | release_mem: |
aff39a85 BD |
968 | release_resource(info->mem); |
969 | kfree(info->mem); | |
20fd5767 | 970 | dealloc_fb: |
9fa7bc01 | 971 | platform_set_drvdata(pdev, NULL); |
20fd5767 AP |
972 | framebuffer_release(fbinfo); |
973 | return ret; | |
974 | } | |
975 | ||
f62e770b BD |
976 | static int __init s3c2410fb_probe(struct platform_device *pdev) |
977 | { | |
978 | return s3c24xxfb_probe(pdev, DRV_S3C2410); | |
979 | } | |
980 | ||
981 | static int __init s3c2412fb_probe(struct platform_device *pdev) | |
982 | { | |
983 | return s3c24xxfb_probe(pdev, DRV_S3C2412); | |
984 | } | |
985 | ||
20fd5767 AP |
986 | /* s3c2410fb_stop_lcd |
987 | * | |
988 | * shutdown the lcd controller | |
b0831941 | 989 | */ |
6931a764 | 990 | static void s3c2410fb_stop_lcd(struct s3c2410fb_info *fbi) |
20fd5767 AP |
991 | { |
992 | unsigned long flags; | |
20fd5767 AP |
993 | |
994 | local_irq_save(flags); | |
995 | ||
6931a764 | 996 | fbi->regs.lcdcon1 &= ~S3C2410_LCDCON1_ENVID; |
aff39a85 | 997 | writel(fbi->regs.lcdcon1, fbi->io + S3C2410_LCDCON1); |
20fd5767 AP |
998 | |
999 | local_irq_restore(flags); | |
1000 | } | |
1001 | ||
1002 | /* | |
1003 | * Cleanup | |
1004 | */ | |
3ae5eaec | 1005 | static int s3c2410fb_remove(struct platform_device *pdev) |
20fd5767 | 1006 | { |
b0831941 | 1007 | struct fb_info *fbinfo = platform_get_drvdata(pdev); |
20fd5767 AP |
1008 | struct s3c2410fb_info *info = fbinfo->par; |
1009 | int irq; | |
1010 | ||
9fa7bc01 KH |
1011 | unregister_framebuffer(fbinfo); |
1012 | ||
6931a764 | 1013 | s3c2410fb_stop_lcd(info); |
20fd5767 AP |
1014 | msleep(1); |
1015 | ||
9fa7bc01 | 1016 | s3c2410fb_unmap_video_memory(fbinfo); |
20fd5767 | 1017 | |
b0831941 KH |
1018 | if (info->clk) { |
1019 | clk_disable(info->clk); | |
1020 | clk_put(info->clk); | |
1021 | info->clk = NULL; | |
20fd5767 AP |
1022 | } |
1023 | ||
1024 | irq = platform_get_irq(pdev, 0); | |
b0831941 | 1025 | free_irq(irq, info); |
aff39a85 | 1026 | |
9fa7bc01 KH |
1027 | iounmap(info->io); |
1028 | ||
aff39a85 BD |
1029 | release_resource(info->mem); |
1030 | kfree(info->mem); | |
9fa7bc01 KH |
1031 | |
1032 | platform_set_drvdata(pdev, NULL); | |
1033 | framebuffer_release(fbinfo); | |
20fd5767 AP |
1034 | |
1035 | return 0; | |
1036 | } | |
1037 | ||
1038 | #ifdef CONFIG_PM | |
1039 | ||
1040 | /* suspend and resume support for the lcd controller */ | |
3ae5eaec | 1041 | static int s3c2410fb_suspend(struct platform_device *dev, pm_message_t state) |
20fd5767 | 1042 | { |
3ae5eaec | 1043 | struct fb_info *fbinfo = platform_get_drvdata(dev); |
20fd5767 AP |
1044 | struct s3c2410fb_info *info = fbinfo->par; |
1045 | ||
6931a764 | 1046 | s3c2410fb_stop_lcd(info); |
20fd5767 | 1047 | |
9480e307 RK |
1048 | /* sleep before disabling the clock, we need to ensure |
1049 | * the LCD DMA engine is not going to get back on the bus | |
1050 | * before the clock goes off again (bjd) */ | |
20fd5767 | 1051 | |
9480e307 RK |
1052 | msleep(1); |
1053 | clk_disable(info->clk); | |
20fd5767 AP |
1054 | |
1055 | return 0; | |
1056 | } | |
1057 | ||
3ae5eaec | 1058 | static int s3c2410fb_resume(struct platform_device *dev) |
20fd5767 | 1059 | { |
3ae5eaec | 1060 | struct fb_info *fbinfo = platform_get_drvdata(dev); |
20fd5767 AP |
1061 | struct s3c2410fb_info *info = fbinfo->par; |
1062 | ||
9480e307 RK |
1063 | clk_enable(info->clk); |
1064 | msleep(1); | |
20fd5767 | 1065 | |
f0466441 | 1066 | s3c2410fb_init_registers(fbinfo); |
20fd5767 AP |
1067 | |
1068 | return 0; | |
1069 | } | |
1070 | ||
1071 | #else | |
1072 | #define s3c2410fb_suspend NULL | |
1073 | #define s3c2410fb_resume NULL | |
1074 | #endif | |
1075 | ||
3ae5eaec | 1076 | static struct platform_driver s3c2410fb_driver = { |
20fd5767 | 1077 | .probe = s3c2410fb_probe, |
3ae5eaec | 1078 | .remove = s3c2410fb_remove, |
20fd5767 AP |
1079 | .suspend = s3c2410fb_suspend, |
1080 | .resume = s3c2410fb_resume, | |
3ae5eaec RK |
1081 | .driver = { |
1082 | .name = "s3c2410-lcd", | |
1083 | .owner = THIS_MODULE, | |
1084 | }, | |
20fd5767 AP |
1085 | }; |
1086 | ||
f62e770b BD |
1087 | static struct platform_driver s3c2412fb_driver = { |
1088 | .probe = s3c2412fb_probe, | |
1089 | .remove = s3c2410fb_remove, | |
1090 | .suspend = s3c2410fb_suspend, | |
1091 | .resume = s3c2410fb_resume, | |
1092 | .driver = { | |
1093 | .name = "s3c2412-lcd", | |
1094 | .owner = THIS_MODULE, | |
1095 | }, | |
1096 | }; | |
1097 | ||
9fa7bc01 | 1098 | int __init s3c2410fb_init(void) |
20fd5767 | 1099 | { |
f62e770b BD |
1100 | int ret = platform_driver_register(&s3c2410fb_driver); |
1101 | ||
1102 | if (ret == 0) | |
1103 | ret = platform_driver_register(&s3c2412fb_driver);; | |
1104 | ||
1105 | return ret; | |
20fd5767 AP |
1106 | } |
1107 | ||
1108 | static void __exit s3c2410fb_cleanup(void) | |
1109 | { | |
3ae5eaec | 1110 | platform_driver_unregister(&s3c2410fb_driver); |
f62e770b | 1111 | platform_driver_unregister(&s3c2412fb_driver); |
20fd5767 AP |
1112 | } |
1113 | ||
20fd5767 AP |
1114 | module_init(s3c2410fb_init); |
1115 | module_exit(s3c2410fb_cleanup); | |
1116 | ||
b0831941 KH |
1117 | MODULE_AUTHOR("Arnaud Patard <[email protected]>, " |
1118 | "Ben Dooks <[email protected]>"); | |
20fd5767 AP |
1119 | MODULE_DESCRIPTION("Framebuffer driver for the s3c2410"); |
1120 | MODULE_LICENSE("GPL"); |