Home | History | Annotate | Line # | Download | only in boot
devopen.c revision 1.1.16.1
      1  1.1.16.1  nathanw /*	$NetBSD: devopen.c,v 1.1.16.1 2002/06/20 03:40:10 nathanw Exp $	*/
      2       1.1  tsutsui 
      3       1.1  tsutsui /*-
      4       1.1  tsutsui  * Copyright (C) 1999 Tsubai Masanari.  All rights reserved.
      5       1.1  tsutsui  *
      6       1.1  tsutsui  * Redistribution and use in source and binary forms, with or without
      7       1.1  tsutsui  * modification, are permitted provided that the following conditions
      8       1.1  tsutsui  * are met:
      9       1.1  tsutsui  * 1. Redistributions of source code must retain the above copyright
     10       1.1  tsutsui  *    notice, this list of conditions and the following disclaimer.
     11       1.1  tsutsui  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1  tsutsui  *    notice, this list of conditions and the following disclaimer in the
     13       1.1  tsutsui  *    documentation and/or other materials provided with the distribution.
     14       1.1  tsutsui  * 3. The name of the author may not be used to endorse or promote products
     15       1.1  tsutsui  *    derived from this software without specific prior written permission.
     16       1.1  tsutsui  *
     17       1.1  tsutsui  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     18       1.1  tsutsui  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     19       1.1  tsutsui  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     20       1.1  tsutsui  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     21       1.1  tsutsui  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     22       1.1  tsutsui  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     23       1.1  tsutsui  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     24       1.1  tsutsui  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     25       1.1  tsutsui  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     26       1.1  tsutsui  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27       1.1  tsutsui  */
     28       1.1  tsutsui 
     29       1.1  tsutsui #include <lib/libkern/libkern.h>
     30       1.1  tsutsui #include <lib/libsa/stand.h>
     31       1.1  tsutsui #include <lib/libsa/ufs.h>
     32  1.1.16.1  nathanw #include <lib/libsa/ustarfs.h>
     33       1.1  tsutsui 
     34       1.1  tsutsui #include <machine/romcall.h>
     35       1.1  tsutsui 
     36       1.1  tsutsui #ifdef BOOT_DEBUG
     37  1.1.16.1  nathanw # define DPRINTF(x) printf x
     38       1.1  tsutsui #else
     39  1.1.16.1  nathanw # define DPRINTF(x)
     40       1.1  tsutsui #endif
     41       1.1  tsutsui 
     42       1.1  tsutsui int dkopen __P((struct open_file *, ...));
     43       1.1  tsutsui int dkclose __P((struct open_file *));
     44       1.1  tsutsui int dkstrategy __P((void *, int, daddr_t, size_t, void *, size_t *));
     45       1.1  tsutsui 
     46       1.1  tsutsui struct devsw devsw[] = {
     47       1.1  tsutsui 	{ "dk", dkstrategy, dkopen, dkclose, noioctl }
     48       1.1  tsutsui };
     49       1.1  tsutsui int ndevs = sizeof(devsw) / sizeof(devsw[0]);
     50       1.1  tsutsui 
     51       1.1  tsutsui struct fs_ops file_system[] = {
     52  1.1.16.1  nathanw 	{ ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat },
     53  1.1.16.1  nathanw 	{ ustarfs_open, ustarfs_close, ustarfs_read, ustarfs_write,
     54  1.1.16.1  nathanw 	    ustarfs_seek, ustarfs_stat }
     55       1.1  tsutsui };
     56       1.1  tsutsui int nfsys = sizeof(file_system) / sizeof(file_system[0]);
     57       1.1  tsutsui 
     58       1.1  tsutsui struct romdev {
     59       1.1  tsutsui 	int fd;
     60       1.1  tsutsui } romdev;
     61       1.1  tsutsui 
     62       1.1  tsutsui int
     63       1.1  tsutsui devopen(f, fname, file)
     64       1.1  tsutsui 	struct open_file *f;
     65       1.1  tsutsui 	const char *fname;
     66       1.1  tsutsui 	char **file;	/* out */
     67       1.1  tsutsui {
     68       1.1  tsutsui 	int fd;
     69       1.1  tsutsui 	char devname[32];
     70       1.1  tsutsui 	char *cp;
     71       1.1  tsutsui 
     72  1.1.16.1  nathanw 	DPRINTF(("devopen: %s\n", fname));
     73       1.1  tsutsui 
     74       1.1  tsutsui 	strcpy(devname, fname);
     75       1.1  tsutsui 	cp = strchr(devname, ')') + 1;
     76       1.1  tsutsui 	*cp = 0;
     77       1.1  tsutsui 	fd = rom_open(devname, 0);
     78       1.1  tsutsui 
     79  1.1.16.1  nathanw 	DPRINTF(("devname = %s, fd = %d\n", devname, fd));
     80       1.1  tsutsui 	if (fd == -1)
     81       1.1  tsutsui 		return -1;
     82       1.1  tsutsui 
     83       1.1  tsutsui 	romdev.fd = fd;
     84       1.1  tsutsui 
     85       1.1  tsutsui 	f->f_dev = devsw;
     86       1.1  tsutsui 	f->f_devdata = &romdev;
     87       1.1  tsutsui 	*file = strchr(fname, ')') + 1;
     88       1.1  tsutsui 
     89       1.1  tsutsui 	return 0;
     90       1.1  tsutsui }
     91       1.1  tsutsui 
     92       1.1  tsutsui int
     93       1.1  tsutsui dkopen(struct open_file *f, ...)
     94       1.1  tsutsui {
     95  1.1.16.1  nathanw 	DPRINTF(("dkopen\n"));
     96       1.1  tsutsui 	return 0;
     97       1.1  tsutsui }
     98       1.1  tsutsui 
     99       1.1  tsutsui int
    100       1.1  tsutsui dkclose(f)
    101       1.1  tsutsui 	struct open_file *f;
    102       1.1  tsutsui {
    103       1.1  tsutsui 	struct romdev *dev = f->f_devdata;
    104       1.1  tsutsui 
    105  1.1.16.1  nathanw 	DPRINTF(("dkclose\n"));
    106       1.1  tsutsui 	rom_close(dev->fd);
    107       1.1  tsutsui 	return 0;
    108       1.1  tsutsui }
    109       1.1  tsutsui 
    110       1.1  tsutsui int
    111       1.1  tsutsui dkstrategy(devdata, rw, blk, size, buf, rsize)
    112       1.1  tsutsui 	void *devdata;
    113       1.1  tsutsui 	int rw;
    114       1.1  tsutsui 	daddr_t blk;
    115       1.1  tsutsui 	size_t size;
    116       1.1  tsutsui 	void *buf;
    117       1.1  tsutsui 	size_t *rsize;	/* out: number of bytes transfered */
    118       1.1  tsutsui {
    119       1.1  tsutsui 	struct romdev *dev = devdata;
    120       1.1  tsutsui 
    121       1.1  tsutsui 	/* XXX should use partition offset */
    122       1.1  tsutsui 
    123       1.1  tsutsui 	rom_lseek(dev->fd, blk * 512, 0);
    124       1.1  tsutsui 	rom_read(dev->fd, buf, size);
    125       1.1  tsutsui 	*rsize = size;
    126       1.1  tsutsui 	return 0;
    127       1.1  tsutsui }
    128