Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

arkfb: new framebuffer driver for ARK Logic cards

This patch adds fbdev driver for graphics cards with ARK Logic 2000PV graphics
chip with ICS 5342 ramdac.

[adaplas@gmail.com: build fixes]
Signed-off-by: Ondrej Zajicek <santiago@crfreenet.org>
Signed-off-by: Antonino Daplas <adaplas@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Ondrej Zajicek and committed by
Linus Torvalds
681e1473 558b7bd8

+1282
+68
Documentation/fb/arkfb.txt
··· 1 + 2 + arkfb - fbdev driver for ARK Logic chips 3 + ======================================== 4 + 5 + 6 + Supported Hardware 7 + ================== 8 + 9 + ARK 2000PV chip 10 + ICS 5342 ramdac 11 + 12 + - only BIOS initialized VGA devices supported 13 + - probably not working on big endian 14 + 15 + 16 + Supported Features 17 + ================== 18 + 19 + * 4 bpp pseudocolor modes (with 18bit palette, two variants) 20 + * 8 bpp pseudocolor mode (with 18bit palette) 21 + * 16 bpp truecolor modes (RGB 555 and RGB 565) 22 + * 24 bpp truecolor mode (RGB 888) 23 + * 32 bpp truecolor mode (RGB 888) 24 + * text mode (activated by bpp = 0) 25 + * doublescan mode variant (not available in text mode) 26 + * panning in both directions 27 + * suspend/resume support 28 + 29 + Text mode is supported even in higher resolutions, but there is limitation to 30 + lower pixclocks (i got maximum about 70 MHz, it is dependent on specific 31 + hardware). This limitation is not enforced by driver. Text mode supports 8bit 32 + wide fonts only (hardware limitation) and 16bit tall fonts (driver 33 + limitation). Unfortunately character attributes (like color) in text mode are 34 + broken for unknown reason, so its usefulness is limited. 35 + 36 + There are two 4 bpp modes. First mode (selected if nonstd == 0) is mode with 37 + packed pixels, high nibble first. Second mode (selected if nonstd == 1) is mode 38 + with interleaved planes (1 byte interleave), MSB first. Both modes support 39 + 8bit wide fonts only (driver limitation). 40 + 41 + Suspend/resume works on systems that initialize video card during resume and 42 + if device is active (for example used by fbcon). 43 + 44 + 45 + Missing Features 46 + ================ 47 + (alias TODO list) 48 + 49 + * secondary (not initialized by BIOS) device support 50 + * big endian support 51 + * DPMS support 52 + * MMIO support 53 + * interlaced mode variant 54 + * support for fontwidths != 8 in 4 bpp modes 55 + * support for fontheight != 16 in text mode 56 + * hardware cursor 57 + * vsync synchronization 58 + * feature connector support 59 + * acceleration support (8514-like 2D) 60 + 61 + 62 + Known bugs 63 + ========== 64 + 65 + * character attributes (and cursor) in text mode are broken 66 + 67 + -- 68 + Ondrej Zajicek <santiago@crfreenet.org>
+14
drivers/video/Kconfig
··· 1415 1415 This will compile the Trident frame buffer device with 1416 1416 acceleration functions. 1417 1417 1418 + config FB_ARK 1419 + tristate "ARK 2000PV support" 1420 + depends on FB && PCI 1421 + select FB_CFB_FILLRECT 1422 + select FB_CFB_COPYAREA 1423 + select FB_CFB_IMAGEBLIT 1424 + select FB_TILEBLITTING 1425 + select FB_SVGALIB 1426 + select VGASTATE 1427 + select FONT_8x16 if FRAMEBUFFER_CONSOLE 1428 + ---help--- 1429 + Driver for PCI graphics boards with ARK 2000PV chip 1430 + and ICS 5342 RAMDAC. 1431 + 1418 1432 config FB_PM3 1419 1433 tristate "Permedia3 support" 1420 1434 depends on FB && PCI && BROKEN
+1
drivers/video/Makefile
··· 59 59 obj-$(CONFIG_FB_TRIDENT) += tridentfb.o 60 60 obj-$(CONFIG_FB_LE80578) += vermilion/ 61 61 obj-$(CONFIG_FB_S3) += s3fb.o 62 + obj-$(CONFIG_FB_ARK) += arkfb.o 62 63 obj-$(CONFIG_FB_STI) += stifb.o 63 64 obj-$(CONFIG_FB_FFB) += ffb.o sbuslib.o 64 65 obj-$(CONFIG_FB_CG6) += cg6.o sbuslib.o
+1199
drivers/video/arkfb.c
··· 1 + /* 2 + * linux/drivers/video/arkfb.c -- Frame buffer device driver for ARK 2000PV 3 + * with ICS 5342 dac (it is easy to add support for different dacs). 4 + * 5 + * Copyright (c) 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 12 + */ 13 + 14 + #include <linux/version.h> 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/slab.h> 22 + #include <linux/delay.h> 23 + #include <linux/fb.h> 24 + #include <linux/svga.h> 25 + #include <linux/init.h> 26 + #include <linux/pci.h> 27 + #include <linux/console.h> /* Why should fb driver call console functions? because acquire_console_sem() */ 28 + #include <video/vga.h> 29 + 30 + #ifdef CONFIG_MTRR 31 + #include <asm/mtrr.h> 32 + #endif 33 + 34 + struct arkfb_info { 35 + int mclk_freq; 36 + int mtrr_reg; 37 + 38 + struct dac_info *dac; 39 + struct vgastate state; 40 + struct mutex open_lock; 41 + unsigned int ref_count; 42 + u32 pseudo_palette[16]; 43 + }; 44 + 45 + 46 + /* ------------------------------------------------------------------------- */ 47 + 48 + 49 + static const struct svga_fb_format arkfb_formats[] = { 50 + { 0, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0, 51 + FB_TYPE_TEXT, FB_AUX_TEXT_SVGA_STEP4, FB_VISUAL_PSEUDOCOLOR, 8, 8}, 52 + { 4, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0, 53 + FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_PSEUDOCOLOR, 8, 16}, 54 + { 4, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 1, 55 + FB_TYPE_INTERLEAVED_PLANES, 1, FB_VISUAL_PSEUDOCOLOR, 8, 16}, 56 + { 8, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0, 57 + FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_PSEUDOCOLOR, 8, 8}, 58 + {16, {10, 5, 0}, {5, 5, 0}, {0, 5, 0}, {0, 0, 0}, 0, 59 + FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 4, 4}, 60 + {16, {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0}, 0, 61 + FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 4, 4}, 62 + {24, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0, 63 + FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 8, 8}, 64 + {32, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0, 65 + FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 2, 2}, 66 + SVGA_FORMAT_END 67 + }; 68 + 69 + 70 + /* CRT timing register sets */ 71 + 72 + static const struct vga_regset ark_h_total_regs[] = {{0x00, 0, 7}, {0x41, 7, 7}, VGA_REGSET_END}; 73 + static const struct vga_regset ark_h_display_regs[] = {{0x01, 0, 7}, {0x41, 6, 6}, VGA_REGSET_END}; 74 + static const struct vga_regset ark_h_blank_start_regs[] = {{0x02, 0, 7}, {0x41, 5, 5}, VGA_REGSET_END}; 75 + static const struct vga_regset ark_h_blank_end_regs[] = {{0x03, 0, 4}, {0x05, 7, 7 }, VGA_REGSET_END}; 76 + static const struct vga_regset ark_h_sync_start_regs[] = {{0x04, 0, 7}, {0x41, 4, 4}, VGA_REGSET_END}; 77 + static const struct vga_regset ark_h_sync_end_regs[] = {{0x05, 0, 4}, VGA_REGSET_END}; 78 + 79 + static const struct vga_regset ark_v_total_regs[] = {{0x06, 0, 7}, {0x07, 0, 0}, {0x07, 5, 5}, {0x40, 7, 7}, VGA_REGSET_END}; 80 + static const struct vga_regset ark_v_display_regs[] = {{0x12, 0, 7}, {0x07, 1, 1}, {0x07, 6, 6}, {0x40, 6, 6}, VGA_REGSET_END}; 81 + static const struct vga_regset ark_v_blank_start_regs[] = {{0x15, 0, 7}, {0x07, 3, 3}, {0x09, 5, 5}, {0x40, 5, 5}, VGA_REGSET_END}; 82 + // const struct vga_regset ark_v_blank_end_regs[] = {{0x16, 0, 6}, VGA_REGSET_END}; 83 + static const struct vga_regset ark_v_blank_end_regs[] = {{0x16, 0, 7}, VGA_REGSET_END}; 84 + static const struct vga_regset ark_v_sync_start_regs[] = {{0x10, 0, 7}, {0x07, 2, 2}, {0x07, 7, 7}, {0x40, 4, 4}, VGA_REGSET_END}; 85 + static const struct vga_regset ark_v_sync_end_regs[] = {{0x11, 0, 3}, VGA_REGSET_END}; 86 + 87 + static const struct vga_regset ark_line_compare_regs[] = {{0x18, 0, 7}, {0x07, 4, 4}, {0x09, 6, 6}, VGA_REGSET_END}; 88 + static const struct vga_regset ark_start_address_regs[] = {{0x0d, 0, 7}, {0x0c, 0, 7}, {0x40, 0, 2}, VGA_REGSET_END}; 89 + static const struct vga_regset ark_offset_regs[] = {{0x13, 0, 7}, {0x41, 3, 3}, VGA_REGSET_END}; 90 + 91 + static const struct svga_timing_regs ark_timing_regs = { 92 + ark_h_total_regs, ark_h_display_regs, ark_h_blank_start_regs, 93 + ark_h_blank_end_regs, ark_h_sync_start_regs, ark_h_sync_end_regs, 94 + ark_v_total_regs, ark_v_display_regs, ark_v_blank_start_regs, 95 + ark_v_blank_end_regs, ark_v_sync_start_regs, ark_v_sync_end_regs, 96 + }; 97 + 98 + 99 + /* ------------------------------------------------------------------------- */ 100 + 101 + 102 + /* Module parameters */ 103 + 104 + static char *mode = "640x480-8@60"; 105 + 106 + #ifdef CONFIG_MTRR 107 + static int mtrr = 1; 108 + #endif 109 + 110 + MODULE_AUTHOR("(c) 2007 Ondrej Zajicek <santiago@crfreenet.org>"); 111 + MODULE_LICENSE("GPL"); 112 + MODULE_DESCRIPTION("fbdev driver for ARK 2000PV"); 113 + 114 + module_param(mode, charp, 0444); 115 + MODULE_PARM_DESC(mode, "Default video mode ('640x480-8@60', etc)"); 116 + 117 + #ifdef CONFIG_MTRR 118 + module_param(mtrr, int, 0444); 119 + MODULE_PARM_DESC(mtrr, "Enable write-combining with MTRR (1=enable, 0=disable, default=1)"); 120 + #endif 121 + 122 + static int threshold = 4; 123 + 124 + module_param(threshold, int, 0644); 125 + MODULE_PARM_DESC(threshold, "FIFO threshold"); 126 + 127 + 128 + /* ------------------------------------------------------------------------- */ 129 + 130 + 131 + static void arkfb_settile(struct fb_info *info, struct fb_tilemap *map) 132 + { 133 + const u8 *font = map->data; 134 + u8 __iomem *fb = (u8 __iomem *)info->screen_base; 135 + int i, c; 136 + 137 + if ((map->width != 8) || (map->height != 16) || 138 + (map->depth != 1) || (map->length != 256)) { 139 + printk(KERN_ERR "fb%d: unsupported font parameters: width %d, " 140 + "height %d, depth %d, length %d\n", info->node, 141 + map->width, map->height, map->depth, map->length); 142 + return; 143 + } 144 + 145 + fb += 2; 146 + for (c = 0; c < map->length; c++) { 147 + for (i = 0; i < map->height; i++) { 148 + fb_writeb(font[i], &fb[i * 4]); 149 + fb_writeb(font[i], &fb[i * 4 + (128 * 8)]); 150 + } 151 + fb += 128; 152 + 153 + if ((c % 8) == 7) 154 + fb += 128*8; 155 + 156 + font += map->height; 157 + } 158 + } 159 + 160 + static struct fb_tile_ops arkfb_tile_ops = { 161 + .fb_settile = arkfb_settile, 162 + .fb_tilecopy = svga_tilecopy, 163 + .fb_tilefill = svga_tilefill, 164 + .fb_tileblit = svga_tileblit, 165 + .fb_tilecursor = svga_tilecursor, 166 + .fb_get_tilemax = svga_get_tilemax, 167 + }; 168 + 169 + 170 + /* ------------------------------------------------------------------------- */ 171 + 172 + 173 + /* image data is MSB-first, fb structure is MSB-first too */ 174 + static inline u32 expand_color(u32 c) 175 + { 176 + return ((c & 1) | ((c & 2) << 7) | ((c & 4) << 14) | ((c & 8) << 21)) * 0xFF; 177 + } 178 + 179 + /* arkfb_iplan_imageblit silently assumes that almost everything is 8-pixel aligned */ 180 + static void arkfb_iplan_imageblit(struct fb_info *info, const struct fb_image *image) 181 + { 182 + u32 fg = expand_color(image->fg_color); 183 + u32 bg = expand_color(image->bg_color); 184 + const u8 *src1, *src; 185 + u8 __iomem *dst1; 186 + u32 __iomem *dst; 187 + u32 val; 188 + int x, y; 189 + 190 + src1 = image->data; 191 + dst1 = info->screen_base + (image->dy * info->fix.line_length) 192 + + ((image->dx / 8) * 4); 193 + 194 + for (y = 0; y < image->height; y++) { 195 + src = src1; 196 + dst = (u32 __iomem *) dst1; 197 + for (x = 0; x < image->width; x += 8) { 198 + val = *(src++) * 0x01010101; 199 + val = (val & fg) | (~val & bg); 200 + fb_writel(val, dst++); 201 + } 202 + src1 += image->width / 8; 203 + dst1 += info->fix.line_length; 204 + } 205 + 206 + } 207 + 208 + /* arkfb_iplan_fillrect silently assumes that almost everything is 8-pixel aligned */ 209 + static void arkfb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect) 210 + { 211 + u32 fg = expand_color(rect->color); 212 + u8 __iomem *dst1; 213 + u32 __iomem *dst; 214 + int x, y; 215 + 216 + dst1 = info->screen_base + (rect->dy * info->fix.line_length) 217 + + ((rect->dx / 8) * 4); 218 + 219 + for (y = 0; y < rect->height; y++) { 220 + dst = (u32 __iomem *) dst1; 221 + for (x = 0; x < rect->width; x += 8) { 222 + fb_writel(fg, dst++); 223 + } 224 + dst1 += info->fix.line_length; 225 + } 226 + 227 + } 228 + 229 + 230 + /* image data is MSB-first, fb structure is high-nibble-in-low-byte-first */ 231 + static inline u32 expand_pixel(u32 c) 232 + { 233 + return (((c & 1) << 24) | ((c & 2) << 27) | ((c & 4) << 14) | ((c & 8) << 17) | 234 + ((c & 16) << 4) | ((c & 32) << 7) | ((c & 64) >> 6) | ((c & 128) >> 3)) * 0xF; 235 + } 236 + 237 + /* arkfb_cfb4_imageblit silently assumes that almost everything is 8-pixel aligned */ 238 + static void arkfb_cfb4_imageblit(struct fb_info *info, const struct fb_image *image) 239 + { 240 + u32 fg = image->fg_color * 0x11111111; 241 + u32 bg = image->bg_color * 0x11111111; 242 + const u8 *src1, *src; 243 + u8 __iomem *dst1; 244 + u32 __iomem *dst; 245 + u32 val; 246 + int x, y; 247 + 248 + src1 = image->data; 249 + dst1 = info->screen_base + (image->dy * info->fix.line_length) 250 + + ((image->dx / 8) * 4); 251 + 252 + for (y = 0; y < image->height; y++) { 253 + src = src1; 254 + dst = (u32 __iomem *) dst1; 255 + for (x = 0; x < image->width; x += 8) { 256 + val = expand_pixel(*(src++)); 257 + val = (val & fg) | (~val & bg); 258 + fb_writel(val, dst++); 259 + } 260 + src1 += image->width / 8; 261 + dst1 += info->fix.line_length; 262 + } 263 + 264 + } 265 + 266 + static void arkfb_imageblit(struct fb_info *info, const struct fb_image *image) 267 + { 268 + if ((info->var.bits_per_pixel == 4) && (image->depth == 1) 269 + && ((image->width % 8) == 0) && ((image->dx % 8) == 0)) { 270 + if (info->fix.type == FB_TYPE_INTERLEAVED_PLANES) 271 + arkfb_iplan_imageblit(info, image); 272 + else 273 + arkfb_cfb4_imageblit(info, image); 274 + } else 275 + cfb_imageblit(info, image); 276 + } 277 + 278 + static void arkfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) 279 + { 280 + if ((info->var.bits_per_pixel == 4) 281 + && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0) 282 + && (info->fix.type == FB_TYPE_INTERLEAVED_PLANES)) 283 + arkfb_iplan_fillrect(info, rect); 284 + else 285 + cfb_fillrect(info, rect); 286 + } 287 + 288 + 289 + /* ------------------------------------------------------------------------- */ 290 + 291 + 292 + enum 293 + { 294 + DAC_PSEUDO8_8, 295 + DAC_RGB1555_8, 296 + DAC_RGB0565_8, 297 + DAC_RGB0888_8, 298 + DAC_RGB8888_8, 299 + DAC_PSEUDO8_16, 300 + DAC_RGB1555_16, 301 + DAC_RGB0565_16, 302 + DAC_RGB0888_16, 303 + DAC_RGB8888_16, 304 + DAC_MAX 305 + }; 306 + 307 + struct dac_ops { 308 + int (*dac_get_mode)(struct dac_info *info); 309 + int (*dac_set_mode)(struct dac_info *info, int mode); 310 + int (*dac_get_freq)(struct dac_info *info, int channel); 311 + int (*dac_set_freq)(struct dac_info *info, int channel, u32 freq); 312 + void (*dac_release)(struct dac_info *info); 313 + }; 314 + 315 + typedef void (*dac_read_regs_t)(void *data, u8 *code, int count); 316 + typedef void (*dac_write_regs_t)(void *data, u8 *code, int count); 317 + 318 + struct dac_info 319 + { 320 + struct dac_ops *dacops; 321 + dac_read_regs_t dac_read_regs; 322 + dac_write_regs_t dac_write_regs; 323 + void *data; 324 + }; 325 + 326 + 327 + static inline u8 dac_read_reg(struct dac_info *info, u8 reg) 328 + { 329 + u8 code[2] = {reg, 0}; 330 + info->dac_read_regs(info->data, code, 1); 331 + return code[1]; 332 + } 333 + 334 + static inline void dac_read_regs(struct dac_info *info, u8 *code, int count) 335 + { 336 + info->dac_read_regs(info->data, code, count); 337 + } 338 + 339 + static inline void dac_write_reg(struct dac_info *info, u8 reg, u8 val) 340 + { 341 + u8 code[2] = {reg, val}; 342 + info->dac_write_regs(info->data, code, 1); 343 + } 344 + 345 + static inline void dac_write_regs(struct dac_info *info, u8 *code, int count) 346 + { 347 + info->dac_write_regs(info->data, code, count); 348 + } 349 + 350 + static inline int dac_set_mode(struct dac_info *info, int mode) 351 + { 352 + return info->dacops->dac_set_mode(info, mode); 353 + } 354 + 355 + static inline int dac_set_freq(struct dac_info *info, int channel, u32 freq) 356 + { 357 + return info->dacops->dac_set_freq(info, channel, freq); 358 + } 359 + 360 + static inline void dac_release(struct dac_info *info) 361 + { 362 + info->dacops->dac_release(info); 363 + } 364 + 365 + 366 + /* ------------------------------------------------------------------------- */ 367 + 368 + 369 + /* ICS5342 DAC */ 370 + 371 + struct ics5342_info 372 + { 373 + struct dac_info dac; 374 + u8 mode; 375 + }; 376 + 377 + #define DAC_PAR(info) ((struct ics5342_info *) info) 378 + 379 + /* LSB is set to distinguish unused slots */ 380 + static const u8 ics5342_mode_table[DAC_MAX] = { 381 + [DAC_PSEUDO8_8] = 0x01, [DAC_RGB1555_8] = 0x21, [DAC_RGB0565_8] = 0x61, 382 + [DAC_RGB0888_8] = 0x41, [DAC_PSEUDO8_16] = 0x11, [DAC_RGB1555_16] = 0x31, 383 + [DAC_RGB0565_16] = 0x51, [DAC_RGB0888_16] = 0x91, [DAC_RGB8888_16] = 0x71 384 + }; 385 + 386 + static int ics5342_set_mode(struct dac_info *info, int mode) 387 + { 388 + u8 code; 389 + 390 + if (mode >= DAC_MAX) 391 + return -EINVAL; 392 + 393 + code = ics5342_mode_table[mode]; 394 + 395 + if (! code) 396 + return -EINVAL; 397 + 398 + dac_write_reg(info, 6, code & 0xF0); 399 + DAC_PAR(info)->mode = mode; 400 + 401 + return 0; 402 + } 403 + 404 + static const struct svga_pll ics5342_pll = {3, 129, 3, 33, 0, 3, 405 + 60000, 250000, 14318}; 406 + 407 + /* pd4 - allow only posdivider 4 (r=2) */ 408 + static const struct svga_pll ics5342_pll_pd4 = {3, 129, 3, 33, 2, 2, 409 + 60000, 335000, 14318}; 410 + 411 + /* 270 MHz should be upper bound for VCO clock according to specs, 412 + but that is too restrictive in pd4 case */ 413 + 414 + static int ics5342_set_freq(struct dac_info *info, int channel, u32 freq) 415 + { 416 + u16 m, n, r; 417 + 418 + /* only postdivider 4 (r=2) is valid in mode DAC_PSEUDO8_16 */ 419 + int rv = svga_compute_pll((DAC_PAR(info)->mode == DAC_PSEUDO8_16) 420 + ? &ics5342_pll_pd4 : &ics5342_pll, 421 + freq, &m, &n, &r, 0); 422 + 423 + if (rv < 0) { 424 + return -EINVAL; 425 + } else { 426 + u8 code[6] = {4, 3, 5, m-2, 5, (n-2) | (r << 5)}; 427 + dac_write_regs(info, code, 3); 428 + return 0; 429 + } 430 + } 431 + 432 + static void ics5342_release(struct dac_info *info) 433 + { 434 + ics5342_set_mode(info, DAC_PSEUDO8_8); 435 + kfree(info); 436 + } 437 + 438 + static struct dac_ops ics5342_ops = { 439 + .dac_set_mode = ics5342_set_mode, 440 + .dac_set_freq = ics5342_set_freq, 441 + .dac_release = ics5342_release 442 + }; 443 + 444 + 445 + static struct dac_info * ics5342_init(dac_read_regs_t drr, dac_write_regs_t dwr, void *data) 446 + { 447 + struct dac_info *info = kzalloc(sizeof(struct ics5342_info), GFP_KERNEL); 448 + 449 + if (! info) 450 + return NULL; 451 + 452 + info->dacops = &ics5342_ops; 453 + info->dac_read_regs = drr; 454 + info->dac_write_regs = dwr; 455 + info->data = data; 456 + DAC_PAR(info)->mode = DAC_PSEUDO8_8; /* estimation */ 457 + return info; 458 + } 459 + 460 + 461 + /* ------------------------------------------------------------------------- */ 462 + 463 + 464 + static unsigned short dac_regs[4] = {0x3c8, 0x3c9, 0x3c6, 0x3c7}; 465 + 466 + static void ark_dac_read_regs(void *data, u8 *code, int count) 467 + { 468 + u8 regval = vga_rseq(NULL, 0x1C); 469 + 470 + while (count != 0) 471 + { 472 + vga_wseq(NULL, 0x1C, regval | (code[0] & 4) ? 0x80 : 0); 473 + code[1] = vga_r(NULL, dac_regs[code[0] & 3]); 474 + count--; 475 + code += 2; 476 + } 477 + 478 + vga_wseq(NULL, 0x1C, regval); 479 + } 480 + 481 + static void ark_dac_write_regs(void *data, u8 *code, int count) 482 + { 483 + u8 regval = vga_rseq(NULL, 0x1C); 484 + 485 + while (count != 0) 486 + { 487 + vga_wseq(NULL, 0x1C, regval | (code[0] & 4) ? 0x80 : 0); 488 + vga_w(NULL, dac_regs[code[0] & 3], code[1]); 489 + count--; 490 + code += 2; 491 + } 492 + 493 + vga_wseq(NULL, 0x1C, regval); 494 + } 495 + 496 + 497 + static void ark_set_pixclock(struct fb_info *info, u32 pixclock) 498 + { 499 + struct arkfb_info *par = info->par; 500 + u8 regval; 501 + 502 + int rv = dac_set_freq(par->dac, 0, 1000000000 / pixclock); 503 + if (rv < 0) { 504 + printk(KERN_ERR "fb%d: cannot set requested pixclock, keeping old value\n", info->node); 505 + return; 506 + } 507 + 508 + /* Set VGA misc register */ 509 + regval = vga_r(NULL, VGA_MIS_R); 510 + vga_w(NULL, VGA_MIS_W, regval | VGA_MIS_ENB_PLL_LOAD); 511 + } 512 + 513 + 514 + /* Open framebuffer */ 515 + 516 + static int arkfb_open(struct fb_info *info, int user) 517 + { 518 + struct arkfb_info *par = info->par; 519 + 520 + mutex_lock(&(par->open_lock)); 521 + if (par->ref_count == 0) { 522 + memset(&(par->state), 0, sizeof(struct vgastate)); 523 + par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS | VGA_SAVE_CMAP; 524 + par->state.num_crtc = 0x60; 525 + par->state.num_seq = 0x30; 526 + save_vga(&(par->state)); 527 + } 528 + 529 + par->ref_count++; 530 + mutex_unlock(&(par->open_lock)); 531 + 532 + return 0; 533 + } 534 + 535 + /* Close framebuffer */ 536 + 537 + static int arkfb_release(struct fb_info *info, int user) 538 + { 539 + struct arkfb_info *par = info->par; 540 + 541 + mutex_lock(&(par->open_lock)); 542 + if (par->ref_count == 0) { 543 + mutex_unlock(&(par->open_lock)); 544 + return -EINVAL; 545 + } 546 + 547 + if (par->ref_count == 1) { 548 + restore_vga(&(par->state)); 549 + dac_set_mode(par->dac, DAC_PSEUDO8_8); 550 + } 551 + 552 + par->ref_count--; 553 + mutex_unlock(&(par->open_lock)); 554 + 555 + return 0; 556 + } 557 + 558 + /* Validate passed in var */ 559 + 560 + static int arkfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) 561 + { 562 + int rv, mem, step; 563 + 564 + /* Find appropriate format */ 565 + rv = svga_match_format (arkfb_formats, var, NULL); 566 + if (rv < 0) 567 + { 568 + printk(KERN_ERR "fb%d: unsupported mode requested\n", info->node); 569 + return rv; 570 + } 571 + 572 + /* Do not allow to have real resoulution larger than virtual */ 573 + if (var->xres > var->xres_virtual) 574 + var->xres_virtual = var->xres; 575 + 576 + if (var->yres > var->yres_virtual) 577 + var->yres_virtual = var->yres; 578 + 579 + /* Round up xres_virtual to have proper alignment of lines */ 580 + step = arkfb_formats[rv].xresstep - 1; 581 + var->xres_virtual = (var->xres_virtual+step) & ~step; 582 + 583 + 584 + /* Check whether have enough memory */ 585 + mem = ((var->bits_per_pixel * var->xres_virtual) >> 3) * var->yres_virtual; 586 + if (mem > info->screen_size) 587 + { 588 + 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)); 589 + return -EINVAL; 590 + } 591 + 592 + rv = svga_check_timings (&ark_timing_regs, var, info->node); 593 + if (rv < 0) 594 + { 595 + printk(KERN_ERR "fb%d: invalid timings requested\n", info->node); 596 + return rv; 597 + } 598 + 599 + /* Interlaced mode is broken */ 600 + if (var->vmode & FB_VMODE_INTERLACED) 601 + return -EINVAL; 602 + 603 + return 0; 604 + } 605 + 606 + /* Set video mode from par */ 607 + 608 + static int arkfb_set_par(struct fb_info *info) 609 + { 610 + struct arkfb_info *par = info->par; 611 + u32 value, mode, hmul, hdiv, offset_value, screen_size; 612 + u32 bpp = info->var.bits_per_pixel; 613 + u8 regval; 614 + 615 + if (bpp != 0) { 616 + info->fix.ypanstep = 1; 617 + info->fix.line_length = (info->var.xres_virtual * bpp) / 8; 618 + 619 + info->flags &= ~FBINFO_MISC_TILEBLITTING; 620 + info->tileops = NULL; 621 + 622 + /* in 4bpp supports 8p wide tiles only, any tiles otherwise */ 623 + info->pixmap.blit_x = (bpp == 4) ? (1 << (8 - 1)) : (~(u32)0); 624 + info->pixmap.blit_y = ~(u32)0; 625 + 626 + offset_value = (info->var.xres_virtual * bpp) / 64; 627 + screen_size = info->var.yres_virtual * info->fix.line_length; 628 + } else { 629 + info->fix.ypanstep = 16; 630 + info->fix.line_length = 0; 631 + 632 + info->flags |= FBINFO_MISC_TILEBLITTING; 633 + info->tileops = &arkfb_tile_ops; 634 + 635 + /* supports 8x16 tiles only */ 636 + info->pixmap.blit_x = 1 << (8 - 1); 637 + info->pixmap.blit_y = 1 << (16 - 1); 638 + 639 + offset_value = info->var.xres_virtual / 16; 640 + screen_size = (info->var.xres_virtual * info->var.yres_virtual) / 64; 641 + } 642 + 643 + info->var.xoffset = 0; 644 + info->var.yoffset = 0; 645 + info->var.activate = FB_ACTIVATE_NOW; 646 + 647 + /* Unlock registers */ 648 + svga_wcrt_mask(0x11, 0x00, 0x80); 649 + 650 + /* Blank screen and turn off sync */ 651 + svga_wseq_mask(0x01, 0x20, 0x20); 652 + svga_wcrt_mask(0x17, 0x00, 0x80); 653 + 654 + /* Set default values */ 655 + svga_set_default_gfx_regs(); 656 + svga_set_default_atc_regs(); 657 + svga_set_default_seq_regs(); 658 + svga_set_default_crt_regs(); 659 + svga_wcrt_multi(ark_line_compare_regs, 0xFFFFFFFF); 660 + svga_wcrt_multi(ark_start_address_regs, 0); 661 + 662 + /* ARK specific initialization */ 663 + svga_wseq_mask(0x10, 0x1F, 0x1F); /* enable linear framebuffer and full memory access */ 664 + svga_wseq_mask(0x12, 0x03, 0x03); /* 4 MB linear framebuffer size */ 665 + 666 + vga_wseq(NULL, 0x13, info->fix.smem_start >> 16); 667 + vga_wseq(NULL, 0x14, info->fix.smem_start >> 24); 668 + vga_wseq(NULL, 0x15, 0); 669 + vga_wseq(NULL, 0x16, 0); 670 + 671 + /* Set the FIFO threshold register */ 672 + /* It is fascinating way to store 5-bit value in 8-bit register */ 673 + regval = 0x10 | ((threshold & 0x0E) >> 1) | (threshold & 0x01) << 7 | (threshold & 0x10) << 1; 674 + vga_wseq(NULL, 0x18, regval); 675 + 676 + /* Set the offset register */ 677 + pr_debug("fb%d: offset register : %d\n", info->node, offset_value); 678 + svga_wcrt_multi(ark_offset_regs, offset_value); 679 + 680 + /* fix for hi-res textmode */ 681 + svga_wcrt_mask(0x40, 0x08, 0x08); 682 + 683 + if (info->var.vmode & FB_VMODE_DOUBLE) 684 + svga_wcrt_mask(0x09, 0x80, 0x80); 685 + else 686 + svga_wcrt_mask(0x09, 0x00, 0x80); 687 + 688 + if (info->var.vmode & FB_VMODE_INTERLACED) 689 + svga_wcrt_mask(0x44, 0x04, 0x04); 690 + else 691 + svga_wcrt_mask(0x44, 0x00, 0x04); 692 + 693 + hmul = 1; 694 + hdiv = 1; 695 + mode = svga_match_format(arkfb_formats, &(info->var), &(info->fix)); 696 + 697 + /* Set mode-specific register values */ 698 + switch (mode) { 699 + case 0: 700 + pr_debug("fb%d: text mode\n", info->node); 701 + svga_set_textmode_vga_regs(); 702 + 703 + vga_wseq(NULL, 0x11, 0x10); /* basic VGA mode */ 704 + svga_wcrt_mask(0x46, 0x00, 0x04); /* 8bit pixel path */ 705 + dac_set_mode(par->dac, DAC_PSEUDO8_8); 706 + 707 + break; 708 + case 1: 709 + pr_debug("fb%d: 4 bit pseudocolor\n", info->node); 710 + vga_wgfx(NULL, VGA_GFX_MODE, 0x40); 711 + 712 + vga_wseq(NULL, 0x11, 0x10); /* basic VGA mode */ 713 + svga_wcrt_mask(0x46, 0x00, 0x04); /* 8bit pixel path */ 714 + dac_set_mode(par->dac, DAC_PSEUDO8_8); 715 + break; 716 + case 2: 717 + pr_debug("fb%d: 4 bit pseudocolor, planar\n", info->node); 718 + 719 + vga_wseq(NULL, 0x11, 0x10); /* basic VGA mode */ 720 + svga_wcrt_mask(0x46, 0x00, 0x04); /* 8bit pixel path */ 721 + dac_set_mode(par->dac, DAC_PSEUDO8_8); 722 + break; 723 + case 3: 724 + pr_debug("fb%d: 8 bit pseudocolor\n", info->node); 725 + 726 + vga_wseq(NULL, 0x11, 0x16); /* 8bpp accel mode */ 727 + 728 + if (info->var.pixclock > 20000) { 729 + pr_debug("fb%d: not using multiplex\n", info->node); 730 + svga_wcrt_mask(0x46, 0x00, 0x04); /* 8bit pixel path */ 731 + dac_set_mode(par->dac, DAC_PSEUDO8_8); 732 + } else { 733 + pr_debug("fb%d: using multiplex\n", info->node); 734 + svga_wcrt_mask(0x46, 0x04, 0x04); /* 16bit pixel path */ 735 + dac_set_mode(par->dac, DAC_PSEUDO8_16); 736 + hdiv = 2; 737 + } 738 + break; 739 + case 4: 740 + pr_debug("fb%d: 5/5/5 truecolor\n", info->node); 741 + 742 + vga_wseq(NULL, 0x11, 0x1A); /* 16bpp accel mode */ 743 + svga_wcrt_mask(0x46, 0x04, 0x04); /* 16bit pixel path */ 744 + dac_set_mode(par->dac, DAC_RGB1555_16); 745 + break; 746 + case 5: 747 + pr_debug("fb%d: 5/6/5 truecolor\n", info->node); 748 + 749 + vga_wseq(NULL, 0x11, 0x1A); /* 16bpp accel mode */ 750 + svga_wcrt_mask(0x46, 0x04, 0x04); /* 16bit pixel path */ 751 + dac_set_mode(par->dac, DAC_RGB0565_16); 752 + break; 753 + case 6: 754 + pr_debug("fb%d: 8/8/8 truecolor\n", info->node); 755 + 756 + vga_wseq(NULL, 0x11, 0x16); /* 8bpp accel mode ??? */ 757 + svga_wcrt_mask(0x46, 0x04, 0x04); /* 16bit pixel path */ 758 + dac_set_mode(par->dac, DAC_RGB0888_16); 759 + hmul = 3; 760 + hdiv = 2; 761 + break; 762 + case 7: 763 + pr_debug("fb%d: 8/8/8/8 truecolor\n", info->node); 764 + 765 + vga_wseq(NULL, 0x11, 0x1E); /* 32bpp accel mode */ 766 + svga_wcrt_mask(0x46, 0x04, 0x04); /* 16bit pixel path */ 767 + dac_set_mode(par->dac, DAC_RGB8888_16); 768 + hmul = 2; 769 + break; 770 + default: 771 + printk(KERN_ERR "fb%d: unsupported mode - bug\n", info->node); 772 + return -EINVAL; 773 + } 774 + 775 + ark_set_pixclock(info, (hdiv * info->var.pixclock) / hmul); 776 + svga_set_timings(&ark_timing_regs, &(info->var), hmul, hdiv, 777 + (info->var.vmode & FB_VMODE_DOUBLE) ? 2 : 1, 778 + (info->var.vmode & FB_VMODE_INTERLACED) ? 2 : 1, 779 + hmul, info->node); 780 + 781 + /* Set interlaced mode start/end register */ 782 + value = info->var.xres + info->var.left_margin + info->var.right_margin + info->var.hsync_len; 783 + value = ((value * hmul / hdiv) / 8) - 5; 784 + vga_wcrt(NULL, 0x42, (value + 1) / 2); 785 + 786 + memset_io(info->screen_base, 0x00, screen_size); 787 + /* Device and screen back on */ 788 + svga_wcrt_mask(0x17, 0x80, 0x80); 789 + svga_wseq_mask(0x01, 0x00, 0x20); 790 + 791 + return 0; 792 + } 793 + 794 + /* Set a colour register */ 795 + 796 + static int arkfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue, 797 + u_int transp, struct fb_info *fb) 798 + { 799 + switch (fb->var.bits_per_pixel) { 800 + case 0: 801 + case 4: 802 + if (regno >= 16) 803 + return -EINVAL; 804 + 805 + if ((fb->var.bits_per_pixel == 4) && 806 + (fb->var.nonstd == 0)) { 807 + outb(0xF0, VGA_PEL_MSK); 808 + outb(regno*16, VGA_PEL_IW); 809 + } else { 810 + outb(0x0F, VGA_PEL_MSK); 811 + outb(regno, VGA_PEL_IW); 812 + } 813 + outb(red >> 10, VGA_PEL_D); 814 + outb(green >> 10, VGA_PEL_D); 815 + outb(blue >> 10, VGA_PEL_D); 816 + break; 817 + case 8: 818 + if (regno >= 256) 819 + return -EINVAL; 820 + 821 + outb(0xFF, VGA_PEL_MSK); 822 + outb(regno, VGA_PEL_IW); 823 + outb(red >> 10, VGA_PEL_D); 824 + outb(green >> 10, VGA_PEL_D); 825 + outb(blue >> 10, VGA_PEL_D); 826 + break; 827 + case 16: 828 + if (regno >= 16) 829 + return 0; 830 + 831 + if (fb->var.green.length == 5) 832 + ((u32*)fb->pseudo_palette)[regno] = ((red & 0xF800) >> 1) | 833 + ((green & 0xF800) >> 6) | ((blue & 0xF800) >> 11); 834 + else if (fb->var.green.length == 6) 835 + ((u32*)fb->pseudo_palette)[regno] = (red & 0xF800) | 836 + ((green & 0xFC00) >> 5) | ((blue & 0xF800) >> 11); 837 + else 838 + return -EINVAL; 839 + break; 840 + case 24: 841 + case 32: 842 + if (regno >= 16) 843 + return 0; 844 + 845 + ((u32*)fb->pseudo_palette)[regno] = ((red & 0xFF00) << 8) | 846 + (green & 0xFF00) | ((blue & 0xFF00) >> 8); 847 + break; 848 + default: 849 + return -EINVAL; 850 + } 851 + 852 + return 0; 853 + } 854 + 855 + /* Set the display blanking state */ 856 + 857 + static int arkfb_blank(int blank_mode, struct fb_info *info) 858 + { 859 + switch (blank_mode) { 860 + case FB_BLANK_UNBLANK: 861 + pr_debug("fb%d: unblank\n", info->node); 862 + svga_wseq_mask(0x01, 0x00, 0x20); 863 + svga_wcrt_mask(0x17, 0x80, 0x80); 864 + break; 865 + case FB_BLANK_NORMAL: 866 + pr_debug("fb%d: blank\n", info->node); 867 + svga_wseq_mask(0x01, 0x20, 0x20); 868 + svga_wcrt_mask(0x17, 0x80, 0x80); 869 + break; 870 + case FB_BLANK_POWERDOWN: 871 + case FB_BLANK_HSYNC_SUSPEND: 872 + case FB_BLANK_VSYNC_SUSPEND: 873 + pr_debug("fb%d: sync down\n", info->node); 874 + svga_wseq_mask(0x01, 0x20, 0x20); 875 + svga_wcrt_mask(0x17, 0x00, 0x80); 876 + break; 877 + } 878 + return 0; 879 + } 880 + 881 + 882 + /* Pan the display */ 883 + 884 + static int arkfb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info) 885 + { 886 + unsigned int offset; 887 + 888 + /* Calculate the offset */ 889 + if (var->bits_per_pixel == 0) { 890 + offset = (var->yoffset / 16) * (var->xres_virtual / 2) + (var->xoffset / 2); 891 + offset = offset >> 2; 892 + } else { 893 + offset = (var->yoffset * info->fix.line_length) + 894 + (var->xoffset * var->bits_per_pixel / 8); 895 + offset = offset >> ((var->bits_per_pixel == 4) ? 2 : 3); 896 + } 897 + 898 + /* Set the offset */ 899 + svga_wcrt_multi(ark_start_address_regs, offset); 900 + 901 + return 0; 902 + } 903 + 904 + 905 + /* ------------------------------------------------------------------------- */ 906 + 907 + 908 + /* Frame buffer operations */ 909 + 910 + static struct fb_ops arkfb_ops = { 911 + .owner = THIS_MODULE, 912 + .fb_open = arkfb_open, 913 + .fb_release = arkfb_release, 914 + .fb_check_var = arkfb_check_var, 915 + .fb_set_par = arkfb_set_par, 916 + .fb_setcolreg = arkfb_setcolreg, 917 + .fb_blank = arkfb_blank, 918 + .fb_pan_display = arkfb_pan_display, 919 + .fb_fillrect = arkfb_fillrect, 920 + .fb_copyarea = cfb_copyarea, 921 + .fb_imageblit = arkfb_imageblit, 922 + }; 923 + 924 + 925 + /* ------------------------------------------------------------------------- */ 926 + 927 + 928 + /* PCI probe */ 929 + static int __devinit ark_pci_probe(struct pci_dev *dev, const struct pci_device_id *id) 930 + { 931 + struct fb_info *info; 932 + struct arkfb_info *par; 933 + int rc; 934 + u8 regval; 935 + 936 + /* Ignore secondary VGA device because there is no VGA arbitration */ 937 + if (! svga_primary_device(dev)) { 938 + dev_info(&(dev->dev), "ignoring secondary device\n"); 939 + return -ENODEV; 940 + } 941 + 942 + /* Allocate and fill driver data structure */ 943 + info = framebuffer_alloc(sizeof(struct arkfb_info), NULL); 944 + if (! info) { 945 + dev_err(&(dev->dev), "cannot allocate memory\n"); 946 + return -ENOMEM; 947 + } 948 + 949 + par = info->par; 950 + mutex_init(&par->open_lock); 951 + 952 + info->flags = FBINFO_PARTIAL_PAN_OK | FBINFO_HWACCEL_YPAN; 953 + info->fbops = &arkfb_ops; 954 + 955 + /* Prepare PCI device */ 956 + rc = pci_enable_device(dev); 957 + if (rc < 0) { 958 + dev_err(&(dev->dev), "cannot enable PCI device\n"); 959 + goto err_enable_device; 960 + } 961 + 962 + rc = pci_request_regions(dev, "arkfb"); 963 + if (rc < 0) { 964 + dev_err(&(dev->dev), "cannot reserve framebuffer region\n"); 965 + goto err_request_regions; 966 + } 967 + 968 + par->dac = ics5342_init(ark_dac_read_regs, ark_dac_write_regs, info); 969 + if (! par->dac) { 970 + rc = -ENOMEM; 971 + dev_err(&(dev->dev), "RAMDAC initialization failed\n"); 972 + goto err_dac; 973 + } 974 + 975 + info->fix.smem_start = pci_resource_start(dev, 0); 976 + info->fix.smem_len = pci_resource_len(dev, 0); 977 + 978 + /* Map physical IO memory address into kernel space */ 979 + info->screen_base = pci_iomap(dev, 0, 0); 980 + if (! info->screen_base) { 981 + rc = -ENOMEM; 982 + dev_err(&(dev->dev), "iomap for framebuffer failed\n"); 983 + goto err_iomap; 984 + } 985 + 986 + /* FIXME get memsize */ 987 + regval = vga_rseq(NULL, 0x10); 988 + info->screen_size = (1 << (regval >> 6)) << 20; 989 + info->fix.smem_len = info->screen_size; 990 + 991 + strcpy(info->fix.id, "ARK 2000PV"); 992 + info->fix.mmio_start = 0; 993 + info->fix.mmio_len = 0; 994 + info->fix.type = FB_TYPE_PACKED_PIXELS; 995 + info->fix.visual = FB_VISUAL_PSEUDOCOLOR; 996 + info->fix.ypanstep = 0; 997 + info->fix.accel = FB_ACCEL_NONE; 998 + info->pseudo_palette = (void*) (par->pseudo_palette); 999 + 1000 + /* Prepare startup mode */ 1001 + rc = fb_find_mode(&(info->var), info, mode, NULL, 0, NULL, 8); 1002 + if (! ((rc == 1) || (rc == 2))) { 1003 + rc = -EINVAL; 1004 + dev_err(&(dev->dev), "mode %s not found\n", mode); 1005 + goto err_find_mode; 1006 + } 1007 + 1008 + rc = fb_alloc_cmap(&info->cmap, 256, 0); 1009 + if (rc < 0) { 1010 + dev_err(&(dev->dev), "cannot allocate colormap\n"); 1011 + goto err_alloc_cmap; 1012 + } 1013 + 1014 + rc = register_framebuffer(info); 1015 + if (rc < 0) { 1016 + dev_err(&(dev->dev), "cannot register framebugger\n"); 1017 + goto err_reg_fb; 1018 + } 1019 + 1020 + printk(KERN_INFO "fb%d: %s on %s, %d MB RAM\n", info->node, info->fix.id, 1021 + pci_name(dev), info->fix.smem_len >> 20); 1022 + 1023 + /* Record a reference to the driver data */ 1024 + pci_set_drvdata(dev, info); 1025 + 1026 + #ifdef CONFIG_MTRR 1027 + if (mtrr) { 1028 + par->mtrr_reg = -1; 1029 + par->mtrr_reg = mtrr_add(info->fix.smem_start, info->fix.smem_len, MTRR_TYPE_WRCOMB, 1); 1030 + } 1031 + #endif 1032 + 1033 + return 0; 1034 + 1035 + /* Error handling */ 1036 + err_reg_fb: 1037 + fb_dealloc_cmap(&info->cmap); 1038 + err_alloc_cmap: 1039 + err_find_mode: 1040 + pci_iounmap(dev, info->screen_base); 1041 + err_iomap: 1042 + dac_release(par->dac); 1043 + err_dac: 1044 + pci_release_regions(dev); 1045 + err_request_regions: 1046 + /* pci_disable_device(dev); */ 1047 + err_enable_device: 1048 + framebuffer_release(info); 1049 + return rc; 1050 + } 1051 + 1052 + /* PCI remove */ 1053 + 1054 + static void __devexit ark_pci_remove(struct pci_dev *dev) 1055 + { 1056 + struct fb_info *info = pci_get_drvdata(dev); 1057 + struct arkfb_info *par = info->par; 1058 + 1059 + if (info) { 1060 + #ifdef CONFIG_MTRR 1061 + if (par->mtrr_reg >= 0) { 1062 + mtrr_del(par->mtrr_reg, 0, 0); 1063 + par->mtrr_reg = -1; 1064 + } 1065 + #endif 1066 + 1067 + dac_release(par->dac); 1068 + unregister_framebuffer(info); 1069 + fb_dealloc_cmap(&info->cmap); 1070 + 1071 + pci_iounmap(dev, info->screen_base); 1072 + pci_release_regions(dev); 1073 + /* pci_disable_device(dev); */ 1074 + 1075 + pci_set_drvdata(dev, NULL); 1076 + framebuffer_release(info); 1077 + } 1078 + } 1079 + 1080 + 1081 + #ifdef CONFIG_PM 1082 + /* PCI suspend */ 1083 + 1084 + static int ark_pci_suspend (struct pci_dev* dev, pm_message_t state) 1085 + { 1086 + struct fb_info *info = pci_get_drvdata(dev); 1087 + struct arkfb_info *par = info->par; 1088 + 1089 + dev_info(&(dev->dev), "suspend\n"); 1090 + 1091 + acquire_console_sem(); 1092 + mutex_lock(&(par->open_lock)); 1093 + 1094 + if ((state.event == PM_EVENT_FREEZE) || (par->ref_count == 0)) { 1095 + mutex_unlock(&(par->open_lock)); 1096 + release_console_sem(); 1097 + return 0; 1098 + } 1099 + 1100 + fb_set_suspend(info, 1); 1101 + 1102 + pci_save_state(dev); 1103 + pci_disable_device(dev); 1104 + pci_set_power_state(dev, pci_choose_state(dev, state)); 1105 + 1106 + mutex_unlock(&(par->open_lock)); 1107 + release_console_sem(); 1108 + 1109 + return 0; 1110 + } 1111 + 1112 + 1113 + /* PCI resume */ 1114 + 1115 + static int ark_pci_resume (struct pci_dev* dev) 1116 + { 1117 + struct fb_info *info = pci_get_drvdata(dev); 1118 + struct arkfb_info *par = info->par; 1119 + 1120 + dev_info(&(dev->dev), "resume\n"); 1121 + 1122 + acquire_console_sem(); 1123 + mutex_lock(&(par->open_lock)); 1124 + 1125 + if (par->ref_count == 0) { 1126 + mutex_unlock(&(par->open_lock)); 1127 + release_console_sem(); 1128 + return 0; 1129 + } 1130 + 1131 + pci_set_power_state(dev, PCI_D0); 1132 + pci_restore_state(dev); 1133 + 1134 + if (pci_enable_device(dev)) 1135 + goto fail; 1136 + 1137 + pci_set_master(dev); 1138 + 1139 + arkfb_set_par(info); 1140 + fb_set_suspend(info, 0); 1141 + 1142 + mutex_unlock(&(par->open_lock)); 1143 + fail: 1144 + release_console_sem(); 1145 + return 0; 1146 + } 1147 + #else 1148 + #define ark_pci_suspend NULL 1149 + #define ark_pci_resume NULL 1150 + #endif /* CONFIG_PM */ 1151 + 1152 + /* List of boards that we are trying to support */ 1153 + 1154 + static struct pci_device_id ark_devices[] __devinitdata = { 1155 + {PCI_DEVICE(0xEDD8, 0xA099)}, 1156 + {0, 0, 0, 0, 0, 0, 0} 1157 + }; 1158 + 1159 + 1160 + MODULE_DEVICE_TABLE(pci, ark_devices); 1161 + 1162 + static struct pci_driver arkfb_pci_driver = { 1163 + .name = "arkfb", 1164 + .id_table = ark_devices, 1165 + .probe = ark_pci_probe, 1166 + .remove = __devexit_p(ark_pci_remove), 1167 + .suspend = ark_pci_suspend, 1168 + .resume = ark_pci_resume, 1169 + }; 1170 + 1171 + /* Cleanup */ 1172 + 1173 + static void __exit arkfb_cleanup(void) 1174 + { 1175 + pr_debug("arkfb: cleaning up\n"); 1176 + pci_unregister_driver(&arkfb_pci_driver); 1177 + } 1178 + 1179 + /* Driver Initialisation */ 1180 + 1181 + static int __init arkfb_init(void) 1182 + { 1183 + 1184 + #ifndef MODULE 1185 + char *option = NULL; 1186 + 1187 + if (fb_get_options("arkfb", &option)) 1188 + return -ENODEV; 1189 + 1190 + if (option && *option) 1191 + mode = option; 1192 + #endif 1193 + 1194 + pr_debug("arkfb: initializing\n"); 1195 + return pci_register_driver(&arkfb_pci_driver); 1196 + } 1197 + 1198 + module_init(arkfb_init); 1199 + module_exit(arkfb_cleanup);