Lines Matching refs:fix
1441 if (par->next_line * par->vyres > info->fix.smem_len) { in ami_decode_var()
1448 if (par->next_plane * par->bpp > info->fix.smem_len) { in ami_decode_var()
1639 par->bplpt0 = info->fix.smem_start + in ami_update_par()
1643 par->bplpt0wrap = info->fix.smem_start + move; in ami_update_par()
1651 par->bplpt0 = info->fix.smem_start + move; in ami_update_par()
1827 static int ami_get_fix_cursorinfo(struct fb_fix_cursorinfo *fix, in ami_get_fix_cursorinfo() argument
1830 fix->crsr_width = fix->crsr_xsize = par->crsr.width; in ami_get_fix_cursorinfo()
1831 fix->crsr_height = fix->crsr_ysize = par->crsr.height; in ami_get_fix_cursorinfo()
1832 fix->crsr_color1 = 17; in ami_get_fix_cursorinfo()
1833 fix->crsr_color2 = 18; in ami_get_fix_cursorinfo()
2413 info->fix.type = FB_TYPE_PACKED_PIXELS; in amifb_set_par()
2414 info->fix.type_aux = 0; in amifb_set_par()
2416 info->fix.type = FB_TYPE_INTERLEAVED_PLANES; in amifb_set_par()
2417 info->fix.type_aux = par->next_line; in amifb_set_par()
2419 info->fix.type = FB_TYPE_PLANES; in amifb_set_par()
2420 info->fix.type_aux = 0; in amifb_set_par()
2422 info->fix.line_length = div8(upx(16 << maxfmode, par->vxres)); in amifb_set_par()
2425 info->fix.ywrapstep = 1; in amifb_set_par()
2426 info->fix.xpanstep = 0; in amifb_set_par()
2427 info->fix.ypanstep = 0; in amifb_set_par()
2431 info->fix.ywrapstep = 0; in amifb_set_par()
2433 info->fix.xpanstep = 1; in amifb_set_par()
2435 info->fix.xpanstep = 16 << maxfmode; in amifb_set_par()
2436 info->fix.ypanstep = 1; in amifb_set_par()
3392 struct fb_fix_cursorinfo fix; in amifb_ioctl() member
3401 i = ami_get_fix_cursorinfo(&crsr.fix, info->par); in amifb_ioctl()
3404 return copy_to_user(argp, &crsr.fix, in amifb_ioctl()
3405 sizeof(crsr.fix)) ? -EFAULT : 0; in amifb_ioctl()
3564 strcpy(info->fix.id, "Amiga "); in amifb_probe()
3565 info->fix.visual = FB_VISUAL_PSEUDOCOLOR; in amifb_probe()
3566 info->fix.accel = FB_ACCEL_AMIGABLITT; in amifb_probe()
3571 strcat(info->fix.id, "OCS"); in amifb_probe()
3579 info->fix.smem_len = VIDEOMEMSIZE_OCS; in amifb_probe()
3585 strcat(info->fix.id, "ECS"); in amifb_probe()
3599 info->fix.smem_len = VIDEOMEMSIZE_ECS_2M; in amifb_probe()
3601 info->fix.smem_len = VIDEOMEMSIZE_ECS_1M; in amifb_probe()
3607 strcat(info->fix.id, "AGA"); in amifb_probe()
3616 info->fix.smem_len = VIDEOMEMSIZE_AGA_2M; in amifb_probe()
3618 info->fix.smem_len = VIDEOMEMSIZE_AGA_1M; in amifb_probe()
3625 strcat(info->fix.id, "Unknown"); in amifb_probe()
3687 chipptr = chipalloc(info->fix.smem_len + SPRITEMEMSIZE + in amifb_probe()
3695 assignchunk(videomemory, u_long, chipptr, info->fix.smem_len); in amifb_probe()
3707 info->fix.smem_start = (u_long)ZTWO_PADDR(videomemory); in amifb_probe()
3708 videomemory = (u_long)ioremap_wt(info->fix.smem_start, in amifb_probe()
3709 info->fix.smem_len); in amifb_probe()
3713 info->screen_base = ZTWO_VADDR(info->fix.smem_start); in amifb_probe()
3746 info->fix.id, info->fix.smem_len>>10); in amifb_probe()