2019-10-18 03:54:48 +03:00
|
|
|
/* $NetBSD: efi.h,v 1.9 2019/10/18 00:54:48 manu Exp $ */
|
2016-01-28 04:09:56 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2004 Marcel Moolenaar
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This file is mainly ia64/include/efi.h with little modifications. */
|
|
|
|
|
|
|
|
#ifndef _X86_EFI_H_
|
|
|
|
#define _X86_EFI_H_
|
|
|
|
|
|
|
|
#include <sys/uuid.h>
|
|
|
|
|
|
|
|
#define EFI_PAGE_SHIFT 12
|
|
|
|
#define EFI_PAGE_SIZE (1 << EFI_PAGE_SHIFT)
|
|
|
|
#define EFI_PAGE_MASK (EFI_PAGE_SIZE - 1)
|
|
|
|
|
2017-03-11 10:21:10 +03:00
|
|
|
#define EFI_TABLE_ACPI20 \
|
|
|
|
{0x8868e871,0xe4f1,0x11d3,0xbc,0x22,{0x00,0x80,0xc7,0x3c,0x88,0x81}}
|
|
|
|
#define EFI_TABLE_ACPI10 \
|
|
|
|
{0xeb9d2d30,0x2d88,0x11d3,0x9a,0x16,{0x00,0x90,0x27,0x3f,0xc1,0x4d}}
|
|
|
|
#define EFI_TABLE_SMBIOS \
|
|
|
|
{0xeb9d2d31,0x2d88,0x11d3,0x9a,0x16,{0x00,0x90,0x27,0x3f,0xc1,0x4d}}
|
|
|
|
#define EFI_TABLE_SMBIOS3 \
|
|
|
|
{0xf2fd1544,0x9794,0x4a2c,0x99,0x2e,{0xe5,0xbb,0xcf,0x20,0xe3,0x94}}
|
|
|
|
|
2016-01-28 04:09:56 +03:00
|
|
|
extern const struct uuid EFI_UUID_ACPI20;
|
|
|
|
extern const struct uuid EFI_UUID_ACPI10;
|
2017-03-11 10:21:10 +03:00
|
|
|
extern const struct uuid EFI_UUID_SMBIOS;
|
|
|
|
extern const struct uuid EFI_UUID_SMBIOS3;
|
2016-01-28 04:09:56 +03:00
|
|
|
|
2017-10-22 03:59:28 +03:00
|
|
|
extern bool bootmethod_efi;
|
|
|
|
|
2016-01-28 04:09:56 +03:00
|
|
|
enum efi_reset {
|
|
|
|
EFI_RESET_COLD,
|
|
|
|
EFI_RESET_WARM
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef uint16_t efi_char;
|
|
|
|
typedef unsigned long efi_status;
|
|
|
|
|
2019-10-18 03:54:48 +03:00
|
|
|
#if defined(__amd64__)
|
|
|
|
typedef uint64_t uintn;
|
|
|
|
#elif defined(__i386__)
|
|
|
|
typedef uint32_t uintn;
|
|
|
|
#endif
|
|
|
|
|
2016-01-28 04:09:56 +03:00
|
|
|
struct efi_cfgtbl {
|
|
|
|
struct uuid ct_uuid;
|
2017-01-24 14:09:14 +03:00
|
|
|
void *ct_data;
|
2016-01-28 04:09:56 +03:00
|
|
|
};
|
2017-02-23 15:17:36 +03:00
|
|
|
|
2016-01-28 04:09:56 +03:00
|
|
|
struct efi_md {
|
|
|
|
uint32_t md_type;
|
|
|
|
#define EFI_MD_TYPE_NULL 0
|
|
|
|
#define EFI_MD_TYPE_CODE 1 /* Loader text. */
|
|
|
|
#define EFI_MD_TYPE_DATA 2 /* Loader data. */
|
|
|
|
#define EFI_MD_TYPE_BS_CODE 3 /* Boot services text. */
|
|
|
|
#define EFI_MD_TYPE_BS_DATA 4 /* Boot services data. */
|
|
|
|
#define EFI_MD_TYPE_RT_CODE 5 /* Runtime services text. */
|
|
|
|
#define EFI_MD_TYPE_RT_DATA 6 /* Runtime services data. */
|
|
|
|
#define EFI_MD_TYPE_FREE 7 /* Unused/free memory. */
|
|
|
|
#define EFI_MD_TYPE_BAD 8 /* Bad memory */
|
|
|
|
#define EFI_MD_TYPE_RECLAIM 9 /* ACPI reclaimable memory. */
|
|
|
|
#define EFI_MD_TYPE_FIRMWARE 10 /* ACPI NV memory */
|
|
|
|
#define EFI_MD_TYPE_IOMEM 11 /* Memory-mapped I/O. */
|
|
|
|
#define EFI_MD_TYPE_IOPORT 12 /* I/O port space. */
|
|
|
|
#define EFI_MD_TYPE_PALCODE 13 /* PAL */
|
2017-02-14 16:29:09 +03:00
|
|
|
#define EFI_MD_TYPE_PMEM 14 /* Persistent memory. */
|
2016-01-28 04:09:56 +03:00
|
|
|
uint32_t __pad;
|
|
|
|
uint64_t md_phys;
|
2017-02-09 14:56:40 +03:00
|
|
|
uint64_t md_virt;
|
2016-01-28 04:09:56 +03:00
|
|
|
uint64_t md_pages;
|
|
|
|
uint64_t md_attr;
|
|
|
|
#define EFI_MD_ATTR_UC 0x0000000000000001UL
|
|
|
|
#define EFI_MD_ATTR_WC 0x0000000000000002UL
|
|
|
|
#define EFI_MD_ATTR_WT 0x0000000000000004UL
|
|
|
|
#define EFI_MD_ATTR_WB 0x0000000000000008UL
|
|
|
|
#define EFI_MD_ATTR_UCE 0x0000000000000010UL
|
|
|
|
#define EFI_MD_ATTR_WP 0x0000000000001000UL
|
|
|
|
#define EFI_MD_ATTR_RP 0x0000000000002000UL
|
|
|
|
#define EFI_MD_ATTR_XP 0x0000000000004000UL
|
|
|
|
#define EFI_MD_ATTR_RT 0x8000000000000000UL
|
|
|
|
};
|
|
|
|
|
|
|
|
struct efi_tm {
|
|
|
|
uint16_t tm_year; /* 1998 - 20XX */
|
|
|
|
uint8_t tm_mon; /* 1 - 12 */
|
|
|
|
uint8_t tm_mday; /* 1 - 31 */
|
|
|
|
uint8_t tm_hour; /* 0 - 23 */
|
|
|
|
uint8_t tm_min; /* 0 - 59 */
|
|
|
|
uint8_t tm_sec; /* 0 - 59 */
|
|
|
|
uint8_t __pad1;
|
|
|
|
uint32_t tm_nsec; /* 0 - 999,999,999 */
|
|
|
|
int16_t tm_tz; /* -1440 to 1440 or 2047 */
|
|
|
|
uint8_t tm_dst;
|
|
|
|
uint8_t __pad2;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct efi_tmcap {
|
|
|
|
uint32_t tc_res; /* 1e-6 parts per million */
|
|
|
|
uint32_t tc_prec; /* hertz */
|
|
|
|
uint8_t tc_stz; /* Set clears sub-second time */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct efi_tblhdr {
|
|
|
|
uint64_t th_sig;
|
|
|
|
uint32_t th_rev;
|
|
|
|
uint32_t th_hdrsz;
|
|
|
|
uint32_t th_crc32;
|
|
|
|
uint32_t __res;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct efi_rt {
|
|
|
|
struct efi_tblhdr rt_hdr;
|
|
|
|
efi_status (*rt_gettime)(struct efi_tm *, struct efi_tmcap *);
|
|
|
|
efi_status (*rt_settime)(struct efi_tm *);
|
|
|
|
efi_status (*rt_getwaketime)(uint8_t *, uint8_t *,
|
|
|
|
struct efi_tm *);
|
|
|
|
efi_status (*rt_setwaketime)(uint8_t, struct efi_tm *);
|
|
|
|
efi_status (*rt_setvirtual)(u_long, u_long, uint32_t,
|
|
|
|
struct efi_md *);
|
|
|
|
efi_status (*rt_cvtptr)(u_long, void **);
|
|
|
|
efi_status (*rt_getvar)(efi_char *, struct uuid *, uint32_t *,
|
|
|
|
u_long *, void *);
|
|
|
|
efi_status (*rt_scanvar)(u_long *, efi_char *, struct uuid *);
|
|
|
|
efi_status (*rt_setvar)(efi_char *, struct uuid *, uint32_t,
|
|
|
|
u_long, void *);
|
|
|
|
efi_status (*rt_gethicnt)(uint32_t *);
|
|
|
|
efi_status (*rt_reset)(enum efi_reset, efi_status, u_long,
|
|
|
|
efi_char *);
|
|
|
|
};
|
|
|
|
|
2019-10-18 03:54:48 +03:00
|
|
|
typedef uintn efi_tpl;
|
|
|
|
typedef void *efi_event;
|
|
|
|
typedef void (*efi_event_notify)(efi_event, void *);
|
|
|
|
typedef void *efi_handle;
|
|
|
|
typedef struct {
|
|
|
|
uint8_t type;
|
|
|
|
uint8_t subtype;
|
|
|
|
uint8_t ldnegth[2];
|
|
|
|
} efi_device_path;
|
|
|
|
|
|
|
|
struct efi_bs {
|
|
|
|
struct efi_tblhdr bs_hdr;
|
|
|
|
#define EFI_BS_SIG 0x56524553544f4f42UL
|
|
|
|
efi_tpl (*bs_raisetpl)(efi_tpl);
|
|
|
|
void (*bs_restoretpl)(efi_tpl);
|
|
|
|
efi_status (*bs_allocatepages)(uint32_t, uint32_t,
|
|
|
|
uintn, paddr_t *);
|
|
|
|
efi_status (*bs_freepages)(paddr_t, uintn);
|
|
|
|
efi_status (*bs_getmemorymap)(uintn *, struct efi_md *,
|
|
|
|
uintn *, uintn *, uint32_t *);
|
|
|
|
efi_status (*bs_allocatepool)(uint32_t, uintn, void **);
|
|
|
|
efi_status (*bs_freepool)(void *);
|
|
|
|
efi_status (*bs_createevent)(uint32_t, efi_tpl, efi_event_notify,
|
|
|
|
void *, efi_event *);
|
|
|
|
efi_status (*bs_settimer)(efi_event, uint32_t, uint64_t);
|
|
|
|
efi_status (*bs_waitforevent)(uintn, efi_event *, uintn *);
|
|
|
|
efi_status (*bs_signalevent)(efi_event);
|
|
|
|
efi_status (*bs_closeevent)(efi_event);
|
|
|
|
efi_status (*bs_checkevent)(efi_event);
|
|
|
|
efi_status (*bs_installprotocolinterface)(efi_handle *,
|
|
|
|
struct uuid *, uint32_t, void *);
|
|
|
|
efi_status (*bs_reinstallprotocolinterface)(efi_handle *,
|
|
|
|
struct uuid *, void *, void *);
|
|
|
|
efi_status (*bs_uninstallprotocolinterface)(efi_handle *,
|
|
|
|
struct uuid *, void *);
|
|
|
|
efi_status (*bs_handleprotocol)(efi_handle,
|
|
|
|
struct uuid *, void **);
|
|
|
|
efi_status (*bs_pchandleprotocol)(efi_handle,
|
|
|
|
struct uuid *, void **);
|
|
|
|
efi_status (*bs_registerprotocolnotify)(struct uuid *, efi_event,
|
|
|
|
void **);
|
|
|
|
efi_status (*bs_locatehandle)(uint32_t, struct uuid *, void *,
|
|
|
|
uintn *, efi_handle *);
|
|
|
|
efi_status (*bs_locatedevicepath)(struct uuid *, efi_device_path **,
|
|
|
|
efi_handle *);
|
|
|
|
efi_status (*bs_installconfigurationtable)(struct uuid *, void *);
|
|
|
|
efi_status (*bs_loadimage)(uint8_t, efi_handle, efi_device_path *,
|
|
|
|
void *, uintn, efi_handle *);
|
|
|
|
efi_status (*bs_startimage)(efi_handle, uintn *, efi_char **);
|
|
|
|
efi_status (*bs_exit)(efi_handle, efi_status, uintn, efi_char *);
|
|
|
|
efi_status (*bs_unloadimage)(efi_handle);
|
|
|
|
efi_status (*bs_exitbootservices)(efi_handle, uintn);
|
|
|
|
efi_status (*bs_getnextmonotoniccount)(uint64_t *);
|
|
|
|
efi_status (*bs_stall)(uintn);
|
|
|
|
efi_status (*bs_setwatchdogtimer)(uintn, uint64_t,
|
|
|
|
uintn, efi_char *);
|
|
|
|
efi_status (*bs_connectcontroller)(efi_handle, efi_handle *,
|
|
|
|
efi_device_path *, uint8_t);
|
|
|
|
efi_status (*bs_disconnectcontroller)(efi_handle, efi_handle,
|
|
|
|
efi_handle);
|
|
|
|
efi_status (*bs_openprotocol)(efi_handle, struct uuid *, void **,
|
|
|
|
efi_handle, efi_handle, uint32_t);
|
|
|
|
efi_status (*bs_closeprotocol)(efi_handle, struct uuid *,
|
|
|
|
efi_handle, efi_handle);
|
|
|
|
efi_status (*bs_openprotocolinformation)(efi_handle, efi_handle,
|
|
|
|
uint32_t, uint32_t);
|
|
|
|
efi_status (*bs_protocolsperhandle)(efi_handle,
|
|
|
|
struct uuid ***, uintn *);
|
|
|
|
efi_status (*bs_locatehandlebuffer)(uint32_t, struct uuid *,
|
|
|
|
void *, uintn *, efi_handle **);
|
|
|
|
efi_status (*bs_locateprotocol)(struct uuid *, void *, void **);
|
|
|
|
efi_status (*bs_installmultipleprotocolinterfaces)(efi_handle *,
|
|
|
|
...);
|
|
|
|
efi_status (*bs_uninstallmultipleprotocolinterfaces)(efi_handle,
|
|
|
|
...);
|
|
|
|
efi_status (*bs_calculatecrc32)(void *, uintn, uint32_t *);
|
|
|
|
efi_status (*bs_copymem)(void *, void *, uintn);
|
|
|
|
efi_status (*bs_setmem)(void *, uintn, uint8_t);
|
|
|
|
efi_status (*bs_createeventex)(uint32_t, efi_tpl,
|
|
|
|
efi_event_notify, void *, struct uuid, efi_event *);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct efi_input;
|
|
|
|
|
|
|
|
struct efi_key {
|
|
|
|
uint16_t scancode;
|
|
|
|
efi_char unicodechar;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct efi_input {
|
|
|
|
efi_status (*ei_reset)(struct efi_input *, uint8_t);
|
|
|
|
efi_status (*ei_readkeystroke)(struct efi_input *,
|
|
|
|
struct efi_key *);
|
|
|
|
void *ei_waitforkey;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct efi_input efi_input;
|
|
|
|
|
|
|
|
struct efi_text_output_mode {
|
|
|
|
int32_t maxmode;
|
|
|
|
int32_t mode;
|
|
|
|
int32_t attribute;
|
|
|
|
int32_t cursorcolumn;
|
|
|
|
int32_t cursorrow;
|
|
|
|
uint8_t cursorvisible;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct efi_output;
|
|
|
|
|
|
|
|
struct efi_output {
|
|
|
|
efi_status (*ei_reset)(struct efi_output *, uint8_t);
|
|
|
|
efi_status (*ei_outputstring)(struct efi_output *, efi_char *);
|
|
|
|
efi_status (*ei_teststring)(struct efi_output *, efi_char *);
|
|
|
|
efi_status (*ei_textquerymode)(struct efi_output *,
|
|
|
|
uintn, uintn *, uintn *);
|
|
|
|
efi_status (*ei_textsetmode)(struct efi_output *, uintn);
|
|
|
|
efi_status (*ei_setattribute)(struct efi_output *, uintn);
|
|
|
|
efi_status (*ei_clearscreen)(struct efi_output *);
|
|
|
|
efi_status (*ei_setcursorposition)(struct efi_output *,
|
|
|
|
uintn, uintn);
|
|
|
|
efi_status (*ei_enablecursor)(struct efi_output *, uint8_t);
|
|
|
|
struct efi_text_output_mode *ei_mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct efi_output efi_output;
|
|
|
|
|
2016-01-28 04:09:56 +03:00
|
|
|
struct efi_systbl {
|
|
|
|
struct efi_tblhdr st_hdr;
|
|
|
|
#define EFI_SYSTBL_SIG 0x5453595320494249UL
|
|
|
|
efi_char *st_fwvendor;
|
|
|
|
uint32_t st_fwrev;
|
2017-01-24 14:09:14 +03:00
|
|
|
#ifdef __amd64__
|
2016-01-28 04:09:56 +03:00
|
|
|
uint32_t __pad;
|
2017-01-24 14:09:14 +03:00
|
|
|
#endif
|
2019-10-18 03:54:48 +03:00
|
|
|
efi_handle *st_cin;
|
|
|
|
efi_input *st_cinif;
|
|
|
|
efi_handle *st_cout;
|
|
|
|
efi_output *st_coutif;
|
|
|
|
efi_handle *st_cerr;
|
|
|
|
efi_output *st_cerrif;
|
2017-01-24 14:09:14 +03:00
|
|
|
struct efi_rt *st_rt;
|
2019-10-18 03:54:48 +03:00
|
|
|
struct efi_bs *st_bs;
|
2016-01-28 04:09:56 +03:00
|
|
|
u_long st_entries;
|
2017-01-24 14:09:14 +03:00
|
|
|
struct efi_cfgtbl *st_cfgtbl;
|
2016-01-28 04:09:56 +03:00
|
|
|
};
|
|
|
|
|
2017-02-23 15:17:36 +03:00
|
|
|
#if defined(__amd64__)
|
|
|
|
struct efi_cfgtbl32 {
|
|
|
|
struct uuid ct_uuid;
|
|
|
|
uint32_t ct_data; /* void * */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct efi_systbl32 {
|
|
|
|
struct efi_tblhdr st_hdr;
|
|
|
|
|
|
|
|
uint32_t st_fwvendor;
|
|
|
|
uint32_t st_fwrev;
|
|
|
|
uint32_t st_cin; /* = 0 */
|
|
|
|
uint32_t st_cinif; /* = 0 */
|
|
|
|
uint32_t st_cout; /* = 0 */
|
|
|
|
uint32_t st_coutif; /* = 0 */
|
|
|
|
uint32_t st_cerr; /* = 0 */
|
|
|
|
uint32_t st_cerrif; /* = 0 */
|
|
|
|
uint32_t st_rt; /* struct efi_rt32 * */
|
|
|
|
uint32_t st_bs; /* = 0 */
|
|
|
|
uint32_t st_entries;
|
|
|
|
uint32_t st_cfgtbl; /* struct efi_cfgtbl32 * */
|
|
|
|
};
|
|
|
|
#elif defined(__i386__)
|
|
|
|
struct efi_cfgtbl64 {
|
|
|
|
struct uuid ct_uuid;
|
|
|
|
uint64_t ct_data; /* void * */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct efi_systbl64 {
|
|
|
|
struct efi_tblhdr st_hdr;
|
|
|
|
|
|
|
|
uint64_t st_fwvendor;
|
|
|
|
uint32_t st_fwrev;
|
|
|
|
uint32_t __pad;
|
|
|
|
uint64_t st_cin; /* = 0 */
|
|
|
|
uint64_t st_cinif; /* = 0 */
|
|
|
|
uint64_t st_cout; /* = 0 */
|
|
|
|
uint64_t st_coutif; /* = 0 */
|
|
|
|
uint64_t st_cerr; /* = 0 */
|
|
|
|
uint64_t st_cerrif; /* = 0 */
|
|
|
|
uint64_t st_rt; /* struct efi_rt64 * */
|
|
|
|
uint64_t st_bs; /* = 0 */
|
|
|
|
uint64_t st_entries;
|
|
|
|
uint64_t st_cfgtbl; /* struct efi_cfgtbl64 * */
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2017-10-22 03:59:28 +03:00
|
|
|
void efi_init(void);
|
2016-01-28 04:09:56 +03:00
|
|
|
bool efi_probe(void);
|
|
|
|
paddr_t efi_getsystblpa(void);
|
|
|
|
struct efi_systbl *efi_getsystbl(void);
|
|
|
|
paddr_t efi_getcfgtblpa(const struct uuid*);
|
|
|
|
void *efi_getcfgtbl(const struct uuid*);
|
2017-01-24 14:09:14 +03:00
|
|
|
int efi_getbiosmemtype(uint32_t, uint64_t);
|
|
|
|
const char *efi_getmemtype_str(uint32_t);
|
2017-02-14 16:23:50 +03:00
|
|
|
struct btinfo_memmap;
|
|
|
|
struct btinfo_memmap *efi_get_e820memmap(void);
|
|
|
|
|
2016-01-28 04:09:56 +03:00
|
|
|
/*
|
|
|
|
void efi_boot_finish(void);
|
|
|
|
int efi_boot_minimal(uint64_t);
|
|
|
|
void *efi_get_table(struct uuid *);
|
|
|
|
void efi_get_time(struct efi_tm *);
|
|
|
|
struct efi_md *efi_md_first(void);
|
|
|
|
struct efi_md *efi_md_next(struct efi_md *);
|
|
|
|
void efi_reset_system(void);
|
|
|
|
efi_status efi_set_time(struct efi_tm *);
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endif /* _X86_EFI_H_ */
|