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