Home | History | Annotate | Line # | Download | only in ofwboot
boot.h revision 1.5.30.1
      1  1.5.30.1  bouyer /*	$NetBSD: boot.h,v 1.5.30.1 2011/02/08 16:19:41 bouyer 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.1     cdi extern u_long	bi_init(u_long);
     48       1.1     cdi extern void	bi_add(void *, int, size_t);
     49       1.1     cdi 
     50       1.1     cdi /* sparc64.c */
     51       1.1     cdi extern ssize_t	sparc64_read(int, void *, size_t);
     52       1.1     cdi extern void*	sparc64_memcpy(void *, const void *, size_t);
     53       1.1     cdi extern void*	sparc64_memset(void *, int, size_t);
     54       1.1     cdi extern void	sparc64_bi_add(void);
     55       1.2  martin extern void	sparc64_finalize_tlb(u_long);
     56       1.1     cdi 
     57       1.1     cdi /* srt0.s */
     58       1.1     cdi extern 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.1     cdi extern void	loadfile_set_allocator(int);
     65       1.1     cdi 
     66       1.3  martin /* ofdev.c */
     67       1.3  martin char *filename(char*, char*);
     68       1.3  martin 
     69       1.1     cdi #endif /* _BOOT_H_ */
     70