Home | History | Annotate | Line # | Download | only in dev
tftvar.h revision 1.1
      1  1.1  freza /* 	$NetBSD: tftvar.h,v 1.1 2006/12/02 22:18:47 freza Exp $ */
      2  1.1  freza 
      3  1.1  freza /*
      4  1.1  freza  * Copyright (c) 2006 Jachym Holecek
      5  1.1  freza  * All rights reserved.
      6  1.1  freza  *
      7  1.1  freza  * Written for DFC Design, s.r.o.
      8  1.1  freza  *
      9  1.1  freza  * Redistribution and use in source and binary forms, with or without
     10  1.1  freza  * modification, are permitted provided that the following conditions
     11  1.1  freza  * are met:
     12  1.1  freza  *
     13  1.1  freza  * 1. Redistributions of source code must retain the above copyright
     14  1.1  freza  *    notice, this list of conditions and the following disclaimer.
     15  1.1  freza  *
     16  1.1  freza  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.1  freza  *    notice, this list of conditions and the following disclaimer in the
     18  1.1  freza  *    documentation and/or other materials provided with the distribution.
     19  1.1  freza  *
     20  1.1  freza  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21  1.1  freza  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22  1.1  freza  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  1.1  freza  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24  1.1  freza  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25  1.1  freza  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26  1.1  freza  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27  1.1  freza  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28  1.1  freza  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29  1.1  freza  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30  1.1  freza  */
     31  1.1  freza 
     32  1.1  freza #ifndef	_VIRTEX_DEV_TFTVAR_H_
     33  1.1  freza #define	_VIRTEX_DEV_TFTVAR_H_
     34  1.1  freza 
     35  1.1  freza struct tft_softc {
     36  1.1  freza 	struct device 		sc_dev;
     37  1.1  freza 
     38  1.1  freza 	caddr_t 		sc_image;
     39  1.1  freza 	size_t 			sc_size;
     40  1.1  freza 
     41  1.1  freza 	bus_space_tag_t 	sc_iot;
     42  1.1  freza 	bus_space_handle_t 	sc_ioh;
     43  1.1  freza 
     44  1.1  freza 	u_int 			sc_width;
     45  1.1  freza 	u_int 			sc_height;
     46  1.1  freza 	u_int 			sc_stride; 	/* line length in bytes */
     47  1.1  freza 	u_int 			sc_bpp; 	/* bits per pixel */
     48  1.1  freza 
     49  1.1  freza 	void 			*sc_sdhook;
     50  1.1  freza 
     51  1.1  freza 	/* wscons */
     52  1.1  freza 	struct wsscreen_descr 	sc_ws_descr_storage[1];
     53  1.1  freza 	struct wsscreen_descr 	*sc_ws_descr; 	/* Fixed resolution */
     54  1.1  freza 	struct wsscreen_list 	sc_ws_scrlist;
     55  1.1  freza 	struct vcons_screen 	sc_vc_screen;
     56  1.1  freza 	struct vcons_data 	sc_vc_data;
     57  1.1  freza 
     58  1.1  freza 	/* splashscreen */
     59  1.1  freza #ifdef SPLASHSCREEN
     60  1.1  freza 	struct splash_info 	sc_sp_info;
     61  1.1  freza #endif
     62  1.1  freza #ifdef SPLASHSCREEN_PROGRESS
     63  1.1  freza 	struct splash_progress 	sc_sp_progress;
     64  1.1  freza #endif
     65  1.1  freza };
     66  1.1  freza 
     67  1.1  freza void 		tft_attach(device_t, struct wsdisplay_accessops *);
     68  1.1  freza void 		tft_shutdown(void *);
     69  1.1  freza int 		tft_ioctl(void *, void *, u_long, caddr_t, int, struct lwp *);
     70  1.1  freza int 		tft_mode(device_t);
     71  1.1  freza 
     72  1.1  freza #endif	/*_VIRTEX_DEV_TFTVAR_H_*/
     73