NetBSD/sys/dev/ic/igsfbvar.h

206 lines
6.0 KiB
C

/* $NetBSD: igsfbvar.h,v 1.3 2002/09/24 18:17:25 uwe Exp $ */
/*
* Copyright (c) 2002 Valeriy E. Ushakov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Integraphics Systems IGA 168x and CyberPro series.
* Only tested on IGA 1682 in Krups JavaStation-NC.
*/
#ifndef _DEV_IC_IGSFBVAR_H_
#define _DEV_IC_IGSFBVAR_H_
#define IGS_CMAP_SIZE 256 /* 256 R/G/B entries */
struct igs_hwcmap {
u_int8_t r[IGS_CMAP_SIZE];
u_int8_t g[IGS_CMAP_SIZE];
u_int8_t b[IGS_CMAP_SIZE];
};
#define IGS_CURSOR_MAX_SIZE 64 /* 64x64 sprite */
struct igs_hwcursor {
struct wsdisplay_curpos cc_pos;
struct wsdisplay_curpos cc_hot;
struct wsdisplay_curpos cc_size;
u_int8_t cc_image[512]; /* save copy of image for GCURSOR */
u_int8_t cc_mask[512]; /* save copy of mask for GCURSOR */
u_int16_t cc_sprite[512]; /* sprite in device 2bpp format */
u_int8_t cc_color[6]; /* 2 colors, 3 rgb components */
};
/*
* Precomputed bit tables to convert 1bpp image/mask to 2bpp hw cursor
* sprite. For IGSFB_HW_BSWAP attachments they are pre-bswapped as well.
*/
struct igs_bittab {
u_int16_t iexpand[256]; /* image: 0 -> 00, 1 -> 01 */
u_int16_t mexpand[256]; /* mask: 0 -> 00, 1 -> 11 */
};
struct igsfb_softc {
struct device sc_dev;
/* io registers */
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
bus_space_handle_t sc_crtch;
/* linear memory */
bus_space_tag_t sc_memt;
bus_addr_t sc_memaddr;
bus_size_t sc_memsz; /* size of linear address space including mmio */
int sc_memflags;
/* video memory size */
bus_size_t sc_vmemsz;
/* fb part actually mapped for wsdisplay */
bus_space_handle_t sc_fbh;
bus_size_t sc_fbsz;
/* 1k of cursor sprite data */
bus_space_handle_t sc_crh;
/*
* graphic coprocessor can be accessed either via i/o space
* or via memory-mapped i/o access through memory space
*/
bus_space_tag_t sc_copt;
bus_space_handle_t sc_coph;
/* IGA1682 vs CyberPro 2k (use version num. for finer distinction?) */
int sc_is2k;
/* flags that control driver operation */
int sc_hwflags;
#define IGSFB_HW_BSWAP 0x1 /* endianness mismatch */
struct rasops_info *sc_ri;
struct igs_hwcmap sc_cmap; /* software copy of colormap */
struct igs_hwcursor sc_cursor; /* software copy of cursor sprite */
/* precomputed bit tables for cursor sprite 1bpp -> 2bpp conversion */
struct igs_bittab *sc_bittab;
int nscreens;
int sc_blanked; /* screen is currently blanked */
int sc_curenb; /* cursor sprite enabled */
};
/*
* Access sugar for indexed registers
*/
static __inline__ u_int8_t
igs_idx_read(bus_space_tag_t, bus_space_handle_t, u_int, u_int8_t);
static __inline__ void
igs_idx_write(bus_space_tag_t, bus_space_handle_t, u_int, u_int8_t, u_int8_t);
static __inline__ u_int8_t
igs_idx_read(t, h, idxport, idx)
bus_space_tag_t t;
bus_space_handle_t h;
u_int idxport;
u_int8_t idx;
{
bus_space_write_1(t, h, idxport, idx);
return (bus_space_read_1(t, h, idxport + 1));
}
static __inline__ void
igs_idx_write(t, h, idxport, idx, val)
bus_space_tag_t t;
bus_space_handle_t h;
u_int idxport;
u_int8_t idx, val;
{
bus_space_write_1(t, h, idxport, idx);
bus_space_write_1(t, h, idxport + 1, val);
}
/* sugar for sequencer controller */
#define igs_seq_read(t,h,x) \
(igs_idx_read((t),(h),IGS_SEQ_IDX,(x)))
#define igs_seq_write(t,h,x,v) \
(igs_idx_write((t),(h),IGS_SEQ_IDX,(x),(v)))
/* sugar for CRT controller */
#define igs_crtc_read(t,h,x) \
(igs_idx_read((t),(h),IGS_CRTC_IDX,(x)))
#define igs_crtc_write(t,h,x,v) \
(igs_idx_write((t),(h),IGS_CRTC_IDX,(x),(v)))
/* sugar for attribute controller */
#define igs_attr_flip_flop(t,h) \
((void)bus_space_read_1((t),(h),IGS_INPUT_STATUS1));
#define igs_attr_read(t,h,x) \
(igs_idx_read((t),(h),IGS_ATTR_IDX,(x)))
static __inline__ void
igs_attr_write(bus_space_tag_t, bus_space_handle_t, u_int8_t, u_int8_t);
static __inline__ void
igs_attr_write(t, h, idx, val)
bus_space_tag_t t;
bus_space_handle_t h;
u_int8_t idx, val;
{
bus_space_write_1(t, h, IGS_ATTR_IDX, idx);
bus_space_write_1(t, h, IGS_ATTR_IDX, val); /* sic, same register */
}
/* sugar for graphics controller registers */
#define igs_grfx_read(t,h,x) (igs_idx_read((t),(h),IGS_GRFX_IDX,(x)))
#define igs_grfx_write(t,h,x,v) (igs_idx_write((t),(h),IGS_GRFX_IDX,(x),(v)))
/* sugar for extended registers */
#define igs_ext_read(t,h,x) (igs_idx_read((t),(h),IGS_EXT_IDX,(x)))
#define igs_ext_write(t,h,x,v) (igs_idx_write((t),(h),IGS_EXT_IDX,(x),(v)))
/* igsfb_subr.c */
int igsfb_enable(bus_space_tag_t);
void igsfb_hw_setup(struct igsfb_softc *);
void igsfb_1024x768_8bpp_60Hz(struct igsfb_softc *);
/* igsfb.c */
void igsfb_common_attach(struct igsfb_softc *, int);
#endif /* _DEV_IC_IGSFBVAR_H_ */