Lines Matching refs:fb_info
19 struct fb_info;
167 struct fb_info *info;
207 void (*writeio)(struct fb_info *info, void __iomem *dst, void *src, unsigned int size);
208 void (*readio) (struct fb_info *info, void *dst, void __iomem *src, unsigned int size);
218 void (*first_io)(struct fb_info *info);
219 void (*deferred_io)(struct fb_info *info, struct list_head *pagelist);
240 int (*fb_open)(struct fb_info *info, int user);
241 int (*fb_release)(struct fb_info *info, int user);
246 ssize_t (*fb_read)(struct fb_info *info, char __user *buf,
248 ssize_t (*fb_write)(struct fb_info *info, const char __user *buf,
253 int (*fb_check_var)(struct fb_var_screeninfo *var, struct fb_info *info);
256 int (*fb_set_par)(struct fb_info *info);
260 unsigned blue, unsigned transp, struct fb_info *info);
263 int (*fb_setcmap)(struct fb_cmap *cmap, struct fb_info *info);
266 int (*fb_blank)(int blank, struct fb_info *info);
269 int (*fb_pan_display)(struct fb_var_screeninfo *var, struct fb_info *info);
272 void (*fb_fillrect) (struct fb_info *info, const struct fb_fillrect *rect);
274 void (*fb_copyarea) (struct fb_info *info, const struct fb_copyarea *region);
276 void (*fb_imageblit) (struct fb_info *info, const struct fb_image *image);
279 int (*fb_cursor) (struct fb_info *info, struct fb_cursor *cursor);
282 void (*fb_rotate)(struct fb_info *info, int angle);
285 int (*fb_sync)(struct fb_info *info);
288 int (*fb_ioctl)(struct fb_info *info, unsigned int cmd,
292 int (*fb_compat_ioctl)(struct fb_info *info, unsigned cmd,
296 int (*fb_mmap)(struct fb_info *info, struct vm_area_struct *vma);
299 void (*fb_get_caps)(struct fb_info *info, struct fb_blit_caps *caps,
303 void (*fb_destroy)(struct fb_info *info);
306 int (*fb_debug_enter)(struct fb_info *info);
307 int (*fb_debug_leave)(struct fb_info *info);
369 void (*fb_settile)(struct fb_info *info, struct fb_tilemap *map);
374 void (*fb_tilecopy)(struct fb_info *info, struct fb_tilearea *area);
376 void (*fb_tilefill)(struct fb_info *info, struct fb_tilerect *rect);
378 void (*fb_tileblit)(struct fb_info *info, struct fb_tileblit *blit);
380 void (*fb_tilecursor)(struct fb_info *info,
383 int (*fb_get_tilemax)(struct fb_info *info);
448 struct fb_info { struct
599 extern int fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var);
600 extern int fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var);
601 extern int fb_blank(struct fb_info *info, int blank);
602 extern void cfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
603 extern void cfb_copyarea(struct fb_info *info, const struct fb_copyarea *area);
604 extern void cfb_imageblit(struct fb_info *info, const struct fb_image *image);
608 extern void sys_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
609 extern void sys_copyarea(struct fb_info *info, const struct fb_copyarea *area);
610 extern void sys_imageblit(struct fb_info *info, const struct fb_image *image);
611 extern ssize_t fb_sys_read(struct fb_info *info, char __user *buf,
613 extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
617 extern int register_framebuffer(struct fb_info *fb_info);
618 extern int unregister_framebuffer(struct fb_info *fb_info);
619 extern int unlink_framebuffer(struct fb_info *fb_info);
622 extern int fb_prepare_logo(struct fb_info *fb_info, int rotate);
623 extern int fb_show_logo(struct fb_info *fb_info, int rotate);
624 extern char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size);
628 extern void fb_set_suspend(struct fb_info *info, int state);
632 extern int fb_new_modelist(struct fb_info *info);
634 extern struct fb_info *registered_fb[FB_MAX];
638 extern int lock_fb_info(struct fb_info *info);
640 static inline void unlock_fb_info(struct fb_info *info) in unlock_fb_info()
661 extern void fb_deferred_io_init(struct fb_info *info);
662 extern void fb_deferred_io_open(struct fb_info *info,
665 extern void fb_deferred_io_cleanup(struct fb_info *info);
669 static inline bool fb_be_math(struct fb_info *info) in fb_be_math()
689 extern struct fb_info *framebuffer_alloc(size_t size, struct device *dev);
690 extern void framebuffer_release(struct fb_info *info);
691 extern int fb_init_device(struct fb_info *fb_info);
692 extern void fb_cleanup_device(struct fb_info *head);
693 extern void fb_bl_default_curve(struct fb_info *fb_info, u8 off, u8 min, u8 max);
710 extern int fbmon_dpms(const struct fb_info *fb_info);
712 struct fb_info *info);
714 struct fb_info *info);
763 extern int fb_set_cmap(struct fb_cmap *cmap, struct fb_info *fb_info);
764 extern int fb_set_user_cmap(struct fb_cmap_user *cmap, struct fb_info *fb_info);
803 struct fb_info *info, const char *mode_option,
810 #define fb_err(fb_info, fmt, ...) \ argument
811 pr_err("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
813 pr_notice("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
814 #define fb_warn(fb_info, fmt, ...) \ argument
815 pr_warn("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
816 #define fb_info(fb_info, fmt, ...) \ argument
817 pr_info("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
818 #define fb_dbg(fb_info, fmt, ...) \ argument
819 pr_debug("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)