disklabel.h revision 1.8 1 /* $NetBSD: disklabel.h,v 1.8 2003/10/23 09:02:26 jdolecek Exp $ */
2
3 /*
4 * Copyright (c) 1995 Dale Rahn.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Dale Rahn.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33 #ifndef _MACHINE_DISKLABEL_H_
34 #define _MACHINE_DISKLABEL_H_
35
36 /* number of boot pieces , ie xxboot bootxx */
37 #define NUMBOOT 0
38
39 #define LABELSECTOR 0 /* sector containing label */
40 #define LABELOFFSET 0 /* offset of label in sector */
41 #define MAXPARTITIONS 8 /* number of partitions */
42 #define RAW_PART 2 /* raw partition: xx?c */
43
44 /*
45 * a cpu_disklabel is a disklabel that the bug (prom) can understand
46 * and live with. the bug works in terms of 256 byte blocks. in our
47 * case the first two bug blocks make up the cpu_disklabel (which is 512
48 * bytes [i.e. one sector] in length).
49 *
50 * we use a fixed layout the BSD disk structure (in 256 byte blocks):
51 * block 0 = the volume ID block (part of cpu_disklabel)
52 * block 1 = media configuration area (part of cpu_disklabel)
53 * block 2 = start of first level OS bootstrap (continues ...)
54 * block 31 = end of OS bootstrap
55 * block 32 = BSD filesystem superblock
56 *
57 * this gives us 30 blocks (30*256 = 7680 bytes) for the bootstrap's text+data
58 *
59 * disksubr.c translates between cpu_disklabel and BSD disklabel.
60 *
61 */
62
63 struct cpu_disklabel {
64 /* VID */
65 u_char vid_id[4]; /* volume ID */
66 #define VID_ID "NBSD"
67 u_char vid_0[16];
68 u_int vid_oss; /* starting block # of bootstrap */
69 #define VID_OSS 2
70 u_short vid_osl; /* bootstrap length (30 blocks) */
71 #define VID_OSL 30
72 u_char vid_1[4];
73 u_short vid_osa_u; /* bootstrap start address (upper) */
74 u_short vid_osa_l; /* bootstrap start address (lower) */
75 #define VID_OSA 0x3f0000 /* MUST match bootstrap code */
76 #define VID_OSAU ((VID_OSA >> 16) & 0xffff)
77 #define VID_OSAL (VID_OSA & 0xffff)
78 u_char vid_2[2];
79 u_short partitions;
80 u_char vid_vd[16];
81 u_long bbsize;
82 u_long magic1; /* 4 */
83 u_short type; /* 2 */
84 u_short subtype; /* 2 */
85 u_char packname[16]; /* 16 */
86 u_long flags; /* 4 */
87 u_long drivedata[5]; /* 4 */
88 u_long spare[5]; /* 4 */
89 u_short checksum; /* 2 */
90
91 u_long secpercyl; /* 4 */
92 u_long secperunit; /* 4 */
93 u_long headswitch; /* 4 */
94
95 u_char vid_3[4];
96 u_int vid_cas; /* block # of CFG area, hardwired at 1 */
97 #define VID_CAS 1
98 u_char vid_cal; /* length of CFG area, in blocks (1) */
99 #define VID_CAL 1
100 u_char vid_4_0[3];
101 u_char vid_4[64];
102 u_char vid_4_1[28];
103 u_long sbsize;
104 u_char vid_mot[8]; /* must contain "MOTOROLA" */
105 #define VID_MOT "MOTOROLA"
106
107 /* CFG */
108 u_char cfg_0[4];
109 u_short cfg_atm;
110 u_short cfg_prm;
111 u_short cfg_atw;
112 u_short cfg_rec; /* block size (256) */
113 #define CFG_REC 256
114
115 u_short sparespertrack;
116 u_short sparespercyl;
117 u_long acylinders;
118 u_short rpm;
119 u_short cylskew;
120
121 u_char cfg_spt;
122 u_char cfg_hds;
123 u_short cfg_trk;
124 u_char cfg_ilv;
125 u_char cfg_sof;
126 u_short cfg_psm; /* physical sector size (512) */
127 #define CFG_PSM 512
128 u_short cfg_shd;
129 u_char cfg_2[2];
130 u_short cfg_pcom;
131 u_char cfg_3;
132 u_char cfg_ssr;
133 u_short cfg_rwcc;
134 u_short cfg_ecc;
135 u_short cfg_eatm;
136 u_short cfg_eprm;
137 u_short cfg_eatw;
138 u_char cfg_gpb1;
139 u_char cfg_gpb2;
140 u_char cfg_gpb3;
141 u_char cfg_gpb4;
142 u_char cfg_ssc;
143 u_char cfg_runit;
144 u_short cfg_rsvc1;
145 u_short cfg_rsvc2;
146 u_long magic2;
147 u_char cfg_4[192];
148 } __attribute__((__packed__));
149 #endif /* _MACHINE_DISKLABEL_H_ */
150