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