Import 2.3.99pre9-1
[davej-history.git] / include / linux / vt_buffer.h
blob626b2524d7c21df5332ef26e607554ee6bf04520
1 /*
2 * include/linux/vt_buffer.h -- Access to VT screen buffer
4 * (c) 1998 Martin Mares <mj@ucw.cz>
6 * This is a set of macros and functions which are used in the
7 * console driver and related code to access the screen buffer.
8 * In most cases the console works with simple in-memory buffer,
9 * but when handling hardware text mode consoles, we store
10 * the foreground console directly in video memory.
13 #ifndef _LINUX_VT_BUFFER_H_
14 #define _LINUX_VT_BUFFER_H_
16 #include <linux/config.h>
18 #if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_MDA_CONSOLE)
19 #include <asm/vga.h>
20 #endif
22 #ifndef VT_BUF_HAVE_RW
23 #define scr_writew(val, addr) (*(addr) = (val))
24 #define scr_readw(addr) (*(addr))
25 #define scr_memcpyw(d, s, c) memcpy(d, s, c)
26 #define scr_memmovew(d, s, c) memmove(d, s, c)
27 #define VT_BUF_HAVE_MEMCPYW
28 #define VT_BUF_HAVE_MEMMOVEW
29 #define scr_memcpyw_from(d, s, c) memcpy(d, s, c)
30 #define scr_memcpyw_to(d, s, c) memcpy(d, s, c)
31 #define VT_BUF_HAVE_MEMCPYF
32 #endif
34 #ifndef VT_BUF_HAVE_MEMSETW
35 extern inline void scr_memsetw(u16 *s, u16 c, unsigned int count)
37 count /= 2;
38 while (count--)
39 scr_writew(c, s++);
41 #endif
43 #ifndef VT_BUF_HAVE_MEMCPYW
44 extern inline void scr_memcpyw(u16 *d, const u16 *s, unsigned int count)
46 count /= 2;
47 while (count--)
48 scr_writew(scr_readw(s++), d++);
50 #endif
52 #ifndef VT_BUF_HAVE_MEMMOVEW
53 extern inline void scr_memmovew(u16 *d, const u16 *s, unsigned int count)
55 if (d < s)
56 scr_memcpyw(d, s, count);
57 else {
58 count /= 2;
59 d += count;
60 s += count;
61 while (count--)
62 scr_writew(scr_readw(--s), --d);
65 #endif
67 #ifndef VT_BUF_HAVE_MEMCPYF
68 extern inline void scr_memcpyw_from(u16 *d, const u16 *s, unsigned int count)
70 count /= 2;
71 while (count--)
72 *d++ = scr_readw(s++);
75 extern inline void scr_memcpyw_to(u16 *d, const u16 *s, unsigned int count)
77 count /= 2;
78 while (count--)
79 scr_writew(*s++, d++);
81 #endif
83 #endif