1998-08-21 03:17:42 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
|
|
|
|
* 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 AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
|
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1998-08-21 03:17:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* i386 fully-qualified device descriptor.
|
|
|
|
*/
|
2018-03-12 21:39:27 +00:00
|
|
|
struct i386_devdesc {
|
2018-06-05 22:13:45 +00:00
|
|
|
struct devdesc dd; /* Must be first. */
|
1998-08-21 03:17:42 +00:00
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int slice;
|
|
|
|
int partition;
|
2012-08-05 14:37:48 +00:00
|
|
|
off_t offset;
|
1998-08-21 03:17:42 +00:00
|
|
|
} biosdisk;
|
2001-11-05 18:58:33 +00:00
|
|
|
struct
|
|
|
|
{
|
2012-05-12 09:03:30 +00:00
|
|
|
uint64_t pool_guid;
|
|
|
|
uint64_t root_guid;
|
|
|
|
} zfs;
|
1998-08-21 03:17:42 +00:00
|
|
|
} d_kind;
|
|
|
|
};
|
|
|
|
|
2017-06-16 20:08:44 +00:00
|
|
|
/*
|
|
|
|
* relocater trampoline support.
|
|
|
|
*/
|
|
|
|
struct relocate_data {
|
|
|
|
uint32_t src;
|
|
|
|
uint32_t dest;
|
|
|
|
uint32_t size;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern void relocater(void);
|
|
|
|
|
2017-06-29 04:33:55 +00:00
|
|
|
/*
|
|
|
|
* The relocater_data[] is fixed size array allocated in relocater_tramp.S
|
|
|
|
*/
|
|
|
|
extern struct relocate_data relocater_data[];
|
2017-06-16 20:08:44 +00:00
|
|
|
extern uint32_t relocater_size;
|
|
|
|
|
|
|
|
extern uint16_t relocator_ip;
|
|
|
|
extern uint16_t relocator_cs;
|
|
|
|
extern uint16_t relocator_ds;
|
|
|
|
extern uint16_t relocator_es;
|
|
|
|
extern uint16_t relocator_fs;
|
|
|
|
extern uint16_t relocator_gs;
|
|
|
|
extern uint16_t relocator_ss;
|
|
|
|
extern uint16_t relocator_sp;
|
|
|
|
extern uint32_t relocator_esi;
|
|
|
|
extern uint32_t relocator_eax;
|
|
|
|
extern uint32_t relocator_ebx;
|
|
|
|
extern uint32_t relocator_edx;
|
|
|
|
extern uint32_t relocator_ebp;
|
|
|
|
extern uint16_t relocator_a20_enabled;
|
|
|
|
|
2000-08-03 09:14:02 +00:00
|
|
|
int i386_getdev(void **vdev, const char *devspec, const char **path);
|
|
|
|
char *i386_fmtdev(void *vdev);
|
2005-05-27 19:28:04 +00:00
|
|
|
int i386_setcurrdev(struct env_var *ev, int flags, const void *value);
|
1998-08-21 03:17:42 +00:00
|
|
|
|
|
|
|
extern struct devdesc currdev; /* our current device */
|
|
|
|
|
2012-05-09 08:05:50 +00:00
|
|
|
#define MAXDEV 31 /* maximum number of distinct devices */
|
|
|
|
#define MAXBDDEV MAXDEV
|
1998-08-21 03:17:42 +00:00
|
|
|
|
|
|
|
/* exported devices XXX rename? */
|
2001-11-05 18:58:33 +00:00
|
|
|
extern struct devsw bioscd;
|
1998-08-21 03:17:42 +00:00
|
|
|
extern struct devsw biosdisk;
|
2000-03-28 01:19:53 +00:00
|
|
|
extern struct devsw pxedisk;
|
|
|
|
extern struct fs_ops pxe_fsops;
|
1998-08-21 03:17:42 +00:00
|
|
|
|
2001-11-05 18:58:33 +00:00
|
|
|
int bc_add(int biosdev); /* Register CD booted from. */
|
2004-06-16 18:21:22 +00:00
|
|
|
int bc_getdev(struct i386_devdesc *dev); /* return dev_t for (dev) */
|
2001-11-05 18:58:33 +00:00
|
|
|
int bc_bios2unit(int biosdev); /* xlate BIOS device -> bioscd unit */
|
|
|
|
int bc_unit2bios(int unit); /* xlate bioscd unit -> BIOS device */
|
2009-12-07 16:00:59 +00:00
|
|
|
uint32_t bd_getbigeom(int bunit); /* return geometry in bootinfo format */
|
|
|
|
int bd_bios2unit(int biosdev); /* xlate BIOS device -> biosdisk unit */
|
|
|
|
int bd_unit2bios(int unit); /* xlate biosdisk unit -> BIOS device */
|
2004-06-16 18:21:22 +00:00
|
|
|
int bd_getdev(struct i386_devdesc *dev); /* return dev_t for (dev) */
|
1998-08-21 03:17:42 +00:00
|
|
|
|
2000-08-03 09:14:02 +00:00
|
|
|
ssize_t i386_copyin(const void *src, vm_offset_t dest, const size_t len);
|
|
|
|
ssize_t i386_copyout(const vm_offset_t src, void *dest, const size_t len);
|
|
|
|
ssize_t i386_readin(const int fd, vm_offset_t dest, const size_t len);
|
1998-08-31 21:10:43 +00:00
|
|
|
|
2003-05-01 03:56:30 +00:00
|
|
|
struct preloaded_file;
|
|
|
|
void bios_addsmapdata(struct preloaded_file *);
|
|
|
|
void bios_getsmap(void);
|
|
|
|
|
2000-08-03 09:14:02 +00:00
|
|
|
void bios_getmem(void);
|
2009-12-07 16:00:59 +00:00
|
|
|
extern uint32_t bios_basemem; /* base memory in bytes */
|
|
|
|
extern uint32_t bios_extmem; /* extended memory in bytes */
|
2005-12-21 02:17:58 +00:00
|
|
|
extern vm_offset_t memtop; /* last address of physical memory + 1 */
|
|
|
|
extern vm_offset_t memtop_copyin; /* memtop less heap size for the cases */
|
2009-12-07 16:00:59 +00:00
|
|
|
/* when heap is at the top of */
|
|
|
|
/* extended memory; for other cases */
|
|
|
|
/* just the same as memtop */
|
2009-12-07 16:29:43 +00:00
|
|
|
extern uint32_t high_heap_size; /* extended memory region available */
|
|
|
|
extern vm_offset_t high_heap_base; /* for use as the heap */
|
1998-08-21 03:17:42 +00:00
|
|
|
|
2018-01-06 06:00:45 +00:00
|
|
|
/*
|
|
|
|
* Values for width parameter to biospci_{read,write}_config
|
|
|
|
*/
|
|
|
|
#define BIOSPCI_8BITS 0
|
|
|
|
#define BIOSPCI_16BITS 1
|
|
|
|
#define BIOSPCI_32BITS 2
|
|
|
|
|
2014-09-10 21:07:00 +00:00
|
|
|
void biospci_detect(void);
|
2016-10-14 16:23:12 +00:00
|
|
|
int biospci_find_devclass(uint32_t class, int index, uint32_t *locator);
|
|
|
|
int biospci_read_config(uint32_t locator, int offset, int width, uint32_t *val);
|
2012-01-03 22:36:12 +00:00
|
|
|
uint32_t biospci_locator(int8_t bus, uint8_t device, uint8_t function);
|
2016-10-14 16:23:12 +00:00
|
|
|
int biospci_write_config(uint32_t locator, int offset, int width, uint32_t val);
|
2004-10-22 14:56:23 +00:00
|
|
|
|
2006-03-09 22:49:44 +00:00
|
|
|
void biosacpi_detect(void);
|
2001-08-30 00:42:12 +00:00
|
|
|
|
2000-08-03 09:14:02 +00:00
|
|
|
int i386_autoload(void);
|
1998-08-21 03:17:42 +00:00
|
|
|
|
2000-08-03 09:14:02 +00:00
|
|
|
int bi_getboothowto(char *kargs);
|
2005-09-22 15:14:13 +00:00
|
|
|
void bi_setboothowto(int howto);
|
2000-08-03 09:14:02 +00:00
|
|
|
vm_offset_t bi_copyenv(vm_offset_t addr);
|
2003-05-01 03:56:30 +00:00
|
|
|
int bi_load32(char *args, int *howtop, int *bootdevp, vm_offset_t *bip,
|
|
|
|
vm_offset_t *modulep, vm_offset_t *kernend);
|
loader: implement multiboot support for Xen Dom0
Implement a subset of the multiboot specification in order to boot Xen
and a FreeBSD Dom0 from the FreeBSD bootloader. This multiboot
implementation is tailored to boot Xen and FreeBSD Dom0, and it will
most surely fail to boot any other multiboot compilant kernel.
In order to detect and boot the Xen microkernel, two new file formats
are added to the bootloader, multiboot and multiboot_obj. Multiboot
support must be tested before regular ELF support, since Xen is a
multiboot kernel that also uses ELF. After a multiboot kernel is
detected, all the other loaded kernels/modules are parsed by the
multiboot_obj format.
The layout of the loaded objects in memory is the following; first the
Xen kernel is loaded as a 32bit ELF into memory (Xen will switch to
long mode by itself), after that the FreeBSD kernel is loaded as a RAW
file (Xen will parse and load it using it's internal ELF loader), and
finally the metadata and the modules are loaded using the native
FreeBSD way. After everything is loaded we jump into Xen's entry point
using a small trampoline. The order of the multiboot modules passed to
Xen is the following, the first module is the RAW FreeBSD kernel, and
the second module is the metadata and the FreeBSD modules.
Since Xen will relocate the memory position of the second
multiboot module (the one that contains the metadata and native
FreeBSD modules), we need to stash the original modulep address inside
of the metadata itself in order to recalculate its position once
booted. This also means the metadata must come before the loaded
modules, so after loading the FreeBSD kernel a portion of memory is
reserved in order to place the metadata before booting.
In order to tell the loader to boot Xen and then the FreeBSD kernel the
following has to be added to the /boot/loader.conf file:
xen_cmdline="dom0_mem=1024M dom0_max_vcpus=2 dom0pvh=1 console=com1,vga"
xen_kernel="/boot/xen"
The first argument contains the command line that will be passed to the Xen
kernel, while the second argument is the path to the Xen kernel itself. This
can also be done manually from the loader command line, by for example
typing the following set of commands:
OK unload
OK load /boot/xen dom0_mem=1024M dom0_max_vcpus=2 dom0pvh=1 console=com1,vga
OK load kernel
OK load zfs
OK load if_tap
OK load ...
OK boot
Sponsored by: Citrix Systems R&D
Reviewed by: jhb
Differential Revision: https://reviews.freebsd.org/D517
For the Forth bits:
Submitted by: Julien Grall <julien.grall AT citrix.com>
2015-01-15 16:27:20 +00:00
|
|
|
int bi_load64(char *args, vm_offset_t addr, vm_offset_t *modulep,
|
|
|
|
vm_offset_t *kernend, int add_smap);
|
1998-09-17 23:52:16 +00:00
|
|
|
|
2000-08-03 09:14:02 +00:00
|
|
|
void pxe_enable(void *pxeinfo);
|