• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/

Lines Matching refs:ip

229 	struct aafb_info *ip = (struct aafb_info *)info;
233 fix->smem_start = ip->fb_start;
234 fix->smem_len = ip->fb_size;
307 struct aafb_info *ip = (struct aafb_info *)info;
308 struct display *old = (currcon < 0) ? &ip->disp : (fb_display + currcon);
309 struct display *new = (con < 0) ? &ip->disp : (fb_display + con);
316 aafb_set_disp(new, con, ip);
380 struct aafb_info *ip = (struct aafb_info *)info;
381 struct display *disp = (con < 0) ? &ip->disp : (fb_display + con);
384 aafbcon_cursor(disp, CM_ERASE, ip->cursor.x, ip->cursor.y);
393 struct aafb_info *ip = (struct aafb_info *)info;
396 bt455_write_cmap_entry(ip->bt455, 1, val, val, val);
397 aafbcon_cursor(&ip->disp, CM_ERASE, ip->cursor.x, ip->cursor.y);
413 struct aafb_info *ip = &my_fb_info[slot];
415 memset(ip, 0, sizeof(struct aafb_info));
420 ip->bt455 = (struct bt455_regs *) (base_addr + PMAG_AA_BT455_OFFSET);
421 ip->bt431 = (struct bt431_regs *) (base_addr + PMAG_AA_BT431_OFFSET);
422 ip->fb_start = base_addr + PMAG_AA_ONBOARD_FBMEM_OFFSET;
423 ip->fb_size = 2048 * 1024; /* fb_fix_screeninfo.smem_length
425 ip->fb_line_length = 2048;
430 strcpy(ip->info.modename, "PMAG-AA");
431 ip->info.node = -1;
432 ip->info.flags = FBINFO_FLAG_DEFAULT;
433 ip->info.fbops = &aafb_ops;
434 ip->info.disp = &ip->disp;
435 ip->info.changevar = NULL;
436 ip->info.switch_con = &aafb_switch;
437 ip->info.updatevar = &aafb_update_var;
438 ip->info.blank = &aafb_blank;
440 aafb_set_disp(&ip->disp, currcon, ip);
445 bt455_erase_cursor(ip->bt455);
448 bt455_write_cmap_entry(ip->bt455, 0, 0x00, 0x00, 0x00);
449 bt455_write_cmap_entry(ip->bt455, 1, 0x0f, 0x0f, 0x0f);
452 bt431_init_cursor(ip->bt431);
453 aafb_cursor_init(ip);
456 memset ((void *)ip->fb_start, 0, ip->fb_size);
458 if (register_framebuffer(&ip->info) < 0)
462 GET_FB_IDX(ip->info.node), ip->info.modename, slot);
469 struct aafb_info *ip = &my_fb_info[slot];
471 if (unregister_framebuffer(&ip->info) < 0)