Lines Matching refs:fb_info
20 struct fb_info;
140 struct fb_info *info;
198 void (*writeio)(struct fb_info *info, void __iomem *dst, void *src, unsigned int size);
199 void (*readio) (struct fb_info *info, void *dst, void __iomem *src, unsigned int size);
209 void (*first_io)(struct fb_info *info);
210 void (*deferred_io)(struct fb_info *info, struct list_head *pagelist);
231 int (*fb_open)(struct fb_info *info, int user);
232 int (*fb_release)(struct fb_info *info, int user);
237 ssize_t (*fb_read)(struct fb_info *info, char __user *buf,
239 ssize_t (*fb_write)(struct fb_info *info, const char __user *buf,
244 int (*fb_check_var)(struct fb_var_screeninfo *var, struct fb_info *info);
247 int (*fb_set_par)(struct fb_info *info);
251 unsigned blue, unsigned transp, struct fb_info *info);
254 int (*fb_setcmap)(struct fb_cmap *cmap, struct fb_info *info);
257 int (*fb_blank)(int blank, struct fb_info *info);
260 int (*fb_pan_display)(struct fb_var_screeninfo *var, struct fb_info *info);
263 void (*fb_fillrect) (struct fb_info *info, const struct fb_fillrect *rect);
265 void (*fb_copyarea) (struct fb_info *info, const struct fb_copyarea *region);
267 void (*fb_imageblit) (struct fb_info *info, const struct fb_image *image);
270 int (*fb_cursor) (struct fb_info *info, struct fb_cursor *cursor);
273 int (*fb_sync)(struct fb_info *info);
276 int (*fb_ioctl)(struct fb_info *info, unsigned int cmd,
280 int (*fb_compat_ioctl)(struct fb_info *info, unsigned cmd,
284 int (*fb_mmap)(struct fb_info *info, struct vm_area_struct *vma);
287 void (*fb_get_caps)(struct fb_info *info, struct fb_blit_caps *caps,
291 void (*fb_destroy)(struct fb_info *info);
294 int (*fb_debug_enter)(struct fb_info *info);
295 int (*fb_debug_leave)(struct fb_info *info);
357 void (*fb_settile)(struct fb_info *info, struct fb_tilemap *map);
362 void (*fb_tilecopy)(struct fb_info *info, struct fb_tilearea *area);
364 void (*fb_tilefill)(struct fb_info *info, struct fb_tilerect *rect);
366 void (*fb_tileblit)(struct fb_info *info, struct fb_tileblit *blit);
368 void (*fb_tilecursor)(struct fb_info *info,
371 int (*fb_get_tilemax)(struct fb_info *info);
437 struct fb_info { struct
588 extern int fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var);
589 extern int fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var);
590 extern int fb_blank(struct fb_info *info, int blank);
591 extern void cfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
592 extern void cfb_copyarea(struct fb_info *info, const struct fb_copyarea *area);
593 extern void cfb_imageblit(struct fb_info *info, const struct fb_image *image);
597 extern void sys_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
598 extern void sys_copyarea(struct fb_info *info, const struct fb_copyarea *area);
599 extern void sys_imageblit(struct fb_info *info, const struct fb_image *image);
600 extern ssize_t fb_sys_read(struct fb_info *info, char __user *buf,
602 extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
606 extern int register_framebuffer(struct fb_info *fb_info);
607 extern void unregister_framebuffer(struct fb_info *fb_info);
612 extern int fb_prepare_logo(struct fb_info *fb_info, int rotate);
613 extern int fb_show_logo(struct fb_info *fb_info, int rotate);
614 extern char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size);
618 extern void fb_set_suspend(struct fb_info *info, int state);
622 extern int fb_new_modelist(struct fb_info *info);
624 extern struct fb_info *registered_fb[FB_MAX];
634 static inline void lock_fb_info(struct fb_info *info) in lock_fb_info()
639 static inline void unlock_fb_info(struct fb_info *info) in unlock_fb_info()
660 int fb_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma);
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);
761 extern int fb_set_cmap(struct fb_cmap *cmap, struct fb_info *fb_info);
762 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__)