wd.c revision 1.430 1 1.430 jdolecek /* $NetBSD: wd.c,v 1.430 2017/10/07 16:05:32 jdolecek Exp $ */
2 1.181 bouyer
3 1.181 bouyer /*
4 1.218 bouyer * Copyright (c) 1998, 2001 Manuel Bouyer. All rights reserved.
5 1.181 bouyer *
6 1.181 bouyer * Redistribution and use in source and binary forms, with or without
7 1.181 bouyer * modification, are permitted provided that the following conditions
8 1.181 bouyer * are met:
9 1.181 bouyer * 1. Redistributions of source code must retain the above copyright
10 1.181 bouyer * notice, this list of conditions and the following disclaimer.
11 1.181 bouyer * 2. Redistributions in binary form must reproduce the above copyright
12 1.181 bouyer * notice, this list of conditions and the following disclaimer in the
13 1.181 bouyer * documentation and/or other materials provided with the distribution.
14 1.181 bouyer *
15 1.181 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 1.181 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 1.181 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 1.259 dsl * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 1.181 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 1.181 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 1.181 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 1.181 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 1.181 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 1.181 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 1.181 bouyer */
26 1.100 cgd
27 1.178 mycroft /*-
28 1.280 mycroft * Copyright (c) 1998, 2003, 2004 The NetBSD Foundation, Inc.
29 1.178 mycroft * All rights reserved.
30 1.119 mycroft *
31 1.178 mycroft * This code is derived from software contributed to The NetBSD Foundation
32 1.178 mycroft * by Charles M. Hannum and by Onno van der Linden.
33 1.168 cgd *
34 1.113 mycroft * Redistribution and use in source and binary forms, with or without
35 1.113 mycroft * modification, are permitted provided that the following conditions
36 1.113 mycroft * are met:
37 1.113 mycroft * 1. Redistributions of source code must retain the above copyright
38 1.113 mycroft * notice, this list of conditions and the following disclaimer.
39 1.113 mycroft * 2. Redistributions in binary form must reproduce the above copyright
40 1.113 mycroft * notice, this list of conditions and the following disclaimer in the
41 1.113 mycroft * documentation and/or other materials provided with the distribution.
42 1.113 mycroft *
43 1.178 mycroft * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
44 1.178 mycroft * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
45 1.178 mycroft * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
46 1.178 mycroft * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
47 1.178 mycroft * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
48 1.178 mycroft * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
49 1.178 mycroft * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
50 1.178 mycroft * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
51 1.178 mycroft * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
52 1.178 mycroft * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
53 1.178 mycroft * POSSIBILITY OF SUCH DAMAGE.
54 1.1 cgd */
55 1.215 lukem
56 1.215 lukem #include <sys/cdefs.h>
57 1.430 jdolecek __KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.430 2017/10/07 16:05:32 jdolecek Exp $");
58 1.1 cgd
59 1.338 dyoung #include "opt_ata.h"
60 1.430 jdolecek #include "opt_wd.h"
61 1.181 bouyer
62 1.29 mycroft #include <sys/param.h>
63 1.29 mycroft #include <sys/systm.h>
64 1.43 mycroft #include <sys/kernel.h>
65 1.29 mycroft #include <sys/conf.h>
66 1.29 mycroft #include <sys/file.h>
67 1.29 mycroft #include <sys/stat.h>
68 1.29 mycroft #include <sys/ioctl.h>
69 1.29 mycroft #include <sys/buf.h>
70 1.296 yamt #include <sys/bufq.h>
71 1.29 mycroft #include <sys/uio.h>
72 1.29 mycroft #include <sys/malloc.h>
73 1.64 mycroft #include <sys/device.h>
74 1.94 mycroft #include <sys/disklabel.h>
75 1.94 mycroft #include <sys/disk.h>
76 1.29 mycroft #include <sys/syslog.h>
77 1.149 christos #include <sys/proc.h>
78 1.354 joerg #include <sys/reboot.h>
79 1.196 enami #include <sys/vnode.h>
80 1.419 riastrad #include <sys/rndsource.h>
81 1.29 mycroft
82 1.347 ad #include <sys/intr.h>
83 1.347 ad #include <sys/bus.h>
84 1.237 thorpej
85 1.181 bouyer #include <dev/ata/atareg.h>
86 1.181 bouyer #include <dev/ata/atavar.h>
87 1.181 bouyer #include <dev/ata/wdvar.h>
88 1.181 bouyer #include <dev/ic/wdcreg.h>
89 1.186 kenh #include <sys/ataio.h>
90 1.163 bouyer #include "locators.h"
91 1.1 cgd
92 1.330 thorpej #include <prop/proplib.h>
93 1.330 thorpej
94 1.430 jdolecek #define WDIORETRIES_SINGLE 4 /* number of retries for single-sector */
95 1.181 bouyer #define WDIORETRIES 5 /* number of retries before giving up */
96 1.181 bouyer #define RECOVERYTIME hz/2 /* time to wait before retrying a cmd */
97 1.23 deraadt
98 1.181 bouyer #define WDUNIT(dev) DISKUNIT(dev)
99 1.181 bouyer #define WDPART(dev) DISKPART(dev)
100 1.196 enami #define WDMINOR(unit, part) DISKMINOR(unit, part)
101 1.92 cgd #define MAKEWDDEV(maj, unit, part) MAKEDISKDEV(maj, unit, part)
102 1.92 cgd
103 1.92 cgd #define WDLABELDEV(dev) (MAKEWDDEV(major(dev), WDUNIT(dev), RAW_PART))
104 1.1 cgd
105 1.181 bouyer #define DEBUG_INTR 0x01
106 1.181 bouyer #define DEBUG_XFERS 0x02
107 1.181 bouyer #define DEBUG_STATUS 0x04
108 1.181 bouyer #define DEBUG_FUNCS 0x08
109 1.181 bouyer #define DEBUG_PROBE 0x10
110 1.289 thorpej #ifdef ATADEBUG
111 1.298 perry int wdcdebug_wd_mask = 0x0;
112 1.289 thorpej #define ATADEBUG_PRINT(args, level) \
113 1.181 bouyer if (wdcdebug_wd_mask & (level)) \
114 1.181 bouyer printf args
115 1.163 bouyer #else
116 1.289 thorpej #define ATADEBUG_PRINT(args, level)
117 1.163 bouyer #endif
118 1.181 bouyer
119 1.373 cegger int wdprobe(device_t, cfdata_t, void *);
120 1.373 cegger void wdattach(device_t, device_t, void *);
121 1.373 cegger int wddetach(device_t, int);
122 1.259 dsl int wdprint(void *, char *);
123 1.430 jdolecek void wdperror(const struct wd_softc *, struct ata_xfer *);
124 1.102 mycroft
125 1.388 jakllsch static void wdminphys(struct buf *);
126 1.388 jakllsch
127 1.376 dyoung static int wdlastclose(device_t);
128 1.384 dyoung static bool wd_suspend(device_t, const pmf_qual_t *);
129 1.353 jmcneill static int wd_standby(struct wd_softc *, int);
130 1.351 jmcneill
131 1.371 dyoung CFATTACH_DECL3_NEW(wd, sizeof(struct wd_softc),
132 1.375 dyoung wdprobe, wdattach, wddetach, NULL, NULL, NULL, DVF_DETACH_SHUTDOWN);
133 1.147 thorpej
134 1.167 thorpej extern struct cfdriver wd_cd;
135 1.108 mycroft
136 1.225 gehenna dev_type_open(wdopen);
137 1.225 gehenna dev_type_close(wdclose);
138 1.225 gehenna dev_type_read(wdread);
139 1.225 gehenna dev_type_write(wdwrite);
140 1.225 gehenna dev_type_ioctl(wdioctl);
141 1.225 gehenna dev_type_strategy(wdstrategy);
142 1.225 gehenna dev_type_dump(wddump);
143 1.225 gehenna dev_type_size(wdsize);
144 1.410 dholland static dev_type_discard(wddiscard);
145 1.225 gehenna
146 1.225 gehenna const struct bdevsw wd_bdevsw = {
147 1.407 dholland .d_open = wdopen,
148 1.407 dholland .d_close = wdclose,
149 1.407 dholland .d_strategy = wdstrategy,
150 1.407 dholland .d_ioctl = wdioctl,
151 1.407 dholland .d_dump = wddump,
152 1.407 dholland .d_psize = wdsize,
153 1.410 dholland .d_discard = wddiscard,
154 1.407 dholland .d_flag = D_DISK
155 1.225 gehenna };
156 1.225 gehenna
157 1.225 gehenna const struct cdevsw wd_cdevsw = {
158 1.407 dholland .d_open = wdopen,
159 1.407 dholland .d_close = wdclose,
160 1.407 dholland .d_read = wdread,
161 1.407 dholland .d_write = wdwrite,
162 1.407 dholland .d_ioctl = wdioctl,
163 1.407 dholland .d_stop = nostop,
164 1.407 dholland .d_tty = notty,
165 1.407 dholland .d_poll = nopoll,
166 1.407 dholland .d_mmap = nommap,
167 1.407 dholland .d_kqfilter = nokqfilter,
168 1.410 dholland .d_discard = wddiscard,
169 1.407 dholland .d_flag = D_DISK
170 1.225 gehenna };
171 1.225 gehenna
172 1.430 jdolecek /* #define WD_DUMP_NOT_TRUSTED if you just want to watch */
173 1.430 jdolecek static int wddoingadump = 0;
174 1.430 jdolecek static int wddumprecalibrated = 0;
175 1.430 jdolecek
176 1.185 kenh /*
177 1.185 kenh * Glue necessary to hook WDCIOCCOMMAND into physio
178 1.185 kenh */
179 1.185 kenh
180 1.185 kenh struct wd_ioctl {
181 1.185 kenh LIST_ENTRY(wd_ioctl) wi_list;
182 1.185 kenh struct buf wi_bp;
183 1.185 kenh struct uio wi_uio;
184 1.185 kenh struct iovec wi_iov;
185 1.186 kenh atareq_t wi_atareq;
186 1.185 kenh struct wd_softc *wi_softc;
187 1.185 kenh };
188 1.185 kenh
189 1.259 dsl struct wd_ioctl *wi_find(struct buf *);
190 1.259 dsl void wi_free(struct wd_ioctl *);
191 1.430 jdolecek struct wd_ioctl *wi_get(struct wd_softc *);
192 1.259 dsl void wdioctlstrategy(struct buf *);
193 1.259 dsl
194 1.259 dsl void wdgetdefaultlabel(struct wd_softc *, struct disklabel *);
195 1.259 dsl void wdgetdisklabel(struct wd_softc *);
196 1.430 jdolecek void wdstart(device_t);
197 1.430 jdolecek void wdstart1(struct wd_softc *, struct buf *, struct ata_xfer *);
198 1.430 jdolecek static void wdbiorestart(void *);
199 1.430 jdolecek void wddone(device_t, struct ata_xfer *);
200 1.423 jakllsch static void wd_params_to_properties(struct wd_softc *);
201 1.413 matt int wd_get_params(struct wd_softc *, uint8_t, struct ataparams *);
202 1.430 jdolecek int wd_flushcache(struct wd_softc *, int, bool);
203 1.410 dholland int wd_trim(struct wd_softc *, int, daddr_t, long);
204 1.357 drochner bool wd_shutdown(device_t, int);
205 1.108 mycroft
206 1.259 dsl int wd_getcache(struct wd_softc *, int *);
207 1.259 dsl int wd_setcache(struct wd_softc *, int);
208 1.248 bouyer
209 1.430 jdolecek static void wd_sysctl_attach(struct wd_softc *);
210 1.430 jdolecek static void wd_sysctl_detach(struct wd_softc *);
211 1.430 jdolecek
212 1.420 mlelstv struct dkdriver wddkdriver = {
213 1.420 mlelstv .d_strategy = wdstrategy,
214 1.420 mlelstv .d_minphys = wdminphys
215 1.420 mlelstv };
216 1.65 mycroft
217 1.170 leo #ifdef HAS_BAD144_HANDLING
218 1.259 dsl static void bad144intern(struct wd_softc *);
219 1.170 leo #endif
220 1.1 cgd
221 1.239 thorpej #define WD_QUIRK_SPLIT_MOD15_WRITE 0x0001 /* must split certain writes */
222 1.239 thorpej
223 1.327 lukem #define WD_QUIRK_FMT "\20\1SPLIT_MOD15_WRITE\2FORCE_LBA48"
224 1.327 lukem
225 1.239 thorpej /*
226 1.239 thorpej * Quirk table for IDE drives. Put more-specific matches first, since
227 1.389 jakllsch * a simple globing routine is used for matching.
228 1.239 thorpej */
229 1.239 thorpej static const struct wd_quirk {
230 1.239 thorpej const char *wdq_match; /* inquiry pattern to match */
231 1.239 thorpej int wdq_quirks; /* drive quirks */
232 1.239 thorpej } wd_quirk_table[] = {
233 1.239 thorpej /*
234 1.239 thorpej * Some Seagate S-ATA drives have a PHY which can get confused
235 1.239 thorpej * with the way data is packetized by some S-ATA controllers.
236 1.239 thorpej *
237 1.246 mason * The work-around is to split in two any write transfer whose
238 1.239 thorpej * sector count % 15 == 1 (assuming 512 byte sectors).
239 1.239 thorpej *
240 1.239 thorpej * XXX This is an incomplete list. There are at least a couple
241 1.239 thorpej * XXX more model numbers. If you have trouble with such transfers
242 1.239 thorpej * XXX (8K is the most common) on Seagate S-ATA drives, please
243 1.269 keihan * XXX notify thorpej (at) NetBSD.org.
244 1.389 jakllsch *
245 1.389 jakllsch * The ST360015AS has not yet been confirmed to have this
246 1.389 jakllsch * issue, however, it is the only other drive in the
247 1.389 jakllsch * Seagate Barracuda Serial ATA V family.
248 1.389 jakllsch *
249 1.239 thorpej */
250 1.239 thorpej { "ST3120023AS",
251 1.247 explorer WD_QUIRK_SPLIT_MOD15_WRITE },
252 1.247 explorer { "ST380023AS",
253 1.239 thorpej WD_QUIRK_SPLIT_MOD15_WRITE },
254 1.425 jakllsch { "ST360015AS",
255 1.389 jakllsch WD_QUIRK_SPLIT_MOD15_WRITE },
256 1.239 thorpej { NULL,
257 1.239 thorpej 0 }
258 1.239 thorpej };
259 1.239 thorpej
260 1.239 thorpej static const struct wd_quirk *
261 1.239 thorpej wd_lookup_quirks(const char *name)
262 1.239 thorpej {
263 1.239 thorpej const struct wd_quirk *wdq;
264 1.239 thorpej const char *estr;
265 1.239 thorpej
266 1.239 thorpej for (wdq = wd_quirk_table; wdq->wdq_match != NULL; wdq++) {
267 1.239 thorpej /*
268 1.239 thorpej * We only want exact matches (which include matches
269 1.239 thorpej * against globbing characters).
270 1.239 thorpej */
271 1.239 thorpej if (pmatch(name, wdq->wdq_match, &estr) == 2)
272 1.239 thorpej return (wdq);
273 1.239 thorpej }
274 1.239 thorpej return (NULL);
275 1.239 thorpej }
276 1.239 thorpej
277 1.1 cgd int
278 1.373 cegger wdprobe(device_t parent, cfdata_t match, void *aux)
279 1.1 cgd {
280 1.216 bouyer struct ata_device *adev = aux;
281 1.167 thorpej
282 1.216 bouyer if (adev == NULL)
283 1.181 bouyer return 0;
284 1.216 bouyer if (adev->adev_bustype->bustype_type != SCSIPI_BUSTYPE_ATA)
285 1.64 mycroft return 0;
286 1.181 bouyer
287 1.263 bouyer if (match->cf_loc[ATA_HLCF_DRIVE] != ATA_HLCF_DRIVE_DEFAULT &&
288 1.263 bouyer match->cf_loc[ATA_HLCF_DRIVE] != adev->adev_drv_data->drive)
289 1.74 mycroft return 0;
290 1.74 mycroft return 1;
291 1.74 mycroft }
292 1.64 mycroft
293 1.74 mycroft void
294 1.373 cegger wdattach(device_t parent, device_t self, void *aux)
295 1.74 mycroft {
296 1.360 cube struct wd_softc *wd = device_private(self);
297 1.216 bouyer struct ata_device *adev= aux;
298 1.74 mycroft int i, blank;
299 1.301 christos char tbuf[41], pbuf[9], c, *p, *q;
300 1.239 thorpej const struct wd_quirk *wdq;
301 1.350 itohy
302 1.360 cube wd->sc_dev = self;
303 1.360 cube
304 1.289 thorpej ATADEBUG_PRINT(("wdattach\n"), DEBUG_FUNCS | DEBUG_PROBE);
305 1.430 jdolecek mutex_init(&wd->sc_lock, MUTEX_DEFAULT, IPL_BIO);
306 1.312 yamt bufq_alloc(&wd->sc_q, BUFQ_DISK_DEFAULT_STRAT, BUFQ_SORT_RAWBLOCK);
307 1.292 drochner #ifdef WD_SOFTBADSECT
308 1.241 darrenr SLIST_INIT(&wd->sc_bslist);
309 1.292 drochner #endif
310 1.217 bouyer wd->atabus = adev->adev_bustype;
311 1.235 simonb wd->drvp = adev->adev_drv_data;
312 1.270 thorpej
313 1.430 jdolecek wd->drvp->drv_openings = 1;
314 1.430 jdolecek wd->drvp->drv_start = wdstart;
315 1.270 thorpej wd->drvp->drv_done = wddone;
316 1.400 bouyer wd->drvp->drv_softc = wd->sc_dev; /* done in atabusconfig_thread()
317 1.400 bouyer but too late */
318 1.181 bouyer
319 1.253 thorpej aprint_naive("\n");
320 1.386 enami aprint_normal("\n");
321 1.253 thorpej
322 1.181 bouyer /* read our drive info */
323 1.261 mycroft if (wd_get_params(wd, AT_WAIT, &wd->sc_params) != 0) {
324 1.386 enami aprint_error_dev(self, "IDENTIFY failed\n");
325 1.400 bouyer goto out;
326 1.181 bouyer }
327 1.163 bouyer
328 1.301 christos for (blank = 0, p = wd->sc_params.atap_model, q = tbuf, i = 0;
329 1.181 bouyer i < sizeof(wd->sc_params.atap_model); i++) {
330 1.135 mycroft c = *p++;
331 1.135 mycroft if (c == '\0')
332 1.135 mycroft break;
333 1.135 mycroft if (c != ' ') {
334 1.135 mycroft if (blank) {
335 1.135 mycroft *q++ = ' ';
336 1.135 mycroft blank = 0;
337 1.135 mycroft }
338 1.135 mycroft *q++ = c;
339 1.135 mycroft } else
340 1.135 mycroft blank = 1;
341 1.195 enami }
342 1.135 mycroft *q++ = '\0';
343 1.135 mycroft
344 1.386 enami aprint_normal_dev(self, "<%s>\n", tbuf);
345 1.113 mycroft
346 1.301 christos wdq = wd_lookup_quirks(tbuf);
347 1.239 thorpej if (wdq != NULL)
348 1.239 thorpej wd->sc_quirks = wdq->wdq_quirks;
349 1.239 thorpej
350 1.327 lukem if (wd->sc_quirks != 0) {
351 1.327 lukem char sbuf[sizeof(WD_QUIRK_FMT) + 64];
352 1.366 christos snprintb(sbuf, sizeof(sbuf), WD_QUIRK_FMT, wd->sc_quirks);
353 1.360 cube aprint_normal_dev(self, "quirks %s\n", sbuf);
354 1.429 jdolecek
355 1.429 jdolecek if (wd->sc_quirks & WD_QUIRK_SPLIT_MOD15_WRITE) {
356 1.429 jdolecek aprint_error_dev(self, "drive corrupts write transfers with certain controllers, consider replacing\n");
357 1.429 jdolecek }
358 1.327 lukem }
359 1.327 lukem
360 1.181 bouyer if ((wd->sc_params.atap_multi & 0xff) > 1) {
361 1.430 jdolecek wd->drvp->multi = wd->sc_params.atap_multi & 0xff;
362 1.113 mycroft } else {
363 1.430 jdolecek wd->drvp->multi = 1;
364 1.113 mycroft }
365 1.113 mycroft
366 1.360 cube aprint_verbose_dev(self, "drive supports %d-sector PIO transfers,",
367 1.430 jdolecek wd->drvp->multi);
368 1.172 mycroft
369 1.220 christos /* 48-bit LBA addressing */
370 1.268 yamt if ((wd->sc_params.atap_cmd2_en & ATA_CMD2_LBA48) != 0)
371 1.220 christos wd->sc_flags |= WDF_LBA48;
372 1.220 christos
373 1.172 mycroft /* Prior to ATA-4, LBA was optional. */
374 1.181 bouyer if ((wd->sc_params.atap_capabilities1 & WDC_CAP_LBA) != 0)
375 1.181 bouyer wd->sc_flags |= WDF_LBA;
376 1.174 mycroft #if 0
377 1.172 mycroft /* ATA-4 requires LBA. */
378 1.181 bouyer if (wd->sc_params.atap_ataversion != 0xffff &&
379 1.181 bouyer wd->sc_params.atap_ataversion >= WDC_VER_ATA4)
380 1.181 bouyer wd->sc_flags |= WDF_LBA;
381 1.174 mycroft #endif
382 1.172 mycroft
383 1.220 christos if ((wd->sc_flags & WDF_LBA48) != 0) {
384 1.336 ad aprint_verbose(" LBA48 addressing\n");
385 1.220 christos wd->sc_capacity =
386 1.413 matt ((uint64_t) wd->sc_params.atap_max_lba[3] << 48) |
387 1.413 matt ((uint64_t) wd->sc_params.atap_max_lba[2] << 32) |
388 1.413 matt ((uint64_t) wd->sc_params.atap_max_lba[1] << 16) |
389 1.413 matt ((uint64_t) wd->sc_params.atap_max_lba[0] << 0);
390 1.380 bouyer wd->sc_capacity28 =
391 1.380 bouyer (wd->sc_params.atap_capacity[1] << 16) |
392 1.380 bouyer wd->sc_params.atap_capacity[0];
393 1.220 christos } else if ((wd->sc_flags & WDF_LBA) != 0) {
394 1.336 ad aprint_verbose(" LBA addressing\n");
395 1.380 bouyer wd->sc_capacity28 = wd->sc_capacity =
396 1.380 bouyer (wd->sc_params.atap_capacity[1] << 16) |
397 1.181 bouyer wd->sc_params.atap_capacity[0];
398 1.172 mycroft } else {
399 1.336 ad aprint_verbose(" chs addressing\n");
400 1.380 bouyer wd->sc_capacity28 = wd->sc_capacity =
401 1.181 bouyer wd->sc_params.atap_cylinders *
402 1.181 bouyer wd->sc_params.atap_heads *
403 1.181 bouyer wd->sc_params.atap_sectors;
404 1.172 mycroft }
405 1.424 jakllsch if ((wd->sc_params.atap_secsz & ATA_SECSZ_VALID_MASK) == ATA_SECSZ_VALID
406 1.424 jakllsch && ((wd->sc_params.atap_secsz & ATA_SECSZ_LLS) != 0)) {
407 1.424 jakllsch wd->sc_blksize = 2ULL *
408 1.426 christos ((uint32_t)((wd->sc_params.atap_lls_secsz[1] << 16) |
409 1.426 christos wd->sc_params.atap_lls_secsz[0]));
410 1.424 jakllsch } else {
411 1.424 jakllsch wd->sc_blksize = 512;
412 1.424 jakllsch }
413 1.424 jakllsch wd->sc_capacity512 = (wd->sc_capacity * wd->sc_blksize) / DEV_BSIZE;
414 1.424 jakllsch format_bytes(pbuf, sizeof(pbuf), wd->sc_capacity * wd->sc_blksize);
415 1.360 cube aprint_normal_dev(self, "%s, %d cyl, %d head, %d sec, "
416 1.240 fvdl "%d bytes/sect x %llu sectors\n",
417 1.360 cube pbuf,
418 1.260 bouyer (wd->sc_flags & WDF_LBA) ? (int)(wd->sc_capacity /
419 1.260 bouyer (wd->sc_params.atap_heads * wd->sc_params.atap_sectors)) :
420 1.260 bouyer wd->sc_params.atap_cylinders,
421 1.201 enami wd->sc_params.atap_heads, wd->sc_params.atap_sectors,
422 1.424 jakllsch wd->sc_blksize, (unsigned long long)wd->sc_capacity);
423 1.201 enami
424 1.289 thorpej ATADEBUG_PRINT(("%s: atap_dmatiming_mimi=%d, atap_dmatiming_recom=%d\n",
425 1.360 cube device_xname(self), wd->sc_params.atap_dmatiming_mimi,
426 1.181 bouyer wd->sc_params.atap_dmatiming_recom), DEBUG_PROBE);
427 1.424 jakllsch
428 1.424 jakllsch if (wd->sc_blksize <= 0 || !powerof2(wd->sc_blksize) ||
429 1.424 jakllsch wd->sc_blksize < DEV_BSIZE || wd->sc_blksize > MAXPHYS) {
430 1.424 jakllsch aprint_normal_dev(self, "WARNING: block size %u "
431 1.424 jakllsch "might not actually work\n", wd->sc_blksize);
432 1.424 jakllsch }
433 1.430 jdolecek
434 1.400 bouyer out:
435 1.181 bouyer /*
436 1.181 bouyer * Initialize and attach the disk structure.
437 1.181 bouyer */
438 1.332 thorpej /* we fill in dk_info later */
439 1.360 cube disk_init(&wd->sc_dk, device_xname(wd->sc_dev), &wddkdriver);
440 1.181 bouyer disk_attach(&wd->sc_dk);
441 1.430 jdolecek wd->drvp->lp = wd->sc_dk.dk_label;
442 1.423 jakllsch wd_params_to_properties(wd);
443 1.360 cube rnd_attach_source(&wd->rnd_source, device_xname(wd->sc_dev),
444 1.412 tls RND_TYPE_DISK, RND_FLAG_DEFAULT);
445 1.294 thorpej
446 1.294 thorpej /* Discover wedges on this disk. */
447 1.294 thorpej dkwedge_discover(&wd->sc_dk);
448 1.351 jmcneill
449 1.357 drochner if (!pmf_device_register1(self, wd_suspend, NULL, wd_shutdown))
450 1.351 jmcneill aprint_error_dev(self, "couldn't establish power handler\n");
451 1.430 jdolecek
452 1.430 jdolecek wd_sysctl_attach(wd);
453 1.351 jmcneill }
454 1.351 jmcneill
455 1.351 jmcneill static bool
456 1.384 dyoung wd_suspend(device_t dv, const pmf_qual_t *qual)
457 1.351 jmcneill {
458 1.351 jmcneill struct wd_softc *sc = device_private(dv);
459 1.351 jmcneill
460 1.406 drochner /* the adapter needs to be enabled */
461 1.406 drochner if (sc->atabus->ata_addref(sc->drvp))
462 1.406 drochner return true; /* no need to complain */
463 1.406 drochner
464 1.430 jdolecek wd_flushcache(sc, AT_WAIT, false);
465 1.356 drochner wd_standby(sc, AT_WAIT);
466 1.406 drochner
467 1.406 drochner sc->atabus->ata_delref(sc->drvp);
468 1.351 jmcneill return true;
469 1.196 enami }
470 1.196 enami
471 1.196 enami int
472 1.373 cegger wddetach(device_t self, int flags)
473 1.196 enami {
474 1.360 cube struct wd_softc *sc = device_private(self);
475 1.430 jdolecek int bmaj, cmaj, i, mn, rc;
476 1.374 dyoung
477 1.377 dyoung if ((rc = disk_begindetach(&sc->sc_dk, wdlastclose, self, flags)) != 0)
478 1.374 dyoung return rc;
479 1.196 enami
480 1.196 enami /* locate the major number */
481 1.225 gehenna bmaj = bdevsw_lookup_major(&wd_bdevsw);
482 1.225 gehenna cmaj = cdevsw_lookup_major(&wd_cdevsw);
483 1.196 enami
484 1.286 mycroft /* Nuke the vnodes for any open instances. */
485 1.286 mycroft for (i = 0; i < MAXPARTITIONS; i++) {
486 1.321 thorpej mn = WDMINOR(device_unit(self), i);
487 1.286 mycroft vdevgone(bmaj, mn, mn, VBLK);
488 1.286 mycroft vdevgone(cmaj, mn, mn, VCHR);
489 1.286 mycroft }
490 1.286 mycroft
491 1.294 thorpej /* Delete all of our wedges. */
492 1.294 thorpej dkwedge_delall(&sc->sc_dk);
493 1.294 thorpej
494 1.430 jdolecek mutex_enter(&sc->sc_lock);
495 1.196 enami
496 1.259 dsl /* Kill off any queued buffers. */
497 1.312 yamt bufq_drain(sc->sc_q);
498 1.224 hannken
499 1.285 bouyer sc->atabus->ata_killpending(sc->drvp);
500 1.430 jdolecek mutex_exit(&sc->sc_lock);
501 1.430 jdolecek
502 1.421 bouyer if (flags & DETACH_POWEROFF)
503 1.421 bouyer wd_standby(sc, AT_POLL);
504 1.196 enami
505 1.427 pgoyette bufq_free(sc->sc_q);
506 1.196 enami
507 1.196 enami /* Detach disk. */
508 1.196 enami disk_detach(&sc->sc_dk);
509 1.362 plunky disk_destroy(&sc->sc_dk);
510 1.196 enami
511 1.292 drochner #ifdef WD_SOFTBADSECT
512 1.282 bouyer /* Clean out the bad sector list */
513 1.282 bouyer while (!SLIST_EMPTY(&sc->sc_bslist)) {
514 1.282 bouyer void *head = SLIST_FIRST(&sc->sc_bslist);
515 1.282 bouyer SLIST_REMOVE_HEAD(&sc->sc_bslist, dbs_next);
516 1.282 bouyer free(head, M_TEMP);
517 1.282 bouyer }
518 1.282 bouyer sc->sc_bscount = 0;
519 1.292 drochner #endif
520 1.282 bouyer
521 1.351 jmcneill pmf_device_deregister(self);
522 1.196 enami
523 1.430 jdolecek wd_sysctl_detach(sc);
524 1.430 jdolecek
525 1.196 enami /* Unhook the entropy source. */
526 1.196 enami rnd_detach_source(&sc->rnd_source);
527 1.196 enami
528 1.430 jdolecek mutex_destroy(&sc->sc_lock);
529 1.364 dyoung
530 1.400 bouyer sc->drvp->drive_type = ATA_DRIVET_NONE; /* no drive any more here */
531 1.400 bouyer sc->drvp->drive_flags = 0;
532 1.283 bouyer
533 1.196 enami return (0);
534 1.1 cgd }
535 1.1 cgd
536 1.64 mycroft /*
537 1.135 mycroft * Read/write routine for a buffer. Validates the arguments and schedules the
538 1.135 mycroft * transfer. Does not wait for the transfer to complete.
539 1.1 cgd */
540 1.64 mycroft void
541 1.259 dsl wdstrategy(struct buf *bp)
542 1.1 cgd {
543 1.360 cube struct wd_softc *wd =
544 1.363 tsutsui device_lookup_private(&wd_cd, WDUNIT(bp->b_dev));
545 1.202 thorpej struct disklabel *lp = wd->sc_dk.dk_label;
546 1.202 thorpej daddr_t blkno;
547 1.202 thorpej
548 1.360 cube ATADEBUG_PRINT(("wdstrategy (%s)\n", device_xname(wd->sc_dev)),
549 1.182 bouyer DEBUG_XFERS);
550 1.259 dsl
551 1.135 mycroft /* Valid request? */
552 1.135 mycroft if (bp->b_blkno < 0 ||
553 1.202 thorpej (bp->b_bcount % lp->d_secsize) != 0 ||
554 1.202 thorpej (bp->b_bcount / lp->d_secsize) >= (1 << NBBY)) {
555 1.1 cgd bp->b_error = EINVAL;
556 1.342 ad goto done;
557 1.1 cgd }
558 1.259 dsl
559 1.375 dyoung /* If device invalidated (e.g. media change, door open,
560 1.385 dyoung * device detachment), then error.
561 1.375 dyoung */
562 1.385 dyoung if ((wd->sc_flags & WDF_LOADED) == 0 ||
563 1.385 dyoung !device_is_enabled(wd->sc_dev)) {
564 1.135 mycroft bp->b_error = EIO;
565 1.342 ad goto done;
566 1.135 mycroft }
567 1.135 mycroft
568 1.93 mycroft /* If it's a null transfer, return immediately. */
569 1.93 mycroft if (bp->b_bcount == 0)
570 1.93 mycroft goto done;
571 1.93 mycroft
572 1.128 mycroft /*
573 1.128 mycroft * Do bounds checking, adjust transfer. if error, process.
574 1.128 mycroft * If end of partition, just return.
575 1.128 mycroft */
576 1.240 fvdl if (WDPART(bp->b_dev) == RAW_PART) {
577 1.240 fvdl if (bounds_check_with_mediasize(bp, DEV_BSIZE,
578 1.424 jakllsch wd->sc_capacity512) <= 0)
579 1.240 fvdl goto done;
580 1.240 fvdl } else {
581 1.252 thorpej if (bounds_check_with_label(&wd->sc_dk, bp,
582 1.240 fvdl (wd->sc_flags & (WDF_WLABEL|WDF_LABELLING)) != 0) <= 0)
583 1.240 fvdl goto done;
584 1.240 fvdl }
585 1.202 thorpej
586 1.202 thorpej /*
587 1.202 thorpej * Now convert the block number to absolute and put it in
588 1.202 thorpej * terms of the device's logical block size.
589 1.202 thorpej */
590 1.202 thorpej if (lp->d_secsize >= DEV_BSIZE)
591 1.202 thorpej blkno = bp->b_blkno / (lp->d_secsize / DEV_BSIZE);
592 1.202 thorpej else
593 1.202 thorpej blkno = bp->b_blkno * (DEV_BSIZE / lp->d_secsize);
594 1.202 thorpej
595 1.202 thorpej if (WDPART(bp->b_dev) != RAW_PART)
596 1.202 thorpej blkno += lp->d_partitions[WDPART(bp->b_dev)].p_offset;
597 1.202 thorpej
598 1.202 thorpej bp->b_rawblkno = blkno;
599 1.202 thorpej
600 1.292 drochner #ifdef WD_SOFTBADSECT
601 1.241 darrenr /*
602 1.241 darrenr * If the transfer about to be attempted contains only a block that
603 1.241 darrenr * is known to be bad then return an error for the transfer without
604 1.241 darrenr * even attempting to start a transfer up under the premis that we
605 1.241 darrenr * will just end up doing more retries for a transfer that will end
606 1.241 darrenr * up failing again.
607 1.241 darrenr */
608 1.241 darrenr if (__predict_false(!SLIST_EMPTY(&wd->sc_bslist))) {
609 1.241 darrenr struct disk_badsectors *dbs;
610 1.424 jakllsch daddr_t maxblk = blkno + (bp->b_bcount / wd->sc_blksize) - 1;
611 1.241 darrenr
612 1.430 jdolecek mutex_enter(&wd->sc_lock);
613 1.241 darrenr SLIST_FOREACH(dbs, &wd->sc_bslist, dbs_next)
614 1.243 darrenr if ((dbs->dbs_min <= blkno && blkno <= dbs->dbs_max) ||
615 1.245 darrenr (dbs->dbs_min <= maxblk && maxblk <= dbs->dbs_max)){
616 1.245 darrenr bp->b_error = EIO;
617 1.430 jdolecek mutex_exit(&wd->sc_lock);
618 1.343 taca goto done;
619 1.245 darrenr }
620 1.430 jdolecek mutex_exit(&wd->sc_lock);
621 1.241 darrenr }
622 1.292 drochner #endif
623 1.241 darrenr
624 1.64 mycroft /* Queue transfer on drive, activate drive and controller if idle. */
625 1.430 jdolecek mutex_enter(&wd->sc_lock);
626 1.428 mlelstv disk_wait(&wd->sc_dk);
627 1.367 yamt bufq_put(wd->sc_q, bp);
628 1.430 jdolecek mutex_exit(&wd->sc_lock);
629 1.430 jdolecek
630 1.430 jdolecek /* Try to queue on the current drive only */
631 1.430 jdolecek wdstart(wd->sc_dev);
632 1.64 mycroft return;
633 1.1 cgd done:
634 1.64 mycroft /* Toss transfer; we're done early. */
635 1.135 mycroft bp->b_resid = bp->b_bcount;
636 1.1 cgd biodone(bp);
637 1.1 cgd }
638 1.1 cgd
639 1.1 cgd /*
640 1.135 mycroft * Queue a drive for I/O.
641 1.1 cgd */
642 1.108 mycroft void
643 1.430 jdolecek wdstart(device_t self)
644 1.1 cgd {
645 1.430 jdolecek struct wd_softc *wd = device_private(self);
646 1.430 jdolecek struct buf *bp;
647 1.430 jdolecek struct ata_xfer *xfer;
648 1.163 bouyer
649 1.360 cube ATADEBUG_PRINT(("wdstart %s\n", device_xname(wd->sc_dev)),
650 1.182 bouyer DEBUG_XFERS);
651 1.385 dyoung
652 1.385 dyoung if (!device_is_active(wd->sc_dev))
653 1.385 dyoung return;
654 1.385 dyoung
655 1.430 jdolecek mutex_enter(&wd->sc_lock);
656 1.163 bouyer
657 1.430 jdolecek /*
658 1.430 jdolecek * Do not queue any transfers until flush is finished, so that
659 1.430 jdolecek * once flush is pending, it will get handled as soon as xfer
660 1.430 jdolecek * is available.
661 1.430 jdolecek */
662 1.430 jdolecek if (ISSET(wd->sc_flags, WDF_FLUSH_PEND))
663 1.430 jdolecek goto out;
664 1.430 jdolecek
665 1.430 jdolecek while (bufq_peek(wd->sc_q) != NULL) {
666 1.430 jdolecek /* First try to get xfer. Limit to drive openings iff NCQ. */
667 1.430 jdolecek xfer = ata_get_xfer_ext(wd->drvp->chnl_softc, 0,
668 1.430 jdolecek WD_USE_NCQ(wd) ? WD_MAX_OPENINGS(wd) : 0);
669 1.430 jdolecek if (xfer == NULL)
670 1.430 jdolecek break;
671 1.259 dsl
672 1.430 jdolecek /* There is got to be a buf for us */
673 1.430 jdolecek bp = bufq_get(wd->sc_q);
674 1.430 jdolecek KASSERT(bp != NULL);
675 1.181 bouyer
676 1.430 jdolecek xfer->c_retries = 0;
677 1.430 jdolecek wdstart1(wd, bp, xfer);
678 1.181 bouyer }
679 1.430 jdolecek
680 1.430 jdolecek out:
681 1.430 jdolecek mutex_exit(&wd->sc_lock);
682 1.181 bouyer }
683 1.181 bouyer
684 1.181 bouyer void
685 1.430 jdolecek wdstart1(struct wd_softc *wd, struct buf *bp, struct ata_xfer *xfer)
686 1.181 bouyer {
687 1.430 jdolecek /* must be locked on entry */
688 1.430 jdolecek KASSERT(mutex_owned(&wd->sc_lock));
689 1.430 jdolecek
690 1.430 jdolecek KASSERT(bp == xfer->c_bio.bp || xfer->c_bio.bp == NULL);
691 1.430 jdolecek KASSERT((xfer->c_flags & (C_WAITACT|C_FREE)) == 0);
692 1.430 jdolecek
693 1.430 jdolecek /* Reset state, so that retries don't use stale info */
694 1.430 jdolecek if (__predict_false(xfer->c_retries > 0)) {
695 1.430 jdolecek xfer->c_flags = 0;
696 1.430 jdolecek memset(&xfer->c_bio, 0, sizeof(xfer->c_bio));
697 1.430 jdolecek }
698 1.430 jdolecek
699 1.430 jdolecek xfer->c_bio.blkno = bp->b_rawblkno;
700 1.430 jdolecek xfer->c_bio.bcount = bp->b_bcount;
701 1.430 jdolecek xfer->c_bio.databuf = bp->b_data;
702 1.430 jdolecek xfer->c_bio.blkdone = 0;
703 1.430 jdolecek xfer->c_bio.bp = bp;
704 1.430 jdolecek
705 1.430 jdolecek #ifdef WD_CHAOS_MONKEY
706 1.430 jdolecek /*
707 1.430 jdolecek * Override blkno to be over device capacity to trigger error,
708 1.430 jdolecek * but only if it's read, to avoid trashing disk contents should
709 1.430 jdolecek * the command be clipped, or otherwise misinterpreted, by the
710 1.430 jdolecek * driver or controller.
711 1.430 jdolecek */
712 1.430 jdolecek if (BUF_ISREAD(bp) && xfer->c_retries == 0 && wd->drv_chaos_freq > 0 &&
713 1.430 jdolecek (++wd->drv_chaos_cnt % wd->drv_chaos_freq) == 0) {
714 1.430 jdolecek aprint_normal_dev(wd->sc_dev, "%s: chaos xfer %d\n",
715 1.430 jdolecek __func__, xfer->c_slot);
716 1.430 jdolecek xfer->c_bio.blkno = 7777777 + wd->sc_capacity;
717 1.430 jdolecek xfer->c_flags |= C_CHAOS;
718 1.430 jdolecek }
719 1.430 jdolecek #endif
720 1.202 thorpej
721 1.181 bouyer /*
722 1.181 bouyer * If we're retrying, retry in single-sector mode. This will give us
723 1.181 bouyer * the sector number of the problem, and will eventually allow the
724 1.430 jdolecek * transfer to succeed. If FUA is requested, we can't actually
725 1.430 jdolecek * do this, as ATA_SINGLE is usually executed as PIO transfer by drivers
726 1.430 jdolecek * which support it, and that isn't compatible with NCQ/FUA.
727 1.181 bouyer */
728 1.430 jdolecek if (xfer->c_retries >= WDIORETRIES_SINGLE &&
729 1.430 jdolecek (bp->b_flags & B_MEDIA_FUA) == 0)
730 1.430 jdolecek xfer->c_bio.flags = ATA_SINGLE;
731 1.181 bouyer else
732 1.430 jdolecek xfer->c_bio.flags = 0;
733 1.295 bouyer if (wd->sc_flags & WDF_LBA48 &&
734 1.430 jdolecek (((xfer->c_bio.blkno +
735 1.430 jdolecek xfer->c_bio.bcount / wd->sc_dk.dk_label->d_secsize) >
736 1.430 jdolecek wd->sc_capacity28) ||
737 1.430 jdolecek ((xfer->c_bio.bcount / wd->sc_dk.dk_label->d_secsize) > 128)))
738 1.430 jdolecek xfer->c_bio.flags |= ATA_LBA48;
739 1.430 jdolecek
740 1.430 jdolecek /*
741 1.430 jdolecek * If NCQ was negotiated, always use it for the first several attempts.
742 1.430 jdolecek * Since device cancels all outstanding requests on error, downgrade
743 1.430 jdolecek * to non-NCQ on retry, so that the retried transfer would not cause
744 1.430 jdolecek * cascade failure for the other transfers if it fails again.
745 1.430 jdolecek * If FUA was requested, we can't downgrade, as that would violate
746 1.430 jdolecek * the semantics - FUA would not be honored. In that case, continue
747 1.430 jdolecek * retrying with NCQ.
748 1.430 jdolecek */
749 1.430 jdolecek if (WD_USE_NCQ(wd) && (xfer->c_retries < WDIORETRIES_SINGLE ||
750 1.430 jdolecek (bp->b_flags & B_MEDIA_FUA) != 0)) {
751 1.430 jdolecek xfer->c_bio.flags |= ATA_LBA48;
752 1.430 jdolecek xfer->c_flags |= C_NCQ;
753 1.430 jdolecek
754 1.430 jdolecek if (WD_USE_NCQ_PRIO(wd) &&
755 1.430 jdolecek BIO_GETPRIO(bp) == BPRIO_TIMECRITICAL)
756 1.430 jdolecek xfer->c_bio.flags |= ATA_PRIO_HIGH;
757 1.430 jdolecek }
758 1.430 jdolecek
759 1.181 bouyer if (wd->sc_flags & WDF_LBA)
760 1.430 jdolecek xfer->c_bio.flags |= ATA_LBA;
761 1.181 bouyer if (bp->b_flags & B_READ)
762 1.430 jdolecek xfer->c_bio.flags |= ATA_READ;
763 1.430 jdolecek if (bp->b_flags & B_MEDIA_FUA) {
764 1.430 jdolecek /* If not using NCQ, the command WRITE DMA FUA EXT is LBA48 */
765 1.430 jdolecek KASSERT((wd->sc_flags & WDF_LBA48) != 0);
766 1.430 jdolecek if ((xfer->c_flags & C_NCQ) == 0)
767 1.430 jdolecek xfer->c_bio.flags |= ATA_LBA48;
768 1.430 jdolecek
769 1.430 jdolecek xfer->c_bio.flags |= ATA_FUA;
770 1.430 jdolecek }
771 1.430 jdolecek
772 1.181 bouyer /* Instrumentation. */
773 1.430 jdolecek if (xfer->c_retries == 0)
774 1.430 jdolecek disk_busy(&wd->sc_dk);
775 1.430 jdolecek switch (wd->atabus->ata_bio(wd->drvp, xfer)) {
776 1.288 thorpej case ATACMD_TRY_AGAIN:
777 1.430 jdolecek panic("wdstart1: try again");
778 1.181 bouyer break;
779 1.288 thorpej case ATACMD_QUEUED:
780 1.288 thorpej case ATACMD_COMPLETE:
781 1.181 bouyer break;
782 1.181 bouyer default:
783 1.382 pooka panic("wdstart1: bad return code from ata_bio()");
784 1.181 bouyer }
785 1.181 bouyer }
786 1.181 bouyer
787 1.181 bouyer void
788 1.430 jdolecek wddone(device_t self, struct ata_xfer *xfer)
789 1.181 bouyer {
790 1.430 jdolecek struct wd_softc *wd = device_private(self);
791 1.221 yamt const char *errmsg;
792 1.221 yamt int do_perror = 0;
793 1.430 jdolecek struct buf *bp;
794 1.349 itohy
795 1.360 cube ATADEBUG_PRINT(("wddone %s\n", device_xname(wd->sc_dev)),
796 1.182 bouyer DEBUG_XFERS);
797 1.430 jdolecek
798 1.430 jdolecek if (__predict_false(wddoingadump)) {
799 1.430 jdolecek /* just drop it to the floor */
800 1.430 jdolecek ata_free_xfer(wd->drvp->chnl_softc, xfer);
801 1.214 bjh21 return;
802 1.430 jdolecek }
803 1.430 jdolecek
804 1.430 jdolecek bp = xfer->c_bio.bp;
805 1.430 jdolecek KASSERT(bp != NULL);
806 1.430 jdolecek
807 1.430 jdolecek bp->b_resid = xfer->c_bio.bcount;
808 1.430 jdolecek switch (xfer->c_bio.error) {
809 1.181 bouyer case ERR_DMA:
810 1.221 yamt errmsg = "DMA error";
811 1.181 bouyer goto retry;
812 1.181 bouyer case ERR_DF:
813 1.221 yamt errmsg = "device fault";
814 1.181 bouyer goto retry;
815 1.181 bouyer case TIMEOUT:
816 1.221 yamt errmsg = "device timeout";
817 1.181 bouyer goto retry;
818 1.430 jdolecek case REQUEUE:
819 1.430 jdolecek errmsg = "requeue";
820 1.430 jdolecek goto retry2;
821 1.281 bouyer case ERR_RESET:
822 1.281 bouyer errmsg = "channel reset";
823 1.281 bouyer goto retry2;
824 1.181 bouyer case ERROR:
825 1.181 bouyer /* Don't care about media change bits */
826 1.430 jdolecek if (xfer->c_bio.r_error != 0 &&
827 1.430 jdolecek (xfer->c_bio.r_error & ~(WDCE_MC | WDCE_MCR)) == 0)
828 1.181 bouyer goto noerror;
829 1.221 yamt errmsg = "error";
830 1.221 yamt do_perror = 1;
831 1.181 bouyer retry: /* Just reset and retry. Can we do more ? */
832 1.430 jdolecek if ((xfer->c_flags & C_RECOVERED) == 0)
833 1.430 jdolecek (*wd->atabus->ata_reset_drive)(wd->drvp, AT_POLL, NULL);
834 1.281 bouyer retry2:
835 1.430 jdolecek mutex_enter(&wd->sc_lock);
836 1.430 jdolecek
837 1.221 yamt diskerr(bp, "wd", errmsg, LOG_PRINTF,
838 1.430 jdolecek xfer->c_bio.blkdone, wd->sc_dk.dk_label);
839 1.430 jdolecek if (xfer->c_retries < WDIORETRIES)
840 1.430 jdolecek printf(", slot %d, retry %d", xfer->c_slot,
841 1.430 jdolecek xfer->c_retries + 1);
842 1.345 bouyer printf("\n");
843 1.221 yamt if (do_perror)
844 1.430 jdolecek wdperror(wd, xfer);
845 1.430 jdolecek
846 1.430 jdolecek if (xfer->c_retries < WDIORETRIES) {
847 1.430 jdolecek xfer->c_retries++;
848 1.430 jdolecek
849 1.430 jdolecek /* Rerun ASAP if just requeued */
850 1.430 jdolecek callout_reset(&xfer->c_retry_callout,
851 1.430 jdolecek (xfer->c_bio.error == REQUEUE) ? 1 : RECOVERYTIME,
852 1.430 jdolecek wdbiorestart, xfer);
853 1.430 jdolecek
854 1.430 jdolecek mutex_exit(&wd->sc_lock);
855 1.181 bouyer return;
856 1.181 bouyer }
857 1.241 darrenr
858 1.430 jdolecek mutex_exit(&wd->sc_lock);
859 1.430 jdolecek
860 1.292 drochner #ifdef WD_SOFTBADSECT
861 1.241 darrenr /*
862 1.241 darrenr * Not all errors indicate a failed block but those that do,
863 1.241 darrenr * put the block on the bad-block list for the device. Only
864 1.241 darrenr * do this for reads because the drive should do it for writes,
865 1.241 darrenr * itself, according to Manuel.
866 1.241 darrenr */
867 1.242 dogcow if ((bp->b_flags & B_READ) &&
868 1.430 jdolecek ((wd->drvp->ata_vers >= 4 && xfer->c_bio.r_error & 64) ||
869 1.430 jdolecek (wd->drvp->ata_vers < 4 && xfer->c_bio.r_error & 192))) {
870 1.241 darrenr struct disk_badsectors *dbs;
871 1.241 darrenr
872 1.430 jdolecek dbs = malloc(sizeof *dbs, M_TEMP, M_NOWAIT);
873 1.430 jdolecek if (dbs == NULL) {
874 1.430 jdolecek aprint_error_dev(wd->sc_dev,
875 1.430 jdolecek "failed to add bad block to list\n");
876 1.430 jdolecek goto out;
877 1.430 jdolecek }
878 1.430 jdolecek
879 1.241 darrenr dbs->dbs_min = bp->b_rawblkno;
880 1.424 jakllsch dbs->dbs_max = dbs->dbs_min +
881 1.424 jakllsch (bp->b_bcount /wd->sc_blksize) - 1;
882 1.241 darrenr microtime(&dbs->dbs_failedat);
883 1.430 jdolecek
884 1.430 jdolecek mutex_enter(&wd->sc_lock);
885 1.241 darrenr SLIST_INSERT_HEAD(&wd->sc_bslist, dbs, dbs_next);
886 1.243 darrenr wd->sc_bscount++;
887 1.430 jdolecek mutex_exit(&wd->sc_lock);
888 1.241 darrenr }
889 1.430 jdolecek out:
890 1.292 drochner #endif
891 1.181 bouyer bp->b_error = EIO;
892 1.181 bouyer break;
893 1.181 bouyer case NOERROR:
894 1.430 jdolecek noerror: if ((xfer->c_bio.flags & ATA_CORR) || xfer->c_retries > 0)
895 1.360 cube aprint_error_dev(wd->sc_dev,
896 1.430 jdolecek "soft error (corrected) slot %d\n", xfer->c_slot);
897 1.430 jdolecek #ifdef WD_CHAOS_MONKEY
898 1.430 jdolecek KASSERT((xfer->c_flags & C_CHAOS) == 0);
899 1.430 jdolecek #endif
900 1.197 enami break;
901 1.197 enami case ERR_NODEV:
902 1.197 enami bp->b_error = EIO;
903 1.197 enami break;
904 1.64 mycroft }
905 1.393 bouyer if (__predict_false(bp->b_error != 0) && bp->b_resid == 0) {
906 1.393 bouyer /*
907 1.393 bouyer * the disk or controller sometimes report a complete
908 1.393 bouyer * xfer, when there has been an error. This is wrong,
909 1.393 bouyer * assume nothing got transfered in this case
910 1.393 bouyer */
911 1.393 bouyer bp->b_resid = bp->b_bcount;
912 1.393 bouyer }
913 1.232 mrg disk_unbusy(&wd->sc_dk, (bp->b_bcount - bp->b_resid),
914 1.232 mrg (bp->b_flags & B_READ));
915 1.181 bouyer rnd_add_uint32(&wd->rnd_source, bp->b_blkno);
916 1.430 jdolecek ata_free_xfer(wd->drvp->chnl_softc, xfer);
917 1.429 jdolecek biodone(bp);
918 1.430 jdolecek ata_channel_start(wd->drvp->chnl_softc, wd->drvp->drive);
919 1.181 bouyer }
920 1.181 bouyer
921 1.430 jdolecek static void
922 1.430 jdolecek wdbiorestart(void *v)
923 1.181 bouyer {
924 1.430 jdolecek struct ata_xfer *xfer = v;
925 1.430 jdolecek struct buf *bp = xfer->c_bio.bp;
926 1.430 jdolecek struct wd_softc *wd = device_lookup_private(&wd_cd, WDUNIT(bp->b_dev));
927 1.350 itohy
928 1.360 cube ATADEBUG_PRINT(("wdrestart %s\n", device_xname(wd->sc_dev)),
929 1.182 bouyer DEBUG_XFERS);
930 1.430 jdolecek
931 1.430 jdolecek mutex_enter(&wd->sc_lock);
932 1.430 jdolecek wdstart1(wd, bp, xfer);
933 1.430 jdolecek mutex_exit(&wd->sc_lock);
934 1.141 mycroft }
935 1.141 mycroft
936 1.388 jakllsch static void
937 1.388 jakllsch wdminphys(struct buf *bp)
938 1.388 jakllsch {
939 1.424 jakllsch const struct wd_softc * const wd =
940 1.424 jakllsch device_lookup_private(&wd_cd, WDUNIT(bp->b_dev));
941 1.430 jdolecek uint32_t maxsectors;
942 1.430 jdolecek
943 1.430 jdolecek /*
944 1.430 jdolecek * The limit is actually 65536 for LBA48 and 256 for non-LBA48,
945 1.430 jdolecek * but that requires to set the count for the ATA command
946 1.430 jdolecek * to 0, which is somewhat error prone, so better stay safe.
947 1.430 jdolecek */
948 1.430 jdolecek if (wd->sc_flags & WDF_LBA48)
949 1.430 jdolecek maxsectors = 65535;
950 1.430 jdolecek else
951 1.430 jdolecek maxsectors = 128;
952 1.430 jdolecek
953 1.430 jdolecek if (bp->b_bcount > (wd->sc_blksize * maxsectors))
954 1.430 jdolecek bp->b_bcount = (wd->sc_blksize * maxsectors);
955 1.388 jakllsch
956 1.388 jakllsch minphys(bp);
957 1.388 jakllsch }
958 1.388 jakllsch
959 1.141 mycroft int
960 1.335 christos wdread(dev_t dev, struct uio *uio, int flags)
961 1.141 mycroft {
962 1.141 mycroft
963 1.289 thorpej ATADEBUG_PRINT(("wdread\n"), DEBUG_XFERS);
964 1.388 jakllsch return (physio(wdstrategy, NULL, dev, B_READ, wdminphys, uio));
965 1.141 mycroft }
966 1.141 mycroft
967 1.141 mycroft int
968 1.335 christos wdwrite(dev_t dev, struct uio *uio, int flags)
969 1.141 mycroft {
970 1.141 mycroft
971 1.289 thorpej ATADEBUG_PRINT(("wdwrite\n"), DEBUG_XFERS);
972 1.388 jakllsch return (physio(wdstrategy, NULL, dev, B_WRITE, wdminphys, uio));
973 1.64 mycroft }
974 1.64 mycroft
975 1.1 cgd int
976 1.335 christos wdopen(dev_t dev, int flag, int fmt, struct lwp *l)
977 1.1 cgd {
978 1.135 mycroft struct wd_softc *wd;
979 1.208 thorpej int part, error;
980 1.163 bouyer
981 1.289 thorpej ATADEBUG_PRINT(("wdopen\n"), DEBUG_FUNCS);
982 1.363 tsutsui wd = device_lookup_private(&wd_cd, WDUNIT(dev));
983 1.158 pk if (wd == NULL)
984 1.208 thorpej return (ENXIO);
985 1.187 thorpej
986 1.360 cube if (! device_is_active(wd->sc_dev))
987 1.283 bouyer return (ENODEV);
988 1.283 bouyer
989 1.400 bouyer if (wd->sc_capacity == 0)
990 1.400 bouyer return (ENODEV);
991 1.400 bouyer
992 1.294 thorpej part = WDPART(dev);
993 1.294 thorpej
994 1.341 ad mutex_enter(&wd->sc_dk.dk_openlock);
995 1.294 thorpej
996 1.294 thorpej /*
997 1.294 thorpej * If there are wedges, and this is not RAW_PART, then we
998 1.294 thorpej * need to fail.
999 1.294 thorpej */
1000 1.294 thorpej if (wd->sc_dk.dk_nwedges != 0 && part != RAW_PART) {
1001 1.294 thorpej error = EBUSY;
1002 1.294 thorpej goto bad1;
1003 1.294 thorpej }
1004 1.294 thorpej
1005 1.187 thorpej /*
1006 1.187 thorpej * If this is the first open of this device, add a reference
1007 1.187 thorpej * to the adapter.
1008 1.187 thorpej */
1009 1.187 thorpej if (wd->sc_dk.dk_openmask == 0 &&
1010 1.217 bouyer (error = wd->atabus->ata_addref(wd->drvp)) != 0)
1011 1.294 thorpej goto bad1;
1012 1.3 deraadt
1013 1.109 mycroft if (wd->sc_dk.dk_openmask != 0) {
1014 1.109 mycroft /*
1015 1.109 mycroft * If any partition is open, but the disk has been invalidated,
1016 1.109 mycroft * disallow further opens.
1017 1.109 mycroft */
1018 1.181 bouyer if ((wd->sc_flags & WDF_LOADED) == 0) {
1019 1.136 mycroft error = EIO;
1020 1.294 thorpej goto bad2;
1021 1.136 mycroft }
1022 1.109 mycroft } else {
1023 1.181 bouyer if ((wd->sc_flags & WDF_LOADED) == 0) {
1024 1.108 mycroft
1025 1.108 mycroft /* Load the physical device parameters. */
1026 1.400 bouyer if (wd_get_params(wd, AT_WAIT, &wd->sc_params) != 0) {
1027 1.400 bouyer aprint_error_dev(wd->sc_dev,
1028 1.400 bouyer "IDENTIFY failed\n");
1029 1.400 bouyer error = EIO;
1030 1.400 bouyer goto bad2;
1031 1.400 bouyer }
1032 1.400 bouyer wd->sc_flags |= WDF_LOADED;
1033 1.108 mycroft /* Load the partition info if not already loaded. */
1034 1.108 mycroft wdgetdisklabel(wd);
1035 1.108 mycroft }
1036 1.135 mycroft }
1037 1.108 mycroft
1038 1.109 mycroft /* Check that the partition exists. */
1039 1.93 mycroft if (part != RAW_PART &&
1040 1.144 thorpej (part >= wd->sc_dk.dk_label->d_npartitions ||
1041 1.144 thorpej wd->sc_dk.dk_label->d_partitions[part].p_fstype == FS_UNUSED)) {
1042 1.93 mycroft error = ENXIO;
1043 1.294 thorpej goto bad2;
1044 1.93 mycroft }
1045 1.259 dsl
1046 1.64 mycroft /* Insure only one open at a time. */
1047 1.3 deraadt switch (fmt) {
1048 1.3 deraadt case S_IFCHR:
1049 1.94 mycroft wd->sc_dk.dk_copenmask |= (1 << part);
1050 1.3 deraadt break;
1051 1.3 deraadt case S_IFBLK:
1052 1.94 mycroft wd->sc_dk.dk_bopenmask |= (1 << part);
1053 1.3 deraadt break;
1054 1.3 deraadt }
1055 1.181 bouyer wd->sc_dk.dk_openmask =
1056 1.181 bouyer wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
1057 1.60 mycroft
1058 1.341 ad mutex_exit(&wd->sc_dk.dk_openlock);
1059 1.37 mycroft return 0;
1060 1.93 mycroft
1061 1.294 thorpej bad2:
1062 1.187 thorpej if (wd->sc_dk.dk_openmask == 0)
1063 1.217 bouyer wd->atabus->ata_delref(wd->drvp);
1064 1.294 thorpej bad1:
1065 1.341 ad mutex_exit(&wd->sc_dk.dk_openlock);
1066 1.93 mycroft return error;
1067 1.1 cgd }
1068 1.1 cgd
1069 1.425 jakllsch /*
1070 1.374 dyoung * Caller must hold wd->sc_dk.dk_openlock.
1071 1.374 dyoung */
1072 1.376 dyoung static int
1073 1.376 dyoung wdlastclose(device_t self)
1074 1.374 dyoung {
1075 1.376 dyoung struct wd_softc *wd = device_private(self);
1076 1.376 dyoung
1077 1.430 jdolecek wd_flushcache(wd, AT_WAIT, false);
1078 1.374 dyoung
1079 1.374 dyoung if (! (wd->sc_flags & WDF_KLABEL))
1080 1.374 dyoung wd->sc_flags &= ~WDF_LOADED;
1081 1.374 dyoung
1082 1.374 dyoung wd->atabus->ata_delref(wd->drvp);
1083 1.376 dyoung
1084 1.376 dyoung return 0;
1085 1.374 dyoung }
1086 1.374 dyoung
1087 1.135 mycroft int
1088 1.335 christos wdclose(dev_t dev, int flag, int fmt, struct lwp *l)
1089 1.135 mycroft {
1090 1.360 cube struct wd_softc *wd =
1091 1.363 tsutsui device_lookup_private(&wd_cd, WDUNIT(dev));
1092 1.135 mycroft int part = WDPART(dev);
1093 1.259 dsl
1094 1.289 thorpej ATADEBUG_PRINT(("wdclose\n"), DEBUG_FUNCS);
1095 1.294 thorpej
1096 1.341 ad mutex_enter(&wd->sc_dk.dk_openlock);
1097 1.135 mycroft
1098 1.135 mycroft switch (fmt) {
1099 1.135 mycroft case S_IFCHR:
1100 1.135 mycroft wd->sc_dk.dk_copenmask &= ~(1 << part);
1101 1.135 mycroft break;
1102 1.135 mycroft case S_IFBLK:
1103 1.135 mycroft wd->sc_dk.dk_bopenmask &= ~(1 << part);
1104 1.135 mycroft break;
1105 1.135 mycroft }
1106 1.181 bouyer wd->sc_dk.dk_openmask =
1107 1.181 bouyer wd->sc_dk.dk_copenmask | wd->sc_dk.dk_bopenmask;
1108 1.135 mycroft
1109 1.374 dyoung if (wd->sc_dk.dk_openmask == 0)
1110 1.376 dyoung wdlastclose(wd->sc_dev);
1111 1.135 mycroft
1112 1.341 ad mutex_exit(&wd->sc_dk.dk_openlock);
1113 1.135 mycroft return 0;
1114 1.135 mycroft }
1115 1.135 mycroft
1116 1.108 mycroft void
1117 1.259 dsl wdgetdefaultlabel(struct wd_softc *wd, struct disklabel *lp)
1118 1.108 mycroft {
1119 1.163 bouyer
1120 1.289 thorpej ATADEBUG_PRINT(("wdgetdefaultlabel\n"), DEBUG_FUNCS);
1121 1.181 bouyer memset(lp, 0, sizeof(struct disklabel));
1122 1.108 mycroft
1123 1.424 jakllsch lp->d_secsize = wd->sc_blksize;
1124 1.181 bouyer lp->d_ntracks = wd->sc_params.atap_heads;
1125 1.181 bouyer lp->d_nsectors = wd->sc_params.atap_sectors;
1126 1.260 bouyer lp->d_ncylinders = (wd->sc_flags & WDF_LBA) ? wd->sc_capacity /
1127 1.260 bouyer (wd->sc_params.atap_heads * wd->sc_params.atap_sectors) :
1128 1.260 bouyer wd->sc_params.atap_cylinders;
1129 1.142 mycroft lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
1130 1.108 mycroft
1131 1.198 leo if (strcmp(wd->sc_params.atap_model, "ST506") == 0)
1132 1.418 christos lp->d_type = DKTYPE_ST506;
1133 1.198 leo else
1134 1.418 christos lp->d_type = DKTYPE_ESDI;
1135 1.198 leo
1136 1.181 bouyer strncpy(lp->d_typename, wd->sc_params.atap_model, 16);
1137 1.180 drochner strncpy(lp->d_packname, "fictitious", 16);
1138 1.240 fvdl if (wd->sc_capacity > UINT32_MAX)
1139 1.240 fvdl lp->d_secperunit = UINT32_MAX;
1140 1.240 fvdl else
1141 1.240 fvdl lp->d_secperunit = wd->sc_capacity;
1142 1.142 mycroft lp->d_rpm = 3600;
1143 1.142 mycroft lp->d_interleave = 1;
1144 1.142 mycroft lp->d_flags = 0;
1145 1.142 mycroft
1146 1.142 mycroft lp->d_partitions[RAW_PART].p_offset = 0;
1147 1.414 mlelstv lp->d_partitions[RAW_PART].p_size = lp->d_secperunit;
1148 1.142 mycroft lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
1149 1.142 mycroft lp->d_npartitions = RAW_PART + 1;
1150 1.142 mycroft
1151 1.142 mycroft lp->d_magic = DISKMAGIC;
1152 1.142 mycroft lp->d_magic2 = DISKMAGIC;
1153 1.142 mycroft lp->d_checksum = dkcksum(lp);
1154 1.164 thorpej }
1155 1.164 thorpej
1156 1.164 thorpej /*
1157 1.164 thorpej * Fabricate a default disk label, and try to read the correct one.
1158 1.164 thorpej */
1159 1.164 thorpej void
1160 1.259 dsl wdgetdisklabel(struct wd_softc *wd)
1161 1.164 thorpej {
1162 1.164 thorpej struct disklabel *lp = wd->sc_dk.dk_label;
1163 1.251 dsl const char *errstring;
1164 1.164 thorpej
1165 1.289 thorpej ATADEBUG_PRINT(("wdgetdisklabel\n"), DEBUG_FUNCS);
1166 1.164 thorpej
1167 1.181 bouyer memset(wd->sc_dk.dk_cpulabel, 0, sizeof(struct cpu_disklabel));
1168 1.164 thorpej
1169 1.164 thorpej wdgetdefaultlabel(wd, lp);
1170 1.108 mycroft
1171 1.430 jdolecek wd->drvp->badsect[0] = -1;
1172 1.113 mycroft
1173 1.291 thorpej if (wd->drvp->state > RESET) {
1174 1.430 jdolecek mutex_enter(&wd->sc_lock);
1175 1.400 bouyer wd->drvp->drive_flags |= ATA_DRIVE_RESET;
1176 1.430 jdolecek mutex_exit(&wd->sc_lock);
1177 1.291 thorpej }
1178 1.360 cube errstring = readdisklabel(MAKEWDDEV(0, device_unit(wd->sc_dev),
1179 1.321 thorpej RAW_PART), wdstrategy, lp,
1180 1.321 thorpej wd->sc_dk.dk_cpulabel);
1181 1.108 mycroft if (errstring) {
1182 1.108 mycroft /*
1183 1.108 mycroft * This probably happened because the drive's default
1184 1.108 mycroft * geometry doesn't match the DOS geometry. We
1185 1.108 mycroft * assume the DOS geometry is now in the label and try
1186 1.108 mycroft * again. XXX This is a kluge.
1187 1.108 mycroft */
1188 1.291 thorpej if (wd->drvp->state > RESET) {
1189 1.430 jdolecek mutex_enter(&wd->sc_lock);
1190 1.400 bouyer wd->drvp->drive_flags |= ATA_DRIVE_RESET;
1191 1.430 jdolecek mutex_exit(&wd->sc_lock);
1192 1.291 thorpej }
1193 1.360 cube errstring = readdisklabel(MAKEWDDEV(0, device_unit(wd->sc_dev),
1194 1.181 bouyer RAW_PART), wdstrategy, lp, wd->sc_dk.dk_cpulabel);
1195 1.108 mycroft }
1196 1.108 mycroft if (errstring) {
1197 1.360 cube aprint_error_dev(wd->sc_dev, "%s\n", errstring);
1198 1.108 mycroft return;
1199 1.108 mycroft }
1200 1.108 mycroft
1201 1.291 thorpej if (wd->drvp->state > RESET) {
1202 1.430 jdolecek mutex_enter(&wd->sc_lock);
1203 1.400 bouyer wd->drvp->drive_flags |= ATA_DRIVE_RESET;
1204 1.430 jdolecek mutex_exit(&wd->sc_lock);
1205 1.291 thorpej }
1206 1.170 leo #ifdef HAS_BAD144_HANDLING
1207 1.142 mycroft if ((lp->d_flags & D_BADSECT) != 0)
1208 1.108 mycroft bad144intern(wd);
1209 1.170 leo #endif
1210 1.108 mycroft }
1211 1.108 mycroft
1212 1.217 bouyer void
1213 1.430 jdolecek wdperror(const struct wd_softc *wd, struct ata_xfer *xfer)
1214 1.217 bouyer {
1215 1.221 yamt static const char *const errstr0_3[] = {"address mark not found",
1216 1.217 bouyer "track 0 not found", "aborted command", "media change requested",
1217 1.217 bouyer "id not found", "media changed", "uncorrectable data error",
1218 1.217 bouyer "bad block detected"};
1219 1.221 yamt static const char *const errstr4_5[] = {
1220 1.221 yamt "obsolete (address mark not found)",
1221 1.217 bouyer "no media/write protected", "aborted command",
1222 1.217 bouyer "media change requested", "id not found", "media changed",
1223 1.217 bouyer "uncorrectable data error", "interface CRC error"};
1224 1.259 dsl const char *const *errstr;
1225 1.217 bouyer int i;
1226 1.301 christos const char *sep = "";
1227 1.217 bouyer
1228 1.360 cube const char *devname = device_xname(wd->sc_dev);
1229 1.221 yamt struct ata_drive_datas *drvp = wd->drvp;
1230 1.430 jdolecek int errno = xfer->c_bio.r_error;
1231 1.221 yamt
1232 1.217 bouyer if (drvp->ata_vers >= 4)
1233 1.217 bouyer errstr = errstr4_5;
1234 1.217 bouyer else
1235 1.217 bouyer errstr = errstr0_3;
1236 1.217 bouyer
1237 1.221 yamt printf("%s: (", devname);
1238 1.221 yamt
1239 1.217 bouyer if (errno == 0)
1240 1.221 yamt printf("error not notified");
1241 1.217 bouyer
1242 1.217 bouyer for (i = 0; i < 8; i++) {
1243 1.217 bouyer if (errno & (1 << i)) {
1244 1.221 yamt printf("%s%s", sep, errstr[i]);
1245 1.217 bouyer sep = ", ";
1246 1.217 bouyer }
1247 1.217 bouyer }
1248 1.221 yamt printf(")\n");
1249 1.217 bouyer }
1250 1.217 bouyer
1251 1.1 cgd int
1252 1.337 christos wdioctl(dev_t dev, u_long xfer, void *addr, int flag, struct lwp *l)
1253 1.1 cgd {
1254 1.360 cube struct wd_softc *wd =
1255 1.363 tsutsui device_lookup_private(&wd_cd, WDUNIT(dev));
1256 1.430 jdolecek int error;
1257 1.211 fvdl #ifdef __HAVE_OLD_DISKLABEL
1258 1.233 fvdl struct disklabel *newlabel = NULL;
1259 1.211 fvdl #endif
1260 1.163 bouyer
1261 1.289 thorpej ATADEBUG_PRINT(("wdioctl\n"), DEBUG_FUNCS);
1262 1.163 bouyer
1263 1.181 bouyer if ((wd->sc_flags & WDF_LOADED) == 0)
1264 1.108 mycroft return EIO;
1265 1.108 mycroft
1266 1.417 christos error = disk_ioctl(&wd->sc_dk, dev, xfer, addr, flag, l);
1267 1.332 thorpej if (error != EPASSTHROUGH)
1268 1.417 christos return error;
1269 1.332 thorpej
1270 1.405 skrll error = 0;
1271 1.163 bouyer switch (xfer) {
1272 1.170 leo #ifdef HAS_BAD144_HANDLING
1273 1.1 cgd case DIOCSBAD:
1274 1.3 deraadt if ((flag & FWRITE) == 0)
1275 1.54 mycroft return EBADF;
1276 1.144 thorpej wd->sc_dk.dk_cpulabel->bad = *(struct dkbad *)addr;
1277 1.144 thorpej wd->sc_dk.dk_label->d_flags |= D_BADSECT;
1278 1.64 mycroft bad144intern(wd);
1279 1.54 mycroft return 0;
1280 1.170 leo #endif
1281 1.292 drochner #ifdef WD_SOFTBADSECT
1282 1.241 darrenr case DIOCBSLIST :
1283 1.241 darrenr {
1284 1.413 matt uint32_t count, missing, skip;
1285 1.243 darrenr struct disk_badsecinfo dbsi;
1286 1.241 darrenr struct disk_badsectors *dbs;
1287 1.241 darrenr size_t available;
1288 1.344 jnemeth uint8_t *laddr;
1289 1.241 darrenr
1290 1.243 darrenr dbsi = *(struct disk_badsecinfo *)addr;
1291 1.243 darrenr missing = wd->sc_bscount;
1292 1.241 darrenr count = 0;
1293 1.243 darrenr available = dbsi.dbsi_bufsize;
1294 1.243 darrenr skip = dbsi.dbsi_skip;
1295 1.344 jnemeth laddr = (uint8_t *)dbsi.dbsi_buffer;
1296 1.243 darrenr
1297 1.243 darrenr /*
1298 1.243 darrenr * We start this loop with the expectation that all of the
1299 1.243 darrenr * entries will be missed and decrement this counter each
1300 1.243 darrenr * time we either skip over one (already copied out) or
1301 1.243 darrenr * we actually copy it back to user space. The structs
1302 1.243 darrenr * holding the bad sector information are copied directly
1303 1.243 darrenr * back to user space whilst the summary is returned via
1304 1.243 darrenr * the struct passed in via the ioctl.
1305 1.243 darrenr */
1306 1.241 darrenr SLIST_FOREACH(dbs, &wd->sc_bslist, dbs_next) {
1307 1.243 darrenr if (skip > 0) {
1308 1.243 darrenr missing--;
1309 1.243 darrenr skip--;
1310 1.243 darrenr continue;
1311 1.243 darrenr }
1312 1.243 darrenr if (available < sizeof(*dbs))
1313 1.241 darrenr break;
1314 1.243 darrenr available -= sizeof(*dbs);
1315 1.241 darrenr copyout(dbs, laddr, sizeof(*dbs));
1316 1.241 darrenr laddr += sizeof(*dbs);
1317 1.243 darrenr missing--;
1318 1.241 darrenr count++;
1319 1.241 darrenr }
1320 1.243 darrenr dbsi.dbsi_left = missing;
1321 1.243 darrenr dbsi.dbsi_copied = count;
1322 1.243 darrenr *(struct disk_badsecinfo *)addr = dbsi;
1323 1.241 darrenr return 0;
1324 1.241 darrenr }
1325 1.241 darrenr
1326 1.241 darrenr case DIOCBSFLUSH :
1327 1.241 darrenr /* Clean out the bad sector list */
1328 1.241 darrenr while (!SLIST_EMPTY(&wd->sc_bslist)) {
1329 1.241 darrenr void *head = SLIST_FIRST(&wd->sc_bslist);
1330 1.241 darrenr SLIST_REMOVE_HEAD(&wd->sc_bslist, dbs_next);
1331 1.241 darrenr free(head, M_TEMP);
1332 1.241 darrenr }
1333 1.243 darrenr wd->sc_bscount = 0;
1334 1.241 darrenr return 0;
1335 1.292 drochner #endif
1336 1.259 dsl
1337 1.132 mycroft case DIOCWDINFO:
1338 1.3 deraadt case DIOCSDINFO:
1339 1.211 fvdl #ifdef __HAVE_OLD_DISKLABEL
1340 1.211 fvdl case ODIOCWDINFO:
1341 1.211 fvdl case ODIOCSDINFO:
1342 1.211 fvdl #endif
1343 1.211 fvdl {
1344 1.211 fvdl struct disklabel *lp;
1345 1.211 fvdl
1346 1.233 fvdl if ((flag & FWRITE) == 0)
1347 1.233 fvdl return EBADF;
1348 1.233 fvdl
1349 1.211 fvdl #ifdef __HAVE_OLD_DISKLABEL
1350 1.211 fvdl if (xfer == ODIOCSDINFO || xfer == ODIOCWDINFO) {
1351 1.390 joerg newlabel = malloc(sizeof *newlabel, M_TEMP,
1352 1.390 joerg M_WAITOK | M_ZERO);
1353 1.233 fvdl if (newlabel == NULL)
1354 1.233 fvdl return EIO;
1355 1.233 fvdl memcpy(newlabel, addr, sizeof (struct olddisklabel));
1356 1.233 fvdl lp = newlabel;
1357 1.211 fvdl } else
1358 1.211 fvdl #endif
1359 1.211 fvdl lp = (struct disklabel *)addr;
1360 1.211 fvdl
1361 1.341 ad mutex_enter(&wd->sc_dk.dk_openlock);
1362 1.181 bouyer wd->sc_flags |= WDF_LABELLING;
1363 1.132 mycroft
1364 1.144 thorpej error = setdisklabel(wd->sc_dk.dk_label,
1365 1.211 fvdl lp, /*wd->sc_dk.dk_openmask : */0,
1366 1.144 thorpej wd->sc_dk.dk_cpulabel);
1367 1.3 deraadt if (error == 0) {
1368 1.291 thorpej if (wd->drvp->state > RESET) {
1369 1.430 jdolecek mutex_enter(&wd->sc_lock);
1370 1.400 bouyer wd->drvp->drive_flags |= ATA_DRIVE_RESET;
1371 1.430 jdolecek mutex_exit(&wd->sc_lock);
1372 1.291 thorpej }
1373 1.211 fvdl if (xfer == DIOCWDINFO
1374 1.211 fvdl #ifdef __HAVE_OLD_DISKLABEL
1375 1.211 fvdl || xfer == ODIOCWDINFO
1376 1.211 fvdl #endif
1377 1.211 fvdl )
1378 1.132 mycroft error = writedisklabel(WDLABELDEV(dev),
1379 1.144 thorpej wdstrategy, wd->sc_dk.dk_label,
1380 1.144 thorpej wd->sc_dk.dk_cpulabel);
1381 1.1 cgd }
1382 1.132 mycroft
1383 1.181 bouyer wd->sc_flags &= ~WDF_LABELLING;
1384 1.341 ad mutex_exit(&wd->sc_dk.dk_openlock);
1385 1.233 fvdl #ifdef __HAVE_OLD_DISKLABEL
1386 1.233 fvdl if (newlabel != NULL)
1387 1.233 fvdl free(newlabel, M_TEMP);
1388 1.233 fvdl #endif
1389 1.54 mycroft return error;
1390 1.211 fvdl }
1391 1.199 leo
1392 1.199 leo case DIOCKLABEL:
1393 1.199 leo if (*(int *)addr)
1394 1.199 leo wd->sc_flags |= WDF_KLABEL;
1395 1.199 leo else
1396 1.199 leo wd->sc_flags &= ~WDF_KLABEL;
1397 1.199 leo return 0;
1398 1.259 dsl
1399 1.44 mycroft case DIOCWLABEL:
1400 1.3 deraadt if ((flag & FWRITE) == 0)
1401 1.54 mycroft return EBADF;
1402 1.93 mycroft if (*(int *)addr)
1403 1.181 bouyer wd->sc_flags |= WDF_WLABEL;
1404 1.93 mycroft else
1405 1.181 bouyer wd->sc_flags &= ~WDF_WLABEL;
1406 1.54 mycroft return 0;
1407 1.164 thorpej
1408 1.164 thorpej case DIOCGDEFLABEL:
1409 1.164 thorpej wdgetdefaultlabel(wd, (struct disklabel *)addr);
1410 1.164 thorpej return 0;
1411 1.211 fvdl #ifdef __HAVE_OLD_DISKLABEL
1412 1.211 fvdl case ODIOCGDEFLABEL:
1413 1.233 fvdl newlabel = malloc(sizeof *newlabel, M_TEMP, M_WAITOK);
1414 1.233 fvdl if (newlabel == NULL)
1415 1.233 fvdl return EIO;
1416 1.233 fvdl wdgetdefaultlabel(wd, newlabel);
1417 1.233 fvdl if (newlabel->d_npartitions <= OLDMAXPARTITIONS)
1418 1.233 fvdl memcpy(addr, &newlabel, sizeof (struct olddisklabel));
1419 1.233 fvdl else
1420 1.233 fvdl error = ENOTTY;
1421 1.233 fvdl free(newlabel, M_TEMP);
1422 1.233 fvdl return error;
1423 1.211 fvdl #endif
1424 1.164 thorpej
1425 1.1 cgd #ifdef notyet
1426 1.1 cgd case DIOCWFORMAT:
1427 1.1 cgd if ((flag & FWRITE) == 0)
1428 1.54 mycroft return EBADF;
1429 1.181 bouyer {
1430 1.54 mycroft register struct format_op *fop;
1431 1.54 mycroft struct iovec aiov;
1432 1.54 mycroft struct uio auio;
1433 1.259 dsl
1434 1.54 mycroft fop = (struct format_op *)addr;
1435 1.54 mycroft aiov.iov_base = fop->df_buf;
1436 1.54 mycroft aiov.iov_len = fop->df_count;
1437 1.54 mycroft auio.uio_iov = &aiov;
1438 1.54 mycroft auio.uio_iovcnt = 1;
1439 1.54 mycroft auio.uio_resid = fop->df_count;
1440 1.54 mycroft auio.uio_offset =
1441 1.181 bouyer fop->df_startblk * wd->sc_dk.dk_label->d_secsize;
1442 1.320 yamt auio.uio_vmspace = l->l_proc->p_vmspace;
1443 1.388 jakllsch error = physio(wdformat, NULL, dev, B_WRITE, wdminphys,
1444 1.64 mycroft &auio);
1445 1.54 mycroft fop->df_count -= auio.uio_resid;
1446 1.64 mycroft fop->df_reg[0] = wdc->sc_status;
1447 1.64 mycroft fop->df_reg[1] = wdc->sc_error;
1448 1.54 mycroft return error;
1449 1.181 bouyer }
1450 1.1 cgd #endif
1451 1.248 bouyer case DIOCGCACHE:
1452 1.248 bouyer return wd_getcache(wd, (int *)addr);
1453 1.248 bouyer
1454 1.248 bouyer case DIOCSCACHE:
1455 1.248 bouyer return wd_setcache(wd, *(int *)addr);
1456 1.185 kenh
1457 1.276 bouyer case DIOCCACHESYNC:
1458 1.430 jdolecek return wd_flushcache(wd, AT_WAIT, true);
1459 1.276 bouyer
1460 1.186 kenh case ATAIOCCOMMAND:
1461 1.185 kenh /*
1462 1.185 kenh * Make sure this command is (relatively) safe first
1463 1.185 kenh */
1464 1.186 kenh if ((((atareq_t *) addr)->flags & ATACMD_READ) == 0 &&
1465 1.185 kenh (flag & FWRITE) == 0)
1466 1.185 kenh return (EBADF);
1467 1.185 kenh {
1468 1.185 kenh struct wd_ioctl *wi;
1469 1.186 kenh atareq_t *atareq = (atareq_t *) addr;
1470 1.301 christos int error1;
1471 1.185 kenh
1472 1.430 jdolecek wi = wi_get(wd);
1473 1.186 kenh wi->wi_atareq = *atareq;
1474 1.185 kenh
1475 1.186 kenh if (atareq->datalen && atareq->flags &
1476 1.186 kenh (ATACMD_READ | ATACMD_WRITE)) {
1477 1.339 dsl void *tbuf;
1478 1.339 dsl if (atareq->datalen < DEV_BSIZE
1479 1.339 dsl && atareq->command == WDCC_IDENTIFY) {
1480 1.339 dsl tbuf = malloc(DEV_BSIZE, M_TEMP, M_WAITOK);
1481 1.339 dsl wi->wi_iov.iov_base = tbuf;
1482 1.339 dsl wi->wi_iov.iov_len = DEV_BSIZE;
1483 1.339 dsl UIO_SETUP_SYSSPACE(&wi->wi_uio);
1484 1.339 dsl } else {
1485 1.339 dsl tbuf = NULL;
1486 1.339 dsl wi->wi_iov.iov_base = atareq->databuf;
1487 1.339 dsl wi->wi_iov.iov_len = atareq->datalen;
1488 1.339 dsl wi->wi_uio.uio_vmspace = l->l_proc->p_vmspace;
1489 1.339 dsl }
1490 1.185 kenh wi->wi_uio.uio_iov = &wi->wi_iov;
1491 1.185 kenh wi->wi_uio.uio_iovcnt = 1;
1492 1.186 kenh wi->wi_uio.uio_resid = atareq->datalen;
1493 1.185 kenh wi->wi_uio.uio_offset = 0;
1494 1.185 kenh wi->wi_uio.uio_rw =
1495 1.186 kenh (atareq->flags & ATACMD_READ) ? B_READ : B_WRITE;
1496 1.301 christos error1 = physio(wdioctlstrategy, &wi->wi_bp, dev,
1497 1.186 kenh (atareq->flags & ATACMD_READ) ? B_READ : B_WRITE,
1498 1.388 jakllsch wdminphys, &wi->wi_uio);
1499 1.339 dsl if (tbuf != NULL && error1 == 0) {
1500 1.339 dsl error1 = copyout(tbuf, atareq->databuf,
1501 1.339 dsl atareq->datalen);
1502 1.339 dsl free(tbuf, M_TEMP);
1503 1.339 dsl }
1504 1.185 kenh } else {
1505 1.185 kenh /* No need to call physio if we don't have any
1506 1.185 kenh user data */
1507 1.185 kenh wi->wi_bp.b_flags = 0;
1508 1.185 kenh wi->wi_bp.b_data = 0;
1509 1.185 kenh wi->wi_bp.b_bcount = 0;
1510 1.430 jdolecek wi->wi_bp.b_dev = dev;
1511 1.314 christos wi->wi_bp.b_proc = l->l_proc;
1512 1.185 kenh wdioctlstrategy(&wi->wi_bp);
1513 1.301 christos error1 = wi->wi_bp.b_error;
1514 1.185 kenh }
1515 1.186 kenh *atareq = wi->wi_atareq;
1516 1.185 kenh wi_free(wi);
1517 1.301 christos return(error1);
1518 1.185 kenh }
1519 1.185 kenh
1520 1.315 yamt case DIOCGSTRATEGY:
1521 1.315 yamt {
1522 1.315 yamt struct disk_strategy *dks = (void *)addr;
1523 1.315 yamt
1524 1.430 jdolecek mutex_enter(&wd->sc_lock);
1525 1.315 yamt strlcpy(dks->dks_name, bufq_getstrategyname(wd->sc_q),
1526 1.315 yamt sizeof(dks->dks_name));
1527 1.430 jdolecek mutex_exit(&wd->sc_lock);
1528 1.315 yamt dks->dks_paramlen = 0;
1529 1.315 yamt
1530 1.315 yamt return 0;
1531 1.315 yamt }
1532 1.425 jakllsch
1533 1.315 yamt case DIOCSSTRATEGY:
1534 1.315 yamt {
1535 1.315 yamt struct disk_strategy *dks = (void *)addr;
1536 1.315 yamt struct bufq_state *new;
1537 1.315 yamt struct bufq_state *old;
1538 1.315 yamt
1539 1.315 yamt if ((flag & FWRITE) == 0) {
1540 1.315 yamt return EBADF;
1541 1.315 yamt }
1542 1.315 yamt if (dks->dks_param != NULL) {
1543 1.315 yamt return EINVAL;
1544 1.315 yamt }
1545 1.315 yamt dks->dks_name[sizeof(dks->dks_name) - 1] = 0; /* ensure term */
1546 1.315 yamt error = bufq_alloc(&new, dks->dks_name,
1547 1.315 yamt BUFQ_EXACT|BUFQ_SORT_RAWBLOCK);
1548 1.315 yamt if (error) {
1549 1.315 yamt return error;
1550 1.315 yamt }
1551 1.430 jdolecek mutex_enter(&wd->sc_lock);
1552 1.315 yamt old = wd->sc_q;
1553 1.315 yamt bufq_move(new, old);
1554 1.315 yamt wd->sc_q = new;
1555 1.430 jdolecek mutex_exit(&wd->sc_lock);
1556 1.315 yamt bufq_free(old);
1557 1.315 yamt
1558 1.315 yamt return 0;
1559 1.315 yamt }
1560 1.315 yamt
1561 1.1 cgd default:
1562 1.54 mycroft return ENOTTY;
1563 1.1 cgd }
1564 1.54 mycroft
1565 1.54 mycroft #ifdef DIAGNOSTIC
1566 1.54 mycroft panic("wdioctl: impossible");
1567 1.54 mycroft #endif
1568 1.1 cgd }
1569 1.1 cgd
1570 1.410 dholland static int
1571 1.410 dholland wddiscard(dev_t dev, off_t pos, off_t len)
1572 1.410 dholland {
1573 1.410 dholland struct wd_softc *wd = device_lookup_private(&wd_cd, WDUNIT(dev));
1574 1.410 dholland daddr_t bno;
1575 1.410 dholland long size, done;
1576 1.410 dholland long maxatonce, amount;
1577 1.410 dholland int result;
1578 1.410 dholland
1579 1.410 dholland if (!(wd->sc_params.atap_ata_major & WDC_VER_ATA7)
1580 1.410 dholland || !(wd->sc_params.support_dsm & ATA_SUPPORT_DSM_TRIM)) {
1581 1.410 dholland /* not supported; ignore request */
1582 1.410 dholland ATADEBUG_PRINT(("wddiscard (unsupported)\n"), DEBUG_FUNCS);
1583 1.410 dholland return 0;
1584 1.410 dholland }
1585 1.410 dholland maxatonce = 0xffff; /*wd->sc_params.max_dsm_blocks*/
1586 1.410 dholland
1587 1.410 dholland ATADEBUG_PRINT(("wddiscard\n"), DEBUG_FUNCS);
1588 1.410 dholland
1589 1.410 dholland if ((wd->sc_flags & WDF_LOADED) == 0)
1590 1.410 dholland return EIO;
1591 1.410 dholland
1592 1.410 dholland /* round the start up and the end down */
1593 1.424 jakllsch bno = (pos + wd->sc_blksize - 1) / wd->sc_blksize;
1594 1.424 jakllsch size = ((pos + len) / wd->sc_blksize) - bno;
1595 1.410 dholland
1596 1.410 dholland done = 0;
1597 1.410 dholland while (done < size) {
1598 1.410 dholland amount = size - done;
1599 1.410 dholland if (amount > maxatonce) {
1600 1.410 dholland amount = maxatonce;
1601 1.410 dholland }
1602 1.410 dholland result = wd_trim(wd, WDPART(dev), bno + done, amount);
1603 1.410 dholland if (result) {
1604 1.410 dholland return result;
1605 1.410 dholland }
1606 1.410 dholland done += amount;
1607 1.410 dholland }
1608 1.410 dholland return 0;
1609 1.410 dholland }
1610 1.410 dholland
1611 1.44 mycroft #ifdef B_FORMAT
1612 1.1 cgd int
1613 1.1 cgd wdformat(struct buf *bp)
1614 1.1 cgd {
1615 1.44 mycroft
1616 1.1 cgd bp->b_flags |= B_FORMAT;
1617 1.37 mycroft return wdstrategy(bp);
1618 1.1 cgd }
1619 1.1 cgd #endif
1620 1.1 cgd
1621 1.1 cgd int
1622 1.259 dsl wdsize(dev_t dev)
1623 1.1 cgd {
1624 1.64 mycroft struct wd_softc *wd;
1625 1.208 thorpej int part, omask;
1626 1.108 mycroft int size;
1627 1.163 bouyer
1628 1.289 thorpej ATADEBUG_PRINT(("wdsize\n"), DEBUG_FUNCS);
1629 1.163 bouyer
1630 1.363 tsutsui wd = device_lookup_private(&wd_cd, WDUNIT(dev));
1631 1.158 pk if (wd == NULL)
1632 1.158 pk return (-1);
1633 1.158 pk
1634 1.158 pk part = WDPART(dev);
1635 1.158 pk omask = wd->sc_dk.dk_openmask & (1 << part);
1636 1.158 pk
1637 1.158 pk if (omask == 0 && wdopen(dev, 0, S_IFBLK, NULL) != 0)
1638 1.158 pk return (-1);
1639 1.144 thorpej if (wd->sc_dk.dk_label->d_partitions[part].p_fstype != FS_SWAP)
1640 1.108 mycroft size = -1;
1641 1.108 mycroft else
1642 1.160 thorpej size = wd->sc_dk.dk_label->d_partitions[part].p_size *
1643 1.181 bouyer (wd->sc_dk.dk_label->d_secsize / DEV_BSIZE);
1644 1.158 pk if (omask == 0 && wdclose(dev, 0, S_IFBLK, NULL) != 0)
1645 1.158 pk return (-1);
1646 1.158 pk return (size);
1647 1.1 cgd }
1648 1.1 cgd
1649 1.64 mycroft /*
1650 1.64 mycroft * Dump core after a system crash.
1651 1.64 mycroft */
1652 1.1 cgd int
1653 1.337 christos wddump(dev_t dev, daddr_t blkno, void *va, size_t size)
1654 1.140 cgd {
1655 1.140 cgd struct wd_softc *wd; /* disk unit to do the I/O */
1656 1.181 bouyer struct disklabel *lp; /* disk's disklabel */
1657 1.208 thorpej int part, err;
1658 1.181 bouyer int nblks; /* total number of sectors left to write */
1659 1.430 jdolecek struct ata_xfer *xfer;
1660 1.140 cgd
1661 1.140 cgd /* Check if recursive dump; if so, punt. */
1662 1.116 mycroft if (wddoingadump)
1663 1.116 mycroft return EFAULT;
1664 1.142 mycroft wddoingadump = 1;
1665 1.140 cgd
1666 1.363 tsutsui wd = device_lookup_private(&wd_cd, WDUNIT(dev));
1667 1.208 thorpej if (wd == NULL)
1668 1.208 thorpej return (ENXIO);
1669 1.60 mycroft
1670 1.140 cgd part = WDPART(dev);
1671 1.140 cgd
1672 1.181 bouyer /* Convert to disk sectors. Request must be a multiple of size. */
1673 1.144 thorpej lp = wd->sc_dk.dk_label;
1674 1.142 mycroft if ((size % lp->d_secsize) != 0)
1675 1.140 cgd return EFAULT;
1676 1.142 mycroft nblks = size / lp->d_secsize;
1677 1.142 mycroft blkno = blkno / (lp->d_secsize / DEV_BSIZE);
1678 1.116 mycroft
1679 1.64 mycroft /* Check transfer bounds against partition size. */
1680 1.142 mycroft if ((blkno < 0) || ((blkno + nblks) > lp->d_partitions[part].p_size))
1681 1.259 dsl return EINVAL;
1682 1.140 cgd
1683 1.140 cgd /* Offset block number to start of partition. */
1684 1.142 mycroft blkno += lp->d_partitions[part].p_offset;
1685 1.60 mycroft
1686 1.140 cgd /* Recalibrate, if first dump transfer. */
1687 1.140 cgd if (wddumprecalibrated == 0) {
1688 1.140 cgd wddumprecalibrated = 1;
1689 1.290 thorpej (*wd->atabus->ata_reset_drive)(wd->drvp,
1690 1.400 bouyer AT_POLL | AT_RST_EMERG, NULL);
1691 1.205 bouyer wd->drvp->state = RESET;
1692 1.63 mycroft }
1693 1.259 dsl
1694 1.430 jdolecek xfer = ata_get_xfer_ext(wd->drvp->chnl_softc, 0, 0);
1695 1.430 jdolecek if (xfer == NULL) {
1696 1.430 jdolecek printf("%s: no xfer\n", __func__);
1697 1.430 jdolecek return EAGAIN;
1698 1.430 jdolecek }
1699 1.430 jdolecek
1700 1.430 jdolecek xfer->c_bio.blkno = blkno;
1701 1.430 jdolecek xfer->c_bio.flags = ATA_POLL;
1702 1.308 bouyer if (wd->sc_flags & WDF_LBA48 &&
1703 1.430 jdolecek (xfer->c_bio.blkno + nblks) > wd->sc_capacity28)
1704 1.430 jdolecek xfer->c_bio.flags |= ATA_LBA48;
1705 1.308 bouyer if (wd->sc_flags & WDF_LBA)
1706 1.430 jdolecek xfer->c_bio.flags |= ATA_LBA;
1707 1.430 jdolecek xfer->c_bio.bcount = nblks * lp->d_secsize;
1708 1.430 jdolecek xfer->c_bio.databuf = va;
1709 1.181 bouyer #ifndef WD_DUMP_NOT_TRUSTED
1710 1.430 jdolecek switch (err = wd->atabus->ata_bio(wd->drvp, xfer)) {
1711 1.308 bouyer case ATACMD_TRY_AGAIN:
1712 1.308 bouyer panic("wddump: try again");
1713 1.308 bouyer break;
1714 1.308 bouyer case ATACMD_QUEUED:
1715 1.308 bouyer panic("wddump: polled command has been queued");
1716 1.308 bouyer break;
1717 1.308 bouyer case ATACMD_COMPLETE:
1718 1.308 bouyer break;
1719 1.365 christos default:
1720 1.365 christos panic("wddump: unknown atacmd code %d", err);
1721 1.308 bouyer }
1722 1.430 jdolecek switch(err = xfer->c_bio.error) {
1723 1.308 bouyer case TIMEOUT:
1724 1.308 bouyer printf("wddump: device timed out");
1725 1.308 bouyer err = EIO;
1726 1.308 bouyer break;
1727 1.308 bouyer case ERR_DF:
1728 1.308 bouyer printf("wddump: drive fault");
1729 1.308 bouyer err = EIO;
1730 1.308 bouyer break;
1731 1.308 bouyer case ERR_DMA:
1732 1.308 bouyer printf("wddump: DMA error");
1733 1.308 bouyer err = EIO;
1734 1.308 bouyer break;
1735 1.308 bouyer case ERROR:
1736 1.308 bouyer printf("wddump: ");
1737 1.430 jdolecek wdperror(wd, xfer);
1738 1.308 bouyer err = EIO;
1739 1.308 bouyer break;
1740 1.308 bouyer case NOERROR:
1741 1.308 bouyer err = 0;
1742 1.308 bouyer break;
1743 1.308 bouyer default:
1744 1.425 jakllsch panic("wddump: unknown error type %d", err);
1745 1.308 bouyer }
1746 1.430 jdolecek
1747 1.308 bouyer if (err != 0) {
1748 1.308 bouyer printf("\n");
1749 1.308 bouyer return err;
1750 1.308 bouyer }
1751 1.140 cgd #else /* WD_DUMP_NOT_TRUSTED */
1752 1.308 bouyer /* Let's just talk about this first... */
1753 1.308 bouyer printf("wd%d: dump addr 0x%x, cylin %d, head %d, sector %d\n",
1754 1.308 bouyer unit, va, cylin, head, sector);
1755 1.308 bouyer delay(500 * 1000); /* half a second */
1756 1.140 cgd #endif
1757 1.1 cgd
1758 1.140 cgd wddoingadump = 0;
1759 1.140 cgd return 0;
1760 1.140 cgd }
1761 1.3 deraadt
1762 1.170 leo #ifdef HAS_BAD144_HANDLING
1763 1.3 deraadt /*
1764 1.3 deraadt * Internalize the bad sector table.
1765 1.3 deraadt */
1766 1.3 deraadt void
1767 1.259 dsl bad144intern(struct wd_softc *wd)
1768 1.3 deraadt {
1769 1.144 thorpej struct dkbad *bt = &wd->sc_dk.dk_cpulabel->bad;
1770 1.144 thorpej struct disklabel *lp = wd->sc_dk.dk_label;
1771 1.98 mycroft int i = 0;
1772 1.55 mycroft
1773 1.289 thorpej ATADEBUG_PRINT(("bad144intern\n"), DEBUG_XFERS);
1774 1.163 bouyer
1775 1.170 leo for (; i < NBT_BAD; i++) {
1776 1.98 mycroft if (bt->bt_bad[i].bt_cyl == 0xffff)
1777 1.55 mycroft break;
1778 1.430 jdolecek wd->drvp->badsect[i] =
1779 1.98 mycroft bt->bt_bad[i].bt_cyl * lp->d_secpercyl +
1780 1.98 mycroft (bt->bt_bad[i].bt_trksec >> 8) * lp->d_nsectors +
1781 1.98 mycroft (bt->bt_bad[i].bt_trksec & 0xff);
1782 1.3 deraadt }
1783 1.170 leo for (; i < NBT_BAD+1; i++)
1784 1.430 jdolecek wd->drvp->badsect[i] = -1;
1785 1.64 mycroft }
1786 1.170 leo #endif
1787 1.64 mycroft
1788 1.330 thorpej static void
1789 1.422 jakllsch wd_params_to_properties(struct wd_softc *wd)
1790 1.330 thorpej {
1791 1.403 christos struct disk_geom *dg = &wd->sc_dk.dk_geom;
1792 1.330 thorpej
1793 1.403 christos memset(dg, 0, sizeof(*dg));
1794 1.330 thorpej
1795 1.403 christos dg->dg_secperunit = wd->sc_capacity;
1796 1.424 jakllsch dg->dg_secsize = wd->sc_blksize;
1797 1.403 christos dg->dg_nsectors = wd->sc_params.atap_sectors;
1798 1.403 christos dg->dg_ntracks = wd->sc_params.atap_heads;
1799 1.403 christos if ((wd->sc_flags & WDF_LBA) == 0)
1800 1.403 christos dg->dg_ncylinders = wd->sc_params.atap_cylinders;
1801 1.403 christos
1802 1.403 christos /* XXX Should have a case for ATA here, too. */
1803 1.403 christos const char *cp = strcmp(wd->sc_params.atap_model, "ST506") ?
1804 1.403 christos "ST506" : "ESDI";
1805 1.332 thorpej
1806 1.403 christos disk_set_info(wd->sc_dev, &wd->sc_dk, cp);
1807 1.330 thorpej }
1808 1.330 thorpej
1809 1.181 bouyer int
1810 1.413 matt wd_get_params(struct wd_softc *wd, uint8_t flags, struct ataparams *params)
1811 1.63 mycroft {
1812 1.350 itohy
1813 1.217 bouyer switch (wd->atabus->ata_get_params(wd->drvp, flags, params)) {
1814 1.181 bouyer case CMD_AGAIN:
1815 1.181 bouyer return 1;
1816 1.181 bouyer case CMD_ERR:
1817 1.400 bouyer if (wd->drvp->drive_type != ATA_DRIVET_OLD)
1818 1.400 bouyer return 1;
1819 1.181 bouyer /*
1820 1.181 bouyer * We `know' there's a drive here; just assume it's old.
1821 1.181 bouyer * This geometry is only used to read the MBR and print a
1822 1.181 bouyer * (false) attach message.
1823 1.181 bouyer */
1824 1.181 bouyer strncpy(params->atap_model, "ST506",
1825 1.181 bouyer sizeof params->atap_model);
1826 1.181 bouyer params->atap_config = ATA_CFG_FIXED;
1827 1.181 bouyer params->atap_cylinders = 1024;
1828 1.181 bouyer params->atap_heads = 8;
1829 1.181 bouyer params->atap_sectors = 17;
1830 1.181 bouyer params->atap_multi = 1;
1831 1.181 bouyer params->atap_capabilities1 = params->atap_capabilities2 = 0;
1832 1.190 bouyer wd->drvp->ata_vers = -1; /* Mark it as pre-ATA */
1833 1.330 thorpej /* FALLTHROUGH */
1834 1.181 bouyer case CMD_OK:
1835 1.181 bouyer return 0;
1836 1.181 bouyer default:
1837 1.181 bouyer panic("wd_get_params: bad return code from ata_get_params");
1838 1.181 bouyer /* NOTREACHED */
1839 1.181 bouyer }
1840 1.248 bouyer }
1841 1.248 bouyer
1842 1.248 bouyer int
1843 1.259 dsl wd_getcache(struct wd_softc *wd, int *bitsp)
1844 1.248 bouyer {
1845 1.248 bouyer struct ataparams params;
1846 1.248 bouyer
1847 1.248 bouyer if (wd_get_params(wd, AT_WAIT, ¶ms) != 0)
1848 1.248 bouyer return EIO;
1849 1.248 bouyer if (params.atap_cmd_set1 == 0x0000 ||
1850 1.248 bouyer params.atap_cmd_set1 == 0xffff ||
1851 1.248 bouyer (params.atap_cmd_set1 & WDC_CMD1_CACHE) == 0) {
1852 1.248 bouyer *bitsp = 0;
1853 1.248 bouyer return 0;
1854 1.248 bouyer }
1855 1.248 bouyer *bitsp = DKCACHE_WCHANGE | DKCACHE_READ;
1856 1.248 bouyer if (params.atap_cmd1_en & WDC_CMD1_CACHE)
1857 1.248 bouyer *bitsp |= DKCACHE_WRITE;
1858 1.248 bouyer
1859 1.430 jdolecek if (WD_USE_NCQ(wd) || (wd->drvp->drive_flags & ATA_DRIVE_WFUA))
1860 1.430 jdolecek *bitsp |= DKCACHE_FUA;
1861 1.430 jdolecek
1862 1.248 bouyer return 0;
1863 1.248 bouyer }
1864 1.248 bouyer
1865 1.286 mycroft const char at_errbits[] = "\20\10ERROR\11TIMEOU\12DF";
1866 1.286 mycroft
1867 1.248 bouyer int
1868 1.259 dsl wd_setcache(struct wd_softc *wd, int bits)
1869 1.248 bouyer {
1870 1.248 bouyer struct ataparams params;
1871 1.430 jdolecek struct ata_xfer *xfer;
1872 1.430 jdolecek int error;
1873 1.248 bouyer
1874 1.248 bouyer if (wd_get_params(wd, AT_WAIT, ¶ms) != 0)
1875 1.248 bouyer return EIO;
1876 1.248 bouyer
1877 1.248 bouyer if (params.atap_cmd_set1 == 0x0000 ||
1878 1.250 bouyer params.atap_cmd_set1 == 0xffff ||
1879 1.248 bouyer (params.atap_cmd_set1 & WDC_CMD1_CACHE) == 0)
1880 1.248 bouyer return EOPNOTSUPP;
1881 1.248 bouyer
1882 1.249 bouyer if ((bits & DKCACHE_READ) == 0 ||
1883 1.249 bouyer (bits & DKCACHE_SAVE) != 0)
1884 1.248 bouyer return EOPNOTSUPP;
1885 1.248 bouyer
1886 1.430 jdolecek xfer = ata_get_xfer(wd->drvp->chnl_softc);
1887 1.430 jdolecek if (xfer == NULL)
1888 1.430 jdolecek return EINTR;
1889 1.430 jdolecek
1890 1.430 jdolecek xfer->c_ata_c.r_command = SET_FEATURES;
1891 1.430 jdolecek xfer->c_ata_c.r_st_bmask = 0;
1892 1.430 jdolecek xfer->c_ata_c.r_st_pmask = 0;
1893 1.430 jdolecek xfer->c_ata_c.timeout = 30000; /* 30s timeout */
1894 1.430 jdolecek xfer->c_ata_c.flags = AT_WAIT;
1895 1.248 bouyer if (bits & DKCACHE_WRITE)
1896 1.430 jdolecek xfer->c_ata_c.r_features = WDSF_WRITE_CACHE_EN;
1897 1.248 bouyer else
1898 1.430 jdolecek xfer->c_ata_c.r_features = WDSF_WRITE_CACHE_DS;
1899 1.430 jdolecek if (wd->atabus->ata_exec_command(wd->drvp, xfer) != ATACMD_COMPLETE) {
1900 1.360 cube aprint_error_dev(wd->sc_dev,
1901 1.360 cube "wd_setcache command not complete\n");
1902 1.430 jdolecek error = EIO;
1903 1.430 jdolecek goto out;
1904 1.248 bouyer }
1905 1.430 jdolecek
1906 1.430 jdolecek if (xfer->c_ata_c.flags & (AT_ERROR | AT_TIMEOU | AT_DF)) {
1907 1.286 mycroft char sbuf[sizeof(at_errbits) + 64];
1908 1.430 jdolecek snprintb(sbuf, sizeof(sbuf), at_errbits, xfer->c_ata_c.flags);
1909 1.360 cube aprint_error_dev(wd->sc_dev, "wd_setcache: status=%s\n", sbuf);
1910 1.430 jdolecek error = EIO;
1911 1.430 jdolecek goto out;
1912 1.286 mycroft }
1913 1.430 jdolecek
1914 1.430 jdolecek error = 0;
1915 1.430 jdolecek
1916 1.430 jdolecek out:
1917 1.430 jdolecek ata_free_xfer(wd->drvp->chnl_softc, xfer);
1918 1.430 jdolecek ata_channel_start(wd->drvp->chnl_softc, wd->drvp->drive);
1919 1.430 jdolecek return error;
1920 1.286 mycroft }
1921 1.286 mycroft
1922 1.351 jmcneill static int
1923 1.286 mycroft wd_standby(struct wd_softc *wd, int flags)
1924 1.286 mycroft {
1925 1.430 jdolecek struct ata_xfer *xfer;
1926 1.430 jdolecek int error;
1927 1.286 mycroft
1928 1.430 jdolecek xfer = ata_get_xfer(wd->drvp->chnl_softc);
1929 1.430 jdolecek if (xfer == NULL)
1930 1.430 jdolecek return EINTR;
1931 1.430 jdolecek
1932 1.430 jdolecek xfer->c_ata_c.r_command = WDCC_STANDBY_IMMED;
1933 1.430 jdolecek xfer->c_ata_c.r_st_bmask = WDCS_DRDY;
1934 1.430 jdolecek xfer->c_ata_c.r_st_pmask = WDCS_DRDY;
1935 1.430 jdolecek xfer->c_ata_c.flags = flags;
1936 1.430 jdolecek xfer->c_ata_c.timeout = 30000; /* 30s timeout */
1937 1.430 jdolecek if (wd->atabus->ata_exec_command(wd->drvp, xfer) != ATACMD_COMPLETE) {
1938 1.360 cube aprint_error_dev(wd->sc_dev,
1939 1.351 jmcneill "standby immediate command didn't complete\n");
1940 1.430 jdolecek error = EIO;
1941 1.430 jdolecek goto out;
1942 1.286 mycroft }
1943 1.430 jdolecek if (xfer->c_ata_c.flags & AT_ERROR) {
1944 1.430 jdolecek if (xfer->c_ata_c.r_error == WDCE_ABRT) {
1945 1.430 jdolecek /* command not supported */
1946 1.430 jdolecek error = ENODEV;
1947 1.430 jdolecek goto out;
1948 1.430 jdolecek }
1949 1.286 mycroft }
1950 1.430 jdolecek if (xfer->c_ata_c.flags & (AT_ERROR | AT_TIMEOU | AT_DF)) {
1951 1.286 mycroft char sbuf[sizeof(at_errbits) + 64];
1952 1.430 jdolecek snprintb(sbuf, sizeof(sbuf), at_errbits, xfer->c_ata_c.flags);
1953 1.360 cube aprint_error_dev(wd->sc_dev, "wd_standby: status=%s\n", sbuf);
1954 1.430 jdolecek error = EIO;
1955 1.430 jdolecek goto out;
1956 1.248 bouyer }
1957 1.430 jdolecek error = 0;
1958 1.430 jdolecek
1959 1.430 jdolecek out:
1960 1.430 jdolecek ata_free_xfer(wd->drvp->chnl_softc, xfer);
1961 1.430 jdolecek /* drive is supposed to go idle, do not call ata_channel_start() */
1962 1.430 jdolecek return error;
1963 1.190 bouyer }
1964 1.190 bouyer
1965 1.276 bouyer int
1966 1.430 jdolecek wd_flushcache(struct wd_softc *wd, int flags, bool start)
1967 1.190 bouyer {
1968 1.430 jdolecek struct ata_xfer *xfer;
1969 1.430 jdolecek int error;
1970 1.190 bouyer
1971 1.297 bouyer /*
1972 1.297 bouyer * WDCC_FLUSHCACHE is here since ATA-4, but some drives report
1973 1.297 bouyer * only ATA-2 and still support it.
1974 1.297 bouyer */
1975 1.297 bouyer if (wd->drvp->ata_vers < 4 &&
1976 1.297 bouyer ((wd->sc_params.atap_cmd_set2 & WDC_CMD2_FC) == 0 ||
1977 1.297 bouyer wd->sc_params.atap_cmd_set2 == 0xffff))
1978 1.276 bouyer return ENODEV;
1979 1.430 jdolecek
1980 1.430 jdolecek mutex_enter(&wd->sc_lock);
1981 1.430 jdolecek SET(wd->sc_flags, WDF_FLUSH_PEND);
1982 1.430 jdolecek mutex_exit(&wd->sc_lock);
1983 1.430 jdolecek
1984 1.430 jdolecek xfer = ata_get_xfer(wd->drvp->chnl_softc);
1985 1.430 jdolecek
1986 1.430 jdolecek mutex_enter(&wd->sc_lock);
1987 1.430 jdolecek CLR(wd->sc_flags, WDF_FLUSH_PEND);
1988 1.430 jdolecek mutex_exit(&wd->sc_lock);
1989 1.430 jdolecek
1990 1.430 jdolecek if (xfer == NULL) {
1991 1.430 jdolecek error = EINTR;
1992 1.430 jdolecek goto out;
1993 1.430 jdolecek }
1994 1.430 jdolecek
1995 1.275 bouyer if ((wd->sc_params.atap_cmd2_en & ATA_CMD2_LBA48) != 0 &&
1996 1.397 jakllsch (wd->sc_params.atap_cmd2_en & ATA_CMD2_FCE) != 0) {
1997 1.430 jdolecek xfer->c_ata_c.r_command = WDCC_FLUSHCACHE_EXT;
1998 1.397 jakllsch flags |= AT_LBA48;
1999 1.397 jakllsch } else
2000 1.430 jdolecek xfer->c_ata_c.r_command = WDCC_FLUSHCACHE;
2001 1.430 jdolecek xfer->c_ata_c.r_st_bmask = WDCS_DRDY;
2002 1.430 jdolecek xfer->c_ata_c.r_st_pmask = WDCS_DRDY;
2003 1.430 jdolecek xfer->c_ata_c.flags = flags | AT_READREG;
2004 1.430 jdolecek xfer->c_ata_c.timeout = 300000; /* 5m timeout */
2005 1.430 jdolecek if (wd->atabus->ata_exec_command(wd->drvp, xfer) != ATACMD_COMPLETE) {
2006 1.360 cube aprint_error_dev(wd->sc_dev,
2007 1.360 cube "flush cache command didn't complete\n");
2008 1.430 jdolecek error = EIO;
2009 1.430 jdolecek goto out_xfer;
2010 1.190 bouyer }
2011 1.430 jdolecek if (xfer->c_ata_c.flags & AT_ERROR) {
2012 1.430 jdolecek if (xfer->c_ata_c.r_error == WDCE_ABRT) {
2013 1.430 jdolecek /* command not supported */
2014 1.430 jdolecek error = ENODEV;
2015 1.430 jdolecek goto out_xfer;
2016 1.430 jdolecek }
2017 1.190 bouyer }
2018 1.430 jdolecek if (xfer->c_ata_c.flags & (AT_ERROR | AT_TIMEOU | AT_DF)) {
2019 1.286 mycroft char sbuf[sizeof(at_errbits) + 64];
2020 1.430 jdolecek snprintb(sbuf, sizeof(sbuf), at_errbits, xfer->c_ata_c.flags);
2021 1.360 cube aprint_error_dev(wd->sc_dev, "wd_flushcache: status=%s\n",
2022 1.286 mycroft sbuf);
2023 1.430 jdolecek error = EIO;
2024 1.430 jdolecek goto out_xfer;
2025 1.190 bouyer }
2026 1.430 jdolecek error = 0;
2027 1.430 jdolecek
2028 1.430 jdolecek out_xfer:
2029 1.430 jdolecek ata_free_xfer(wd->drvp->chnl_softc, xfer);
2030 1.430 jdolecek
2031 1.430 jdolecek out:
2032 1.430 jdolecek /* kick queue processing blocked while waiting for flush xfer */
2033 1.430 jdolecek if (start)
2034 1.430 jdolecek ata_channel_start(wd->drvp->chnl_softc, wd->drvp->drive);
2035 1.430 jdolecek
2036 1.430 jdolecek return error;
2037 1.190 bouyer }
2038 1.190 bouyer
2039 1.401 drochner int
2040 1.410 dholland wd_trim(struct wd_softc *wd, int part, daddr_t bno, long size)
2041 1.401 drochner {
2042 1.430 jdolecek struct ata_xfer *xfer;
2043 1.430 jdolecek int error;
2044 1.401 drochner unsigned char *req;
2045 1.401 drochner
2046 1.401 drochner if (part != RAW_PART)
2047 1.401 drochner bno += wd->sc_dk.dk_label->d_partitions[part].p_offset;;
2048 1.401 drochner
2049 1.430 jdolecek xfer = ata_get_xfer(wd->drvp->chnl_softc);
2050 1.430 jdolecek if (xfer == NULL)
2051 1.430 jdolecek return EINTR;
2052 1.430 jdolecek
2053 1.401 drochner req = kmem_zalloc(512, KM_SLEEP);
2054 1.401 drochner req[0] = bno & 0xff;
2055 1.401 drochner req[1] = (bno >> 8) & 0xff;
2056 1.401 drochner req[2] = (bno >> 16) & 0xff;
2057 1.401 drochner req[3] = (bno >> 24) & 0xff;
2058 1.401 drochner req[4] = (bno >> 32) & 0xff;
2059 1.401 drochner req[5] = (bno >> 40) & 0xff;
2060 1.410 dholland req[6] = size & 0xff;
2061 1.410 dholland req[7] = (size >> 8) & 0xff;
2062 1.401 drochner
2063 1.430 jdolecek xfer->c_ata_c.r_command = ATA_DATA_SET_MANAGEMENT;
2064 1.430 jdolecek xfer->c_ata_c.r_count = 1;
2065 1.430 jdolecek xfer->c_ata_c.r_features = ATA_SUPPORT_DSM_TRIM;
2066 1.430 jdolecek xfer->c_ata_c.r_st_bmask = WDCS_DRDY;
2067 1.430 jdolecek xfer->c_ata_c.r_st_pmask = WDCS_DRDY;
2068 1.430 jdolecek xfer->c_ata_c.timeout = 30000; /* 30s timeout */
2069 1.430 jdolecek xfer->c_ata_c.data = req;
2070 1.430 jdolecek xfer->c_ata_c.bcount = 512;
2071 1.430 jdolecek xfer->c_ata_c.flags |= AT_WRITE | AT_WAIT;
2072 1.430 jdolecek if (wd->atabus->ata_exec_command(wd->drvp, xfer) != ATACMD_COMPLETE) {
2073 1.401 drochner aprint_error_dev(wd->sc_dev,
2074 1.401 drochner "trim command didn't complete\n");
2075 1.401 drochner kmem_free(req, 512);
2076 1.430 jdolecek error = EIO;
2077 1.430 jdolecek goto out;
2078 1.401 drochner }
2079 1.401 drochner kmem_free(req, 512);
2080 1.430 jdolecek if (xfer->c_ata_c.flags & AT_ERROR) {
2081 1.430 jdolecek if (xfer->c_ata_c.r_error == WDCE_ABRT) {
2082 1.430 jdolecek /* command not supported */
2083 1.430 jdolecek error = ENODEV;
2084 1.430 jdolecek goto out;
2085 1.430 jdolecek }
2086 1.401 drochner }
2087 1.430 jdolecek if (xfer->c_ata_c.flags & (AT_ERROR | AT_TIMEOU | AT_DF)) {
2088 1.401 drochner char sbuf[sizeof(at_errbits) + 64];
2089 1.430 jdolecek snprintb(sbuf, sizeof(sbuf), at_errbits, xfer->c_ata_c.flags);
2090 1.401 drochner aprint_error_dev(wd->sc_dev, "wd_trim: status=%s\n",
2091 1.401 drochner sbuf);
2092 1.430 jdolecek error = EIO;
2093 1.430 jdolecek goto out;
2094 1.401 drochner }
2095 1.430 jdolecek error = 0;
2096 1.430 jdolecek
2097 1.430 jdolecek out:
2098 1.430 jdolecek ata_free_xfer(wd->drvp->chnl_softc, xfer);
2099 1.430 jdolecek ata_channel_start(wd->drvp->chnl_softc, wd->drvp->drive);
2100 1.430 jdolecek return error;
2101 1.401 drochner }
2102 1.401 drochner
2103 1.357 drochner bool
2104 1.357 drochner wd_shutdown(device_t dev, int how)
2105 1.356 drochner {
2106 1.368 drochner struct wd_softc *wd = device_private(dev);
2107 1.368 drochner
2108 1.368 drochner /* the adapter needs to be enabled */
2109 1.368 drochner if (wd->atabus->ata_addref(wd->drvp))
2110 1.368 drochner return true; /* no need to complain */
2111 1.356 drochner
2112 1.430 jdolecek wd_flushcache(wd, AT_POLL, false);
2113 1.357 drochner if ((how & RB_POWERDOWN) == RB_POWERDOWN)
2114 1.356 drochner wd_standby(wd, AT_POLL);
2115 1.357 drochner return true;
2116 1.356 drochner }
2117 1.356 drochner
2118 1.185 kenh /*
2119 1.185 kenh * Allocate space for a ioctl queue structure. Mostly taken from
2120 1.185 kenh * scsipi_ioctl.c
2121 1.185 kenh */
2122 1.185 kenh struct wd_ioctl *
2123 1.430 jdolecek wi_get(struct wd_softc *wd)
2124 1.185 kenh {
2125 1.185 kenh struct wd_ioctl *wi;
2126 1.185 kenh
2127 1.219 tsutsui wi = malloc(sizeof(struct wd_ioctl), M_TEMP, M_WAITOK|M_ZERO);
2128 1.430 jdolecek wi->wi_softc = wd;
2129 1.355 ad buf_init(&wi->wi_bp);
2130 1.430 jdolecek
2131 1.185 kenh return (wi);
2132 1.185 kenh }
2133 1.185 kenh
2134 1.185 kenh /*
2135 1.185 kenh * Free an ioctl structure and remove it from our list
2136 1.185 kenh */
2137 1.185 kenh
2138 1.185 kenh void
2139 1.259 dsl wi_free(struct wd_ioctl *wi)
2140 1.185 kenh {
2141 1.355 ad buf_destroy(&wi->wi_bp);
2142 1.185 kenh free(wi, M_TEMP);
2143 1.185 kenh }
2144 1.185 kenh
2145 1.185 kenh /*
2146 1.185 kenh * Find a wd_ioctl structure based on the struct buf.
2147 1.185 kenh */
2148 1.185 kenh
2149 1.185 kenh struct wd_ioctl *
2150 1.259 dsl wi_find(struct buf *bp)
2151 1.185 kenh {
2152 1.430 jdolecek return container_of(bp, struct wd_ioctl, wi_bp);
2153 1.185 kenh }
2154 1.185 kenh
2155 1.424 jakllsch static uint
2156 1.424 jakllsch wi_sector_size(const struct wd_ioctl * const wi)
2157 1.424 jakllsch {
2158 1.424 jakllsch switch (wi->wi_atareq.command) {
2159 1.424 jakllsch case WDCC_READ:
2160 1.424 jakllsch case WDCC_WRITE:
2161 1.424 jakllsch case WDCC_READMULTI:
2162 1.424 jakllsch case WDCC_WRITEMULTI:
2163 1.424 jakllsch case WDCC_READDMA:
2164 1.424 jakllsch case WDCC_WRITEDMA:
2165 1.424 jakllsch case WDCC_READ_EXT:
2166 1.424 jakllsch case WDCC_WRITE_EXT:
2167 1.424 jakllsch case WDCC_READMULTI_EXT:
2168 1.424 jakllsch case WDCC_WRITEMULTI_EXT:
2169 1.424 jakllsch case WDCC_READDMA_EXT:
2170 1.424 jakllsch case WDCC_WRITEDMA_EXT:
2171 1.424 jakllsch case WDCC_READ_FPDMA_QUEUED:
2172 1.424 jakllsch case WDCC_WRITE_FPDMA_QUEUED:
2173 1.424 jakllsch return wi->wi_softc->sc_blksize;
2174 1.424 jakllsch default:
2175 1.424 jakllsch return 512;
2176 1.424 jakllsch }
2177 1.424 jakllsch }
2178 1.424 jakllsch
2179 1.185 kenh /*
2180 1.185 kenh * Ioctl pseudo strategy routine
2181 1.185 kenh *
2182 1.185 kenh * This is mostly stolen from scsipi_ioctl.c:scsistrategy(). What
2183 1.185 kenh * happens here is:
2184 1.185 kenh *
2185 1.185 kenh * - wdioctl() queues a wd_ioctl structure.
2186 1.185 kenh *
2187 1.185 kenh * - wdioctl() calls physio/wdioctlstrategy based on whether or not
2188 1.185 kenh * user space I/O is required. If physio() is called, physio() eventually
2189 1.185 kenh * calls wdioctlstrategy().
2190 1.185 kenh *
2191 1.217 bouyer * - In either case, wdioctlstrategy() calls wd->atabus->ata_exec_command()
2192 1.185 kenh * to perform the actual command
2193 1.185 kenh *
2194 1.185 kenh * The reason for the use of the pseudo strategy routine is because
2195 1.185 kenh * when doing I/O to/from user space, physio _really_ wants to be in
2196 1.185 kenh * the loop. We could put the entire buffer into the ioctl request
2197 1.185 kenh * structure, but that won't scale if we want to do things like download
2198 1.185 kenh * microcode.
2199 1.185 kenh */
2200 1.185 kenh
2201 1.185 kenh void
2202 1.259 dsl wdioctlstrategy(struct buf *bp)
2203 1.185 kenh {
2204 1.185 kenh struct wd_ioctl *wi;
2205 1.430 jdolecek struct ata_xfer *xfer;
2206 1.185 kenh int error = 0;
2207 1.185 kenh
2208 1.185 kenh wi = wi_find(bp);
2209 1.185 kenh if (wi == NULL) {
2210 1.313 martin printf("wdioctlstrategy: "
2211 1.313 martin "No matching ioctl request found in queue\n");
2212 1.185 kenh error = EINVAL;
2213 1.430 jdolecek goto out2;
2214 1.185 kenh }
2215 1.185 kenh
2216 1.430 jdolecek xfer = ata_get_xfer(wi->wi_softc->drvp->chnl_softc);
2217 1.430 jdolecek if (xfer == NULL) {
2218 1.430 jdolecek error = EINTR;
2219 1.430 jdolecek goto out2;
2220 1.430 jdolecek }
2221 1.185 kenh
2222 1.185 kenh /*
2223 1.185 kenh * Abort if physio broke up the transfer
2224 1.185 kenh */
2225 1.185 kenh
2226 1.186 kenh if (bp->b_bcount != wi->wi_atareq.datalen) {
2227 1.185 kenh printf("physio split wd ioctl request... cannot proceed\n");
2228 1.185 kenh error = EIO;
2229 1.430 jdolecek goto out;
2230 1.185 kenh }
2231 1.185 kenh
2232 1.185 kenh /*
2233 1.185 kenh * Abort if we didn't get a buffer size that was a multiple of
2234 1.424 jakllsch * our sector size (or overflows CHS/LBA28 sector count)
2235 1.185 kenh */
2236 1.185 kenh
2237 1.424 jakllsch if ((bp->b_bcount % wi_sector_size(wi)) != 0 ||
2238 1.424 jakllsch (bp->b_bcount / wi_sector_size(wi)) >=
2239 1.185 kenh (1 << NBBY)) {
2240 1.185 kenh error = EINVAL;
2241 1.430 jdolecek goto out;
2242 1.185 kenh }
2243 1.185 kenh
2244 1.185 kenh /*
2245 1.185 kenh * Make sure a timeout was supplied in the ioctl request
2246 1.185 kenh */
2247 1.185 kenh
2248 1.186 kenh if (wi->wi_atareq.timeout == 0) {
2249 1.185 kenh error = EINVAL;
2250 1.430 jdolecek goto out;
2251 1.185 kenh }
2252 1.185 kenh
2253 1.186 kenh if (wi->wi_atareq.flags & ATACMD_READ)
2254 1.430 jdolecek xfer->c_ata_c.flags |= AT_READ;
2255 1.186 kenh else if (wi->wi_atareq.flags & ATACMD_WRITE)
2256 1.430 jdolecek xfer->c_ata_c.flags |= AT_WRITE;
2257 1.185 kenh
2258 1.188 kenh if (wi->wi_atareq.flags & ATACMD_READREG)
2259 1.430 jdolecek xfer->c_ata_c.flags |= AT_READREG;
2260 1.188 kenh
2261 1.391 jakllsch if ((wi->wi_atareq.flags & ATACMD_LBA) != 0)
2262 1.430 jdolecek xfer->c_ata_c.flags |= AT_LBA;
2263 1.391 jakllsch
2264 1.430 jdolecek xfer->c_ata_c.flags |= AT_WAIT;
2265 1.185 kenh
2266 1.430 jdolecek xfer->c_ata_c.timeout = wi->wi_atareq.timeout;
2267 1.430 jdolecek xfer->c_ata_c.r_command = wi->wi_atareq.command;
2268 1.430 jdolecek xfer->c_ata_c.r_lba = ((wi->wi_atareq.head & 0x0f) << 24) |
2269 1.391 jakllsch (wi->wi_atareq.cylinder << 8) |
2270 1.391 jakllsch wi->wi_atareq.sec_num;
2271 1.430 jdolecek xfer->c_ata_c.r_count = wi->wi_atareq.sec_count;
2272 1.430 jdolecek xfer->c_ata_c.r_features = wi->wi_atareq.features;
2273 1.430 jdolecek xfer->c_ata_c.r_st_bmask = WDCS_DRDY;
2274 1.430 jdolecek xfer->c_ata_c.r_st_pmask = WDCS_DRDY;
2275 1.430 jdolecek xfer->c_ata_c.data = wi->wi_bp.b_data;
2276 1.430 jdolecek xfer->c_ata_c.bcount = wi->wi_bp.b_bcount;
2277 1.185 kenh
2278 1.430 jdolecek if (wi->wi_softc->atabus->ata_exec_command(wi->wi_softc->drvp, xfer)
2279 1.288 thorpej != ATACMD_COMPLETE) {
2280 1.186 kenh wi->wi_atareq.retsts = ATACMD_ERROR;
2281 1.430 jdolecek error = EIO;
2282 1.430 jdolecek goto out;
2283 1.185 kenh }
2284 1.185 kenh
2285 1.430 jdolecek if (xfer->c_ata_c.flags & (AT_ERROR | AT_TIMEOU | AT_DF)) {
2286 1.430 jdolecek if (xfer->c_ata_c.flags & AT_ERROR) {
2287 1.186 kenh wi->wi_atareq.retsts = ATACMD_ERROR;
2288 1.430 jdolecek wi->wi_atareq.error = xfer->c_ata_c.r_error;
2289 1.430 jdolecek } else if (xfer->c_ata_c.flags & AT_DF)
2290 1.186 kenh wi->wi_atareq.retsts = ATACMD_DF;
2291 1.185 kenh else
2292 1.186 kenh wi->wi_atareq.retsts = ATACMD_TIMEOUT;
2293 1.188 kenh } else {
2294 1.186 kenh wi->wi_atareq.retsts = ATACMD_OK;
2295 1.188 kenh if (wi->wi_atareq.flags & ATACMD_READREG) {
2296 1.430 jdolecek wi->wi_atareq.command = xfer->c_ata_c.r_status;
2297 1.430 jdolecek wi->wi_atareq.features = xfer->c_ata_c.r_error;
2298 1.430 jdolecek wi->wi_atareq.sec_count = xfer->c_ata_c.r_count;
2299 1.430 jdolecek wi->wi_atareq.sec_num = xfer->c_ata_c.r_lba & 0xff;
2300 1.430 jdolecek wi->wi_atareq.head = (xfer->c_ata_c.r_device & 0xf0) |
2301 1.430 jdolecek ((xfer->c_ata_c.r_lba >> 24) & 0x0f);
2302 1.430 jdolecek wi->wi_atareq.cylinder =
2303 1.430 jdolecek (xfer->c_ata_c.r_lba >> 8) & 0xffff;
2304 1.430 jdolecek wi->wi_atareq.error = xfer->c_ata_c.r_error;
2305 1.188 kenh }
2306 1.188 kenh }
2307 1.185 kenh
2308 1.430 jdolecek out:
2309 1.430 jdolecek ata_free_xfer(wi->wi_softc->drvp->chnl_softc, xfer);
2310 1.430 jdolecek ata_channel_start(wi->wi_softc->drvp->chnl_softc,
2311 1.430 jdolecek wi->wi_softc->drvp->drive);
2312 1.430 jdolecek out2:
2313 1.185 kenh bp->b_error = error;
2314 1.430 jdolecek if (error)
2315 1.430 jdolecek bp->b_resid = bp->b_bcount;
2316 1.185 kenh biodone(bp);
2317 1.21 deraadt }
2318 1.430 jdolecek
2319 1.430 jdolecek static void
2320 1.430 jdolecek wd_sysctl_attach(struct wd_softc *wd)
2321 1.430 jdolecek {
2322 1.430 jdolecek const struct sysctlnode *node;
2323 1.430 jdolecek int error;
2324 1.430 jdolecek
2325 1.430 jdolecek /* sysctl set-up */
2326 1.430 jdolecek if (sysctl_createv(&wd->nodelog, 0, NULL, &node,
2327 1.430 jdolecek 0, CTLTYPE_NODE, device_xname(wd->sc_dev),
2328 1.430 jdolecek SYSCTL_DESCR("wd driver settings"),
2329 1.430 jdolecek NULL, 0, NULL, 0,
2330 1.430 jdolecek CTL_HW, CTL_CREATE, CTL_EOL) != 0) {
2331 1.430 jdolecek aprint_error_dev(wd->sc_dev,
2332 1.430 jdolecek "could not create %s.%s sysctl node\n",
2333 1.430 jdolecek "hw", device_xname(wd->sc_dev));
2334 1.430 jdolecek return;
2335 1.430 jdolecek }
2336 1.430 jdolecek
2337 1.430 jdolecek wd->drv_max_tags = ATA_MAX_OPENINGS;
2338 1.430 jdolecek if ((error = sysctl_createv(&wd->nodelog, 0, NULL, NULL,
2339 1.430 jdolecek CTLFLAG_READWRITE, CTLTYPE_INT, "max_tags",
2340 1.430 jdolecek SYSCTL_DESCR("max number of NCQ tags to use"),
2341 1.430 jdolecek NULL, 0, &wd->drv_max_tags, 0,
2342 1.430 jdolecek CTL_HW, node->sysctl_num, CTL_CREATE, CTL_EOL))
2343 1.430 jdolecek != 0) {
2344 1.430 jdolecek aprint_error_dev(wd->sc_dev,
2345 1.430 jdolecek "could not create %s.%s.max_tags sysctl - error %d\n",
2346 1.430 jdolecek "hw", device_xname(wd->sc_dev), error);
2347 1.430 jdolecek return;
2348 1.430 jdolecek }
2349 1.430 jdolecek
2350 1.430 jdolecek wd->drv_ncq = true;
2351 1.430 jdolecek if ((error = sysctl_createv(&wd->nodelog, 0, NULL, NULL,
2352 1.430 jdolecek CTLFLAG_READWRITE, CTLTYPE_BOOL, "use_ncq",
2353 1.430 jdolecek SYSCTL_DESCR("use NCQ if supported"),
2354 1.430 jdolecek NULL, 0, &wd->drv_ncq, 0,
2355 1.430 jdolecek CTL_HW, node->sysctl_num, CTL_CREATE, CTL_EOL))
2356 1.430 jdolecek != 0) {
2357 1.430 jdolecek aprint_error_dev(wd->sc_dev,
2358 1.430 jdolecek "could not create %s.%s.use_ncq sysctl - error %d\n",
2359 1.430 jdolecek "hw", device_xname(wd->sc_dev), error);
2360 1.430 jdolecek return;
2361 1.430 jdolecek }
2362 1.430 jdolecek
2363 1.430 jdolecek wd->drv_ncq_prio = true;
2364 1.430 jdolecek if ((error = sysctl_createv(&wd->nodelog, 0, NULL, NULL,
2365 1.430 jdolecek CTLFLAG_READWRITE, CTLTYPE_BOOL, "use_ncq_prio",
2366 1.430 jdolecek SYSCTL_DESCR("use NCQ PRIORITY if supported"),
2367 1.430 jdolecek NULL, 0, &wd->drv_ncq_prio, 0,
2368 1.430 jdolecek CTL_HW, node->sysctl_num, CTL_CREATE, CTL_EOL))
2369 1.430 jdolecek != 0) {
2370 1.430 jdolecek aprint_error_dev(wd->sc_dev,
2371 1.430 jdolecek "could not create %s.%s.use_ncq_prio sysctl - error %d\n",
2372 1.430 jdolecek "hw", device_xname(wd->sc_dev), error);
2373 1.430 jdolecek return;
2374 1.430 jdolecek }
2375 1.430 jdolecek
2376 1.430 jdolecek #ifdef WD_CHAOS_MONKEY
2377 1.430 jdolecek wd->drv_chaos_freq = 0;
2378 1.430 jdolecek if ((error = sysctl_createv(&wd->nodelog, 0, NULL, NULL,
2379 1.430 jdolecek CTLFLAG_READWRITE, CTLTYPE_INT, "chaos_freq",
2380 1.430 jdolecek SYSCTL_DESCR("simulated bio read error rate"),
2381 1.430 jdolecek NULL, 0, &wd->drv_chaos_freq, 0,
2382 1.430 jdolecek CTL_HW, node->sysctl_num, CTL_CREATE, CTL_EOL))
2383 1.430 jdolecek != 0) {
2384 1.430 jdolecek aprint_error_dev(wd->sc_dev,
2385 1.430 jdolecek "could not create %s.%s.chaos_freq sysctl - error %d\n",
2386 1.430 jdolecek "hw", device_xname(wd->sc_dev), error);
2387 1.430 jdolecek return;
2388 1.430 jdolecek }
2389 1.430 jdolecek
2390 1.430 jdolecek wd->drv_chaos_cnt = 0;
2391 1.430 jdolecek if ((error = sysctl_createv(&wd->nodelog, 0, NULL, NULL,
2392 1.430 jdolecek CTLFLAG_READONLY, CTLTYPE_INT, "chaos_cnt",
2393 1.430 jdolecek SYSCTL_DESCR("number of processed bio reads"),
2394 1.430 jdolecek NULL, 0, &wd->drv_chaos_cnt, 0,
2395 1.430 jdolecek CTL_HW, node->sysctl_num, CTL_CREATE, CTL_EOL))
2396 1.430 jdolecek != 0) {
2397 1.430 jdolecek aprint_error_dev(wd->sc_dev,
2398 1.430 jdolecek "could not create %s.%s.chaos_cnt sysctl - error %d\n",
2399 1.430 jdolecek "hw", device_xname(wd->sc_dev), error);
2400 1.430 jdolecek return;
2401 1.430 jdolecek }
2402 1.430 jdolecek #endif
2403 1.430 jdolecek
2404 1.430 jdolecek }
2405 1.430 jdolecek
2406 1.430 jdolecek static void
2407 1.430 jdolecek wd_sysctl_detach(struct wd_softc *wd)
2408 1.430 jdolecek {
2409 1.430 jdolecek sysctl_teardown(&wd->nodelog);
2410 1.430 jdolecek }
2411 1.430 jdolecek
2412