123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /*
- * linux/drivers/video/omap2/omapfb.h
- *
- * Copyright (C) 2008 Nokia Corporation
- * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
- *
- * Some code and ideas taken from drivers/video/omap/ driver
- * by Imre Deak.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef __DRIVERS_VIDEO_OMAP2_OMAPFB_H__
- #define __DRIVERS_VIDEO_OMAP2_OMAPFB_H__
- #ifdef CONFIG_FB_OMAP2_DEBUG_SUPPORT
- #define DEBUG
- #endif
- #include <plat/display.h>
- #ifdef DEBUG
- extern unsigned int omapfb_debug;
- #define DBG(format, ...) \
- if (omapfb_debug) \
- printk(KERN_DEBUG "OMAPFB: " format, ## __VA_ARGS__)
- #else
- #define DBG(format, ...)
- #endif
- #define FB2OFB(fb_info) ((struct omapfb_info *)(fb_info->par))
- /* max number of overlays to which a framebuffer data can be direct */
- #define OMAPFB_MAX_OVL_PER_FB 3
- struct omapfb2_mem_region {
- u32 paddr;
- void __iomem *vaddr;
- struct vrfb vrfb;
- unsigned long size;
- u8 type; /* OMAPFB_PLANE_MEM_* */
- bool alloc; /* allocated by the driver */
- bool map; /* kernel mapped by the driver */
- };
- /* appended to fb_info */
- struct omapfb_info {
- int id;
- struct omapfb2_mem_region region;
- atomic_t map_count;
- int num_overlays;
- struct omap_overlay *overlays[OMAPFB_MAX_OVL_PER_FB];
- struct omapfb2_device *fbdev;
- enum omap_dss_rotation_type rotation_type;
- u8 rotation[OMAPFB_MAX_OVL_PER_FB];
- bool mirror;
- };
- struct omapfb2_device {
- struct device *dev;
- struct mutex mtx;
- u32 pseudo_palette[17];
- int state;
- unsigned num_fbs;
- struct fb_info *fbs[10];
- unsigned num_displays;
- struct omap_dss_device *displays[10];
- unsigned num_overlays;
- struct omap_overlay *overlays[10];
- unsigned num_managers;
- struct omap_overlay_manager *managers[10];
- };
- struct omapfb_colormode {
- enum omap_color_mode dssmode;
- u32 bits_per_pixel;
- u32 nonstd;
- struct fb_bitfield red;
- struct fb_bitfield green;
- struct fb_bitfield blue;
- struct fb_bitfield transp;
- };
- void set_fb_fix(struct fb_info *fbi);
- int check_fb_var(struct fb_info *fbi, struct fb_var_screeninfo *var);
- int omapfb_realloc_fbmem(struct fb_info *fbi, unsigned long size, int type);
- int omapfb_apply_changes(struct fb_info *fbi, int init);
- int omapfb_create_sysfs(struct omapfb2_device *fbdev);
- void omapfb_remove_sysfs(struct omapfb2_device *fbdev);
- int omapfb_ioctl(struct fb_info *fbi, unsigned int cmd, unsigned long arg);
- int dss_mode_to_fb_mode(enum omap_color_mode dssmode,
- struct fb_var_screeninfo *var);
- /* find the display connected to this fb, if any */
- static inline struct omap_dss_device *fb2display(struct fb_info *fbi)
- {
- struct omapfb_info *ofbi = FB2OFB(fbi);
- int i;
- /* XXX: returns the display connected to first attached overlay */
- for (i = 0; i < ofbi->num_overlays; i++) {
- if (ofbi->overlays[i]->manager)
- return ofbi->overlays[i]->manager->device;
- }
- return NULL;
- }
- static inline void omapfb_lock(struct omapfb2_device *fbdev)
- {
- mutex_lock(&fbdev->mtx);
- }
- static inline void omapfb_unlock(struct omapfb2_device *fbdev)
- {
- mutex_unlock(&fbdev->mtx);
- }
- static inline int omapfb_overlay_enable(struct omap_overlay *ovl,
- int enable)
- {
- struct omap_overlay_info info;
- ovl->get_overlay_info(ovl, &info);
- info.enabled = enable;
- return ovl->set_overlay_info(ovl, &info);
- }
- #endif
|