Lines Matching refs:fb_info

22 struct fb_info;
142 struct fb_info *info;
200 void (*writeio)(struct fb_info *info, void __iomem *dst, void *src, unsigned int size);
201 void (*readio) (struct fb_info *info, void *dst, void __iomem *src, unsigned int size);
220 void (*deferred_io)(struct fb_info *info, struct list_head *pagelist);
241 int (*fb_open)(struct fb_info *info, int user);
242 int (*fb_release)(struct fb_info *info, int user);
247 ssize_t (*fb_read)(struct fb_info *info, char __user *buf,
249 ssize_t (*fb_write)(struct fb_info *info, const char __user *buf,
254 int (*fb_check_var)(struct fb_var_screeninfo *var, struct fb_info *info);
257 int (*fb_set_par)(struct fb_info *info);
261 unsigned blue, unsigned transp, struct fb_info *info);
264 int (*fb_setcmap)(struct fb_cmap *cmap, struct fb_info *info);
267 int (*fb_blank)(int blank, struct fb_info *info);
270 int (*fb_pan_display)(struct fb_var_screeninfo *var, struct fb_info *info);
273 void (*fb_fillrect) (struct fb_info *info, const struct fb_fillrect *rect);
275 void (*fb_copyarea) (struct fb_info *info, const struct fb_copyarea *region);
277 void (*fb_imageblit) (struct fb_info *info, const struct fb_image *image);
280 int (*fb_cursor) (struct fb_info *info, struct fb_cursor *cursor);
283 int (*fb_sync)(struct fb_info *info);
286 int (*fb_ioctl)(struct fb_info *info, unsigned int cmd,
290 int (*fb_compat_ioctl)(struct fb_info *info, unsigned cmd,
294 int (*fb_mmap)(struct fb_info *info, struct vm_area_struct *vma);
297 void (*fb_get_caps)(struct fb_info *info, struct fb_blit_caps *caps,
301 void (*fb_destroy)(struct fb_info *info);
304 int (*fb_debug_enter)(struct fb_info *info);
305 int (*fb_debug_leave)(struct fb_info *info);
367 void (*fb_settile)(struct fb_info *info, struct fb_tilemap *map);
372 void (*fb_tilecopy)(struct fb_info *info, struct fb_tilearea *area);
374 void (*fb_tilefill)(struct fb_info *info, struct fb_tilerect *rect);
376 void (*fb_tileblit)(struct fb_info *info, struct fb_tileblit *blit);
378 void (*fb_tilecursor)(struct fb_info *info,
381 int (*fb_get_tilemax)(struct fb_info *info);
444 struct fb_info { struct
524 extern int fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var); argument
525 extern int fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var);
526 extern int fb_blank(struct fb_info *info, int blank);
532 extern void cfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
533 extern void cfb_copyarea(struct fb_info *info, const struct fb_copyarea *area);
534 extern void cfb_imageblit(struct fb_info *info, const struct fb_image *image);
535 extern ssize_t fb_io_read(struct fb_info *info, char __user *buf,
537 extern ssize_t fb_io_write(struct fb_info *info, const char __user *buf,
561 extern void sys_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
562 extern void sys_copyarea(struct fb_info *info, const struct fb_copyarea *area);
563 extern void sys_imageblit(struct fb_info *info, const struct fb_image *image);
564 extern ssize_t fb_sys_read(struct fb_info *info, char __user *buf,
566 extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
592 extern int register_framebuffer(struct fb_info *fb_info);
593 extern void unregister_framebuffer(struct fb_info *fb_info);
594 extern int fb_prepare_logo(struct fb_info *fb_info, int rotate);
595 extern int fb_show_logo(struct fb_info *fb_info, int rotate);
596 extern char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size);
600 extern void fb_set_suspend(struct fb_info *info, int state);
604 extern int fb_new_modelist(struct fb_info *info);
609 static inline void lock_fb_info(struct fb_info *info) in lock_fb_info()
614 static inline void unlock_fb_info(struct fb_info *info) in unlock_fb_info()
635 int fb_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma);
636 extern int fb_deferred_io_init(struct fb_info *info);
637 extern void fb_deferred_io_open(struct fb_info *info,
640 extern void fb_deferred_io_release(struct fb_info *info);
641 extern void fb_deferred_io_cleanup(struct fb_info *info);
650 static ssize_t __prefix ## _defio_read(struct fb_info *info, char __user *buf, \
655 static ssize_t __prefix ## _defio_write(struct fb_info *info, const char __user *buf, \
666 static void __prefix ## _defio_fillrect(struct fb_info *info, \
672 static void __prefix ## _defio_copyarea(struct fb_info *info, \
678 static void __prefix ## _defio_imageblit(struct fb_info *info, \
714 static inline bool fb_be_math(struct fb_info *info) in fb_be_math()
733 extern struct fb_info *framebuffer_alloc(size_t size, struct device *dev);
734 extern void framebuffer_release(struct fb_info *info);
735 extern void fb_bl_default_curve(struct fb_info *fb_info, u8 off, u8 min, u8 max);
752 extern int fbmon_dpms(const struct fb_info *fb_info);
754 struct fb_info *info);
756 struct fb_info *info);
803 extern int fb_set_cmap(struct fb_cmap *cmap, struct fb_info *fb_info);
804 extern int fb_set_user_cmap(struct fb_cmap_user *cmap, struct fb_info *fb_info);
841 struct fb_info *info, const char *mode_option,
857 #define fb_err(fb_info, fmt, ...) \ argument
858 pr_err("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
860 pr_notice("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
861 #define fb_warn(fb_info, fmt, ...) \ argument
862 pr_warn("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
863 #define fb_info(fb_info, fmt, ...) \ macro
864 pr_info("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
865 #define fb_dbg(fb_info, fmt, ...) \ argument
866 pr_debug("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)