No empty .Rs/.Re
[netbsd-mini2440.git] / sys / arch / bebox / stand / boot / devopen.c
blob294540259c4a66e7e25e5c541297338a007861c0
1 /* $NetBSD: devopen.c,v 1.8 2005/12/11 12:17:04 christos Exp $ */
3 /*-
4 * Copyright (c) 1993 John Brezak
5 * All rights reserved.
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. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
31 #include <lib/libsa/stand.h>
32 #include <lib/libkern/libkern.h>
33 #include <sys/param.h>
34 #include <sys/reboot.h>
36 #define ispart(c) ((c) >= 'a' && (c) <= 'h')
38 static int atoi(char *);
39 static int devlookup(char *);
40 static int devparse(const char *, int *, int *, int *, int *, int *, char **);
43 static int
44 atoi(char *cp)
46 int val = 0;
48 while (isdigit(*cp))
49 val = val * 10 + (*cp++ - '0');
50 return val;
53 static int
54 devlookup(char *d)
56 struct devsw *dp = devsw;
57 int i;
59 for (i = 0; i < ndevs; i++, dp++)
60 if (dp->dv_name && strcmp(dp->dv_name, d) == 0)
61 return i;
63 printf("No such device - Configured devices are:\n");
64 for (dp = devsw, i = 0; i < ndevs; i++, dp++)
65 if (dp->dv_name)
66 printf(" %s", dp->dv_name);
67 printf("\n");
68 return -1;
72 * Parse a device spec in one of two forms.
73 * dev(ctlr, unit, part)file
75 static int
76 devparse(const char *fname, int *dev, int *adapt, int *ctlr, int *unit,
77 int *part, char **file)
79 int argc, flag;
80 char *s, *args[3];
81 extern char nametmp[];
83 /* get device name and make lower case */
84 strcpy(nametmp, (char *)fname);
85 for (s = nametmp; *s && *s != '('; s++)
86 if (isupper(*s)) *s = tolower(*s);
88 if (*s == '(') {
89 /* lookup device and get index */
90 *s = NULL;
91 if ((*dev = devlookup(nametmp)) < 0)
92 goto baddev;
94 /* tokenize device ident */
95 for (++s, flag = 0, argc = 0; *s && *s != ')'; s++) {
96 if (*s != ',') {
97 if (!flag) {
98 flag++;
99 args[argc++] = s;
101 } else {
102 if (flag) {
103 *s = NULL;
104 flag = 0;
108 if (*s == ')')
109 *s = NULL;
111 switch (argc) {
112 case 3:
113 *part = atoi(args[2]);
114 /* FALLTHROUGH */
115 case 2:
116 *unit = atoi(args[1]);
117 /* FALLTHROUGH */
118 case 1:
119 *ctlr = atoi(args[0]);
120 break;
122 *file = ++s;
123 } else {
124 /* no device present */
125 *file = (char *)fname;
127 return 0;
129 baddev:
130 return EINVAL;
134 devopen(struct open_file *f, const char *fname, char **file)
136 int error;
137 int dev = 0, ctlr = 0, unit = 0, part = 0;
138 int adapt = 0;
139 struct devsw *dp = &devsw[0];
141 if ((error =
142 devparse(fname, &dev, &adapt, &ctlr, &unit, &part, file)) != 0)
143 return error;
145 dp = &devsw[dev];
146 if (!dp->dv_open)
147 return ENODEV;
149 f->f_dev = dp;
150 if ((error = (*dp->dv_open)(f, ctlr, unit, part)) == 0)
151 return 0;
153 printf("%s(%d,%d,%d): %s\n", devsw[dev].dv_name,
154 ctlr, unit, part, strerror(error));
156 return error;