xref: /dragonfly/stand/boot/common/bootstrap.h (revision 7d3e9a5b)
1 /*-
2  * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/boot/common/bootstrap.h,v 1.38 2003/05/01 03:56:29 peter Exp $
27  */
28 
29 #include <sys/types.h>
30 #include <sys/queue.h>
31 #include <sys/linker_set.h>
32 #include <machine/types.h>	/* XXX for vm_offset_t */
33 
34 struct stat;
35 
36 /*
37  * Generic device specifier; architecture-dependant
38  * versions may be larger, but should be allowed to
39  * overlap.
40  */
41 struct devdesc
42 {
43     struct devsw	*d_dev;
44     int			d_type;
45 #define DEVT_NONE	0
46 #define DEVT_DISK	1
47 #define DEVT_NET	2
48 #define	DEVT_CD		3
49 };
50 
51 /* Commands and return values; nonzero return sets command_errmsg != NULL */
52 typedef int	(bootblk_cmd_t)(int argc, char *argv[]);
53 #define	COMMAND_ERRBUFSZ	(256)
54 extern char	*command_errmsg;
55 extern char	command_errbuf[COMMAND_ERRBUFSZ];
56 extern int	CurrentCondition;
57 #define CMD_OK		0
58 #define CMD_ERROR	1
59 
60 /* interp.c */
61 void	interact(void);
62 int	include(const char *filename);
63 
64 /* interp_backslash.c */
65 char	*backslash(char *str);
66 
67 /* interp_parse.c */
68 int	parse(int *argc, char ***argv, char *str);
69 
70 /* interp_forth.c */
71 void	bf_init(void);
72 int	bf_run(char *line);
73 
74 /* boot.c */
75 int	autoboot(int timeout, char *prompt);
76 void	autoboot_maybe(void);
77 int	getrootmount(char *rootdev);
78 int	rel_open(const char *path, char **abspathp, int flags);
79 int	rel_stat(const char *path, struct stat *st);
80 int	chdir(const char *path);
81 
82 /* misc.c */
83 char	*unargv(int argc, char *argv[]);
84 void	hexdump(caddr_t region, size_t len);
85 size_t	strlenout(vm_offset_t str);
86 char	*strdupout(vm_offset_t str);
87 void	kern_bzero(vm_offset_t dest, size_t len);
88 int	kern_pread(int fd, vm_offset_t dest, size_t len, off_t off);
89 void	*alloc_pread(int fd, off_t off, size_t len);
90 
91 /* bcache.c */
92 int	bcache_init(u_int nblks, size_t bsize);
93 void	bcache_flush(void);
94 int	bcache_strategy(void *devdata, int unit, int rw, daddr_t blk,
95 			size_t size, char *buf, size_t *rsize);
96 
97 void slowprint(char c);
98 
99 /*
100  * Disk block cache
101  */
102 struct bcache_devdata
103 {
104     int         (*dv_strategy)(void *devdata, int rw, daddr_t blk, size_t size, char *buf, size_t *rsize);
105     void	*dv_devdata;
106 };
107 
108 /*
109  * Modular console support.
110  */
111 struct console
112 {
113     const char	*c_name;
114     const char	*c_desc;
115     int		c_flags;
116 #define C_PRESENTIN	(1<<0)
117 #define C_PRESENTOUT	(1<<1)
118 #define C_ACTIVEIN	(1<<2)
119 #define C_ACTIVEOUT	(1<<3)
120     void	(* c_probe)(struct console *cp);	/* set c_flags to match hardware */
121     int		(* c_init)(int arg);			/* reinit XXX may need more args */
122     void	(* c_out)(int c);			/* emit c */
123     int		(* c_in)(void);				/* wait for and return input */
124     int		(* c_ready)(void);			/* return nonzer if input waiting */
125 };
126 extern struct console	*consoles[];
127 void		cons_probe(void);
128 
129 /*
130  * Plug-and-play enumerator/configurator interface.
131  */
132 struct pnphandler
133 {
134     const char	*pp_name;		/* handler/bus name */
135     void	(* pp_enumerate)(void);	/* enumerate PnP devices, add to chain */
136 };
137 
138 struct pnpident
139 {
140     char			*id_ident;	/* ASCII identifier, actual format varies with bus/handler */
141     STAILQ_ENTRY(pnpident)	id_link;
142 };
143 
144 struct pnpinfo
145 {
146     char			*pi_desc;	/* ASCII description, optional */
147     int				pi_revision;	/* optional revision (or -1) if not supported */
148     char			*pi_module;	/* module/args nominated to handle device */
149     int				pi_argc;	/* module arguments */
150     char			**pi_argv;
151     struct pnphandler		*pi_handler;	/* handler which detected this device */
152     STAILQ_HEAD(,pnpident)	pi_ident;	/* list of identifiers */
153     STAILQ_ENTRY(pnpinfo)	pi_link;
154 };
155 
156 STAILQ_HEAD(pnpinfo_stql, pnpinfo);
157 
158 extern struct pnpinfo_stql pnp_devices;
159 
160 extern struct pnphandler	*pnphandlers[];		/* provided by MD code */
161 
162 void			pnp_addident(struct pnpinfo *pi, char *ident);
163 struct pnpinfo		*pnp_allocinfo(void);
164 void			pnp_freeinfo(struct pnpinfo *pi);
165 void			pnp_addinfo(struct pnpinfo *pi);
166 char			*pnp_eisaformat(u_int8_t *data);
167 
168 /*
169  *  < 0	- No ISA in system
170  * == 0	- Maybe ISA, search for read data port
171  *  > 0	- ISA in system, value is read data port address
172  */
173 extern int			isapnp_readport;
174 
175 /*
176  * Preloaded file metadata header.
177  *
178  * Metadata are allocated on our heap, and copied into kernel space
179  * before executing the kernel.
180  */
181 struct file_metadata
182 {
183     size_t			md_size;
184     u_int16_t			md_type;
185     struct file_metadata	*md_next;
186     char			md_data[1];	/* data are immediately appended */
187 };
188 
189 struct preloaded_file;
190 struct mod_depend;
191 
192 struct kernel_module
193 {
194     char			*m_name;	/* module name */
195     int				m_version;	/* module version */
196 /*    char			*m_args;*/	/* arguments for the module */
197     struct preloaded_file	*m_fp;
198     struct kernel_module	*m_next;
199 };
200 
201 /*
202  * Preloaded file information. Depending on type, file can contain
203  * additional units called 'modules'.
204  *
205  * At least one file (the kernel) must be loaded in order to boot.
206  * The kernel is always loaded first.
207  *
208  * String fields (m_name, m_type) should be dynamically allocated.
209  */
210 struct preloaded_file
211 {
212     char			*f_name;	/* file name */
213     char			*f_type;	/* verbose file type, eg 'ELF kernel', 'pnptable', etc. */
214     char			*f_args;	/* arguments for the file */
215     struct file_metadata	*f_metadata;	/* metadata that will be placed in the module directory */
216     int				f_loader;	/* index of the loader that read the file */
217     vm_offset_t			f_addr;		/* load address */
218     size_t			f_size;		/* file size */
219     struct kernel_module	*f_modules;	/* list of modules if any */
220     struct preloaded_file	*f_next;	/* next file */
221 };
222 
223 struct file_format
224 {
225     /* Load function must return EFTYPE if it can't handle the module supplied */
226     int		(* l_load)(char *filename, u_int64_t dest, struct preloaded_file **result);
227     /* Only a loader that will load a kernel (first module) should have an exec handler */
228     int		(* l_exec)(struct preloaded_file *mp);
229 };
230 
231 extern struct file_format	*file_formats[];	/* supplied by consumer */
232 extern struct preloaded_file	*preloaded_files;
233 
234 int			mod_load(char *name, struct mod_depend *verinfo, int argc, char *argv[]);
235 int			mod_loadkld(const char *name, int argc, char *argv[]);
236 
237 struct preloaded_file *file_alloc(void);
238 struct preloaded_file *file_findfile(char *name, char *type);
239 struct file_metadata *file_findmetadata(struct preloaded_file *fp, int type);
240 void file_discard(struct preloaded_file *fp);
241 void file_addmetadata(struct preloaded_file *fp, int type, size_t size, void *p);
242 int  file_addmodule(struct preloaded_file *fp, char *modname, int version,
243 	struct kernel_module **newmp);
244 
245 
246 /* MI module loaders */
247 #ifdef __elfN
248 /* Relocation types. */
249 #define ELF_RELOC_REL	1
250 #define ELF_RELOC_RELA	2
251 
252 /* Relocation offset for some architectures */
253 extern u_int64_t __elfN(relocation_offset);
254 
255 struct elf_file;
256 typedef Elf_Addr (symaddr_fn)(struct elf_file *ef, Elf_Size symidx);
257 
258 int	__elfN(loadfile)(char *filename, u_int64_t dest, struct preloaded_file **result);
259 int	__elfN(obj_loadfile)(char *filename, u_int64_t dest,
260 	    struct preloaded_file **result);
261 int	__elfN(reloc)(struct elf_file *ef, symaddr_fn *symaddr,
262 	    const void *reldata, int reltype, Elf_Addr relbase,
263 	    Elf_Addr dataaddr, void *data, size_t len);
264 #endif
265 
266 /*
267  * Support for commands
268  */
269 struct bootblk_command
270 {
271     const char		*c_name;
272     const char		*c_desc;
273     bootblk_cmd_t	*c_fn;
274     int			c_cond;
275 };
276 
277 #define COMMAND_SET(tag, key, desc, func)				\
278     static bootblk_cmd_t func;						\
279     static struct bootblk_command _cmd_ ## tag = { key, desc, func, 0 };\
280     DATA_SET(Xcommand_set, _cmd_ ## tag)
281 
282 #define COMMAND_SET_COND(tag, key, desc, func)				\
283     static bootblk_cmd_t func;						\
284     static struct bootblk_command _cmd_ ## tag = { key, desc, func, 1 };\
285     DATA_SET(Xcommand_set, _cmd_ ## tag)
286 
287 SET_DECLARE(Xcommand_set, struct bootblk_command);
288 
289 /*
290  * The intention of the architecture switch is to provide a convenient
291  * encapsulation of the interface between the bootstrap MI and MD code.
292  * MD code may selectively populate the switch at runtime based on the
293  * actual configuration of the target system.
294  */
295 struct arch_switch
296 {
297     /* Automatically load modules as required by detected hardware */
298     int		(*arch_autoload)(void);
299     /* Locate the device for (name), return pointer to tail in (*path) */
300     int		(*arch_getdev)(void **dev, const char *name, const char **path);
301     /* Copy from local address space to module address space, similar to bcopy() */
302     ssize_t	(*arch_copyin)(const void *src, vm_offset_t dest,
303 			       const size_t len);
304     /* Copy to local address space from module address space, similar to bcopy() */
305     ssize_t	(*arch_copyout)(const vm_offset_t src, void *dest,
306 				const size_t len);
307     /* Read from file to module address space, same semantics as read() */
308     ssize_t	(*arch_readin)(const int fd, vm_offset_t dest,
309 			       const size_t len);
310     /* Perform ISA byte port I/O (only for systems with ISA) */
311     int		(*arch_isainb)(int port);
312     void	(*arch_isaoutb)(int port, int value);
313 };
314 extern struct arch_switch archsw;
315 
316 /* This must be provided by the MD code, but should it be in the archsw? */
317 void	delay(int delay);
318 
319 void	dev_cleanup(void);
320 
321 time_t	time(time_t *tloc);
322