boot.h revision 1.3 1 1.3 martin /* $NetBSD: boot.h,v 1.3 2007/09/16 23:12:32 martin Exp $ */
2 1.1 cdi
3 1.1 cdi /*-
4 1.1 cdi * Copyright (c) 2005 The NetBSD Foundation, Inc.
5 1.1 cdi * All rights reserved.
6 1.1 cdi *
7 1.1 cdi * Redistribution and use in source and binary forms, with or without
8 1.1 cdi * modification, are permitted provided that the following conditions
9 1.1 cdi * are met:
10 1.1 cdi * 1. Redistributions of source code must retain the above copyright
11 1.1 cdi * notice, this list of conditions and the following disclaimer.
12 1.1 cdi * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cdi * notice, this list of conditions and the following disclaimer in the
14 1.1 cdi * documentation and/or other materials provided with the distribution.
15 1.1 cdi * 3. All advertising materials mentioning features or use of this software
16 1.1 cdi * must display the following acknowledgement:
17 1.1 cdi * This product includes software developed by the NetBSD
18 1.1 cdi * Foundation, Inc. and its contributors.
19 1.1 cdi * 4. Neither the name of The NetBSD Foundation nor the names of its
20 1.1 cdi * contributors may be used to endorse or promote products derived
21 1.1 cdi * from this software without specific prior written permission.
22 1.1 cdi *
23 1.1 cdi * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
24 1.1 cdi * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25 1.1 cdi * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26 1.1 cdi * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
27 1.1 cdi * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 1.1 cdi * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 1.1 cdi * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 1.1 cdi * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 1.1 cdi * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 1.1 cdi * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 1.1 cdi * POSSIBILITY OF SUCH DAMAGE.
34 1.1 cdi */
35 1.1 cdi
36 1.1 cdi #ifndef _BOOT_H_
37 1.1 cdi #define _BOOT_H_
38 1.1 cdi
39 1.1 cdi #include <machine/bootinfo.h>
40 1.1 cdi
41 1.1 cdi #if defined(_DEBUG)
42 1.1 cdi #define DPRINTF(x) printf x;
43 1.1 cdi #else
44 1.1 cdi #define DPRINTF(x)
45 1.1 cdi #endif
46 1.1 cdi
47 1.1 cdi /*
48 1.1 cdi * vers.c (generated by newvers.sh)
49 1.1 cdi */
50 1.1 cdi extern const char bootprog_rev[];
51 1.1 cdi extern const char bootprog_name[];
52 1.1 cdi extern const char bootprog_date[];
53 1.1 cdi extern const char bootprog_maker[];
54 1.1 cdi
55 1.1 cdi /* bootinfo.c */
56 1.1 cdi extern u_long bi_init(u_long);
57 1.1 cdi extern void bi_add(void *, int, size_t);
58 1.1 cdi
59 1.1 cdi /* sparc64.c */
60 1.1 cdi extern ssize_t sparc64_read(int, void *, size_t);
61 1.1 cdi extern void* sparc64_memcpy(void *, const void *, size_t);
62 1.1 cdi extern void* sparc64_memset(void *, int, size_t);
63 1.1 cdi extern void sparc64_bi_add(void);
64 1.2 martin extern void sparc64_finalize_tlb(u_long);
65 1.1 cdi
66 1.1 cdi /* srt0.s */
67 1.1 cdi extern u_int get_cpuid(void);
68 1.1 cdi
69 1.1 cdi /* loadfile_machdep.c */
70 1.1 cdi #define LOADFILE_NOP_ALLOCATOR 0x0
71 1.1 cdi #define LOADFILE_OFW_ALLOCATOR 0x1
72 1.1 cdi #define LOADFILE_MMU_ALLOCATOR 0x2
73 1.1 cdi extern void loadfile_set_allocator(int);
74 1.1 cdi
75 1.3 martin /* ofdev.c */
76 1.3 martin char *filename(char*, char*);
77 1.3 martin
78 1.1 cdi #endif /* _BOOT_H_ */
79