Home | History | Annotate | Line # | Download | only in efiboot
efiboot.h revision 1.5.8.2
      1  1.5.8.2  jdolecek /*	$NetBSD: efiboot.h,v 1.5.8.2 2017/12/03 11:36:18 jdolecek Exp $	*/
      2  1.5.8.2  jdolecek 
      3  1.5.8.2  jdolecek /*-
      4  1.5.8.2  jdolecek  * Copyright (c) 2016 Kimihiro Nonaka <nonaka (at) netbsd.org>
      5  1.5.8.2  jdolecek  * All rights reserved.
      6  1.5.8.2  jdolecek  *
      7  1.5.8.2  jdolecek  * Redistribution and use in source and binary forms, with or without
      8  1.5.8.2  jdolecek  * modification, are permitted provided that the following conditions
      9  1.5.8.2  jdolecek  * are met:
     10  1.5.8.2  jdolecek  * 1. Redistributions of source code must retain the above copyright
     11  1.5.8.2  jdolecek  *    notice, this list of conditions and the following disclaimer.
     12  1.5.8.2  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.5.8.2  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     14  1.5.8.2  jdolecek  *    documentation and/or other materials provided with the distribution.
     15  1.5.8.2  jdolecek  *
     16  1.5.8.2  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     17  1.5.8.2  jdolecek  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.5.8.2  jdolecek  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.5.8.2  jdolecek  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     20  1.5.8.2  jdolecek  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.5.8.2  jdolecek  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.5.8.2  jdolecek  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.5.8.2  jdolecek  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.5.8.2  jdolecek  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.5.8.2  jdolecek  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.5.8.2  jdolecek  * SUCH DAMAGE.
     27  1.5.8.2  jdolecek  */
     28  1.5.8.2  jdolecek 
     29  1.5.8.2  jdolecek #include <efi.h>
     30  1.5.8.2  jdolecek #include <efilib.h>
     31  1.5.8.2  jdolecek 
     32  1.5.8.2  jdolecek #include <lib/libsa/stand.h>
     33  1.5.8.2  jdolecek #include <lib/libkern/libkern.h>
     34  1.5.8.2  jdolecek 
     35  1.5.8.2  jdolecek #include "libi386.h"
     36  1.5.8.2  jdolecek 
     37  1.5.8.2  jdolecek #include "efiboot_machdep.h"
     38  1.5.8.2  jdolecek 
     39  1.5.8.2  jdolecek extern EFI_GUID GraphicsOutputProtocol;
     40  1.5.8.2  jdolecek 
     41  1.5.8.2  jdolecek /* boot.c */
     42  1.5.8.2  jdolecek void boot(void);
     43  1.5.8.2  jdolecek void clearit(void);
     44  1.5.8.2  jdolecek void print_banner(void);
     45  1.5.8.2  jdolecek 
     46  1.5.8.2  jdolecek /* efiboot.c */
     47  1.5.8.2  jdolecek extern EFI_HANDLE IH;
     48  1.5.8.2  jdolecek extern EFI_DEVICE_PATH *efi_bootdp;
     49  1.5.8.2  jdolecek extern EFI_LOADED_IMAGE *efi_li;
     50  1.5.8.2  jdolecek extern uintptr_t efi_main_sp;
     51  1.5.8.2  jdolecek extern physaddr_t efi_loadaddr, efi_kernel_start;
     52  1.5.8.2  jdolecek extern u_long efi_kernel_size;
     53  1.5.8.2  jdolecek extern bool efi_cleanuped;
     54  1.5.8.2  jdolecek void efi_cleanup(void);
     55  1.5.8.2  jdolecek 
     56  1.5.8.2  jdolecek /* eficons.c */
     57  1.5.8.2  jdolecek int cninit(void);
     58  1.5.8.2  jdolecek void consinit(int, int, int);
     59  1.5.8.2  jdolecek void command_text(char *);
     60  1.5.8.2  jdolecek void command_gop(char *);
     61  1.5.8.2  jdolecek 
     62  1.5.8.2  jdolecek /* efidisk.c */
     63  1.5.8.2  jdolecek void efi_disk_probe(void);
     64  1.5.8.2  jdolecek 
     65  1.5.8.2  jdolecek /* efimemory.c */
     66  1.5.8.2  jdolecek void efi_memory_probe(void);
     67  1.5.8.2  jdolecek void efi_memory_show_map(bool);
     68  1.5.8.2  jdolecek EFI_MEMORY_DESCRIPTOR *efi_memory_get_map(UINTN *, UINTN *, UINTN *, UINT32 *,
     69  1.5.8.2  jdolecek     bool);
     70  1.5.8.2  jdolecek 
     71  1.5.8.2  jdolecek /* panic.c */
     72  1.5.8.2  jdolecek __dead VOID Panic(IN CHAR16 *, ...);
     73