Home | History | Annotate | Line # | Download | only in ofwboot
hfs.c revision 1.2.22.3
      1  1.2.22.3   skrll /*	$NetBSD: hfs.c,v 1.2.22.3 2004/09/21 13:18:30 skrll Exp $	*/
      2       1.1  tsubai 
      3       1.1  tsubai /*-
      4       1.1  tsubai  * Copyright (c) 2000 Tsubai Masanari.  All rights reserved.
      5       1.1  tsubai  *
      6       1.1  tsubai  * Redistribution and use in source and binary forms, with or without
      7       1.1  tsubai  * modification, are permitted provided that the following conditions
      8       1.1  tsubai  * are met:
      9       1.1  tsubai  * 1. Redistributions of source code must retain the above copyright
     10       1.1  tsubai  *    notice, this list of conditions and the following disclaimer.
     11       1.1  tsubai  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1  tsubai  *    notice, this list of conditions and the following disclaimer in the
     13       1.1  tsubai  *    documentation and/or other materials provided with the distribution.
     14       1.1  tsubai  * 3. The name of the author may not be used to endorse or promote products
     15       1.1  tsubai  *    derived from this software without specific prior written permission.
     16       1.1  tsubai  *
     17       1.1  tsubai  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     18       1.1  tsubai  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     19       1.1  tsubai  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     20       1.1  tsubai  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     21       1.1  tsubai  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     22       1.1  tsubai  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     23       1.1  tsubai  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     24       1.1  tsubai  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     25       1.1  tsubai  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     26       1.1  tsubai  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27       1.1  tsubai  */
     28       1.1  tsubai 
     29       1.1  tsubai #include <sys/param.h>
     30       1.1  tsubai #include <lib/libkern/libkern.h>
     31       1.1  tsubai #include <lib/libsa/stand.h>
     32       1.1  tsubai 
     33       1.1  tsubai #include <openfirm.h>
     34       1.1  tsubai #include <hfs.h>
     35       1.1  tsubai 
     36       1.1  tsubai static int OF_fd;	/* XXX */
     37       1.1  tsubai 
     38       1.1  tsubai int
     39  1.2.22.1   skrll hfs_open(const char *path, struct open_file *f)
     40       1.1  tsubai {
     41       1.1  tsubai 	int chosen;
     42       1.1  tsubai 	char bootpath[128], *cp;
     43       1.1  tsubai 
     44       1.1  tsubai 	if ((chosen = OF_finddevice("/chosen")) == -1)
     45       1.1  tsubai 		return ENXIO;
     46       1.2     wiz 	memset(bootpath, 0, sizeof bootpath);
     47       1.1  tsubai 	OF_getprop(chosen, "bootpath", bootpath, sizeof bootpath);
     48       1.1  tsubai 	cp = strrchr(bootpath, ',');
     49       1.1  tsubai 	if (cp == NULL)
     50       1.1  tsubai 		return ENXIO;
     51       1.1  tsubai 
     52       1.1  tsubai 	strcpy(cp + 1, path);
     53       1.1  tsubai 	OF_fd = OF_open(bootpath);
     54       1.1  tsubai 	if (OF_fd == -1)
     55       1.1  tsubai 		return ENOENT;
     56       1.1  tsubai 
     57       1.1  tsubai 	return 0;
     58       1.1  tsubai }
     59       1.1  tsubai 
     60       1.1  tsubai int
     61  1.2.22.1   skrll hfs_close(struct open_file *f)
     62       1.1  tsubai {
     63       1.1  tsubai 	OF_close(OF_fd);
     64       1.1  tsubai 	return 0;
     65       1.1  tsubai }
     66       1.1  tsubai 
     67       1.1  tsubai int
     68  1.2.22.1   skrll hfs_read(struct open_file *f, void *start, size_t size, size_t *resid)
     69       1.1  tsubai {
     70       1.1  tsubai 	int len;
     71       1.1  tsubai 
     72       1.1  tsubai 	len = OF_read(OF_fd, start, size);
     73       1.1  tsubai 	size -= len;
     74       1.1  tsubai 	if (resid)
     75       1.1  tsubai 		*resid = size;
     76       1.1  tsubai 	return 0;
     77       1.1  tsubai }
     78       1.1  tsubai 
     79       1.1  tsubai int
     80  1.2.22.1   skrll hfs_write(struct open_file *f, void *start, size_t size, size_t *resid)
     81       1.1  tsubai {
     82       1.1  tsubai 	printf("hfs_write\n");
     83       1.1  tsubai 	return ENXIO;
     84       1.1  tsubai }
     85       1.1  tsubai 
     86       1.1  tsubai off_t
     87  1.2.22.1   skrll hfs_seek(struct open_file *f, off_t offset, int where)
     88       1.1  tsubai {
     89       1.1  tsubai 	switch (where) {
     90       1.1  tsubai 	case SEEK_SET:
     91       1.1  tsubai 		return OF_seek(OF_fd, offset);
     92       1.1  tsubai 	case SEEK_CUR:
     93       1.1  tsubai 	case SEEK_END:
     94       1.1  tsubai 	default:
     95       1.1  tsubai 		return -1;
     96       1.1  tsubai 	}
     97       1.1  tsubai }
     98       1.1  tsubai 
     99       1.1  tsubai int
    100  1.2.22.1   skrll hfs_stat(struct open_file *f, struct stat *sb)
    101       1.1  tsubai {
    102       1.1  tsubai 	return 0;
    103       1.1  tsubai }
    104