parisc/stifb: Keep track of hardware path of graphics card
[linux-2.6-microblaze.git] / drivers / video / console / sticon.c
1 /*
2  *  linux/drivers/video/console/sticon.c - console driver using HP's STI firmware
3  *
4  *      Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org>
5  *      Copyright (C) 2002-2020 Helge Deller <deller@gmx.de>
6  *
7  *  Based on linux/drivers/video/vgacon.c and linux/drivers/video/fbcon.c,
8  *  which were
9  *
10  *      Created 28 Sep 1997 by Geert Uytterhoeven
11  *      Rewritten by Martin Mares <mj@ucw.cz>, July 1998
12  *      Copyright (C) 1991, 1992  Linus Torvalds
13  *                          1995  Jay Estabrook
14  *      Copyright (C) 1995 Geert Uytterhoeven
15  *      Copyright (C) 1993 Bjoern Brauel
16  *                         Roman Hodek
17  *      Copyright (C) 1993 Hamish Macdonald
18  *                         Greg Harp
19  *      Copyright (C) 1994 David Carter [carter@compsci.bristol.ac.uk]
20  *
21  *            with work by William Rucklidge (wjr@cs.cornell.edu)
22  *                         Geert Uytterhoeven
23  *                         Jes Sorensen (jds@kom.auc.dk)
24  *                         Martin Apel
25  *            with work by Guenther Kelleter
26  *                         Martin Schaller
27  *                         Andreas Schwab
28  *                         Emmanuel Marty (core@ggi-project.org)
29  *                         Jakub Jelinek (jj@ultra.linux.cz)
30  *                         Martin Mares <mj@ucw.cz>
31  *
32  *  This file is subject to the terms and conditions of the GNU General Public
33  *  License.  See the file COPYING in the main directory of this archive for
34  *  more details.
35  *
36  */
37
38 #include <linux/init.h>
39 #include <linux/kernel.h>
40 #include <linux/console.h>
41 #include <linux/errno.h>
42 #include <linux/vt_kern.h>
43 #include <linux/kd.h>
44 #include <linux/selection.h>
45 #include <linux/module.h>
46 #include <linux/slab.h>
47 #include <linux/font.h>
48 #include <linux/crc32.h>
49 #include <linux/fb.h>
50
51 #include <asm/io.h>
52
53 #include "../fbdev/sticore.h"
54
55 /* switching to graphics mode */
56 #define BLANK 0
57 static int vga_is_gfx;
58
59 #define STI_DEF_FONT    sticon_sti->font
60
61 /* borrowed from fbcon.c */
62 #define FNTREFCOUNT(fd) (fd->refcount)
63 #define FNTCRC(fd)      (fd->crc)
64 static struct sti_cooked_font *font_data[MAX_NR_CONSOLES];
65
66 /* this is the sti_struct used for this console */
67 static struct sti_struct *sticon_sti;
68
69 static const char *sticon_startup(void)
70 {
71     return "STI console";
72 }
73
74 static void sticon_putc(struct vc_data *conp, int c, int ypos, int xpos)
75 {
76     if (vga_is_gfx || console_blanked)
77             return;
78
79     if (conp->vc_mode != KD_TEXT)
80             return;
81
82     sti_putc(sticon_sti, c, ypos, xpos, font_data[conp->vc_num]);
83 }
84
85 static void sticon_putcs(struct vc_data *conp, const unsigned short *s,
86                          int count, int ypos, int xpos)
87 {
88     if (vga_is_gfx || console_blanked)
89             return;
90
91     if (conp->vc_mode != KD_TEXT)
92             return;
93
94     while (count--) {
95         sti_putc(sticon_sti, scr_readw(s++), ypos, xpos++,
96                  font_data[conp->vc_num]);
97     }
98 }
99
100 static void sticon_cursor(struct vc_data *conp, int mode)
101 {
102     unsigned short car1;
103
104     /* no cursor update if screen is blanked */
105     if (vga_is_gfx || console_blanked)
106         return;
107
108     car1 = conp->vc_screenbuf[conp->state.x + conp->state.y * conp->vc_cols];
109     switch (mode) {
110     case CM_ERASE:
111         sti_putc(sticon_sti, car1, conp->state.y, conp->state.x,
112                  font_data[conp->vc_num]);
113         break;
114     case CM_MOVE:
115     case CM_DRAW:
116         switch (CUR_SIZE(conp->vc_cursor_type)) {
117         case CUR_UNDERLINE:
118         case CUR_LOWER_THIRD:
119         case CUR_LOWER_HALF:
120         case CUR_TWO_THIRDS:
121         case CUR_BLOCK:
122             sti_putc(sticon_sti, (car1 & 255) + (0 << 8) + (7 << 11),
123                      conp->state.y, conp->state.x, font_data[conp->vc_num]);
124             break;
125         }
126         break;
127     }
128 }
129
130 static bool sticon_scroll(struct vc_data *conp, unsigned int t,
131                 unsigned int b, enum con_scroll dir, unsigned int count)
132 {
133     struct sti_struct *sti = sticon_sti;
134
135     if (vga_is_gfx)
136         return false;
137
138     sticon_cursor(conp, CM_ERASE);
139
140     switch (dir) {
141     case SM_UP:
142         sti_bmove(sti, t + count, 0, t, 0, b - t - count, conp->vc_cols,
143                   font_data[conp->vc_num]);
144         sti_clear(sti, b - count, 0, count, conp->vc_cols,
145                   conp->vc_video_erase_char, font_data[conp->vc_num]);
146         break;
147
148     case SM_DOWN:
149         sti_bmove(sti, t, 0, t + count, 0, b - t - count, conp->vc_cols,
150                   font_data[conp->vc_num]);
151         sti_clear(sti, t, 0, count, conp->vc_cols,
152                   conp->vc_video_erase_char, font_data[conp->vc_num]);
153         break;
154     }
155
156     return false;
157 }
158
159 static int sticon_set_def_font(int unit, struct console_font *op)
160 {
161         if (font_data[unit] != STI_DEF_FONT) {
162                 if (--FNTREFCOUNT(font_data[unit]) == 0) {
163                         kfree(font_data[unit]->raw_ptr);
164                         kfree(font_data[unit]);
165                 }
166                 font_data[unit] = STI_DEF_FONT;
167         }
168
169         return 0;
170 }
171
172 static int sticon_set_font(struct vc_data *vc, struct console_font *op)
173 {
174         struct sti_struct *sti = sticon_sti;
175         int vc_cols, vc_rows, vc_old_cols, vc_old_rows;
176         int unit = vc->vc_num;
177         int w = op->width;
178         int h = op->height;
179         int size, i, bpc, pitch;
180         struct sti_rom_font *new_font;
181         struct sti_cooked_font *cooked_font;
182         unsigned char *data = op->data, *p;
183
184         if ((w < 6) || (h < 6) || (w > 32) || (h > 32)
185             || (op->charcount != 256 && op->charcount != 512))
186                 return -EINVAL;
187         pitch = ALIGN(w, 8) / 8;
188         bpc = pitch * h;
189         size = bpc * op->charcount;
190
191         new_font = kmalloc(sizeof(*new_font) + size, STI_LOWMEM);
192         if (!new_font)
193                 return -ENOMEM;
194
195         new_font->first_char = 0;
196         new_font->last_char = op->charcount - 1;
197         new_font->width = w;
198         new_font->height = h;
199         new_font->font_type = STI_FONT_HPROMAN8;
200         new_font->bytes_per_char = bpc;
201         new_font->underline_height = 0;
202         new_font->underline_pos = 0;
203
204         cooked_font = kzalloc(sizeof(*cooked_font), GFP_KERNEL);
205         if (!cooked_font) {
206                 kfree(new_font);
207                 return -ENOMEM;
208         }
209         cooked_font->raw = new_font;
210         cooked_font->raw_ptr = new_font;
211         cooked_font->width = w;
212         cooked_font->height = h;
213         FNTREFCOUNT(cooked_font) = 0;   /* usage counter */
214
215         p = (unsigned char *) new_font;
216         p += sizeof(*new_font);
217         for (i = 0; i < op->charcount; i++) {
218                 memcpy(p, data, bpc);
219                 data += pitch*32;
220                 p += bpc;
221         }
222         FNTCRC(cooked_font) = crc32(0, new_font, size + sizeof(*new_font));
223         sti_font_convert_bytemode(sti, cooked_font);
224         new_font = cooked_font->raw_ptr;
225
226         /* check if font is already used by other console */
227         for (i = 0; i < MAX_NR_CONSOLES; i++) {
228                 if (font_data[i] != STI_DEF_FONT
229                     && (FNTCRC(font_data[i]) == FNTCRC(cooked_font))) {
230                         kfree(new_font);
231                         kfree(cooked_font);
232                         /* current font is the same as the new one */
233                         if (i == unit)
234                                 return 0;
235                         cooked_font = font_data[i];
236                         new_font = cooked_font->raw_ptr;
237                         break;
238                 }
239         }
240
241         /* clear screen with old font: we now may have less rows */
242         vc_old_rows = vc->vc_rows;
243         vc_old_cols = vc->vc_cols;
244         sti_clear(sticon_sti, 0, 0, vc_old_rows, vc_old_cols,
245                   vc->vc_video_erase_char, font_data[vc->vc_num]);
246
247         /* delete old font in case it is a user font */
248         sticon_set_def_font(unit, NULL);
249
250         FNTREFCOUNT(cooked_font)++;
251         font_data[unit] = cooked_font;
252
253         vc_cols = sti_onscreen_x(sti) / cooked_font->width;
254         vc_rows = sti_onscreen_y(sti) / cooked_font->height;
255         vc_resize(vc, vc_cols, vc_rows);
256
257         /* need to repaint screen if cols & rows are same as old font */
258         if (vc_cols == vc_old_cols && vc_rows == vc_old_rows)
259                 update_screen(vc);
260
261         return 0;
262 }
263
264 static int sticon_font_default(struct vc_data *vc, struct console_font *op, char *name)
265 {
266         return sticon_set_def_font(vc->vc_num, op);
267 }
268
269 static int sticon_font_set(struct vc_data *vc, struct console_font *font,
270                            unsigned int flags)
271 {
272         return sticon_set_font(vc, font);
273 }
274
275 static void sticon_init(struct vc_data *c, int init)
276 {
277     struct sti_struct *sti = sticon_sti;
278     int vc_cols, vc_rows;
279
280     sti_set(sti, 0, 0, sti_onscreen_y(sti), sti_onscreen_x(sti), 0);
281     vc_cols = sti_onscreen_x(sti) / sti->font->width;
282     vc_rows = sti_onscreen_y(sti) / sti->font->height;
283     c->vc_can_do_color = 1;
284     
285     if (init) {
286         c->vc_cols = vc_cols;
287         c->vc_rows = vc_rows;
288     } else {
289         vc_resize(c, vc_cols, vc_rows);
290     }
291 }
292
293 static void sticon_deinit(struct vc_data *c)
294 {
295     int i;
296
297     /* free memory used by user font */
298     for (i = 0; i < MAX_NR_CONSOLES; i++)
299         sticon_set_def_font(i, NULL);
300 }
301
302 static void sticon_clear(struct vc_data *conp, int sy, int sx, int height,
303                          int width)
304 {
305     if (!height || !width)
306         return;
307
308     sti_clear(sticon_sti, sy, sx, height, width,
309               conp->vc_video_erase_char, font_data[conp->vc_num]);
310 }
311
312 static int sticon_switch(struct vc_data *conp)
313 {
314     return 1;   /* needs refreshing */
315 }
316
317 static int sticon_blank(struct vc_data *c, int blank, int mode_switch)
318 {
319     if (blank == 0) {
320         if (mode_switch)
321             vga_is_gfx = 0;
322         return 1;
323     }
324     sti_clear(sticon_sti, 0, 0, c->vc_rows, c->vc_cols, BLANK,
325               font_data[c->vc_num]);
326     if (mode_switch)
327         vga_is_gfx = 1;
328     return 1;
329 }
330
331 static u8 sticon_build_attr(struct vc_data *conp, u8 color,
332                             enum vc_intensity intens,
333                             bool blink, bool underline, bool reverse,
334                             bool italic)
335 {
336         u8 fg = color & 7;
337         u8 bg = (color & 0x70) >> 4;
338
339         if (reverse)
340                 return (fg << 3) | bg;
341         else
342                 return (bg << 3) | fg;
343 }
344
345 static void sticon_invert_region(struct vc_data *conp, u16 *p, int count)
346 {
347     int col = 1; /* vga_can_do_color; */
348
349     while (count--) {
350         u16 a = scr_readw(p);
351
352         if (col)
353                 a = ((a) & 0x88ff) | (((a) & 0x7000) >> 4) | (((a) & 0x0700) << 4);
354         else
355                 a = ((a & 0x0700) == 0x0100) ? 0x7000 : 0x7700;
356
357         scr_writew(a, p++);
358     }
359 }
360
361 static const struct consw sti_con = {
362         .owner                  = THIS_MODULE,
363         .con_startup            = sticon_startup,
364         .con_init               = sticon_init,
365         .con_deinit             = sticon_deinit,
366         .con_clear              = sticon_clear,
367         .con_putc               = sticon_putc,
368         .con_putcs              = sticon_putcs,
369         .con_cursor             = sticon_cursor,
370         .con_scroll             = sticon_scroll,
371         .con_switch             = sticon_switch,
372         .con_blank              = sticon_blank,
373         .con_font_set           = sticon_font_set,
374         .con_font_default       = sticon_font_default,
375         .con_build_attr         = sticon_build_attr,
376         .con_invert_region      = sticon_invert_region, 
377 };
378
379
380
381 static int __init sticonsole_init(void)
382 {
383     int err, i;
384
385     /* already initialized ? */
386     if (sticon_sti)
387          return 0;
388
389     sticon_sti = sti_get_rom(0);
390     if (!sticon_sti)
391         return -ENODEV;
392
393     for (i = 0; i < MAX_NR_CONSOLES; i++)
394         font_data[i] = STI_DEF_FONT;
395
396     pr_info("sticon: Initializing STI text console on %s at [%s]\n",
397         sticon_sti->sti_data->inq_outptr.dev_name,
398         sticon_sti->pa_path);
399     console_lock();
400     err = do_take_over_console(&sti_con, 0, MAX_NR_CONSOLES - 1,
401                 PAGE0->mem_cons.cl_class != CL_DUPLEX);
402     console_unlock();
403
404     return err;
405 }
406
407 module_init(sticonsole_init);
408 MODULE_LICENSE("GPL");