Lines Matching refs:fb_info
21 struct fb_info;
141 struct fb_info *info;
199 void (*writeio)(struct fb_info *info, void __iomem *dst, void *src, unsigned int size);
200 void (*readio) (struct fb_info *info, void *dst, void __iomem *src, unsigned int size);
210 void (*first_io)(struct fb_info *info);
211 void (*deferred_io)(struct fb_info *info, struct list_head *pagelist);
232 int (*fb_open)(struct fb_info *info, int user);
233 int (*fb_release)(struct fb_info *info, int user);
238 ssize_t (*fb_read)(struct fb_info *info, char __user *buf,
240 ssize_t (*fb_write)(struct fb_info *info, const char __user *buf,
245 int (*fb_check_var)(struct fb_var_screeninfo *var, struct fb_info *info);
248 int (*fb_set_par)(struct fb_info *info);
252 unsigned blue, unsigned transp, struct fb_info *info);
255 int (*fb_setcmap)(struct fb_cmap *cmap, struct fb_info *info);
258 int (*fb_blank)(int blank, struct fb_info *info);
261 int (*fb_pan_display)(struct fb_var_screeninfo *var, struct fb_info *info);
264 void (*fb_fillrect) (struct fb_info *info, const struct fb_fillrect *rect);
266 void (*fb_copyarea) (struct fb_info *info, const struct fb_copyarea *region);
268 void (*fb_imageblit) (struct fb_info *info, const struct fb_image *image);
271 int (*fb_cursor) (struct fb_info *info, struct fb_cursor *cursor);
274 int (*fb_sync)(struct fb_info *info);
277 int (*fb_ioctl)(struct fb_info *info, unsigned int cmd,
281 int (*fb_compat_ioctl)(struct fb_info *info, unsigned cmd,
285 int (*fb_mmap)(struct fb_info *info, struct vm_area_struct *vma);
288 void (*fb_get_caps)(struct fb_info *info, struct fb_blit_caps *caps,
292 void (*fb_destroy)(struct fb_info *info);
295 int (*fb_debug_enter)(struct fb_info *info);
296 int (*fb_debug_leave)(struct fb_info *info);
358 void (*fb_settile)(struct fb_info *info, struct fb_tilemap *map);
363 void (*fb_tilecopy)(struct fb_info *info, struct fb_tilearea *area);
365 void (*fb_tilefill)(struct fb_info *info, struct fb_tilerect *rect);
367 void (*fb_tileblit)(struct fb_info *info, struct fb_tileblit *blit);
369 void (*fb_tilecursor)(struct fb_info *info,
372 int (*fb_get_tilemax)(struct fb_info *info);
438 struct fb_info { struct
589 extern int fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var);
590 extern int fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var);
591 extern int fb_blank(struct fb_info *info, int blank);
592 extern void cfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
593 extern void cfb_copyarea(struct fb_info *info, const struct fb_copyarea *area);
594 extern void cfb_imageblit(struct fb_info *info, const struct fb_image *image);
598 extern void sys_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
599 extern void sys_copyarea(struct fb_info *info, const struct fb_copyarea *area);
600 extern void sys_imageblit(struct fb_info *info, const struct fb_image *image);
601 extern ssize_t fb_sys_read(struct fb_info *info, char __user *buf,
603 extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
607 extern int register_framebuffer(struct fb_info *fb_info);
608 extern void unregister_framebuffer(struct fb_info *fb_info);
613 extern int fb_prepare_logo(struct fb_info *fb_info, int rotate);
614 extern int fb_show_logo(struct fb_info *fb_info, int rotate);
615 extern char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size);
619 extern void fb_set_suspend(struct fb_info *info, int state);
623 extern int fb_new_modelist(struct fb_info *info);
625 extern struct fb_info *registered_fb[FB_MAX];
635 static inline void lock_fb_info(struct fb_info *info) in lock_fb_info()
640 static inline void unlock_fb_info(struct fb_info *info) in unlock_fb_info()
661 int fb_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma);
662 extern void fb_deferred_io_init(struct fb_info *info);
663 extern void fb_deferred_io_open(struct fb_info *info,
666 extern void fb_deferred_io_cleanup(struct fb_info *info);
670 static inline bool fb_be_math(struct fb_info *info) in fb_be_math()
690 extern struct fb_info *framebuffer_alloc(size_t size, struct device *dev);
691 extern void framebuffer_release(struct fb_info *info);
692 extern int fb_init_device(struct fb_info *fb_info);
693 extern void fb_cleanup_device(struct fb_info *head);
694 extern void fb_bl_default_curve(struct fb_info *fb_info, u8 off, u8 min, u8 max);
711 extern int fbmon_dpms(const struct fb_info *fb_info);
713 struct fb_info *info);
715 struct fb_info *info);
762 extern int fb_set_cmap(struct fb_cmap *cmap, struct fb_info *fb_info);
763 extern int fb_set_user_cmap(struct fb_cmap_user *cmap, struct fb_info *fb_info);
801 struct fb_info *info, const char *mode_option,
808 #define fb_err(fb_info, fmt, ...) \ argument
809 pr_err("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
811 pr_notice("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
812 #define fb_warn(fb_info, fmt, ...) \ argument
813 pr_warn("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
814 #define fb_info(fb_info, fmt, ...) \ argument
815 pr_info("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
816 #define fb_dbg(fb_info, fmt, ...) \ argument
817 pr_debug("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)