2005-01-05 22:16:58 +00:00
|
|
|
/*-
|
2000-10-16 10:46:22 +00:00
|
|
|
* Copyright (C) 2000 Benno Rice.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY Benno Rice ``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 TOOLS GMBH 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.
|
|
|
|
*/
|
|
|
|
|
2004-01-04 23:30:47 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2000-10-16 10:46:22 +00:00
|
|
|
/*
|
|
|
|
* Disk I/O routines using Open Firmware
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
2005-10-25 12:51:49 +00:00
|
|
|
#include <sys/queue.h>
|
2000-10-16 10:46:22 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
2001-10-15 09:35:40 +00:00
|
|
|
#include <machine/stdarg.h>
|
|
|
|
|
2000-10-16 10:46:22 +00:00
|
|
|
#include <stand.h>
|
|
|
|
|
|
|
|
#include "bootstrap.h"
|
|
|
|
#include "libofw.h"
|
2001-10-15 09:35:40 +00:00
|
|
|
|
2000-10-16 10:46:22 +00:00
|
|
|
static int ofwd_init(void);
|
|
|
|
static int ofwd_strategy(void *devdata, int flag, daddr_t dblk,
|
|
|
|
size_t size, char *buf, size_t *rsize);
|
|
|
|
static int ofwd_open(struct open_file *f, ...);
|
|
|
|
static int ofwd_close(struct open_file *f);
|
2002-11-10 19:17:36 +00:00
|
|
|
static int ofwd_ioctl(struct open_file *f, u_long cmd, void *data);
|
2000-10-16 10:46:22 +00:00
|
|
|
static void ofwd_print(int verbose);
|
|
|
|
|
|
|
|
struct devsw ofwdisk = {
|
2002-11-10 19:17:36 +00:00
|
|
|
"block",
|
2000-10-16 10:46:22 +00:00
|
|
|
DEVT_DISK,
|
|
|
|
ofwd_init,
|
|
|
|
ofwd_strategy,
|
|
|
|
ofwd_open,
|
|
|
|
ofwd_close,
|
2002-11-10 19:17:36 +00:00
|
|
|
ofwd_ioctl,
|
2000-10-16 10:46:22 +00:00
|
|
|
ofwd_print
|
|
|
|
};
|
|
|
|
|
2005-10-25 12:51:49 +00:00
|
|
|
struct opened_dev {
|
|
|
|
ihandle_t handle;
|
|
|
|
u_int count;
|
|
|
|
SLIST_ENTRY(opened_dev) link;
|
|
|
|
};
|
|
|
|
|
|
|
|
SLIST_HEAD(, opened_dev) opened_devs = SLIST_HEAD_INITIALIZER(opened_dev);
|
|
|
|
|
2002-05-11 21:30:46 +00:00
|
|
|
static int
|
|
|
|
ofwd_init(void)
|
|
|
|
{
|
2005-10-25 12:51:49 +00:00
|
|
|
|
2002-05-11 21:30:46 +00:00
|
|
|
return 0;
|
2000-10-16 10:46:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ofwd_strategy(void *devdata, int flag, daddr_t dblk, size_t size, char *buf,
|
|
|
|
size_t *rsize)
|
|
|
|
{
|
2001-10-15 09:35:40 +00:00
|
|
|
struct ofw_devdesc *dp = (struct ofw_devdesc *)devdata;
|
2003-12-21 12:16:58 +00:00
|
|
|
daddr_t pos;
|
2001-10-15 09:35:40 +00:00
|
|
|
int n;
|
|
|
|
|
2002-11-10 19:17:36 +00:00
|
|
|
pos = dblk * 512;
|
2001-10-15 09:35:40 +00:00
|
|
|
do {
|
2002-11-10 19:17:36 +00:00
|
|
|
if (OF_seek(dp->d_handle, pos) < 0)
|
2001-10-15 09:35:40 +00:00
|
|
|
return EIO;
|
2002-11-10 19:17:36 +00:00
|
|
|
n = OF_read(dp->d_handle, buf, size);
|
|
|
|
if (n < 0 && n != -2)
|
2001-10-15 09:35:40 +00:00
|
|
|
return EIO;
|
|
|
|
} while (n == -2);
|
|
|
|
*rsize = size;
|
|
|
|
return 0;
|
2000-10-16 10:46:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ofwd_open(struct open_file *f, ...)
|
|
|
|
{
|
2005-10-25 12:51:49 +00:00
|
|
|
char path[256];
|
2001-10-15 09:35:40 +00:00
|
|
|
struct ofw_devdesc *dp;
|
2005-10-25 12:51:49 +00:00
|
|
|
struct opened_dev *odp;
|
2002-11-10 19:17:36 +00:00
|
|
|
va_list vl;
|
2001-10-15 09:35:40 +00:00
|
|
|
|
|
|
|
va_start(vl, f);
|
|
|
|
dp = va_arg(vl, struct ofw_devdesc *);
|
|
|
|
va_end(vl);
|
2005-10-25 12:51:49 +00:00
|
|
|
/*
|
|
|
|
* We're not guaranteed to be able to open a device more than once
|
|
|
|
* simultaneously and there is no OFW standard method to determine
|
|
|
|
* whether a device is already opened. Opening a device more than
|
|
|
|
* once happens to work with most OFW block device drivers but
|
|
|
|
* triggers a trap with at least the driver for the on-board SCSI
|
|
|
|
* controller in Sun Ultra 1. Upper layers and MI code expect to
|
|
|
|
* be able to open a device more than once however. As a workaround
|
|
|
|
* keep track of the opened devices and reuse the instance handle
|
|
|
|
* when asked to open an already opened device.
|
|
|
|
*/
|
|
|
|
SLIST_FOREACH(odp, &opened_devs, link) {
|
|
|
|
if (OF_instance_to_path(odp->handle, path, sizeof(path)) == -1)
|
|
|
|
continue;
|
|
|
|
if (strcmp(path, dp->d_path) == 0) {
|
|
|
|
odp->count++;
|
|
|
|
dp->d_handle = odp->handle;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
odp = malloc(sizeof(struct opened_dev));
|
|
|
|
if (odp == NULL) {
|
|
|
|
printf("ofwd_open: malloc failed\n");
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
if ((odp->handle = OF_open(dp->d_path)) == -1) {
|
2002-11-10 19:17:36 +00:00
|
|
|
printf("ofwd_open: Could not open %s\n", dp->d_path);
|
2005-10-25 12:51:49 +00:00
|
|
|
free(odp);
|
|
|
|
return ENOENT;
|
2001-10-15 09:35:40 +00:00
|
|
|
}
|
2005-10-25 12:51:49 +00:00
|
|
|
odp->count = 1;
|
|
|
|
SLIST_INSERT_HEAD(&opened_devs, odp, link);
|
|
|
|
dp->d_handle = odp->handle;
|
2002-02-15 13:09:34 +00:00
|
|
|
return 0;
|
2000-10-16 10:46:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ofwd_close(struct open_file *f)
|
|
|
|
{
|
2001-10-15 09:35:40 +00:00
|
|
|
struct ofw_devdesc *dev = f->f_devdata;
|
2005-10-25 12:51:49 +00:00
|
|
|
struct opened_dev *odp;
|
|
|
|
|
|
|
|
SLIST_FOREACH(odp, &opened_devs, link) {
|
|
|
|
if (odp->handle == dev->d_handle) {
|
|
|
|
odp->count--;
|
|
|
|
if (odp->count == 0) {
|
|
|
|
SLIST_REMOVE(&opened_devs, odp, opened_dev,
|
|
|
|
link);
|
|
|
|
OF_close(odp->handle);
|
|
|
|
free(odp);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-10-15 09:35:40 +00:00
|
|
|
return 0;
|
2000-10-16 10:46:22 +00:00
|
|
|
}
|
|
|
|
|
2002-11-10 19:17:36 +00:00
|
|
|
static int
|
|
|
|
ofwd_ioctl(struct open_file *f, u_long cmd, void *data)
|
2000-10-16 10:46:22 +00:00
|
|
|
{
|
2000-11-10 06:39:58 +00:00
|
|
|
|
2002-11-10 19:17:36 +00:00
|
|
|
return (EINVAL);
|
2000-10-16 10:46:22 +00:00
|
|
|
}
|
2000-11-10 06:39:58 +00:00
|
|
|
|
2002-11-10 19:17:36 +00:00
|
|
|
static void
|
|
|
|
ofwd_print(int verbose)
|
2000-11-10 06:39:58 +00:00
|
|
|
{
|
2005-10-25 12:51:49 +00:00
|
|
|
|
2000-11-10 06:39:58 +00:00
|
|
|
}
|