fbcon.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:69k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/video/fbcon.c -- Low level frame buffer based console driver
  3.  *
  4.  * Copyright (C) 1995 Geert Uytterhoeven
  5.  *
  6.  *
  7.  *  This file is based on the original Amiga console driver (amicon.c):
  8.  *
  9.  * Copyright (C) 1993 Hamish Macdonald
  10.  *    Greg Harp
  11.  * Copyright (C) 1994 David Carter [carter@compsci.bristol.ac.uk]
  12.  *
  13.  *       with work by William Rucklidge (wjr@cs.cornell.edu)
  14.  *    Geert Uytterhoeven
  15.  *    Jes Sorensen (jds@kom.auc.dk)
  16.  *    Martin Apel
  17.  *
  18.  *  and on the original Atari console driver (atacon.c):
  19.  *
  20.  * Copyright (C) 1993 Bjoern Brauel
  21.  *    Roman Hodek
  22.  *
  23.  *       with work by Guenther Kelleter
  24.  *    Martin Schaller
  25.  *    Andreas Schwab
  26.  *
  27.  *  Hardware cursor support added by Emmanuel Marty (core@ggi-project.org)
  28.  *  Smart redraw scrolling, arbitrary font width support, 512char font support
  29.  *  and software scrollback added by 
  30.  *                         Jakub Jelinek (jj@ultra.linux.cz)
  31.  *
  32.  *  Random hacking by Martin Mares <mj@ucw.cz>
  33.  *
  34.  * 2001 - Documented with DocBook
  35.  * - Brad Douglas <brad@neruo.com>
  36.  *
  37.  *  The low level operations for the various display memory organizations are
  38.  *  now in separate source files.
  39.  *
  40.  *  Currently the following organizations are supported:
  41.  *
  42.  *    o afb Amiga bitplanes
  43.  *    o cfb{2,4,8,16,24,32} Packed pixels
  44.  *    o ilbm Amiga interleaved bitplanes
  45.  *    o iplan2p[248] Atari interleaved bitplanes
  46.  *    o mfb Monochrome
  47.  *    o vga VGA characters/attributes
  48.  *
  49.  *  To do:
  50.  *
  51.  *    - Implement 16 plane mode (iplan2p16)
  52.  *
  53.  *
  54.  *  This file is subject to the terms and conditions of the GNU General Public
  55.  *  License.  See the file COPYING in the main directory of this archive for
  56.  *  more details.
  57.  */
  58. #undef FBCONDEBUG
  59. #include <linux/config.h>
  60. #include <linux/module.h>
  61. #include <linux/types.h>
  62. #include <linux/sched.h>
  63. #include <linux/fs.h>
  64. #include <linux/kernel.h>
  65. #include <linux/delay.h> /* MSch: for IRQ probe */
  66. #include <linux/tty.h>
  67. #include <linux/console.h>
  68. #include <linux/string.h>
  69. #include <linux/kd.h>
  70. #include <linux/slab.h>
  71. #include <linux/fb.h>
  72. #include <linux/vt_kern.h>
  73. #include <linux/selection.h>
  74. #include <linux/smp.h>
  75. #include <linux/init.h>
  76. #include <linux/pm.h>
  77. #include <asm/irq.h>
  78. #include <asm/system.h>
  79. #include <asm/uaccess.h>
  80. #ifdef CONFIG_AMIGA
  81. #include <asm/amigahw.h>
  82. #include <asm/amigaints.h>
  83. #endif /* CONFIG_AMIGA */
  84. #ifdef CONFIG_ATARI
  85. #include <asm/atariints.h>
  86. #endif
  87. #ifdef CONFIG_MAC
  88. #include <asm/macints.h>
  89. #endif
  90. #if defined(__mc68000__) || defined(CONFIG_APUS)
  91. #include <asm/machdep.h>
  92. #include <asm/setup.h>
  93. #endif
  94. #ifdef CONFIG_FBCON_VGA_PLANES
  95. #include <asm/io.h>
  96. #endif
  97. #define INCLUDE_LINUX_LOGO_DATA
  98. #include <asm/linux_logo.h>
  99. #include <video/fbcon.h>
  100. #include <video/fbcon-mac.h> /* for 6x11 font on mac */
  101. #include <video/font.h>
  102. #ifdef FBCONDEBUG
  103. #  define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __FUNCTION__ , ## args)
  104. #else
  105. #  define DPRINTK(fmt, args...)
  106. #endif
  107. #define LOGO_H 80
  108. #define LOGO_W 80
  109. #define LOGO_LINE (LOGO_W/8)
  110. struct display fb_display[MAX_NR_CONSOLES];
  111. char con2fb_map[MAX_NR_CONSOLES];
  112. static int logo_lines;
  113. static int logo_shown = -1;
  114. /* Software scrollback */
  115. int fbcon_softback_size = 32768;
  116. static unsigned long softback_buf, softback_curr;
  117. static unsigned long softback_in;
  118. static unsigned long softback_top, softback_end;
  119. static int softback_lines;
  120. #define REFCOUNT(fd) (((int *)(fd))[-1])
  121. #define FNTSIZE(fd) (((int *)(fd))[-2])
  122. #define FNTCHARCNT(fd) (((int *)(fd))[-3])
  123. #define FNTSUM(fd) (((int *)(fd))[-4])
  124. #define FONT_EXTRA_WORDS 4
  125. #define CM_SOFTBACK (8)
  126. #define advance_row(p, delta) (unsigned short *)((unsigned long)(p) + (delta) * conp->vc_size_row)
  127. static void fbcon_free_font(struct display *);
  128. static int fbcon_set_origin(struct vc_data *);
  129. #ifdef CONFIG_PM
  130. static int pm_fbcon_request(struct pm_dev *dev, pm_request_t rqst, void *data);
  131. static struct pm_dev *pm_fbcon;
  132. static int fbcon_sleeping;
  133. #endif
  134. /*
  135.  * Emmanuel: fbcon will now use a hardware cursor if the
  136.  * low-level driver provides a non-NULL dispsw->cursor pointer,
  137.  * in which case the hardware should do blinking, etc.
  138.  *
  139.  * if dispsw->cursor is NULL, use Atari alike software cursor
  140.  */
  141. static int cursor_drawn;
  142. #define CURSOR_DRAW_DELAY (1)
  143. /* # VBL ints between cursor state changes */
  144. #define ARM_CURSOR_BLINK_RATE (10)
  145. #define AMIGA_CURSOR_BLINK_RATE (20)
  146. #define ATARI_CURSOR_BLINK_RATE (42)
  147. #define MAC_CURSOR_BLINK_RATE (32)
  148. #define DEFAULT_CURSOR_BLINK_RATE (20)
  149. static int vbl_cursor_cnt;
  150. static int cursor_on;
  151. static int cursor_blink_rate;
  152. static inline void cursor_undrawn(void)
  153. {
  154.     vbl_cursor_cnt = 0;
  155.     cursor_drawn = 0;
  156. }
  157. #define divides(a, b) ((!(a) || (b)%(a)) ? 0 : 1)
  158. /*
  159.  *  Interface used by the world
  160.  */
  161. static const char *fbcon_startup(void);
  162. static void fbcon_init(struct vc_data *conp, int init);
  163. static void fbcon_deinit(struct vc_data *conp);
  164. static int fbcon_changevar(int con);
  165. static void fbcon_clear(struct vc_data *conp, int sy, int sx, int height,
  166.        int width);
  167. static void fbcon_putc(struct vc_data *conp, int c, int ypos, int xpos);
  168. static void fbcon_putcs(struct vc_data *conp, const unsigned short *s, int count,
  169. int ypos, int xpos);
  170. static void fbcon_cursor(struct vc_data *conp, int mode);
  171. static int fbcon_scroll(struct vc_data *conp, int t, int b, int dir,
  172.  int count);
  173. static void fbcon_bmove(struct vc_data *conp, int sy, int sx, int dy, int dx,
  174. int height, int width);
  175. static int fbcon_switch(struct vc_data *conp);
  176. static int fbcon_blank(struct vc_data *conp, int blank);
  177. static int fbcon_font_op(struct vc_data *conp, struct console_font_op *op);
  178. static int fbcon_set_palette(struct vc_data *conp, unsigned char *table);
  179. static int fbcon_scrolldelta(struct vc_data *conp, int lines);
  180. /*
  181.  *  Internal routines
  182.  */
  183. static void fbcon_setup(int con, int init, int logo);
  184. static __inline__ int real_y(struct display *p, int ypos);
  185. static void fbcon_vbl_handler(int irq, void *dummy, struct pt_regs *fp);
  186. static __inline__ void updatescrollmode(struct display *p);
  187. static __inline__ void ywrap_up(int unit, struct vc_data *conp,
  188. struct display *p, int count);
  189. static __inline__ void ywrap_down(int unit, struct vc_data *conp,
  190.   struct display *p, int count);
  191. static __inline__ void ypan_up(int unit, struct vc_data *conp,
  192.        struct display *p, int count);
  193. static __inline__ void ypan_down(int unit, struct vc_data *conp,
  194.  struct display *p, int count);
  195. static void fbcon_bmove_rec(struct display *p, int sy, int sx, int dy, int dx,
  196.     int height, int width, u_int y_break);
  197. static int fbcon_show_logo(void);
  198. #ifdef CONFIG_MAC
  199. /*
  200.  * On the Macintoy, there may or may not be a working VBL int. We need to probe
  201.  */
  202. static int vbl_detected;
  203. static void fbcon_vbl_detect(int irq, void *dummy, struct pt_regs *fp)
  204. {
  205.       vbl_detected++;
  206. }
  207. #endif
  208. static void cursor_timer_handler(unsigned long dev_addr);
  209. static struct timer_list cursor_timer = {
  210.     function: cursor_timer_handler
  211. };
  212. static int use_timer_cursor;
  213. static void cursor_timer_handler(unsigned long dev_addr)
  214. {
  215.       fbcon_vbl_handler(0, NULL, NULL);
  216.       cursor_timer.expires = jiffies+HZ/50;
  217.       add_timer(&cursor_timer);
  218. }
  219. /**
  220.  * PROC_CONSOLE - find the attached tty or visible console
  221.  * @info: frame buffer info structure
  222.  *
  223.  * Finds the tty attached to the process or visible console if
  224.  * the process is not directly attached to a tty (e.g. remote
  225.  * user) for device @info.
  226.  *
  227.  * Returns -1 errno on error, or tty/visible console number
  228.  * on success.
  229.  *
  230.  */
  231. int PROC_CONSOLE(const struct fb_info *info)
  232. {
  233.         int fgc;
  234.         
  235.         if (info->display_fg != NULL)
  236.                 fgc = info->display_fg->vc_num;
  237.         else
  238.                 return -1;
  239.                 
  240.         if (!current->tty)
  241.                 return fgc;
  242.         if (current->tty->driver.type != TTY_DRIVER_TYPE_CONSOLE)
  243.                 /* XXX Should report error here? */
  244.                 return fgc;
  245.         if (MINOR(current->tty->device) < 1)
  246.                 return fgc;
  247.         return MINOR(current->tty->device) - 1;
  248. }
  249. /**
  250.  * set_all_vcs - set all virtual consoles to match
  251.  * @fbidx: frame buffer index (e.g. fb0, fb1, ...)
  252.  * @fb: frame buffer ops structure
  253.  * @var: frame buffer screen structure to set
  254.  * @info: frame buffer info structure
  255.  *
  256.  * Set all virtual consoles to match screen info set in @var
  257.  * for device @info.
  258.  *
  259.  * Returns negative errno on error, or zero on success.
  260.  *
  261.  */
  262. int set_all_vcs(int fbidx, struct fb_ops *fb, struct fb_var_screeninfo *var,
  263.                 struct fb_info *info)
  264. {
  265.     int unit, err;
  266.     var->activate |= FB_ACTIVATE_TEST;
  267.     err = fb->fb_set_var(var, PROC_CONSOLE(info), info);
  268.     var->activate &= ~FB_ACTIVATE_TEST;
  269.     if (err)
  270.             return err;
  271.     for (unit = 0; unit < MAX_NR_CONSOLES; unit++)
  272.             if (fb_display[unit].conp && con2fb_map[unit] == fbidx)
  273.                     fb->fb_set_var(var, unit, info);
  274.     return 0;
  275. }
  276. /**
  277.  * set_con2fb_map - map console to frame buffer device
  278.  * @unit: virtual console number to map
  279.  * @newidx: frame buffer index to map virtual console to
  280.  *
  281.  * Maps a virtual console @unit to a frame buffer device
  282.  * @newidx.
  283.  *
  284.  */
  285. void set_con2fb_map(int unit, int newidx)
  286. {
  287.     int oldidx = con2fb_map[unit];
  288.     struct fb_info *oldfb, *newfb;
  289.     struct vc_data *conp;
  290.     char *fontdata;
  291.     unsigned short fontwidth, fontheight, fontwidthlog, fontheightlog;
  292.     int userfont;
  293.     if (newidx != con2fb_map[unit]) {
  294.        oldfb = registered_fb[oldidx];
  295.        newfb = registered_fb[newidx];
  296. if (newfb->fbops->owner)
  297. __MOD_INC_USE_COUNT(newfb->fbops->owner);
  298. if (newfb->fbops->fb_open && newfb->fbops->fb_open(newfb,0)) {
  299. if (newfb->fbops->owner)
  300. __MOD_DEC_USE_COUNT(newfb->fbops->owner);
  301. return;
  302. }
  303. if (oldfb->fbops->fb_release)
  304. oldfb->fbops->fb_release(oldfb,0);
  305. if (oldfb->fbops->owner)
  306. __MOD_DEC_USE_COUNT(oldfb->fbops->owner);
  307.        conp = fb_display[unit].conp;
  308.        fontdata = fb_display[unit].fontdata;
  309.        fontwidth = fb_display[unit]._fontwidth;
  310.        fontheight = fb_display[unit]._fontheight;
  311.        fontwidthlog = fb_display[unit]._fontwidthlog;
  312.        fontheightlog = fb_display[unit]._fontheightlog;
  313.        userfont = fb_display[unit].userfont;
  314.        con2fb_map[unit] = newidx;
  315.        fb_display[unit] = *(newfb->disp);
  316.        fb_display[unit].conp = conp;
  317.        fb_display[unit].fontdata = fontdata;
  318.        fb_display[unit]._fontwidth = fontwidth;
  319.        fb_display[unit]._fontheight = fontheight;
  320.        fb_display[unit]._fontwidthlog = fontwidthlog;
  321.        fb_display[unit]._fontheightlog = fontheightlog;
  322.        fb_display[unit].userfont = userfont;
  323.        fb_display[unit].fb_info = newfb;
  324.        if (conp)
  325.    conp->vc_display_fg = &newfb->display_fg;
  326.        if (!newfb->display_fg)
  327.    newfb->display_fg = conp;
  328.        if (!newfb->changevar)
  329.            newfb->changevar = oldfb->changevar;
  330.        /* tell console var has changed */
  331.        if (newfb->changevar)
  332.            newfb->changevar(unit);
  333.    }
  334. }
  335. /*
  336.  *  Low Level Operations
  337.  */
  338. struct display_switch fbcon_dummy;
  339. /* NOTE: fbcon cannot be __init: it may be called from take_over_console later */
  340. static const char *fbcon_startup(void)
  341. {
  342.     const char *display_desc = "frame buffer device";
  343.     int irqres = 1;
  344.     static int done = 0;
  345.     /*
  346.      *  If num_registered_fb is zero, this is a call for the dummy part.
  347.      *  The frame buffer devices weren't initialized yet.
  348.      */
  349.     if (!num_registered_fb || done)
  350. return display_desc;
  351.     done = 1;
  352. #ifdef CONFIG_AMIGA
  353.     if (MACH_IS_AMIGA) {
  354. cursor_blink_rate = AMIGA_CURSOR_BLINK_RATE;
  355. irqres = request_irq(IRQ_AMIGA_VERTB, fbcon_vbl_handler, 0,
  356.      "console/cursor", fbcon_vbl_handler);
  357.     }
  358. #endif /* CONFIG_AMIGA */
  359. #ifdef CONFIG_ATARI
  360.     if (MACH_IS_ATARI) {
  361. cursor_blink_rate = ATARI_CURSOR_BLINK_RATE;
  362. irqres = request_irq(IRQ_AUTO_4, fbcon_vbl_handler, IRQ_TYPE_PRIO,
  363.      "console/cursor", fbcon_vbl_handler);
  364.     }
  365. #endif /* CONFIG_ATARI */
  366. #ifdef CONFIG_MAC
  367.     /*
  368.      * On a Macintoy, the VBL interrupt may or may not be active. 
  369.      * As interrupt based cursor is more reliable and race free, we 
  370.      * probe for VBL interrupts.
  371.      */
  372.     if (MACH_IS_MAC) {
  373. int ct = 0;
  374. /*
  375.  * Probe for VBL: set temp. handler ...
  376.  */
  377. irqres = request_irq(IRQ_MAC_VBL, fbcon_vbl_detect, 0,
  378.      "console/cursor", fbcon_vbl_detect);
  379. vbl_detected = 0;
  380. /*
  381.  * ... and spin for 20 ms ...
  382.  */
  383. while (!vbl_detected && ++ct<1000)
  384.     udelay(20);
  385.  
  386. if(ct==1000)
  387.     printk("fbcon_startup: No VBL detected, using timer based cursor.n");
  388.  
  389. free_irq(IRQ_MAC_VBL, fbcon_vbl_detect);
  390. if (vbl_detected) {
  391.     /*
  392.      * interrupt based cursor ok
  393.      */
  394.     cursor_blink_rate = MAC_CURSOR_BLINK_RATE;
  395.     irqres = request_irq(IRQ_MAC_VBL, fbcon_vbl_handler, 0,
  396.  "console/cursor", fbcon_vbl_handler);
  397. } else {
  398.     /*
  399.      * VBL not detected: fall through, use timer based cursor
  400.      */
  401.     irqres = 1;
  402. }
  403.     }
  404. #endif /* CONFIG_MAC */
  405. #if defined(__arm__) && defined(IRQ_VSYNCPULSE)
  406.     cursor_blink_rate = ARM_CURSOR_BLINK_RATE;
  407.     irqres = request_irq(IRQ_VSYNCPULSE, fbcon_vbl_handler, SA_SHIRQ,
  408.  "console/cursor", fbcon_vbl_handler);
  409. #endif
  410.     if (irqres) {
  411. use_timer_cursor = 1;
  412. cursor_blink_rate = DEFAULT_CURSOR_BLINK_RATE;
  413. cursor_timer.expires = jiffies+HZ/50;
  414. add_timer(&cursor_timer);
  415.     }
  416. #ifdef CONFIG_PM
  417.     pm_fbcon = pm_register(PM_SYS_DEV, PM_SYS_VGA, pm_fbcon_request);
  418. #endif
  419.     return display_desc;
  420. }
  421. static void fbcon_init(struct vc_data *conp, int init)
  422. {
  423.     int unit = conp->vc_num;
  424.     struct fb_info *info;
  425.     /* on which frame buffer will we open this console? */
  426.     info = registered_fb[(int)con2fb_map[unit]];
  427.     info->changevar = &fbcon_changevar;
  428.     fb_display[unit] = *(info->disp); /* copy from default */
  429.     DPRINTK("mode:   %sn",info->modename);
  430.     DPRINTK("visual: %dn",fb_display[unit].visual);
  431.     DPRINTK("res:    %dx%d-%dn",fb_display[unit].var.xres,
  432.                      fb_display[unit].var.yres,
  433.                      fb_display[unit].var.bits_per_pixel);
  434.     fb_display[unit].conp = conp;
  435.     fb_display[unit].fb_info = info;
  436.     /* clear out the cmap so we don't have dangling pointers */
  437.     fb_display[unit].cmap.len = 0;
  438.     fb_display[unit].cmap.red = 0;
  439.     fb_display[unit].cmap.green = 0;
  440.     fb_display[unit].cmap.blue = 0;
  441.     fb_display[unit].cmap.transp = 0;
  442.     fbcon_setup(unit, init, !init);
  443.     /* Must be done after fbcon_setup to prevent excess updates */
  444.     conp->vc_display_fg = &info->display_fg;
  445.     if (!info->display_fg)
  446.         info->display_fg = conp;
  447. }
  448. static void fbcon_deinit(struct vc_data *conp)
  449. {
  450.     int unit = conp->vc_num;
  451.     struct display *p = &fb_display[unit];
  452.     fbcon_free_font(p);
  453.     p->dispsw = &fbcon_dummy;
  454.     p->conp = 0;
  455. }
  456. static int fbcon_changevar(int con)
  457. {
  458.     if (fb_display[con].conp)
  459.     fbcon_setup(con, 0, 0);
  460.     return 0;
  461. }
  462. static __inline__ void updatescrollmode(struct display *p)
  463. {
  464.     int m;
  465.     if (p->scrollmode & __SCROLL_YFIXED)
  466.      return;
  467.     if (divides(p->ywrapstep, fontheight(p)) &&
  468. divides(fontheight(p), p->var.yres_virtual))
  469. m = __SCROLL_YWRAP;
  470.     else if (divides(p->ypanstep, fontheight(p)) &&
  471.      p->var.yres_virtual >= p->var.yres+fontheight(p))
  472. m = __SCROLL_YPAN;
  473.     else if (p->scrollmode & __SCROLL_YNOMOVE)
  474.      m = __SCROLL_YREDRAW;
  475.     else
  476. m = __SCROLL_YMOVE;
  477.     p->scrollmode = (p->scrollmode & ~__SCROLL_YMASK) | m;
  478. }
  479. static void fbcon_font_widths(struct display *p)
  480. {
  481.     int i;
  482.     
  483.     p->_fontwidthlog = 0;
  484.     for (i = 2; i <= 6; i++)
  485.      if (fontwidth(p) == (1 << i))
  486.     p->_fontwidthlog = i;
  487.     p->_fontheightlog = 0;
  488.     for (i = 2; i <= 6; i++)
  489.      if (fontheight(p) == (1 << i))
  490.     p->_fontheightlog = i;
  491. }
  492. #define fontwidthvalid(p,w) ((p)->dispsw->fontwidthmask & FONTWIDTH(w))
  493. static void fbcon_setup(int con, int init, int logo)
  494. {
  495.     struct display *p = &fb_display[con];
  496.     struct vc_data *conp = p->conp;
  497.     int nr_rows, nr_cols;
  498.     int old_rows, old_cols;
  499.     unsigned short *save = NULL, *r, *q;
  500.     int i, charcnt = 256;
  501.     struct fbcon_font_desc *font;
  502.     
  503.     if (con != fg_console || (p->fb_info->flags & FBINFO_FLAG_MODULE) ||
  504.         p->type == FB_TYPE_TEXT)
  505.      logo = 0;
  506.     p->var.xoffset = p->var.yoffset = p->yscroll = 0;  /* reset wrap/pan */
  507.     if (con == fg_console && p->type != FB_TYPE_TEXT) {   
  508. if (fbcon_softback_size) {
  509.     if (!softback_buf) {
  510. softback_buf = (unsigned long)kmalloc(fbcon_softback_size, GFP_KERNEL);
  511. if (!softback_buf) {
  512.                  fbcon_softback_size = 0;
  513.                  softback_top = 0;
  514.      }
  515.          }
  516. } else {
  517.     if (softback_buf) {
  518. kfree((void *)softback_buf);
  519. softback_buf = 0;
  520. softback_top = 0;
  521.     }
  522. }
  523. if (softback_buf)
  524.     softback_in = softback_top = softback_curr = softback_buf;
  525. softback_lines = 0;
  526.     }
  527.     
  528.     for (i = 0; i < MAX_NR_CONSOLES; i++)
  529.      if (i != con && fb_display[i].fb_info == p->fb_info &&
  530.          fb_display[i].conp && fb_display[i].fontdata)
  531.      break;
  532.     fbcon_free_font(p);    
  533.     if (i < MAX_NR_CONSOLES) {
  534.      struct display *q = &fb_display[i];
  535.         if (fontwidthvalid(p,fontwidth(q))) {
  536.             /* If we are not the first console on this
  537.                fb, copy the font from that console */
  538.     p->_fontwidth = q->_fontwidth;
  539.     p->_fontheight = q->_fontheight;
  540.          p->_fontwidthlog = q->_fontwidthlog;
  541.          p->_fontheightlog = q->_fontheightlog;
  542.          p->fontdata = q->fontdata;
  543.          p->userfont = q->userfont; 
  544.          if (p->userfont) {
  545.      REFCOUNT(p->fontdata)++;
  546.      charcnt = FNTCHARCNT(p->fontdata);
  547.          }
  548.          con_copy_unimap(con, i);
  549.      }
  550.     }
  551.     if (!p->fontdata) {
  552.         if (!p->fb_info->fontname[0] ||
  553.     !(font = fbcon_find_font(p->fb_info->fontname)))
  554.         font = fbcon_get_default_font(p->var.xres, p->var.yres);
  555.         p->_fontwidth = font->width;
  556.         p->_fontheight = font->height;
  557.         p->fontdata = font->data;
  558.         fbcon_font_widths(p);
  559.     }
  560.     
  561.     if (!fontwidthvalid(p,fontwidth(p))) {
  562. #if defined(CONFIG_FBCON_MAC) && defined(CONFIG_MAC)
  563. if (MACH_IS_MAC)
  564.     /* ++Geert: hack to make 6x11 fonts work on mac */
  565.     p->dispsw = &fbcon_mac;
  566. else
  567. #endif
  568. {
  569.     /* ++Geert: changed from panic() to `correct and continue' */
  570.     printk(KERN_ERR "fbcon_setup: No support for fontwidth %dn", fontwidth(p));
  571.     p->dispsw = &fbcon_dummy;
  572. }
  573.     }
  574.     if (p->dispsw->set_font)
  575.      p->dispsw->set_font(p, fontwidth(p), fontheight(p));
  576.     updatescrollmode(p);
  577.     
  578.     old_cols = conp->vc_cols;
  579.     old_rows = conp->vc_rows;
  580.     
  581.     nr_cols = p->var.xres/fontwidth(p);
  582.     nr_rows = p->var.yres/fontheight(p);
  583.     
  584.     if (logo) {
  585.      /* Need to make room for the logo */
  586. int cnt;
  587. int step;
  588.     
  589.      logo_lines = (LOGO_H + fontheight(p) - 1) / fontheight(p);
  590.      q = (unsigned short *)(conp->vc_origin + conp->vc_size_row * old_rows);
  591.      step = logo_lines * old_cols;
  592.      for (r = q - logo_lines * old_cols; r < q; r++)
  593.          if (scr_readw(r) != conp->vc_video_erase_char)
  594.           break;
  595. if (r != q && nr_rows >= old_rows + logo_lines) {
  596.          save = kmalloc(logo_lines * nr_cols * 2, GFP_KERNEL);
  597.          if (save) {
  598.              int i = old_cols < nr_cols ? old_cols : nr_cols;
  599.           scr_memsetw(save, conp->vc_video_erase_char, logo_lines * nr_cols * 2);
  600.           r = q - step;
  601.           for (cnt = 0; cnt < logo_lines; cnt++, r += i)
  602.           scr_memcpyw(save + cnt * nr_cols, r, 2 * i);
  603.           r = q;
  604.          }
  605.      }
  606.      if (r == q) {
  607.          /* We can scroll screen down */
  608.     r = q - step - old_cols;
  609.          for (cnt = old_rows - logo_lines; cnt > 0; cnt--) {
  610.           scr_memcpyw(r + step, r, conp->vc_size_row);
  611.           r -= old_cols;
  612.          }
  613.          if (!save) {
  614.      conp->vc_y += logo_lines;
  615.      conp->vc_pos += logo_lines * conp->vc_size_row;
  616.          }
  617.      }
  618.      scr_memsetw((unsigned short *)conp->vc_origin,
  619.     conp->vc_video_erase_char, 
  620.     conp->vc_size_row * logo_lines);
  621.     }
  622.     
  623.     /*
  624.      *  ++guenther: console.c:vc_allocate() relies on initializing
  625.      *  vc_{cols,rows}, but we must not set those if we are only
  626.      *  resizing the console.
  627.      */
  628.     if (init) {
  629. conp->vc_cols = nr_cols;
  630. conp->vc_rows = nr_rows;
  631.     }
  632.     p->vrows = p->var.yres_virtual/fontheight(p);
  633.     if ((p->var.yres % fontheight(p)) &&
  634. (p->var.yres_virtual % fontheight(p) < p->var.yres % fontheight(p)))
  635. p->vrows--;
  636.     conp->vc_can_do_color = p->var.bits_per_pixel != 1;
  637.     conp->vc_complement_mask = conp->vc_can_do_color ? 0x7700 : 0x0800;
  638.     if (charcnt == 256) {
  639.      conp->vc_hi_font_mask = 0;
  640.      p->fgshift = 8;
  641.      p->bgshift = 12;
  642.      p->charmask = 0xff;
  643.     } else {
  644.      conp->vc_hi_font_mask = 0x100;
  645.      if (conp->vc_can_do_color)
  646.     conp->vc_complement_mask <<= 1;
  647.      p->fgshift = 9;
  648.      p->bgshift = 13;
  649.      p->charmask = 0x1ff;
  650.     }
  651.     if (p->dispsw == &fbcon_dummy)
  652. printk(KERN_WARNING "fbcon_setup: type %d (aux %d, depth %d) not "
  653.        "supportedn", p->type, p->type_aux, p->var.bits_per_pixel);
  654.     p->dispsw->setup(p);
  655.     p->fgcol = p->var.bits_per_pixel > 2 ? 7 : (1<<p->var.bits_per_pixel)-1;
  656.     p->bgcol = 0;
  657.     if (!init) {
  658. if (conp->vc_cols != nr_cols || conp->vc_rows != nr_rows)
  659.     vc_resize_con(nr_rows, nr_cols, con);
  660. else if (CON_IS_VISIBLE(conp) &&
  661.  vt_cons[conp->vc_num]->vc_mode == KD_TEXT) {
  662.     if (p->dispsw->clear_margins)
  663. p->dispsw->clear_margins(conp, p, 0);
  664.     update_screen(con);
  665. }
  666. if (save) {
  667.          q = (unsigned short *)(conp->vc_origin + conp->vc_size_row * old_rows);
  668.     scr_memcpyw(q, save, logo_lines * nr_cols * 2);
  669.     conp->vc_y += logo_lines;
  670.          conp->vc_pos += logo_lines * conp->vc_size_row;
  671.          kfree(save);
  672. }
  673.     }
  674.     if (logo) {
  675. logo_shown = -2;
  676.      conp->vc_top = logo_lines;
  677.     }
  678.     
  679.     if (con == fg_console && softback_buf) {
  680.      int l = fbcon_softback_size / conp->vc_size_row;
  681.      if (l > 5)
  682.          softback_end = softback_buf + l * conp->vc_size_row;
  683.      else {
  684.          /* Smaller scrollback makes no sense, and 0 would screw
  685.             the operation totally */
  686.          softback_top = 0;
  687.      }
  688.     }
  689. }
  690. /* ====================================================================== */
  691. /*  fbcon_XXX routines - interface used by the world
  692.  *
  693.  *  This system is now divided into two levels because of complications
  694.  *  caused by hardware scrolling. Top level functions:
  695.  *
  696.  * fbcon_bmove(), fbcon_clear(), fbcon_putc()
  697.  *
  698.  *  handles y values in range [0, scr_height-1] that correspond to real
  699.  *  screen positions. y_wrap shift means that first line of bitmap may be
  700.  *  anywhere on this display. These functions convert lineoffsets to
  701.  *  bitmap offsets and deal with the wrap-around case by splitting blits.
  702.  *
  703.  * fbcon_bmove_physical_8()    -- These functions fast implementations
  704.  * fbcon_clear_physical_8()    -- of original fbcon_XXX fns.
  705.  * fbcon_putc_physical_8()     -- (fontwidth != 8) may be added later
  706.  *
  707.  *  WARNING:
  708.  *
  709.  *  At the moment fbcon_putc() cannot blit across vertical wrap boundary
  710.  *  Implies should only really hardware scroll in rows. Only reason for
  711.  *  restriction is simplicity & efficiency at the moment.
  712.  */
  713. static __inline__ int real_y(struct display *p, int ypos)
  714. {
  715.     int rows = p->vrows;
  716.     ypos += p->yscroll;
  717.     return ypos < rows ? ypos : ypos-rows;
  718. }
  719. static void fbcon_clear(struct vc_data *conp, int sy, int sx, int height,
  720. int width)
  721. {
  722.     int unit = conp->vc_num;
  723.     struct display *p = &fb_display[unit];
  724.     u_int y_break;
  725.     int redraw_cursor = 0;
  726.     if (!p->can_soft_blank && console_blanked)
  727. return;
  728.     if (!height || !width)
  729. return;
  730.     if ((sy <= p->cursor_y) && (p->cursor_y < sy+height) &&
  731. (sx <= p->cursor_x) && (p->cursor_x < sx+width)) {
  732. cursor_undrawn();
  733. redraw_cursor = 1;
  734.     }
  735.     /* Split blits that cross physical y_wrap boundary */
  736.     y_break = p->vrows-p->yscroll;
  737.     if (sy < y_break && sy+height-1 >= y_break) {
  738. u_int b = y_break-sy;
  739. p->dispsw->clear(conp, p, real_y(p, sy), sx, b, width);
  740. p->dispsw->clear(conp, p, real_y(p, sy+b), sx, height-b, width);
  741.     } else
  742. p->dispsw->clear(conp, p, real_y(p, sy), sx, height, width);
  743.     if (redraw_cursor)
  744. vbl_cursor_cnt = CURSOR_DRAW_DELAY;
  745. }
  746. static void fbcon_putc(struct vc_data *conp, int c, int ypos, int xpos)
  747. {
  748.     int unit = conp->vc_num;
  749.     struct display *p = &fb_display[unit];
  750.     int redraw_cursor = 0;
  751.     if (!p->can_soft_blank && console_blanked)
  752.     return;
  753.     
  754.     if (vt_cons[unit]->vc_mode != KD_TEXT)
  755.          return;
  756.     if ((p->cursor_x == xpos) && (p->cursor_y == ypos)) {
  757.     cursor_undrawn();
  758.     redraw_cursor = 1;
  759.     }
  760.     p->dispsw->putc(conp, p, c, real_y(p, ypos), xpos);
  761.     if (redraw_cursor)
  762.     vbl_cursor_cnt = CURSOR_DRAW_DELAY;
  763. }
  764. static void fbcon_putcs(struct vc_data *conp, const unsigned short *s, int count,
  765.        int ypos, int xpos)
  766. {
  767.     int unit = conp->vc_num;
  768.     struct display *p = &fb_display[unit];
  769.     int redraw_cursor = 0;
  770.     if (!p->can_soft_blank && console_blanked)
  771.     return;
  772.     if (vt_cons[unit]->vc_mode != KD_TEXT)
  773.          return;
  774.     if ((p->cursor_y == ypos) && (xpos <= p->cursor_x) &&
  775. (p->cursor_x < (xpos + count))) {
  776.     cursor_undrawn();
  777.     redraw_cursor = 1;
  778.     }
  779.     p->dispsw->putcs(conp, p, s, count, real_y(p, ypos), xpos);
  780.     if (redraw_cursor)
  781.     vbl_cursor_cnt = CURSOR_DRAW_DELAY;
  782. }
  783. static void fbcon_cursor(struct vc_data *conp, int mode)
  784. {
  785.     int unit = conp->vc_num;
  786.     struct display *p = &fb_display[unit];
  787.     int y = conp->vc_y;
  788.     
  789.     if (mode & CM_SOFTBACK) {
  790.      mode &= ~CM_SOFTBACK;
  791.      if (softback_lines) {
  792.          if (y + softback_lines >= conp->vc_rows)
  793.      mode = CM_ERASE;
  794.          else
  795.              y += softback_lines;
  796.      }
  797.     } else if (softback_lines)
  798.         fbcon_set_origin(conp);
  799.     /* do we have a hardware cursor ? */
  800.     if (p->dispsw->cursor) {
  801. p->cursor_x = conp->vc_x;
  802. p->cursor_y = y;
  803. p->dispsw->cursor(p, mode, p->cursor_x, real_y(p, p->cursor_y));
  804. return;
  805.     }
  806.     /* Avoid flickering if there's no real change. */
  807.     if (p->cursor_x == conp->vc_x && p->cursor_y == y &&
  808. (mode == CM_ERASE) == !cursor_on)
  809. return;
  810.     cursor_on = 0;
  811.     if (cursor_drawn)
  812.         p->dispsw->revc(p, p->cursor_x, real_y(p, p->cursor_y));
  813.     p->cursor_x = conp->vc_x;
  814.     p->cursor_y = y;
  815.     switch (mode) {
  816.         case CM_ERASE:
  817.             cursor_drawn = 0;
  818.             break;
  819.         case CM_MOVE:
  820.         case CM_DRAW:
  821.             if (cursor_drawn)
  822.         p->dispsw->revc(p, p->cursor_x, real_y(p, p->cursor_y));
  823.             vbl_cursor_cnt = CURSOR_DRAW_DELAY;
  824.             cursor_on = 1;
  825.             break;
  826.         }
  827. }
  828. static void fbcon_vbl_handler(int irq, void *dummy, struct pt_regs *fp)
  829. {
  830.     struct display *p;
  831.     if (!cursor_on)
  832. return;
  833.     if (vbl_cursor_cnt && --vbl_cursor_cnt == 0) {
  834. p = &fb_display[fg_console];
  835. if (p->dispsw->revc)
  836. p->dispsw->revc(p, p->cursor_x, real_y(p, p->cursor_y));
  837. cursor_drawn ^= 1;
  838. vbl_cursor_cnt = cursor_blink_rate;
  839.     }
  840. }
  841. static int scrollback_phys_max = 0;
  842. static int scrollback_max = 0;
  843. static int scrollback_current = 0;
  844. static __inline__ void ywrap_up(int unit, struct vc_data *conp,
  845. struct display *p, int count)
  846. {
  847.     p->yscroll += count;
  848.     if (p->yscroll >= p->vrows) /* Deal with wrap */
  849. p->yscroll -= p->vrows;
  850.     p->var.xoffset = 0;
  851.     p->var.yoffset = p->yscroll*fontheight(p);
  852.     p->var.vmode |= FB_VMODE_YWRAP;
  853.     p->fb_info->updatevar(unit, p->fb_info);
  854.     scrollback_max += count;
  855.     if (scrollback_max > scrollback_phys_max)
  856. scrollback_max = scrollback_phys_max;
  857.     scrollback_current = 0;
  858. }
  859. static __inline__ void ywrap_down(int unit, struct vc_data *conp,
  860.   struct display *p, int count)
  861. {
  862.     p->yscroll -= count;
  863.     if (p->yscroll < 0) /* Deal with wrap */
  864. p->yscroll += p->vrows;
  865.     p->var.xoffset = 0;
  866.     p->var.yoffset = p->yscroll*fontheight(p);
  867.     p->var.vmode |= FB_VMODE_YWRAP;
  868.     p->fb_info->updatevar(unit, p->fb_info);
  869.     scrollback_max -= count;
  870.     if (scrollback_max < 0)
  871. scrollback_max = 0;
  872.     scrollback_current = 0;
  873. }
  874. static __inline__ void ypan_up(int unit, struct vc_data *conp,
  875.        struct display *p, int count)
  876. {
  877.     p->yscroll += count;
  878.     if (p->yscroll > p->vrows-conp->vc_rows) {
  879. p->dispsw->bmove(p, p->vrows-conp->vc_rows, 0, 0, 0,
  880.  conp->vc_rows, conp->vc_cols);
  881. p->yscroll -= p->vrows-conp->vc_rows;
  882.     }
  883.     p->var.xoffset = 0;
  884.     p->var.yoffset = p->yscroll*fontheight(p);
  885.     p->var.vmode &= ~FB_VMODE_YWRAP;
  886.     p->fb_info->updatevar(unit, p->fb_info);
  887.     if (p->dispsw->clear_margins)
  888. p->dispsw->clear_margins(conp, p, 1);
  889.     scrollback_max += count;
  890.     if (scrollback_max > scrollback_phys_max)
  891. scrollback_max = scrollback_phys_max;
  892.     scrollback_current = 0;
  893. }
  894. static __inline__ void ypan_down(int unit, struct vc_data *conp,
  895.  struct display *p, int count)
  896. {
  897.     p->yscroll -= count;
  898.     if (p->yscroll < 0) {
  899. p->dispsw->bmove(p, 0, 0, p->vrows-conp->vc_rows, 0,
  900.  conp->vc_rows, conp->vc_cols);
  901. p->yscroll += p->vrows-conp->vc_rows;
  902.     }
  903.     p->var.xoffset = 0;
  904.     p->var.yoffset = p->yscroll*fontheight(p);
  905.     p->var.vmode &= ~FB_VMODE_YWRAP;
  906.     p->fb_info->updatevar(unit, p->fb_info);
  907.     if (p->dispsw->clear_margins)
  908. p->dispsw->clear_margins(conp, p, 1);
  909.     scrollback_max -= count;
  910.     if (scrollback_max < 0)
  911. scrollback_max = 0;
  912.     scrollback_current = 0;
  913. }
  914. static void fbcon_redraw_softback(struct vc_data *conp, struct display *p, long delta)
  915. {
  916.     unsigned short *d, *s;
  917.     unsigned long n;
  918.     int line = 0;
  919.     int count = conp->vc_rows;
  920.     
  921.     d = (u16 *)softback_curr;
  922.     if (d == (u16 *)softback_in)
  923. d = (u16 *)conp->vc_origin;
  924.     n = softback_curr + delta * conp->vc_size_row;
  925.     softback_lines -= delta;
  926.     if (delta < 0) {
  927.         if (softback_curr < softback_top && n < softback_buf) {
  928.             n += softback_end - softback_buf;
  929.     if (n < softback_top) {
  930. softback_lines -= (softback_top - n) / conp->vc_size_row;
  931. n = softback_top;
  932.     }
  933.         } else if (softback_curr >= softback_top && n < softback_top) {
  934.     softback_lines -= (softback_top - n) / conp->vc_size_row;
  935.     n = softback_top;
  936.         }
  937.     } else {
  938.      if (softback_curr > softback_in && n >= softback_end) {
  939.          n += softback_buf - softback_end;
  940.     if (n > softback_in) {
  941. n = softback_in;
  942. softback_lines = 0;
  943.     }
  944. } else if (softback_curr <= softback_in && n > softback_in) {
  945.     n = softback_in;
  946.     softback_lines = 0;
  947. }
  948.     }
  949.     if (n == softback_curr)
  950.      return;
  951.     softback_curr = n;
  952.     s = (u16 *)softback_curr;
  953.     if (s == (u16 *)softback_in)
  954. s = (u16 *)conp->vc_origin;
  955.     while (count--) {
  956. unsigned short *start;
  957. unsigned short *le;
  958. unsigned short c;
  959. int x = 0;
  960. unsigned short attr = 1;
  961. start = s;
  962. le = advance_row(s, 1);
  963. do {
  964.     c = scr_readw(s);
  965.     if (attr != (c & 0xff00)) {
  966. attr = c & 0xff00;
  967. if (s > start) {
  968.     p->dispsw->putcs(conp, p, start, s - start,
  969.      real_y(p, line), x);
  970.     x += s - start;
  971.     start = s;
  972. }
  973.     }
  974.     if (c == scr_readw(d)) {
  975.      if (s > start) {
  976.          p->dispsw->putcs(conp, p, start, s - start,
  977.      real_y(p, line), x);
  978.     x += s - start + 1;
  979.     start = s + 1;
  980.      } else {
  981.          x++;
  982.          start++;
  983.      }
  984.     }
  985.     s++;
  986.     d++;
  987. } while (s < le);
  988. if (s > start)
  989.     p->dispsw->putcs(conp, p, start, s - start, real_y(p, line), x);
  990. line++;
  991. if (d == (u16 *)softback_end)
  992.     d = (u16 *)softback_buf;
  993. if (d == (u16 *)softback_in)
  994.     d = (u16 *)conp->vc_origin;
  995. if (s == (u16 *)softback_end)
  996.     s = (u16 *)softback_buf;
  997. if (s == (u16 *)softback_in)
  998.     s = (u16 *)conp->vc_origin;
  999.     }
  1000. }
  1001. static void fbcon_redraw(struct vc_data *conp, struct display *p, 
  1002.  int line, int count, int offset)
  1003. {
  1004.     unsigned short *d = (unsigned short *)
  1005. (conp->vc_origin + conp->vc_size_row * line);
  1006.     unsigned short *s = d + offset;
  1007.     while (count--) {
  1008. unsigned short *start = s;
  1009. unsigned short *le = advance_row(s, 1);
  1010. unsigned short c;
  1011. int x = 0;
  1012. unsigned short attr = 1;
  1013. do {
  1014.     c = scr_readw(s);
  1015.     if (attr != (c & 0xff00)) {
  1016. attr = c & 0xff00;
  1017. if (s > start) {
  1018.     p->dispsw->putcs(conp, p, start, s - start,
  1019.      real_y(p, line), x);
  1020.     x += s - start;
  1021.     start = s;
  1022. }
  1023.     }
  1024.     if (c == scr_readw(d)) {
  1025.      if (s > start) {
  1026.          p->dispsw->putcs(conp, p, start, s - start,
  1027.      real_y(p, line), x);
  1028.     x += s - start + 1;
  1029.     start = s + 1;
  1030.      } else {
  1031.          x++;
  1032.          start++;
  1033.      }
  1034.     }
  1035.     scr_writew(c, d);
  1036.     console_conditional_schedule();
  1037.     s++;
  1038.     d++;
  1039. } while (s < le);
  1040. if (s > start)
  1041.     p->dispsw->putcs(conp, p, start, s - start, real_y(p, line), x);
  1042. console_conditional_schedule();
  1043. if (offset > 0)
  1044. line++;
  1045. else {
  1046. line--;
  1047. /* NOTE: We subtract two lines from these pointers */
  1048. s -= conp->vc_size_row;
  1049. d -= conp->vc_size_row;
  1050. }
  1051.     }
  1052. }
  1053. /**
  1054.  * fbcon_redraw_clear - clear area of the screen
  1055.  * @conp: stucture pointing to current active virtual console
  1056.  * @p: display structure
  1057.  * @sy: starting Y coordinate
  1058.  * @sx: starting X coordinate
  1059.  * @height: height of area to clear
  1060.  * @width: width of area to clear
  1061.  *
  1062.  * Clears a specified area of the screen.  All dimensions are in
  1063.  * pixels.
  1064.  *
  1065.  */
  1066. void fbcon_redraw_clear(struct vc_data *conp, struct display *p, int sy, int sx,
  1067.      int height, int width)
  1068. {
  1069.     int x, y;
  1070.     for (y=0; y<height; y++)
  1071. for (x=0; x<width; x++)
  1072.     fbcon_putc(conp, ' ', sy+y, sx+x);
  1073. }
  1074. /**
  1075.  * fbcon_redraw_bmove - copy area of screen to another area
  1076.  * @p: display structure
  1077.  * @sy: origin Y coordinate
  1078.  * @sx: origin X coordinate
  1079.  * @dy: destination Y coordinate
  1080.  * @dx: destination X coordinate
  1081.  * @h: height of area to copy
  1082.  * @w: width of area to copy
  1083.  *
  1084.  * Copies an area of the screen to another area of the same screen.
  1085.  * All dimensions are in pixels.
  1086.  *
  1087.  * Note that this function cannot be used together with ypan or
  1088.  * ywrap.
  1089.  *
  1090.  */
  1091. void fbcon_redraw_bmove(struct display *p, int sy, int sx, int dy, int dx, int h, int w)
  1092. {
  1093.     if (sy != dy)
  1094.      panic("fbcon_redraw_bmove width sy != dy");
  1095.     /* h will be always 1, but it does not matter if we are more generic */
  1096.     while (h-- > 0) {
  1097. struct vc_data *conp = p->conp;
  1098. unsigned short *d = (unsigned short *)
  1099. (conp->vc_origin + conp->vc_size_row * dy + dx * 2);
  1100. unsigned short *s = d + (dx - sx);
  1101. unsigned short *start = d;
  1102. unsigned short *ls = d;
  1103. unsigned short *le = d + w;
  1104. unsigned short c;
  1105. int x = dx;
  1106. unsigned short attr = 1;
  1107. do {
  1108.     c = scr_readw(d);
  1109.     if (attr != (c & 0xff00)) {
  1110. attr = c & 0xff00;
  1111. if (d > start) {
  1112.     p->dispsw->putcs(conp, p, start, d - start, dy, x);
  1113.     x += d - start;
  1114.     start = d;
  1115. }
  1116.     }
  1117.     if (s >= ls && s < le && c == scr_readw(s)) {
  1118. if (d > start) {
  1119.     p->dispsw->putcs(conp, p, start, d - start, dy, x);
  1120.     x += d - start + 1;
  1121.     start = d + 1;
  1122. } else {
  1123.     x++;
  1124.     start++;
  1125. }
  1126.     }
  1127.     s++;
  1128.     d++;
  1129. } while (d < le);
  1130. if (d > start)
  1131.     p->dispsw->putcs(conp, p, start, d - start, dy, x);
  1132. sy++;
  1133. dy++;
  1134.     }
  1135. }
  1136. static inline void fbcon_softback_note(struct vc_data *conp, int t, int count)
  1137. {
  1138.     unsigned short *p;
  1139.     if (conp->vc_num != fg_console)
  1140. return;
  1141.     p = (unsigned short *)(conp->vc_origin + t * conp->vc_size_row);
  1142.     while (count) {
  1143.      scr_memcpyw((u16 *)softback_in, p, conp->vc_size_row);
  1144.      count--;
  1145.      p = advance_row(p, 1);
  1146.      softback_in += conp->vc_size_row;
  1147.      if (softback_in == softback_end)
  1148.          softback_in = softback_buf;
  1149.      if (softback_in == softback_top) {
  1150.          softback_top += conp->vc_size_row;
  1151.          if (softback_top == softback_end)
  1152.           softback_top = softback_buf;
  1153.      }
  1154.     }
  1155.     softback_curr = softback_in;
  1156. }
  1157. static int fbcon_scroll(struct vc_data *conp, int t, int b, int dir,
  1158. int count)
  1159. {
  1160.     int unit = conp->vc_num;
  1161.     struct display *p = &fb_display[unit];
  1162.     int scroll_partial = !(p->scrollmode & __SCROLL_YNOPARTIAL);
  1163.     if (!p->can_soft_blank && console_blanked)
  1164. return 0;
  1165.     if (!count || vt_cons[unit]->vc_mode != KD_TEXT)
  1166. return 0;
  1167.     fbcon_cursor(conp, CM_ERASE);
  1168.     
  1169.     /*
  1170.      * ++Geert: Only use ywrap/ypan if the console is in text mode
  1171.      * ++Andrew: Only use ypan on hardware text mode when scrolling the
  1172.      *           whole screen (prevents flicker).
  1173.      */
  1174.     switch (dir) {
  1175. case SM_UP:
  1176.     if (count > conp->vc_rows) /* Maximum realistic size */
  1177. count = conp->vc_rows;
  1178.     if (softback_top)
  1179.         fbcon_softback_note(conp, t, count);
  1180.     if (logo_shown >= 0) goto redraw_up;
  1181.     switch (p->scrollmode & __SCROLL_YMASK) {
  1182.     case __SCROLL_YMOVE:
  1183. p->dispsw->bmove(p, t+count, 0, t, 0, b-t-count,
  1184.  conp->vc_cols);
  1185. p->dispsw->clear(conp, p, b-count, 0, count,
  1186.  conp->vc_cols);
  1187. break;
  1188.     case __SCROLL_YWRAP:
  1189. if (b-t-count > 3*conp->vc_rows>>2) {
  1190.     if (t > 0)
  1191. fbcon_bmove(conp, 0, 0, count, 0, t,
  1192.     conp->vc_cols);
  1193. ywrap_up(unit, conp, p, count);
  1194.     if (conp->vc_rows-b > 0)
  1195. fbcon_bmove(conp, b-count, 0, b, 0,
  1196.     conp->vc_rows-b, conp->vc_cols);
  1197. } else if (p->scrollmode & __SCROLL_YPANREDRAW)
  1198.     goto redraw_up;
  1199. else
  1200.     fbcon_bmove(conp, t+count, 0, t, 0, b-t-count,
  1201. conp->vc_cols);
  1202. fbcon_clear(conp, b-count, 0, count, conp->vc_cols);
  1203. break;
  1204.     case __SCROLL_YPAN:
  1205. if (( p->yscroll + count <= 2 * (p->vrows - conp->vc_rows)) &&
  1206.     (( !scroll_partial && (b-t == conp->vc_rows)) ||
  1207.      ( scroll_partial  && (b-t-count > 3*conp->vc_rows>>2)))) {
  1208.     if (t > 0)
  1209. fbcon_bmove(conp, 0, 0, count, 0, t,
  1210.     conp->vc_cols);
  1211.     ypan_up(unit, conp, p, count);
  1212.     if (conp->vc_rows-b > 0)
  1213. fbcon_bmove(conp, b-count, 0, b, 0,
  1214.     conp->vc_rows-b, conp->vc_cols);
  1215. } else if (p->scrollmode & __SCROLL_YPANREDRAW)
  1216.     goto redraw_up;
  1217. else
  1218.     fbcon_bmove(conp, t+count, 0, t, 0, b-t-count,
  1219. conp->vc_cols);
  1220. fbcon_clear(conp, b-count, 0, count, conp->vc_cols);
  1221. break;
  1222.     case __SCROLL_YREDRAW:
  1223.     redraw_up:
  1224. fbcon_redraw(conp, p, t, b-t-count, count*conp->vc_cols);
  1225. p->dispsw->clear(conp, p, real_y(p, b-count), 0,
  1226.  count, conp->vc_cols);
  1227. scr_memsetw((unsigned short *)(conp->vc_origin + 
  1228.          conp->vc_size_row * (b-count)), 
  1229.          conp->vc_video_erase_char,
  1230.          conp->vc_size_row * count);
  1231. return 1;
  1232.     }
  1233.     break;
  1234. case SM_DOWN:
  1235.     if (count > conp->vc_rows) /* Maximum realistic size */
  1236. count = conp->vc_rows;
  1237.     switch (p->scrollmode & __SCROLL_YMASK) {
  1238.     case __SCROLL_YMOVE:
  1239. p->dispsw->bmove(p, t, 0, t+count, 0, b-t-count,
  1240.  conp->vc_cols);
  1241. p->dispsw->clear(conp, p, t, 0,
  1242.  count, conp->vc_cols);
  1243. break;
  1244.     case __SCROLL_YWRAP:
  1245. if (b-t-count > 3*conp->vc_rows>>2) {
  1246.     if (conp->vc_rows-b > 0)
  1247. fbcon_bmove(conp, b, 0, b-count, 0,
  1248.     conp->vc_rows-b, conp->vc_cols);
  1249.     ywrap_down(unit, conp, p, count);
  1250.     if (t > 0)
  1251. fbcon_bmove(conp, count, 0, 0, 0, t,
  1252.     conp->vc_cols);
  1253. } else if (p->scrollmode & __SCROLL_YPANREDRAW)
  1254.     goto redraw_down;
  1255. else
  1256.     fbcon_bmove(conp, t, 0, t+count, 0, b-t-count,
  1257. conp->vc_cols);
  1258. fbcon_clear(conp, t, 0, count, conp->vc_cols);
  1259. break;
  1260.     case __SCROLL_YPAN:
  1261. if (( count-p->yscroll <= p->vrows-conp->vc_rows) &&
  1262.     (( !scroll_partial && (b-t == conp->vc_rows)) ||
  1263.      ( scroll_partial  && (b-t-count > 3*conp->vc_rows>>2)))) {
  1264.     if (conp->vc_rows-b > 0)
  1265. fbcon_bmove(conp, b, 0, b-count, 0,
  1266.     conp->vc_rows-b, conp->vc_cols);
  1267.     ypan_down(unit, conp, p, count);
  1268.     if (t > 0)
  1269. fbcon_bmove(conp, count, 0, 0, 0, t,
  1270.     conp->vc_cols);
  1271. } else if (p->scrollmode & __SCROLL_YPANREDRAW)
  1272.     goto redraw_down;
  1273. else
  1274.     fbcon_bmove(conp, t, 0, t+count, 0, b-t-count,
  1275. conp->vc_cols);
  1276. fbcon_clear(conp, t, 0, count, conp->vc_cols);
  1277. break;
  1278.     case __SCROLL_YREDRAW:
  1279.     redraw_down:
  1280. fbcon_redraw(conp, p, b - 1, b-t-count, -count*conp->vc_cols);
  1281. p->dispsw->clear(conp, p, real_y(p, t), 0,
  1282.  count, conp->vc_cols);
  1283.      scr_memsetw((unsigned short *)(conp->vc_origin + 
  1284.          conp->vc_size_row * t), 
  1285.          conp->vc_video_erase_char,
  1286.          conp->vc_size_row * count);
  1287.      return 1;
  1288.     }
  1289.     }
  1290.     return 0;
  1291. }
  1292. static void fbcon_bmove(struct vc_data *conp, int sy, int sx, int dy, int dx,
  1293. int height, int width)
  1294. {
  1295.     int unit = conp->vc_num;
  1296.     struct display *p = &fb_display[unit];
  1297.     
  1298.     if (!p->can_soft_blank && console_blanked)
  1299. return;
  1300.     if (!width || !height)
  1301. return;
  1302.     if (((sy <= p->cursor_y) && (p->cursor_y < sy+height) &&
  1303.   (sx <= p->cursor_x) && (p->cursor_x < sx+width)) ||
  1304.  ((dy <= p->cursor_y) && (p->cursor_y < dy+height) &&
  1305.   (dx <= p->cursor_x) && (p->cursor_x < dx+width)))
  1306. fbcon_cursor(conp, CM_ERASE|CM_SOFTBACK);
  1307.     /*  Split blits that cross physical y_wrap case.
  1308.      *  Pathological case involves 4 blits, better to use recursive
  1309.      *  code rather than unrolled case
  1310.      *
  1311.      *  Recursive invocations don't need to erase the cursor over and
  1312.      *  over again, so we use fbcon_bmove_rec()
  1313.      */
  1314.     fbcon_bmove_rec(p, sy, sx, dy, dx, height, width, p->vrows-p->yscroll);
  1315. }
  1316. static void fbcon_bmove_rec(struct display *p, int sy, int sx, int dy, int dx,
  1317.     int height, int width, u_int y_break)
  1318. {
  1319.     u_int b;
  1320.     if (sy < y_break && sy+height > y_break) {
  1321. b = y_break-sy;
  1322. if (dy < sy) { /* Avoid trashing self */
  1323.     fbcon_bmove_rec(p, sy, sx, dy, dx, b, width, y_break);
  1324.     fbcon_bmove_rec(p, sy+b, sx, dy+b, dx, height-b, width, y_break);
  1325. } else {
  1326.     fbcon_bmove_rec(p, sy+b, sx, dy+b, dx, height-b, width, y_break);
  1327.     fbcon_bmove_rec(p, sy, sx, dy, dx, b, width, y_break);
  1328. }
  1329. return;
  1330.     }
  1331.     if (dy < y_break && dy+height > y_break) {
  1332. b = y_break-dy;
  1333. if (dy < sy) { /* Avoid trashing self */
  1334.     fbcon_bmove_rec(p, sy, sx, dy, dx, b, width, y_break);
  1335.     fbcon_bmove_rec(p, sy+b, sx, dy+b, dx, height-b, width, y_break);
  1336. } else {
  1337.     fbcon_bmove_rec(p, sy+b, sx, dy+b, dx, height-b, width, y_break);
  1338.     fbcon_bmove_rec(p, sy, sx, dy, dx, b, width, y_break);
  1339. }
  1340. return;
  1341.     }
  1342.     p->dispsw->bmove(p, real_y(p, sy), sx, real_y(p, dy), dx, height, width);
  1343. }
  1344. static int fbcon_switch(struct vc_data *conp)
  1345. {
  1346.     int unit = conp->vc_num;
  1347.     struct display *p = &fb_display[unit];
  1348.     struct fb_info *info = p->fb_info;
  1349.     if (softback_top) {
  1350.      int l = fbcon_softback_size / conp->vc_size_row;
  1351. if (softback_lines)
  1352.     fbcon_set_origin(conp);
  1353.         softback_top = softback_curr = softback_in = softback_buf;
  1354.         softback_lines = 0;
  1355. if (l > 5)
  1356.     softback_end = softback_buf + l * conp->vc_size_row;
  1357. else {
  1358.     /* Smaller scrollback makes no sense, and 0 would screw
  1359.        the operation totally */
  1360.     softback_top = 0;
  1361. }
  1362.     }
  1363.     if (logo_shown >= 0) {
  1364.      struct vc_data *conp2 = vc_cons[logo_shown].d;
  1365.     
  1366.      if (conp2->vc_top == logo_lines && conp2->vc_bottom == conp2->vc_rows)
  1367.      conp2->vc_top = 0;
  1368.      logo_shown = -1;
  1369.     }
  1370.     p->var.yoffset = p->yscroll = 0;
  1371.     switch (p->scrollmode & __SCROLL_YMASK) {
  1372. case __SCROLL_YWRAP:
  1373.     scrollback_phys_max = p->vrows-conp->vc_rows;
  1374.     break;
  1375. case __SCROLL_YPAN:
  1376.     scrollback_phys_max = p->vrows-2*conp->vc_rows;
  1377.     if (scrollback_phys_max < 0)
  1378. scrollback_phys_max = 0;
  1379.     break;
  1380. default:
  1381.     scrollback_phys_max = 0;
  1382.     break;
  1383.     }
  1384.     scrollback_max = 0;
  1385.     scrollback_current = 0;
  1386.     if (info && info->switch_con)
  1387. (*info->switch_con)(unit, info);
  1388.     if (p->dispsw->clear_margins && vt_cons[unit]->vc_mode == KD_TEXT)
  1389. p->dispsw->clear_margins(conp, p, 0);
  1390.     if (logo_shown == -2) {
  1391. logo_shown = fg_console;
  1392. fbcon_show_logo(); /* This is protected above by initmem_freed */
  1393. update_region(fg_console,
  1394.       conp->vc_origin + conp->vc_size_row * conp->vc_top,
  1395.       conp->vc_size_row * (conp->vc_bottom - conp->vc_top) / 2);
  1396. return 0;
  1397.     }
  1398.     return 1;
  1399. }
  1400. static int fbcon_blank(struct vc_data *conp, int blank)
  1401. {
  1402.     struct display *p = &fb_display[conp->vc_num];
  1403.     struct fb_info *info = p->fb_info;
  1404.     if (blank < 0) /* Entering graphics mode */
  1405. return 0;
  1406.     fbcon_cursor(p->conp, blank ? CM_ERASE : CM_DRAW);
  1407.     if (!p->can_soft_blank) {
  1408. if (blank) {
  1409.     if (p->visual == FB_VISUAL_MONO01) {
  1410. if (p->screen_base)
  1411.     fb_memset255(p->screen_base,
  1412.  p->var.xres_virtual*p->var.yres_virtual*
  1413.  p->var.bits_per_pixel>>3);
  1414.     } else {
  1415.      unsigned short oldc;
  1416.      u_int height;
  1417.      u_int y_break;
  1418.      oldc = conp->vc_video_erase_char;
  1419.      conp->vc_video_erase_char &= p->charmask;
  1420.      height = conp->vc_rows;
  1421. y_break = p->vrows-p->yscroll;
  1422. if (height > y_break) {
  1423. p->dispsw->clear(conp, p, real_y(p, 0), 0, y_break, conp->vc_cols);
  1424. p->dispsw->clear(conp, p, real_y(p, y_break), 0, height-y_break, conp->vc_cols);
  1425. } else
  1426. p->dispsw->clear(conp, p, real_y(p, 0), 0, height, conp->vc_cols);
  1427. conp->vc_video_erase_char = oldc;
  1428.     }
  1429.     return 0;
  1430. } else {
  1431.     /* Tell console.c that it has to restore the screen itself */
  1432.     return 1;
  1433. }
  1434.     }
  1435.     (*info->blank)(blank, info);
  1436.     return 0;
  1437. }
  1438. static void fbcon_free_font(struct display *p)
  1439. {
  1440.     if (p->userfont && p->fontdata &&
  1441.         (--REFCOUNT(p->fontdata) == 0))
  1442. kfree(p->fontdata - FONT_EXTRA_WORDS*sizeof(int));
  1443.     p->fontdata = NULL;
  1444.     p->userfont = 0;
  1445. }
  1446. static inline int fbcon_get_font(int unit, struct console_font_op *op)
  1447. {
  1448.     struct display *p = &fb_display[unit];
  1449.     u8 *data = op->data;
  1450.     u8 *fontdata = p->fontdata;
  1451.     int i, j;
  1452. #ifdef CONFIG_FBCON_FONTWIDTH8_ONLY
  1453.     if (fontwidth(p) != 8) return -EINVAL;
  1454. #endif
  1455.     op->width = fontwidth(p);
  1456.     op->height = fontheight(p);
  1457.     op->charcount = (p->charmask == 0x1ff) ? 512 : 256;
  1458.     if (!op->data) return 0;
  1459.     
  1460.     if (op->width <= 8) {
  1461. j = fontheight(p);
  1462.      for (i = 0; i < op->charcount; i++) {
  1463.     memcpy(data, fontdata, j);
  1464.     memset(data+j, 0, 32-j);
  1465.     data += 32;
  1466.     fontdata += j;
  1467. }
  1468.     }
  1469. #ifndef CONFIG_FBCON_FONTWIDTH8_ONLY
  1470.     else if (op->width <= 16) {
  1471. j = fontheight(p) * 2;
  1472. for (i = 0; i < op->charcount; i++) {
  1473.     memcpy(data, fontdata, j);
  1474.     memset(data+j, 0, 64-j);
  1475.     data += 64;
  1476.     fontdata += j;
  1477. }
  1478.     } else if (op->width <= 24) {
  1479. for (i = 0; i < op->charcount; i++) {
  1480.     for (j = 0; j < fontheight(p); j++) {
  1481. *data++ = fontdata[0];
  1482. *data++ = fontdata[1];
  1483. *data++ = fontdata[2];
  1484. fontdata += sizeof(u32);
  1485.     }
  1486.     memset(data, 0, 3*(32-j));
  1487.     data += 3 * (32 - j);
  1488. }
  1489.     } else {
  1490. j = fontheight(p) * 4;
  1491. for (i = 0; i < op->charcount; i++) {
  1492.     memcpy(data, fontdata, j);
  1493.     memset(data+j, 0, 128-j);
  1494.     data += 128;
  1495.     fontdata += j;
  1496. }
  1497.     }
  1498. #endif
  1499.     return 0;
  1500. }
  1501. static int fbcon_do_set_font(int unit, struct console_font_op *op, u8 *data, int userfont)
  1502. {
  1503.     struct display *p = &fb_display[unit];
  1504.     int resize;
  1505.     int w = op->width;
  1506.     int h = op->height;
  1507.     int cnt;
  1508.     char *old_data = NULL;
  1509.     if (!fontwidthvalid(p,w)) {
  1510.         if (userfont && op->op != KD_FONT_OP_COPY)
  1511.     kfree(data - FONT_EXTRA_WORDS*sizeof(int));
  1512. return -ENXIO;
  1513.     }
  1514.     if (CON_IS_VISIBLE(p->conp) && softback_lines)
  1515. fbcon_set_origin(p->conp);
  1516.     resize = (w != fontwidth(p)) || (h != fontheight(p));
  1517.     if (p->userfont)
  1518.         old_data = p->fontdata;
  1519.     if (userfont)
  1520.         cnt = FNTCHARCNT(data);
  1521.     else
  1522.      cnt = 256;
  1523.     p->fontdata = data;
  1524.     if ((p->userfont = userfont))
  1525.         REFCOUNT(data)++;
  1526.     p->_fontwidth = w;
  1527.     p->_fontheight = h;
  1528.     if (p->conp->vc_hi_font_mask && cnt == 256) {
  1529.      p->conp->vc_hi_font_mask = 0;
  1530.      if (p->conp->vc_can_do_color)
  1531.     p->conp->vc_complement_mask >>= 1;
  1532.      p->fgshift--;
  1533.      p->bgshift--;
  1534.      p->charmask = 0xff;
  1535. /* ++Edmund: reorder the attribute bits */
  1536. if (p->conp->vc_can_do_color) {
  1537.     struct vc_data *conp = p->conp;
  1538.     unsigned short *cp = (unsigned short *) conp->vc_origin;
  1539.     int count = conp->vc_screenbuf_size/2;
  1540.     unsigned short c;
  1541.     for (; count > 0; count--, cp++) {
  1542.         c = scr_readw(cp);
  1543. scr_writew(((c & 0xfe00) >> 1) | (c & 0xff), cp);
  1544.     }
  1545.     c = conp->vc_video_erase_char;
  1546.     conp->vc_video_erase_char = ((c & 0xfe00) >> 1) | (c & 0xff);
  1547.     conp->vc_attr >>= 1;
  1548. }
  1549.     } else if (!p->conp->vc_hi_font_mask && cnt == 512) {
  1550.      p->conp->vc_hi_font_mask = 0x100;
  1551.      if (p->conp->vc_can_do_color)
  1552.     p->conp->vc_complement_mask <<= 1;
  1553.      p->fgshift++;
  1554.      p->bgshift++;
  1555.      p->charmask = 0x1ff;
  1556. /* ++Edmund: reorder the attribute bits */
  1557. {
  1558.     struct vc_data *conp = p->conp;
  1559.     unsigned short *cp = (unsigned short *) conp->vc_origin;
  1560.     int count = conp->vc_screenbuf_size/2;
  1561.     unsigned short c;
  1562.     for (; count > 0; count--, cp++) {
  1563.         unsigned short newc;
  1564.         c = scr_readw(cp);
  1565. if (conp->vc_can_do_color)
  1566.     newc = ((c & 0xff00) << 1) | (c & 0xff);
  1567. else
  1568.     newc = c & ~0x100;
  1569. scr_writew(newc, cp);
  1570.     }
  1571.     c = conp->vc_video_erase_char;
  1572.     if (conp->vc_can_do_color) {
  1573. conp->vc_video_erase_char = ((c & 0xff00) << 1) | (c & 0xff);
  1574. conp->vc_attr <<= 1;
  1575.     } else
  1576.         conp->vc_video_erase_char = c & ~0x100;
  1577. }
  1578.     }
  1579.     fbcon_font_widths(p);
  1580.     if (resize) {
  1581.      struct vc_data *conp = p->conp;
  1582. /* reset wrap/pan */
  1583. p->var.xoffset = p->var.yoffset = p->yscroll = 0;
  1584. p->vrows = p->var.yres_virtual/h;
  1585. if ((p->var.yres % h) && (p->var.yres_virtual % h < p->var.yres % h))
  1586.     p->vrows--;
  1587. updatescrollmode(p);
  1588. vc_resize_con( p->var.yres/h, p->var.xres/w, unit );
  1589.         if (CON_IS_VISIBLE(conp) && softback_buf) {
  1590.     int l = fbcon_softback_size / conp->vc_size_row;
  1591.     if (l > 5)
  1592. softback_end = softback_buf + l * conp->vc_size_row;
  1593.     else {
  1594. /* Smaller scrollback makes no sense, and 0 would screw
  1595.    the operation totally */
  1596. softback_top = 0;
  1597.          }
  1598.      }
  1599.     } else if (CON_IS_VISIBLE(p->conp) && vt_cons[unit]->vc_mode == KD_TEXT) {
  1600. if (p->dispsw->clear_margins)
  1601.     p->dispsw->clear_margins(p->conp, p, 0);
  1602. update_screen(unit);
  1603.     }
  1604.     if (old_data && (--REFCOUNT(old_data) == 0))
  1605. kfree(old_data - FONT_EXTRA_WORDS*sizeof(int));
  1606.     return 0;
  1607. }
  1608. static inline int fbcon_copy_font(int unit, struct console_font_op *op)
  1609. {
  1610.     struct display *od, *p = &fb_display[unit];
  1611.     int h = op->height;
  1612.     if (h < 0 || !vc_cons_allocated( h ))
  1613.         return -ENOTTY;
  1614.     if (h == unit)
  1615.         return 0; /* nothing to do */
  1616.     od = &fb_display[h];
  1617.     if (od->fontdata == p->fontdata)
  1618.         return 0; /* already the same font... */
  1619.     op->width = fontwidth(od);
  1620.     op->height = fontheight(od);
  1621.     return fbcon_do_set_font(unit, op, od->fontdata, od->userfont);
  1622. }
  1623. static inline int fbcon_set_font(int unit, struct console_font_op *op)
  1624. {
  1625.     int w = op->width;
  1626.     int h = op->height;
  1627.     int size = h;
  1628.     int i, k;
  1629.     u8 *new_data, *data = op->data, *p;
  1630. #ifdef CONFIG_FBCON_FONTWIDTH8_ONLY
  1631.     if (w != 8)
  1632.      return -EINVAL;
  1633. #endif
  1634.     if ((w <= 0) || (w > 32) || (op->charcount != 256 && op->charcount != 512))
  1635.         return -EINVAL;
  1636.     
  1637.     if (w > 8) { 
  1638.      if (w <= 16)
  1639.      size *= 2;
  1640.      else
  1641.      size *= 4;
  1642.     }
  1643.     size *= op->charcount;
  1644.        
  1645.     if (!(new_data = kmalloc(FONT_EXTRA_WORDS*sizeof(int)+size, GFP_USER)))
  1646.         return -ENOMEM;
  1647.     new_data += FONT_EXTRA_WORDS*sizeof(int);
  1648.     FNTSIZE(new_data) = size;
  1649.     FNTCHARCNT(new_data) = op->charcount;
  1650.     REFCOUNT(new_data) = 0; /* usage counter */
  1651.     p = new_data;
  1652.     if (w <= 8) {
  1653. for (i = 0; i < op->charcount; i++) {
  1654.     memcpy(p, data, h);
  1655.     data += 32;
  1656.     p += h;
  1657. }
  1658.     }
  1659. #ifndef CONFIG_FBCON_FONTWIDTH8_ONLY
  1660.     else if (w <= 16) {
  1661. h *= 2;
  1662. for (i = 0; i < op->charcount; i++) {
  1663.     memcpy(p, data, h);
  1664.     data += 64;
  1665.     p += h;
  1666. }
  1667.     } else if (w <= 24) {
  1668. for (i = 0; i < op->charcount; i++) {
  1669.     int j;
  1670.     for (j = 0; j < h; j++) {
  1671.         memcpy(p, data, 3);
  1672. p[3] = 0;
  1673. data += 3;
  1674. p += sizeof(u32);
  1675.     }
  1676.     data += 3*(32 - h);
  1677. }
  1678.     } else {
  1679. h *= 4;
  1680. for (i = 0; i < op->charcount; i++) {
  1681.     memcpy(p, data, h);
  1682.     data += 128;
  1683.     p += h;
  1684. }
  1685.     }
  1686. #endif
  1687.     /* we can do it in u32 chunks because of charcount is 256 or 512, so
  1688.        font length must be multiple of 256, at least. And 256 is multiple
  1689.        of 4 */
  1690.     k = 0;
  1691.     while (p > new_data) k += *--(u32 *)p;
  1692.     FNTSUM(new_data) = k;
  1693.     /* Check if the same font is on some other console already */
  1694.     for (i = 0; i < MAX_NR_CONSOLES; i++) {
  1695.      if (fb_display[i].userfont &&
  1696.          fb_display[i].fontdata &&
  1697.          FNTSUM(fb_display[i].fontdata) == k &&
  1698.          FNTSIZE(fb_display[i].fontdata) == size &&
  1699.          fontwidth(&fb_display[i]) == w &&
  1700.     !memcmp(fb_display[i].fontdata, new_data, size)) {
  1701.     kfree(new_data - FONT_EXTRA_WORDS*sizeof(int));
  1702.     new_data = fb_display[i].fontdata;
  1703.     break;
  1704.      }
  1705.     }
  1706.     return fbcon_do_set_font(unit, op, new_data, 1);
  1707. }
  1708. static inline int fbcon_set_def_font(int unit, struct console_font_op *op)
  1709. {
  1710.     char name[MAX_FONT_NAME];
  1711.     struct fbcon_font_desc *f;
  1712.     struct display *p = &fb_display[unit];
  1713.     if (!op->data)
  1714. f = fbcon_get_default_font(p->var.xres, p->var.yres);
  1715.     else if (strncpy_from_user(name, op->data, MAX_FONT_NAME-1) < 0)
  1716. return -EFAULT;
  1717.     else {
  1718. name[MAX_FONT_NAME-1] = 0;
  1719. if (!(f = fbcon_find_font(name)))
  1720.     return -ENOENT;
  1721.     }
  1722.     op->width = f->width;
  1723.     op->height = f->height;
  1724.     return fbcon_do_set_font(unit, op, f->data, 0);
  1725. }
  1726. static int fbcon_font_op(struct vc_data *conp, struct console_font_op *op)
  1727. {
  1728.     int unit = conp->vc_num;
  1729.     switch (op->op) {
  1730. case KD_FONT_OP_SET:
  1731.     return fbcon_set_font(unit, op);
  1732. case KD_FONT_OP_GET:
  1733.     return fbcon_get_font(unit, op);
  1734. case KD_FONT_OP_SET_DEFAULT:
  1735.     return fbcon_set_def_font(unit, op);
  1736. case KD_FONT_OP_COPY:
  1737.     return fbcon_copy_font(unit, op);
  1738. default:
  1739.     return -ENOSYS;
  1740.     }
  1741. }
  1742. static u16 palette_red[16];
  1743. static u16 palette_green[16];
  1744. static u16 palette_blue[16];
  1745. static struct fb_cmap palette_cmap  = {
  1746.     0, 16, palette_red, palette_green, palette_blue, NULL
  1747. };
  1748. static int fbcon_set_palette(struct vc_data *conp, unsigned char *table)
  1749. {
  1750.     int unit = conp->vc_num;
  1751.     struct display *p = &fb_display[unit];
  1752.     int i, j, k;
  1753.     u8 val;
  1754.     if (!conp->vc_can_do_color || (!p->can_soft_blank && console_blanked))
  1755. return -EINVAL;
  1756.     for (i = j = 0; i < 16; i++) {
  1757. k = table[i];
  1758. val = conp->vc_palette[j++];
  1759. palette_red[k] = (val<<8)|val;
  1760. val = conp->vc_palette[j++];
  1761. palette_green[k] = (val<<8)|val;
  1762. val = conp->vc_palette[j++];
  1763. palette_blue[k] = (val<<8)|val;
  1764.     }
  1765.     if (p->var.bits_per_pixel <= 4)
  1766. palette_cmap.len = 1<<p->var.bits_per_pixel;
  1767.     else
  1768. palette_cmap.len = 16;
  1769.     palette_cmap.start = 0;
  1770.     return p->fb_info->fbops->fb_set_cmap(&palette_cmap, 1, unit, p->fb_info);
  1771. }
  1772. static u16 *fbcon_screen_pos(struct vc_data *conp, int offset)
  1773. {
  1774.     int line;
  1775.     unsigned long p;
  1776.     if (conp->vc_num != fg_console || !softback_lines)
  1777.      return (u16 *)(conp->vc_origin + offset);
  1778.     line = offset / conp->vc_size_row;
  1779.     if (line >= softback_lines)
  1780.      return (u16 *)(conp->vc_origin + offset - softback_lines * conp->vc_size_row);
  1781.     p = softback_curr + offset;
  1782.     if (p >= softback_end)
  1783.      p += softback_buf - softback_end;
  1784.     return (u16 *)p;
  1785. }
  1786. static unsigned long fbcon_getxy(struct vc_data *conp, unsigned long pos, int *px, int *py)
  1787. {
  1788.     int x, y;
  1789.     unsigned long ret;
  1790.     if (pos >= conp->vc_origin && pos < conp->vc_scr_end) {
  1791.      unsigned long offset = (pos - conp->vc_origin) / 2;
  1792.     
  1793.      x = offset % conp->vc_cols;
  1794.      y = offset / conp->vc_cols;
  1795.      if (conp->vc_num == fg_console)
  1796.          y += softback_lines;
  1797.      ret = pos + (conp->vc_cols - x) * 2;
  1798.     } else if (conp->vc_num == fg_console && softback_lines) {
  1799.      unsigned long offset = pos - softback_curr;
  1800.     
  1801.      if (pos < softback_curr)
  1802.          offset += softback_end - softback_buf;
  1803.      offset /= 2;
  1804.      x = offset % conp->vc_cols;
  1805.      y = offset / conp->vc_cols;
  1806. ret = pos + (conp->vc_cols - x) * 2;
  1807. if (ret == softback_end)
  1808.     ret = softback_buf;
  1809. if (ret == softback_in)
  1810.     ret = conp->vc_origin;
  1811.     } else {
  1812.      /* Should not happen */
  1813.      x = y = 0;
  1814.      ret = conp->vc_origin;
  1815.     }
  1816.     if (px) *px = x;
  1817.     if (py) *py = y;
  1818.     return ret;
  1819. }
  1820. /* As we might be inside of softback, we may work with non-contiguous buffer,
  1821.    that's why we have to use a separate routine. */
  1822. static void fbcon_invert_region(struct vc_data *conp, u16 *p, int cnt)
  1823. {
  1824.     while (cnt--) {
  1825. u16 a = scr_readw(p);
  1826. if (!conp->vc_can_do_color)
  1827.     a ^= 0x0800;
  1828. else if (conp->vc_hi_font_mask == 0x100)
  1829.     a = ((a) & 0x11ff) | (((a) & 0xe000) >> 4) | (((a) & 0x0e00) << 4);
  1830. else
  1831.     a = ((a) & 0x88ff) | (((a) & 0x7000) >> 4) | (((a) & 0x0700) << 4);
  1832. scr_writew(a, p++);
  1833. if (p == (u16 *)softback_end)
  1834.     p = (u16 *)softback_buf;
  1835. if (p == (u16 *)softback_in)
  1836.     p = (u16 *)conp->vc_origin;
  1837.     }
  1838. }
  1839. static int fbcon_scrolldelta(struct vc_data *conp, int lines)
  1840. {
  1841.     int unit, offset, limit, scrollback_old;
  1842.     struct display *p;
  1843.     
  1844.     unit = fg_console;
  1845.     p = &fb_display[unit];
  1846.     if (softback_top) {
  1847.      if (conp->vc_num != unit)
  1848.          return 0;
  1849.      if (vt_cons[unit]->vc_mode != KD_TEXT || !lines)
  1850.          return 0;
  1851.      if (logo_shown >= 0) {
  1852. struct vc_data *conp2 = vc_cons[logo_shown].d;
  1853.     
  1854. if (conp2->vc_top == logo_lines && conp2->vc_bottom == conp2->vc_rows)
  1855.          conp2->vc_top = 0;
  1856.      if (logo_shown == unit) {
  1857.          unsigned long p, q;
  1858.          int i;
  1859.          
  1860.          p = softback_in;
  1861.          q = conp->vc_origin + logo_lines * conp->vc_size_row;
  1862.          for (i = 0; i < logo_lines; i++) {
  1863.           if (p == softback_top) break;
  1864.           if (p == softback_buf) p = softback_end;
  1865.           p -= conp->vc_size_row;
  1866.           q -= conp->vc_size_row;
  1867.           scr_memcpyw((u16 *)q, (u16 *)p, conp->vc_size_row);
  1868.          }
  1869.          softback_in = p;
  1870.          update_region(unit, conp->vc_origin, logo_lines * conp->vc_cols);
  1871.      }
  1872. logo_shown = -1;
  1873. }
  1874.      fbcon_cursor(conp, CM_ERASE|CM_SOFTBACK);
  1875.      fbcon_redraw_softback(conp, p, lines);
  1876.      fbcon_cursor(conp, CM_DRAW|CM_SOFTBACK);
  1877.      return 0;
  1878.     }
  1879.     if (!scrollback_phys_max)
  1880. return -ENOSYS;
  1881.     scrollback_old = scrollback_current;
  1882.     scrollback_current -= lines;
  1883.     if (scrollback_current < 0)
  1884. scrollback_current = 0;
  1885.     else if (scrollback_current > scrollback_max)
  1886. scrollback_current = scrollback_max;
  1887.     if (scrollback_current == scrollback_old)
  1888. return 0;
  1889.     if (!p->can_soft_blank &&
  1890. (console_blanked || vt_cons[unit]->vc_mode != KD_TEXT || !lines))
  1891. return 0;
  1892.     fbcon_cursor(conp, CM_ERASE);
  1893.     offset = p->yscroll-scrollback_current;
  1894.     limit = p->vrows;
  1895.     switch (p->scrollmode && __SCROLL_YMASK) {
  1896. case __SCROLL_YWRAP:
  1897.     p->var.vmode |= FB_VMODE_YWRAP;
  1898.     break;
  1899. case __SCROLL_YPAN:
  1900.     limit -= conp->vc_rows;
  1901.     p->var.vmode &= ~FB_VMODE_YWRAP;
  1902.     break;
  1903.     }
  1904.     if (offset < 0)
  1905. offset += limit;
  1906.     else if (offset >= limit)
  1907. offset -= limit;
  1908.     p->var.xoffset = 0;
  1909.     p->var.yoffset = offset*fontheight(p);
  1910.     p->fb_info->updatevar(unit, p->fb_info);
  1911.     if (!scrollback_current)
  1912. fbcon_cursor(conp, CM_DRAW);
  1913.     return 0;
  1914. }
  1915. static int fbcon_set_origin(struct vc_data *conp)
  1916. {
  1917.     if (softback_lines && !console_blanked)
  1918.         fbcon_scrolldelta(conp, softback_lines);
  1919.     return 0;
  1920. }
  1921. static inline unsigned safe_shift(unsigned d,int n)
  1922. {
  1923.     return n<0 ? d>>-n : d<<n;
  1924. }
  1925. static int __init fbcon_show_logo( void )
  1926. {
  1927.     struct display *p = &fb_display[fg_console]; /* draw to vt in foreground */
  1928.     int depth = p->var.bits_per_pixel;
  1929.     int line = p->next_line;
  1930.     unsigned char *fb = p->screen_base;
  1931.     unsigned char *logo;
  1932.     unsigned char *dst, *src;
  1933.     int i, j, n, x1, y1, x;
  1934.     int logo_depth, done = 0;
  1935.     /* Return if the frame buffer is not mapped */
  1936.     if (!fb)
  1937. return 0;
  1938.     /*
  1939.      * Set colors if visual is PSEUDOCOLOR and we have enough colors, or for
  1940.      * DIRECTCOLOR
  1941.      * We don't have to set the colors for the 16-color logo, since that logo
  1942.      * uses the standard VGA text console palette
  1943.      */
  1944.     if ((p->visual == FB_VISUAL_PSEUDOCOLOR && depth >= 8) ||
  1945. (p->visual == FB_VISUAL_DIRECTCOLOR && depth >= 24))
  1946. for (i = 0; i < LINUX_LOGO_COLORS; i += n) {
  1947.     n = LINUX_LOGO_COLORS - i;
  1948.     if (n > 16)
  1949. /* palette_cmap provides space for only 16 colors at once */
  1950. n = 16;
  1951.     palette_cmap.start = 32 + i;
  1952.     palette_cmap.len   = n;
  1953.     for( j = 0; j < n; ++j ) {
  1954. palette_cmap.red[j]   = (linux_logo_red[i+j] << 8) |
  1955. linux_logo_red[i+j];
  1956. palette_cmap.green[j] = (linux_logo_green[i+j] << 8) |
  1957. linux_logo_green[i+j];
  1958. palette_cmap.blue[j]  = (linux_logo_blue[i+j] << 8) |
  1959. linux_logo_blue[i+j];
  1960.     }
  1961.     p->fb_info->fbops->fb_set_cmap(&palette_cmap, 1, fg_console,
  1962.    p->fb_info);
  1963. }
  1964.     if (depth >= 8) {
  1965. logo = linux_logo;
  1966. logo_depth = 8;
  1967.     }
  1968.     else if (depth >= 4) {
  1969. logo = linux_logo16;
  1970. logo_depth = 4;
  1971.     }
  1972.     else {
  1973. logo = linux_logo_bw;
  1974. logo_depth = 1;
  1975.     }
  1976.     
  1977.     if (p->fb_info->fbops->fb_rasterimg)
  1978.      p->fb_info->fbops->fb_rasterimg(p->fb_info, 1);
  1979.     for (x = 0; x < smp_num_cpus * (LOGO_W + 8) &&
  1980.       x < p->var.xres - (LOGO_W + 8); x += (LOGO_W + 8)) {
  1981.       
  1982. #if defined(CONFIG_FBCON_CFB16) || defined(CONFIG_FBCON_CFB24) || 
  1983.     defined(CONFIG_FBCON_CFB32) || defined(CONFIG_FB_SBUS)
  1984.         if (p->visual == FB_VISUAL_DIRECTCOLOR) {
  1985.     unsigned int val; /* max. depth 32! */
  1986.     int bdepth;
  1987.     int redshift, greenshift, blueshift;
  1988.     /* Bug: Doesn't obey msb_right ... (who needs that?) */
  1989.     redshift   = p->var.red.offset;
  1990.     greenshift = p->var.green.offset;
  1991.     blueshift  = p->var.blue.offset;
  1992.     if (depth >= 24 && (depth % 8) == 0) {
  1993. /* have at least 8 bits per color */
  1994. src = logo;
  1995. bdepth = depth/8;
  1996. for( y1 = 0; y1 < LOGO_H; y1++ ) {
  1997.     dst = fb + y1*line + x*bdepth;
  1998.     for( x1 = 0; x1 < LOGO_W; x1++, src++ ) {
  1999. val = (*src << redshift) |
  2000.       (*src << greenshift) |
  2001.       (*src << blueshift);
  2002. if (bdepth == 4 && !((long)dst & 3)) {
  2003.     /* Some cards require 32bit access */
  2004.     fb_writel (val, dst);
  2005.     dst += 4;
  2006. } else if (bdepth == 2 && !((long)dst & 1)) {
  2007.     /* others require 16bit access */
  2008.     fb_writew (val,dst);
  2009.     dst +=2;
  2010. } else {
  2011. #ifdef __LITTLE_ENDIAN
  2012.     for( i = 0; i < bdepth; ++i )
  2013. #else
  2014.     for( i = bdepth-1; i >= 0; --i )
  2015. #endif
  2016.         fb_writeb (val >> (i*8), dst++);
  2017. }
  2018.     }
  2019. }
  2020.     }
  2021.     else if (depth >= 12 && depth <= 23) {
  2022.         /* have 4..7 bits per color, using 16 color image */
  2023. unsigned int pix;
  2024. src = linux_logo16;
  2025. bdepth = (depth+7)/8;
  2026. for( y1 = 0; y1 < LOGO_H; y1++ ) {
  2027.     dst = fb + y1*line + x*bdepth;
  2028.     for( x1 = 0; x1 < LOGO_W/2; x1++, src++ ) {
  2029. pix = *src >> 4; /* upper nibble */
  2030. val = (pix << redshift) |
  2031.       (pix << greenshift) |
  2032.       (pix << blueshift);
  2033. #ifdef __LITTLE_ENDIAN
  2034. for( i = 0; i < bdepth; ++i )
  2035. #else
  2036. for( i = bdepth-1; i >= 0; --i )
  2037. #endif
  2038.     fb_writeb (val >> (i*8), dst++);
  2039. pix = *src & 0x0f; /* lower nibble */
  2040. val = (pix << redshift) |
  2041.       (pix << greenshift) |
  2042.       (pix << blueshift);
  2043. #ifdef __LITTLE_ENDIAN
  2044. for( i = 0; i < bdepth; ++i )
  2045. #else
  2046. for( i = bdepth-1; i >= 0; --i )
  2047. #endif
  2048.     fb_writeb (val >> (i*8), dst++);
  2049.     }
  2050. }
  2051.     }
  2052.     done = 1;
  2053.         }
  2054. #endif
  2055. #if defined(CONFIG_FBCON_CFB16) || defined(CONFIG_FBCON_CFB24) || 
  2056.     defined(CONFIG_FBCON_CFB32) || defined(CONFIG_FB_SBUS)
  2057. if ((depth % 8 == 0) && (p->visual == FB_VISUAL_TRUECOLOR)) {
  2058.     /* Modes without color mapping, needs special data transformation... */
  2059.     unsigned int val; /* max. depth 32! */
  2060.     int bdepth = depth/8;
  2061.     unsigned char mask[9] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
  2062.     unsigned char redmask, greenmask, bluemask;
  2063.     int redshift, greenshift, blueshift;
  2064.     /* Bug: Doesn't obey msb_right ... (who needs that?) */
  2065.     redmask   = mask[p->var.red.length   < 8 ? p->var.red.length   : 8];
  2066.     greenmask = mask[p->var.green.length < 8 ? p->var.green.length : 8];
  2067.     bluemask  = mask[p->var.blue.length  < 8 ? p->var.blue.length  : 8];
  2068.     redshift   = p->var.red.offset   - (8-p->var.red.length);
  2069.     greenshift = p->var.green.offset - (8-p->var.green.length);
  2070.     blueshift  = p->var.blue.offset  - (8-p->var.blue.length);
  2071.     src = logo;
  2072.     for( y1 = 0; y1 < LOGO_H; y1++ ) {
  2073. dst = fb + y1*line + x*bdepth;
  2074. for( x1 = 0; x1 < LOGO_W; x1++, src++ ) {
  2075.     val = safe_shift((linux_logo_red[*src-32]   & redmask), redshift) |
  2076.           safe_shift((linux_logo_green[*src-32] & greenmask), greenshift) |
  2077.           safe_shift((linux_logo_blue[*src-32]  & bluemask), blueshift);
  2078.     if (bdepth == 4 && !((long)dst & 3)) {
  2079. /* Some cards require 32bit access */
  2080. fb_writel (val, dst);
  2081. dst += 4;
  2082.     } else if (bdepth == 2 && !((long)dst & 1)) {
  2083. /* others require 16bit access */
  2084. fb_writew (val,dst);
  2085. dst +=2;
  2086.     } else {
  2087. #ifdef __LITTLE_ENDIAN
  2088. for( i = 0; i < bdepth; ++i )
  2089. #else
  2090. for( i = bdepth-1; i >= 0; --i )
  2091. #endif
  2092.     fb_writeb (val >> (i*8), dst++);
  2093.     }
  2094. }
  2095.     }
  2096.     done = 1;
  2097. }
  2098. #endif
  2099. #if defined(CONFIG_FBCON_CFB4)
  2100. if (depth == 4 && p->type == FB_TYPE_PACKED_PIXELS) {
  2101. src = logo;
  2102. for( y1 = 0; y1 < LOGO_H; y1++) {
  2103. dst = fb + y1*line + x/2;
  2104. for( x1 = 0; x1 < LOGO_W/2; x1++) {
  2105. u8 q = *src++;
  2106. q = (q << 4) | (q >> 4);
  2107. fb_writeb (q, dst++);
  2108. }
  2109. }
  2110. done = 1;
  2111. }
  2112. #endif
  2113. #if defined(CONFIG_FBCON_CFB8) || defined(CONFIG_FB_SBUS)
  2114. if (depth == 8 && p->type == FB_TYPE_PACKED_PIXELS) {
  2115.     /* depth 8 or more, packed, with color registers */
  2116.     src = logo;
  2117.     for( y1 = 0; y1 < LOGO_H; y1++ ) {
  2118. dst = fb + y1*line + x;
  2119. for( x1 = 0; x1 < LOGO_W; x1++ )
  2120.     fb_writeb (*src++, dst++);
  2121.     }
  2122.     done = 1;
  2123. }
  2124. #endif
  2125. #if defined(CONFIG_FBCON_AFB) || defined(CONFIG_FBCON_ILBM) || 
  2126.     defined(CONFIG_FBCON_IPLAN2P2) || defined(CONFIG_FBCON_IPLAN2P4) || 
  2127.     defined(CONFIG_FBCON_IPLAN2P8)
  2128. if (depth >= 2 && (p->type == FB_TYPE_PLANES ||
  2129.    p->type == FB_TYPE_INTERLEAVED_PLANES)) {
  2130.     /* planes (normal or interleaved), with color registers */
  2131.     int bit;
  2132.     unsigned char val, mask;
  2133.     int plane = p->next_plane;
  2134. #if defined(CONFIG_FBCON_IPLAN2P2) || defined(CONFIG_FBCON_IPLAN2P4) || 
  2135.     defined(CONFIG_FBCON_IPLAN2P8)
  2136.     int line_length = p->line_length;
  2137.     /* for support of Atari interleaved planes */
  2138. #define MAP_X(x) (line_length ? (x) : ((x) & ~1)*depth + ((x) & 1))
  2139. #else
  2140. #define MAP_X(x) (x)
  2141. #endif
  2142.     /* extract a bit from the source image */
  2143. #define BIT(p,pix,bit) (p[pix*logo_depth/8] & 
  2144.  (1 << ((8-((pix*logo_depth)&7)-logo_depth) + bit)))
  2145.     src = logo;
  2146.     for( y1 = 0; y1 < LOGO_H; y1++ ) {
  2147. for( x1 = 0; x1 < LOGO_LINE; x1++, src += logo_depth ) {
  2148.     dst = fb + y1*line + MAP_X(x/8+x1);
  2149.     for( bit = 0; bit < logo_depth; bit++ ) {
  2150. val = 0;
  2151. for( mask = 0x80, i = 0; i < 8; mask >>= 1, i++ ) {
  2152.     if (BIT( src, i, bit ))
  2153. val |= mask;
  2154. }
  2155. *dst = val;
  2156. dst += plane;
  2157.     }
  2158. }
  2159.     }
  2160.     /* fill remaining planes */
  2161.     if (depth > logo_depth) {
  2162. for( y1 = 0; y1 < LOGO_H; y1++ ) {
  2163.     for( x1 = 0; x1 < LOGO_LINE; x1++ ) {
  2164. dst = fb + y1*line + MAP_X(x/8+x1) + logo_depth*plane;
  2165. for( i = logo_depth; i < depth; i++, dst += plane )
  2166.     *dst = 0x00;
  2167.     }
  2168. }
  2169.     }
  2170.     done = 1;
  2171.     break;
  2172. }
  2173. #endif
  2174. #if defined(CONFIG_FBCON_MFB) || defined(CONFIG_FBCON_AFB) || 
  2175.     defined(CONFIG_FBCON_ILBM) || defined(CONFIG_FBCON_HGA)
  2176. if (depth == 1 && (p->type == FB_TYPE_PACKED_PIXELS ||
  2177.    p->type == FB_TYPE_PLANES ||
  2178.    p->type == FB_TYPE_INTERLEAVED_PLANES)) {
  2179.     /* monochrome */
  2180.     unsigned char inverse = p->inverse || p->visual == FB_VISUAL_MONO01
  2181. ? 0x00 : 0xff;
  2182.     int is_hga = !strncmp(p->fb_info->modename, "HGA", 3);
  2183.     /* can't use simply memcpy because need to apply inverse */
  2184.     for( y1 = 0; y1 < LOGO_H; y1++ ) {
  2185. src = logo + y1*LOGO_LINE;
  2186. if (is_hga)
  2187.     dst = fb + (y1%4)*8192 + (y1>>2)*line + x/8;
  2188. else
  2189.     dst = fb + y1*line + x/8;
  2190. for( x1 = 0; x1 < LOGO_LINE; ++x1 )
  2191.     fb_writeb(*src++ ^ inverse, dst++);
  2192.     }
  2193.     done = 1;
  2194. }
  2195. #endif
  2196. #if defined(CONFIG_FBCON_VGA_PLANES)
  2197. if (depth == 4 && p->type == FB_TYPE_VGA_PLANES) {
  2198. outb_p(1,0x3ce); outb_p(0xf,0x3cf);
  2199. outb_p(3,0x3ce); outb_p(0,0x3cf);
  2200. outb_p(5,0x3ce); outb_p(0,0x3cf);
  2201. src = logo;
  2202. for (y1 = 0; y1 < LOGO_H; y1++) {
  2203. for (x1 = 0; x1 < LOGO_W / 2; x1++) {
  2204. dst = fb + y1*line + x1/4 + x/8;
  2205. outb_p(0,0x3ce);
  2206. outb_p(*src >> 4,0x3cf);
  2207. outb_p(8,0x3ce);
  2208. outb_p(1 << (7 - x1 % 4 * 2),0x3cf);
  2209. fb_readb (dst);
  2210. fb_writeb (0, dst);
  2211. outb_p(0,0x3ce);
  2212. outb_p(*src & 0xf,0x3cf);
  2213. outb_p(8,0x3ce);
  2214. outb_p(1 << (7 - (1 + x1 % 4 * 2)),0x3cf);
  2215. fb_readb (dst);
  2216. fb_writeb (0, dst);
  2217. src++;
  2218. }
  2219. }
  2220. done = 1;
  2221. }
  2222. #endif
  2223.     }
  2224.     
  2225.     if (p->fb_info->fbops->fb_rasterimg)
  2226.      p->fb_info->fbops->fb_rasterimg(p->fb_info, 0);
  2227.     /* Modes not yet supported: packed pixels with depth != 8 (does such a
  2228.      * thing exist in reality?) */
  2229.     return done ? (LOGO_H + fontheight(p) - 1) / fontheight(p) : 0 ;
  2230. }
  2231. #ifdef CONFIG_PM
  2232. /* console.c doesn't do enough here */
  2233. static int
  2234. pm_fbcon_request(struct pm_dev *dev, pm_request_t rqst, void *data)
  2235. {
  2236. unsigned long flags;
  2237. switch (rqst)
  2238. {
  2239. case PM_RESUME:
  2240. acquire_console_sem();
  2241. fbcon_sleeping = 0;
  2242. if (use_timer_cursor) {
  2243. cursor_timer.expires = jiffies+HZ/50;
  2244. add_timer(&cursor_timer);
  2245. }
  2246. release_console_sem();
  2247. break;
  2248. case PM_SUSPEND:
  2249. acquire_console_sem();
  2250. save_flags(flags);
  2251. cli();
  2252. if (use_timer_cursor)
  2253. del_timer(&cursor_timer);
  2254. fbcon_sleeping = 1;
  2255. restore_flags(flags);
  2256. release_console_sem();
  2257. break;
  2258. }
  2259. return 0;
  2260. }
  2261. #endif /* CONFIG_PM */
  2262. /*
  2263.  *  The console `switch' structure for the frame buffer based console
  2264.  */
  2265.  
  2266. const struct consw fb_con = {
  2267.     con_startup:  fbcon_startup, 
  2268.     con_init:  fbcon_init,
  2269.     con_deinit:  fbcon_deinit,
  2270.     con_clear:  fbcon_clear,
  2271.     con_putc:  fbcon_putc,
  2272.     con_putcs:  fbcon_putcs,
  2273.     con_cursor:  fbcon_cursor,
  2274.     con_scroll:  fbcon_scroll,
  2275.     con_bmove:  fbcon_bmove,
  2276.     con_switch:  fbcon_switch,
  2277.     con_blank:  fbcon_blank,
  2278.     con_font_op: fbcon_font_op,
  2279.     con_set_palette:  fbcon_set_palette,
  2280.     con_scrolldelta:  fbcon_scrolldelta,
  2281.     con_set_origin:  fbcon_set_origin,
  2282.     con_invert_region: fbcon_invert_region,
  2283.     con_screen_pos: fbcon_screen_pos,
  2284.     con_getxy: fbcon_getxy,
  2285. };
  2286. /*
  2287.  *  Dummy Low Level Operations
  2288.  */
  2289. static void fbcon_dummy_op(void) {}
  2290. #define DUMMY (void *)fbcon_dummy_op
  2291. struct display_switch fbcon_dummy = {
  2292.     setup: DUMMY,
  2293.     bmove: DUMMY,
  2294.     clear: DUMMY,
  2295.     putc: DUMMY,
  2296.     putcs: DUMMY,
  2297.     revc: DUMMY,
  2298. };
  2299. /*
  2300.  *  Visible symbols for modules
  2301.  */
  2302. EXPORT_SYMBOL(fb_display);
  2303. EXPORT_SYMBOL(fbcon_redraw_bmove);
  2304. EXPORT_SYMBOL(fbcon_redraw_clear);
  2305. EXPORT_SYMBOL(fbcon_dummy);
  2306. EXPORT_SYMBOL(fb_con);
  2307. MODULE_LICENSE("GPL");