Home | History | Annotate | Line # | Download | only in aptck
      1  1.5  chs /*	$NetBSD: ahdilbl.h,v 1.5 2011/10/01 15:59:00 chs Exp $	*/
      2  1.1  leo 
      3  1.1  leo /*
      4  1.1  leo  * Copyright (c) 1995 Leo Weppelman.
      5  1.1  leo  * All rights reserved.
      6  1.1  leo  *
      7  1.1  leo  * Redistribution and use in source and binary forms, with or without
      8  1.1  leo  * modification, are permitted provided that the following conditions
      9  1.1  leo  * are met:
     10  1.1  leo  * 1. Redistributions of source code must retain the above copyright
     11  1.1  leo  *    notice, this list of conditions and the following disclaimer.
     12  1.1  leo  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  leo  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  leo  *    documentation and/or other materials provided with the distribution.
     15  1.1  leo  *
     16  1.1  leo  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  1.1  leo  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18  1.1  leo  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19  1.1  leo  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  1.1  leo  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     21  1.1  leo  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     22  1.1  leo  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     23  1.1  leo  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     24  1.1  leo  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     25  1.1  leo  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26  1.1  leo  */
     27  1.1  leo 
     28  1.1  leo #ifndef AHDILABEL_H
     29  1.1  leo #define AHDILABEL_H
     30  1.1  leo 
     31  1.1  leo /***** from src/sys/arch/atari/include/disklabel.h *************************/
     32  1.1  leo 
     33  1.1  leo /*
     34  1.1  leo  * On a volume, exclusively used by NetBSD, the boot block starts at
     35  1.1  leo  * sector 0. To allow shared use of a volume between two or more OS's
     36  1.1  leo  * the vendor specific AHDI format is supported. In this case the boot
     37  1.1  leo  * block is located at the start of an AHDI partition. In any case the
     38  1.1  leo  * size of the boot block must be at least 8KB.
     39  1.1  leo  */
     40  1.1  leo #define	BBMINSIZE	8192		/* minimum size of boot block      */
     41  1.1  leo #define	LABELSECTOR	0		/* `natural' start of boot block   */
     42  1.2  leo #define	LABELOFFSET	516		/* offset of disk label in bytes,
     43  1.1  leo 					   relative to start of boot block */
     44  1.2  leo #define	LABELMAXSIZE	1020		/* maximum size of disk label      */
     45  1.1  leo 
     46  1.1  leo #define	MAXPARTITIONS	16		/* max. # of NetBSD partitions     */
     47  1.1  leo #define	RAW_PART	2		/* xx?c is raw partition	   */
     48  1.1  leo 
     49  1.1  leo #define	NO_BOOT_BLOCK	((u_int)-1)
     50  1.3  wiz #define	MAXAUXROOTS	29		/* max. # of auxiliary root sectors */
     51  1.1  leo 
     52  1.1  leo struct bootblock {
     53  1.2  leo 	u_int8_t	bb_xxboot[LABELOFFSET - sizeof(u_int32_t)];
     54  1.2  leo 						/* first-stage boot loader */
     55  1.2  leo 	u_int32_t	bb_magic;		/* boot block magic number */
     56  1.2  leo #define	NBDAMAGIC	0x4e424441
     57  1.2  leo #define	AHDIMAGIC	0x41484449
     58  1.2  leo 	u_int8_t	bb_label[LABELMAXSIZE];	/* disk pack label         */
     59  1.1  leo 	u_int8_t	bb_bootxx[BBMINSIZE - (LABELOFFSET + LABELMAXSIZE)];
     60  1.1  leo 						/* second-stage boot loader*/
     61  1.1  leo };
     62  1.1  leo 
     63  1.5  chs #define BBGETLABEL(bb, dl)	memcpy((dl), (bb)->bb_label, sizeof (struct disklabel))
     64  1.5  chs #define BBSETLABEL(bb, dl)	memcpy((bb)->bb_label, (dl), sizeof (struct disklabel))
     65  1.1  leo 
     66  1.1  leo /***** from src/sys/arch/atari/include/ahdilabel.h *************************/
     67  1.1  leo 
     68  1.1  leo #define	AHDI_BSIZE	512		/* AHDI blocksize		*/
     69  1.1  leo #define	AHDI_BBLOCK	0		/* AHDI bootblock (root sector)	*/
     70  1.1  leo #define	AHDI_MAXROOTS	(MAXAUXROOTS)	/* max. # of AHDI rootsectors	*/
     71  1.1  leo #define	AHDI_MAXPARTS	(AHDI_MAXROOTS+3) /* max. # of AHDI partitions	*/
     72  1.1  leo 
     73  1.1  leo /*
     74  1.1  leo  * Various `well known' AHDI partition identifiers.
     75  1.1  leo  */
     76  1.1  leo #define	AHDI_MKPID(x,y,z)	(   ((u_int32_t)(x) << 16)	\
     77  1.1  leo 				  | ((u_int32_t)(y) << 8)	\
     78  1.1  leo 				  | ((u_int32_t)(z))		\
     79  1.1  leo 				)
     80  1.1  leo #define	AHDI_PID_XGM	AHDI_MKPID('X','G','M')
     81  1.1  leo #define	AHDI_PID_GEM	AHDI_MKPID('G','E','M')
     82  1.1  leo #define	AHDI_PID_BGM	AHDI_MKPID('B','G','M')
     83  1.1  leo #define	AHDI_PID_RAW	AHDI_MKPID('R','A','W')
     84  1.1  leo #define	AHDI_PID_SWP	AHDI_MKPID('S','W','P')
     85  1.1  leo #define	AHDI_PID_NBD	AHDI_MKPID('N','B','D')
     86  1.1  leo #define	AHDI_PID_NBR	AHDI_MKPID('N','B','R')
     87  1.1  leo #define	AHDI_PID_NBS	AHDI_MKPID('N','B','S')
     88  1.1  leo #define	AHDI_PID_NBU	AHDI_MKPID('N','B','U')
     89  1.1  leo 
     90  1.1  leo /*
     91  1.1  leo  * Format of AHDI boot block.
     92  1.1  leo  */
     93  1.1  leo #define	AHDI_MAXRPD	4		/* max. # of partition descriptors */
     94  1.1  leo 					/* in the AHDI bootblock (aka root)*/
     95  1.1  leo #define	AHDI_MAXARPD	2		/* max. # of partition descriptors */
     96  1.3  wiz 					/* in an AHDI auxiliary root sector */
     97  1.1  leo 
     98  1.1  leo struct ahdi_part {
     99  1.1  leo 	u_int8_t	ap_flg;		/* bit 0 is in-use flag            */
    100  1.1  leo 	u_int8_t	ap_id[3];	/* id: GEM, BGM, XGM, UNX, MIX     */
    101  1.1  leo 	u_int32_t	ap_offs;	/* block where partition starts    */
    102  1.1  leo 	u_int32_t	ap_size;	/* partition size in blocks        */
    103  1.1  leo #define	ap_end	ap_size /* in the in-core copy, store end instead of size  */
    104  1.1  leo };
    105  1.1  leo 
    106  1.1  leo struct ahdi_root {
    107  1.1  leo 	u_int8_t	 ar_fill[0x1c2];/* filler, can be boot code        */
    108  1.1  leo 	u_int32_t	 ar_hdsize;	/* size of entire volume in blocks */
    109  1.1  leo 	struct ahdi_part ar_parts[AHDI_MAXRPD]; /* root partition table    */
    110  1.1  leo 	u_int32_t	 ar_bslst;	/* start of bad-sector list        */
    111  1.1  leo 	u_int32_t	 ar_bslsize;	/* # of blocks in bad-sector list  */
    112  1.1  leo 	u_int16_t	 ar_cksum;
    113  1.1  leo };
    114  1.1  leo 
    115  1.1  leo #endif /* AHDILABEL_H */
    116