summaryrefslogtreecommitdiff
path: root/sys/arch/atari/atari/swapgeneric.c
blob: 42bd4b6d5b3e2e8616c4f4802f396a73a3e5aa88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/*	$NetBSD: swapgeneric.c,v 1.1.1.1 1995/03/26 07:12:19 leo Exp $	*/

/*
 * Copyright (c) 1995 Leo Weppelman
 * Copyright (c) 1982, 1986 Regents of the University of California.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by the University of
 *	California, Berkeley and its contributors.
 * 4. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/buf.h>
#include <sys/reboot.h>
#include <sys/device.h>
#include <machine/disklabel.h>
#include <sys/disklabel.h>
#include <sys/fcntl.h>		/* XXXX and all that uses it */
#include <sys/proc.h>		/* XXXX and all that uses it */
#include <sys/disk.h>

#include "ramd.h"
#include "fd.h"
#include "sd.h"
#include "cd.h"

/*
 * Only boot on ufs. (XXX?)
 */
int ffs_mountroot();
int (*mountroot)() = ffs_mountroot;

/*
 * Generic configuration;  all in one
 */
dev_t	rootdev = NODEV;
dev_t	dumpdev = NODEV;

struct	swdevt swdevt[] = {
	{ NODEV,	1,	0 },
	{ NODEV,	0,	0 },
};

#if NFD > 0
extern	struct cfdriver fdcd;
#endif
#if NRAMD > 0
extern	struct cfdriver ramdcd;
#endif
#if NSD > 0
extern	struct cfdriver sdcd;
#endif
#if NCD > 0
extern	struct cfdriver cdcd;
#endif

struct genericconf {
	struct cfdriver *gc_driver;
	dev_t gc_root;
};

/*
 * the system will assign rootdev to the first partition 'a' 
 * found with FS_BSDFFS fstype. so these should be ordered
 * in preference of boot.
 */
static struct genericconf genericconf[] = {
#if NRAMD > 0
	{&ramdcd,makedev(1, 0)},
#endif
#if NFD > 0
	{&fdcd,	makedev(2, 0)},
#endif
#if NSD > 0
	{&sdcd,	makedev(4, 0)},
#endif
#if NCD > 0
	{&cdcd,	makedev(6, 0)},
#endif
	{ 0 },
};

static void			gets __P((char *));
static struct genericconf	*getgenconf __P((char *));
static struct genericconf	*guess_gc __P((int, int *));


static struct genericconf *
getgenconf(bp)
char	*bp;
{
	char			*cp;
	struct genericconf	*gc;

	for(;;) {
		printf("format: <dev-name><unit> [ ':'<part> ] [ * ]\n");
		printf("root device> ");
		gets(bp);
		for(gc = genericconf; gc->gc_driver; gc++)
			if(gc->gc_driver->cd_name[0] == bp[0] &&
			   gc->gc_driver->cd_name[1] == bp[1])
				break;
		if(gc->gc_driver == NULL) {
			printf("use one of:");
			for(gc = genericconf; gc->gc_driver; gc++)
				printf(" %s%%d", gc->gc_driver->cd_name);
			printf("\n");
			continue;
		}
		cp = bp + 2;
		if(*cp >= '0' && *cp <= '9')
			break;
		printf("bad/missing unit number\n");
	}
	return(gc);
}

setconf()
{
	struct genericconf	*gc;
	int			unit, swaponroot, part;
	char			name[128];
	char			*cp;
	
	swaponroot = 0;
	part       = 0;
	unit       = 0;

	if(rootdev != NODEV)
		goto justdoswap;

	if(boothowto & RB_ASKNAME) {
		gc = getgenconf(name);
		cp = name + 2;

		/*
		 * Get unit number
		 */
		while(*cp >= '0' && *cp <= '9')
			unit = 10 * unit + *cp++ - '0';

		/*
		 * And maybe partition...
		 * This is only usefull when booting from floppy. So it is
		 * possible to select the correct density.
		 */
		if(*cp == ':') {
			cp++;
			while(*cp >= '0' && *cp <= '9')
				part = 10 * part + *cp++ - '0';
		}

		if(*cp == '*')
			swaponroot = 1;
		unit &= 0x7;
	}
	else {
		gc = guess_gc(1, &unit);

		if(gc == NULL) {
			printf("no suitable root\n");
			asm("stop #0x2700");
		}
		/*NOTREACHED*/
	}

	gc->gc_root = MAKEDISKDEV(major(gc->gc_root), unit, part);
	rootdev     = gc->gc_root;


justdoswap:
	if(!swaponroot) {
		/* Find a suitable swap device */
		if((gc = guess_gc(0, &unit)) == NULL) {
			swdevt[0].sw_dev = dumpdev =
				MAKEDISKDEV(major(rootdev),DISKUNIT(rootdev),1);
		}
		else {
			swdevt[0].sw_dev = dumpdev =
				MAKEDISKDEV(major(gc->gc_root),unit,1);
		}
	}

	/* swap size and dumplo set during autoconfigure */
	if (swaponroot)
		rootdev = dumpdev;
}

static void
gets(cp)
char	*cp;
{
	register char	*lp;
	register int	c;

	lp = cp;
	for (;;) {
		cnputc(c = cngetc());
		switch (c) {
		case '\n':
		case '\r':
			*lp = 0;
			return;
		case '\b':
		case '\177':
			if (lp > cp) {
				lp--;
				cnputc(' ');
				cnputc('\b');
			}
			continue;
		case '#':
			lp--;
			if (lp < cp)
				lp = cp;
			continue;
		case '@':
		case 'u'&037:
			lp = cp;
			cnputc('\n');
			continue;
		default:
			*lp++ = c;
		}
	}
}

static struct genericconf *
guess_gc(search_root, rv_unit)
int	search_root;
int	*rv_unit;
{
	struct genericconf	*gc;
	struct partition	*pp;
	struct dkdevice		*dkp;
	struct bdevsw		*bdp;
	int					unit;

	for(gc = genericconf; gc->gc_driver; gc++) {
	     for(unit = 0; unit < gc->gc_driver->cd_ndevs; unit++) {
		if(gc->gc_driver->cd_devs[unit] == NULL)
			continue;
		/*
		 * this is a hack these drivers should use
		 * dk_dev and not another instance directly above.
		 */
		dkp = (struct dkdevice *)
		   ((struct device *)gc->gc_driver->cd_devs[unit] + 1);
		if(dkp->dk_driver == NULL || dkp->dk_driver->d_strategy == NULL)
			continue;
		for(bdp = bdevsw; bdp < (bdevsw + nblkdev); bdp++)
			if(bdp->d_strategy == dkp->dk_driver->d_strategy)
				break;
		if(bdp->d_open(MAKEDISKDEV(major(gc->gc_root),
			    unit, 3), FREAD | FNONBLOCK, 0, curproc))
			continue;
		bdp->d_close(MAKEDISKDEV(major(gc->gc_root), unit, 3),
			    FREAD | FNONBLOCK, 0, curproc);
		if(search_root) {
			pp = &dkp->dk_label.d_partitions[0];
			if(pp->p_size == 0 || pp->p_fstype != FS_BSDFFS)
				continue;
		}
		else { /* must be swap */
			pp = &dkp->dk_label.d_partitions[1];
			if(pp->p_size == 0 || pp->p_fstype != FS_SWAP)
				continue;
		}
		goto found;
	    }
	}
	return(NULL);
found:
	*rv_unit = unit;
	return(gc);
}