xref: /freebsd-src/sys/powerpc/include/metadata.h (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
160727d8bSWarner Losh /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
371e3c308SPedro F. Giffuni  *
4db015117SBenno Rice  * Copyright (c) 2001 Jake Burkholder.
5db015117SBenno Rice  * All rights reserved.
6db015117SBenno Rice  *
7db015117SBenno Rice  * Redistribution and use in source and binary forms, with or without
8db015117SBenno Rice  * modification, are permitted provided that the following conditions
9db015117SBenno Rice  * are met:
10db015117SBenno Rice  * 1. Redistributions of source code must retain the above copyright
11db015117SBenno Rice  *    notice, this list of conditions and the following disclaimer.
12db015117SBenno Rice  * 2. Redistributions in binary form must reproduce the above copyright
13db015117SBenno Rice  *    notice, this list of conditions and the following disclaimer in the
14db015117SBenno Rice  *    documentation and/or other materials provided with the distribution.
15db015117SBenno Rice  *
16db015117SBenno Rice  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17db015117SBenno Rice  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18db015117SBenno Rice  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19db015117SBenno Rice  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20db015117SBenno Rice  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21db015117SBenno Rice  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22db015117SBenno Rice  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23db015117SBenno Rice  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24db015117SBenno Rice  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25db015117SBenno Rice  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26db015117SBenno Rice  * SUCH DAMAGE.
27db015117SBenno Rice  */
28db015117SBenno Rice 
29db015117SBenno Rice #ifndef _MACHINE_METADATA_H_
30db015117SBenno Rice #define	_MACHINE_METADATA_H_
31db015117SBenno Rice 
32db015117SBenno Rice #define	MODINFOMD_ENVP		0x1001
33db015117SBenno Rice #define	MODINFOMD_HOWTO		0x1002
34db015117SBenno Rice #define	MODINFOMD_KERNEND	0x1003
35951f1334SMarcel Moolenaar #define	MODINFOMD_BOOTINFO	0x1004
36951f1334SMarcel Moolenaar #define	MODINFOMD_DTBP		0x1005
37db015117SBenno Rice 
38db015117SBenno Rice #endif /* !_MACHINE_METADATA_H_ */
39