2000-11-10 06:39: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>
|
|
|
|
|
|
|
|
#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
|
|
|
|
};
|
|
|
|
|
2002-05-11 21:30:46 +00:00
|
|
|
static int
|
|
|
|
ofwd_init(void)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
int i, j;
|
|
|
|
|
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, ...)
|
|
|
|
{
|
2001-10-15 09:35:40 +00:00
|
|
|
struct ofw_devdesc *dp;
|
2002-11-10 19:17:36 +00:00
|
|
|
phandle_t handle;
|
|
|
|
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);
|
2002-11-10 19:17:36 +00:00
|
|
|
if ((handle = OF_open(dp->d_path)) == -1) {
|
|
|
|
printf("ofwd_open: Could not open %s\n", dp->d_path);
|
2001-10-15 09:35:40 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2002-11-10 19:17:36 +00:00
|
|
|
dp->d_handle = 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;
|
|
|
|
|
2002-11-10 19:17:36 +00:00
|
|
|
OF_close(dev->d_handle);
|
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
|
|
|
{
|
|
|
|
}
|