1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
/* Copyright (C) 1989, 1995 Aladdin Enterprises. All rights reserved.
This file is part of GNU Ghostscript.
GNU Ghostscript is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to
anyone for the consequences of using it or for whether it serves any
particular purpose or works at all, unless he says so in writing. Refer
to the GNU Ghostscript General Public License for full details.
*/
/* gdevpcfb.h */
/* IBM PC frame buffer definitions */
#ifdef __MSDOS__
# include "dos_.h"
typedef union REGS registers;
#endif
/* For testing, the 16-color display may be defined as a monochrome, */
/* 8-color, or 16-color device. */
#define ega_bits_of_color 2 /* 0, 1, or 2 */
#define rgb_max ega_bits_of_color
/* Define the short (integer) version of "transparent" color. */
/* ****** Depends on gx_no_color_index being all 1's. ******/
#define no_color ((int)gx_no_color_index)
/* Procedures */
/* See gxdevice.h for the definitions of the procedures. */
dev_proc_open_device(ega_open);
dev_proc_close_device(ega_close);
dev_proc_fill_rectangle(ega_fill_rectangle);
dev_proc_tile_rectangle(ega_tile_rectangle);
dev_proc_copy_mono(ega_copy_mono);
dev_proc_copy_color(ega_copy_color);
dev_proc_get_bits(ega_get_bits);
/* Structure for saving state of BIOS variables. */
typedef struct pcfb_bios_state_s {
int display_mode; /* must be first, see pcfb_save_state */
/* in gdevpcfb.c */
byte text_page;
uint text_cursor_mode;
uint text_font;
byte text_attribute;
byte border_color;
} pcfb_bios_state;
/* Procedures used by gdevpcfb.c */
void pcfb_set_signals(P1(gx_device *));
void pcfb_get_state(P1(pcfb_bios_state *));
void pcfb_set_mode(P1(int));
void pcfb_set_state(P1(const pcfb_bios_state *));
/* Types for frame buffer pointers. */
typedef byte *fb_ptr;
typedef volatile byte *volatile_fb_ptr;
/* Define the nominal page height in inches. */
#ifdef A4
# define PAGE_HEIGHT_INCHES 11.69
#else
# define PAGE_HEIGHT_INCHES 11.0
#endif
/* The device descriptor */
typedef struct gx_device_ega_s gx_device_ega;
struct gx_device_ega_s {
gx_device_common;
int raster; /* frame buffer bytes per line */
int fb_seg_mult; /* multiplier for segment part */
/* of frame buffer pointer */
int fb_byte_mult; /* multiplier for word part ditto */
#define mk_fb_ptr(x, y)\
(fb_dev->fb_byte_mult == 0 ?\
(fb_ptr)MK_PTR(regen + (y) * (fb_dev->fb_seg_mult), (x) >> 3) :\
(fb_ptr)MK_PTR(regen + ((y) >> 4) * (fb_dev->fb_seg_mult),\
(((y) & 15) * fb_dev->fb_byte_mult) + ((x) >> 3)))
int video_mode;
};
/* Macro for creating instances */
/* The initial parameters map an appropriate fraction of */
/* the screen to a full-page coordinate space. */
/* This may or may not be what is desired! */
#define ega_device(dev_name, procs, fb_raster, screen_height, aspect_ratio, video_mode)\
{ std_device_dci_body(gx_device_ega, &procs, dev_name,\
fb_raster * 8, screen_height,\
(screen_height * (aspect_ratio)) / PAGE_HEIGHT_INCHES, /* x dpi */\
screen_height / PAGE_HEIGHT_INCHES, /* y dpi */\
(rgb_max ? 3 : 1), /* num_components */\
4, /* depth */\
(rgb_max ? rgb_max : 1), /* max_gray */\
rgb_max,\
(rgb_max ? rgb_max + 1 : 2), /* dither_grays */\
(rgb_max ? rgb_max + 1 : 0) /* dither_colors */\
),\
{ 0 }, /* std_procs */\
fb_raster,\
(fb_raster & 15 ? fb_raster : fb_raster >> 4),\
(fb_raster & 15 ? fb_raster : 0),\
video_mode\
}
/* Define the device port and register numbers, and the regen map base */
#define seq_addr 0x3c4
#define s_map 2
#define set_s_map(mask) outport2(seq_addr, s_map, mask)
#define graph_addr 0x3ce
#define g_const 0 /* set/reset */
#define set_g_const(color) outport2(graph_addr, g_const, color)
#define g_const_map 1 /* enable set/reset */
#define set_g_const_map(map) outport2(graph_addr, g_const_map, map)
#define g_function 3
# define gf_WRITE 0
# define gf_AND 8
# define gf_OR 0x10
# define gf_XOR 0x18
#define set_g_function(func) outport2(graph_addr, g_function, func)
#define g_read_plane 4
#define set_g_read_plane(plane) outport2(graph_addr, g_read_plane, plane)
#define g_mode 5
# define gm_DATA 0
# define gm_FILL 2
#define set_g_mode(mode) outport2(graph_addr, g_mode, mode)
#define g_mask 8
#define set_g_mask(mask) outport2(graph_addr, g_mask, mask)
#define select_g_mask() outportb(graph_addr, g_mask)
#define out_g_mask(mask) outportb(graph_addr+1, mask)
#define regen 0xa000
/* Define access to the frame buffer and the video registers */
/* according to whether we are on a DOS system or a Unix system. */
#if defined(M_UNIX) || defined(M_XENIX) || defined(UNIX) || defined(SYSV) || defined(__linux__)
/* SCO Unix/Xenix, AT&T SVR4, or Linux. */
#undef outportb
#if defined(__GNUC__)
/* Inline assembly version for gcc */
/* Under SCO, requires installing the gnu assembler as "as" */
static inline void outportb(int port, int data)
{
__asm__ volatile ("outb %0,%1" : :
"a" ((unsigned char) data),
"d" ((unsigned short) port));
}
static inline void outport2(int port, int index, int data)
{
__asm__ volatile ("movb %0,%%ah; movb %1,%%al; outw %%ax,%2" : :
"qmi" ((unsigned char) data),
"qmi" ((unsigned char) index),
"d" ((unsigned short) port) :
"eax");
}
#else
void outportb(P2(uint, byte));
void outport2(P3(uint, byte, byte));
#endif
/* Redefine mk_fb_ptr -- no segmented addressing. */
#undef mk_fb_ptr
extern fb_ptr fb_addr;
#define mk_fb_ptr(x, y) (fb_addr + (y) * (fb_dev->raster) + ((x) >> 3))
#else
/* MS-DOS */
/* outportb is defined in dos_.h */
#define outport2(port, index, data)\
(outportb(port, index), outportb((port)+1, data))
#endif
/* Fetch and discard a byte. Prevent the compiler from */
/* optimizing this away. */
static unsigned char byte_discard_;
#define byte_discard(expr) byte_discard_ = (expr)
|