1 /* $NetBSD: diskio.c,v 1.7 2009/03/14 21:04:07 dsl Exp $ */
4 * Copyright (c) 1995 Waldi Ravens.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Waldi Ravens.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #include <lib/libsa/stand.h>
34 #include "atari_stand.h"
35 #include <sys/disklabel.h>
37 typedef int (*rdsec_f
)(void *buffer
, u_int offset
, u_int count
);
38 typedef struct { rdsec_f rds
; u_int rst
; u_int rend
; } bdevd_t
;
40 static int rootstrategy(void *, int, daddr_t
, size_t, void *, size_t *);
41 static int rootopen(struct open_file
*, ...);
42 static int rootclose(struct open_file
*);
43 static int rootioctl(struct open_file
*, u_long
, void *);
45 struct devsw devsw
[] = {
46 { "root", rootstrategy
, rootopen
, rootclose
, rootioctl
}
48 static bdevd_t bootdev
;
51 * Initialise boot device info.
54 init_dskio (void *func
, void *label
, int root
)
56 struct disklabel
*dl
= label
;
57 struct partition
*pd
= &dl
->d_partitions
[root
];
59 if (dl
->d_magic
!= DISKMAGIC
|| dl
->d_magic2
!= DISKMAGIC
60 || dl
->d_npartitions
> MAXPARTITIONS
|| dkcksum(dl
) != 0) {
61 printf("Invalid disk label.\n");
65 if (root
>= dl
->d_npartitions
66 || pd
->p_fstype
!= FS_BSDFFS
|| pd
->p_size
== 0) {
67 printf("No suitable root.\n");
71 bootdev
.rst
= pd
->p_offset
;
72 bootdev
.rend
= pd
->p_offset
+ pd
->p_size
- 1;
78 * No choice, the kernel is loaded from the
79 * same device as the bootstrap.
82 devopen (struct open_file
*f
, const char *fname
, char **file
)
84 f
->f_devdata
= &bootdev
;
86 *file
= (char *)fname
;
91 rootstrategy (void *devd
, int flag
, daddr_t dblk
, size_t size
, void *buf
, size_t *rsize
)
94 daddr_t stb
= dd
->rst
+ dblk
;
95 size_t nb
= size
>> 9;
97 if ((flag
== F_READ
) && !(size
& 511) && (stb
+ nb
<= dd
->rend
)) {
98 if (!dd
->rds(buf
, stb
, nb
)) {
108 rootopen (struct open_file
*f
, ...)
114 rootclose (struct open_file
*f
)
120 rootioctl (struct open_file
*f
, u_long cmd
, void *data
)