blob: edcfee8bc90b20b4a4af681ea39bb3280a7d2bfc [file] [log] [blame]
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001/*
2 * linux/drivers/video/vt8623fb.c - fbdev driver for
3 * integrated graphic core in VIA VT8623 [CLE266] chipset
4 *
5 * Copyright (c) 2006-2007 Ondrej Zajicek <santiago@crfreenet.org>
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file COPYING in the main directory of this archive for
9 * more details.
10 *
11 * Code is based on s3fb, some parts are from David Boucher's viafb
12 * (http://davesdomain.org.uk/viafb/)
13 */
14
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -070015#include <linux/module.h>
16#include <linux/kernel.h>
17#include <linux/errno.h>
18#include <linux/string.h>
19#include <linux/mm.h>
20#include <linux/tty.h>
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -070021#include <linux/delay.h>
22#include <linux/fb.h>
23#include <linux/svga.h>
24#include <linux/init.h>
25#include <linux/pci.h>
Torben Hohnac751ef2011-01-25 15:07:35 -080026#include <linux/console.h> /* Why should fb driver call console functions? because console_lock() */
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -070027#include <video/vga.h>
28
29#ifdef CONFIG_MTRR
30#include <asm/mtrr.h>
31#endif
32
33struct vt8623fb_info {
34 char __iomem *mmio_base;
35 int mtrr_reg;
36 struct vgastate state;
37 struct mutex open_lock;
38 unsigned int ref_count;
39 u32 pseudo_palette[16];
40};
41
42
43
44/* ------------------------------------------------------------------------- */
45
46static const struct svga_fb_format vt8623fb_formats[] = {
47 { 0, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0,
48 FB_TYPE_TEXT, FB_AUX_TEXT_SVGA_STEP8, FB_VISUAL_PSEUDOCOLOR, 16, 16},
49 { 4, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0,
50 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_PSEUDOCOLOR, 16, 16},
51 { 4, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 1,
52 FB_TYPE_INTERLEAVED_PLANES, 1, FB_VISUAL_PSEUDOCOLOR, 16, 16},
53 { 8, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0,
54 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_PSEUDOCOLOR, 8, 8},
55/* {16, {10, 5, 0}, {5, 5, 0}, {0, 5, 0}, {0, 0, 0}, 0,
56 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 4, 4}, */
57 {16, {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0}, 0,
58 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 4, 4},
59 {32, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
60 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 2, 2},
61 SVGA_FORMAT_END
62};
63
64static const struct svga_pll vt8623_pll = {2, 127, 2, 7, 0, 3,
65 60000, 300000, 14318};
66
67/* CRT timing register sets */
68
Adrian Bunk3552f092007-07-17 04:05:47 -070069static struct vga_regset vt8623_h_total_regs[] = {{0x00, 0, 7}, {0x36, 3, 3}, VGA_REGSET_END};
70static struct vga_regset vt8623_h_display_regs[] = {{0x01, 0, 7}, VGA_REGSET_END};
71static struct vga_regset vt8623_h_blank_start_regs[] = {{0x02, 0, 7}, VGA_REGSET_END};
72static struct vga_regset vt8623_h_blank_end_regs[] = {{0x03, 0, 4}, {0x05, 7, 7}, {0x33, 5, 5}, VGA_REGSET_END};
73static struct vga_regset vt8623_h_sync_start_regs[] = {{0x04, 0, 7}, {0x33, 4, 4}, VGA_REGSET_END};
74static struct vga_regset vt8623_h_sync_end_regs[] = {{0x05, 0, 4}, VGA_REGSET_END};
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -070075
Adrian Bunk3552f092007-07-17 04:05:47 -070076static struct vga_regset vt8623_v_total_regs[] = {{0x06, 0, 7}, {0x07, 0, 0}, {0x07, 5, 5}, {0x35, 0, 0}, VGA_REGSET_END};
77static struct vga_regset vt8623_v_display_regs[] = {{0x12, 0, 7}, {0x07, 1, 1}, {0x07, 6, 6}, {0x35, 2, 2}, VGA_REGSET_END};
78static struct vga_regset vt8623_v_blank_start_regs[] = {{0x15, 0, 7}, {0x07, 3, 3}, {0x09, 5, 5}, {0x35, 3, 3}, VGA_REGSET_END};
79static struct vga_regset vt8623_v_blank_end_regs[] = {{0x16, 0, 7}, VGA_REGSET_END};
80static struct vga_regset vt8623_v_sync_start_regs[] = {{0x10, 0, 7}, {0x07, 2, 2}, {0x07, 7, 7}, {0x35, 1, 1}, VGA_REGSET_END};
81static struct vga_regset vt8623_v_sync_end_regs[] = {{0x11, 0, 3}, VGA_REGSET_END};
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -070082
Adrian Bunk3552f092007-07-17 04:05:47 -070083static struct vga_regset vt8623_offset_regs[] = {{0x13, 0, 7}, {0x35, 5, 7}, VGA_REGSET_END};
84static struct vga_regset vt8623_line_compare_regs[] = {{0x18, 0, 7}, {0x07, 4, 4}, {0x09, 6, 6}, {0x33, 0, 2}, {0x35, 4, 4}, VGA_REGSET_END};
85static struct vga_regset vt8623_fetch_count_regs[] = {{0x1C, 0, 7}, {0x1D, 0, 1}, VGA_REGSET_END};
86static struct vga_regset vt8623_start_address_regs[] = {{0x0d, 0, 7}, {0x0c, 0, 7}, {0x34, 0, 7}, {0x48, 0, 1}, VGA_REGSET_END};
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -070087
Adrian Bunk3552f092007-07-17 04:05:47 -070088static struct svga_timing_regs vt8623_timing_regs = {
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -070089 vt8623_h_total_regs, vt8623_h_display_regs, vt8623_h_blank_start_regs,
90 vt8623_h_blank_end_regs, vt8623_h_sync_start_regs, vt8623_h_sync_end_regs,
91 vt8623_v_total_regs, vt8623_v_display_regs, vt8623_v_blank_start_regs,
92 vt8623_v_blank_end_regs, vt8623_v_sync_start_regs, vt8623_v_sync_end_regs,
93};
94
95
96/* ------------------------------------------------------------------------- */
97
98
99/* Module parameters */
100
Krzysztof Heltcc6c5492008-04-28 02:15:08 -0700101static char *mode_option = "640x480-8@60";
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700102
103#ifdef CONFIG_MTRR
104static int mtrr = 1;
105#endif
106
107MODULE_AUTHOR("(c) 2006 Ondrej Zajicek <santiago@crfreenet.org>");
108MODULE_LICENSE("GPL");
109MODULE_DESCRIPTION("fbdev driver for integrated graphics core in VIA VT8623 [CLE266]");
110
Krzysztof Heltcc6c5492008-04-28 02:15:08 -0700111module_param(mode_option, charp, 0644);
112MODULE_PARM_DESC(mode_option, "Default video mode ('640x480-8@60', etc)");
Krzysztof Helt9e3f0ca2008-04-28 02:15:10 -0700113module_param_named(mode, mode_option, charp, 0);
114MODULE_PARM_DESC(mode, "Default video mode e.g. '648x480-8@60' (deprecated)");
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700115
116#ifdef CONFIG_MTRR
117module_param(mtrr, int, 0444);
118MODULE_PARM_DESC(mtrr, "Enable write-combining with MTRR (1=enable, 0=disable, default=1)");
119#endif
120
121
122/* ------------------------------------------------------------------------- */
123
124
125static struct fb_tile_ops vt8623fb_tile_ops = {
126 .fb_settile = svga_settile,
127 .fb_tilecopy = svga_tilecopy,
128 .fb_tilefill = svga_tilefill,
129 .fb_tileblit = svga_tileblit,
130 .fb_tilecursor = svga_tilecursor,
131 .fb_get_tilemax = svga_get_tilemax,
132};
133
134
135/* ------------------------------------------------------------------------- */
136
137
138/* image data is MSB-first, fb structure is MSB-first too */
139static inline u32 expand_color(u32 c)
140{
141 return ((c & 1) | ((c & 2) << 7) | ((c & 4) << 14) | ((c & 8) << 21)) * 0xFF;
142}
143
144/* vt8623fb_iplan_imageblit silently assumes that almost everything is 8-pixel aligned */
145static void vt8623fb_iplan_imageblit(struct fb_info *info, const struct fb_image *image)
146{
147 u32 fg = expand_color(image->fg_color);
148 u32 bg = expand_color(image->bg_color);
149 const u8 *src1, *src;
150 u8 __iomem *dst1;
151 u32 __iomem *dst;
152 u32 val;
153 int x, y;
154
155 src1 = image->data;
156 dst1 = info->screen_base + (image->dy * info->fix.line_length)
157 + ((image->dx / 8) * 4);
158
159 for (y = 0; y < image->height; y++) {
160 src = src1;
161 dst = (u32 __iomem *) dst1;
162 for (x = 0; x < image->width; x += 8) {
163 val = *(src++) * 0x01010101;
164 val = (val & fg) | (~val & bg);
165 fb_writel(val, dst++);
166 }
167 src1 += image->width / 8;
168 dst1 += info->fix.line_length;
169 }
170}
171
172/* vt8623fb_iplan_fillrect silently assumes that almost everything is 8-pixel aligned */
173static void vt8623fb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
174{
175 u32 fg = expand_color(rect->color);
176 u8 __iomem *dst1;
177 u32 __iomem *dst;
178 int x, y;
179
180 dst1 = info->screen_base + (rect->dy * info->fix.line_length)
181 + ((rect->dx / 8) * 4);
182
183 for (y = 0; y < rect->height; y++) {
184 dst = (u32 __iomem *) dst1;
185 for (x = 0; x < rect->width; x += 8) {
186 fb_writel(fg, dst++);
187 }
188 dst1 += info->fix.line_length;
189 }
190}
191
192
193/* image data is MSB-first, fb structure is high-nibble-in-low-byte-first */
194static inline u32 expand_pixel(u32 c)
195{
196 return (((c & 1) << 24) | ((c & 2) << 27) | ((c & 4) << 14) | ((c & 8) << 17) |
197 ((c & 16) << 4) | ((c & 32) << 7) | ((c & 64) >> 6) | ((c & 128) >> 3)) * 0xF;
198}
199
200/* vt8623fb_cfb4_imageblit silently assumes that almost everything is 8-pixel aligned */
201static void vt8623fb_cfb4_imageblit(struct fb_info *info, const struct fb_image *image)
202{
203 u32 fg = image->fg_color * 0x11111111;
204 u32 bg = image->bg_color * 0x11111111;
205 const u8 *src1, *src;
206 u8 __iomem *dst1;
207 u32 __iomem *dst;
208 u32 val;
209 int x, y;
210
211 src1 = image->data;
212 dst1 = info->screen_base + (image->dy * info->fix.line_length)
213 + ((image->dx / 8) * 4);
214
215 for (y = 0; y < image->height; y++) {
216 src = src1;
217 dst = (u32 __iomem *) dst1;
218 for (x = 0; x < image->width; x += 8) {
219 val = expand_pixel(*(src++));
220 val = (val & fg) | (~val & bg);
221 fb_writel(val, dst++);
222 }
223 src1 += image->width / 8;
224 dst1 += info->fix.line_length;
225 }
226}
227
228static void vt8623fb_imageblit(struct fb_info *info, const struct fb_image *image)
229{
230 if ((info->var.bits_per_pixel == 4) && (image->depth == 1)
231 && ((image->width % 8) == 0) && ((image->dx % 8) == 0)) {
232 if (info->fix.type == FB_TYPE_INTERLEAVED_PLANES)
233 vt8623fb_iplan_imageblit(info, image);
234 else
235 vt8623fb_cfb4_imageblit(info, image);
236 } else
237 cfb_imageblit(info, image);
238}
239
240static void vt8623fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
241{
242 if ((info->var.bits_per_pixel == 4)
243 && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
244 && (info->fix.type == FB_TYPE_INTERLEAVED_PLANES))
245 vt8623fb_iplan_fillrect(info, rect);
246 else
247 cfb_fillrect(info, rect);
248}
249
250
251/* ------------------------------------------------------------------------- */
252
253
254static void vt8623_set_pixclock(struct fb_info *info, u32 pixclock)
255{
David Millerd907ec02011-01-11 23:51:08 +0000256 struct vt8623fb_info *par = info->par;
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700257 u16 m, n, r;
258 u8 regval;
259 int rv;
260
261 rv = svga_compute_pll(&vt8623_pll, 1000000000 / pixclock, &m, &n, &r, info->node);
262 if (rv < 0) {
263 printk(KERN_ERR "fb%d: cannot set requested pixclock, keeping old value\n", info->node);
264 return;
265 }
266
267 /* Set VGA misc register */
268 regval = vga_r(NULL, VGA_MIS_R);
269 vga_w(NULL, VGA_MIS_W, regval | VGA_MIS_ENB_PLL_LOAD);
270
271 /* Set clock registers */
272 vga_wseq(NULL, 0x46, (n | (r << 6)));
273 vga_wseq(NULL, 0x47, m);
274
275 udelay(1000);
276
277 /* PLL reset */
David Millerd907ec02011-01-11 23:51:08 +0000278 svga_wseq_mask(par->state.vgabase, 0x40, 0x02, 0x02);
279 svga_wseq_mask(par->state.vgabase, 0x40, 0x00, 0x02);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700280}
281
282
283static int vt8623fb_open(struct fb_info *info, int user)
284{
285 struct vt8623fb_info *par = info->par;
286
287 mutex_lock(&(par->open_lock));
288 if (par->ref_count == 0) {
289 memset(&(par->state), 0, sizeof(struct vgastate));
290 par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS | VGA_SAVE_CMAP;
291 par->state.num_crtc = 0xA2;
292 par->state.num_seq = 0x50;
293 save_vga(&(par->state));
294 }
295
296 par->ref_count++;
297 mutex_unlock(&(par->open_lock));
298
299 return 0;
300}
301
302static int vt8623fb_release(struct fb_info *info, int user)
303{
304 struct vt8623fb_info *par = info->par;
305
306 mutex_lock(&(par->open_lock));
307 if (par->ref_count == 0) {
308 mutex_unlock(&(par->open_lock));
309 return -EINVAL;
310 }
311
312 if (par->ref_count == 1)
313 restore_vga(&(par->state));
314
315 par->ref_count--;
316 mutex_unlock(&(par->open_lock));
317
318 return 0;
319}
320
321static int vt8623fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
322{
323 int rv, mem, step;
324
325 /* Find appropriate format */
326 rv = svga_match_format (vt8623fb_formats, var, NULL);
327 if (rv < 0)
328 {
329 printk(KERN_ERR "fb%d: unsupported mode requested\n", info->node);
330 return rv;
331 }
332
333 /* Do not allow to have real resoulution larger than virtual */
334 if (var->xres > var->xres_virtual)
335 var->xres_virtual = var->xres;
336
337 if (var->yres > var->yres_virtual)
338 var->yres_virtual = var->yres;
339
340 /* Round up xres_virtual to have proper alignment of lines */
341 step = vt8623fb_formats[rv].xresstep - 1;
342 var->xres_virtual = (var->xres_virtual+step) & ~step;
343
344 /* Check whether have enough memory */
345 mem = ((var->bits_per_pixel * var->xres_virtual) >> 3) * var->yres_virtual;
346 if (mem > info->screen_size)
347 {
348 printk(KERN_ERR "fb%d: not enough framebuffer memory (%d kB requested , %d kB available)\n", info->node, mem >> 10, (unsigned int) (info->screen_size >> 10));
349 return -EINVAL;
350 }
351
352 /* Text mode is limited to 256 kB of memory */
353 if ((var->bits_per_pixel == 0) && (mem > (256*1024)))
354 {
355 printk(KERN_ERR "fb%d: text framebuffer size too large (%d kB requested, 256 kB possible)\n", info->node, mem >> 10);
356 return -EINVAL;
357 }
358
359 rv = svga_check_timings (&vt8623_timing_regs, var, info->node);
360 if (rv < 0)
361 {
362 printk(KERN_ERR "fb%d: invalid timings requested\n", info->node);
363 return rv;
364 }
365
366 /* Interlaced mode not supported */
367 if (var->vmode & FB_VMODE_INTERLACED)
368 return -EINVAL;
369
370 return 0;
371}
372
373
374static int vt8623fb_set_par(struct fb_info *info)
375{
376 u32 mode, offset_value, fetch_value, screen_size;
David Miller21da3862011-01-11 23:49:34 +0000377 struct vt8623fb_info *par = info->par;
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700378 u32 bpp = info->var.bits_per_pixel;
379
380 if (bpp != 0) {
381 info->fix.ypanstep = 1;
382 info->fix.line_length = (info->var.xres_virtual * bpp) / 8;
383
384 info->flags &= ~FBINFO_MISC_TILEBLITTING;
385 info->tileops = NULL;
386
387 /* in 4bpp supports 8p wide tiles only, any tiles otherwise */
388 info->pixmap.blit_x = (bpp == 4) ? (1 << (8 - 1)) : (~(u32)0);
389 info->pixmap.blit_y = ~(u32)0;
390
391 offset_value = (info->var.xres_virtual * bpp) / 64;
392 fetch_value = ((info->var.xres * bpp) / 128) + 4;
393
394 if (bpp == 4)
395 fetch_value = (info->var.xres / 8) + 8; /* + 0 is OK */
396
397 screen_size = info->var.yres_virtual * info->fix.line_length;
398 } else {
399 info->fix.ypanstep = 16;
400 info->fix.line_length = 0;
401
402 info->flags |= FBINFO_MISC_TILEBLITTING;
403 info->tileops = &vt8623fb_tile_ops;
404
405 /* supports 8x16 tiles only */
406 info->pixmap.blit_x = 1 << (8 - 1);
407 info->pixmap.blit_y = 1 << (16 - 1);
408
409 offset_value = info->var.xres_virtual / 16;
410 fetch_value = (info->var.xres / 8) + 8;
411 screen_size = (info->var.xres_virtual * info->var.yres_virtual) / 64;
412 }
413
414 info->var.xoffset = 0;
415 info->var.yoffset = 0;
416 info->var.activate = FB_ACTIVATE_NOW;
417
418 /* Unlock registers */
David Millerd907ec02011-01-11 23:51:08 +0000419 svga_wseq_mask(par->state.vgabase, 0x10, 0x01, 0x01);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700420 svga_wcrt_mask(0x11, 0x00, 0x80);
421 svga_wcrt_mask(0x47, 0x00, 0x01);
422
423 /* Device, screen and sync off */
David Millerd907ec02011-01-11 23:51:08 +0000424 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700425 svga_wcrt_mask(0x36, 0x30, 0x30);
426 svga_wcrt_mask(0x17, 0x00, 0x80);
427
428 /* Set default values */
David Millere2fade22011-01-11 23:50:04 +0000429 svga_set_default_gfx_regs(par->state.vgabase);
David Millerf51a14d2011-01-11 23:50:36 +0000430 svga_set_default_atc_regs(par->state.vgabase);
David Millera4ade8392011-01-11 23:50:54 +0000431 svga_set_default_seq_regs(par->state.vgabase);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700432 svga_set_default_crt_regs();
David Miller21da3862011-01-11 23:49:34 +0000433 svga_wcrt_multi(par->state.vgabase, vt8623_line_compare_regs, 0xFFFFFFFF);
434 svga_wcrt_multi(par->state.vgabase, vt8623_start_address_regs, 0);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700435
David Miller21da3862011-01-11 23:49:34 +0000436 svga_wcrt_multi(par->state.vgabase, vt8623_offset_regs, offset_value);
David Millerdc6aff32011-01-11 23:49:49 +0000437 svga_wseq_multi(par->state.vgabase, vt8623_fetch_count_regs, fetch_value);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700438
Ondrej Zajicek8f5af9d2008-04-28 02:15:17 -0700439 /* Clear H/V Skew */
440 svga_wcrt_mask(0x03, 0x00, 0x60);
441 svga_wcrt_mask(0x05, 0x00, 0x60);
442
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700443 if (info->var.vmode & FB_VMODE_DOUBLE)
444 svga_wcrt_mask(0x09, 0x80, 0x80);
445 else
446 svga_wcrt_mask(0x09, 0x00, 0x80);
447
David Millerd907ec02011-01-11 23:51:08 +0000448 svga_wseq_mask(par->state.vgabase, 0x1E, 0xF0, 0xF0); // DI/DVP bus
449 svga_wseq_mask(par->state.vgabase, 0x2A, 0x0F, 0x0F); // DI/DVP bus
450 svga_wseq_mask(par->state.vgabase, 0x16, 0x08, 0xBF); // FIFO read threshold
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700451 vga_wseq(NULL, 0x17, 0x1F); // FIFO depth
452 vga_wseq(NULL, 0x18, 0x4E);
David Millerd907ec02011-01-11 23:51:08 +0000453 svga_wseq_mask(par->state.vgabase, 0x1A, 0x08, 0x08); // enable MMIO ?
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700454
455 vga_wcrt(NULL, 0x32, 0x00);
456 vga_wcrt(NULL, 0x34, 0x00);
457 vga_wcrt(NULL, 0x6A, 0x80);
458 vga_wcrt(NULL, 0x6A, 0xC0);
459
460 vga_wgfx(NULL, 0x20, 0x00);
461 vga_wgfx(NULL, 0x21, 0x00);
462 vga_wgfx(NULL, 0x22, 0x00);
463
464 /* Set SR15 according to number of bits per pixel */
465 mode = svga_match_format(vt8623fb_formats, &(info->var), &(info->fix));
466 switch (mode) {
467 case 0:
468 pr_debug("fb%d: text mode\n", info->node);
469 svga_set_textmode_vga_regs();
David Millerd907ec02011-01-11 23:51:08 +0000470 svga_wseq_mask(par->state.vgabase, 0x15, 0x00, 0xFE);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700471 svga_wcrt_mask(0x11, 0x60, 0x70);
472 break;
473 case 1:
474 pr_debug("fb%d: 4 bit pseudocolor\n", info->node);
475 vga_wgfx(NULL, VGA_GFX_MODE, 0x40);
David Millerd907ec02011-01-11 23:51:08 +0000476 svga_wseq_mask(par->state.vgabase, 0x15, 0x20, 0xFE);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700477 svga_wcrt_mask(0x11, 0x00, 0x70);
478 break;
479 case 2:
480 pr_debug("fb%d: 4 bit pseudocolor, planar\n", info->node);
David Millerd907ec02011-01-11 23:51:08 +0000481 svga_wseq_mask(par->state.vgabase, 0x15, 0x00, 0xFE);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700482 svga_wcrt_mask(0x11, 0x00, 0x70);
483 break;
484 case 3:
485 pr_debug("fb%d: 8 bit pseudocolor\n", info->node);
David Millerd907ec02011-01-11 23:51:08 +0000486 svga_wseq_mask(par->state.vgabase, 0x15, 0x22, 0xFE);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700487 break;
488 case 4:
489 pr_debug("fb%d: 5/6/5 truecolor\n", info->node);
David Millerd907ec02011-01-11 23:51:08 +0000490 svga_wseq_mask(par->state.vgabase, 0x15, 0xB6, 0xFE);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700491 break;
492 case 5:
493 pr_debug("fb%d: 8/8/8 truecolor\n", info->node);
David Millerd907ec02011-01-11 23:51:08 +0000494 svga_wseq_mask(par->state.vgabase, 0x15, 0xAE, 0xFE);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700495 break;
496 default:
497 printk(KERN_ERR "vt8623fb: unsupported mode - bug\n");
498 return (-EINVAL);
499 }
500
501 vt8623_set_pixclock(info, info->var.pixclock);
502 svga_set_timings(&vt8623_timing_regs, &(info->var), 1, 1,
503 (info->var.vmode & FB_VMODE_DOUBLE) ? 2 : 1, 1,
504 1, info->node);
505
506 memset_io(info->screen_base, 0x00, screen_size);
507
508 /* Device and screen back on */
509 svga_wcrt_mask(0x17, 0x80, 0x80);
510 svga_wcrt_mask(0x36, 0x00, 0x30);
David Millerd907ec02011-01-11 23:51:08 +0000511 svga_wseq_mask(par->state.vgabase, 0x01, 0x00, 0x20);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700512
513 return 0;
514}
515
516
517static int vt8623fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
518 u_int transp, struct fb_info *fb)
519{
520 switch (fb->var.bits_per_pixel) {
521 case 0:
522 case 4:
523 if (regno >= 16)
524 return -EINVAL;
525
526 outb(0x0F, VGA_PEL_MSK);
527 outb(regno, VGA_PEL_IW);
528 outb(red >> 10, VGA_PEL_D);
529 outb(green >> 10, VGA_PEL_D);
530 outb(blue >> 10, VGA_PEL_D);
531 break;
532 case 8:
533 if (regno >= 256)
534 return -EINVAL;
535
536 outb(0xFF, VGA_PEL_MSK);
537 outb(regno, VGA_PEL_IW);
538 outb(red >> 10, VGA_PEL_D);
539 outb(green >> 10, VGA_PEL_D);
540 outb(blue >> 10, VGA_PEL_D);
541 break;
542 case 16:
543 if (regno >= 16)
544 return 0;
545
546 if (fb->var.green.length == 5)
547 ((u32*)fb->pseudo_palette)[regno] = ((red & 0xF800) >> 1) |
548 ((green & 0xF800) >> 6) | ((blue & 0xF800) >> 11);
549 else if (fb->var.green.length == 6)
550 ((u32*)fb->pseudo_palette)[regno] = (red & 0xF800) |
551 ((green & 0xFC00) >> 5) | ((blue & 0xF800) >> 11);
552 else
553 return -EINVAL;
554 break;
555 case 24:
556 case 32:
557 if (regno >= 16)
558 return 0;
559
560 /* ((transp & 0xFF00) << 16) */
561 ((u32*)fb->pseudo_palette)[regno] = ((red & 0xFF00) << 8) |
562 (green & 0xFF00) | ((blue & 0xFF00) >> 8);
563 break;
564 default:
565 return -EINVAL;
566 }
567
568 return 0;
569}
570
571
572static int vt8623fb_blank(int blank_mode, struct fb_info *info)
573{
David Millerd907ec02011-01-11 23:51:08 +0000574 struct vt8623fb_info *par = info->par;
575
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700576 switch (blank_mode) {
577 case FB_BLANK_UNBLANK:
578 pr_debug("fb%d: unblank\n", info->node);
579 svga_wcrt_mask(0x36, 0x00, 0x30);
David Millerd907ec02011-01-11 23:51:08 +0000580 svga_wseq_mask(par->state.vgabase, 0x01, 0x00, 0x20);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700581 break;
582 case FB_BLANK_NORMAL:
583 pr_debug("fb%d: blank\n", info->node);
584 svga_wcrt_mask(0x36, 0x00, 0x30);
David Millerd907ec02011-01-11 23:51:08 +0000585 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700586 break;
587 case FB_BLANK_HSYNC_SUSPEND:
588 pr_debug("fb%d: DPMS standby (hsync off)\n", info->node);
589 svga_wcrt_mask(0x36, 0x10, 0x30);
David Millerd907ec02011-01-11 23:51:08 +0000590 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700591 break;
592 case FB_BLANK_VSYNC_SUSPEND:
593 pr_debug("fb%d: DPMS suspend (vsync off)\n", info->node);
594 svga_wcrt_mask(0x36, 0x20, 0x30);
David Millerd907ec02011-01-11 23:51:08 +0000595 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700596 break;
597 case FB_BLANK_POWERDOWN:
598 pr_debug("fb%d: DPMS off (no sync)\n", info->node);
599 svga_wcrt_mask(0x36, 0x30, 0x30);
David Millerd907ec02011-01-11 23:51:08 +0000600 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700601 break;
602 }
603
604 return 0;
605}
606
607
608static int vt8623fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
609{
David Miller21da3862011-01-11 23:49:34 +0000610 struct vt8623fb_info *par = info->par;
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700611 unsigned int offset;
612
613 /* Calculate the offset */
614 if (var->bits_per_pixel == 0) {
615 offset = (var->yoffset / 16) * var->xres_virtual + var->xoffset;
616 offset = offset >> 3;
617 } else {
618 offset = (var->yoffset * info->fix.line_length) +
619 (var->xoffset * var->bits_per_pixel / 8);
620 offset = offset >> ((var->bits_per_pixel == 4) ? 2 : 1);
621 }
622
623 /* Set the offset */
David Miller21da3862011-01-11 23:49:34 +0000624 svga_wcrt_multi(par->state.vgabase, vt8623_start_address_regs, offset);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700625
626 return 0;
627}
628
629
630/* ------------------------------------------------------------------------- */
631
632
633/* Frame buffer operations */
634
635static struct fb_ops vt8623fb_ops = {
636 .owner = THIS_MODULE,
637 .fb_open = vt8623fb_open,
638 .fb_release = vt8623fb_release,
639 .fb_check_var = vt8623fb_check_var,
640 .fb_set_par = vt8623fb_set_par,
641 .fb_setcolreg = vt8623fb_setcolreg,
642 .fb_blank = vt8623fb_blank,
643 .fb_pan_display = vt8623fb_pan_display,
644 .fb_fillrect = vt8623fb_fillrect,
645 .fb_copyarea = cfb_copyarea,
646 .fb_imageblit = vt8623fb_imageblit,
Antonino A. Daplas5a87ede2007-05-09 02:35:32 -0700647 .fb_get_caps = svga_get_caps,
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700648};
649
650
651/* PCI probe */
652
653static int __devinit vt8623_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
654{
655 struct fb_info *info;
656 struct vt8623fb_info *par;
657 unsigned int memsize1, memsize2;
658 int rc;
659
660 /* Ignore secondary VGA device because there is no VGA arbitration */
661 if (! svga_primary_device(dev)) {
662 dev_info(&(dev->dev), "ignoring secondary device\n");
663 return -ENODEV;
664 }
665
666 /* Allocate and fill driver data structure */
Ondrej Zajicek20e061f2008-04-28 02:15:18 -0700667 info = framebuffer_alloc(sizeof(struct vt8623fb_info), &(dev->dev));
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700668 if (! info) {
669 dev_err(&(dev->dev), "cannot allocate memory\n");
670 return -ENOMEM;
671 }
672
673 par = info->par;
674 mutex_init(&par->open_lock);
675
676 info->flags = FBINFO_PARTIAL_PAN_OK | FBINFO_HWACCEL_YPAN;
677 info->fbops = &vt8623fb_ops;
678
679 /* Prepare PCI device */
680
681 rc = pci_enable_device(dev);
682 if (rc < 0) {
Ondrej Zajicek594a8812008-08-05 13:01:06 -0700683 dev_err(info->device, "cannot enable PCI device\n");
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700684 goto err_enable_device;
685 }
686
687 rc = pci_request_regions(dev, "vt8623fb");
688 if (rc < 0) {
Ondrej Zajicek594a8812008-08-05 13:01:06 -0700689 dev_err(info->device, "cannot reserve framebuffer region\n");
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700690 goto err_request_regions;
691 }
692
693 info->fix.smem_start = pci_resource_start(dev, 0);
694 info->fix.smem_len = pci_resource_len(dev, 0);
695 info->fix.mmio_start = pci_resource_start(dev, 1);
696 info->fix.mmio_len = pci_resource_len(dev, 1);
697
698 /* Map physical IO memory address into kernel space */
699 info->screen_base = pci_iomap(dev, 0, 0);
700 if (! info->screen_base) {
701 rc = -ENOMEM;
Ondrej Zajicek594a8812008-08-05 13:01:06 -0700702 dev_err(info->device, "iomap for framebuffer failed\n");
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700703 goto err_iomap_1;
704 }
705
706 par->mmio_base = pci_iomap(dev, 1, 0);
707 if (! par->mmio_base) {
708 rc = -ENOMEM;
Ondrej Zajicek594a8812008-08-05 13:01:06 -0700709 dev_err(info->device, "iomap for MMIO failed\n");
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700710 goto err_iomap_2;
711 }
712
713 /* Find how many physical memory there is on card */
714 memsize1 = (vga_rseq(NULL, 0x34) + 1) >> 1;
715 memsize2 = vga_rseq(NULL, 0x39) << 2;
716
717 if ((16 <= memsize1) && (memsize1 <= 64) && (memsize1 == memsize2))
718 info->screen_size = memsize1 << 20;
719 else {
Ondrej Zajicek594a8812008-08-05 13:01:06 -0700720 dev_err(info->device, "memory size detection failed (%x %x), suppose 16 MB\n", memsize1, memsize2);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700721 info->screen_size = 16 << 20;
722 }
723
724 info->fix.smem_len = info->screen_size;
725 strcpy(info->fix.id, "VIA VT8623");
726 info->fix.type = FB_TYPE_PACKED_PIXELS;
727 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
728 info->fix.ypanstep = 0;
729 info->fix.accel = FB_ACCEL_NONE;
730 info->pseudo_palette = (void*)par->pseudo_palette;
731
732 /* Prepare startup mode */
733
Rusty Russelld6d1b652010-08-11 23:04:27 -0600734 kparam_block_sysfs_write(mode_option);
Krzysztof Heltcc6c5492008-04-28 02:15:08 -0700735 rc = fb_find_mode(&(info->var), info, mode_option, NULL, 0, NULL, 8);
Rusty Russelld6d1b652010-08-11 23:04:27 -0600736 kparam_unblock_sysfs_write(mode_option);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700737 if (! ((rc == 1) || (rc == 2))) {
738 rc = -EINVAL;
Ondrej Zajicek594a8812008-08-05 13:01:06 -0700739 dev_err(info->device, "mode %s not found\n", mode_option);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700740 goto err_find_mode;
741 }
742
743 rc = fb_alloc_cmap(&info->cmap, 256, 0);
744 if (rc < 0) {
Ondrej Zajicek594a8812008-08-05 13:01:06 -0700745 dev_err(info->device, "cannot allocate colormap\n");
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700746 goto err_alloc_cmap;
747 }
748
749 rc = register_framebuffer(info);
750 if (rc < 0) {
Ondrej Zajicek594a8812008-08-05 13:01:06 -0700751 dev_err(info->device, "cannot register framebugger\n");
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700752 goto err_reg_fb;
753 }
754
755 printk(KERN_INFO "fb%d: %s on %s, %d MB RAM\n", info->node, info->fix.id,
756 pci_name(dev), info->fix.smem_len >> 20);
757
758 /* Record a reference to the driver data */
759 pci_set_drvdata(dev, info);
760
761#ifdef CONFIG_MTRR
762 if (mtrr) {
763 par->mtrr_reg = -1;
764 par->mtrr_reg = mtrr_add(info->fix.smem_start, info->fix.smem_len, MTRR_TYPE_WRCOMB, 1);
765 }
766#endif
767
768 return 0;
769
770 /* Error handling */
771err_reg_fb:
772 fb_dealloc_cmap(&info->cmap);
773err_alloc_cmap:
774err_find_mode:
775 pci_iounmap(dev, par->mmio_base);
776err_iomap_2:
777 pci_iounmap(dev, info->screen_base);
778err_iomap_1:
779 pci_release_regions(dev);
780err_request_regions:
781/* pci_disable_device(dev); */
782err_enable_device:
783 framebuffer_release(info);
784 return rc;
785}
786
787/* PCI remove */
788
789static void __devexit vt8623_pci_remove(struct pci_dev *dev)
790{
791 struct fb_info *info = pci_get_drvdata(dev);
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700792
793 if (info) {
Ondrej Zajicek38d473f2007-06-01 00:46:43 -0700794 struct vt8623fb_info *par = info->par;
795
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700796#ifdef CONFIG_MTRR
797 if (par->mtrr_reg >= 0) {
798 mtrr_del(par->mtrr_reg, 0, 0);
799 par->mtrr_reg = -1;
800 }
801#endif
802
803 unregister_framebuffer(info);
804 fb_dealloc_cmap(&info->cmap);
805
806 pci_iounmap(dev, info->screen_base);
807 pci_iounmap(dev, par->mmio_base);
808 pci_release_regions(dev);
809/* pci_disable_device(dev); */
810
811 pci_set_drvdata(dev, NULL);
812 framebuffer_release(info);
813 }
814}
815
816
817#ifdef CONFIG_PM
818/* PCI suspend */
819
820static int vt8623_pci_suspend(struct pci_dev* dev, pm_message_t state)
821{
822 struct fb_info *info = pci_get_drvdata(dev);
823 struct vt8623fb_info *par = info->par;
824
Ondrej Zajicek594a8812008-08-05 13:01:06 -0700825 dev_info(info->device, "suspend\n");
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700826
Torben Hohnac751ef2011-01-25 15:07:35 -0800827 console_lock();
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700828 mutex_lock(&(par->open_lock));
829
830 if ((state.event == PM_EVENT_FREEZE) || (par->ref_count == 0)) {
831 mutex_unlock(&(par->open_lock));
Torben Hohnac751ef2011-01-25 15:07:35 -0800832 console_unlock();
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700833 return 0;
834 }
835
836 fb_set_suspend(info, 1);
837
838 pci_save_state(dev);
839 pci_disable_device(dev);
840 pci_set_power_state(dev, pci_choose_state(dev, state));
841
842 mutex_unlock(&(par->open_lock));
Torben Hohnac751ef2011-01-25 15:07:35 -0800843 console_unlock();
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700844
845 return 0;
846}
847
848
849/* PCI resume */
850
851static int vt8623_pci_resume(struct pci_dev* dev)
852{
853 struct fb_info *info = pci_get_drvdata(dev);
854 struct vt8623fb_info *par = info->par;
855
Ondrej Zajicek594a8812008-08-05 13:01:06 -0700856 dev_info(info->device, "resume\n");
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700857
Torben Hohnac751ef2011-01-25 15:07:35 -0800858 console_lock();
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700859 mutex_lock(&(par->open_lock));
860
Julia Lawall950d4422008-07-29 22:33:28 -0700861 if (par->ref_count == 0)
862 goto fail;
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700863
864 pci_set_power_state(dev, PCI_D0);
865 pci_restore_state(dev);
866
867 if (pci_enable_device(dev))
868 goto fail;
869
870 pci_set_master(dev);
871
872 vt8623fb_set_par(info);
873 fb_set_suspend(info, 0);
874
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700875fail:
Julia Lawall950d4422008-07-29 22:33:28 -0700876 mutex_unlock(&(par->open_lock));
Torben Hohnac751ef2011-01-25 15:07:35 -0800877 console_unlock();
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700878
879 return 0;
880}
881#else
882#define vt8623_pci_suspend NULL
883#define vt8623_pci_resume NULL
884#endif /* CONFIG_PM */
885
886/* List of boards that we are trying to support */
887
888static struct pci_device_id vt8623_devices[] __devinitdata = {
889 {PCI_DEVICE(PCI_VENDOR_ID_VIA, 0x3122)},
890 {0, 0, 0, 0, 0, 0, 0}
891};
892
893MODULE_DEVICE_TABLE(pci, vt8623_devices);
894
895static struct pci_driver vt8623fb_pci_driver = {
896 .name = "vt8623fb",
897 .id_table = vt8623_devices,
898 .probe = vt8623_pci_probe,
899 .remove = __devexit_p(vt8623_pci_remove),
900 .suspend = vt8623_pci_suspend,
901 .resume = vt8623_pci_resume,
902};
903
904/* Cleanup */
905
906static void __exit vt8623fb_cleanup(void)
907{
908 pr_debug("vt8623fb: cleaning up\n");
909 pci_unregister_driver(&vt8623fb_pci_driver);
910}
911
912/* Driver Initialisation */
913
Adrian Bunk3552f092007-07-17 04:05:47 -0700914static int __init vt8623fb_init(void)
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700915{
916
917#ifndef MODULE
918 char *option = NULL;
919
920 if (fb_get_options("vt8623fb", &option))
921 return -ENODEV;
922
923 if (option && *option)
Krzysztof Heltcc6c5492008-04-28 02:15:08 -0700924 mode_option = option;
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -0700925#endif
926
927 pr_debug("vt8623fb: initializing\n");
928 return pci_register_driver(&vt8623fb_pci_driver);
929}
930
931/* ------------------------------------------------------------------------- */
932
933/* Modularization */
934
935module_init(vt8623fb_init);
936module_exit(vt8623fb_cleanup);