Home | History | Annotate | Download | only in sys
      1 /*
      2  * CDDL HEADER START
      3  *
      4  * The contents of this file are subject to the terms of the
      5  * Common Development and Distribution License (the "License").
      6  * You may not use this file except in compliance with the License.
      7  *
      8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
      9  * or http://www.opensolaris.org/os/licensing.
     10  * See the License for the specific language governing permissions
     11  * and limitations under the License.
     12  *
     13  * When distributing Covered Code, include this CDDL HEADER in each
     14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     15  * If applicable, add the following below this CDDL HEADER, with the
     16  * fields enclosed by brackets "[]" replaced with your own identifying
     17  * information: Portions Copyright [yyyy] [name of copyright owner]
     18  *
     19  * CDDL HEADER END
     20  */
     21 /*
     22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
     23  * Use is subject to license terms.
     24  */
     25 
     26 #ifndef	_SYS_BOOTCONF_H
     27 #define	_SYS_BOOTCONF_H
     28 
     29 
     30 /*
     31  * Boot time configuration information objects
     32  */
     33 
     34 #include <sys/types.h>
     35 #include <sys/varargs.h>
     36 #include <sys/sysmacros.h>
     37 #include <sys/memlist.h>
     38 #include <sys/bootstat.h>
     39 #include <net/if.h>			/* for IFNAMSIZ */
     40 
     41 #ifdef __cplusplus
     42 extern "C" {
     43 #endif
     44 
     45 /*
     46  * masks to hand to bsys_alloc memory allocator
     47  * XXX	These names shouldn't really be srmmu derived.
     48  */
     49 #define	BO_NO_ALIGN	0x00001000
     50 #define	BO_ALIGN_L3	0x00001000
     51 #define	BO_ALIGN_L2	0x00040000
     52 #define	BO_ALIGN_L1	0x01000000
     53 
     54 /*
     55  *  We pass a ptr to the space that boot has been using
     56  *  for its memory lists.
     57  */
     58 struct bsys_mem {
     59 	struct memlist *physinstalled;	/* amt of physmem installed */
     60 	struct memlist *physavail;	/* amt of physmem avail for use */
     61 	struct memlist *virtavail;	/* amt of virtmem avail for use */
     62 	uint_t		extent; 	/* number of bytes in the space */
     63 };
     64 
     65 #define	BO_VERSION	9		/* bootops interface revision # */
     66 
     67 #define	BOOTOPS_ARE_1275(bop) \
     68 	((BOP_GETVERSION(bop)) >= 9 && (bop->bsys_1275_call != 0))
     69 
     70 typedef struct bootops {
     71 	/*
     72 	 * the ubiquitous version number
     73 	 */
     74 	uint_t	bsys_version;
     75 
     76 	/*
     77 	 * The entry point to jump to for boot services.
     78 	 * Pass this routine the array of boot_cell_t's describing the
     79 	 * service requested.
     80 	 */
     81 	uint64_t bsys_1275_call;
     82 
     83 	/*
     84 	 * print formatted output - PRINTFLIKE1
     85 	 * here (and maintained) so old kernels can fail with
     86 	 * an error message rather than something weird.
     87 	 * not really 'printf' though.
     88 	 */
     89 	uint32_t	bsys_printf;
     90 } bootops_t;
     91 
     92 extern void bop_init(void);
     93 extern int bop_open(const char *s, int flags);
     94 extern int bop_read(int fd, caddr_t buf, size_t size);
     95 extern int bop_seek(int fd, off_t off);
     96 extern int bop_close(int fd);
     97 extern caddr_t bop_alloc(caddr_t virthint, size_t size, int align);
     98 extern caddr_t bop_alloc_virt(caddr_t virt, size_t size);
     99 extern caddr_t bop_temp_alloc(size_t size, int align);
    100 extern caddr_t bop_alloc_chunk(caddr_t virthint, size_t size, int align);
    101 extern void bop_free(caddr_t virt, size_t size);
    102 extern int bop_getproplen(const char *name);
    103 extern int bop_getprop(const char *name, void *value);
    104 extern int bop_mountroot(void);
    105 extern int bop_unmountroot(void);
    106 extern int bop_fstat(int fd, struct bootstat *st);
    107 extern void bop_enter_mon(void);
    108 extern void bop_fini(void);
    109 
    110 extern void bop_printf(void *ops, const char *fmt, ...);
    111 extern void bop_putsarg(const char *fmt, char *arg);
    112 extern void bop_panic(const char *s);
    113 
    114 #define	BOP_OPEN(s, flags)		bop_open(s, flags)
    115 #define	BOP_READ(fd, buf, size)		bop_read(fd, buf, size)
    116 #define	BOP_SEEK(fd, off)		bop_seek(fd, off)
    117 #define	BOP_CLOSE(fd)			bop_close(fd)
    118 #define	BOP_ALLOC(bop, virthint, size, align)	\
    119 				bop_alloc(virthint, size, align)
    120 #define	BOP_ALLOC_VIRT(virt, size)	bop_alloc_virt(virt, size)
    121 #define	BOP_FREE(bop, virt, size)	bop_free(virt, size)
    122 #define	BOP_GETPROPLEN(bop, name)	bop_getproplen(name)
    123 #define	BOP_GETPROP(bop, name, buf)	bop_getprop(name, buf)
    124 #define	BOP_MOUNTROOT()			bop_mountroot()
    125 #define	BOP_UNMOUNTROOT()		bop_unmountroot()
    126 #define	BOP_FSTAT(bop, fd, st)		bop_fstat(fd, st)
    127 
    128 /* special routine for kmdb only */
    129 #define	BOP_PUTSARG(bop, fmt, arg)	bop_putsarg(fmt, arg)
    130 
    131 /*
    132  * macros and declarations needed by clients of boot to
    133  * call the 1275-like boot interface routines.
    134  */
    135 
    136 typedef unsigned long long boot_cell_t;
    137 
    138 /*
    139  * Macros that work in both compilation models, to permit either a
    140  * sun4u/ILP32 or a sun4u/LP64 program to interface with the new
    141  * 1275-like boot service replacement for bootops.
    142  *
    143  * These macros stuff/unstuff arguments into/from boot_cell_t's, which are
    144  * fixed size in all models. Note that some of the types (e.g. off_t)
    145  * change size in the models.
    146  */
    147 #define	boot_ptr2cell(p)	((boot_cell_t)((uintptr_t)((void *)(p))))
    148 #define	boot_int2cell(i)	((boot_cell_t)((int)(i)))
    149 #define	boot_uint2cell(u)	((boot_cell_t)((unsigned int)(u)))
    150 #define	boot_uint642cell(u)	((boot_cell_t)((uint64_t)(u)))
    151 #define	boot_offt2cell(u)	((boot_cell_t)((off_t)(u)))
    152 #define	boot_size2cell(u)	((boot_cell_t)((size_t)(u)))
    153 #define	boot_phandle2cell(ph)	((boot_cell_t)((unsigned)((phandle_t)(ph))))
    154 #define	boot_dnode2cell(d)	((boot_cell_t)((unsigned)((pnode_t)(d))))
    155 #define	boot_ihandle2cell(ih)	((boot_cell_t)((unsigned)((ihandle_t)(ih))))
    156 
    157 #define	boot_cell2ptr(p)	((void *)(uintptr_t)((boot_cell_t)(p)))
    158 #define	boot_cell2int(i)	((int)((boot_cell_t)(i)))
    159 #define	boot_cell2uint(u)	((unsigned int)((boot_cell_t)(u)))
    160 #define	boot_cell2uint64(u)	((uint64_t)((boot_cell_t)(u)))
    161 #define	boot_cell2offt(u)	((off_t)((boot_cell_t)(u)))
    162 #define	boot_cell2size(u)	((size_t)((boot_cell_t)(u)))
    163 #define	boot_cell2phandle(ph)	((phandle_t)((boot_cell_t)(ph)))
    164 #define	boot_cell2dnode(d)	((pnode_t)((boot_cell_t)(d)))
    165 #define	boot_cell2ihandle(ih)	((ihandle_t)((boot_cell_t)(ih)))
    166 #define	boot_cells2ull(h, l)	((unsigned long long)(boot_cell_t)(l))
    167 
    168 #define	BOOT_SVC_FAIL	(int)(-1)
    169 #define	BOOT_SVC_OK	(int)(1)
    170 
    171 #if defined(_KERNEL) && !defined(_BOOT)
    172 
    173 /*
    174  * Boot configuration information
    175  */
    176 
    177 #define	BO_MAXFSNAME	16
    178 #define	BO_MAXOBJNAME	256
    179 
    180 struct bootobj {
    181 	char	bo_fstype[BO_MAXFSNAME];	/* vfs type name (e.g. nfs) */
    182 	char	bo_name[BO_MAXOBJNAME];		/* name of object */
    183 	int	bo_flags;			/* flags, see below */
    184 	int	bo_size;			/* number of blocks */
    185 	struct vnode *bo_vp;			/* vnode of object */
    186 	char	bo_devname[BO_MAXOBJNAME];
    187 	char	bo_ifname[BO_MAXOBJNAME];
    188 	int	bo_ppa;
    189 };
    190 
    191 /*
    192  * flags
    193  */
    194 #define	BO_VALID	0x01	/* all information in object is valid */
    195 #define	BO_BUSY		0x02	/* object is busy */
    196 
    197 extern struct bootobj rootfs;
    198 extern struct bootobj swapfile;
    199 
    200 extern char obp_bootpath[BO_MAXOBJNAME];
    201 extern char svm_bootpath[BO_MAXOBJNAME];
    202 
    203 extern dev_t getrootdev(void);
    204 extern void getfsname(char *, char *, size_t);
    205 extern int loadrootmodules(void);
    206 
    207 extern int strplumb(void);
    208 extern int strplumb_load(void);
    209 
    210 extern void consconfig(void);
    211 extern void release_bootstrap(void);
    212 
    213 extern int dhcpinit(void);
    214 
    215 /* XXX	Doesn't belong here */
    216 extern int zsgetspeed(dev_t);
    217 
    218 extern void param_check(void);
    219 
    220 extern struct bootops *bootops;
    221 extern int netboot;
    222 extern int swaploaded;
    223 extern int modrootloaded;
    224 extern char kern_bootargs[];
    225 extern char kern_bootfile[];
    226 extern char *kobj_module_path;
    227 extern char *default_path;
    228 extern char *dhcack;
    229 extern int dhcacklen;
    230 extern char dhcifname[IFNAMSIZ];
    231 extern char *netdev_path;
    232 
    233 extern char *strplumb_get_netdev_path(void);
    234 
    235 #endif /* _KERNEL && !_BOOT */
    236 
    237 #ifdef __cplusplus
    238 }
    239 #endif
    240 
    241 #endif	/* _SYS_BOOTCONF_H */
    242