1 1.11 martin /* $NetBSD: boot.h,v 1.11 2017/09/15 13:25:34 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 * 16 1.1 cdi * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 17 1.1 cdi * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 18 1.1 cdi * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 19 1.1 cdi * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 20 1.1 cdi * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 1.1 cdi * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 1.1 cdi * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 23 1.1 cdi * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 24 1.1 cdi * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25 1.1 cdi * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26 1.1 cdi * POSSIBILITY OF SUCH DAMAGE. 27 1.1 cdi */ 28 1.1 cdi 29 1.1 cdi #ifndef _BOOT_H_ 30 1.1 cdi #define _BOOT_H_ 31 1.1 cdi 32 1.1 cdi #include <machine/bootinfo.h> 33 1.1 cdi 34 1.1 cdi #if defined(_DEBUG) 35 1.1 cdi #define DPRINTF(x) printf x; 36 1.1 cdi #else 37 1.1 cdi #define DPRINTF(x) 38 1.1 cdi #endif 39 1.1 cdi 40 1.1 cdi /* 41 1.1 cdi * vers.c (generated by newvers.sh) 42 1.1 cdi */ 43 1.1 cdi extern const char bootprog_rev[]; 44 1.1 cdi extern const char bootprog_name[]; 45 1.1 cdi 46 1.1 cdi /* bootinfo.c */ 47 1.9 tsutsui u_long bi_init(u_long); 48 1.9 tsutsui void bi_add(void *, int, size_t); 49 1.1 cdi 50 1.1 cdi /* sparc64.c */ 51 1.9 tsutsui ssize_t sparc64_read(int, void *, size_t); 52 1.9 tsutsui void *sparc64_memcpy(void *, const void *, size_t); 53 1.9 tsutsui void *sparc64_memset(void *, int, size_t); 54 1.9 tsutsui void sparc64_bi_add(void); 55 1.9 tsutsui void sparc64_finalize_tlb(u_long); 56 1.1 cdi 57 1.1 cdi /* srt0.s */ 58 1.9 tsutsui u_int get_cpuid(void); 59 1.1 cdi 60 1.1 cdi /* loadfile_machdep.c */ 61 1.1 cdi #define LOADFILE_NOP_ALLOCATOR 0x0 62 1.1 cdi #define LOADFILE_OFW_ALLOCATOR 0x1 63 1.1 cdi #define LOADFILE_MMU_ALLOCATOR 0x2 64 1.9 tsutsui void loadfile_set_allocator(int); 65 1.1 cdi 66 1.7 christos /* alloc.c */ 67 1.9 tsutsui void freeall(void); 68 1.7 christos 69 1.3 martin /* ofdev.c */ 70 1.11 martin extern struct btinfo_bootdev_unit bi_unit; 71 1.11 martin extern bool bootinfo_pass_bootunit; 72 1.11 martin 73 1.9 tsutsui char *filename(char *, char *); 74 1.3 martin 75 1.10 joerg /* boot.c */ 76 1.10 joerg void main(void *); 77 1.10 joerg 78 1.1 cdi #endif /* _BOOT_H_ */ 79