splash.h revision 1.1.22.2 1 1.1.22.2 rpaulo /* $NetBSD: splash.h,v 1.1.22.2 2006/09/09 02:54:40 rpaulo Exp $ */
2 1.1.22.2 rpaulo
3 1.1.22.2 rpaulo /*-
4 1.1.22.2 rpaulo * Copyright (c) 2006 Jared D. McNeill <jmcneill (at) invisible.ca>
5 1.1.22.2 rpaulo * All rights reserved.
6 1.1.22.2 rpaulo *
7 1.1.22.2 rpaulo * Redistribution and use in source and binary forms, with or without
8 1.1.22.2 rpaulo * modification, are permitted provided that the following conditions
9 1.1.22.2 rpaulo * are met:
10 1.1.22.2 rpaulo * 1. Redistributions of source code must retain the above copyright
11 1.1.22.2 rpaulo * notice, this list of conditions and the following disclaimer.
12 1.1.22.2 rpaulo * 2. Redistributions in binary form must reproduce the above copyright
13 1.1.22.2 rpaulo * notice, this list of conditions and the following disclaimer in the
14 1.1.22.2 rpaulo * documentation and/or other materials provided with the distribution.
15 1.1.22.2 rpaulo * 3. All advertising materials mentioning features or use of this software
16 1.1.22.2 rpaulo * must display the following acknowledgement:
17 1.1.22.2 rpaulo * This product includes software developed by the NetBSD
18 1.1.22.2 rpaulo * Foundation, Inc. and its contributors.
19 1.1.22.2 rpaulo * 4. Neither the name of The NetBSD Foundation nor the names of its
20 1.1.22.2 rpaulo * contributors may be used to endorse or promote products derived
21 1.1.22.2 rpaulo * from this software without specific prior written permission.
22 1.1.22.2 rpaulo *
23 1.1.22.2 rpaulo * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
24 1.1.22.2 rpaulo * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25 1.1.22.2 rpaulo * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26 1.1.22.2 rpaulo * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
27 1.1.22.2 rpaulo * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 1.1.22.2 rpaulo * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 1.1.22.2 rpaulo * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 1.1.22.2 rpaulo * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 1.1.22.2 rpaulo * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 1.1.22.2 rpaulo * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 1.1.22.2 rpaulo * POSSIBILITY OF SUCH DAMAGE.
34 1.1.22.2 rpaulo */
35 1.1.22.2 rpaulo
36 1.1.22.2 rpaulo #ifndef _DEV_SPLASH_SPLASH_H
37 1.1.22.2 rpaulo #define _DEV_SPLASH_SPLASH_H
38 1.1.22.2 rpaulo
39 1.1.22.2 rpaulo #include "opt_splash.h"
40 1.1.22.2 rpaulo
41 1.1.22.2 rpaulo #ifdef SPLASHSCREEN
42 1.1.22.2 rpaulo
43 1.1.22.2 rpaulo #define SPLASH_CMAP_OFFSET (16 * 3)
44 1.1.22.2 rpaulo #define SPLASH_CMAP_SIZE (64 + 32)
45 1.1.22.2 rpaulo
46 1.1.22.2 rpaulo struct splash_info {
47 1.1.22.2 rpaulo int si_depth;
48 1.1.22.2 rpaulo u_char *si_bits, *si_hwbits;
49 1.1.22.2 rpaulo int si_width, si_height;
50 1.1.22.2 rpaulo int si_stride;
51 1.1.22.2 rpaulo
52 1.1.22.2 rpaulo void (*si_fillrect)(struct splash_info *, int, int, int, int, int);
53 1.1.22.2 rpaulo };
54 1.1.22.2 rpaulo
55 1.1.22.2 rpaulo #ifdef SPLASHSCREEN_PROGRESS
56 1.1.22.2 rpaulo struct splash_progress {
57 1.1.22.2 rpaulo struct device *sp_dev; /* XXX needed for config_finalize */
58 1.1.22.2 rpaulo int sp_top;
59 1.1.22.2 rpaulo int sp_left;
60 1.1.22.2 rpaulo int sp_width;
61 1.1.22.2 rpaulo int sp_height;
62 1.1.22.2 rpaulo #define SPLASH_PROGRESS_NSTATES 5
63 1.1.22.2 rpaulo int sp_state;
64 1.1.22.2 rpaulo int sp_running;
65 1.1.22.2 rpaulo int sp_force;
66 1.1.22.2 rpaulo
67 1.1.22.2 rpaulo struct splash_info * sp_si;
68 1.1.22.2 rpaulo struct callout sp_callout;
69 1.1.22.2 rpaulo };
70 1.1.22.2 rpaulo #endif /* !SPLASHSCREEN_PROGRESS */
71 1.1.22.2 rpaulo
72 1.1.22.2 rpaulo #define SPLASH_F_NONE 0x00 /* Nothing special */
73 1.1.22.2 rpaulo #define SPLASH_F_CENTER 0x01 /* Center splash image */
74 1.1.22.2 rpaulo #define SPLASH_F_FILL 0x02 /* Fill the rest of the screen with
75 1.1.22.2 rpaulo * the colour of the top-left pixel
76 1.1.22.2 rpaulo * in the splash image
77 1.1.22.2 rpaulo */
78 1.1.22.2 rpaulo
79 1.1.22.2 rpaulo void splash_render(struct splash_info *, int);
80 1.1.22.2 rpaulo
81 1.1.22.2 rpaulo #ifdef SPLASHSCREEN_PROGRESS
82 1.1.22.2 rpaulo void splash_progress_init(struct splash_progress *);
83 1.1.22.2 rpaulo void splash_progress_update(struct splash_progress *);
84 1.1.22.2 rpaulo #endif /* !SPLASHSCREEN_PROGRESS */
85 1.1.22.2 rpaulo
86 1.1.22.2 rpaulo #endif /* !SPLASHSCREEN */
87 1.1.22.2 rpaulo
88 1.1.22.2 rpaulo #endif /* !_DEV_SPLASH_SPLASH_H */
89