cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

vt8623fb.c (26709B)


      1/*
      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
     15#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>
     21#include <linux/delay.h>
     22#include <linux/fb.h>
     23#include <linux/svga.h>
     24#include <linux/init.h>
     25#include <linux/pci.h>
     26#include <linux/console.h> /* Why should fb driver call console functions? because console_lock() */
     27#include <video/vga.h>
     28
     29struct vt8623fb_info {
     30	char __iomem *mmio_base;
     31	int wc_cookie;
     32	struct vgastate state;
     33	struct mutex open_lock;
     34	unsigned int ref_count;
     35	u32 pseudo_palette[16];
     36};
     37
     38
     39
     40/* ------------------------------------------------------------------------- */
     41
     42static const struct svga_fb_format vt8623fb_formats[] = {
     43	{ 0,  {0, 6, 0},  {0, 6, 0},  {0, 6, 0}, {0, 0, 0}, 0,
     44		FB_TYPE_TEXT, FB_AUX_TEXT_SVGA_STEP8,	FB_VISUAL_PSEUDOCOLOR, 16, 16},
     45	{ 4,  {0, 6, 0},  {0, 6, 0},  {0, 6, 0}, {0, 0, 0}, 0,
     46		FB_TYPE_PACKED_PIXELS, 0,		FB_VISUAL_PSEUDOCOLOR, 16, 16},
     47	{ 4,  {0, 6, 0},  {0, 6, 0},  {0, 6, 0}, {0, 0, 0}, 1,
     48		FB_TYPE_INTERLEAVED_PLANES, 1,		FB_VISUAL_PSEUDOCOLOR, 16, 16},
     49	{ 8,  {0, 6, 0},  {0, 6, 0},  {0, 6, 0}, {0, 0, 0}, 0,
     50		FB_TYPE_PACKED_PIXELS, 0,		FB_VISUAL_PSEUDOCOLOR, 8, 8},
     51/*	{16,  {10, 5, 0}, {5, 5, 0},  {0, 5, 0}, {0, 0, 0}, 0,
     52		FB_TYPE_PACKED_PIXELS, 0,		FB_VISUAL_TRUECOLOR, 4, 4},	*/
     53	{16,  {11, 5, 0}, {5, 6, 0},  {0, 5, 0}, {0, 0, 0}, 0,
     54		FB_TYPE_PACKED_PIXELS, 0,		FB_VISUAL_TRUECOLOR, 4, 4},
     55	{32,  {16, 8, 0}, {8, 8, 0},  {0, 8, 0}, {0, 0, 0}, 0,
     56		FB_TYPE_PACKED_PIXELS, 0,		FB_VISUAL_TRUECOLOR, 2, 2},
     57	SVGA_FORMAT_END
     58};
     59
     60static const struct svga_pll vt8623_pll = {2, 127, 2, 7, 0, 3,
     61	60000, 300000, 14318};
     62
     63/* CRT timing register sets */
     64
     65static const struct vga_regset vt8623_h_total_regs[]       = {{0x00, 0, 7}, {0x36, 3, 3}, VGA_REGSET_END};
     66static const struct vga_regset vt8623_h_display_regs[]     = {{0x01, 0, 7}, VGA_REGSET_END};
     67static const struct vga_regset vt8623_h_blank_start_regs[] = {{0x02, 0, 7}, VGA_REGSET_END};
     68static const struct vga_regset vt8623_h_blank_end_regs[]   = {{0x03, 0, 4}, {0x05, 7, 7}, {0x33, 5, 5}, VGA_REGSET_END};
     69static const struct vga_regset vt8623_h_sync_start_regs[]  = {{0x04, 0, 7}, {0x33, 4, 4}, VGA_REGSET_END};
     70static const struct vga_regset vt8623_h_sync_end_regs[]    = {{0x05, 0, 4}, VGA_REGSET_END};
     71
     72static const struct vga_regset vt8623_v_total_regs[]       = {{0x06, 0, 7}, {0x07, 0, 0}, {0x07, 5, 5}, {0x35, 0, 0}, VGA_REGSET_END};
     73static const struct vga_regset vt8623_v_display_regs[]     = {{0x12, 0, 7}, {0x07, 1, 1}, {0x07, 6, 6}, {0x35, 2, 2}, VGA_REGSET_END};
     74static const struct vga_regset vt8623_v_blank_start_regs[] = {{0x15, 0, 7}, {0x07, 3, 3}, {0x09, 5, 5}, {0x35, 3, 3}, VGA_REGSET_END};
     75static const struct vga_regset vt8623_v_blank_end_regs[]   = {{0x16, 0, 7}, VGA_REGSET_END};
     76static const struct vga_regset vt8623_v_sync_start_regs[]  = {{0x10, 0, 7}, {0x07, 2, 2}, {0x07, 7, 7}, {0x35, 1, 1}, VGA_REGSET_END};
     77static const struct vga_regset vt8623_v_sync_end_regs[]    = {{0x11, 0, 3}, VGA_REGSET_END};
     78
     79static const struct vga_regset vt8623_offset_regs[]        = {{0x13, 0, 7}, {0x35, 5, 7}, VGA_REGSET_END};
     80static const 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};
     81static const struct vga_regset vt8623_fetch_count_regs[]   = {{0x1C, 0, 7}, {0x1D, 0, 1}, VGA_REGSET_END};
     82static const struct vga_regset vt8623_start_address_regs[] = {{0x0d, 0, 7}, {0x0c, 0, 7}, {0x34, 0, 7}, {0x48, 0, 1}, VGA_REGSET_END};
     83
     84static const struct svga_timing_regs vt8623_timing_regs     = {
     85	vt8623_h_total_regs, vt8623_h_display_regs, vt8623_h_blank_start_regs,
     86	vt8623_h_blank_end_regs, vt8623_h_sync_start_regs, vt8623_h_sync_end_regs,
     87	vt8623_v_total_regs, vt8623_v_display_regs, vt8623_v_blank_start_regs,
     88	vt8623_v_blank_end_regs, vt8623_v_sync_start_regs, vt8623_v_sync_end_regs,
     89};
     90
     91
     92/* ------------------------------------------------------------------------- */
     93
     94
     95/* Module parameters */
     96
     97static char *mode_option = "640x480-8@60";
     98static int mtrr = 1;
     99
    100MODULE_AUTHOR("(c) 2006 Ondrej Zajicek <santiago@crfreenet.org>");
    101MODULE_LICENSE("GPL");
    102MODULE_DESCRIPTION("fbdev driver for integrated graphics core in VIA VT8623 [CLE266]");
    103
    104module_param(mode_option, charp, 0644);
    105MODULE_PARM_DESC(mode_option, "Default video mode ('640x480-8@60', etc)");
    106module_param_named(mode, mode_option, charp, 0);
    107MODULE_PARM_DESC(mode, "Default video mode e.g. '648x480-8@60' (deprecated)");
    108module_param(mtrr, int, 0444);
    109MODULE_PARM_DESC(mtrr, "Enable write-combining with MTRR (1=enable, 0=disable, default=1)");
    110
    111
    112/* ------------------------------------------------------------------------- */
    113
    114static void vt8623fb_tilecursor(struct fb_info *info, struct fb_tilecursor *cursor)
    115{
    116	struct vt8623fb_info *par = info->par;
    117
    118	svga_tilecursor(par->state.vgabase, info, cursor);
    119}
    120
    121static struct fb_tile_ops vt8623fb_tile_ops = {
    122	.fb_settile	= svga_settile,
    123	.fb_tilecopy	= svga_tilecopy,
    124	.fb_tilefill    = svga_tilefill,
    125	.fb_tileblit    = svga_tileblit,
    126	.fb_tilecursor  = vt8623fb_tilecursor,
    127	.fb_get_tilemax = svga_get_tilemax,
    128};
    129
    130
    131/* ------------------------------------------------------------------------- */
    132
    133
    134/* image data is MSB-first, fb structure is MSB-first too */
    135static inline u32 expand_color(u32 c)
    136{
    137	return ((c & 1) | ((c & 2) << 7) | ((c & 4) << 14) | ((c & 8) << 21)) * 0xFF;
    138}
    139
    140/* vt8623fb_iplan_imageblit silently assumes that almost everything is 8-pixel aligned */
    141static void vt8623fb_iplan_imageblit(struct fb_info *info, const struct fb_image *image)
    142{
    143	u32 fg = expand_color(image->fg_color);
    144	u32 bg = expand_color(image->bg_color);
    145	const u8 *src1, *src;
    146	u8 __iomem *dst1;
    147	u32 __iomem *dst;
    148	u32 val;
    149	int x, y;
    150
    151	src1 = image->data;
    152	dst1 = info->screen_base + (image->dy * info->fix.line_length)
    153		 + ((image->dx / 8) * 4);
    154
    155	for (y = 0; y < image->height; y++) {
    156		src = src1;
    157		dst = (u32 __iomem *) dst1;
    158		for (x = 0; x < image->width; x += 8) {
    159			val = *(src++) * 0x01010101;
    160			val = (val & fg) | (~val & bg);
    161			fb_writel(val, dst++);
    162		}
    163		src1 += image->width / 8;
    164		dst1 += info->fix.line_length;
    165	}
    166}
    167
    168/* vt8623fb_iplan_fillrect silently assumes that almost everything is 8-pixel aligned */
    169static void vt8623fb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
    170{
    171	u32 fg = expand_color(rect->color);
    172	u8 __iomem *dst1;
    173	u32 __iomem *dst;
    174	int x, y;
    175
    176	dst1 = info->screen_base + (rect->dy * info->fix.line_length)
    177		 + ((rect->dx / 8) * 4);
    178
    179	for (y = 0; y < rect->height; y++) {
    180		dst = (u32 __iomem *) dst1;
    181		for (x = 0; x < rect->width; x += 8) {
    182			fb_writel(fg, dst++);
    183		}
    184		dst1 += info->fix.line_length;
    185	}
    186}
    187
    188
    189/* image data is MSB-first, fb structure is high-nibble-in-low-byte-first */
    190static inline u32 expand_pixel(u32 c)
    191{
    192	return (((c &  1) << 24) | ((c &  2) << 27) | ((c &  4) << 14) | ((c &   8) << 17) |
    193		((c & 16) <<  4) | ((c & 32) <<  7) | ((c & 64) >>  6) | ((c & 128) >>  3)) * 0xF;
    194}
    195
    196/* vt8623fb_cfb4_imageblit silently assumes that almost everything is 8-pixel aligned */
    197static void vt8623fb_cfb4_imageblit(struct fb_info *info, const struct fb_image *image)
    198{
    199	u32 fg = image->fg_color * 0x11111111;
    200	u32 bg = image->bg_color * 0x11111111;
    201	const u8 *src1, *src;
    202	u8 __iomem *dst1;
    203	u32 __iomem *dst;
    204	u32 val;
    205	int x, y;
    206
    207	src1 = image->data;
    208	dst1 = info->screen_base + (image->dy * info->fix.line_length)
    209		 + ((image->dx / 8) * 4);
    210
    211	for (y = 0; y < image->height; y++) {
    212		src = src1;
    213		dst = (u32 __iomem *) dst1;
    214		for (x = 0; x < image->width; x += 8) {
    215			val = expand_pixel(*(src++));
    216			val = (val & fg) | (~val & bg);
    217			fb_writel(val, dst++);
    218		}
    219		src1 += image->width / 8;
    220		dst1 += info->fix.line_length;
    221	}
    222}
    223
    224static void vt8623fb_imageblit(struct fb_info *info, const struct fb_image *image)
    225{
    226	if ((info->var.bits_per_pixel == 4) && (image->depth == 1)
    227	    && ((image->width % 8) == 0) && ((image->dx % 8) == 0)) {
    228		if (info->fix.type == FB_TYPE_INTERLEAVED_PLANES)
    229			vt8623fb_iplan_imageblit(info, image);
    230		else
    231			vt8623fb_cfb4_imageblit(info, image);
    232	} else
    233		cfb_imageblit(info, image);
    234}
    235
    236static void vt8623fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
    237{
    238	if ((info->var.bits_per_pixel == 4)
    239	    && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
    240	    && (info->fix.type == FB_TYPE_INTERLEAVED_PLANES))
    241		vt8623fb_iplan_fillrect(info, rect);
    242	 else
    243		cfb_fillrect(info, rect);
    244}
    245
    246
    247/* ------------------------------------------------------------------------- */
    248
    249
    250static void vt8623_set_pixclock(struct fb_info *info, u32 pixclock)
    251{
    252	struct vt8623fb_info *par = info->par;
    253	u16 m, n, r;
    254	u8 regval;
    255	int rv;
    256
    257	rv = svga_compute_pll(&vt8623_pll, 1000000000 / pixclock, &m, &n, &r, info->node);
    258	if (rv < 0) {
    259		fb_err(info, "cannot set requested pixclock, keeping old value\n");
    260		return;
    261	}
    262
    263	/* Set VGA misc register  */
    264	regval = vga_r(par->state.vgabase, VGA_MIS_R);
    265	vga_w(par->state.vgabase, VGA_MIS_W, regval | VGA_MIS_ENB_PLL_LOAD);
    266
    267	/* Set clock registers */
    268	vga_wseq(par->state.vgabase, 0x46, (n  | (r << 6)));
    269	vga_wseq(par->state.vgabase, 0x47, m);
    270
    271	udelay(1000);
    272
    273	/* PLL reset */
    274	svga_wseq_mask(par->state.vgabase, 0x40, 0x02, 0x02);
    275	svga_wseq_mask(par->state.vgabase, 0x40, 0x00, 0x02);
    276}
    277
    278
    279static int vt8623fb_open(struct fb_info *info, int user)
    280{
    281	struct vt8623fb_info *par = info->par;
    282
    283	mutex_lock(&(par->open_lock));
    284	if (par->ref_count == 0) {
    285		void __iomem *vgabase = par->state.vgabase;
    286
    287		memset(&(par->state), 0, sizeof(struct vgastate));
    288		par->state.vgabase = vgabase;
    289		par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS | VGA_SAVE_CMAP;
    290		par->state.num_crtc = 0xA2;
    291		par->state.num_seq = 0x50;
    292		save_vga(&(par->state));
    293	}
    294
    295	par->ref_count++;
    296	mutex_unlock(&(par->open_lock));
    297
    298	return 0;
    299}
    300
    301static int vt8623fb_release(struct fb_info *info, int user)
    302{
    303	struct vt8623fb_info *par = info->par;
    304
    305	mutex_lock(&(par->open_lock));
    306	if (par->ref_count == 0) {
    307		mutex_unlock(&(par->open_lock));
    308		return -EINVAL;
    309	}
    310
    311	if (par->ref_count == 1)
    312		restore_vga(&(par->state));
    313
    314	par->ref_count--;
    315	mutex_unlock(&(par->open_lock));
    316
    317	return 0;
    318}
    319
    320static int vt8623fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
    321{
    322	int rv, mem, step;
    323
    324	if (!var->pixclock)
    325		return -EINVAL;
    326
    327	/* Find appropriate format */
    328	rv = svga_match_format (vt8623fb_formats, var, NULL);
    329	if (rv < 0)
    330	{
    331		fb_err(info, "unsupported mode requested\n");
    332		return rv;
    333	}
    334
    335	/* Do not allow to have real resoulution larger than virtual */
    336	if (var->xres > var->xres_virtual)
    337		var->xres_virtual = var->xres;
    338
    339	if (var->yres > var->yres_virtual)
    340		var->yres_virtual = var->yres;
    341
    342	/* Round up xres_virtual to have proper alignment of lines */
    343	step = vt8623fb_formats[rv].xresstep - 1;
    344	var->xres_virtual = (var->xres_virtual+step) & ~step;
    345
    346	/* Check whether have enough memory */
    347	mem = ((var->bits_per_pixel * var->xres_virtual) >> 3) * var->yres_virtual;
    348	if (mem > info->screen_size)
    349	{
    350		fb_err(info, "not enough framebuffer memory (%d kB requested, %d kB available)\n",
    351		       mem >> 10, (unsigned int) (info->screen_size >> 10));
    352		return -EINVAL;
    353	}
    354
    355	/* Text mode is limited to 256 kB of memory */
    356	if ((var->bits_per_pixel == 0) && (mem > (256*1024)))
    357	{
    358		fb_err(info, "text framebuffer size too large (%d kB requested, 256 kB possible)\n",
    359		       mem >> 10);
    360		return -EINVAL;
    361	}
    362
    363	rv = svga_check_timings (&vt8623_timing_regs, var, info->node);
    364	if (rv < 0)
    365	{
    366		fb_err(info, "invalid timings requested\n");
    367		return rv;
    368	}
    369
    370	/* Interlaced mode not supported */
    371	if (var->vmode & FB_VMODE_INTERLACED)
    372		return -EINVAL;
    373
    374	return 0;
    375}
    376
    377
    378static int vt8623fb_set_par(struct fb_info *info)
    379{
    380	u32 mode, offset_value, fetch_value, screen_size;
    381	struct vt8623fb_info *par = info->par;
    382	u32 bpp = info->var.bits_per_pixel;
    383
    384	if (bpp != 0) {
    385		info->fix.ypanstep = 1;
    386		info->fix.line_length = (info->var.xres_virtual * bpp) / 8;
    387
    388		info->flags &= ~FBINFO_MISC_TILEBLITTING;
    389		info->tileops = NULL;
    390
    391		/* in 4bpp supports 8p wide tiles only, any tiles otherwise */
    392		info->pixmap.blit_x = (bpp == 4) ? (1 << (8 - 1)) : (~(u32)0);
    393		info->pixmap.blit_y = ~(u32)0;
    394
    395		offset_value = (info->var.xres_virtual * bpp) / 64;
    396		fetch_value  = ((info->var.xres * bpp) / 128) + 4;
    397
    398		if (bpp == 4)
    399			fetch_value  = (info->var.xres / 8) + 8; /* + 0 is OK */
    400
    401		screen_size  = info->var.yres_virtual * info->fix.line_length;
    402	} else {
    403		info->fix.ypanstep = 16;
    404		info->fix.line_length = 0;
    405
    406		info->flags |= FBINFO_MISC_TILEBLITTING;
    407		info->tileops = &vt8623fb_tile_ops;
    408
    409		/* supports 8x16 tiles only */
    410		info->pixmap.blit_x = 1 << (8 - 1);
    411		info->pixmap.blit_y = 1 << (16 - 1);
    412
    413		offset_value = info->var.xres_virtual / 16;
    414		fetch_value  = (info->var.xres / 8) + 8;
    415		screen_size  = (info->var.xres_virtual * info->var.yres_virtual) / 64;
    416	}
    417
    418	info->var.xoffset = 0;
    419	info->var.yoffset = 0;
    420	info->var.activate = FB_ACTIVATE_NOW;
    421
    422	/* Unlock registers */
    423	svga_wseq_mask(par->state.vgabase, 0x10, 0x01, 0x01);
    424	svga_wcrt_mask(par->state.vgabase, 0x11, 0x00, 0x80);
    425	svga_wcrt_mask(par->state.vgabase, 0x47, 0x00, 0x01);
    426
    427	/* Device, screen and sync off */
    428	svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
    429	svga_wcrt_mask(par->state.vgabase, 0x36, 0x30, 0x30);
    430	svga_wcrt_mask(par->state.vgabase, 0x17, 0x00, 0x80);
    431
    432	/* Set default values */
    433	svga_set_default_gfx_regs(par->state.vgabase);
    434	svga_set_default_atc_regs(par->state.vgabase);
    435	svga_set_default_seq_regs(par->state.vgabase);
    436	svga_set_default_crt_regs(par->state.vgabase);
    437	svga_wcrt_multi(par->state.vgabase, vt8623_line_compare_regs, 0xFFFFFFFF);
    438	svga_wcrt_multi(par->state.vgabase, vt8623_start_address_regs, 0);
    439
    440	svga_wcrt_multi(par->state.vgabase, vt8623_offset_regs, offset_value);
    441	svga_wseq_multi(par->state.vgabase, vt8623_fetch_count_regs, fetch_value);
    442
    443	/* Clear H/V Skew */
    444	svga_wcrt_mask(par->state.vgabase, 0x03, 0x00, 0x60);
    445	svga_wcrt_mask(par->state.vgabase, 0x05, 0x00, 0x60);
    446
    447	if (info->var.vmode & FB_VMODE_DOUBLE)
    448		svga_wcrt_mask(par->state.vgabase, 0x09, 0x80, 0x80);
    449	else
    450		svga_wcrt_mask(par->state.vgabase, 0x09, 0x00, 0x80);
    451
    452	svga_wseq_mask(par->state.vgabase, 0x1E, 0xF0, 0xF0); // DI/DVP bus
    453	svga_wseq_mask(par->state.vgabase, 0x2A, 0x0F, 0x0F); // DI/DVP bus
    454	svga_wseq_mask(par->state.vgabase, 0x16, 0x08, 0xBF); // FIFO read threshold
    455	vga_wseq(par->state.vgabase, 0x17, 0x1F);       // FIFO depth
    456	vga_wseq(par->state.vgabase, 0x18, 0x4E);
    457	svga_wseq_mask(par->state.vgabase, 0x1A, 0x08, 0x08); // enable MMIO ?
    458
    459	vga_wcrt(par->state.vgabase, 0x32, 0x00);
    460	vga_wcrt(par->state.vgabase, 0x34, 0x00);
    461	vga_wcrt(par->state.vgabase, 0x6A, 0x80);
    462	vga_wcrt(par->state.vgabase, 0x6A, 0xC0);
    463
    464	vga_wgfx(par->state.vgabase, 0x20, 0x00);
    465	vga_wgfx(par->state.vgabase, 0x21, 0x00);
    466	vga_wgfx(par->state.vgabase, 0x22, 0x00);
    467
    468	/* Set SR15 according to number of bits per pixel */
    469	mode = svga_match_format(vt8623fb_formats, &(info->var), &(info->fix));
    470	switch (mode) {
    471	case 0:
    472		fb_dbg(info, "text mode\n");
    473		svga_set_textmode_vga_regs(par->state.vgabase);
    474		svga_wseq_mask(par->state.vgabase, 0x15, 0x00, 0xFE);
    475		svga_wcrt_mask(par->state.vgabase, 0x11, 0x60, 0x70);
    476		break;
    477	case 1:
    478		fb_dbg(info, "4 bit pseudocolor\n");
    479		vga_wgfx(par->state.vgabase, VGA_GFX_MODE, 0x40);
    480		svga_wseq_mask(par->state.vgabase, 0x15, 0x20, 0xFE);
    481		svga_wcrt_mask(par->state.vgabase, 0x11, 0x00, 0x70);
    482		break;
    483	case 2:
    484		fb_dbg(info, "4 bit pseudocolor, planar\n");
    485		svga_wseq_mask(par->state.vgabase, 0x15, 0x00, 0xFE);
    486		svga_wcrt_mask(par->state.vgabase, 0x11, 0x00, 0x70);
    487		break;
    488	case 3:
    489		fb_dbg(info, "8 bit pseudocolor\n");
    490		svga_wseq_mask(par->state.vgabase, 0x15, 0x22, 0xFE);
    491		break;
    492	case 4:
    493		fb_dbg(info, "5/6/5 truecolor\n");
    494		svga_wseq_mask(par->state.vgabase, 0x15, 0xB6, 0xFE);
    495		break;
    496	case 5:
    497		fb_dbg(info, "8/8/8 truecolor\n");
    498		svga_wseq_mask(par->state.vgabase, 0x15, 0xAE, 0xFE);
    499		break;
    500	default:
    501		printk(KERN_ERR "vt8623fb: unsupported mode - bug\n");
    502		return (-EINVAL);
    503	}
    504
    505	vt8623_set_pixclock(info, info->var.pixclock);
    506	svga_set_timings(par->state.vgabase, &vt8623_timing_regs, &(info->var), 1, 1,
    507			 (info->var.vmode & FB_VMODE_DOUBLE) ? 2 : 1, 1,
    508			 1, info->node);
    509
    510	memset_io(info->screen_base, 0x00, screen_size);
    511
    512	/* Device and screen back on */
    513	svga_wcrt_mask(par->state.vgabase, 0x17, 0x80, 0x80);
    514	svga_wcrt_mask(par->state.vgabase, 0x36, 0x00, 0x30);
    515	svga_wseq_mask(par->state.vgabase, 0x01, 0x00, 0x20);
    516
    517	return 0;
    518}
    519
    520
    521static int vt8623fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
    522				u_int transp, struct fb_info *fb)
    523{
    524	switch (fb->var.bits_per_pixel) {
    525	case 0:
    526	case 4:
    527		if (regno >= 16)
    528			return -EINVAL;
    529
    530		outb(0x0F, VGA_PEL_MSK);
    531		outb(regno, VGA_PEL_IW);
    532		outb(red >> 10, VGA_PEL_D);
    533		outb(green >> 10, VGA_PEL_D);
    534		outb(blue >> 10, VGA_PEL_D);
    535		break;
    536	case 8:
    537		if (regno >= 256)
    538			return -EINVAL;
    539
    540		outb(0xFF, VGA_PEL_MSK);
    541		outb(regno, VGA_PEL_IW);
    542		outb(red >> 10, VGA_PEL_D);
    543		outb(green >> 10, VGA_PEL_D);
    544		outb(blue >> 10, VGA_PEL_D);
    545		break;
    546	case 16:
    547		if (regno >= 16)
    548			return 0;
    549
    550		if (fb->var.green.length == 5)
    551			((u32*)fb->pseudo_palette)[regno] = ((red & 0xF800) >> 1) |
    552				((green & 0xF800) >> 6) | ((blue & 0xF800) >> 11);
    553		else if (fb->var.green.length == 6)
    554			((u32*)fb->pseudo_palette)[regno] = (red & 0xF800) |
    555				((green & 0xFC00) >> 5) | ((blue & 0xF800) >> 11);
    556		else
    557			return -EINVAL;
    558		break;
    559	case 24:
    560	case 32:
    561		if (regno >= 16)
    562			return 0;
    563
    564		/* ((transp & 0xFF00) << 16) */
    565		((u32*)fb->pseudo_palette)[regno] = ((red & 0xFF00) << 8) |
    566			(green & 0xFF00) | ((blue & 0xFF00) >> 8);
    567		break;
    568	default:
    569		return -EINVAL;
    570	}
    571
    572	return 0;
    573}
    574
    575
    576static int vt8623fb_blank(int blank_mode, struct fb_info *info)
    577{
    578	struct vt8623fb_info *par = info->par;
    579
    580	switch (blank_mode) {
    581	case FB_BLANK_UNBLANK:
    582		fb_dbg(info, "unblank\n");
    583		svga_wcrt_mask(par->state.vgabase, 0x36, 0x00, 0x30);
    584		svga_wseq_mask(par->state.vgabase, 0x01, 0x00, 0x20);
    585		break;
    586	case FB_BLANK_NORMAL:
    587		fb_dbg(info, "blank\n");
    588		svga_wcrt_mask(par->state.vgabase, 0x36, 0x00, 0x30);
    589		svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
    590		break;
    591	case FB_BLANK_HSYNC_SUSPEND:
    592		fb_dbg(info, "DPMS standby (hsync off)\n");
    593		svga_wcrt_mask(par->state.vgabase, 0x36, 0x10, 0x30);
    594		svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
    595		break;
    596	case FB_BLANK_VSYNC_SUSPEND:
    597		fb_dbg(info, "DPMS suspend (vsync off)\n");
    598		svga_wcrt_mask(par->state.vgabase, 0x36, 0x20, 0x30);
    599		svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
    600		break;
    601	case FB_BLANK_POWERDOWN:
    602		fb_dbg(info, "DPMS off (no sync)\n");
    603		svga_wcrt_mask(par->state.vgabase, 0x36, 0x30, 0x30);
    604		svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
    605		break;
    606	}
    607
    608	return 0;
    609}
    610
    611
    612static int vt8623fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
    613{
    614	struct vt8623fb_info *par = info->par;
    615	unsigned int offset;
    616
    617	/* Calculate the offset */
    618	if (info->var.bits_per_pixel == 0) {
    619		offset = (var->yoffset / 16) * info->var.xres_virtual
    620		       + var->xoffset;
    621		offset = offset >> 3;
    622	} else {
    623		offset = (var->yoffset * info->fix.line_length) +
    624			 (var->xoffset * info->var.bits_per_pixel / 8);
    625		offset = offset >> ((info->var.bits_per_pixel == 4) ? 2 : 1);
    626	}
    627
    628	/* Set the offset */
    629	svga_wcrt_multi(par->state.vgabase, vt8623_start_address_regs, offset);
    630
    631	return 0;
    632}
    633
    634
    635/* ------------------------------------------------------------------------- */
    636
    637
    638/* Frame buffer operations */
    639
    640static const struct fb_ops vt8623fb_ops = {
    641	.owner		= THIS_MODULE,
    642	.fb_open	= vt8623fb_open,
    643	.fb_release	= vt8623fb_release,
    644	.fb_check_var	= vt8623fb_check_var,
    645	.fb_set_par	= vt8623fb_set_par,
    646	.fb_setcolreg	= vt8623fb_setcolreg,
    647	.fb_blank	= vt8623fb_blank,
    648	.fb_pan_display	= vt8623fb_pan_display,
    649	.fb_fillrect	= vt8623fb_fillrect,
    650	.fb_copyarea	= cfb_copyarea,
    651	.fb_imageblit	= vt8623fb_imageblit,
    652	.fb_get_caps    = svga_get_caps,
    653};
    654
    655
    656/* PCI probe */
    657
    658static int vt8623_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
    659{
    660	struct pci_bus_region bus_reg;
    661	struct resource vga_res;
    662	struct fb_info *info;
    663	struct vt8623fb_info *par;
    664	unsigned int memsize1, memsize2;
    665	int rc;
    666
    667	/* Ignore secondary VGA device because there is no VGA arbitration */
    668	if (! svga_primary_device(dev)) {
    669		dev_info(&(dev->dev), "ignoring secondary device\n");
    670		return -ENODEV;
    671	}
    672
    673	/* Allocate and fill driver data structure */
    674	info = framebuffer_alloc(sizeof(struct vt8623fb_info), &(dev->dev));
    675	if (!info)
    676		return -ENOMEM;
    677
    678	par = info->par;
    679	mutex_init(&par->open_lock);
    680
    681	info->flags = FBINFO_PARTIAL_PAN_OK | FBINFO_HWACCEL_YPAN;
    682	info->fbops = &vt8623fb_ops;
    683
    684	/* Prepare PCI device */
    685
    686	rc = pci_enable_device(dev);
    687	if (rc < 0) {
    688		dev_err(info->device, "cannot enable PCI device\n");
    689		goto err_enable_device;
    690	}
    691
    692	rc = pci_request_regions(dev, "vt8623fb");
    693	if (rc < 0) {
    694		dev_err(info->device, "cannot reserve framebuffer region\n");
    695		goto err_request_regions;
    696	}
    697
    698	info->fix.smem_start = pci_resource_start(dev, 0);
    699	info->fix.smem_len = pci_resource_len(dev, 0);
    700	info->fix.mmio_start = pci_resource_start(dev, 1);
    701	info->fix.mmio_len = pci_resource_len(dev, 1);
    702
    703	/* Map physical IO memory address into kernel space */
    704	info->screen_base = pci_iomap_wc(dev, 0, 0);
    705	if (! info->screen_base) {
    706		rc = -ENOMEM;
    707		dev_err(info->device, "iomap for framebuffer failed\n");
    708		goto err_iomap_1;
    709	}
    710
    711	par->mmio_base = pci_iomap(dev, 1, 0);
    712	if (! par->mmio_base) {
    713		rc = -ENOMEM;
    714		dev_err(info->device, "iomap for MMIO failed\n");
    715		goto err_iomap_2;
    716	}
    717
    718	bus_reg.start = 0;
    719	bus_reg.end = 64 * 1024;
    720
    721	vga_res.flags = IORESOURCE_IO;
    722
    723	pcibios_bus_to_resource(dev->bus, &vga_res, &bus_reg);
    724
    725	par->state.vgabase = (void __iomem *) (unsigned long) vga_res.start;
    726
    727	/* Find how many physical memory there is on card */
    728	memsize1 = (vga_rseq(par->state.vgabase, 0x34) + 1) >> 1;
    729	memsize2 = vga_rseq(par->state.vgabase, 0x39) << 2;
    730
    731	if ((16 <= memsize1) && (memsize1 <= 64) && (memsize1 == memsize2))
    732		info->screen_size = memsize1 << 20;
    733	else {
    734		dev_err(info->device, "memory size detection failed (%x %x), suppose 16 MB\n", memsize1, memsize2);
    735		info->screen_size = 16 << 20;
    736	}
    737
    738	info->fix.smem_len = info->screen_size;
    739	strcpy(info->fix.id, "VIA VT8623");
    740	info->fix.type = FB_TYPE_PACKED_PIXELS;
    741	info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
    742	info->fix.ypanstep = 0;
    743	info->fix.accel = FB_ACCEL_NONE;
    744	info->pseudo_palette = (void*)par->pseudo_palette;
    745
    746	/* Prepare startup mode */
    747
    748	kernel_param_lock(THIS_MODULE);
    749	rc = fb_find_mode(&(info->var), info, mode_option, NULL, 0, NULL, 8);
    750	kernel_param_unlock(THIS_MODULE);
    751	if (! ((rc == 1) || (rc == 2))) {
    752		rc = -EINVAL;
    753		dev_err(info->device, "mode %s not found\n", mode_option);
    754		goto err_find_mode;
    755	}
    756
    757	rc = fb_alloc_cmap(&info->cmap, 256, 0);
    758	if (rc < 0) {
    759		dev_err(info->device, "cannot allocate colormap\n");
    760		goto err_alloc_cmap;
    761	}
    762
    763	rc = register_framebuffer(info);
    764	if (rc < 0) {
    765		dev_err(info->device, "cannot register framebuffer\n");
    766		goto err_reg_fb;
    767	}
    768
    769	fb_info(info, "%s on %s, %d MB RAM\n",
    770		info->fix.id, pci_name(dev), info->fix.smem_len >> 20);
    771
    772	/* Record a reference to the driver data */
    773	pci_set_drvdata(dev, info);
    774
    775	if (mtrr)
    776		par->wc_cookie = arch_phys_wc_add(info->fix.smem_start,
    777						  info->fix.smem_len);
    778
    779	return 0;
    780
    781	/* Error handling */
    782err_reg_fb:
    783	fb_dealloc_cmap(&info->cmap);
    784err_alloc_cmap:
    785err_find_mode:
    786	pci_iounmap(dev, par->mmio_base);
    787err_iomap_2:
    788	pci_iounmap(dev, info->screen_base);
    789err_iomap_1:
    790	pci_release_regions(dev);
    791err_request_regions:
    792/*	pci_disable_device(dev); */
    793err_enable_device:
    794	framebuffer_release(info);
    795	return rc;
    796}
    797
    798/* PCI remove */
    799
    800static void vt8623_pci_remove(struct pci_dev *dev)
    801{
    802	struct fb_info *info = pci_get_drvdata(dev);
    803
    804	if (info) {
    805		struct vt8623fb_info *par = info->par;
    806
    807		arch_phys_wc_del(par->wc_cookie);
    808		unregister_framebuffer(info);
    809		fb_dealloc_cmap(&info->cmap);
    810
    811		pci_iounmap(dev, info->screen_base);
    812		pci_iounmap(dev, par->mmio_base);
    813		pci_release_regions(dev);
    814/*		pci_disable_device(dev); */
    815
    816		framebuffer_release(info);
    817	}
    818}
    819
    820
    821/* PCI suspend */
    822
    823static int __maybe_unused vt8623_pci_suspend(struct device *dev)
    824{
    825	struct fb_info *info = dev_get_drvdata(dev);
    826	struct vt8623fb_info *par = info->par;
    827
    828	dev_info(info->device, "suspend\n");
    829
    830	console_lock();
    831	mutex_lock(&(par->open_lock));
    832
    833	if (par->ref_count == 0) {
    834		mutex_unlock(&(par->open_lock));
    835		console_unlock();
    836		return 0;
    837	}
    838
    839	fb_set_suspend(info, 1);
    840
    841	mutex_unlock(&(par->open_lock));
    842	console_unlock();
    843
    844	return 0;
    845}
    846
    847
    848/* PCI resume */
    849
    850static int __maybe_unused vt8623_pci_resume(struct device *dev)
    851{
    852	struct fb_info *info = dev_get_drvdata(dev);
    853	struct vt8623fb_info *par = info->par;
    854
    855	dev_info(info->device, "resume\n");
    856
    857	console_lock();
    858	mutex_lock(&(par->open_lock));
    859
    860	if (par->ref_count == 0)
    861		goto fail;
    862
    863	vt8623fb_set_par(info);
    864	fb_set_suspend(info, 0);
    865
    866fail:
    867	mutex_unlock(&(par->open_lock));
    868	console_unlock();
    869
    870	return 0;
    871}
    872
    873static const struct dev_pm_ops vt8623_pci_pm_ops = {
    874#ifdef CONFIG_PM_SLEEP
    875	.suspend	= vt8623_pci_suspend,
    876	.resume		= vt8623_pci_resume,
    877	.freeze		= NULL,
    878	.thaw		= vt8623_pci_resume,
    879	.poweroff	= vt8623_pci_suspend,
    880	.restore	= vt8623_pci_resume,
    881#endif /* CONFIG_PM_SLEEP */
    882};
    883
    884/* List of boards that we are trying to support */
    885
    886static const struct pci_device_id vt8623_devices[] = {
    887	{PCI_DEVICE(PCI_VENDOR_ID_VIA, 0x3122)},
    888	{0, 0, 0, 0, 0, 0, 0}
    889};
    890
    891MODULE_DEVICE_TABLE(pci, vt8623_devices);
    892
    893static struct pci_driver vt8623fb_pci_driver = {
    894	.name		= "vt8623fb",
    895	.id_table	= vt8623_devices,
    896	.probe		= vt8623_pci_probe,
    897	.remove		= vt8623_pci_remove,
    898	.driver.pm	= &vt8623_pci_pm_ops,
    899};
    900
    901/* Cleanup */
    902
    903static void __exit vt8623fb_cleanup(void)
    904{
    905	pr_debug("vt8623fb: cleaning up\n");
    906	pci_unregister_driver(&vt8623fb_pci_driver);
    907}
    908
    909/* Driver Initialisation */
    910
    911static int __init vt8623fb_init(void)
    912{
    913
    914#ifndef MODULE
    915	char *option = NULL;
    916
    917	if (fb_get_options("vt8623fb", &option))
    918		return -ENODEV;
    919
    920	if (option && *option)
    921		mode_option = option;
    922#endif
    923
    924	pr_debug("vt8623fb: initializing\n");
    925	return pci_register_driver(&vt8623fb_pci_driver);
    926}
    927
    928/* ------------------------------------------------------------------------- */
    929
    930/* Modularization */
    931
    932module_init(vt8623fb_init);
    933module_exit(vt8623fb_cleanup);