📄 leo.c
字号:
/* leo.c: LEO frame buffer driver * * Copyright (C) 2003, 2006 David S. Miller (davem@davemloft.net) * Copyright (C) 1996-1999 Jakub Jelinek (jj@ultra.linux.cz) * Copyright (C) 1997 Michal Rehacek (Michal.Rehacek@st.mff.cuni.cz) * * Driver layout based loosely on tgafb.c, see that file for credits. */#include <linux/module.h>#include <linux/kernel.h>#include <linux/errno.h>#include <linux/string.h>#include <linux/slab.h>#include <linux/delay.h>#include <linux/init.h>#include <linux/fb.h>#include <linux/mm.h>#include <asm/io.h>#include <asm/prom.h>#include <asm/of_device.h>#include <asm/fbio.h>#include "sbuslib.h"/* * Local functions. */static int leo_setcolreg(unsigned, unsigned, unsigned, unsigned, unsigned, struct fb_info *);static int leo_blank(int, struct fb_info *);static int leo_mmap(struct fb_info *, struct vm_area_struct *);static int leo_ioctl(struct fb_info *, unsigned int, unsigned long);static int leo_pan_display(struct fb_var_screeninfo *, struct fb_info *);/* * Frame buffer operations */static struct fb_ops leo_ops = { .owner = THIS_MODULE, .fb_setcolreg = leo_setcolreg, .fb_blank = leo_blank, .fb_pan_display = leo_pan_display, .fb_fillrect = cfb_fillrect, .fb_copyarea = cfb_copyarea, .fb_imageblit = cfb_imageblit, .fb_mmap = leo_mmap, .fb_ioctl = leo_ioctl,#ifdef CONFIG_COMPAT .fb_compat_ioctl = sbusfb_compat_ioctl,#endif};#define LEO_OFF_LC_SS0_KRN 0x00200000UL#define LEO_OFF_LC_SS0_USR 0x00201000UL#define LEO_OFF_LC_SS1_KRN 0x01200000UL#define LEO_OFF_LC_SS1_USR 0x01201000UL#define LEO_OFF_LD_SS0 0x00400000UL#define LEO_OFF_LD_SS1 0x01400000UL#define LEO_OFF_LD_GBL 0x00401000UL#define LEO_OFF_LX_KRN 0x00600000UL#define LEO_OFF_LX_CURSOR 0x00601000UL#define LEO_OFF_SS0 0x00800000UL#define LEO_OFF_SS1 0x01800000UL#define LEO_OFF_UNK 0x00602000UL#define LEO_OFF_UNK2 0x00000000UL#define LEO_CUR_ENABLE 0x00000080#define LEO_CUR_UPDATE 0x00000030#define LEO_CUR_PROGRESS 0x00000006#define LEO_CUR_UPDATECMAP 0x00000003#define LEO_CUR_TYPE_MASK 0x00000000#define LEO_CUR_TYPE_IMAGE 0x00000020#define LEO_CUR_TYPE_CMAP 0x00000050struct leo_cursor { u8 xxx0[16]; u32 cur_type; u32 cur_misc; u32 cur_cursxy; u32 cur_data;};#define LEO_KRN_TYPE_CLUT0 0x00001000#define LEO_KRN_TYPE_CLUT1 0x00001001#define LEO_KRN_TYPE_CLUT2 0x00001002#define LEO_KRN_TYPE_WID 0x00001003#define LEO_KRN_TYPE_UNK 0x00001006#define LEO_KRN_TYPE_VIDEO 0x00002003#define LEO_KRN_TYPE_CLUTDATA 0x00004000#define LEO_KRN_CSR_ENABLE 0x00000008#define LEO_KRN_CSR_PROGRESS 0x00000004#define LEO_KRN_CSR_UNK 0x00000002#define LEO_KRN_CSR_UNK2 0x00000001struct leo_lx_krn { u32 krn_type; u32 krn_csr; u32 krn_value;};struct leo_lc_ss0_krn { u32 misc; u8 xxx0[0x800-4]; u32 rev;};struct leo_lc_ss0_usr { u32 csr; u32 addrspace; u32 fontmsk; u32 fontt; u32 extent; u32 src; u32 dst; u32 copy; u32 fill;};struct leo_lc_ss1_krn { u8 unknown;};struct leo_lc_ss1_usr { u8 unknown;};struct leo_ld { u8 xxx0[0xe00]; u32 csr; u32 wid; u32 wmask; u32 widclip; u32 vclipmin; u32 vclipmax; u32 pickmin; /* SS1 only */ u32 pickmax; /* SS1 only */ u32 fg; u32 bg; u32 src; /* Copy/Scroll (SS0 only) */ u32 dst; /* Copy/Scroll/Fill (SS0 only) */ u32 extent; /* Copy/Scroll/Fill size (SS0 only) */ u32 xxx1[3]; u32 setsem; /* SS1 only */ u32 clrsem; /* SS1 only */ u32 clrpick; /* SS1 only */ u32 clrdat; /* SS1 only */ u32 alpha; /* SS1 only */ u8 xxx2[0x2c]; u32 winbg; u32 planemask; u32 rop; u32 z; u32 dczf; /* SS1 only */ u32 dczb; /* SS1 only */ u32 dcs; /* SS1 only */ u32 dczs; /* SS1 only */ u32 pickfb; /* SS1 only */ u32 pickbb; /* SS1 only */ u32 dcfc; /* SS1 only */ u32 forcecol; /* SS1 only */ u32 door[8]; /* SS1 only */ u32 pick[5]; /* SS1 only */};#define LEO_SS1_MISC_ENABLE 0x00000001#define LEO_SS1_MISC_STEREO 0x00000002struct leo_ld_ss1 { u8 xxx0[0xef4]; u32 ss1_misc;};struct leo_ld_gbl { u8 unknown;};struct leo_par { spinlock_t lock; struct leo_lx_krn __iomem *lx_krn; struct leo_lc_ss0_usr __iomem *lc_ss0_usr; struct leo_ld_ss0 __iomem *ld_ss0; struct leo_ld_ss1 __iomem *ld_ss1; struct leo_cursor __iomem *cursor; u32 extent; u32 clut_data[256]; u32 flags;#define LEO_FLAG_BLANKED 0x00000001 unsigned long physbase; unsigned long which_io; unsigned long fbsize;};static void leo_wait(struct leo_lx_krn __iomem *lx_krn){ int i; for (i = 0; (sbus_readl(&lx_krn->krn_csr) & LEO_KRN_CSR_PROGRESS) && i < 300000; i++) udelay (1); /* Busy wait at most 0.3 sec */ return;}/** * leo_setcolreg - Optional function. Sets a color register. * @regno: boolean, 0 copy local, 1 get_user() function * @red: frame buffer colormap structure * @green: The green value which can be up to 16 bits wide * @blue: The blue value which can be up to 16 bits wide. * @transp: If supported the alpha value which can be up to 16 bits wide. * @info: frame buffer info structure */static int leo_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue, unsigned transp, struct fb_info *info){ struct leo_par *par = (struct leo_par *) info->par; struct leo_lx_krn __iomem *lx_krn = par->lx_krn; unsigned long flags; u32 val; int i; if (regno >= 256) return 1; red >>= 8; green >>= 8; blue >>= 8; par->clut_data[regno] = red | (green << 8) | (blue << 16); spin_lock_irqsave(&par->lock, flags); leo_wait(lx_krn); sbus_writel(LEO_KRN_TYPE_CLUTDATA, &lx_krn->krn_type); for (i = 0; i < 256; i++) sbus_writel(par->clut_data[i], &lx_krn->krn_value); sbus_writel(LEO_KRN_TYPE_CLUT0, &lx_krn->krn_type); val = sbus_readl(&lx_krn->krn_csr); val |= (LEO_KRN_CSR_UNK | LEO_KRN_CSR_UNK2); sbus_writel(val, &lx_krn->krn_csr); spin_unlock_irqrestore(&par->lock, flags); return 0;}/** * leo_blank - Optional function. Blanks the display. * @blank_mode: the blank mode we want. * @info: frame buffer structure that represents a single frame buffer */static int leo_blank(int blank, struct fb_info *info){ struct leo_par *par = (struct leo_par *) info->par; struct leo_lx_krn __iomem *lx_krn = par->lx_krn; unsigned long flags; u32 val; spin_lock_irqsave(&par->lock, flags); switch (blank) { case FB_BLANK_UNBLANK: /* Unblanking */ val = sbus_readl(&lx_krn->krn_csr); val |= LEO_KRN_CSR_ENABLE; sbus_writel(val, &lx_krn->krn_csr); par->flags &= ~LEO_FLAG_BLANKED; break; case FB_BLANK_NORMAL: /* Normal blanking */ case FB_BLANK_VSYNC_SUSPEND: /* VESA blank (vsync off) */ case FB_BLANK_HSYNC_SUSPEND: /* VESA blank (hsync off) */ case FB_BLANK_POWERDOWN: /* Poweroff */ val = sbus_readl(&lx_krn->krn_csr); val &= ~LEO_KRN_CSR_ENABLE; sbus_writel(val, &lx_krn->krn_csr); par->flags |= LEO_FLAG_BLANKED; break; } spin_unlock_irqrestore(&par->lock, flags); return 0;}static struct sbus_mmap_map leo_mmap_map[] = { { .voff = LEO_SS0_MAP, .poff = LEO_OFF_SS0, .size = 0x800000 }, { .voff = LEO_LC_SS0_USR_MAP, .poff = LEO_OFF_LC_SS0_USR, .size = 0x1000 }, { .voff = LEO_LD_SS0_MAP, .poff = LEO_OFF_LD_SS0, .size = 0x1000 }, { .voff = LEO_LX_CURSOR_MAP, .poff = LEO_OFF_LX_CURSOR, .size = 0x1000 }, { .voff = LEO_SS1_MAP, .poff = LEO_OFF_SS1, .size = 0x800000 }, { .voff = LEO_LC_SS1_USR_MAP, .poff = LEO_OFF_LC_SS1_USR, .size = 0x1000 }, { .voff = LEO_LD_SS1_MAP, .poff = LEO_OFF_LD_SS1, .size = 0x1000 }, { .voff = LEO_UNK_MAP, .poff = LEO_OFF_UNK, .size = 0x1000 }, { .voff = LEO_LX_KRN_MAP, .poff = LEO_OFF_LX_KRN, .size = 0x1000 }, { .voff = LEO_LC_SS0_KRN_MAP, .poff = LEO_OFF_LC_SS0_KRN,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -