2 * newport_con.c: Abscon for newport hardware
4 * (C) 1998 Thomas Bogendoerfer (tsbogend@alpha.franken.de)
5 * (C) 1999 Ulf Carlsson (ulfc@thepuffingruop.com)
7 * This driver is based on sgicons.c and cons_newport.
9 * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
10 * Copyright (C) 1997 Miguel de Icaza (miguel@nuclecu.unam.mx)
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/tty.h>
17 #include <linux/selection.h>
18 #include <linux/console.h>
19 #include <linux/vt_kern.h>
21 #include <linux/module.h>
22 #include <linux/slab.h>
25 #include <asm/uaccess.h>
26 #include <asm/system.h>
28 #include <asm/pgtable.h>
29 #include <video/newport.h>
31 #include <linux/linux_logo.h>
32 #include <linux/font.h>
35 extern unsigned long sgi_gfxaddr
;
37 #define FONT_DATA ((unsigned char *)font_vga_8x16.data)
39 /* borrowed from fbcon.c */
40 #define REFCOUNT(fd) (((int *)(fd))[-1])
41 #define FNTSIZE(fd) (((int *)(fd))[-2])
42 #define FNTCHARCNT(fd) (((int *)(fd))[-3])
43 #define FONT_EXTRA_WORDS 3
45 static unsigned char *font_data
[MAX_NR_CONSOLES
];
47 static struct newport_regs
*npregs
;
49 static int logo_active
;
51 static int xcurs_correction
= 29;
52 static int newport_xsize
;
53 static int newport_ysize
;
55 static int newport_set_def_font(int unit
, struct console_font
*op
);
57 #define BMASK(c) (c << 24)
59 #define RENDER(regs, cp) do { \
60 (regs)->go.zpattern = BMASK((cp)[0x0]); (regs)->go.zpattern = BMASK((cp)[0x1]); \
61 (regs)->go.zpattern = BMASK((cp)[0x2]); (regs)->go.zpattern = BMASK((cp)[0x3]); \
62 (regs)->go.zpattern = BMASK((cp)[0x4]); (regs)->go.zpattern = BMASK((cp)[0x5]); \
63 (regs)->go.zpattern = BMASK((cp)[0x6]); (regs)->go.zpattern = BMASK((cp)[0x7]); \
64 (regs)->go.zpattern = BMASK((cp)[0x8]); (regs)->go.zpattern = BMASK((cp)[0x9]); \
65 (regs)->go.zpattern = BMASK((cp)[0xa]); (regs)->go.zpattern = BMASK((cp)[0xb]); \
66 (regs)->go.zpattern = BMASK((cp)[0xc]); (regs)->go.zpattern = BMASK((cp)[0xd]); \
67 (regs)->go.zpattern = BMASK((cp)[0xe]); (regs)->go.zpattern = BMASK((cp)[0xf]); \
70 #define TESTVAL 0xdeadbeef
71 #define XSTI_TO_FXSTART(val) (((val) & 0xffff) << 11)
73 static inline void newport_render_background(int xstart
, int ystart
,
74 int xend
, int yend
, int ci
)
77 npregs
->set
.wrmask
= 0xffffffff;
78 npregs
->set
.drawmode0
= (NPORT_DMODE0_DRAW
| NPORT_DMODE0_BLOCK
|
79 NPORT_DMODE0_DOSETUP
| NPORT_DMODE0_STOPX
80 | NPORT_DMODE0_STOPY
);
81 npregs
->set
.colori
= ci
;
82 npregs
->set
.xystarti
=
83 (xstart
<< 16) | ((ystart
+ topscan
) & 0x3ff);
85 ((xend
+ 7) << 16) | ((yend
+ topscan
+ 15) & 0x3ff);
88 static inline void newport_init_cmap(void)
92 for (i
= 0; i
< 16; i
++) {
93 newport_bfwait(npregs
);
94 newport_cmap_setaddr(npregs
, color_table
[i
]);
95 newport_cmap_setrgb(npregs
,
97 default_grn
[i
], default_blu
[i
]);
101 static void newport_show_logo(void)
103 #ifdef CONFIG_LOGO_SGI_CLUT224
104 const struct linux_logo
*logo
= fb_find_logo(8);
105 const unsigned char *clut
= logo
->clut
;
106 const unsigned char *data
= logo
->data
;
109 for (i
= 0; i
< logo
->clutsize
; i
++) {
110 newport_bfwait(npregs
);
111 newport_cmap_setaddr(npregs
, i
+ 0x20);
112 newport_cmap_setrgb(npregs
, clut
[0], clut
[1], clut
[2]);
116 newport_wait(npregs
);
117 npregs
->set
.drawmode0
= (NPORT_DMODE0_DRAW
| NPORT_DMODE0_BLOCK
|
120 npregs
->set
.xystarti
= ((newport_xsize
- logo
->width
) << 16) | (0);
121 npregs
->set
.xyendi
= ((newport_xsize
- 1) << 16);
122 newport_wait(npregs
);
124 for (i
= 0; i
< logo
->width
*logo
->height
; i
++)
125 npregs
->go
.hostrw0
= *data
++ << 24;
126 #endif /* CONFIG_LOGO_SGI_CLUT224 */
129 static inline void newport_clear_screen(int xstart
, int ystart
, int xend
,
135 newport_wait(npregs
);
136 npregs
->set
.wrmask
= 0xffffffff;
137 npregs
->set
.drawmode0
= (NPORT_DMODE0_DRAW
| NPORT_DMODE0_BLOCK
|
138 NPORT_DMODE0_DOSETUP
| NPORT_DMODE0_STOPX
139 | NPORT_DMODE0_STOPY
);
140 npregs
->set
.colori
= ci
;
141 npregs
->set
.xystarti
= (xstart
<< 16) | ystart
;
142 npregs
->go
.xyendi
= (xend
<< 16) | yend
;
145 static inline void newport_clear_lines(int ystart
, int yend
, int ci
)
147 ystart
= ((ystart
<< 4) + topscan
) & 0x3ff;
148 yend
= ((yend
<< 4) + topscan
+ 15) & 0x3ff;
149 newport_clear_screen(0, ystart
, 1280 + 63, yend
, ci
);
152 static void newport_reset(void)
157 newport_wait(npregs
);
158 treg
= newport_vc2_get(npregs
, VC2_IREG_CONTROL
);
159 newport_vc2_set(npregs
, VC2_IREG_CONTROL
,
160 (treg
| VC2_CTRL_EVIDEO
));
162 treg
= newport_vc2_get(npregs
, VC2_IREG_CENTRY
);
163 newport_vc2_set(npregs
, VC2_IREG_RADDR
, treg
);
164 npregs
->set
.dcbmode
= (NPORT_DMODE_AVC2
| VC2_REGADDR_RAM
|
165 NPORT_DMODE_W2
| VC2_PROTOCOL
);
166 for (i
= 0; i
< 128; i
++) {
167 newport_bfwait(npregs
);
168 if (i
== 92 || i
== 94)
169 npregs
->set
.dcbdata0
.byshort
.s1
= 0xff00;
171 npregs
->set
.dcbdata0
.byshort
.s1
= 0x0000;
176 /* turn off popup plane */
177 npregs
->set
.dcbmode
= (DCB_XMAP0
| R_DCB_XMAP9_PROTOCOL
|
178 XM9_CRS_CONFIG
| NPORT_DMODE_W1
);
179 npregs
->set
.dcbdata0
.bybytes
.b3
&= ~XM9_PUPMODE
;
180 npregs
->set
.dcbmode
= (DCB_XMAP1
| R_DCB_XMAP9_PROTOCOL
|
181 XM9_CRS_CONFIG
| NPORT_DMODE_W1
);
182 npregs
->set
.dcbdata0
.bybytes
.b3
&= ~XM9_PUPMODE
;
185 npregs
->cset
.topscan
= 0x3ff;
186 npregs
->cset
.xywin
= (4096 << 16) | 4096;
188 /* Clear the screen. */
189 newport_clear_screen(0, 0, 1280 + 63, 1024, 0);
193 * calculate the actual screen size by reading
194 * the video timing out of the VC2
196 static void newport_get_screensize(void)
199 unsigned short ventry
, treg
;
200 unsigned short linetable
[128]; /* should be enough */
202 ventry
= newport_vc2_get(npregs
, VC2_IREG_VENTRY
);
203 newport_vc2_set(npregs
, VC2_IREG_RADDR
, ventry
);
204 npregs
->set
.dcbmode
= (NPORT_DMODE_AVC2
| VC2_REGADDR_RAM
|
205 NPORT_DMODE_W2
| VC2_PROTOCOL
);
206 for (i
= 0; i
< 128; i
++) {
207 newport_bfwait(npregs
);
208 linetable
[i
] = npregs
->set
.dcbdata0
.byshort
.s1
;
211 newport_xsize
= newport_ysize
= 0;
212 for (i
= 0; linetable
[i
+ 1] && (i
< sizeof(linetable
)); i
+= 2) {
214 newport_vc2_set(npregs
, VC2_IREG_RADDR
, linetable
[i
]);
215 npregs
->set
.dcbmode
= (NPORT_DMODE_AVC2
| VC2_REGADDR_RAM
|
216 NPORT_DMODE_W2
| VC2_PROTOCOL
);
218 newport_bfwait(npregs
);
219 treg
= npregs
->set
.dcbdata0
.byshort
.s1
;
221 cols
+= (treg
>> 7) & 0xfe;
222 if ((treg
& 0x80) == 0) {
223 newport_bfwait(npregs
);
224 treg
= npregs
->set
.dcbdata0
.byshort
.s1
;
226 } while ((treg
& 0x8000) == 0);
228 if (cols
> newport_xsize
)
229 newport_xsize
= cols
;
230 newport_ysize
+= linetable
[i
+ 1];
233 printk("NG1: Screensize %dx%d\n", newport_xsize
, newport_ysize
);
236 static void newport_get_revisions(void)
239 unsigned int board_rev
;
240 unsigned int rex3_rev
;
241 unsigned int vc2_rev
;
242 unsigned int cmap_rev
;
243 unsigned int xmap9_rev
;
244 unsigned int bt445_rev
;
245 unsigned int bitplanes
;
247 rex3_rev
= npregs
->cset
.status
& NPORT_STAT_VERS
;
249 npregs
->set
.dcbmode
= (DCB_CMAP0
| NCMAP_PROTOCOL
|
250 NCMAP_REGADDR_RREG
| NPORT_DMODE_W1
);
251 tmp
= npregs
->set
.dcbdata0
.bybytes
.b3
;
253 board_rev
= (tmp
>> 4) & 7;
254 bitplanes
= ((board_rev
> 1) && (tmp
& 0x80)) ? 8 : 24;
256 npregs
->set
.dcbmode
= (DCB_CMAP1
| NCMAP_PROTOCOL
|
257 NCMAP_REGADDR_RREG
| NPORT_DMODE_W1
);
258 tmp
= npregs
->set
.dcbdata0
.bybytes
.b3
;
259 if ((tmp
& 7) < cmap_rev
)
260 cmap_rev
= (tmp
& 7);
262 vc2_rev
= (newport_vc2_get(npregs
, VC2_IREG_CONFIG
) >> 5) & 7;
264 npregs
->set
.dcbmode
= (DCB_XMAP0
| R_DCB_XMAP9_PROTOCOL
|
265 XM9_CRS_REVISION
| NPORT_DMODE_W1
);
266 xmap9_rev
= npregs
->set
.dcbdata0
.bybytes
.b3
& 7;
268 npregs
->set
.dcbmode
= (DCB_BT445
| BT445_PROTOCOL
|
269 BT445_CSR_ADDR_REG
| NPORT_DMODE_W1
);
270 npregs
->set
.dcbdata0
.bybytes
.b3
= BT445_REVISION_REG
;
271 npregs
->set
.dcbmode
= (DCB_BT445
| BT445_PROTOCOL
|
272 BT445_CSR_REVISION
| NPORT_DMODE_W1
);
273 bt445_rev
= (npregs
->set
.dcbdata0
.bybytes
.b3
>> 4) - 0x0a;
275 #define L(a) (char)('A'+(a))
277 ("NG1: Revision %d, %d bitplanes, REX3 revision %c, VC2 revision %c, xmap9 revision %c, cmap revision %c, bt445 revision %c\n",
278 board_rev
, bitplanes
, L(rex3_rev
), L(vc2_rev
), L(xmap9_rev
),
279 L(cmap_rev
? (cmap_rev
+ 1) : 0), L(bt445_rev
));
282 if (board_rev
== 3) /* I don't know all affected revisions */
283 xcurs_correction
= 21;
286 /* Can't be __init, take_over_console may call it later */
287 static const char *newport_startup(void)
293 npregs
= (struct newport_regs
*) /* ioremap cannot fail */
294 ioremap(sgi_gfxaddr
, sizeof(struct newport_regs
));
295 npregs
->cset
.config
= NPORT_CFG_GD0
;
297 if (newport_wait(npregs
))
300 npregs
->set
.xstarti
= TESTVAL
;
301 if (npregs
->set
._xstart
.word
!= XSTI_TO_FXSTART(TESTVAL
))
304 for (i
= 0; i
< MAX_NR_CONSOLES
; i
++)
305 font_data
[i
] = FONT_DATA
;
308 newport_get_revisions();
309 newport_get_screensize();
311 return "SGI Newport";
314 iounmap((void *)npregs
);
318 static void newport_init(struct vc_data
*vc
, int init
)
320 vc
->vc_cols
= newport_xsize
/ 8;
321 vc
->vc_rows
= newport_ysize
/ 16;
322 vc
->vc_can_do_color
= 1;
325 static void newport_deinit(struct vc_data
*c
)
329 /* free memory used by user font */
330 for (i
= 0; i
< MAX_NR_CONSOLES
; i
++)
331 newport_set_def_font(i
, NULL
);
334 static void newport_clear(struct vc_data
*vc
, int sy
, int sx
, int height
,
337 int xend
= ((sx
+ width
) << 3) - 1;
338 int ystart
= ((sy
<< 4) + topscan
) & 0x3ff;
339 int yend
= (((sy
+ height
) << 4) + topscan
- 1) & 0x3ff;
345 newport_clear_screen(sx
<< 3, ystart
, xend
, yend
,
346 (vc
->vc_color
& 0xf0) >> 4);
348 newport_clear_screen(sx
<< 3, ystart
, xend
, 1023,
349 (vc
->vc_color
& 0xf0) >> 4);
350 newport_clear_screen(sx
<< 3, 0, xend
, yend
,
351 (vc
->vc_color
& 0xf0) >> 4);
355 static void newport_putc(struct vc_data
*vc
, int charattr
, int ypos
,
360 p
= &font_data
[vc
->vc_num
][(charattr
& 0xff) << 4];
361 charattr
= (charattr
>> 8) & 0xff;
365 newport_render_background(xpos
, ypos
, xpos
, ypos
,
366 (charattr
& 0xf0) >> 4);
368 /* Set the color and drawing mode. */
369 newport_wait(npregs
);
370 npregs
->set
.colori
= charattr
& 0xf;
371 npregs
->set
.drawmode0
= (NPORT_DMODE0_DRAW
| NPORT_DMODE0_BLOCK
|
372 NPORT_DMODE0_STOPX
| NPORT_DMODE0_ZPENAB
|
375 /* Set coordinates for bitmap operation. */
376 npregs
->set
.xystarti
= (xpos
<< 16) | ((ypos
+ topscan
) & 0x3ff);
377 npregs
->set
.xyendi
= ((xpos
+ 7) << 16);
378 newport_wait(npregs
);
380 /* Go, baby, go... */
384 static void newport_putcs(struct vc_data
*vc
, const unsigned short *s
,
385 int count
, int ypos
, int xpos
)
391 charattr
= (scr_readw(s
) >> 8) & 0xff;
397 /* Clear the area behing the string */
398 newport_render_background(xpos
, ypos
,
399 xpos
+ ((count
- 1) << 3), ypos
,
400 (charattr
& 0xf0) >> 4);
402 newport_wait(npregs
);
404 /* Set the color and drawing mode. */
405 npregs
->set
.colori
= charattr
& 0xf;
406 npregs
->set
.drawmode0
= (NPORT_DMODE0_DRAW
| NPORT_DMODE0_BLOCK
|
407 NPORT_DMODE0_STOPX
| NPORT_DMODE0_ZPENAB
|
410 for (i
= 0; i
< count
; i
++, xpos
+= 8) {
411 p
= &font_data
[vc
->vc_num
][(scr_readw(s
++) & 0xff) << 4];
413 newport_wait(npregs
);
415 /* Set coordinates for bitmap operation. */
416 npregs
->set
.xystarti
=
417 (xpos
<< 16) | ((ypos
+ topscan
) & 0x3ff);
418 npregs
->set
.xyendi
= ((xpos
+ 7) << 16);
420 /* Go, baby, go... */
425 static void newport_cursor(struct vc_data
*vc
, int mode
)
432 treg
= newport_vc2_get(npregs
, VC2_IREG_CONTROL
);
433 newport_vc2_set(npregs
, VC2_IREG_CONTROL
,
434 (treg
& ~(VC2_CTRL_ECDISP
)));
439 treg
= newport_vc2_get(npregs
, VC2_IREG_CONTROL
);
440 newport_vc2_set(npregs
, VC2_IREG_CONTROL
,
441 (treg
| VC2_CTRL_ECDISP
));
442 xcurs
= (vc
->vc_pos
- vc
->vc_visible_origin
) / 2;
443 ycurs
= ((xcurs
/ vc
->vc_cols
) << 4) + 31;
444 xcurs
= ((xcurs
% vc
->vc_cols
) << 3) + xcurs_correction
;
445 newport_vc2_set(npregs
, VC2_IREG_CURSX
, xcurs
);
446 newport_vc2_set(npregs
, VC2_IREG_CURSY
, ycurs
);
450 static int newport_switch(struct vc_data
*vc
)
452 static int logo_drawn
= 0;
455 npregs
->cset
.topscan
= 0x3ff;
466 static int newport_blank(struct vc_data
*c
, int blank
, int mode_switch
)
471 /* unblank console */
472 treg
= newport_vc2_get(npregs
, VC2_IREG_CONTROL
);
473 newport_vc2_set(npregs
, VC2_IREG_CONTROL
,
474 (treg
| VC2_CTRL_EDISP
));
477 treg
= newport_vc2_get(npregs
, VC2_IREG_CONTROL
);
478 newport_vc2_set(npregs
, VC2_IREG_CONTROL
,
479 (treg
& ~(VC2_CTRL_EDISP
)));
484 static int newport_set_font(int unit
, struct console_font
*op
)
488 int size
= h
* op
->charcount
;
490 unsigned char *new_data
, *data
= op
->data
, *p
;
492 /* ladis: when I grow up, there will be a day... and more sizes will
493 * be supported ;-) */
494 if ((w
!= 8) || (h
!= 16)
495 || (op
->charcount
!= 256 && op
->charcount
!= 512))
498 if (!(new_data
= kmalloc(FONT_EXTRA_WORDS
* sizeof(int) + size
,
499 GFP_USER
))) return -ENOMEM
;
501 new_data
+= FONT_EXTRA_WORDS
* sizeof(int);
502 FNTSIZE(new_data
) = size
;
503 FNTCHARCNT(new_data
) = op
->charcount
;
504 REFCOUNT(new_data
) = 0; /* usage counter */
507 for (i
= 0; i
< op
->charcount
; i
++) {
513 /* check if font is already used by other console */
514 for (i
= 0; i
< MAX_NR_CONSOLES
; i
++) {
515 if (font_data
[i
] != FONT_DATA
516 && FNTSIZE(font_data
[i
]) == size
517 && !memcmp(font_data
[i
], new_data
, size
)) {
518 kfree(new_data
- FONT_EXTRA_WORDS
* sizeof(int));
519 /* current font is the same as the new one */
522 new_data
= font_data
[i
];
526 /* old font is user font */
527 if (font_data
[unit
] != FONT_DATA
) {
528 if (--REFCOUNT(font_data
[unit
]) == 0)
529 kfree(font_data
[unit
] -
530 FONT_EXTRA_WORDS
* sizeof(int));
532 REFCOUNT(new_data
)++;
533 font_data
[unit
] = new_data
;
538 static int newport_set_def_font(int unit
, struct console_font
*op
)
540 if (font_data
[unit
] != FONT_DATA
) {
541 if (--REFCOUNT(font_data
[unit
]) == 0)
542 kfree(font_data
[unit
] -
543 FONT_EXTRA_WORDS
* sizeof(int));
544 font_data
[unit
] = FONT_DATA
;
550 static int newport_font_default(struct vc_data
*vc
, struct console_font
*op
, char *name
)
552 return newport_set_def_font(vc
->vc_num
, op
);
555 static int newport_font_set(struct vc_data
*vc
, struct console_font
*font
, unsigned flags
)
557 return newport_set_font(vc
->vc_num
, font
);
560 static int newport_set_palette(struct vc_data
*vc
, unsigned char *table
)
565 static int newport_scrolldelta(struct vc_data
*vc
, int lines
)
567 /* there is (nearly) no off-screen memory, so we can't scroll back */
571 static int newport_scroll(struct vc_data
*vc
, int t
, int b
, int dir
,
575 unsigned short *s
, *d
;
576 unsigned short chattr
;
578 logo_active
= 0; /* it's time to disable the logo now.. */
580 if (t
== 0 && b
== vc
->vc_rows
) {
582 topscan
= (topscan
+ (lines
<< 4)) & 0x3ff;
583 newport_clear_lines(vc
->vc_rows
- lines
,
585 (vc
->vc_color
& 0xf0) >> 4);
587 topscan
= (topscan
+ (-lines
<< 4)) & 0x3ff;
588 newport_clear_lines(0, lines
- 1,
589 (vc
->vc_color
& 0xf0) >> 4);
591 npregs
->cset
.topscan
= (topscan
- 1) & 0x3ff;
595 count
= (b
- t
- lines
) * vc
->vc_cols
;
599 s
= (unsigned short *) (vc
->vc_origin
+
600 vc
->vc_size_row
* (t
+ lines
));
601 d
= (unsigned short *) (vc
->vc_origin
+
602 vc
->vc_size_row
* t
);
604 chattr
= scr_readw(s
++);
605 if (chattr
!= scr_readw(d
)) {
606 newport_putc(vc
, chattr
, y
, x
);
607 scr_writew(chattr
, d
);
610 if (++x
== vc
->vc_cols
) {
615 d
= (unsigned short *) (vc
->vc_origin
+
616 vc
->vc_size_row
* (b
- lines
));
619 for (count
= 0; count
< (lines
* vc
->vc_cols
); count
++) {
620 if (scr_readw(d
) != vc
->vc_video_erase_char
) {
621 newport_putc(vc
, vc
->vc_video_erase_char
,
623 scr_writew(vc
->vc_video_erase_char
, d
);
626 if (++x
== vc
->vc_cols
) {
634 s
= (unsigned short *) (vc
->vc_origin
+
635 vc
->vc_size_row
* (b
- lines
) - 2);
636 d
= (unsigned short *) (vc
->vc_origin
+
637 vc
->vc_size_row
* b
- 2);
639 chattr
= scr_readw(s
--);
640 if (chattr
!= scr_readw(d
)) {
641 newport_putc(vc
, chattr
, y
, x
);
642 scr_writew(chattr
, d
);
650 d
= (unsigned short *) (vc
->vc_origin
+
651 vc
->vc_size_row
* t
);
654 for (count
= 0; count
< (lines
* vc
->vc_cols
); count
++) {
655 if (scr_readw(d
) != vc
->vc_video_erase_char
) {
656 newport_putc(vc
, vc
->vc_video_erase_char
,
658 scr_writew(vc
->vc_video_erase_char
, d
);
661 if (++x
== vc
->vc_cols
) {
670 static void newport_bmove(struct vc_data
*vc
, int sy
, int sx
, int dy
,
671 int dx
, int h
, int w
)
673 short xs
, ys
, xe
, ye
, xoffs
, yoffs
, tmp
;
676 xe
= ((sx
+ w
) << 3) - 1;
678 * as bmove is only used to move stuff around in the same line
679 * (h == 1), we don't care about wrap arounds caused by topscan != 0
681 ys
= ((sy
<< 4) + topscan
) & 0x3ff;
682 ye
= (((sy
+ h
) << 4) - 1 + topscan
) & 0x3ff;
683 xoffs
= (dx
- sx
) << 3;
684 yoffs
= (dy
- sy
) << 4;
686 /* move to the right, exchange starting points */
691 newport_wait(npregs
);
692 npregs
->set
.drawmode0
= (NPORT_DMODE0_S2S
| NPORT_DMODE0_BLOCK
|
693 NPORT_DMODE0_DOSETUP
| NPORT_DMODE0_STOPX
694 | NPORT_DMODE0_STOPY
);
695 npregs
->set
.xystarti
= (xs
<< 16) | ys
;
696 npregs
->set
.xyendi
= (xe
<< 16) | ye
;
697 npregs
->go
.xymove
= (xoffs
<< 16) | yoffs
;
700 static int newport_dummy(struct vc_data
*c
)
705 #define DUMMY (void *) newport_dummy
707 const struct consw newport_con
= {
708 .owner
= THIS_MODULE
,
709 .con_startup
= newport_startup
,
710 .con_init
= newport_init
,
711 .con_deinit
= newport_deinit
,
712 .con_clear
= newport_clear
,
713 .con_putc
= newport_putc
,
714 .con_putcs
= newport_putcs
,
715 .con_cursor
= newport_cursor
,
716 .con_scroll
= newport_scroll
,
717 .con_bmove
= newport_bmove
,
718 .con_switch
= newport_switch
,
719 .con_blank
= newport_blank
,
720 .con_font_set
= newport_font_set
,
721 .con_font_default
= newport_font_default
,
722 .con_set_palette
= newport_set_palette
,
723 .con_scrolldelta
= newport_scrolldelta
,
724 .con_set_origin
= DUMMY
,
725 .con_save_screen
= DUMMY
729 static int __init
newport_console_init(void)
731 return take_over_console(&newport_con
, 0, MAX_NR_CONSOLES
- 1, 1);
734 static void __exit
newport_console_exit(void)
736 give_up_console(&newport_con
);
737 iounmap((void *)npregs
);
740 module_init(newport_console_init
);
741 module_exit(newport_console_exit
);
744 MODULE_LICENSE("GPL");