fbcon.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:70k
源码类别:

嵌入式Linux

开发平台:

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