fd.c revision 1.17 1 1.17 leo /* $NetBSD: fd.c,v 1.17 1996/03/20 12:41:48 leo Exp $ */
2 1.1 leo
3 1.1 leo /*
4 1.1 leo * Copyright (c) 1995 Leo Weppelman.
5 1.1 leo * All rights reserved.
6 1.1 leo *
7 1.1 leo * Redistribution and use in source and binary forms, with or without
8 1.1 leo * modification, are permitted provided that the following conditions
9 1.1 leo * are met:
10 1.1 leo * 1. Redistributions of source code must retain the above copyright
11 1.1 leo * notice, this list of conditions and the following disclaimer.
12 1.1 leo * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 leo * notice, this list of conditions and the following disclaimer in the
14 1.1 leo * documentation and/or other materials provided with the distribution.
15 1.1 leo * 3. All advertising materials mentioning features or use of this software
16 1.1 leo * must display the following acknowledgement:
17 1.1 leo * This product includes software developed by Leo Weppelman.
18 1.1 leo * 4. The name of the author may not be used to endorse or promote products
19 1.1 leo * derived from this software without specific prior written permission
20 1.1 leo *
21 1.1 leo * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.1 leo * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.1 leo * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.1 leo * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.1 leo * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.1 leo * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1 leo * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1 leo * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1 leo * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.1 leo * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 leo */
32 1.1 leo
33 1.1 leo /*
34 1.1 leo * This file contains a driver for the Floppy Disk Controller (FDC)
35 1.1 leo * on the Atari TT. It uses the WD 1772 chip, modified for steprates.
36 1.1 leo *
37 1.1 leo * The ST floppy disk controller shares the access to the DMA circuitry
38 1.1 leo * with other devices. For this reason the floppy disk controller makes
39 1.1 leo * use of some special DMA accessing code.
40 1.1 leo *
41 1.1 leo * Interrupts from the FDC are in fact DMA interrupts which get their
42 1.1 leo * first level handling in 'dma.c' . If the floppy driver is currently
43 1.1 leo * using DMA the interrupt is signalled to 'fdcint'.
44 1.1 leo *
45 1.1 leo * TODO:
46 1.1 leo * - Test it with 2 drives (I don't have them)
47 1.1 leo * - Test it with an HD-drive (Don't have that either)
48 1.1 leo * - Finish ioctl's
49 1.1 leo */
50 1.1 leo
51 1.14 mycroft #include <sys/param.h>
52 1.14 mycroft #include <sys/systm.h>
53 1.14 mycroft #include <sys/kernel.h>
54 1.14 mycroft #include <sys/malloc.h>
55 1.14 mycroft #include <sys/buf.h>
56 1.15 leo #include <sys/proc.h>
57 1.14 mycroft #include <sys/device.h>
58 1.14 mycroft #include <sys/ioctl.h>
59 1.14 mycroft #include <sys/fcntl.h>
60 1.14 mycroft #include <sys/conf.h>
61 1.14 mycroft #include <sys/disklabel.h>
62 1.14 mycroft #include <sys/disk.h>
63 1.14 mycroft #include <sys/dkbad.h>
64 1.14 mycroft #include <atari/atari/device.h>
65 1.14 mycroft #include <machine/disklabel.h>
66 1.14 mycroft #include <machine/iomap.h>
67 1.14 mycroft #include <machine/mfp.h>
68 1.14 mycroft #include <machine/dma.h>
69 1.14 mycroft #include <machine/video.h>
70 1.14 mycroft #include <atari/dev/fdreg.h>
71 1.1 leo
72 1.1 leo /*
73 1.1 leo * Be verbose for debugging
74 1.1 leo */
75 1.4 leo /*#define FLP_DEBUG 1 */
76 1.1 leo
77 1.1 leo #define FDC_MAX_DMA_AD 0x1000000 /* No DMA possible beyond */
78 1.1 leo
79 1.1 leo /* Parameters for the disk drive. */
80 1.1 leo #define SECTOR_SIZE 512 /* physical sector size in bytes */
81 1.1 leo #define NR_DRIVES 2 /* maximum number of drives */
82 1.1 leo #define NR_TYPES 3 /* number of diskette/drive combinations*/
83 1.1 leo #define MAX_ERRORS 10 /* how often to try rd/wt before quitting*/
84 1.1 leo #define STEP_DELAY 6000 /* 6ms (6000us) delay after stepping */
85 1.1 leo
86 1.1 leo
87 1.1 leo #define INV_TRK 32000 /* Should fit in unsigned short */
88 1.1 leo #define INV_PART NR_TYPES
89 1.1 leo
90 1.1 leo /*
91 1.1 leo * Driver states
92 1.1 leo */
93 1.1 leo #define FLP_IDLE 0x00 /* floppy is idle */
94 1.1 leo #define FLP_MON 0x01 /* idle with motor on */
95 1.1 leo #define FLP_STAT 0x02 /* determine floppy status */
96 1.1 leo #define FLP_XFER 0x04 /* read/write data from floppy */
97 1.1 leo
98 1.1 leo /*
99 1.1 leo * Timer delay's
100 1.1 leo */
101 1.1 leo #define FLP_MONDELAY (3 * hz) /* motor-on delay */
102 1.1 leo #define FLP_XFERDELAY (2 * hz) /* timeout on transfer */
103 1.1 leo
104 1.8 leo /*
105 1.8 leo * The density codes
106 1.8 leo */
107 1.8 leo #define FLP_DD 0 /* Double density */
108 1.8 leo #define FLP_HD 1 /* High density */
109 1.8 leo
110 1.1 leo
111 1.1 leo #define b_block b_resid /* FIXME: this is not the place */
112 1.1 leo
113 1.1 leo /*
114 1.1 leo * Global data for all physical floppy devices
115 1.1 leo */
116 1.1 leo static short selected = 0; /* drive/head currently selected*/
117 1.1 leo static short motoron = 0; /* motor is spinning */
118 1.1 leo static short nopens = 0; /* Number of opens executed */
119 1.1 leo
120 1.4 leo static short fd_state = FLP_IDLE; /* Current driver state */
121 1.5 leo static int lock_stat= 0; /* dma locking status */
122 1.1 leo static short fd_cmd = 0; /* command being executed */
123 1.1 leo static char *fd_error= NULL; /* error from fd_xfer_ok() */
124 1.1 leo
125 1.1 leo /*
126 1.1 leo * Private per device data
127 1.1 leo */
128 1.1 leo struct fd_softc {
129 1.13 thorpej struct device sc_dv; /* generic device info */
130 1.13 thorpej struct disk dkdev; /* generic disk info */
131 1.1 leo struct buf bufq; /* queue of buf's */
132 1.1 leo int unit; /* unit for atari controlling hw*/
133 1.1 leo int nheads; /* number of heads in use */
134 1.1 leo int nsectors; /* number of sectors/track */
135 1.8 leo int density; /* density code */
136 1.1 leo int nblocks; /* number of blocks on disk */
137 1.1 leo int curtrk; /* track head positioned on */
138 1.1 leo short flags; /* misc flags */
139 1.1 leo short part; /* Current open partition */
140 1.1 leo int sector; /* logical sector for I/O */
141 1.1 leo caddr_t io_data; /* KVA for data transfer */
142 1.1 leo int io_bytes; /* bytes left for I/O */
143 1.1 leo int io_dir; /* B_READ/B_WRITE */
144 1.1 leo int errcnt; /* current error count */
145 1.1 leo u_char *bounceb; /* Bounce buffer */
146 1.10 mycroft
147 1.1 leo };
148 1.1 leo
149 1.1 leo /*
150 1.1 leo * Flags in fd_softc:
151 1.1 leo */
152 1.4 leo #define FLPF_NOTRESP 0x001 /* Unit not responding */
153 1.4 leo #define FLPF_ISOPEN 0x002 /* Unit is open */
154 1.8 leo #define FLPF_SPARE 0x004 /* Not used */
155 1.4 leo #define FLPF_HAVELAB 0x008 /* We have a valid label */
156 1.4 leo #define FLPF_BOUNCE 0x010 /* Now using the bounce buffer */
157 1.4 leo #define FLPF_WRTPROT 0x020 /* Unit is write-protected */
158 1.4 leo #define FLPF_EMPTY 0x040 /* Unit is empty */
159 1.4 leo #define FLPF_INOPEN 0x080 /* Currently being opened */
160 1.4 leo #define FLPF_GETSTAT 0x100 /* Getting unit status */
161 1.1 leo
162 1.1 leo struct fd_types {
163 1.1 leo int nheads; /* Heads in use */
164 1.1 leo int nsectors; /* sectors per track */
165 1.1 leo int nblocks; /* number of blocks */
166 1.8 leo int density; /* density code */
167 1.1 leo } fdtypes[NR_TYPES] = {
168 1.8 leo { 1, 9, 720 , FLP_DD }, /* 360 Kb */
169 1.8 leo { 2, 9, 1440 , FLP_DD }, /* 720 Kb */
170 1.8 leo { 2, 18, 2880 , FLP_HD }, /* 1.44 Mb */
171 1.1 leo };
172 1.1 leo
173 1.17 leo typedef void (*FPV) __P((void *));
174 1.1 leo
175 1.1 leo /*
176 1.15 leo * {b,c}devsw[] function prototypes
177 1.15 leo */
178 1.15 leo dev_type_open(Fdopen);
179 1.15 leo dev_type_close(fdclose);
180 1.15 leo dev_type_read(fdread);
181 1.15 leo dev_type_write(fdwrite);
182 1.15 leo dev_type_ioctl(fdioctl);
183 1.15 leo dev_type_size(fdsize);
184 1.15 leo dev_type_dump(fddump);
185 1.15 leo
186 1.15 leo /*
187 1.1 leo * Private drive functions....
188 1.1 leo */
189 1.1 leo static void fdstart __P((struct fd_softc *));
190 1.1 leo static void fddone __P((struct fd_softc *));
191 1.4 leo static void fdstatus __P((struct fd_softc *));
192 1.1 leo static void fd_xfer __P((struct fd_softc *));
193 1.4 leo static void fdcint __P((struct fd_softc *));
194 1.1 leo static int fd_xfer_ok __P((struct fd_softc *));
195 1.1 leo static void fdmotoroff __P((struct fd_softc *));
196 1.10 mycroft static void fdminphys __P((struct buf *));
197 1.1 leo static void fdtestdrv __P((struct fd_softc *));
198 1.1 leo static int fdgetdisklabel __P((struct fd_softc *, dev_t));
199 1.8 leo static int fdselect __P((int, int, int));
200 1.8 leo static void fddeselect __P((void));
201 1.12 leo static void fdmoff __P((struct fd_softc *));
202 1.17 leo u_char read_fdreg __P((u_short));
203 1.17 leo void write_fdreg __P((u_short, u_short));
204 1.17 leo u_char read_dmastat __P((void));
205 1.1 leo
206 1.4 leo extern __inline__ u_char read_fdreg(u_short regno)
207 1.4 leo {
208 1.4 leo DMA->dma_mode = regno;
209 1.4 leo return(DMA->dma_data);
210 1.4 leo }
211 1.4 leo
212 1.4 leo extern __inline__ void write_fdreg(u_short regno, u_short val)
213 1.4 leo {
214 1.4 leo DMA->dma_mode = regno;
215 1.4 leo DMA->dma_data = val;
216 1.4 leo }
217 1.4 leo
218 1.4 leo extern __inline__ u_char read_dmastat(void)
219 1.4 leo {
220 1.4 leo DMA->dma_mode = FDC_CS | DMA_SCREG;
221 1.4 leo return(DMA->dma_stat);
222 1.4 leo }
223 1.4 leo
224 1.1 leo /*
225 1.1 leo * Autoconfig stuff....
226 1.1 leo */
227 1.16 thorpej static int fdcmatch __P((struct device *, void *, void *));
228 1.1 leo static int fdcprint __P((void *, char *));
229 1.1 leo static void fdcattach __P((struct device *, struct device *, void *));
230 1.1 leo
231 1.16 thorpej struct cfattach fdc_ca = {
232 1.16 thorpej sizeof(struct device), fdcmatch, fdcattach
233 1.16 thorpej };
234 1.16 thorpej
235 1.16 thorpej struct cfdriver fdc_cd = {
236 1.16 thorpej NULL, "fdc", DV_DULL, NULL, 0
237 1.16 thorpej };
238 1.1 leo
239 1.1 leo static int
240 1.16 thorpej fdcmatch(pdp, match, auxp)
241 1.1 leo struct device *pdp;
242 1.16 thorpej void *match, *auxp;
243 1.1 leo {
244 1.16 thorpej struct cfdata *cfp = match;
245 1.16 thorpej
246 1.1 leo if(strcmp("fdc", auxp) || cfp->cf_unit != 0)
247 1.1 leo return(0);
248 1.1 leo return(1);
249 1.1 leo }
250 1.1 leo
251 1.1 leo static void
252 1.1 leo fdcattach(pdp, dp, auxp)
253 1.1 leo struct device *pdp, *dp;
254 1.1 leo void *auxp;
255 1.1 leo {
256 1.16 thorpej extern struct cfdriver fd_cd;
257 1.1 leo struct fd_softc fdsoftc;
258 1.15 leo int i, nfound, first_found;
259 1.1 leo
260 1.15 leo nfound = first_found = 0;
261 1.1 leo printf("\n");
262 1.8 leo fddeselect();
263 1.1 leo for(i = 0; i < NR_DRIVES; i++) {
264 1.1 leo
265 1.1 leo /*
266 1.1 leo * Test if unit is present
267 1.1 leo */
268 1.1 leo fdsoftc.unit = i;
269 1.1 leo fdsoftc.flags = 0;
270 1.15 leo st_dmagrab((dma_farg)fdcint, (dma_farg)fdtestdrv, &fdsoftc,
271 1.15 leo &lock_stat, 0);
272 1.5 leo st_dmafree(&fdsoftc, &lock_stat);
273 1.1 leo
274 1.1 leo if(!(fdsoftc.flags & FLPF_NOTRESP)) {
275 1.12 leo if(!nfound)
276 1.12 leo first_found = i;
277 1.1 leo nfound++;
278 1.1 leo config_found(dp, (void*)i, fdcprint);
279 1.1 leo }
280 1.1 leo }
281 1.1 leo
282 1.1 leo if(nfound) {
283 1.12 leo
284 1.12 leo /*
285 1.12 leo * Make sure motor will be turned of when a floppy is
286 1.12 leo * inserted in the first selected drive.
287 1.12 leo */
288 1.12 leo fdselect(first_found, 0, FLP_DD);
289 1.12 leo fd_state = FLP_MON;
290 1.16 thorpej timeout((FPV)fdmotoroff, (void*)getsoftc(fd_cd, first_found),
291 1.12 leo FLP_MONDELAY);
292 1.12 leo
293 1.1 leo /*
294 1.1 leo * enable disk related interrupts
295 1.1 leo */
296 1.1 leo MFP->mf_ierb |= IB_DINT;
297 1.1 leo MFP->mf_iprb &= ~IB_DINT;
298 1.1 leo MFP->mf_imrb |= IB_DINT;
299 1.1 leo }
300 1.1 leo }
301 1.1 leo
302 1.1 leo static int
303 1.1 leo fdcprint(auxp, pnp)
304 1.1 leo void *auxp;
305 1.1 leo char *pnp;
306 1.1 leo {
307 1.1 leo return(UNCONF);
308 1.1 leo }
309 1.1 leo
310 1.16 thorpej static int fdmatch __P((struct device *, void *, void *));
311 1.1 leo static void fdattach __P((struct device *, struct device *, void *));
312 1.1 leo void fdstrategy __P((struct buf *));
313 1.1 leo struct dkdriver fddkdriver = { fdstrategy };
314 1.1 leo
315 1.16 thorpej struct cfattach fd_ca = {
316 1.16 thorpej sizeof(struct fd_softc), fdmatch, fdattach
317 1.16 thorpej };
318 1.16 thorpej
319 1.16 thorpej struct cfdriver fd_cd = {
320 1.16 thorpej NULL, "fd", DV_DISK, NULL, 0
321 1.16 thorpej };
322 1.1 leo
323 1.1 leo static int
324 1.16 thorpej fdmatch(pdp, match, auxp)
325 1.1 leo struct device *pdp;
326 1.16 thorpej void *match, *auxp;
327 1.1 leo {
328 1.1 leo return(1);
329 1.1 leo }
330 1.1 leo
331 1.1 leo static void
332 1.1 leo fdattach(pdp, dp, auxp)
333 1.1 leo struct device *pdp, *dp;
334 1.1 leo void *auxp;
335 1.1 leo {
336 1.1 leo struct fd_softc *sc;
337 1.1 leo
338 1.1 leo sc = (struct fd_softc *)dp;
339 1.1 leo
340 1.1 leo printf("\n");
341 1.1 leo
342 1.13 thorpej /*
343 1.13 thorpej * Initialize and attach the disk structure.
344 1.13 thorpej */
345 1.13 thorpej sc->dkdev.dk_name = sc->sc_dv.dv_xname;
346 1.1 leo sc->dkdev.dk_driver = &fddkdriver;
347 1.13 thorpej disk_attach(&sc->dkdev);
348 1.1 leo }
349 1.1 leo
350 1.15 leo int
351 1.1 leo fdioctl(dev, cmd, addr, flag, p)
352 1.1 leo dev_t dev;
353 1.1 leo u_long cmd;
354 1.1 leo int flag;
355 1.1 leo caddr_t addr;
356 1.1 leo struct proc *p;
357 1.1 leo {
358 1.1 leo struct fd_softc *sc;
359 1.1 leo
360 1.16 thorpej sc = getsoftc(fd_cd, DISKUNIT(dev));
361 1.10 mycroft
362 1.1 leo if((sc->flags & FLPF_HAVELAB) == 0)
363 1.1 leo return(EBADF);
364 1.1 leo
365 1.1 leo switch(cmd) {
366 1.1 leo case DIOCSBAD:
367 1.1 leo return(EINVAL);
368 1.1 leo case DIOCGDINFO:
369 1.13 thorpej *(struct disklabel *)addr = *(sc->dkdev.dk_label);
370 1.1 leo return(0);
371 1.1 leo case DIOCGPART:
372 1.1 leo ((struct partinfo *)addr)->disklab =
373 1.13 thorpej sc->dkdev.dk_label;
374 1.10 mycroft ((struct partinfo *)addr)->part =
375 1.13 thorpej &sc->dkdev.dk_label->d_partitions[DISKPART(dev)];
376 1.1 leo return(0);
377 1.1 leo #ifdef notyet /* XXX LWP */
378 1.1 leo case DIOCSRETRIES:
379 1.1 leo case DIOCSSTEP:
380 1.1 leo case DIOCSDINFO:
381 1.1 leo case DIOCWDINFO:
382 1.1 leo case DIOCWLABEL:
383 1.1 leo #endif /* notyet */
384 1.1 leo }
385 1.15 leo return(ENOTTY);
386 1.1 leo }
387 1.1 leo
388 1.1 leo /*
389 1.1 leo * Open the device. If this is the first open on both the floppy devices,
390 1.1 leo * intialize the controller.
391 1.1 leo * Note that partition info on the floppy device is used to distinguise
392 1.1 leo * between 780Kb and 360Kb floppy's.
393 1.1 leo * partition 0: 360Kb
394 1.3 leo * partition 1: 780Kb
395 1.1 leo */
396 1.15 leo int
397 1.1 leo Fdopen(dev, flags, devtype, proc)
398 1.1 leo dev_t dev;
399 1.1 leo int flags, devtype;
400 1.1 leo struct proc *proc;
401 1.1 leo {
402 1.1 leo struct fd_softc *sc;
403 1.1 leo int sps;
404 1.1 leo
405 1.1 leo #ifdef FLP_DEBUG
406 1.1 leo printf("Fdopen dev=0x%x\n", dev);
407 1.1 leo #endif
408 1.1 leo
409 1.1 leo if(DISKPART(dev) >= NR_TYPES)
410 1.1 leo return(ENXIO);
411 1.1 leo
412 1.16 thorpej if((sc = getsoftc(fd_cd, DISKUNIT(dev))) == NULL)
413 1.1 leo return(ENXIO);
414 1.1 leo
415 1.1 leo /*
416 1.1 leo * If no floppy currently open, reset the controller and select
417 1.1 leo * floppy type.
418 1.1 leo */
419 1.1 leo if(!nopens) {
420 1.1 leo
421 1.1 leo #ifdef FLP_DEBUG
422 1.1 leo printf("Fdopen device not yet open\n");
423 1.1 leo #endif
424 1.1 leo nopens++;
425 1.4 leo write_fdreg(FDC_CS, IRUPT);
426 1.8 leo delay(40);
427 1.1 leo }
428 1.1 leo
429 1.4 leo /*
430 1.4 leo * Sleep while other process is opening the device
431 1.4 leo */
432 1.4 leo sps = splbio();
433 1.4 leo while(sc->flags & FLPF_INOPEN)
434 1.4 leo tsleep((caddr_t)sc, PRIBIO, "Fdopen", 0);
435 1.4 leo splx(sps);
436 1.4 leo
437 1.1 leo if(!(sc->flags & FLPF_ISOPEN)) {
438 1.1 leo /*
439 1.1 leo * Initialise some driver values.
440 1.1 leo */
441 1.1 leo int part = DISKPART(dev);
442 1.1 leo void *addr;
443 1.1 leo
444 1.1 leo sc->bufq.b_actf = NULL;
445 1.1 leo sc->unit = DISKUNIT(dev);
446 1.1 leo sc->part = part;
447 1.1 leo sc->nheads = fdtypes[part].nheads;
448 1.1 leo sc->nsectors = fdtypes[part].nsectors;
449 1.1 leo sc->nblocks = fdtypes[part].nblocks;
450 1.8 leo sc->density = fdtypes[part].density;
451 1.1 leo sc->curtrk = INV_TRK;
452 1.1 leo sc->sector = 0;
453 1.1 leo sc->errcnt = 0;
454 1.1 leo sc->bounceb = (u_char*)alloc_stmem(SECTOR_SIZE, &addr);
455 1.1 leo if(sc->bounceb == NULL)
456 1.1 leo return(ENOMEM); /* XXX */
457 1.1 leo
458 1.4 leo /*
459 1.4 leo * Go get write protect + loaded status
460 1.4 leo */
461 1.6 leo sc->flags |= FLPF_INOPEN|FLPF_GETSTAT;
462 1.4 leo sps = splbio();
463 1.15 leo st_dmagrab((dma_farg)fdcint, (dma_farg)fdstatus, sc,
464 1.15 leo &lock_stat, 0);
465 1.4 leo while(sc->flags & FLPF_GETSTAT)
466 1.4 leo tsleep((caddr_t)sc, PRIBIO, "Fdopen", 0);
467 1.4 leo splx(sps);
468 1.4 leo wakeup((caddr_t)sc);
469 1.4 leo
470 1.4 leo if((sc->flags & FLPF_WRTPROT) && (flags & FWRITE)) {
471 1.4 leo sc->flags = 0;
472 1.4 leo return(EPERM);
473 1.4 leo }
474 1.4 leo if(sc->flags & FLPF_EMPTY) {
475 1.4 leo sc->flags = 0;
476 1.4 leo return(ENXIO);
477 1.4 leo }
478 1.6 leo sc->flags &= ~(FLPF_INOPEN|FLPF_GETSTAT);
479 1.6 leo sc->flags |= FLPF_ISOPEN;
480 1.1 leo }
481 1.1 leo else {
482 1.1 leo /*
483 1.1 leo * Multiply opens are granted when accessing the same type of
484 1.1 leo * floppy (eq. the same partition).
485 1.1 leo */
486 1.1 leo if(sc->part != DISKPART(dev))
487 1.1 leo return(ENXIO); /* XXX temporarely out of business */
488 1.1 leo }
489 1.1 leo fdgetdisklabel(sc, dev);
490 1.1 leo #ifdef FLP_DEBUG
491 1.1 leo printf("Fdopen open succeeded on type %d\n", sc->part);
492 1.1 leo #endif
493 1.15 leo return (0);
494 1.1 leo }
495 1.1 leo
496 1.15 leo int
497 1.2 mycroft fdclose(dev, flags, devtype, proc)
498 1.1 leo dev_t dev;
499 1.1 leo int flags, devtype;
500 1.1 leo struct proc *proc;
501 1.1 leo {
502 1.1 leo struct fd_softc *sc;
503 1.1 leo
504 1.16 thorpej sc = getsoftc(fd_cd, DISKUNIT(dev));
505 1.1 leo free_stmem(sc->bounceb);
506 1.1 leo sc->flags = 0;
507 1.1 leo nopens--;
508 1.1 leo
509 1.1 leo #ifdef FLP_DEBUG
510 1.1 leo printf("Closed floppy device -- nopens: %d\n", nopens);
511 1.1 leo #endif
512 1.4 leo return(0);
513 1.1 leo }
514 1.1 leo
515 1.1 leo void
516 1.1 leo fdstrategy(bp)
517 1.1 leo struct buf *bp;
518 1.1 leo {
519 1.11 leo struct fd_softc *sc;
520 1.11 leo struct disklabel *lp;
521 1.15 leo int sps;
522 1.1 leo
523 1.16 thorpej sc = getsoftc(fd_cd, DISKUNIT(bp->b_dev));
524 1.1 leo
525 1.1 leo #ifdef FLP_DEBUG
526 1.1 leo printf("fdstrategy: 0x%x\n", bp);
527 1.1 leo #endif
528 1.1 leo
529 1.1 leo /*
530 1.1 leo * check for valid partition and bounds
531 1.1 leo */
532 1.13 thorpej lp = sc->dkdev.dk_label;
533 1.11 leo if ((sc->flags & FLPF_HAVELAB) == 0) {
534 1.11 leo bp->b_error = EIO;
535 1.11 leo goto bad;
536 1.1 leo }
537 1.11 leo if (bounds_check_with_label(bp, lp, 0) <= 0)
538 1.1 leo goto done;
539 1.1 leo
540 1.11 leo if (bp->b_bcount == 0)
541 1.11 leo goto done;
542 1.1 leo
543 1.1 leo /*
544 1.1 leo * queue the buf and kick the low level code
545 1.1 leo */
546 1.1 leo sps = splbio();
547 1.1 leo disksort(&sc->bufq, bp);
548 1.11 leo if (!lock_stat) {
549 1.11 leo if (fd_state & FLP_MON)
550 1.1 leo untimeout((FPV)fdmotoroff, (void*)sc);
551 1.1 leo fd_state = FLP_IDLE;
552 1.15 leo st_dmagrab((dma_farg)fdcint, (dma_farg)fdstart, sc,
553 1.15 leo &lock_stat, 0);
554 1.1 leo }
555 1.1 leo splx(sps);
556 1.1 leo
557 1.1 leo return;
558 1.11 leo bad:
559 1.11 leo bp->b_flags |= B_ERROR;
560 1.1 leo done:
561 1.1 leo bp->b_resid = bp->b_bcount;
562 1.1 leo biodone(bp);
563 1.3 leo }
564 1.3 leo
565 1.10 mycroft /*
566 1.3 leo * no dumps to floppy disks thank you.
567 1.3 leo */
568 1.3 leo int
569 1.15 leo fddump(dev, blkno, va, size)
570 1.15 leo dev_t dev;
571 1.15 leo daddr_t blkno;
572 1.15 leo caddr_t va;
573 1.15 leo size_t size;
574 1.3 leo {
575 1.3 leo return(ENXIO);
576 1.1 leo }
577 1.1 leo
578 1.10 mycroft /*
579 1.1 leo * no dumps to floppy disks thank you.
580 1.1 leo */
581 1.1 leo int
582 1.1 leo fdsize(dev)
583 1.1 leo dev_t dev;
584 1.1 leo {
585 1.1 leo return(-1);
586 1.1 leo }
587 1.1 leo
588 1.1 leo int
589 1.15 leo fdread(dev, uio, flags)
590 1.1 leo dev_t dev;
591 1.1 leo struct uio *uio;
592 1.15 leo int flags;
593 1.1 leo {
594 1.8 leo return(physio(fdstrategy, NULL, dev, B_READ, fdminphys, uio));
595 1.1 leo }
596 1.1 leo
597 1.1 leo int
598 1.15 leo fdwrite(dev, uio, flags)
599 1.1 leo dev_t dev;
600 1.1 leo struct uio *uio;
601 1.15 leo int flags;
602 1.1 leo {
603 1.8 leo return(physio(fdstrategy, NULL, dev, B_WRITE, fdminphys, uio));
604 1.1 leo }
605 1.1 leo
606 1.1 leo /*
607 1.4 leo * Called through DMA-dispatcher, get status.
608 1.4 leo */
609 1.4 leo static void
610 1.4 leo fdstatus(sc)
611 1.4 leo struct fd_softc *sc;
612 1.4 leo {
613 1.4 leo #ifdef FLP_DEBUG
614 1.4 leo printf("fdstatus\n");
615 1.4 leo #endif
616 1.4 leo sc->errcnt = 0;
617 1.4 leo fd_state = FLP_STAT;
618 1.4 leo fd_xfer(sc);
619 1.4 leo }
620 1.4 leo
621 1.4 leo /*
622 1.1 leo * Called through the dma-dispatcher. So we know we are the only ones
623 1.1 leo * messing with the floppy-controler.
624 1.1 leo * Initialize some fields in the fdsoftc for the state-machine and get
625 1.1 leo * it going.
626 1.1 leo */
627 1.1 leo static void
628 1.1 leo fdstart(sc)
629 1.1 leo struct fd_softc *sc;
630 1.1 leo {
631 1.1 leo struct buf *bp;
632 1.1 leo
633 1.1 leo bp = sc->bufq.b_actf;
634 1.1 leo sc->sector = bp->b_blkno; /* Start sector for I/O */
635 1.1 leo sc->io_data = bp->b_data; /* KVA base for I/O */
636 1.1 leo sc->io_bytes = bp->b_bcount; /* Transfer size in bytes */
637 1.1 leo sc->io_dir = bp->b_flags & B_READ;/* Direction of transfer */
638 1.1 leo sc->errcnt = 0; /* No errors yet */
639 1.1 leo fd_state = FLP_XFER; /* Yes, we're going to transfer */
640 1.1 leo
641 1.13 thorpej /* Instrumentation. */
642 1.13 thorpej disk_busy(&sc->dkdev);
643 1.13 thorpej
644 1.1 leo fd_xfer(sc);
645 1.1 leo }
646 1.1 leo
647 1.1 leo /*
648 1.1 leo * The current transaction is finished (for good or bad). Let go of
649 1.1 leo * the the dma-resources. Call biodone() to finish the transaction.
650 1.1 leo * Find a new transaction to work on.
651 1.1 leo */
652 1.1 leo static void
653 1.1 leo fddone(sc)
654 1.1 leo register struct fd_softc *sc;
655 1.1 leo {
656 1.1 leo struct buf *bp, *dp;
657 1.1 leo struct fd_softc *sc1;
658 1.5 leo int i, sps;
659 1.1 leo
660 1.1 leo /*
661 1.1 leo * Give others a chance to use the dma.
662 1.1 leo */
663 1.5 leo st_dmafree(sc, &lock_stat);
664 1.4 leo
665 1.1 leo
666 1.4 leo if(fd_state != FLP_STAT) {
667 1.4 leo /*
668 1.4 leo * Finish current transaction.
669 1.4 leo */
670 1.5 leo sps = splbio();
671 1.4 leo dp = &sc->bufq;
672 1.4 leo bp = dp->b_actf;
673 1.4 leo if(bp == NULL)
674 1.4 leo panic("fddone");
675 1.4 leo dp->b_actf = bp->b_actf;
676 1.5 leo splx(sps);
677 1.4 leo
678 1.4 leo #ifdef FLP_DEBUG
679 1.4 leo printf("fddone: unit: %d, buf: %x, resid: %d\n",sc->unit,bp,
680 1.4 leo sc->io_bytes);
681 1.4 leo #endif
682 1.4 leo bp->b_resid = sc->io_bytes;
683 1.13 thorpej
684 1.13 thorpej disk_unbusy(&sc->dkdev, (bp->b_bcount - bp->b_resid));
685 1.13 thorpej
686 1.4 leo biodone(bp);
687 1.4 leo }
688 1.4 leo fd_state = FLP_MON;
689 1.1 leo
690 1.5 leo if(lock_stat)
691 1.1 leo return; /* XXX Is this possible? */
692 1.1 leo
693 1.1 leo /*
694 1.1 leo * Find a new transaction on round-robin basis.
695 1.1 leo */
696 1.1 leo for(i = sc->unit + 1; ;i++) {
697 1.16 thorpej if(i >= fd_cd.cd_ndevs)
698 1.1 leo i = 0;
699 1.16 thorpej if((sc1 = fd_cd.cd_devs[i]) == NULL)
700 1.1 leo continue;
701 1.1 leo if(sc1->bufq.b_actf)
702 1.1 leo break;
703 1.1 leo if(i == sc->unit) {
704 1.1 leo timeout((FPV)fdmotoroff, (void*)sc, FLP_MONDELAY);
705 1.1 leo #ifdef FLP_DEBUG
706 1.1 leo printf("fddone: Nothing to do\n");
707 1.1 leo #endif
708 1.1 leo return; /* No work */
709 1.1 leo }
710 1.1 leo }
711 1.1 leo fd_state = FLP_IDLE;
712 1.1 leo #ifdef FLP_DEBUG
713 1.1 leo printf("fddone: Staring job on unit %d\n", sc1->unit);
714 1.1 leo #endif
715 1.15 leo st_dmagrab((dma_farg)fdcint, (dma_farg)fdstart, sc1, &lock_stat, 0);
716 1.1 leo }
717 1.1 leo
718 1.8 leo static int
719 1.8 leo fdselect(drive, head, dense)
720 1.8 leo int drive, head, dense;
721 1.8 leo {
722 1.8 leo int i, sps, spinning;
723 1.8 leo #ifdef FLP_DEBUG
724 1.8 leo printf("fdselect: drive=%d, head=%d, dense=%d\n", drive, head, dense);
725 1.8 leo #endif
726 1.8 leo i = ((drive == 1) ? PA_FLOP1 : PA_FLOP0) | head;
727 1.8 leo spinning = motoron;
728 1.8 leo motoron = 1;
729 1.8 leo
730 1.8 leo switch(dense) {
731 1.8 leo case FLP_DD:
732 1.8 leo DMA->dma_drvmode = 0;
733 1.8 leo break;
734 1.8 leo case FLP_HD:
735 1.8 leo DMA->dma_drvmode = (FDC_HDSET|FDC_HDSIG);
736 1.8 leo break;
737 1.8 leo default:
738 1.8 leo panic("fdselect: unknown density code\n");
739 1.8 leo }
740 1.8 leo if(i != selected) {
741 1.8 leo sps = splhigh();
742 1.8 leo
743 1.8 leo selected = i;
744 1.8 leo SOUND->sd_selr = YM_IOA;
745 1.8 leo SOUND->sd_wdat = (SOUND->sd_rdat & 0x78) | (i ^ 0x07);
746 1.8 leo splx(sps);
747 1.8 leo }
748 1.8 leo return(spinning);
749 1.8 leo }
750 1.8 leo
751 1.8 leo static void
752 1.8 leo fddeselect()
753 1.8 leo {
754 1.8 leo int sps;
755 1.8 leo
756 1.8 leo sps = splhigh();
757 1.8 leo SOUND->sd_selr = YM_IOA;
758 1.8 leo SOUND->sd_wdat = SOUND->sd_rdat | 0x07;
759 1.8 leo splx(sps);
760 1.8 leo
761 1.8 leo motoron = selected = 0;
762 1.8 leo DMA->dma_drvmode = 0;
763 1.8 leo }
764 1.8 leo
765 1.1 leo /****************************************************************************
766 1.1 leo * The following functions assume to be running as a result of a *
767 1.1 leo * disk-interrupt (e.q. spl = splbio). *
768 1.1 leo * They form the finit-state machine, the actual driver. *
769 1.1 leo * *
770 1.1 leo * fdstart()/ --> fd_xfer() -> activate hardware *
771 1.1 leo * fdopen() ^ *
772 1.1 leo * | *
773 1.1 leo * +-- not ready -<------------+ *
774 1.1 leo * | *
775 1.1 leo * fdmotoroff()/ --> fdcint() -> fd_xfer_ok() ---+ *
776 1.1 leo * h/w interrupt | *
777 1.1 leo * \|/ *
778 1.1 leo * finished ---> fdone() *
779 1.1 leo * *
780 1.1 leo ****************************************************************************/
781 1.1 leo static void
782 1.1 leo fd_xfer(sc)
783 1.1 leo struct fd_softc *sc;
784 1.1 leo {
785 1.15 leo register int head;
786 1.1 leo register int track, sector, hbit;
787 1.1 leo u_long phys_addr;
788 1.1 leo
789 1.15 leo head = track = 0;
790 1.4 leo switch(fd_state) {
791 1.4 leo case FLP_XFER:
792 1.4 leo /*
793 1.4 leo * Calculate head/track values
794 1.4 leo */
795 1.4 leo track = sc->sector / sc->nsectors;
796 1.4 leo head = track % sc->nheads;
797 1.4 leo track = track / sc->nheads;
798 1.1 leo #ifdef FLP_DEBUG
799 1.4 leo printf("fd_xfer: sector:%d,head:%d,track:%d\n", sc->sector,head,
800 1.4 leo track);
801 1.1 leo #endif
802 1.4 leo break;
803 1.4 leo
804 1.4 leo case FLP_STAT:
805 1.4 leo /*
806 1.4 leo * FLP_STAT only wants to recalibrate
807 1.4 leo */
808 1.4 leo sc->curtrk = INV_TRK;
809 1.4 leo break;
810 1.4 leo default:
811 1.4 leo panic("fd_xfer: wrong state (0x%x)", fd_state);
812 1.4 leo }
813 1.1 leo
814 1.1 leo /*
815 1.8 leo * Select the drive.
816 1.1 leo */
817 1.8 leo hbit = fdselect(sc->unit, head, sc->density) ? HBIT : 0;
818 1.1 leo
819 1.1 leo if(sc->curtrk == INV_TRK) {
820 1.10 mycroft /*
821 1.1 leo * Recalibrate, since we lost track of head positioning.
822 1.1 leo * The floppy disk controller has no way of determining its
823 1.1 leo * absolute arm position (track). Instead, it steps the
824 1.1 leo * arm a track at a time and keeps track of where it
825 1.1 leo * thinks it is (in software). However, after a SEEK, the
826 1.1 leo * hardware reads information from the diskette telling
827 1.1 leo * where the arm actually is. If the arm is in the wrong place,
828 1.1 leo * a recalibration is done, which forces the arm to track 0.
829 1.1 leo * This way the controller can get back into sync with reality.
830 1.1 leo */
831 1.8 leo fd_cmd = RESTORE;
832 1.4 leo write_fdreg(FDC_CS, RESTORE|VBIT|hbit);
833 1.1 leo timeout((FPV)fdmotoroff, (void*)sc, FLP_XFERDELAY);
834 1.1 leo
835 1.1 leo #ifdef FLP_DEBUG
836 1.1 leo printf("fd_xfer:Recalibrating drive %d\n", sc->unit);
837 1.1 leo #endif
838 1.1 leo return;
839 1.1 leo }
840 1.1 leo
841 1.4 leo write_fdreg(FDC_TR, sc->curtrk);
842 1.1 leo
843 1.1 leo /*
844 1.1 leo * Issue a SEEK command on the indicated drive unless the arm is
845 1.1 leo * already positioned on the correct track.
846 1.1 leo */
847 1.1 leo if(track != sc->curtrk) {
848 1.1 leo sc->curtrk = track; /* be optimistic */
849 1.4 leo write_fdreg(FDC_DR, track);
850 1.4 leo write_fdreg(FDC_CS, SEEK|RATE6|VBIT|hbit);
851 1.1 leo timeout((FPV)fdmotoroff, (void*)sc, FLP_XFERDELAY);
852 1.1 leo fd_cmd = SEEK;
853 1.1 leo #ifdef FLP_DEBUG
854 1.1 leo printf("fd_xfer:Seek to track %d on drive %d\n",track,sc->unit);
855 1.1 leo #endif
856 1.1 leo return;
857 1.1 leo }
858 1.1 leo
859 1.1 leo /*
860 1.1 leo * The drive is now on the proper track. Read or write 1 block.
861 1.1 leo */
862 1.1 leo sector = sc->sector % sc->nsectors;
863 1.1 leo sector++; /* start numbering at 1 */
864 1.1 leo
865 1.4 leo write_fdreg(FDC_SR, sector);
866 1.1 leo
867 1.1 leo phys_addr = (u_long)kvtop(sc->io_data);
868 1.1 leo if(phys_addr >= FDC_MAX_DMA_AD) {
869 1.1 leo /*
870 1.1 leo * We _must_ bounce this address
871 1.1 leo */
872 1.1 leo phys_addr = (u_long)kvtop(sc->bounceb);
873 1.1 leo if(sc->io_dir == B_WRITE)
874 1.1 leo bcopy(sc->io_data, sc->bounceb, SECTOR_SIZE);
875 1.1 leo sc->flags |= FLPF_BOUNCE;
876 1.1 leo }
877 1.7 leo st_dmaaddr_set((caddr_t)phys_addr); /* DMA address setup */
878 1.1 leo
879 1.1 leo #ifdef FLP_DEBUG
880 1.1 leo printf("fd_xfer:Start io (io_addr:%x)\n", kvtop(sc->io_data));
881 1.1 leo #endif
882 1.1 leo
883 1.1 leo if(sc->io_dir == B_READ) {
884 1.1 leo /* Issue the command */
885 1.4 leo st_dmacomm(DMA_FDC | DMA_SCREG, 1);
886 1.4 leo write_fdreg(FDC_CS, F_READ|hbit);
887 1.1 leo fd_cmd = F_READ;
888 1.1 leo }
889 1.1 leo else {
890 1.1 leo /* Issue the command */
891 1.4 leo st_dmacomm(DMA_WRBIT | DMA_FDC | DMA_SCREG, 1);
892 1.4 leo write_fdreg(DMA_WRBIT | FDC_CS, F_WRITE|hbit|EBIT|PBIT);
893 1.1 leo fd_cmd = F_WRITE;
894 1.1 leo }
895 1.1 leo timeout((FPV)fdmotoroff, (void*)sc, FLP_XFERDELAY);
896 1.1 leo }
897 1.1 leo
898 1.1 leo /* return values of fd_xfer_ok(): */
899 1.1 leo #define X_OK 0
900 1.1 leo #define X_AGAIN 1
901 1.1 leo #define X_ERROR 2
902 1.1 leo #define X_FAIL 3
903 1.1 leo
904 1.1 leo /*
905 1.1 leo * Hardware interrupt function.
906 1.1 leo */
907 1.4 leo static void
908 1.1 leo fdcint(sc)
909 1.1 leo struct fd_softc *sc;
910 1.1 leo {
911 1.1 leo struct buf *bp;
912 1.1 leo
913 1.1 leo #ifdef FLP_DEBUG
914 1.1 leo printf("fdcint: unit = %d\n", sc->unit);
915 1.1 leo #endif
916 1.1 leo
917 1.1 leo /*
918 1.1 leo * Cancel timeout (we made it, didn't we)
919 1.1 leo */
920 1.1 leo untimeout((FPV)fdmotoroff, (void*)sc);
921 1.1 leo
922 1.1 leo switch(fd_xfer_ok(sc)) {
923 1.1 leo case X_ERROR :
924 1.1 leo if(++(sc->errcnt) < MAX_ERRORS) {
925 1.1 leo /*
926 1.1 leo * Command failed but still retries left.
927 1.1 leo */
928 1.1 leo break;
929 1.1 leo }
930 1.1 leo /* FALL THROUGH */
931 1.1 leo case X_FAIL :
932 1.1 leo /*
933 1.1 leo * Non recoverable error. Fall back to motor-on
934 1.1 leo * idle-state.
935 1.1 leo */
936 1.8 leo if(fd_error != NULL) {
937 1.8 leo printf("Floppy error: %s\n", fd_error);
938 1.8 leo fd_error = NULL;
939 1.8 leo }
940 1.8 leo
941 1.4 leo if(fd_state == FLP_STAT) {
942 1.4 leo sc->flags |= FLPF_EMPTY;
943 1.4 leo sc->flags &= ~FLPF_GETSTAT;
944 1.4 leo wakeup((caddr_t)sc);
945 1.4 leo fddone(sc);
946 1.4 leo return;
947 1.4 leo }
948 1.4 leo
949 1.1 leo bp = sc->bufq.b_actf;
950 1.1 leo
951 1.1 leo bp->b_error = EIO;
952 1.1 leo bp->b_flags |= B_ERROR;
953 1.8 leo fd_state = FLP_MON;
954 1.1 leo
955 1.1 leo break;
956 1.1 leo case X_AGAIN:
957 1.1 leo /*
958 1.1 leo * Start next part of state machine.
959 1.1 leo */
960 1.1 leo break;
961 1.1 leo case X_OK:
962 1.1 leo /*
963 1.1 leo * Command ok and finished. Reset error-counter.
964 1.1 leo * If there are no more bytes to transfer fall back
965 1.1 leo * to motor-on idle state.
966 1.1 leo */
967 1.1 leo sc->errcnt = 0;
968 1.4 leo
969 1.4 leo if(fd_state == FLP_STAT) {
970 1.4 leo sc->flags &= ~FLPF_GETSTAT;
971 1.4 leo wakeup((caddr_t)sc);
972 1.4 leo fddone(sc);
973 1.4 leo return;
974 1.4 leo }
975 1.4 leo
976 1.1 leo if((sc->flags & FLPF_BOUNCE) && (sc->io_dir == B_READ))
977 1.1 leo bcopy(sc->bounceb, sc->io_data, SECTOR_SIZE);
978 1.1 leo sc->flags &= ~FLPF_BOUNCE;
979 1.1 leo
980 1.1 leo sc->sector++;
981 1.1 leo sc->io_data += SECTOR_SIZE;
982 1.1 leo sc->io_bytes -= SECTOR_SIZE;
983 1.1 leo if(sc->io_bytes <= 0)
984 1.1 leo fd_state = FLP_MON;
985 1.1 leo }
986 1.1 leo if(fd_state == FLP_MON)
987 1.1 leo fddone(sc);
988 1.1 leo else fd_xfer(sc);
989 1.1 leo }
990 1.1 leo
991 1.1 leo /*
992 1.1 leo * Determine status of last command. Should only be called through
993 1.1 leo * 'fdcint()'.
994 1.1 leo * Returns:
995 1.1 leo * X_ERROR : Error on command; might succeed next time.
996 1.1 leo * X_FAIL : Error on command; will never succeed.
997 1.1 leo * X_AGAIN : Part of a command succeeded, call 'fd_xfer()' to complete.
998 1.1 leo * X_OK : Command succeeded and is complete.
999 1.1 leo *
1000 1.1 leo * This function only affects sc->curtrk.
1001 1.1 leo */
1002 1.1 leo static int
1003 1.1 leo fd_xfer_ok(sc)
1004 1.1 leo register struct fd_softc *sc;
1005 1.1 leo {
1006 1.1 leo register int status;
1007 1.1 leo
1008 1.4 leo #ifdef FLP_DEBUG
1009 1.4 leo printf("fd_xfer_ok: cmd: 0x%x, state: 0x%x\n", fd_cmd, fd_state);
1010 1.4 leo #endif
1011 1.1 leo switch(fd_cmd) {
1012 1.1 leo case IRUPT:
1013 1.1 leo /*
1014 1.1 leo * Timeout. Force a recalibrate before we try again.
1015 1.1 leo */
1016 1.8 leo status = read_fdreg(FDC_CS);
1017 1.8 leo
1018 1.1 leo fd_error = "Timeout";
1019 1.1 leo sc->curtrk = INV_TRK;
1020 1.1 leo return(X_ERROR);
1021 1.1 leo case F_READ:
1022 1.1 leo /*
1023 1.1 leo * Test for DMA error
1024 1.1 leo */
1025 1.4 leo status = read_dmastat();
1026 1.1 leo if(!(status & DMAOK)) {
1027 1.1 leo fd_error = "Dma error";
1028 1.1 leo return(X_ERROR);
1029 1.1 leo }
1030 1.1 leo /*
1031 1.1 leo * Get controller status and check for errors.
1032 1.1 leo */
1033 1.4 leo status = read_fdreg(FDC_CS);
1034 1.1 leo if(status & (RNF | CRCERR | LD_T00)) {
1035 1.1 leo fd_error = "Read error";
1036 1.1 leo if(status & RNF)
1037 1.1 leo sc->curtrk = INV_TRK;
1038 1.1 leo return(X_ERROR);
1039 1.1 leo }
1040 1.1 leo break;
1041 1.1 leo case F_WRITE:
1042 1.1 leo /*
1043 1.4 leo * Test for DMA error
1044 1.4 leo */
1045 1.4 leo status = read_dmastat();
1046 1.4 leo if(!(status & DMAOK)) {
1047 1.4 leo fd_error = "Dma error";
1048 1.4 leo return(X_ERROR);
1049 1.4 leo }
1050 1.4 leo /*
1051 1.1 leo * Get controller status and check for errors.
1052 1.1 leo */
1053 1.4 leo status = read_fdreg(FDC_CS);
1054 1.1 leo if(status & WRI_PRO) {
1055 1.1 leo fd_error = "Write protected";
1056 1.1 leo return(X_FAIL);
1057 1.1 leo }
1058 1.1 leo if(status & (RNF | CRCERR | LD_T00)) {
1059 1.1 leo fd_error = "Write error";
1060 1.1 leo sc->curtrk = INV_TRK;
1061 1.1 leo return(X_ERROR);
1062 1.1 leo }
1063 1.1 leo break;
1064 1.1 leo case SEEK:
1065 1.4 leo status = read_fdreg(FDC_CS);
1066 1.1 leo if(status & (RNF | CRCERR)) {
1067 1.1 leo fd_error = "Seek error";
1068 1.1 leo sc->curtrk = INV_TRK;
1069 1.1 leo return(X_ERROR);
1070 1.1 leo }
1071 1.1 leo return(X_AGAIN);
1072 1.1 leo case RESTORE:
1073 1.1 leo /*
1074 1.1 leo * Determine if the recalibration succeeded.
1075 1.1 leo */
1076 1.4 leo status = read_fdreg(FDC_CS);
1077 1.1 leo if(status & RNF) {
1078 1.1 leo fd_error = "Recalibrate error";
1079 1.1 leo /* reset controller */
1080 1.4 leo write_fdreg(FDC_CS, IRUPT);
1081 1.1 leo sc->curtrk = INV_TRK;
1082 1.1 leo return(X_ERROR);
1083 1.1 leo }
1084 1.1 leo sc->curtrk = 0;
1085 1.4 leo if(fd_state == FLP_STAT) {
1086 1.4 leo if(status & WRI_PRO)
1087 1.4 leo sc->flags |= FLPF_WRTPROT;
1088 1.4 leo break;
1089 1.4 leo }
1090 1.1 leo return(X_AGAIN);
1091 1.1 leo default:
1092 1.1 leo fd_error = "Driver error: fd_xfer_ok : Unknown state";
1093 1.1 leo return(X_FAIL);
1094 1.1 leo }
1095 1.1 leo return(X_OK);
1096 1.1 leo }
1097 1.1 leo
1098 1.1 leo /*
1099 1.1 leo * All timeouts will call this function.
1100 1.1 leo */
1101 1.1 leo static void
1102 1.1 leo fdmotoroff(sc)
1103 1.1 leo struct fd_softc *sc;
1104 1.1 leo {
1105 1.8 leo int sps;
1106 1.1 leo
1107 1.1 leo /*
1108 1.1 leo * Get at harware interrupt level
1109 1.1 leo */
1110 1.1 leo sps = splbio();
1111 1.1 leo
1112 1.1 leo #if FLP_DEBUG
1113 1.1 leo printf("fdmotoroff, state = 0x%x\n", fd_state);
1114 1.1 leo #endif
1115 1.1 leo
1116 1.1 leo switch(fd_state) {
1117 1.4 leo case FLP_STAT :
1118 1.1 leo case FLP_XFER :
1119 1.1 leo /*
1120 1.1 leo * Timeout during a transfer; cancel transaction
1121 1.1 leo * set command to 'IRUPT'.
1122 1.1 leo * A drive-interrupt is simulated to trigger the state
1123 1.1 leo * machine.
1124 1.1 leo */
1125 1.1 leo /*
1126 1.1 leo * Cancel current transaction
1127 1.1 leo */
1128 1.1 leo fd_cmd = IRUPT;
1129 1.8 leo write_fdreg(FDC_CS, IRUPT);
1130 1.8 leo delay(20);
1131 1.8 leo (void)read_fdreg(FDC_CS);
1132 1.8 leo write_fdreg(FDC_CS, RESTORE);
1133 1.8 leo break;
1134 1.1 leo
1135 1.1 leo case FLP_MON :
1136 1.1 leo /*
1137 1.1 leo * Turn motor off.
1138 1.1 leo */
1139 1.12 leo if(selected) {
1140 1.12 leo int tmp;
1141 1.12 leo
1142 1.15 leo st_dmagrab((dma_farg)fdcint, (dma_farg)fdmoff,
1143 1.15 leo sc, &tmp, 0);
1144 1.12 leo }
1145 1.12 leo else fd_state = FLP_IDLE;
1146 1.1 leo break;
1147 1.1 leo }
1148 1.1 leo splx(sps);
1149 1.1 leo }
1150 1.1 leo
1151 1.1 leo /*
1152 1.1 leo * min byte count to whats left of the track in question
1153 1.1 leo */
1154 1.10 mycroft static void
1155 1.1 leo fdminphys(bp)
1156 1.1 leo struct buf *bp;
1157 1.1 leo {
1158 1.1 leo struct fd_softc *sc;
1159 1.1 leo int sec, toff, tsz;
1160 1.1 leo
1161 1.16 thorpej if((sc = getsoftc(fd_cd, DISKUNIT(bp->b_dev))) == NULL)
1162 1.9 cgd panic("fdminphys: couldn't get softc");
1163 1.1 leo
1164 1.1 leo sec = bp->b_blkno % (sc->nsectors * sc->nheads);
1165 1.1 leo toff = sec * SECTOR_SIZE;
1166 1.1 leo tsz = sc->nsectors * sc->nheads * SECTOR_SIZE;
1167 1.1 leo
1168 1.1 leo #ifdef FLP_DEBUG
1169 1.1 leo printf("fdminphys: before %d", bp->b_bcount);
1170 1.1 leo #endif
1171 1.1 leo
1172 1.1 leo bp->b_bcount = min(bp->b_bcount, tsz - toff);
1173 1.1 leo
1174 1.1 leo #ifdef FLP_DEBUG
1175 1.1 leo printf(" after %d\n", bp->b_bcount);
1176 1.1 leo #endif
1177 1.1 leo
1178 1.10 mycroft minphys(bp);
1179 1.12 leo }
1180 1.12 leo
1181 1.12 leo /*
1182 1.12 leo * Called from fdmotoroff to turn the motor actually off....
1183 1.12 leo * This can't be done in fdmotoroff itself, because exclusive access to the
1184 1.12 leo * DMA controller is needed to read the FDC-status register. The function
1185 1.12 leo * 'fdmoff()' always runs as the result of a 'dmagrab()'.
1186 1.12 leo * We need to test the status-register because we want to be sure that the
1187 1.12 leo * drive motor is really off before deselecting the drive. The FDC only
1188 1.12 leo * turns off the drive motor after having seen 10 index-pulses. You only
1189 1.12 leo * get index-pulses when a drive is selected....This means that if the
1190 1.12 leo * drive is deselected when the motor is still spinning, it will continue
1191 1.12 leo * to spin _even_ when you insert a floppy later on...
1192 1.12 leo */
1193 1.12 leo static void
1194 1.12 leo fdmoff(fdsoftc)
1195 1.12 leo struct fd_softc *fdsoftc;
1196 1.12 leo {
1197 1.12 leo int tmp;
1198 1.12 leo
1199 1.12 leo if ((fd_state == FLP_MON) && selected) {
1200 1.12 leo tmp = read_fdreg(FDC_CS);
1201 1.12 leo if (!(tmp & MOTORON)) {
1202 1.12 leo fddeselect();
1203 1.12 leo fd_state = FLP_IDLE;
1204 1.12 leo }
1205 1.12 leo else timeout((FPV)fdmotoroff, (void*)fdsoftc, 10*FLP_MONDELAY);
1206 1.12 leo }
1207 1.12 leo st_dmafree(fdsoftc, &tmp);
1208 1.1 leo }
1209 1.1 leo
1210 1.1 leo /*
1211 1.1 leo * Used to find out wich drives are actually connected. We do this by issueing
1212 1.1 leo * is 'RESTORE' command and check if the 'track-0' bit is set. This also works
1213 1.1 leo * if the drive is present but no floppy is inserted.
1214 1.1 leo */
1215 1.1 leo static void
1216 1.1 leo fdtestdrv(fdsoftc)
1217 1.1 leo struct fd_softc *fdsoftc;
1218 1.1 leo {
1219 1.15 leo int status;
1220 1.1 leo
1221 1.1 leo /*
1222 1.1 leo * Select the right unit and head.
1223 1.1 leo */
1224 1.8 leo fdselect(fdsoftc->unit, 0, FLP_DD);
1225 1.1 leo
1226 1.8 leo write_fdreg(FDC_CS, RESTORE|HBIT);
1227 1.1 leo
1228 1.1 leo /*
1229 1.1 leo * Wait for about 2 seconds.
1230 1.1 leo */
1231 1.1 leo delay(2000000);
1232 1.1 leo
1233 1.4 leo status = read_fdreg(FDC_CS);
1234 1.8 leo if(status & (RNF|BUSY)) {
1235 1.4 leo write_fdreg(FDC_CS, IRUPT); /* reset controller */
1236 1.8 leo delay(40);
1237 1.8 leo }
1238 1.1 leo
1239 1.1 leo if(!(status & LD_T00))
1240 1.1 leo fdsoftc->flags |= FLPF_NOTRESP;
1241 1.8 leo
1242 1.8 leo fddeselect();
1243 1.1 leo }
1244 1.1 leo
1245 1.1 leo /*
1246 1.1 leo * Build disk label. For now we only create a label from what we know
1247 1.1 leo * from 'sc'.
1248 1.1 leo */
1249 1.1 leo static int
1250 1.1 leo fdgetdisklabel(sc, dev)
1251 1.1 leo struct fd_softc *sc;
1252 1.1 leo dev_t dev;
1253 1.1 leo {
1254 1.15 leo struct disklabel *lp;
1255 1.1 leo int part;
1256 1.1 leo
1257 1.1 leo /*
1258 1.1 leo * If we already got one, get out.
1259 1.1 leo */
1260 1.1 leo if(sc->flags & FLPF_HAVELAB)
1261 1.1 leo return(0);
1262 1.1 leo
1263 1.1 leo #ifdef FLP_DEBUG
1264 1.1 leo printf("fdgetdisklabel()\n");
1265 1.1 leo #endif
1266 1.1 leo
1267 1.1 leo part = DISKPART(dev);
1268 1.13 thorpej lp = sc->dkdev.dk_label;
1269 1.1 leo bzero(lp, sizeof(struct disklabel));
1270 1.10 mycroft
1271 1.1 leo lp->d_secsize = SECTOR_SIZE;
1272 1.1 leo lp->d_ntracks = sc->nheads;
1273 1.1 leo lp->d_nsectors = sc->nsectors;
1274 1.1 leo lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
1275 1.1 leo lp->d_ncylinders = sc->nblocks / lp->d_secpercyl;
1276 1.1 leo lp->d_secperunit = sc->nblocks;
1277 1.1 leo
1278 1.1 leo lp->d_type = DTYPE_FLOPPY;
1279 1.1 leo lp->d_rpm = 300; /* good guess I suppose. */
1280 1.1 leo lp->d_interleave = 1; /* FIXME: is this OK? */
1281 1.1 leo lp->d_bbsize = 0;
1282 1.1 leo lp->d_sbsize = 0;
1283 1.1 leo lp->d_npartitions = part + 1;
1284 1.10 mycroft lp->d_trkseek = STEP_DELAY;
1285 1.1 leo lp->d_magic = DISKMAGIC;
1286 1.1 leo lp->d_magic2 = DISKMAGIC;
1287 1.1 leo lp->d_checksum = dkcksum(lp);
1288 1.1 leo lp->d_partitions[part].p_size = lp->d_secperunit;
1289 1.1 leo lp->d_partitions[part].p_fstype = FS_UNUSED;
1290 1.1 leo lp->d_partitions[part].p_fsize = 1024;
1291 1.1 leo lp->d_partitions[part].p_frag = 8;
1292 1.1 leo sc->flags |= FLPF_HAVELAB;
1293 1.10 mycroft
1294 1.1 leo return(0);
1295 1.1 leo }
1296