File: scsi_glue.c

package info (click to toggle)
oskit 0.97.20000202-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 58,008 kB
  • ctags: 172,612
  • sloc: ansic: 832,827; asm: 7,640; sh: 3,920; yacc: 3,664; perl: 1,457; lex: 427; makefile: 337; csh: 141; awk: 78
file content (357 lines) | stat: -rw-r--r-- 8,651 bytes parent folder | download
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
/*
 * Copyright (c) 1997, 1998, 1999 The University of Utah and the Flux Group.
 * 
 * This file is part of the OSKit Linux Glue Libraries, which are free
 * software, also known as "open source;" you can redistribute them and/or
 * modify them under the terms of the GNU General Public License (GPL),
 * version 2, as published by the Free Software Foundation (FSF).
 * 
 * The OSKit is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE.  See the GPL for more details.  You should have
 * received a copy of the GPL along with the OSKit; see the file COPYING.  If
 * not, write to the FSF, 59 Temple Place #330, Boston, MA 02111-1307, USA.
 */

#include <oskit/io/blkio.h>
#include <oskit/dev/driver.h>
#include <oskit/dev/device.h>
#include <oskit/dev/bus.h>
#include <oskit/dev/blk.h>
#include <oskit/dev/scsi.h>
#include <oskit/dev/native.h>
#include <oskit/dev/linux.h>

#include "scsi_glue.h"
#include "sd.h"

#include <linux/module.h>

struct scsi_bus;

struct scsi_dev {
	oskit_device_t			intf;
	struct scsi_dev			*next;
	Scsi_Device			*dev;
	struct scsi_bus			*bus;
	char				model[16+1];
	char				vendor[8+1];
	kdev_t				devno;
};

struct scsi_bus {
	oskit_scsibus_t			intf;
	struct scsi_driver_struct	*sds;
	struct Scsi_Host		*host;
	struct scsi_dev			*devs;
};


/*** Generic (unrecognized) SCSI device node interface ***/

static oskit_devinfo_t dev_info = {
	"scsi", "Unknown SCSI device", NULL,
	"Drew Eckhardt, Eric Youngdale", "Linux "UTS_RELEASE
};

static OSKIT_COMDECL
dev_query(oskit_device_t *dev, const struct oskit_guid *iid, void **out_ihandle)
{
	if (memcmp(iid, &oskit_iunknown_iid, sizeof(*iid)) == 0 ||
	    memcmp(iid, &oskit_device_iid, sizeof(*iid)) == 0) {
		*out_ihandle = dev;
		return 0;
	}

	*out_ihandle = NULL;
	return OSKIT_E_NOINTERFACE;
}

static OSKIT_COMDECL_U dev_addref(oskit_device_t *dev)
{
	/* No reference counting */
	return 1;
}

static OSKIT_COMDECL_U dev_release(oskit_device_t *dev)
{
	/* No reference counting */
	return 1;
}

static OSKIT_COMDECL dev_getinfo(oskit_device_t *dev, oskit_devinfo_t *out_info)
{
	struct scsi_dev *d = (struct scsi_dev*)dev;

	*out_info = dev_info;

	/* If more detailed information is available, use it */
	if (d->model[0]) out_info->description = d->model;
	if (d->vendor[0]) out_info->vendor = d->vendor;

	return 0;
}

static OSKIT_COMDECL dev_getdriver(oskit_device_t *dev,
				    oskit_driver_t **out_driver)
{
	struct scsi_dev *d = (struct scsi_dev*)dev;
	oskit_driver_t *drvi = (oskit_driver_t*)&d->bus->sds->ds.drvi;

	*out_driver = drvi;
	oskit_driver_addref(drvi);

	return 0;
}

static struct oskit_device_ops dev_ops = {
	dev_query, dev_addref, dev_release,
	dev_getinfo, dev_getdriver
};


/*** SCSI disk device node interface ***/

static oskit_devinfo_t disk_info = {
	"disk", "SCSI hard disk drive", NULL,
	"Drew Eckhardt, Eric Youngdale", "Linux "UTS_RELEASE
};

static OSKIT_COMDECL
disk_query(oskit_blkdev_t *dev, const struct oskit_guid *iid, void **out_ihandle)
{
	if (memcmp(iid, &oskit_iunknown_iid, sizeof(*iid)) == 0 ||
	    memcmp(iid, &oskit_device_iid, sizeof(*iid)) == 0 ||
	    memcmp(iid, &oskit_blkdev_iid, sizeof(*iid)) == 0) {
		*out_ihandle = dev;
		return 0;
	}

	*out_ihandle = NULL;
	return OSKIT_E_NOINTERFACE;
}

static OSKIT_COMDECL disk_getinfo(oskit_blkdev_t *dev, oskit_devinfo_t *out_info)
{
	struct scsi_dev *d = (struct scsi_dev*)dev;

	*out_info = disk_info;

	/* If more detailed information is available, use it */
	if (d->model[0]) out_info->description = d->model;
	if (d->vendor[0]) out_info->vendor = d->vendor;

	return 0;
}

static OSKIT_COMDECL disk_open(oskit_blkdev_t *dev, unsigned mode,
				oskit_blkio_t **out_blkio)
{
	struct scsi_dev *d = (struct scsi_dev*)dev;

	return oskit_linux_block_open_kdev(d->devno, NULL, mode, out_blkio);
}

static struct oskit_blkdev_ops disk_ops = {
	disk_query, (void*)dev_addref, (void*)dev_release,
	disk_getinfo, (void*)dev_getdriver,
	disk_open
};


/*** SCSI host adaptor device node ("SCSI bus") interface ***/

static OSKIT_COMDECL
bus_query(oskit_scsibus_t *bus, const struct oskit_guid *iid, void **out_ihandle)
{
	if (memcmp(iid, &oskit_iunknown_iid, sizeof(*iid)) == 0 ||
	    memcmp(iid, &oskit_device_iid, sizeof(*iid)) == 0 ||
	    memcmp(iid, &oskit_bus_iid, sizeof(*iid)) == 0 ||
	    memcmp(iid, &oskit_scsibus_iid, sizeof(*iid)) == 0) {
		*out_ihandle = bus;
		return 0;
	}

	*out_ihandle = NULL;
	return OSKIT_E_NOINTERFACE;
}

static OSKIT_COMDECL_U
bus_addref(oskit_scsibus_t *bus)
{
	/* No reference counting */
	return 1;
}

static OSKIT_COMDECL_U
bus_release(oskit_scsibus_t *bus)
{
	/* No reference counting */
	return 1;
}

static OSKIT_COMDECL
bus_getinfo(oskit_scsibus_t *intf, oskit_devinfo_t *out_info)
{
	struct scsi_bus *bus = (struct scsi_bus*)intf;
	*out_info = bus->sds->dev_info;
	return 0;
}

static OSKIT_COMDECL
bus_getdriver(oskit_scsibus_t *intf, oskit_driver_t **out_driver)
{
	struct scsi_bus *bus = (struct scsi_bus*)intf;
	oskit_driver_t *drvi = (oskit_driver_t*)&bus->sds->ds.drvi;

	*out_driver = drvi;
	oskit_driver_addref(drvi);

	return 0;
}

static OSKIT_COMDECL
bus_getchild(oskit_scsibus_t *intf, oskit_u32_t idx,
	     struct oskit_device **out_fdev, char *out_pos)
{
	struct scsi_bus *bus = (struct scsi_bus*)intf;
	struct scsi_dev *dev;

	/* Find the SCSI device corresponding to this index */
	for (dev = bus->devs; ; dev = dev->next) {
		if (dev == NULL)
			return OSKIT_E_DEV_NOMORE_CHILDREN;
		if (idx-- == 0)
			break;
	}

	/* Return the device node and position string for this drive */
	*out_fdev = &dev->intf;
	sprintf(out_pos, "id%dlun%d", dev->dev->id, dev->dev->lun);
	return 0;
}

static OSKIT_COMDECL
bus_probe(oskit_scsibus_t *bus)
{
	/*
	 * The SCSI bus is probed when the SCSI host adaptor is found,
	 * and dynamic insertion/removal isn't supported,
	 * so we don't have to do anything here.
	 */
	return 0;
}

static struct oskit_scsibus_ops bus_ops = {
	bus_query,
	bus_addref,
	bus_release,
	bus_getinfo,
	bus_getdriver,
	bus_getchild,
	bus_probe
};

oskit_error_t
oskit_linux_scsi_probe(struct driver_struct *ds)
{
	struct scsi_driver_struct *sds = (struct scsi_driver_struct*)ds;
	struct Scsi_Host *host;
	oskit_error_t rc;
	int found;

	/*
	 * scsi_dev_init was already called by device_setup, which was
	 * called by oskit_linux_dev_init, which got called in
	 * oskit_linux_driver_register before we could be here.
	 *
	 * Initialize this driver if not done yet.
	 */
	if (sds->initialized)
		return 0;
	sds->initialized = 1;
	scsi_register_module(MODULE_SCSI_HA, &sds->tmpl);

	/* Add any detected SCSI host adaptors to the fdev device tree */
	found = 0;
	for (host = scsi_hostlist; host; host = host->next) {
		struct scsi_bus *bus;
		struct scsi_dev **devp;
		Scsi_Device *ldev;

		if (host->hostt != &sds->tmpl)
			continue;

		/* Create a device node for this host adaptor */
		/* XXX deal with multi-bus host adaptors */
		if ((bus = kmalloc(sizeof(*bus), 0)) == 0)
			return OSKIT_E_OUTOFMEMORY;
		bus->intf.ops = &bus_ops;
		bus->sds = sds;
		bus->host = host;
		bus->devs = NULL;
		rc = osenv_isabus_addchild(host->io_port,
				       (oskit_device_t*)bus);
		if (rc != 0)
			return rc;

		/* Create device sub-nodes for each of the devices found */
		devp = &bus->devs;
		for (ldev = host->host_queue; ldev; ldev = ldev->next) {
			struct scsi_dev *dev;
			int i;

			if (ldev->host != host)
				continue;

			/* Create a new device node */
			if ((dev = kmalloc(sizeof(*dev), 0)) == 0)
				return OSKIT_E_OUTOFMEMORY;
			dev->intf.ops = &dev_ops;
			dev->next = NULL;
			dev->dev = ldev;
			dev->bus = bus;

			/* Build the device information strings */
			memcpy(dev->model, ldev->model, 16);
			dev->model[16] = 0;
			for (i = 15; i >= 0; i--) {
				if (dev->model[i] > ' ')
					break;
				dev->model[i] = 0;
			}
			memcpy(dev->vendor, ldev->vendor, 8);
			dev->vendor[8] = 0;
			for (i = 7; i >= 0; i--) {
				if (dev->vendor[i] > ' ')
					break;
				dev->vendor[i] = 0;
			}

			/* See if we know about this particular device type */
			/* XXX would be better if the high-level drivers
			   could be separated out, later... */
			for (i = 0; i < sd_template.dev_max; i++) {
				if (rscsi_disks[i].device != ldev)
					continue;
				dev->intf.ops = (void*)&disk_ops;
				dev->devno = MKDEV(SCSI_DISK0_MAJOR, i << 4);
			}

			/* Hook this device onto the host adaptor's list */
			*devp = dev;
			devp = &dev->next;

			found++;
		}

		found++;
	}

	return found;
}

void
proc_print_scsidevice(Scsi_Device *scd, char *buffer, int *size, int len)
{
}