Home | History | Annotate | Line # | Download | only in tx
tx3912videovar.h revision 1.5.8.1
      1  1.5.8.1  nathanw /*	$NetBSD: tx3912videovar.h,v 1.5.8.1 2001/06/21 19:24:25 nathanw Exp $ */
      2      1.1      uch 
      3      1.5      uch /*-
      4  1.5.8.1  nathanw  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
      5  1.5.8.1  nathanw  * All rights reserved.
      6  1.5.8.1  nathanw  *
      7  1.5.8.1  nathanw  * This code is derived from software contributed to The NetBSD Foundation
      8  1.5.8.1  nathanw  * by UCHIYAMA Yasushi.
      9      1.1      uch  *
     10      1.1      uch  * Redistribution and use in source and binary forms, with or without
     11      1.1      uch  * modification, are permitted provided that the following conditions
     12      1.1      uch  * are met:
     13      1.1      uch  * 1. Redistributions of source code must retain the above copyright
     14      1.1      uch  *    notice, this list of conditions and the following disclaimer.
     15      1.4      uch  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.4      uch  *    notice, this list of conditions and the following disclaimer in the
     17      1.4      uch  *    documentation and/or other materials provided with the distribution.
     18  1.5.8.1  nathanw  * 3. All advertising materials mentioning features or use of this software
     19  1.5.8.1  nathanw  *    must display the following acknowledgement:
     20  1.5.8.1  nathanw  *        This product includes software developed by the NetBSD
     21  1.5.8.1  nathanw  *        Foundation, Inc. and its contributors.
     22  1.5.8.1  nathanw  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.5.8.1  nathanw  *    contributors may be used to endorse or promote products derived
     24  1.5.8.1  nathanw  *    from this software without specific prior written permission.
     25      1.1      uch  *
     26  1.5.8.1  nathanw  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.5.8.1  nathanw  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.5.8.1  nathanw  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.5.8.1  nathanw  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.5.8.1  nathanw  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.5.8.1  nathanw  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.5.8.1  nathanw  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.5.8.1  nathanw  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.5.8.1  nathanw  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.5.8.1  nathanw  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.5.8.1  nathanw  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1      uch  */
     38      1.1      uch 
     39  1.5.8.1  nathanw int	tx3912video_init(paddr_t, paddr_t *);
     40      1.5      uch 
     41      1.5      uch /*
     42      1.5      uch  * 8bpp CLUT
     43      1.5      uch  */
     44      1.5      uch #define TX3912VIDEO_RGB24TOINDEX(rgb)					\
     45      1.5      uch 	((((((rgb) >> 16) & 0xff) >> 5) << 5) |				\
     46      1.5      uch 	 (((((rgb) >> 8) & 0xff) >> 5) << 2) |				\
     47      1.5      uch 	 ((((rgb) & 0xff) >> 6)))
     48      1.5      uch 
     49      1.5      uch /* system color */
     50      1.5      uch #define TX3912VIDEO_BLACK		TX3912VIDEO_RGB24TOINDEX(0x000000)
     51      1.5      uch #define TX3912VIDEO_RED			TX3912VIDEO_RGB24TOINDEX(0xff0000)
     52      1.5      uch #define TX3912VIDEO_GREEN		TX3912VIDEO_RGB24TOINDEX(0x00ff00)
     53      1.5      uch #define TX3912VIDEO_YELLOW		TX3912VIDEO_RGB24TOINDEX(0xffff00)
     54      1.5      uch #define TX3912VIDEO_BLUE		TX3912VIDEO_RGB24TOINDEX(0x0000ff)
     55      1.5      uch #define TX3912VIDEO_MAGENTA		TX3912VIDEO_RGB24TOINDEX(0xff00ff)
     56      1.5      uch #define TX3912VIDEO_CYAN		TX3912VIDEO_RGB24TOINDEX(0x00ffff)
     57      1.5      uch #define TX3912VIDEO_WHITE		TX3912VIDEO_RGB24TOINDEX(0xffffff)
     58      1.5      uch #define TX3912VIDEO_DARK_BLACK		TX3912VIDEO_RGB24TOINDEX(0x000000)
     59      1.5      uch #define TX3912VIDEO_DARK_RED		TX3912VIDEO_RGB24TOINDEX(0x800000)
     60      1.5      uch #define TX3912VIDEO_DARK_GREEN		TX3912VIDEO_RGB24TOINDEX(0x008000)
     61      1.5      uch #define TX3912VIDEO_DARK_YELLOW		TX3912VIDEO_RGB24TOINDEX(0x808000)
     62      1.5      uch #define TX3912VIDEO_DARK_BLUE		TX3912VIDEO_RGB24TOINDEX(0x000080)
     63      1.5      uch #define TX3912VIDEO_DARK_MAGENTA	TX3912VIDEO_RGB24TOINDEX(0x800080)
     64      1.5      uch #define TX3912VIDEO_DARK_CYAN		TX3912VIDEO_RGB24TOINDEX(0x008080)
     65      1.5      uch #define TX3912VIDEO_DARK_WHITE		TX3912VIDEO_RGB24TOINDEX(0x808080)
     66      1.5      uch 
     67      1.5      uch /*
     68      1.5      uch  * Y =  0.2990 * R + 0.5870 * G + 0.1140 * B
     69      1.5      uch  * U = -0.1690 * R - 0.3316 * G + 0.5000 * B
     70      1.5      uch  * V =  0.5000 * R - 0.4186 * G - 0.0813 * B
     71      1.5      uch  */
     72      1.3      uch 
     73      1.3      uch /*
     74      1.3      uch  * debug functions.
     75      1.3      uch  */
     76  1.5.8.1  nathanw void	tx3912video_calibration_pattern(void);
     77  1.5.8.1  nathanw void	tx3912video_line(int, int, int, int);
     78  1.5.8.1  nathanw void	tx3912video_dot(int, int);
     79