2 * Copyright (C) 2000 Benno Rice.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY Benno Rice ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
18 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
20 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
21 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
22 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
23 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 * $DragonFly: src/sys/boot/ofw/libofw/ofw_disk.c,v 1.1 2003/11/10 06:08:37 dillon Exp $
30 * Disk I/O routines using Open Firmware
33 #include <sys/param.h>
35 #include <netinet/in.h>
37 #include <machine/stdarg.h>
41 #include "bootstrap.h"
44 static int ofwd_init(void);
45 static int ofwd_strategy(void *devdata
, int flag
, daddr_t dblk
,
46 size_t size
, char *buf
, size_t *rsize
);
47 static int ofwd_open(struct open_file
*f
, ...);
48 static int ofwd_close(struct open_file
*f
);
49 static int ofwd_ioctl(struct open_file
*f
, u_long cmd
, void *data
);
50 static void ofwd_print(int verbose
);
52 struct devsw ofwdisk
= {
70 ofwd_strategy(void *devdata
, int flag
, daddr_t dblk
, size_t size
, char *buf
,
73 struct ofw_devdesc
*dp
= (struct ofw_devdesc
*)devdata
;
80 if (OF_seek(dp
->d_handle
, pos
) < 0)
82 n
= OF_read(dp
->d_handle
, buf
, size
);
91 ofwd_open(struct open_file
*f
, ...)
93 struct ofw_devdesc
*dp
;
98 dp
= va_arg(vl
, struct ofw_devdesc
*);
100 if ((handle
= OF_open(dp
->d_path
)) == -1) {
101 printf("ofwd_open: Could not open %s\n", dp
->d_path
);
104 dp
->d_handle
= handle
;
109 ofwd_close(struct open_file
*f
)
111 struct ofw_devdesc
*dev
= f
->f_devdata
;
113 OF_close(dev
->d_handle
);
118 ofwd_ioctl(struct open_file
*f
, u_long cmd
, void *data
)
125 ofwd_print(int verbose
)