/*-1* SPDX-License-Identifier: BSD-2-Clause2*3* Copyright (c) 1998 Robert Nordier4* All rights reserved.5*6* Redistribution and use in source and binary forms, with or without7* modification, are permitted provided that the following conditions8* are met:9* 1. Redistributions of source code must retain the above copyright10* notice, this list of conditions and the following disclaimer.11* 2. Redistributions in binary form must reproduce the above copyright12* notice, this list of conditions and the following disclaimer in the13* documentation and/or other materials provided with the distribution.14*15* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS``AS IS'' AND16* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE17* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR18* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS19* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,20* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT21* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR22* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,23* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE24* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,25* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.26*/2728#ifndef _BTX_H_29#define _BTX_H_3031#include <sys/types.h>3233#define BTX_PGSIZE 0x1000 /* Page size */34#define BTX_PGBASE 0x5000 /* Start of page tables */35#define BTX_MAXCWR 0x3bc /* Max. btx_pgctl adjustment */3637/*38* BTX image header.39*/40struct btx_hdr {41uint8_t btx_machid; /* Machine ID */42uint8_t btx_hdrsz; /* Header size */43uint8_t btx_magic[3]; /* Magic */44uint8_t btx_majver; /* Major version */45uint8_t btx_minver; /* Minor version */46uint8_t btx_flags; /* Flags */47uint16_t btx_pgctl; /* Paging control */48uint16_t btx_textsz; /* Text size */49uint32_t btx_entry; /* Client entry address */50};5152/* btx_machid */53#define BTX_I386 0xeb /* Intel i386 or compatible */5455/* btx_magic */56#define BTX_MAG0 'B'57#define BTX_MAG1 'T'58#define BTX_MAG2 'X'5960/* btx_flags */61#define BTX_MAPONE 0x80 /* Start mapping at page 1 */6263#define BTX_MAPPED(btx) (((btx).btx_pgctl | (BTX_PGSIZE / 4 - 1)) + 1)64#define BTX_ORIGIN(btx) (BTX_PGBASE + BTX_MAPPED(btx) * 4)65#define BTX_ENTRY(btx) (BTX_ORIGIN(btx) + 2 + (btx).btx_hdrsz)6667#endif /* !_BTX_H_ */686970