xref: /netbsd-src/sys/dev/ata/ata_raid_adaptec.c (revision 8b0f9554ff8762542c4defc4f70e1eb76fb508fa)
1 /*	$NetBSD: ata_raid_adaptec.c,v 1.6 2007/11/26 19:01:36 pooka Exp $	*/
2 
3 /*-
4  * Copyright (c) 2000,2001,2002 S�ren Schmidt <sos@FreeBSD.org>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer,
12  *    without modification, immediately at the beginning of the file.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 /*
32  * Support for parsing Adaptec ATA RAID controller configuration blocks.
33  *
34  * Adapted to NetBSD by Allen K. Briggs
35  */
36 
37 #include <sys/cdefs.h>
38 __KERNEL_RCSID(0, "$NetBSD: ata_raid_adaptec.c,v 1.6 2007/11/26 19:01:36 pooka Exp $");
39 
40 #include <sys/param.h>
41 #include <sys/buf.h>
42 #include <sys/bufq.h>
43 #include <sys/conf.h>
44 #include <sys/device.h>
45 #include <sys/disk.h>
46 #include <sys/disklabel.h>
47 #include <sys/fcntl.h>
48 #include <sys/malloc.h>
49 #include <sys/vnode.h>
50 #include <sys/kauth.h>
51 
52 #include <miscfs/specfs/specdev.h>
53 
54 #include <dev/ata/atareg.h>
55 #include <dev/ata/atavar.h>
56 #include <dev/ata/wdvar.h>
57 
58 #include <dev/ata/ata_raidreg.h>
59 #include <dev/ata/ata_raidvar.h>
60 
61 #ifdef ATA_RAID_DEBUG
62 #define	DPRINTF(x)	printf x
63 #else
64 #define	DPRINTF(x)	/* nothing */
65 #endif
66 
67 int
68 ata_raid_read_config_adaptec(struct wd_softc *sc)
69 {
70 	struct adaptec_raid_conf *info;
71 	struct atabus_softc *atabus;
72 	struct vnode *vp;
73 	int bmajor, error;
74 	dev_t dev;
75 	uint32_t gen, drive;
76 	struct ataraid_array_info *aai;
77 	struct ataraid_disk_info *adi;
78 
79 	info = malloc(sizeof(*info), M_DEVBUF, M_WAITOK);
80 
81 	bmajor = devsw_name2blk(sc->sc_dev.dv_xname, NULL, 0);
82 
83 	/* Get a vnode for the raw partition of this disk. */
84 	dev = MAKEDISKDEV(bmajor, device_unit(&sc->sc_dev), RAW_PART);
85 	error = bdevvp(dev, &vp);
86 	if (error)
87 		goto out;
88 
89 	error = VOP_OPEN(vp, FREAD, NOCRED);
90 	if (error) {
91 		vput(vp);
92 		goto out;
93 	}
94 
95 	error = ata_raid_config_block_rw(vp, ADP_LBA(sc), info,
96 	    sizeof(*info), B_READ);
97 	vput(vp);
98 	if (error) {
99 		printf("%s: error %d reading Adaptec config block\n",
100 		    sc->sc_dev.dv_xname, error);
101 		goto out;
102 	}
103 
104 	info->magic_0 = be32toh(info->magic_0);
105 	info->magic_1 = be32toh(info->magic_1);
106 	info->magic_2 = be32toh(info->magic_2);
107 	info->magic_3 = be32toh(info->magic_3);
108 	info->magic_4 = be32toh(info->magic_4);
109 	/* Check the signature. */
110 	if (info->magic_0 != ADP_MAGIC_0 || info->magic_3 != ADP_MAGIC_3) {
111 		DPRINTF(("%s: Adaptec signature check failed\n",
112 		    sc->sc_dev.dv_xname));
113 		error = ESRCH;
114 		goto out;
115 	}
116 
117 	/*
118 	 * Lookup or allocate a new array info structure for
119 	 * this array.
120 	 */
121 	aai = ata_raid_get_array_info(ATA_RAID_TYPE_ADAPTEC,
122 		be32toh(info->configs[0].disk_number));
123 
124 	gen = be32toh(info->generation);
125 
126 	if (gen == 0 || gen > aai->aai_generation) {
127 		aai->aai_generation = gen;
128 
129 		aai->aai_status = AAI_S_READY;
130 
131 		switch (info->configs[0].type) {
132 		case ADP_T_RAID0:
133 			aai->aai_level = AAI_L_RAID0;
134 			aai->aai_interleave =
135 			    (be16toh(info->configs[0].stripe_sectors) >> 1);
136 			aai->aai_width = be16toh(info->configs[0].total_disks);
137 			break;
138 
139 		case ADP_T_RAID1:
140 			aai->aai_level = AAI_L_RAID1;
141 			aai->aai_interleave = 0;
142 			aai->aai_width = be16toh(info->configs[0].total_disks)
143 			    / 2;
144 			break;
145 
146 		default:
147 			aprint_error("%s: unknown Adaptec RAID type 0x%02x\n",
148 			    sc->sc_dev.dv_xname, info->configs[0].type);
149 			error = EINVAL;
150 			goto out;
151 		}
152 
153 		aai->aai_type = ATA_RAID_TYPE_ADAPTEC;
154 		aai->aai_ndisks = be16toh(info->configs[0].total_disks);
155 		aai->aai_capacity = be32toh(info->configs[0].sectors);
156 		aai->aai_heads = 255;
157 		aai->aai_sectors = 63;
158 		aai->aai_cylinders = aai->aai_capacity / (63 * 255);
159 		aai->aai_offset = 0;
160 		aai->aai_reserved = 17;
161 
162 		/* XXX - bogus.  RAID1 shouldn't really have an interleave */
163 		if (aai->aai_interleave == 0)
164 			aai->aai_interleave = aai->aai_capacity;
165 	}
166 
167 	atabus = (struct atabus_softc *) device_parent(&sc->sc_dev);
168 	drive = atabus->sc_chan->ch_channel;
169 	if (drive >= aai->aai_ndisks) {
170 		aprint_error("%s: drive number %d doesn't make sense within "
171 		    "%d-disk array\n",
172 		    sc->sc_dev.dv_xname, drive, aai->aai_ndisks);
173 		error = EINVAL;
174 		goto out;
175 	}
176 
177 	adi = &aai->aai_disks[drive];
178 	adi->adi_dev = &sc->sc_dev;
179 	adi->adi_status = ADI_S_ONLINE | ADI_S_ASSIGNED;
180 	adi->adi_sectors = aai->aai_capacity;
181 	adi->adi_compsize = be32toh(info->configs[drive+1].sectors);
182 
183 	error = 0;
184 
185  out:
186 	free(info, M_DEVBUF);
187 	return (error);
188 }
189