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
596 extern int fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var);
597 extern int fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var);
598 extern int fb_blank(struct fb_info *info, int blank);
599 extern void cfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
600 extern void cfb_copyarea(struct fb_info *info, const struct fb_copyarea *area);
601 extern void cfb_imageblit(struct fb_info *info, const struct fb_image *image);
605 extern void sys_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
606 extern void sys_copyarea(struct fb_info *info, const struct fb_copyarea *area);
607 extern void sys_imageblit(struct fb_info *info, const struct fb_image *image);
608 extern ssize_t fb_sys_read(struct fb_info *info, char __user *buf,
610 extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
614 extern int register_framebuffer(struct fb_info *fb_info);
615 extern int unregister_framebuffer(struct fb_info *fb_info);
616 extern int unlink_framebuffer(struct fb_info *fb_info);
619 extern int fb_prepare_logo(struct fb_info *fb_info, int rotate);
620 extern int fb_show_logo(struct fb_info *fb_info, int rotate);
621 extern char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size);
625 extern void fb_set_suspend(struct fb_info *info, int state);
629 extern int fb_new_modelist(struct fb_info *info);
631 extern struct fb_info *registered_fb[FB_MAX];
635 extern int lock_fb_info(struct fb_info *info);
637 static inline void unlock_fb_info(struct fb_info *info) in unlock_fb_info()
658 extern void fb_deferred_io_init(struct fb_info *info);
659 extern void fb_deferred_io_open(struct fb_info *info,
662 extern void fb_deferred_io_cleanup(struct fb_info *info);
666 static inline bool fb_be_math(struct fb_info *info) in fb_be_math()
686 extern struct fb_info *framebuffer_alloc(size_t size, struct device *dev);
687 extern void framebuffer_release(struct fb_info *info);
688 extern int fb_init_device(struct fb_info *fb_info);
689 extern void fb_cleanup_device(struct fb_info *head);
690 extern void fb_bl_default_curve(struct fb_info *fb_info, u8 off, u8 min, u8 max);
707 extern int fbmon_dpms(const struct fb_info *fb_info);
709 struct fb_info *info);
711 struct fb_info *info);
760 extern int fb_set_cmap(struct fb_cmap *cmap, struct fb_info *fb_info);
761 extern int fb_set_user_cmap(struct fb_cmap_user *cmap, struct fb_info *fb_info);
800 struct fb_info *info, const char *mode_option,
807 #define fb_err(fb_info, fmt, ...) \ argument
808 pr_err("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
810 pr_notice("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
811 #define fb_warn(fb_info, fmt, ...) \ argument
812 pr_warn("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
813 #define fb_info(fb_info, fmt, ...) \ macro
814 pr_info("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
815 #define fb_dbg(fb_info, fmt, ...) \ argument
816 pr_debug("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)