Home | History | Annotate | Line # | Download | only in include
bootinfo.h revision 1.14.2.1
      1  1.14.2.1     skrll /*	$NetBSD: bootinfo.h,v 1.14.2.1 2009/03/03 18:29:36 skrll Exp $	*/
      2       1.1      fvdl 
      3       1.1      fvdl /*
      4       1.1      fvdl  * Copyright (c) 1997
      5       1.1      fvdl  *	Matthias Drochner.  All rights reserved.
      6       1.1      fvdl  *
      7       1.1      fvdl  * Redistribution and use in source and binary forms, with or without
      8       1.1      fvdl  * modification, are permitted provided that the following conditions
      9       1.1      fvdl  * are met:
     10       1.1      fvdl  * 1. Redistributions of source code must retain the above copyright
     11       1.1      fvdl  *    notice, this list of conditions and the following disclaimer.
     12       1.1      fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1      fvdl  *    notice, this list of conditions and the following disclaimer in the
     14       1.1      fvdl  *    documentation and/or other materials provided with the distribution.
     15       1.1      fvdl  *
     16       1.1      fvdl  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17       1.1      fvdl  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18       1.1      fvdl  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19       1.1      fvdl  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20       1.1      fvdl  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     21       1.1      fvdl  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     22       1.1      fvdl  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     23       1.1      fvdl  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     24       1.1      fvdl  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     25       1.1      fvdl  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26       1.1      fvdl  *
     27       1.1      fvdl  */
     28       1.1      fvdl 
     29       1.6   thorpej #define BTINFO_BOOTPATH		0
     30      1.11      jmmv #define BTINFO_ROOTDEVICE	1
     31       1.6   thorpej #define BTINFO_BOOTDISK		3
     32       1.6   thorpej #define BTINFO_NETIF		4
     33       1.6   thorpej #define BTINFO_CONSOLE		6
     34       1.6   thorpej #define BTINFO_BIOSGEOM		7
     35       1.6   thorpej #define BTINFO_SYMTAB		8
     36       1.6   thorpej #define BTINFO_MEMMAP		9
     37       1.6   thorpej #define	BTINFO_BOOTWEDGE	10
     38      1.13        ad #define BTINFO_MODULELIST	11
     39  1.14.2.1     skrll #define BTINFO_FRAMEBUFFER	12
     40      1.13        ad 
     41      1.13        ad #ifndef _LOCORE
     42      1.13        ad 
     43      1.13        ad struct btinfo_common {
     44      1.13        ad 	int len;
     45      1.13        ad 	int type;
     46      1.13        ad };
     47       1.1      fvdl 
     48       1.1      fvdl struct btinfo_bootpath {
     49       1.1      fvdl 	struct btinfo_common common;
     50       1.1      fvdl 	char bootpath[80];
     51       1.1      fvdl };
     52       1.1      fvdl 
     53      1.11      jmmv struct btinfo_rootdevice {
     54      1.11      jmmv 	struct btinfo_common common;
     55      1.11      jmmv 	char devname[16];
     56      1.11      jmmv };
     57      1.11      jmmv 
     58       1.1      fvdl struct btinfo_bootdisk {
     59       1.1      fvdl 	struct btinfo_common common;
     60       1.1      fvdl 	int labelsector; /* label valid if != -1 */
     61       1.1      fvdl 	struct {
     62       1.9  junyoung 		uint16_t type, checksum;
     63       1.1      fvdl 		char packname[16];
     64       1.1      fvdl 	} label;
     65       1.1      fvdl 	int biosdev;
     66       1.1      fvdl 	int partition;
     67       1.1      fvdl };
     68       1.1      fvdl 
     69       1.6   thorpej struct btinfo_bootwedge {
     70       1.6   thorpej 	struct btinfo_common common;
     71       1.6   thorpej 	int biosdev;
     72       1.6   thorpej 	daddr_t startblk;
     73       1.6   thorpej 	uint64_t nblks;
     74       1.6   thorpej 	daddr_t matchblk;
     75       1.6   thorpej 	uint64_t matchnblks;
     76       1.6   thorpej 	uint8_t matchhash[16];	/* MD5 hash */
     77      1.12     perry } __packed;
     78       1.6   thorpej 
     79       1.1      fvdl struct btinfo_netif {
     80       1.1      fvdl 	struct btinfo_common common;
     81       1.1      fvdl 	char ifname[16];
     82       1.1      fvdl 	int bus;
     83       1.1      fvdl #define BI_BUS_ISA 0
     84       1.1      fvdl #define BI_BUS_PCI 1
     85       1.1      fvdl 	union {
     86       1.1      fvdl 		unsigned int iobase; /* ISA */
     87       1.1      fvdl 		unsigned int tag; /* PCI, BIOS format */
     88       1.1      fvdl 	} addr;
     89       1.1      fvdl };
     90       1.1      fvdl 
     91       1.1      fvdl struct btinfo_console {
     92       1.1      fvdl 	struct btinfo_common common;
     93       1.1      fvdl 	char devname[16];
     94       1.1      fvdl 	int addr;
     95       1.1      fvdl 	int speed;
     96       1.1      fvdl };
     97       1.1      fvdl 
     98       1.1      fvdl struct btinfo_symtab {
     99       1.1      fvdl 	struct btinfo_common common;
    100       1.1      fvdl 	int nsym;
    101       1.1      fvdl 	int ssym;
    102       1.1      fvdl 	int esym;
    103       1.1      fvdl };
    104       1.1      fvdl 
    105       1.1      fvdl struct bi_memmap_entry {
    106       1.9  junyoung 	uint64_t addr;		/* beginning of block */	/* 8 */
    107       1.9  junyoung 	uint64_t size;		/* size of block */		/* 8 */
    108       1.9  junyoung 	uint32_t type;		/* type of block */		/* 4 */
    109      1.12     perry } __packed;				/*	== 20 */
    110       1.1      fvdl 
    111       1.1      fvdl #define	BIM_Memory	1	/* available RAM usable by OS */
    112       1.1      fvdl #define	BIM_Reserved	2	/* in use or reserved by the system */
    113       1.1      fvdl #define	BIM_ACPI	3	/* ACPI Reclaim memory */
    114       1.1      fvdl #define	BIM_NVS		4	/* ACPI NVS memory */
    115       1.1      fvdl 
    116       1.1      fvdl struct btinfo_memmap {
    117       1.1      fvdl 	struct btinfo_common common;
    118       1.1      fvdl 	int num;
    119       1.1      fvdl 	struct bi_memmap_entry entry[1]; /* var len */
    120       1.1      fvdl };
    121       1.1      fvdl 
    122       1.8    dyoung #if HAVE_NBTOOL_CONFIG_H
    123       1.8    dyoung #include <nbinclude/sys/bootblock.h>
    124       1.8    dyoung #else
    125       1.3     lukem #include <sys/bootblock.h>
    126       1.8    dyoung #endif /* HAVE_NBTOOL_CONFIG_H */
    127       1.1      fvdl 
    128       1.1      fvdl /*
    129       1.1      fvdl  * Structure describing disk info as seen by the BIOS.
    130       1.1      fvdl  */
    131       1.1      fvdl struct bi_biosgeom_entry {
    132       1.2       dsl 	int		sec, head, cyl;		/* geometry */
    133       1.9  junyoung 	uint64_t	totsec;			/* LBA sectors from ext int13 */
    134       1.2       dsl 	int		flags, dev;		/* flags, BIOS device # */
    135       1.2       dsl #define BI_GEOM_INVALID		0x000001
    136       1.2       dsl #define BI_GEOM_EXTINT13	0x000002
    137       1.9  junyoung #ifdef BIOSDISK_EXTINFO_V3
    138       1.2       dsl #define BI_GEOM_BADCKSUM	0x000004	/* v3.x checksum invalid */
    139       1.2       dsl #define BI_GEOM_BUS_MASK	0x00ff00	/* connecting bus type */
    140       1.2       dsl #define BI_GEOM_BUS_ISA		0x000100
    141       1.2       dsl #define BI_GEOM_BUS_PCI		0x000200
    142       1.2       dsl #define BI_GEOM_BUS_OTHER	0x00ff00
    143       1.2       dsl #define BI_GEOM_IFACE_MASK	0xff0000	/* interface type */
    144       1.2       dsl #define BI_GEOM_IFACE_ATA	0x010000
    145       1.2       dsl #define BI_GEOM_IFACE_ATAPI	0x020000
    146       1.2       dsl #define BI_GEOM_IFACE_SCSI	0x030000
    147       1.2       dsl #define BI_GEOM_IFACE_USB	0x040000
    148       1.2       dsl #define BI_GEOM_IFACE_1394	0x050000	/* Firewire */
    149       1.2       dsl #define BI_GEOM_IFACE_FIBRE	0x060000	/* Fibre channel */
    150       1.9  junyoung #define BI_GEOM_IFACE_OTHER	0xff0000
    151       1.2       dsl 	unsigned int	cksum;			/* MBR checksum */
    152       1.9  junyoung 	unsigned int	interface_path;		/* ISA iobase PCI bus/dev/fun */
    153       1.9  junyoung 	uint64_t	device_path;
    154       1.2       dsl 	int		res0;			/* future expansion; 0 now */
    155       1.2       dsl #else
    156       1.2       dsl 	unsigned int	cksum;			/* MBR checksum */
    157       1.2       dsl 	int		res0, res1, res2, res3;	/* future expansion; 0 now */
    158       1.2       dsl #endif
    159       1.3     lukem 	struct mbr_partition dosparts[MBR_PART_COUNT]; /* MBR itself */
    160      1.12     perry } __packed;
    161       1.1      fvdl 
    162       1.1      fvdl struct btinfo_biosgeom {
    163       1.1      fvdl 	struct btinfo_common common;
    164       1.1      fvdl 	int num;
    165       1.1      fvdl 	struct bi_biosgeom_entry disk[1]; /* var len */
    166       1.1      fvdl };
    167       1.1      fvdl 
    168      1.13        ad struct bi_modulelist_entry {
    169      1.13        ad 	char path[80];
    170      1.13        ad 	int type;
    171      1.13        ad 	int len;
    172      1.13        ad 	uint32_t base;
    173      1.13        ad };
    174      1.13        ad #define	BI_MODULE_NONE		0x00
    175      1.13        ad #define	BI_MODULE_ELF		0x01
    176      1.13        ad 
    177      1.13        ad struct btinfo_modulelist {
    178      1.13        ad 	struct btinfo_common common;
    179      1.13        ad 	int num;
    180      1.13        ad 	uint32_t endpa;
    181      1.13        ad 	/* bi_modulelist_entry list follows */
    182      1.13        ad };
    183      1.13        ad 
    184  1.14.2.1     skrll struct btinfo_framebuffer {
    185  1.14.2.1     skrll 	struct btinfo_common common;
    186  1.14.2.1     skrll 	uint64_t physaddr;
    187  1.14.2.1     skrll 	uint32_t flags;
    188  1.14.2.1     skrll 	uint32_t width;
    189  1.14.2.1     skrll 	uint32_t height;
    190  1.14.2.1     skrll 	uint16_t stride;
    191  1.14.2.1     skrll 	uint8_t depth;
    192  1.14.2.1     skrll 	uint8_t rnum;
    193  1.14.2.1     skrll 	uint8_t gnum;
    194  1.14.2.1     skrll 	uint8_t bnum;
    195  1.14.2.1     skrll 	uint8_t rpos;
    196  1.14.2.1     skrll 	uint8_t gpos;
    197  1.14.2.1     skrll 	uint8_t bpos;
    198  1.14.2.1     skrll 	uint8_t reserved[16];
    199  1.14.2.1     skrll };
    200  1.14.2.1     skrll 
    201      1.10      jmmv #endif /* _LOCORE */
    202      1.10      jmmv 
    203       1.1      fvdl #ifdef _KERNEL
    204      1.10      jmmv 
    205      1.10      jmmv #define BOOTINFO_MAXSIZE 4096
    206      1.10      jmmv 
    207      1.10      jmmv #ifndef _LOCORE
    208      1.10      jmmv /*
    209      1.10      jmmv  * Structure that holds the information passed by the boot loader.
    210      1.10      jmmv  */
    211      1.10      jmmv struct bootinfo {
    212      1.10      jmmv 	/* Number of bootinfo_* entries in bi_data. */
    213      1.10      jmmv 	uint32_t	bi_nentries;
    214      1.10      jmmv 
    215      1.10      jmmv 	/* Raw data of bootinfo entries.  The first one (if any) is
    216      1.10      jmmv 	 * found at bi_data[0] and can be casted to (bootinfo_common *).
    217      1.10      jmmv 	 * Once this is done, the following entry is found at 'len'
    218      1.10      jmmv 	 * offset as specified by the previous entry. */
    219      1.10      jmmv 	uint8_t		bi_data[BOOTINFO_MAXSIZE - sizeof(uint32_t)];
    220      1.10      jmmv };
    221      1.10      jmmv 
    222      1.14      tron extern struct bootinfo bootinfo;
    223      1.14      tron 
    224       1.4  junyoung void *lookup_bootinfo(int);
    225       1.1      fvdl #endif /* _LOCORE */
    226       1.1      fvdl 
    227      1.10      jmmv #endif /* _KERNEL */
    228