1 #include <linux/kernel.h>
2 #include <linux/module.h>
3 #include <linux/errno.h>
4 #include <linux/string.h>
6 #include <linux/slab.h>
7 #include <linux/delay.h>
9 #include <linux/ioport.h>
10 #include <linux/init.h>
11 #include <linux/pci.h>
12 #include <linux/mm_types.h>
13 #include <linux/vmalloc.h>
14 #include <linux/pagemap.h>
15 #include <linux/screen_info.h>
16 #include <linux/console.h>
19 #include "sm750_accel.h"
20 #include "sm750_cursor.h"
24 * ssize_t lynxfb_ops_write(struct fb_info *info, const char __user *buf,
25 * size_t count, loff_t *ppos);
26 * ssize_t lynxfb_ops_read(struct fb_info *info, char __user *buf,
27 * size_t count, loff_t *ppos);
31 /* common var for all device */
32 static int g_hwcursor = 1;
35 static const char *g_fbmode[] = {NULL, NULL};
36 static const char *g_def_fbmode = "1024x768-32@60";
37 static char *g_settings;
38 static int g_dualview;
39 static char *g_option;
41 static const struct fb_videomode lynx750_ext[] = {
42 /* 1024x600-60 VESA [1.71:1] */
43 {NULL, 60, 1024, 600, 20423, 144, 40, 18, 1, 104, 3,
44 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
45 FB_VMODE_NONINTERLACED},
47 /* 1024x600-70 VESA */
48 {NULL, 70, 1024, 600, 17211, 152, 48, 21, 1, 104, 3,
49 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
50 FB_VMODE_NONINTERLACED},
52 /* 1024x600-75 VESA */
53 {NULL, 75, 1024, 600, 15822, 160, 56, 23, 1, 104, 3,
54 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
55 FB_VMODE_NONINTERLACED},
57 /* 1024x600-85 VESA */
58 {NULL, 85, 1024, 600, 13730, 168, 56, 26, 1, 112, 3,
59 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
60 FB_VMODE_NONINTERLACED},
63 {NULL, 60, 720, 480, 37427, 88, 16, 13, 1, 72, 3,
64 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
65 FB_VMODE_NONINTERLACED},
67 /* 1280x720 [1.78:1] */
68 {NULL, 60, 1280, 720, 13426, 162, 86, 22, 1, 136, 3,
69 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
70 FB_VMODE_NONINTERLACED},
73 {NULL, 60, 1280, 768, 12579, 192, 64, 20, 3, 128, 7,
74 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
75 FB_VMODE_NONINTERLACED},
77 /* 1360 x 768 [1.77083:1] */
78 {NULL, 60, 1360, 768, 11804, 208, 64, 23, 1, 144, 3,
79 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
80 FB_VMODE_NONINTERLACED},
82 /* 1368 x 768 [1.78:1] */
83 {NULL, 60, 1368, 768, 11647, 216, 72, 23, 1, 144, 3,
84 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
85 FB_VMODE_NONINTERLACED},
87 /* 1440 x 900 [16:10] */
88 {NULL, 60, 1440, 900, 9392, 232, 80, 28, 1, 152, 3,
89 FB_SYNC_VERT_HIGH_ACT,
90 FB_VMODE_NONINTERLACED},
92 /* 1440x960 [15:10] */
93 {NULL, 60, 1440, 960, 8733, 240, 88, 30, 1, 152, 3,
94 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
95 FB_VMODE_NONINTERLACED},
97 /* 1920x1080 [16:9] */
98 {NULL, 60, 1920, 1080, 6734, 148, 88, 41, 1, 44, 3,
99 FB_SYNC_VERT_HIGH_ACT,
100 FB_VMODE_NONINTERLACED},
103 /* no hardware cursor supported under version 2.6.10, kernel bug */
104 static int lynxfb_ops_cursor(struct fb_info *info, struct fb_cursor *fbcursor)
106 struct lynxfb_par *par;
107 struct lynxfb_crtc *crtc;
108 struct lynx_cursor *cursor;
112 cursor = &crtc->cursor;
114 if (fbcursor->image.width > cursor->maxW ||
115 fbcursor->image.height > cursor->maxH ||
116 fbcursor->image.depth > 1) {
120 sm750_hw_cursor_disable(cursor);
121 if (fbcursor->set & FB_CUR_SETSIZE)
122 sm750_hw_cursor_setSize(cursor,
123 fbcursor->image.width,
124 fbcursor->image.height);
126 if (fbcursor->set & FB_CUR_SETPOS)
127 sm750_hw_cursor_setPos(cursor,
128 fbcursor->image.dx - info->var.xoffset,
129 fbcursor->image.dy - info->var.yoffset);
131 if (fbcursor->set & FB_CUR_SETCMAP) {
132 /* get the 16bit color of kernel means */
135 fg = ((info->cmap.red[fbcursor->image.fg_color] & 0xf800)) |
136 ((info->cmap.green[fbcursor->image.fg_color] & 0xfc00) >> 5) |
137 ((info->cmap.blue[fbcursor->image.fg_color] & 0xf800) >> 11);
139 bg = ((info->cmap.red[fbcursor->image.bg_color] & 0xf800)) |
140 ((info->cmap.green[fbcursor->image.bg_color] & 0xfc00) >> 5) |
141 ((info->cmap.blue[fbcursor->image.bg_color] & 0xf800) >> 11);
143 sm750_hw_cursor_setColor(cursor, fg, bg);
146 if (fbcursor->set & (FB_CUR_SETSHAPE | FB_CUR_SETIMAGE)) {
147 sm750_hw_cursor_setData(cursor,
149 fbcursor->image.data,
153 if (fbcursor->enable)
154 sm750_hw_cursor_enable(cursor);
159 static void lynxfb_ops_fillrect(struct fb_info *info,
160 const struct fb_fillrect *region)
162 struct lynxfb_par *par;
163 struct sm750_dev *sm750_dev;
164 unsigned int base, pitch, Bpp, rop;
167 if (info->state != FBINFO_STATE_RUNNING)
171 sm750_dev = par->dev;
174 * each time 2d function begin to work,below three variable always need
175 * be set, seems we can put them together in some place
177 base = par->crtc.oScreen;
178 pitch = info->fix.line_length;
179 Bpp = info->var.bits_per_pixel >> 3;
181 color = (Bpp == 1) ? region->color :
182 ((u32 *)info->pseudo_palette)[region->color];
183 rop = (region->rop != ROP_COPY) ? HW_ROP2_XOR : HW_ROP2_COPY;
186 * If not use spin_lock, system will die if user load driver
187 * and immediately unload driver frequently (dual)
188 * since they fb_count could change during the lifetime of
189 * this lock, we are holding it for all cases.
191 spin_lock(&sm750_dev->slock);
193 sm750_dev->accel.de_fillrect(&sm750_dev->accel,
195 region->dx, region->dy,
196 region->width, region->height,
198 spin_unlock(&sm750_dev->slock);
201 static void lynxfb_ops_copyarea(struct fb_info *info,
202 const struct fb_copyarea *region)
204 struct lynxfb_par *par;
205 struct sm750_dev *sm750_dev;
206 unsigned int base, pitch, Bpp;
209 sm750_dev = par->dev;
212 * each time 2d function begin to work,below three variable always need
213 * be set, seems we can put them together in some place
215 base = par->crtc.oScreen;
216 pitch = info->fix.line_length;
217 Bpp = info->var.bits_per_pixel >> 3;
220 * If not use spin_lock, system will die if user load driver
221 * and immediately unload driver frequently (dual)
222 * since they fb_count could change during the lifetime of
223 * this lock, we are holding it for all cases.
225 spin_lock(&sm750_dev->slock);
227 sm750_dev->accel.de_copyarea(&sm750_dev->accel,
228 base, pitch, region->sx, region->sy,
229 base, pitch, Bpp, region->dx, region->dy,
230 region->width, region->height,
232 spin_unlock(&sm750_dev->slock);
235 static void lynxfb_ops_imageblit(struct fb_info *info,
236 const struct fb_image *image)
238 unsigned int base, pitch, Bpp;
239 unsigned int fgcol, bgcol;
240 struct lynxfb_par *par;
241 struct sm750_dev *sm750_dev;
244 sm750_dev = par->dev;
246 * each time 2d function begin to work,below three variable always need
247 * be set, seems we can put them together in some place
249 base = par->crtc.oScreen;
250 pitch = info->fix.line_length;
251 Bpp = info->var.bits_per_pixel >> 3;
253 /* TODO: Implement hardware acceleration for image->depth > 1 */
254 if (image->depth != 1) {
255 cfb_imageblit(info, image);
259 if (info->fix.visual == FB_VISUAL_TRUECOLOR ||
260 info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
261 fgcol = ((u32 *)info->pseudo_palette)[image->fg_color];
262 bgcol = ((u32 *)info->pseudo_palette)[image->bg_color];
264 fgcol = image->fg_color;
265 bgcol = image->bg_color;
269 * If not use spin_lock, system will die if user load driver
270 * and immediately unload driver frequently (dual)
271 * since they fb_count could change during the lifetime of
272 * this lock, we are holding it for all cases.
274 spin_lock(&sm750_dev->slock);
276 sm750_dev->accel.de_imageblit(&sm750_dev->accel,
277 image->data, image->width >> 3, 0,
279 image->dx, image->dy,
280 image->width, image->height,
281 fgcol, bgcol, HW_ROP2_COPY);
282 spin_unlock(&sm750_dev->slock);
285 static int lynxfb_ops_pan_display(struct fb_var_screeninfo *var,
286 struct fb_info *info)
288 struct lynxfb_par *par;
289 struct lynxfb_crtc *crtc;
296 return hw_sm750_pan_display(crtc, var, info);
299 static int lynxfb_ops_set_par(struct fb_info *info)
301 struct lynxfb_par *par;
302 struct lynxfb_crtc *crtc;
303 struct lynxfb_output *output;
304 struct fb_var_screeninfo *var;
305 struct fb_fix_screeninfo *fix;
307 unsigned int line_length;
315 output = &par->output;
319 /* fix structure is not so FIX ... */
320 line_length = var->xres_virtual * var->bits_per_pixel / 8;
321 line_length = ALIGN(line_length, crtc->line_pad);
322 fix->line_length = line_length;
323 pr_info("fix->line_length = %d\n", fix->line_length);
326 * var->red,green,blue,transp are need to be set by driver
327 * and these data should be set before setcolreg routine
330 switch (var->bits_per_pixel) {
332 fix->visual = FB_VISUAL_PSEUDOCOLOR;
335 var->green.offset = 0;
336 var->green.length = 8;
337 var->blue.offset = 0;
338 var->blue.length = 8;
339 var->transp.length = 0;
340 var->transp.offset = 0;
343 var->red.offset = 11;
345 var->green.offset = 5;
346 var->green.length = 6;
347 var->blue.offset = 0;
348 var->blue.length = 5;
349 var->transp.length = 0;
350 var->transp.offset = 0;
351 fix->visual = FB_VISUAL_TRUECOLOR;
355 var->red.offset = 16;
357 var->green.offset = 8;
358 var->green.length = 8;
359 var->blue.offset = 0;
360 var->blue.length = 8;
361 fix->visual = FB_VISUAL_TRUECOLOR;
367 var->height = var->width = -1;
368 var->accel_flags = 0;/*FB_ACCELF_TEXT;*/
371 pr_err("pixel bpp format not satisfied\n.");
374 ret = hw_sm750_crtc_setMode(crtc, var, fix);
376 ret = hw_sm750_output_setMode(output, var, fix);
380 static inline unsigned int chan_to_field(unsigned int chan,
381 struct fb_bitfield *bf)
384 chan >>= 16 - bf->length;
385 return chan << bf->offset;
389 static int lynxfb_suspend(struct pci_dev *pdev, pm_message_t mesg)
391 struct fb_info *info;
392 struct sm750_dev *sm750_dev;
395 if (mesg.event == pdev->dev.power.power_state.event)
399 sm750_dev = pci_get_drvdata(pdev);
400 switch (mesg.event) {
401 case PM_EVENT_FREEZE:
402 case PM_EVENT_PRETHAW:
403 pdev->dev.power.power_state = mesg;
408 if (mesg.event & PM_EVENT_SLEEP) {
409 info = sm750_dev->fbinfo[0];
411 /* 1 means do suspend */
412 fb_set_suspend(info, 1);
413 info = sm750_dev->fbinfo[1];
415 /* 1 means do suspend */
416 fb_set_suspend(info, 1);
418 ret = pci_save_state(pdev);
421 "error:%d occurred in pci_save_state\n", ret);
422 goto lynxfb_suspend_err;
425 ret = pci_set_power_state(pdev, pci_choose_state(pdev, mesg));
428 "error:%d occurred in pci_set_power_state\n",
430 goto lynxfb_suspend_err;
434 pdev->dev.power.power_state = mesg;
441 static int lynxfb_resume(struct pci_dev *pdev)
443 struct fb_info *info;
444 struct sm750_dev *sm750_dev;
446 struct lynxfb_par *par;
447 struct lynxfb_crtc *crtc;
448 struct lynx_cursor *cursor;
453 sm750_dev = pci_get_drvdata(pdev);
457 ret = pci_set_power_state(pdev, PCI_D0);
460 "error:%d occurred in pci_set_power_state\n", ret);
461 goto lynxfb_resume_err;
464 if (pdev->dev.power.power_state.event != PM_EVENT_FREEZE) {
465 pci_restore_state(pdev);
466 ret = pci_enable_device(pdev);
469 "error:%d occurred in pci_enable_device\n",
471 goto lynxfb_resume_err;
473 pci_set_master(pdev);
476 hw_sm750_inithw(sm750_dev, pdev);
478 info = sm750_dev->fbinfo[0];
483 cursor = &crtc->cursor;
484 memset_io(cursor->vstart, 0x0, cursor->size);
485 memset_io(crtc->vScreen, 0x0, crtc->vidmem_size);
486 lynxfb_ops_set_par(info);
487 fb_set_suspend(info, 0);
490 info = sm750_dev->fbinfo[1];
495 cursor = &crtc->cursor;
496 memset_io(cursor->vstart, 0x0, cursor->size);
497 memset_io(crtc->vScreen, 0x0, crtc->vidmem_size);
498 lynxfb_ops_set_par(info);
499 fb_set_suspend(info, 0);
502 pdev->dev.power.power_state.event = PM_EVENT_RESUME;
510 static int lynxfb_ops_check_var(struct fb_var_screeninfo *var,
511 struct fb_info *info)
513 struct lynxfb_par *par;
514 struct lynxfb_crtc *crtc;
515 resource_size_t request;
520 pr_debug("check var:%dx%d-%d\n",
523 var->bits_per_pixel);
525 switch (var->bits_per_pixel) {
527 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
530 var->green.offset = 0;
531 var->green.length = 8;
532 var->blue.offset = 0;
533 var->blue.length = 8;
534 var->transp.length = 0;
535 var->transp.offset = 0;
538 var->red.offset = 11;
540 var->green.offset = 5;
541 var->green.length = 6;
542 var->blue.offset = 0;
543 var->blue.length = 5;
544 var->transp.length = 0;
545 var->transp.offset = 0;
546 info->fix.visual = FB_VISUAL_TRUECOLOR;
550 var->red.offset = 16;
552 var->green.offset = 8;
553 var->green.length = 8;
554 var->blue.offset = 0;
555 var->blue.length = 8;
556 info->fix.visual = FB_VISUAL_TRUECOLOR;
559 pr_err("bpp %d not supported\n", var->bits_per_pixel);
562 var->height = var->width = -1;
563 var->accel_flags = 0;/* FB_ACCELF_TEXT; */
565 /* check if current fb's video memory big enought to hold the onscreen*/
566 request = var->xres_virtual * (var->bits_per_pixel >> 3);
567 /* defaulty crtc->channel go with par->index */
569 request = ALIGN(request, crtc->line_pad);
570 request = request * var->yres_virtual;
571 if (crtc->vidmem_size < request) {
572 pr_err("not enough video memory for mode\n");
576 return hw_sm750_crtc_checkMode(crtc, var);
579 static int lynxfb_ops_setcolreg(unsigned int regno,
584 struct fb_info *info)
586 struct lynxfb_par *par;
587 struct lynxfb_crtc *crtc;
588 struct fb_var_screeninfo *var;
597 pr_err("regno = %d\n", regno);
601 if (info->var.grayscale)
602 red = green = blue = (red * 77 + green * 151 + blue * 28) >> 8;
604 if (var->bits_per_pixel == 8 &&
605 info->fix.visual == FB_VISUAL_PSEUDOCOLOR) {
609 ret = hw_sm750_setColReg(crtc, regno, red, green, blue);
613 if (info->fix.visual == FB_VISUAL_TRUECOLOR && regno < 256) {
616 if (var->bits_per_pixel == 16 ||
617 var->bits_per_pixel == 32 ||
618 var->bits_per_pixel == 24) {
619 val = chan_to_field(red, &var->red);
620 val |= chan_to_field(green, &var->green);
621 val |= chan_to_field(blue, &var->blue);
622 par->pseudo_palette[regno] = val;
633 static int lynxfb_ops_blank(int blank, struct fb_info *info)
635 struct lynxfb_par *par;
636 struct lynxfb_output *output;
638 pr_debug("blank = %d.\n", blank);
640 output = &par->output;
641 return output->proc_setBLANK(output, blank);
644 static int sm750fb_set_drv(struct lynxfb_par *par)
647 struct sm750_dev *sm750_dev;
648 struct lynxfb_output *output;
649 struct lynxfb_crtc *crtc;
653 sm750_dev = par->dev;
654 output = &par->output;
657 crtc->vidmem_size = sm750_dev->vidmem_size;
658 if (sm750_dev->fb_count > 1)
659 crtc->vidmem_size >>= 1;
661 /* setup crtc and output member */
662 sm750_dev->hwCursor = g_hwcursor;
669 output->proc_setBLANK = (sm750_dev->revid == SM750LE_REVISION_ID) ?
670 hw_sm750le_setBLANK : hw_sm750_setBLANK;
671 /* chip specific phase */
672 sm750_dev->accel.de_wait = (sm750_dev->revid == SM750LE_REVISION_ID) ?
673 hw_sm750le_deWait : hw_sm750_deWait;
674 switch (sm750_dev->dataflow) {
675 case sm750_simul_pri:
676 output->paths = sm750_pnc;
677 crtc->channel = sm750_primary;
679 crtc->vScreen = sm750_dev->pvMem;
680 pr_info("use simul primary mode\n");
682 case sm750_simul_sec:
683 output->paths = sm750_pnc;
684 crtc->channel = sm750_secondary;
686 crtc->vScreen = sm750_dev->pvMem;
688 case sm750_dual_normal:
689 if (par->index == 0) {
690 output->paths = sm750_panel;
691 crtc->channel = sm750_primary;
693 crtc->vScreen = sm750_dev->pvMem;
695 output->paths = sm750_crt;
696 crtc->channel = sm750_secondary;
697 /* not consider of padding stuffs for oScreen,need fix */
698 crtc->oScreen = (sm750_dev->vidmem_size >> 1);
699 crtc->vScreen = sm750_dev->pvMem + crtc->oScreen;
702 case sm750_dual_swap:
703 if (par->index == 0) {
704 output->paths = sm750_panel;
705 crtc->channel = sm750_secondary;
707 crtc->vScreen = sm750_dev->pvMem;
709 output->paths = sm750_crt;
710 crtc->channel = sm750_primary;
711 /* not consider of padding stuffs for oScreen,need fix */
712 crtc->oScreen = (sm750_dev->vidmem_size >> 1);
713 crtc->vScreen = sm750_dev->pvMem + crtc->oScreen;
723 static struct fb_ops lynxfb_ops = {
724 .owner = THIS_MODULE,
725 .fb_check_var = lynxfb_ops_check_var,
726 .fb_set_par = lynxfb_ops_set_par,
727 .fb_setcolreg = lynxfb_ops_setcolreg,
728 .fb_blank = lynxfb_ops_blank,
729 .fb_fillrect = cfb_fillrect,
730 .fb_imageblit = cfb_imageblit,
731 .fb_copyarea = cfb_copyarea,
733 .fb_cursor = lynxfb_ops_cursor,
736 static int lynxfb_set_fbinfo(struct fb_info *info, int index)
739 struct lynxfb_par *par;
740 struct sm750_dev *sm750_dev;
741 struct lynxfb_crtc *crtc;
742 struct lynxfb_output *output;
743 struct fb_var_screeninfo *var;
744 struct fb_fix_screeninfo *fix;
746 const struct fb_videomode *pdb[] = {
747 lynx750_ext, NULL, vesa_modes,
749 int cdb[] = {ARRAY_SIZE(lynx750_ext), 0, VESA_MODEDB_SIZE};
750 static const char *mdb_desc[] = {
751 "driver prepared modes",
752 "kernel prepared default modedb",
753 "kernel HELPERS prepared vesa_modes",
756 static const char *fixId[2] = {
757 "sm750_fb1", "sm750_fb2",
760 int ret, line_length;
763 par = (struct lynxfb_par *)info->par;
764 sm750_dev = par->dev;
766 output = &par->output;
772 output->channel = &crtc->channel;
773 sm750fb_set_drv(par);
774 lynxfb_ops.fb_pan_display = lynxfb_ops_pan_display;
777 * set current cursor variable and proc pointer,
778 * must be set after crtc member initialized
780 crtc->cursor.offset = crtc->oScreen + crtc->vidmem_size - 1024;
781 crtc->cursor.mmio = sm750_dev->pvReg +
782 0x800f0 + (int)crtc->channel * 0x140;
784 pr_info("crtc->cursor.mmio = %p\n", crtc->cursor.mmio);
785 crtc->cursor.maxH = crtc->cursor.maxW = 64;
786 crtc->cursor.size = crtc->cursor.maxH * crtc->cursor.maxW * 2 / 8;
787 crtc->cursor.vstart = sm750_dev->pvMem + crtc->cursor.offset;
789 memset_io(crtc->cursor.vstart, 0, crtc->cursor.size);
791 lynxfb_ops.fb_cursor = NULL;
792 sm750_hw_cursor_disable(&crtc->cursor);
795 /* set info->fbops, must be set before fb_find_mode */
796 if (!sm750_dev->accel_off) {
797 /* use 2d acceleration */
798 lynxfb_ops.fb_fillrect = lynxfb_ops_fillrect;
799 lynxfb_ops.fb_copyarea = lynxfb_ops_copyarea;
800 lynxfb_ops.fb_imageblit = lynxfb_ops_imageblit;
802 info->fbops = &lynxfb_ops;
804 if (!g_fbmode[index]) {
805 g_fbmode[index] = g_def_fbmode;
807 g_fbmode[index] = g_fbmode[0];
810 for (i = 0; i < 3; i++) {
811 ret = fb_find_mode(var, info, g_fbmode[index],
812 pdb[i], cdb[i], NULL, 8);
815 pr_info("success! use specified mode:%s in %s\n",
819 } else if (ret == 2) {
820 pr_warn("use specified mode:%s in %s,with an ignored refresh rate\n",
824 } else if (ret == 3) {
825 pr_warn("wanna use default mode\n");
827 } else if (ret == 4) {
828 pr_warn("fall back to any valid mode\n");
830 pr_warn("ret = %d,fb_find_mode failed,with %s\n",
836 /* some member of info->var had been set by fb_find_mode */
838 pr_info("Member of info->var is :\n"
845 "bits_per_pixel=%d\n"
853 var->bits_per_pixel);
859 line_length = ALIGN((var->xres_virtual * var->bits_per_pixel / 8),
862 info->pseudo_palette = &par->pseudo_palette[0];
863 info->screen_base = crtc->vScreen;
864 pr_debug("screen_base vaddr = %p\n", info->screen_base);
865 info->screen_size = line_length * var->yres_virtual;
866 info->flags = FBINFO_FLAG_DEFAULT | 0;
869 fix->type = FB_TYPE_PACKED_PIXELS;
871 fix->xpanstep = crtc->xpanstep;
872 fix->ypanstep = crtc->ypanstep;
873 fix->ywrapstep = crtc->ywrapstep;
874 fix->accel = FB_ACCEL_SMI;
876 strlcpy(fix->id, fixId[index], sizeof(fix->id));
878 fix->smem_start = crtc->oScreen + sm750_dev->vidmem_start;
879 pr_info("fix->smem_start = %lx\n", fix->smem_start);
881 * according to mmap experiment from user space application,
882 * fix->mmio_len should not larger than virtual size
883 * (xres_virtual x yres_virtual x ByPP)
884 * Below line maybe buggy when user mmap fb dev node and write
885 * data into the bound over virtual size
887 fix->smem_len = crtc->vidmem_size;
888 pr_info("fix->smem_len = %x\n", fix->smem_len);
889 info->screen_size = fix->smem_len;
890 fix->line_length = line_length;
891 fix->mmio_start = sm750_dev->vidreg_start;
892 pr_info("fix->mmio_start = %lx\n", fix->mmio_start);
893 fix->mmio_len = sm750_dev->vidreg_size;
894 pr_info("fix->mmio_len = %x\n", fix->mmio_len);
895 switch (var->bits_per_pixel) {
897 fix->visual = FB_VISUAL_PSEUDOCOLOR;
901 fix->visual = FB_VISUAL_TRUECOLOR;
906 var->activate = FB_ACTIVATE_NOW;
907 var->accel_flags = 0;
908 var->vmode = FB_VMODE_NONINTERLACED;
910 pr_debug("#1 show info->cmap :\nstart=%d,len=%d,red=%p,green=%p,blue=%p,transp=%p\n",
911 info->cmap.start, info->cmap.len,
912 info->cmap.red, info->cmap.green, info->cmap.blue,
915 ret = fb_alloc_cmap(&info->cmap, 256, 0);
917 pr_err("Could not allocate memory for cmap.\n");
921 pr_debug("#2 show info->cmap :\nstart=%d,len=%d,red=%p,green=%p,blue=%p,transp=%p\n",
922 info->cmap.start, info->cmap.len,
923 info->cmap.red, info->cmap.green, info->cmap.blue,
927 lynxfb_ops_check_var(var, info);
931 /* chip specific g_option configuration routine */
932 static void sm750fb_setup(struct sm750_dev *sm750_dev, char *src)
939 sm750_dev->initParm.chip_clk = 0;
940 sm750_dev->initParm.mem_clk = 0;
941 sm750_dev->initParm.master_clk = 0;
942 sm750_dev->initParm.powerMode = 0;
943 sm750_dev->initParm.setAllEngOff = 0;
944 sm750_dev->initParm.resetMemory = 1;
946 /* defaultly turn g_hwcursor on for both view */
950 dev_warn(&sm750_dev->pdev->dev, "no specific g_option.\n");
954 while ((opt = strsep(&src, ":")) != NULL && *opt != 0) {
955 dev_info(&sm750_dev->pdev->dev, "opt=%s\n", opt);
956 dev_info(&sm750_dev->pdev->dev, "src=%s\n", src);
958 if (!strncmp(opt, "swap", strlen("swap"))) {
960 } else if (!strncmp(opt, "nocrt", strlen("nocrt"))) {
961 sm750_dev->nocrt = 1;
962 } else if (!strncmp(opt, "36bit", strlen("36bit"))) {
963 sm750_dev->pnltype = sm750_doubleTFT;
964 } else if (!strncmp(opt, "18bit", strlen("18bit"))) {
965 sm750_dev->pnltype = sm750_dualTFT;
966 } else if (!strncmp(opt, "24bit", strlen("24bit"))) {
967 sm750_dev->pnltype = sm750_24TFT;
968 } else if (!strncmp(opt, "nohwc0", strlen("nohwc0"))) {
970 } else if (!strncmp(opt, "nohwc1", strlen("nohwc1"))) {
972 } else if (!strncmp(opt, "nohwc", strlen("nohwc"))) {
977 dev_info(&sm750_dev->pdev->dev,
978 "find fbmode0 : %s\n", g_fbmode[0]);
979 } else if (!g_fbmode[1]) {
981 dev_info(&sm750_dev->pdev->dev,
982 "find fbmode1 : %s\n", g_fbmode[1]);
984 dev_warn(&sm750_dev->pdev->dev, "How many view you wann set?\n");
990 if (sm750_dev->revid != SM750LE_REVISION_ID) {
991 if (sm750_dev->fb_count > 1) {
993 sm750_dev->dataflow = sm750_dual_swap;
995 sm750_dev->dataflow = sm750_dual_normal;
998 sm750_dev->dataflow = sm750_simul_sec;
1000 sm750_dev->dataflow = sm750_simul_pri;
1003 /* SM750LE only have one crt channel */
1004 sm750_dev->dataflow = sm750_simul_sec;
1005 /* sm750le do not have complex attributes */
1006 sm750_dev->nocrt = 0;
1010 static void sm750fb_framebuffer_release(struct sm750_dev *sm750_dev)
1012 struct fb_info *fb_info;
1014 while (sm750_dev->fb_count) {
1015 fb_info = sm750_dev->fbinfo[sm750_dev->fb_count - 1];
1016 unregister_framebuffer(fb_info);
1017 framebuffer_release(fb_info);
1018 sm750_dev->fb_count--;
1022 static int sm750fb_framebuffer_alloc(struct sm750_dev *sm750_dev, int fbidx)
1024 struct fb_info *fb_info;
1025 struct lynxfb_par *par;
1028 fb_info = framebuffer_alloc(sizeof(struct lynxfb_par),
1029 &sm750_dev->pdev->dev);
1033 sm750_dev->fbinfo[fbidx] = fb_info;
1035 par->dev = sm750_dev;
1037 err = lynxfb_set_fbinfo(fb_info, fbidx);
1041 err = register_framebuffer(fb_info);
1045 sm750_dev->fb_count++;
1050 framebuffer_release(fb_info);
1054 static int lynxfb_kick_out_firmware_fb(struct pci_dev *pdev)
1056 struct apertures_struct *ap;
1057 bool primary = false;
1059 ap = alloc_apertures(1);
1063 ap->ranges[0].base = pci_resource_start(pdev, 0);
1064 ap->ranges[0].size = pci_resource_len(pdev, 0);
1066 primary = pdev->resource[PCI_ROM_RESOURCE].flags &
1067 IORESOURCE_ROM_SHADOW;
1069 remove_conflicting_framebuffers(ap, "sm750_fb1", primary);
1074 static int lynxfb_pci_probe(struct pci_dev *pdev,
1075 const struct pci_device_id *ent)
1077 struct sm750_dev *sm750_dev = NULL;
1082 err = lynxfb_kick_out_firmware_fb(pdev);
1087 err = pcim_enable_device(pdev);
1092 sm750_dev = devm_kzalloc(&pdev->dev, sizeof(*sm750_dev), GFP_KERNEL);
1096 sm750_dev->fbinfo[0] = sm750_dev->fbinfo[1] = NULL;
1097 sm750_dev->devid = pdev->device;
1098 sm750_dev->revid = pdev->revision;
1099 sm750_dev->pdev = pdev;
1100 sm750_dev->mtrr_off = g_nomtrr;
1101 sm750_dev->mtrr.vram = 0;
1102 sm750_dev->accel_off = g_noaccel;
1103 spin_lock_init(&sm750_dev->slock);
1105 if (!sm750_dev->accel_off) {
1107 * hook deInit and 2d routines, notes that below hw_xxx
1108 * routine can work on most of lynx chips
1109 * if some chip need specific function,
1110 * please hook it in smXXX_set_drv routine
1112 sm750_dev->accel.de_init = sm750_hw_de_init;
1113 sm750_dev->accel.de_fillrect = sm750_hw_fillrect;
1114 sm750_dev->accel.de_copyarea = sm750_hw_copyarea;
1115 sm750_dev->accel.de_imageblit = sm750_hw_imageblit;
1118 /* call chip specific setup routine */
1119 sm750fb_setup(sm750_dev, g_settings);
1121 /* call chip specific mmap routine */
1122 err = hw_sm750_map(sm750_dev, pdev);
1126 if (!sm750_dev->mtrr_off)
1127 sm750_dev->mtrr.vram = arch_phys_wc_add(sm750_dev->vidmem_start,
1128 sm750_dev->vidmem_size);
1130 memset_io(sm750_dev->pvMem, 0, sm750_dev->vidmem_size);
1132 pci_set_drvdata(pdev, sm750_dev);
1134 /* call chipInit routine */
1135 hw_sm750_inithw(sm750_dev, pdev);
1137 /* allocate frame buffer info structures according to g_dualview */
1138 max_fb = g_dualview ? 2 : 1;
1139 for (fbidx = 0; fbidx < max_fb; fbidx++) {
1140 err = sm750fb_framebuffer_alloc(sm750_dev, fbidx);
1148 sm750fb_framebuffer_release(sm750_dev);
1152 static void lynxfb_pci_remove(struct pci_dev *pdev)
1154 struct sm750_dev *sm750_dev;
1156 sm750_dev = pci_get_drvdata(pdev);
1158 sm750fb_framebuffer_release(sm750_dev);
1159 arch_phys_wc_del(sm750_dev->mtrr.vram);
1161 iounmap(sm750_dev->pvReg);
1162 iounmap(sm750_dev->pvMem);
1166 static int __init lynxfb_setup(char *options)
1171 if (!options || !*options) {
1172 pr_warn("no options.\n");
1176 pr_info("options:%s\n", options);
1178 len = strlen(options) + 1;
1179 g_settings = kzalloc(len, GFP_KERNEL);
1187 * char * strsep(char **s,const char * ct);
1188 * @s: the string to be searched
1189 * @ct :the characters to search for
1191 * strsep() updates @options to pointer after the first found token
1192 * it also returns the pointer ahead the token.
1194 while ((opt = strsep(&options, ":")) != NULL) {
1195 /* options that mean for any lynx chips are configured here */
1196 if (!strncmp(opt, "noaccel", strlen("noaccel"))) {
1198 } else if (!strncmp(opt, "nomtrr", strlen("nomtrr"))) {
1200 } else if (!strncmp(opt, "dual", strlen("dual"))) {
1212 /* misc g_settings are transport to chip specific routines */
1213 pr_info("parameter left for chip specific analysis:%s\n", g_settings);
1217 static const struct pci_device_id smi_pci_table[] = {
1218 { PCI_DEVICE(0x126f, 0x0750), },
1222 MODULE_DEVICE_TABLE(pci, smi_pci_table);
1224 static struct pci_driver lynxfb_driver = {
1226 .id_table = smi_pci_table,
1227 .probe = lynxfb_pci_probe,
1228 .remove = lynxfb_pci_remove,
1230 .suspend = lynxfb_suspend,
1231 .resume = lynxfb_resume,
1235 static int __init lynxfb_init(void)
1242 if (fb_get_options("sm750fb", &option))
1246 lynxfb_setup(option);
1247 return pci_register_driver(&lynxfb_driver);
1249 module_init(lynxfb_init);
1251 static void __exit lynxfb_exit(void)
1253 pci_unregister_driver(&lynxfb_driver);
1255 module_exit(lynxfb_exit);
1257 module_param(g_option, charp, 0444);
1259 MODULE_PARM_DESC(g_option,
1260 "\n\t\tCommon options:\n"
1261 "\t\tnoaccel:disable 2d capabilities\n"
1262 "\t\tnomtrr:disable MTRR attribute for video memory\n"
1263 "\t\tdualview:dual frame buffer feature enabled\n"
1264 "\t\tnohwc:disable hardware cursor\n"
1265 "\t\tUsual example:\n"
1266 "\t\tinsmod ./sm750fb.ko g_option=\"noaccel,nohwc,1280x1024-8@60\"\n"
1271 MODULE_DESCRIPTION("Frame buffer driver for SM750 chipset");
1272 MODULE_LICENSE("Dual BSD/GPL");