• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/

Lines Matching defs:fb_info

779 static struct fb_info fb_info = {
1102 struct fb_info *info);
1103 static int amifb_set_par(struct fb_info *info);
1106 struct fb_info *info);
1107 static int amifb_blank(int blank, struct fb_info *info);
1109 struct fb_info *info);
1110 static void amifb_fillrect(struct fb_info *info,
1112 static void amifb_copyarea(struct fb_info *info,
1114 static void amifb_imageblit(struct fb_info *info,
1116 static int amifb_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg);
1204 fb_info.monspecs.vfmin = vmin;
1205 fb_info.monspecs.vfmax = vmax;
1206 fb_info.monspecs.hfmin = hmin;
1207 fb_info.monspecs.hfmax = hmax;
1241 struct fb_info *info)
1256 static int amifb_set_par(struct fb_info *info)
1311 struct fb_info *info)
1937 static void amifb_fillrect(struct fb_info *info,
2015 static void amifb_copyarea(struct fb_info *info,
2105 static void amifb_imageblit(struct fb_info *info, const struct fb_image *image)
2155 static int amifb_ioctl(struct fb_info *info,
2262 strcat(fb_info.fix.id, "OCS");
2271 fb_info.fix.smem_len = VIDEOMEMSIZE_OCS;
2277 strcat(fb_info.fix.id, "ECS");
2291 fb_info.fix.smem_len = VIDEOMEMSIZE_ECS_2M;
2293 fb_info.fix.smem_len = VIDEOMEMSIZE_ECS_1M;
2299 strcat(fb_info.fix.id, "AGA");
2308 fb_info.fix.smem_len = VIDEOMEMSIZE_AGA_2M;
2310 fb_info.fix.smem_len = VIDEOMEMSIZE_AGA_1M;
2317 strcat(fb_info.fix.id, "Unknown");
2353 if (fb_info.monspecs.hfmin == 0) {
2354 fb_info.monspecs.hfmin = 15000;
2355 fb_info.monspecs.hfmax = 38000;
2356 fb_info.monspecs.vfmin = 49;
2357 fb_info.monspecs.vfmax = 90;
2360 fb_info.fbops = &amifb_ops;
2361 fb_info.par = &currentpar;
2362 fb_info.flags = FBINFO_DEFAULT;
2364 if (!fb_find_mode(&fb_info.var, &fb_info, mode_option, ami_modedb,
2371 chipptr = chipalloc(fb_info.fix.smem_len+
2377 assignchunk(videomemory, u_long, chipptr, fb_info.fix.smem_len);
2389 fb_info.fix.smem_start = (u_long)ZTWO_PADDR(videomemory);
2390 videomemory = (u_long)ioremap_writethrough(fb_info.fix.smem_start,
2391 fb_info.fix.smem_len);
2394 fb_info.screen_base = (char *)ZTWO_VADDR(fb_info.fix.smem_start);
2396 fb_info.screen_base = (char *)videomemory;
2419 fb_alloc_cmap(&fb_info.cmap, 1<<fb_info.var.bits_per_pixel, 0);
2421 if (register_framebuffer(&fb_info) < 0) {
2427 fb_info.node, fb_info.fix.id, fb_info.fix.smem_len>>10);
2438 fb_dealloc_cmap(&fb_info.cmap);
2451 static int amifb_blank(int blank, struct fb_info *info)
2833 if (par->next_line * par->vyres > fb_info.fix.smem_len) {
2840 if (par->next_plane * par->bpp > fb_info.fix.smem_len) {
3054 par->bplpt0 = fb_info.fix.smem_start + par->next_line*par->yoffset + move;
3057 par->bplpt0wrap = fb_info.fix.smem_start + move;
3063 par->bplpt0 = fb_info.fix.smem_start + move;
3079 u_int transp, struct fb_info *info)
3760 unregister_framebuffer(&fb_info);