1 #define AZT_VERSION "2.60"
3 /* $Id: aztcd.c,v 2.60 1997/11/29 09:51:19 root Exp root $
4 linux/drivers/block/aztcd.c - Aztech CD268 CDROM driver
6 Copyright (C) 1994-98 Werner Zimmermann(Werner.Zimmermann@fht-esslingen.de)
8 based on Mitsumi CDROM driver by Martin Hariss and preworks by
9 Eberhard Moenkeberg; contains contributions by Joe Nardone and Robby
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2, or (at your option)
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 V0.0 Adaption to Aztech CD268-01A Version 1.3
28 Version is PRE_ALPHA, unresolved points:
29 1. I use busy wait instead of timer wait in STEN_LOW,DTEN_LOW
30 thus driver causes CPU overhead and is very slow
31 2. could not find a way to stop the drive, when it is
32 in data read mode, therefore I had to set
33 msf.end.min/sec/frame to 0:0:1 (in azt_poll); so only one
34 frame can be read in sequence, this is also the reason for
35 3. getting 'timeout in state 4' messages, but nevertheless
37 W.Zimmermann, Oct. 31, 1994
38 V0.1 Version is ALPHA, problems #2 and #3 resolved.
39 W.Zimmermann, Nov. 3, 1994
40 V0.2 Modification to some comments, debugging aids for partial test
41 with Borland C under DOS eliminated. Timer interrupt wait
42 STEN_LOW_WAIT additionally to busy wait for STEN_LOW implemented;
43 use it only for the 'slow' commands (ACMD_GET_Q_CHANNEL, ACMD_
44 SEEK_TO_LEAD_IN), all other commands are so 'fast', that busy
45 waiting seems better to me than interrupt rescheduling.
46 Besides that, when used in the wrong place, STEN_LOW_WAIT causes
48 In function aztPlay command ACMD_PLAY_AUDIO added, should make
49 audio functions work. The Aztech drive needs different commands
50 to read data tracks and play audio tracks.
51 W.Zimmermann, Nov. 8, 1994
52 V0.3 Recognition of missing drive during boot up improved (speeded up).
53 W.Zimmermann, Nov. 13, 1994
54 V0.35 Rewrote the control mechanism in azt_poll (formerly mcd_poll)
55 including removal of all 'goto' commands. :-);
56 J. Nardone, Nov. 14, 1994
57 V0.4 Renamed variables and constants to 'azt' instead of 'mcd'; had
58 to make some "compatibility" defines in azt.h; please note,
59 that the source file was renamed to azt.c, the include file to
61 Speeded up drive recognition during init (will be a little bit
62 slower than before if no drive is installed!); suggested by
64 read_count declared volatile and set to AZT_BUF_SIZ to make
65 drive faster (now 300kB/sec, was 60kB/sec before, measured
66 by 'time dd if=/dev/cdrom of=/dev/null bs=2048 count=4096';
67 different AZT_BUF_SIZes were test, above 16 no further im-
68 provement seems to be possible; suggested by E.Moenkeberg.
69 W.Zimmermann, Nov. 18, 1994
70 V0.42 Included getAztStatus command in GetQChannelInfo() to allow
71 reading Q-channel info on audio disks, if drive is stopped,
72 and some other bug fixes in the audio stuff, suggested by
74 Added more ioctls (reading data in mode 1 and mode 2).
75 Completely removed the old azt_poll() routine.
76 Detection of ORCHID CDS-3110 in aztcd_init implemented.
77 Additional debugging aids (see the readme file).
78 W.Zimmermann, Dec. 9, 1994
79 V0.50 Autodetection of drives implemented.
80 W.Zimmermann, Dec. 12, 1994
81 V0.52 Prepared for including in the standard kernel, renamed most
82 variables to contain 'azt', included autoconf.h
83 W.Zimmermann, Dec. 16, 1994
84 V0.6 Version for being included in the standard Linux kernel.
85 Renamed source and header file to aztcd.c and aztcd.h
86 W.Zimmermann, Dec. 24, 1994
87 V0.7 Changed VERIFY_READ to VERIFY_WRITE in aztcd_ioctl, case
88 CDROMREADMODE1 and CDROMREADMODE2; bug fix in the ioctl,
89 which causes kernel crashes when playing audio, changed
90 include-files (config.h instead of autoconf.h, removed
92 W.Zimmermann, Jan. 8, 1995
93 V0.72 Some more modifications for adaption to the standard kernel.
94 W.Zimmermann, Jan. 16, 1995
95 V0.80 aztcd is now part of the standard kernel since version 1.1.83.
96 Modified the SET_TIMER and CLEAR_TIMER macros to comply with
98 W.Zimmermann, Jan. 21, 1995
99 V0.90 Included CDROMVOLCTRL, but with my Aztech drive I can only turn
100 the channels on and off. If it works better with your drive,
101 please mail me. Also implemented ACMD_CLOSE for CDROMSTART.
102 W.Zimmermann, Jan. 24, 1995
103 V1.00 Implemented close and lock tray commands. Patches supplied by
105 Added support for loadable MODULEs, so aztcd can now also be
106 loaded by insmod and removed by rmmod during run time
107 Werner Zimmermann, Mar. 24, 95
108 V1.10 Implemented soundcard configuration for Orchid CDS-3110 drives
109 connected to Soundwave32 cards. Release for LST 2.1.
111 Werner Zimmermann, May 8, 95
112 V1.20 Implemented limited support for DOSEMU0.60's cdrom.c. Now it works, but
113 sometimes DOSEMU may hang for 30 seconds or so. A fully functional ver-
114 sion needs an update of Dosemu0.60's cdrom.c, which will come with the
115 next revision of Dosemu.
116 Also Soundwave32 support now works.
117 Werner Zimmermann, May 22, 95
118 V1.30 Auto-eject feature. Inspired by Franc Racis (racis@psu.edu)
119 Werner Zimmermann, July 4, 95
120 V1.40 Started multisession support. Implementation copied from mcdx.c
121 by Heiko Schlittermann. Not tested yet.
122 Werner Zimmermann, July 15, 95
123 V1.50 Implementation of ioctl CDROMRESET, continued multisession, began
124 XA, but still untested. Heavy modifications to drive status de-
126 Werner Zimmermann, July 25, 95
127 V1.60 XA support now should work. Speeded up drive recognition in cases,
128 where no drive is installed.
129 Werner Zimmermann, August 8, 1995
130 V1.70 Multisession support now is completed, but there is still not
131 enough testing done. If you can test it, please contact me. For
132 details please read Documentation/cdrom/aztcd
133 Werner Zimmermann, August 19, 1995
134 V1.80 Modification to suit the new kernel boot procedure introduced
135 with kernel 1.3.33. Will definitely not work with older kernels.
136 Programming done by Linus himself.
137 Werner Zimmermann, October 11, 1995
138 V1.90 Support for Conrad TXC drives, thank's to Jochen Kunz and Olaf Kaluza.
139 Werner Zimmermann, October 21, 1995
140 V2.00 Changed #include "blk.h" to <linux/blk.h> as the directory
141 structure was changed. README.aztcd is now /usr/src/docu-
142 mentation/cdrom/aztcd
143 Werner Zimmermann, November 10, 95
144 V2.10 Started to modify azt_poll to prevent reading beyond end of
146 Werner Zimmermann, December 3, 95
147 V2.20 Changed some comments
148 Werner Zimmermann, April 1, 96
149 V2.30 Implemented support for CyCDROM CR520, CR940, Code for CR520
150 delivered by H.Berger with preworks by E.Moenkeberg.
151 Werner Zimmermann, April 29, 96
152 V2.40 Reorganized the placement of functions in the source code file
153 to reflect the layered approach; did not actually change code
154 Werner Zimmermann, May 1, 96
155 V2.50 Heiko Eissfeldt suggested to remove some VERIFY_READs in
156 aztcd_ioctl; check_aztcd_media_change modified
157 Werner Zimmermann, May 16, 96
158 V2.60 Implemented Auto-Probing; made changes for kernel's 2.1.xx blocksize
159 Adaption to linux kernel > 2.1.0
160 Werner Zimmermann, Nov 29, 97
162 November 1999 -- Make kernel-parameter implementation work with 2.3.x
163 Removed init_module & cleanup_module in favor of
164 module_init & module_exit.
165 Torben Mathiasen <tmm@image.dk>
168 #include <linux/blkdev.h>
171 #include <linux/module.h>
172 #include <linux/errno.h>
173 #include <linux/sched.h>
174 #include <linux/mm.h>
175 #include <linux/timer.h>
176 #include <linux/fs.h>
177 #include <linux/kernel.h>
178 #include <linux/cdrom.h>
179 #include <linux/ioport.h>
180 #include <linux/string.h>
181 #include <linux/major.h>
183 #include <linux/init.h>
185 #include <asm/system.h>
188 #include <asm/uaccess.h>
190 /*###########################################################################
192 ###########################################################################
195 #define MAJOR_NR AZTECH_CDROM_MAJOR
196 #define QUEUE (azt_queue)
197 #define CURRENT elv_next_request(azt_queue)
198 #define SET_TIMER(func, jifs) delay_timer.expires = jiffies + (jifs); \
199 delay_timer.function = (void *) (func); \
200 add_timer(&delay_timer);
202 #define CLEAR_TIMER del_timer(&delay_timer);
204 #define RETURNM(message,value) {printk("aztcd: Warning: %s failed\n",message);\
206 #define RETURN(message) {printk("aztcd: Warning: %s failed\n",message);\
209 /* Macros to switch the IDE-interface to the slave device and back to the master*/
210 #define SWITCH_IDE_SLAVE outb_p(0xa0,azt_port+6); \
211 outb_p(0x10,azt_port+6); \
212 outb_p(0x00,azt_port+7); \
213 outb_p(0x10,azt_port+6);
214 #define SWITCH_IDE_MASTER outb_p(0xa0,azt_port+6);
219 #define AZT_TEST1 /* <int-..> */
220 #define AZT_TEST2 /* do_aztcd_request */
221 #define AZT_TEST3 /* AZT_S_state */
222 #define AZT_TEST4 /* QUICK_LOOP-counter */
223 #define AZT_TEST5 /* port(1) state */
225 #define AZT_DEBUG_MULTISESSION
228 static struct request_queue *azt_queue;
230 static int current_valid(void)
233 CURRENT->cmd == READ &&
234 CURRENT->sector != -1;
237 #define AFL_STATUSorDATA (AFL_STATUS | AFL_DATA)
238 #define AZT_BUF_SIZ 16
240 #define READ_TIMEOUT 3000
242 #define azt_port aztcd /*needed for the modutils */
244 /*##########################################################################
246 ##########################################################################
248 enum azt_state_e { AZT_S_IDLE, /* 0 */
254 AZT_S_STOPPING /* 6 */
256 enum azt_read_modes { AZT_MODE_0, /*read mode for audio disks, not supported by Aztech firmware */
257 AZT_MODE_1, /*read mode for normal CD-ROMs */
258 AZT_MODE_2 /*read mode for XA CD-ROMs */
261 /*##########################################################################
263 ##########################################################################
265 static int aztPresent = 0;
267 static volatile int azt_transfer_is_active = 0;
269 static char azt_buf[CD_FRAMESIZE_RAW * AZT_BUF_SIZ]; /*buffer for block size conversion */
270 #if AZT_PRIVATE_IOCTLS
271 static char buf[CD_FRAMESIZE_RAW]; /*separate buffer for the ioctls */
274 static volatile int azt_buf_bn[AZT_BUF_SIZ], azt_next_bn;
275 static volatile int azt_buf_in, azt_buf_out = -1;
276 static volatile int azt_error = 0;
277 static int azt_open_count = 0;
278 static volatile enum azt_state_e azt_state = AZT_S_IDLE;
280 static volatile enum azt_state_e azt_state_old = AZT_S_STOP;
281 static volatile int azt_st_old = 0;
283 static volatile enum azt_read_modes azt_read_mode = AZT_MODE_1;
285 static int azt_mode = -1;
286 static volatile int azt_read_count = 1;
288 static int azt_port = AZT_BASE_ADDR;
290 module_param(azt_port, int, 0);
292 static int azt_port_auto[16] = AZT_BASE_AUTO;
294 static char azt_cont = 0;
295 static char azt_init_end = 0;
296 static char azt_auto_eject = AZT_AUTO_EJECT;
298 static int AztTimeout, AztTries;
299 static DECLARE_WAIT_QUEUE_HEAD(azt_waitq);
300 static DEFINE_TIMER(delay_timer, NULL, 0, 0);
302 static struct azt_DiskInfo DiskInfo;
303 static struct azt_Toc Toc[MAX_TRACKS];
304 static struct azt_Play_msf azt_Play;
306 static int aztAudioStatus = CDROM_AUDIO_NO_STATUS;
307 static char aztDiskChanged = 1;
308 static char aztTocUpToDate = 0;
310 static unsigned char aztIndatum;
311 static unsigned long aztTimeOutCount;
312 static int aztCmd = 0;
314 static DEFINE_SPINLOCK(aztSpin);
316 /*###########################################################################
318 ###########################################################################
320 /* CDROM Drive Low Level I/O Functions */
321 static void aztStatTimer(void);
323 /* CDROM Drive Command Functions */
324 static int aztGetDiskInfo(void);
326 static int aztGetMultiDiskInfo(void);
328 static int aztGetToc(int multi);
330 /* Kernel Interface Functions */
331 static int check_aztcd_media_change(struct gendisk *disk);
332 static int aztcd_ioctl(struct inode *ip, struct file *fp, unsigned int cmd,
334 static int aztcd_open(struct inode *ip, struct file *fp);
335 static int aztcd_release(struct inode *inode, struct file *file);
337 static struct block_device_operations azt_fops = {
338 .owner = THIS_MODULE,
340 .release = aztcd_release,
341 .ioctl = aztcd_ioctl,
342 .media_changed = check_aztcd_media_change,
345 /* Aztcd State Machine: Controls Drive Operating State */
346 static void azt_poll(void);
348 /* Miscellaneous support functions */
349 static void azt_hsg2msf(long hsg, struct msf *msf);
350 static long azt_msf2hsg(struct msf *mp);
351 static void azt_bin2bcd(unsigned char *p);
352 static int azt_bcd2bin(unsigned char bcd);
354 /*##########################################################################
355 CDROM Drive Low Level I/O Functions
356 ##########################################################################
358 /* Macros for the drive hardware interface handshake, these macros use
360 /* Wait for OP_OK = drive answers with AFL_OP_OK after receiving a command*/
361 # define OP_OK op_ok()
362 static void op_ok(void)
366 aztIndatum = inb(DATA_PORT);
368 if (aztTimeOutCount >= AZT_TIMEOUT) {
369 printk("aztcd: Error Wait OP_OK\n");
372 } while (aztIndatum != AFL_OP_OK);
375 /* Wait for PA_OK = drive answers with AFL_PA_OK after receiving parameters*/
377 # define PA_OK pa_ok()
378 static void pa_ok(void)
382 aztIndatum = inb(DATA_PORT);
384 if (aztTimeOutCount >= AZT_TIMEOUT) {
385 printk("aztcd: Error Wait PA_OK\n");
388 } while (aztIndatum != AFL_PA_OK);
392 /* Wait for STEN=Low = handshake signal 'AFL_.._OK available or command executed*/
393 # define STEN_LOW sten_low()
394 static void sten_low(void)
398 aztIndatum = inb(STATUS_PORT);
400 if (aztTimeOutCount >= AZT_TIMEOUT) {
403 ("aztcd: Error Wait STEN_LOW commands:%x\n",
407 } while (aztIndatum & AFL_STATUS);
410 /* Wait for DTEN=Low = handshake signal 'Data available'*/
411 # define DTEN_LOW dten_low()
412 static void dten_low(void)
416 aztIndatum = inb(STATUS_PORT);
418 if (aztTimeOutCount >= AZT_TIMEOUT) {
419 printk("aztcd: Error Wait DTEN_OK\n");
422 } while (aztIndatum & AFL_DATA);
426 * Macro for timer wait on STEN=Low, should only be used for 'slow' commands;
427 * may cause kernel panic when used in the wrong place
429 #define STEN_LOW_WAIT statusAzt()
430 static void statusAzt(void)
432 AztTimeout = AZT_STATUS_DELAY;
433 SET_TIMER(aztStatTimer, HZ / 100);
434 sleep_on(&azt_waitq);
436 printk("aztcd: Error Wait STEN_LOW_WAIT command:%x\n",
441 static void aztStatTimer(void)
443 if (!(inb(STATUS_PORT) & AFL_STATUS)) {
448 if (AztTimeout <= 0) {
450 printk("aztcd: Error aztStatTimer: Timeout\n");
453 SET_TIMER(aztStatTimer, HZ / 100);
456 /*##########################################################################
457 CDROM Drive Command Functions
458 ##########################################################################
461 * Send a single command, return -1 on error, else 0
463 static int aztSendCmd(int cmd)
469 printk("aztcd: Executing command %x\n", cmd);
472 if ((azt_port == 0x1f0) || (azt_port == 0x170))
473 SWITCH_IDE_SLAVE; /*switch IDE interface to slave configuration */
476 outb(POLLED, MODE_PORT);
478 if (inb(STATUS_PORT) & AFL_STATUS)
480 inb(DATA_PORT); /* if status left from last command, read and */
481 } while (1); /* discard it */
483 if (inb(STATUS_PORT) & AFL_DATA)
485 inb(DATA_PORT); /* if data left from last command, read and */
486 } while (1); /* discard it */
487 for (retry = 0; retry < AZT_RETRY_ATTEMPTS; retry++) {
488 outb((unsigned char) cmd, CMD_PORT);
490 data = inb(DATA_PORT);
491 if (data == AFL_OP_OK) {
494 if (data == AFL_OP_ERR) {
496 data = inb(DATA_PORT);
498 ("### Error 1 aztcd: aztSendCmd %x Error Code %x\n",
502 if (retry >= AZT_RETRY_ATTEMPTS) {
503 printk("### Error 2 aztcd: aztSendCmd %x \n", cmd);
506 RETURNM("aztSendCmd", -1);
510 * Send a play or read command to the drive, return -1 on error, else 0
512 static int sendAztCmd(int cmd, struct azt_Play_msf *params)
518 printk("aztcd: play start=%02x:%02x:%02x end=%02x:%02x:%02x\n",
519 params->start.min, params->start.sec, params->start.frame,
520 params->end.min, params->end.sec, params->end.frame);
522 for (retry = 0; retry < AZT_RETRY_ATTEMPTS; retry++) {
524 outb(params->start.min, CMD_PORT);
525 outb(params->start.sec, CMD_PORT);
526 outb(params->start.frame, CMD_PORT);
527 outb(params->end.min, CMD_PORT);
528 outb(params->end.sec, CMD_PORT);
529 outb(params->end.frame, CMD_PORT);
531 data = inb(DATA_PORT);
532 if (data == AFL_PA_OK) {
535 if (data == AFL_PA_ERR) {
537 data = inb(DATA_PORT);
539 ("### Error 1 aztcd: sendAztCmd %x Error Code %x\n",
543 if (retry >= AZT_RETRY_ATTEMPTS) {
544 printk("### Error 2 aztcd: sendAztCmd %x\n ", cmd);
547 RETURNM("sendAztCmd", -1);
551 * Send a seek command to the drive, return -1 on error, else 0
553 static int aztSeek(struct azt_Play_msf *params)
559 printk("aztcd: aztSeek %02x:%02x:%02x\n",
560 params->start.min, params->start.sec, params->start.frame);
562 for (retry = 0; retry < AZT_RETRY_ATTEMPTS; retry++) {
563 aztSendCmd(ACMD_SEEK);
564 outb(params->start.min, CMD_PORT);
565 outb(params->start.sec, CMD_PORT);
566 outb(params->start.frame, CMD_PORT);
568 data = inb(DATA_PORT);
569 if (data == AFL_PA_OK) {
572 if (data == AFL_PA_ERR) {
574 data = inb(DATA_PORT);
575 printk("### Error 1 aztcd: aztSeek\n");
578 if (retry >= AZT_RETRY_ATTEMPTS) {
579 printk("### Error 2 aztcd: aztSeek\n ");
582 RETURNM("aztSeek", -1);
585 /* Send a Set Disk Type command
586 does not seem to work with Aztech drives, behavior is completely indepen-
587 dent on which mode is set ???
589 static int aztSetDiskType(int type)
595 printk("aztcd: set disk type command: type= %i\n", type);
597 for (retry = 0; retry < AZT_RETRY_ATTEMPTS; retry++) {
598 aztSendCmd(ACMD_SET_DISK_TYPE);
599 outb(type, CMD_PORT);
601 data = inb(DATA_PORT);
602 if (data == AFL_PA_OK) { /*PA_OK ? */
603 azt_read_mode = type;
606 if (data == AFL_PA_ERR) {
608 data = inb(DATA_PORT);
610 ("### Error 1 aztcd: aztSetDiskType %x Error Code %x\n",
614 if (retry >= AZT_RETRY_ATTEMPTS) {
615 printk("### Error 2 aztcd: aztSetDiskType %x\n ", type);
618 RETURNM("aztSetDiskType", -1);
622 /* used in azt_poll to poll the status, expects another program to issue a
623 * ACMD_GET_STATUS directly before
625 static int aztStatus(void)
630 i = inb(STATUS_PORT) & AFL_STATUS; is STEN=0? ???
633 if (aztTimeOutCount < AZT_TIMEOUT) {
634 st = inb(DATA_PORT) & 0xFF;
637 RETURNM("aztStatus", -1);
641 * Get the drive status
643 static int getAztStatus(void)
647 if (aztSendCmd(ACMD_GET_STATUS))
648 RETURNM("getAztStatus 1", -1);
650 st = inb(DATA_PORT) & 0xFF;
652 printk("aztcd: Status = %x\n", st);
654 if ((st == 0xFF) || (st & AST_CMD_CHECK)) {
656 ("aztcd: AST_CMD_CHECK error or no status available\n");
660 if (((st & AST_MODE_BITS) != AST_BUSY)
661 && (aztAudioStatus == CDROM_AUDIO_PLAY))
662 /* XXX might be an error? look at q-channel? */
663 aztAudioStatus = CDROM_AUDIO_COMPLETED;
665 if ((st & AST_DSK_CHG) || (st & AST_NOT_READY)) {
668 aztAudioStatus = CDROM_AUDIO_NO_STATUS;
675 * Send a 'Play' command and get the status. Use only from the top half.
677 static int aztPlay(struct azt_Play_msf *arg)
679 if (sendAztCmd(ACMD_PLAY_AUDIO, arg) < 0)
680 RETURNM("aztPlay", -1);
685 * Subroutines to automatically close the door (tray) and
686 * lock it closed when the cd is mounted. Leave the tray
687 * locking as an option
689 static void aztCloseDoor(void)
691 aztSendCmd(ACMD_CLOSE);
696 static void aztLockDoor(void)
698 #if AZT_ALLOW_TRAY_LOCK
699 aztSendCmd(ACMD_LOCK);
705 static void aztUnlockDoor(void)
707 #if AZT_ALLOW_TRAY_LOCK
708 aztSendCmd(ACMD_UNLOCK);
715 * Read a value from the drive. Should return quickly, so a busy wait
716 * is used to avoid excessive rescheduling. The read command itself must
717 * be issued with aztSendCmd() directly before
719 static int aztGetValue(unsigned char *result)
724 if (aztTimeOutCount >= AZT_TIMEOUT) {
725 printk("aztcd: aztGetValue timeout\n");
728 s = inb(DATA_PORT) & 0xFF;
729 *result = (unsigned char) s;
734 * Read the current Q-channel info. Also used for reading the
737 static int aztGetQChannelInfo(struct azt_Toc *qp)
739 unsigned char notUsed;
743 printk("aztcd: starting aztGetQChannelInfo Time:%li\n", jiffies);
745 if ((st = getAztStatus()) == -1)
746 RETURNM("aztGetQChannelInfo 1", -1);
747 if (aztSendCmd(ACMD_GET_Q_CHANNEL))
748 RETURNM("aztGetQChannelInfo 2", -1);
749 /*STEN_LOW_WAIT; ??? Dosemu0.60's cdrom.c does not like STEN_LOW_WAIT here */
750 if (aztGetValue(¬Used))
751 RETURNM("aztGetQChannelInfo 3", -1); /*??? Nullbyte einlesen */
752 if ((st & AST_MODE_BITS) == AST_INITIAL) {
753 qp->ctrl_addr = 0; /* when audio stop ACMD_GET_Q_CHANNEL returns */
754 qp->track = 0; /* only one byte with Aztech drives */
756 qp->trackTime.min = 0;
757 qp->trackTime.sec = 0;
758 qp->trackTime.frame = 0;
759 qp->diskTime.min = 0;
760 qp->diskTime.sec = 0;
761 qp->diskTime.frame = 0;
764 if (aztGetValue(&qp->ctrl_addr) < 0)
765 RETURNM("aztGetQChannelInfo 4", -1);
766 if (aztGetValue(&qp->track) < 0)
767 RETURNM("aztGetQChannelInfo 4", -1);
768 if (aztGetValue(&qp->pointIndex) < 0)
769 RETURNM("aztGetQChannelInfo 4", -1);
770 if (aztGetValue(&qp->trackTime.min) < 0)
771 RETURNM("aztGetQChannelInfo 4", -1);
772 if (aztGetValue(&qp->trackTime.sec) < 0)
773 RETURNM("aztGetQChannelInfo 4", -1);
774 if (aztGetValue(&qp->trackTime.frame) < 0)
775 RETURNM("aztGetQChannelInfo 4", -1);
776 if (aztGetValue(¬Used) < 0)
777 RETURNM("aztGetQChannelInfo 4", -1);
778 if (aztGetValue(&qp->diskTime.min) < 0)
779 RETURNM("aztGetQChannelInfo 4", -1);
780 if (aztGetValue(&qp->diskTime.sec) < 0)
781 RETURNM("aztGetQChannelInfo 4", -1);
782 if (aztGetValue(&qp->diskTime.frame) < 0)
783 RETURNM("aztGetQChannelInfo 4", -1);
786 printk("aztcd: exiting aztGetQChannelInfo Time:%li\n", jiffies);
792 * Read the table of contents (TOC) and TOC header if necessary
794 static int aztUpdateToc(void)
799 printk("aztcd: starting aztUpdateToc Time:%li\n", jiffies);
804 if (aztGetDiskInfo() < 0)
807 if (aztGetToc(0) < 0)
810 /*audio disk detection
811 with my Aztech drive there is no audio status bit, so I use the copy
812 protection bit of the first track. If this track is copy protected
813 (copy bit = 0), I assume, it's an audio disk. Strange, but works ??? */
814 if (!(Toc[DiskInfo.first].ctrl_addr & 0x40))
820 if (!DiskInfo.audio) {
821 azt_Play.start.min = 0; /*XA detection only seems to work */
822 azt_Play.start.sec = 2; /*when we play a track */
823 azt_Play.start.frame = 0;
824 azt_Play.end.min = 0;
825 azt_Play.end.sec = 0;
826 azt_Play.end.frame = 1;
827 if (sendAztCmd(ACMD_PLAY_READ, &azt_Play))
830 for (st = 0; st < CD_FRAMESIZE; st++)
833 DiskInfo.xa = getAztStatus() & AST_MODE;
836 ("aztcd: XA support experimental - mail results to Werner.Zimmermann@fht-esslingen.de\n");
839 /*multisession detection
840 support for multisession CDs is done automatically with Aztech drives,
841 we don't have to take care about TOC redirection; if we want the isofs
842 to take care about redirection, we have to set AZT_MULTISESSION to 1 */
846 aztGetMultiDiskInfo(); /*here Disk.Info.multi is set */
849 if (DiskInfo.multi) {
850 DiskInfo.lastSession.min = Toc[DiskInfo.next].diskTime.min;
851 DiskInfo.lastSession.sec = Toc[DiskInfo.next].diskTime.sec;
852 DiskInfo.lastSession.frame =
853 Toc[DiskInfo.next].diskTime.frame;
854 printk("aztcd: Multisession support experimental\n");
856 DiskInfo.lastSession.min =
857 Toc[DiskInfo.first].diskTime.min;
858 DiskInfo.lastSession.sec =
859 Toc[DiskInfo.first].diskTime.sec;
860 DiskInfo.lastSession.frame =
861 Toc[DiskInfo.first].diskTime.frame;
866 printk("aztcd: exiting aztUpdateToc Time:%li\n", jiffies);
872 /* Read the table of contents header, i.e. no. of tracks and start of first
875 static int aztGetDiskInfo(void)
879 struct azt_Toc qInfo;
882 printk("aztcd: starting aztGetDiskInfo Time:%li\n", jiffies);
884 if (aztSendCmd(ACMD_SEEK_TO_LEADIN))
885 RETURNM("aztGetDiskInfo 1", -1);
888 for (limit = 300; limit > 0; limit--) {
889 if (aztGetQChannelInfo(&qInfo) < 0)
890 RETURNM("aztGetDiskInfo 2", -1);
891 if (qInfo.pointIndex == 0xA0) { /*Number of FirstTrack */
892 DiskInfo.first = qInfo.diskTime.min;
893 DiskInfo.first = azt_bcd2bin(DiskInfo.first);
896 if (qInfo.pointIndex == 0xA1) { /*Number of LastTrack */
897 DiskInfo.last = qInfo.diskTime.min;
898 DiskInfo.last = azt_bcd2bin(DiskInfo.last);
901 if (qInfo.pointIndex == 0xA2) { /*DiskLength */
902 DiskInfo.diskLength.min = qInfo.diskTime.min;
903 DiskInfo.diskLength.sec = qInfo.diskTime.sec;
904 DiskInfo.diskLength.frame = qInfo.diskTime.frame;
907 if ((qInfo.pointIndex == DiskInfo.first) && (test & 0x01)) { /*StartTime of First Track */
908 DiskInfo.firstTrack.min = qInfo.diskTime.min;
909 DiskInfo.firstTrack.sec = qInfo.diskTime.sec;
910 DiskInfo.firstTrack.frame = qInfo.diskTime.frame;
917 printk("aztcd: exiting aztGetDiskInfo Time:%li\n", jiffies);
919 ("Disk Info: first %d last %d length %02X:%02X.%02X dez first %02X:%02X.%02X dez\n",
920 DiskInfo.first, DiskInfo.last, DiskInfo.diskLength.min,
921 DiskInfo.diskLength.sec, DiskInfo.diskLength.frame,
922 DiskInfo.firstTrack.min, DiskInfo.firstTrack.sec,
923 DiskInfo.firstTrack.frame);
932 * Get Multisession Disk Info
934 static int aztGetMultiDiskInfo(void)
938 struct azt_Toc qInfo;
941 printk("aztcd: starting aztGetMultiDiskInfo\n");
945 azt_Play.start.min = Toc[DiskInfo.last + 1].diskTime.min;
946 azt_Play.start.sec = Toc[DiskInfo.last + 1].diskTime.sec;
947 azt_Play.start.frame =
948 Toc[DiskInfo.last + 1].diskTime.frame;
951 for (limit = 30; limit > 0; limit--) { /*Seek for LeadIn of next session */
952 if (aztSeek(&azt_Play))
953 RETURNM("aztGetMultiDiskInfo 1", -1);
954 if (aztGetQChannelInfo(&qInfo) < 0)
955 RETURNM("aztGetMultiDiskInfo 2", -1);
956 if ((qInfo.track == 0) && (qInfo.pointIndex))
957 break; /*LeadIn found */
958 if ((azt_Play.start.sec += 10) > 59) {
959 azt_Play.start.sec = 0;
960 azt_Play.start.min++;
964 break; /*Check, if a leadin track was found, if not we're
965 at the end of the disk */
966 #ifdef AZT_DEBUG_MULTISESSION
967 printk("leadin found track %d pointIndex %x limit %d\n",
968 qInfo.track, qInfo.pointIndex, limit);
970 for (limit = 300; limit > 0; limit--) {
971 if (++azt_Play.start.frame > 74) {
972 azt_Play.start.frame = 0;
973 if (azt_Play.start.sec > 59) {
974 azt_Play.start.sec = 0;
975 azt_Play.start.min++;
978 if (aztSeek(&azt_Play))
979 RETURNM("aztGetMultiDiskInfo 3", -1);
980 if (aztGetQChannelInfo(&qInfo) < 0)
981 RETURNM("aztGetMultiDiskInfo 4", -1);
982 if (qInfo.pointIndex == 0xA0) { /*Number of NextTrack */
983 DiskInfo.next = qInfo.diskTime.min;
984 DiskInfo.next = azt_bcd2bin(DiskInfo.next);
987 if (qInfo.pointIndex == 0xA1) { /*Number of LastTrack */
988 DiskInfo.last = qInfo.diskTime.min;
989 DiskInfo.last = azt_bcd2bin(DiskInfo.last);
992 if (qInfo.pointIndex == 0xA2) { /*DiskLength */
993 DiskInfo.diskLength.min =
995 DiskInfo.diskLength.sec =
997 DiskInfo.diskLength.frame =
998 qInfo.diskTime.frame;
1001 if ((qInfo.pointIndex == DiskInfo.next) && (test & 0x01)) { /*StartTime of Next Track */
1002 DiskInfo.nextSession.min =
1004 DiskInfo.nextSession.sec =
1006 DiskInfo.nextSession.frame =
1007 qInfo.diskTime.frame;
1013 #ifdef AZT_DEBUG_MULTISESSION
1015 ("MultiDisk Info: first %d next %d last %d length %02x:%02x.%02x dez first %02x:%02x.%02x dez next %02x:%02x.%02x dez\n",
1016 DiskInfo.first, DiskInfo.next, DiskInfo.last,
1017 DiskInfo.diskLength.min, DiskInfo.diskLength.sec,
1018 DiskInfo.diskLength.frame, DiskInfo.firstTrack.min,
1019 DiskInfo.firstTrack.sec, DiskInfo.firstTrack.frame,
1020 DiskInfo.nextSession.min, DiskInfo.nextSession.sec,
1021 DiskInfo.nextSession.frame);
1026 DiskInfo.multi = 1; /*found TOC of more than one session */
1031 printk("aztcd: exiting aztGetMultiDiskInfo Time:%li\n", jiffies);
1038 * Read the table of contents (TOC)
1040 static int aztGetToc(int multi)
1044 struct azt_Toc qInfo;
1047 printk("aztcd: starting aztGetToc Time:%li\n", jiffies);
1050 for (i = 0; i < MAX_TRACKS; i++)
1051 Toc[i].pointIndex = 0;
1052 i = DiskInfo.last + 3;
1054 for (i = DiskInfo.next; i < MAX_TRACKS; i++)
1055 Toc[i].pointIndex = 0;
1056 i = DiskInfo.last + 4 - DiskInfo.next;
1059 /*Is there a good reason to stop motor before TOC read?
1060 if (aztSendCmd(ACMD_STOP)) RETURNM("aztGetToc 1",-1);
1066 if (aztSendCmd(ACMD_SEEK_TO_LEADIN))
1067 RETURNM("aztGetToc 2", -1);
1070 for (limit = 300; limit > 0; limit--) {
1072 if (++azt_Play.start.sec > 59) {
1073 azt_Play.start.sec = 0;
1074 azt_Play.start.min++;
1076 if (aztSeek(&azt_Play))
1077 RETURNM("aztGetToc 3", -1);
1079 if (aztGetQChannelInfo(&qInfo) < 0)
1082 px = azt_bcd2bin(qInfo.pointIndex);
1084 if (px > 0 && px < MAX_TRACKS && qInfo.track == 0)
1085 if (Toc[px].pointIndex == 0) {
1094 Toc[DiskInfo.last + 1].diskTime = DiskInfo.diskLength;
1095 Toc[DiskInfo.last].trackTime = DiskInfo.diskLength;
1097 #ifdef AZT_DEBUG_MULTISESSION
1098 printk("aztcd: exiting aztGetToc\n");
1099 for (i = 1; i <= DiskInfo.last + 1; i++)
1101 ("i = %2d ctl-adr = %02X track %2d px %02X %02X:%02X.%02X dez %02X:%02X.%02X dez\n",
1102 i, Toc[i].ctrl_addr, Toc[i].track, Toc[i].pointIndex,
1103 Toc[i].trackTime.min, Toc[i].trackTime.sec,
1104 Toc[i].trackTime.frame, Toc[i].diskTime.min,
1105 Toc[i].diskTime.sec, Toc[i].diskTime.frame);
1106 for (i = 100; i < 103; i++)
1108 ("i = %2d ctl-adr = %02X track %2d px %02X %02X:%02X.%02X dez %02X:%02X.%02X dez\n",
1109 i, Toc[i].ctrl_addr, Toc[i].track, Toc[i].pointIndex,
1110 Toc[i].trackTime.min, Toc[i].trackTime.sec,
1111 Toc[i].trackTime.frame, Toc[i].diskTime.min,
1112 Toc[i].diskTime.sec, Toc[i].diskTime.frame);
1115 return limit > 0 ? 0 : -1;
1119 /*##########################################################################
1120 Kernel Interface Functions
1121 ##########################################################################
1125 static int __init aztcd_setup(char *str)
1129 (void) get_options(str, ARRAY_SIZE(ints), ints);
1138 __setup("aztcd=", aztcd_setup);
1140 #endif /* !MODULE */
1143 * Checking if the media has been changed
1145 static int check_aztcd_media_change(struct gendisk *disk)
1147 if (aztDiskChanged) { /* disk changed */
1151 return 0; /* no change */
1155 * Kernel IO-controls
1157 static int aztcd_ioctl(struct inode *ip, struct file *fp, unsigned int cmd,
1161 struct azt_Toc qInfo;
1163 struct cdrom_tochdr tocHdr;
1164 struct cdrom_msf msf;
1165 struct cdrom_tocentry entry;
1166 struct azt_Toc *tocPtr;
1167 struct cdrom_subchnl subchnl;
1168 struct cdrom_volctrl volctrl;
1169 void __user *argp = (void __user *)arg;
1172 printk("aztcd: starting aztcd_ioctl - Command:%x Time: %li\n",
1174 printk("aztcd Status %x\n", getAztStatus());
1177 RETURNM("aztcd_ioctl 1", -EINVAL);
1178 if (getAztStatus() < 0)
1179 RETURNM("aztcd_ioctl 2", -EIO);
1180 if ((!aztTocUpToDate) || (aztDiskChanged)) {
1181 if ((i = aztUpdateToc()) < 0)
1182 RETURNM("aztcd_ioctl 3", i); /* error reading TOC */
1186 case CDROMSTART: /* Spin up the drive. Don't know, what to do,
1187 at least close the tray */
1188 #if AZT_PRIVATE_IOCTLS
1189 if (aztSendCmd(ACMD_CLOSE))
1190 RETURNM("aztcd_ioctl 4", -1);
1194 case CDROMSTOP: /* Spin down the drive */
1195 if (aztSendCmd(ACMD_STOP))
1196 RETURNM("aztcd_ioctl 5", -1);
1198 /* should we do anything if it fails? */
1199 aztAudioStatus = CDROM_AUDIO_NO_STATUS;
1201 case CDROMPAUSE: /* Pause the drive */
1202 if (aztAudioStatus != CDROM_AUDIO_PLAY)
1205 if (aztGetQChannelInfo(&qInfo) < 0) { /* didn't get q channel info */
1206 aztAudioStatus = CDROM_AUDIO_NO_STATUS;
1207 RETURNM("aztcd_ioctl 7", 0);
1209 azt_Play.start = qInfo.diskTime; /* remember restart point */
1211 if (aztSendCmd(ACMD_PAUSE))
1212 RETURNM("aztcd_ioctl 8", -1);
1214 aztAudioStatus = CDROM_AUDIO_PAUSED;
1216 case CDROMRESUME: /* Play it again, Sam */
1217 if (aztAudioStatus != CDROM_AUDIO_PAUSED)
1219 /* restart the drive at the saved position. */
1220 i = aztPlay(&azt_Play);
1222 aztAudioStatus = CDROM_AUDIO_ERROR;
1225 aztAudioStatus = CDROM_AUDIO_PLAY;
1227 case CDROMMULTISESSION: /*multisession support -- experimental */
1229 struct cdrom_multisession ms;
1231 printk("aztcd ioctl MULTISESSION\n");
1233 if (copy_from_user(&ms, argp,
1234 sizeof(struct cdrom_multisession)))
1236 if (ms.addr_format == CDROM_MSF) {
1237 ms.addr.msf.minute =
1238 azt_bcd2bin(DiskInfo.lastSession.min);
1239 ms.addr.msf.second =
1240 azt_bcd2bin(DiskInfo.lastSession.sec);
1242 azt_bcd2bin(DiskInfo.lastSession.
1244 } else if (ms.addr_format == CDROM_LBA)
1246 azt_msf2hsg(&DiskInfo.lastSession);
1249 ms.xa_flag = DiskInfo.xa;
1250 if (copy_to_user(argp, &ms,
1251 sizeof(struct cdrom_multisession)))
1254 if (ms.addr_format == CDROM_MSF)
1256 ("aztcd multisession xa:%d, msf:%02x:%02x.%02x [%02x:%02x.%02x])\n",
1257 ms.xa_flag, ms.addr.msf.minute,
1258 ms.addr.msf.second, ms.addr.msf.frame,
1259 DiskInfo.lastSession.min,
1260 DiskInfo.lastSession.sec,
1261 DiskInfo.lastSession.frame);
1264 ("aztcd multisession %d, lba:0x%08x [%02x:%02x.%02x])\n",
1265 ms.xa_flag, ms.addr.lba,
1266 DiskInfo.lastSession.min,
1267 DiskInfo.lastSession.sec,
1268 DiskInfo.lastSession.frame);
1272 case CDROMPLAYTRKIND: /* Play a track. This currently ignores index. */
1273 if (copy_from_user(&ti, argp, sizeof ti))
1275 if (ti.cdti_trk0 < DiskInfo.first
1276 || ti.cdti_trk0 > DiskInfo.last
1277 || ti.cdti_trk1 < ti.cdti_trk0) {
1280 if (ti.cdti_trk1 > DiskInfo.last)
1281 ti.cdti_trk1 = DiskInfo.last;
1282 azt_Play.start = Toc[ti.cdti_trk0].diskTime;
1283 azt_Play.end = Toc[ti.cdti_trk1 + 1].diskTime;
1285 printk("aztcd play: %02x:%02x.%02x to %02x:%02x.%02x\n",
1286 azt_Play.start.min, azt_Play.start.sec,
1287 azt_Play.start.frame, azt_Play.end.min,
1288 azt_Play.end.sec, azt_Play.end.frame);
1290 i = aztPlay(&azt_Play);
1292 aztAudioStatus = CDROM_AUDIO_ERROR;
1295 aztAudioStatus = CDROM_AUDIO_PLAY;
1297 case CDROMPLAYMSF: /* Play starting at the given MSF address. */
1298 /* if (aztAudioStatus == CDROM_AUDIO_PLAY)
1299 { if (aztSendCmd(ACMD_STOP)) RETURNM("aztcd_ioctl 9",-1);
1301 aztAudioStatus = CDROM_AUDIO_NO_STATUS;
1304 if (copy_from_user(&msf, argp, sizeof msf))
1306 /* convert to bcd */
1307 azt_bin2bcd(&msf.cdmsf_min0);
1308 azt_bin2bcd(&msf.cdmsf_sec0);
1309 azt_bin2bcd(&msf.cdmsf_frame0);
1310 azt_bin2bcd(&msf.cdmsf_min1);
1311 azt_bin2bcd(&msf.cdmsf_sec1);
1312 azt_bin2bcd(&msf.cdmsf_frame1);
1313 azt_Play.start.min = msf.cdmsf_min0;
1314 azt_Play.start.sec = msf.cdmsf_sec0;
1315 azt_Play.start.frame = msf.cdmsf_frame0;
1316 azt_Play.end.min = msf.cdmsf_min1;
1317 azt_Play.end.sec = msf.cdmsf_sec1;
1318 azt_Play.end.frame = msf.cdmsf_frame1;
1320 printk("aztcd play: %02x:%02x.%02x to %02x:%02x.%02x\n",
1321 azt_Play.start.min, azt_Play.start.sec,
1322 azt_Play.start.frame, azt_Play.end.min,
1323 azt_Play.end.sec, azt_Play.end.frame);
1325 i = aztPlay(&azt_Play);
1327 aztAudioStatus = CDROM_AUDIO_ERROR;
1330 aztAudioStatus = CDROM_AUDIO_PLAY;
1333 case CDROMREADTOCHDR: /* Read the table of contents header */
1334 tocHdr.cdth_trk0 = DiskInfo.first;
1335 tocHdr.cdth_trk1 = DiskInfo.last;
1336 if (copy_to_user(argp, &tocHdr, sizeof tocHdr))
1339 case CDROMREADTOCENTRY: /* Read an entry in the table of contents */
1340 if (copy_from_user(&entry, argp, sizeof entry))
1342 if ((!aztTocUpToDate) || aztDiskChanged)
1344 if (entry.cdte_track == CDROM_LEADOUT)
1345 tocPtr = &Toc[DiskInfo.last + 1];
1346 else if (entry.cdte_track > DiskInfo.last
1347 || entry.cdte_track < DiskInfo.first) {
1350 tocPtr = &Toc[entry.cdte_track];
1351 entry.cdte_adr = tocPtr->ctrl_addr;
1352 entry.cdte_ctrl = tocPtr->ctrl_addr >> 4;
1353 if (entry.cdte_format == CDROM_LBA)
1354 entry.cdte_addr.lba =
1355 azt_msf2hsg(&tocPtr->diskTime);
1356 else if (entry.cdte_format == CDROM_MSF) {
1357 entry.cdte_addr.msf.minute =
1358 azt_bcd2bin(tocPtr->diskTime.min);
1359 entry.cdte_addr.msf.second =
1360 azt_bcd2bin(tocPtr->diskTime.sec);
1361 entry.cdte_addr.msf.frame =
1362 azt_bcd2bin(tocPtr->diskTime.frame);
1366 if (copy_to_user(argp, &entry, sizeof entry))
1369 case CDROMSUBCHNL: /* Get subchannel info */
1371 (&subchnl, argp, sizeof(struct cdrom_subchnl)))
1373 if (aztGetQChannelInfo(&qInfo) < 0) {
1376 ("aztcd: exiting aztcd_ioctl - Error 3 - Command:%x\n",
1381 subchnl.cdsc_audiostatus = aztAudioStatus;
1382 subchnl.cdsc_adr = qInfo.ctrl_addr;
1383 subchnl.cdsc_ctrl = qInfo.ctrl_addr >> 4;
1384 subchnl.cdsc_trk = azt_bcd2bin(qInfo.track);
1385 subchnl.cdsc_ind = azt_bcd2bin(qInfo.pointIndex);
1386 if (subchnl.cdsc_format == CDROM_LBA) {
1387 subchnl.cdsc_absaddr.lba =
1388 azt_msf2hsg(&qInfo.diskTime);
1389 subchnl.cdsc_reladdr.lba =
1390 azt_msf2hsg(&qInfo.trackTime);
1391 } else { /*default */
1392 subchnl.cdsc_format = CDROM_MSF;
1393 subchnl.cdsc_absaddr.msf.minute =
1394 azt_bcd2bin(qInfo.diskTime.min);
1395 subchnl.cdsc_absaddr.msf.second =
1396 azt_bcd2bin(qInfo.diskTime.sec);
1397 subchnl.cdsc_absaddr.msf.frame =
1398 azt_bcd2bin(qInfo.diskTime.frame);
1399 subchnl.cdsc_reladdr.msf.minute =
1400 azt_bcd2bin(qInfo.trackTime.min);
1401 subchnl.cdsc_reladdr.msf.second =
1402 azt_bcd2bin(qInfo.trackTime.sec);
1403 subchnl.cdsc_reladdr.msf.frame =
1404 azt_bcd2bin(qInfo.trackTime.frame);
1406 if (copy_to_user(argp, &subchnl, sizeof(struct cdrom_subchnl)))
1409 case CDROMVOLCTRL: /* Volume control
1410 * With my Aztech CD268-01A volume control does not work, I can only
1411 turn the channels on (any value !=0) or off (value==0). Maybe it
1412 works better with your drive */
1413 if (copy_from_user(&volctrl, argp, sizeof(volctrl)))
1415 azt_Play.start.min = 0x21;
1416 azt_Play.start.sec = 0x84;
1417 azt_Play.start.frame = volctrl.channel0;
1418 azt_Play.end.min = volctrl.channel1;
1419 azt_Play.end.sec = volctrl.channel2;
1420 azt_Play.end.frame = volctrl.channel3;
1421 sendAztCmd(ACMD_SET_VOLUME, &azt_Play);
1425 aztUnlockDoor(); /* Assume user knows what they're doing */
1426 /* all drives can at least stop! */
1427 if (aztAudioStatus == CDROM_AUDIO_PLAY) {
1428 if (aztSendCmd(ACMD_STOP))
1429 RETURNM("azt_ioctl 10", -1);
1432 if (aztSendCmd(ACMD_EJECT))
1433 RETURNM("azt_ioctl 11", -1);
1435 aztAudioStatus = CDROM_AUDIO_NO_STATUS;
1438 azt_auto_eject = (char) arg;
1441 outb(ACMD_SOFT_RESET, CMD_PORT); /*send reset */
1443 if (inb(DATA_PORT) != AFL_OP_OK) { /*OP_OK? */
1445 ("aztcd: AZTECH CD-ROM drive does not respond\n");
1448 /*Take care, the following code is not compatible with other CD-ROM drivers,
1449 use it at your own risk with cdplay.c. Set AZT_PRIVATE_IOCTLS to 0 in aztcd.h,
1450 if you do not want to use it!
1452 #if AZT_PRIVATE_IOCTLS
1453 case CDROMREADCOOKED: /*read data in mode 1 (2048 Bytes) */
1454 case CDROMREADRAW: /*read data in mode 2 (2336 Bytes) */
1456 if (copy_from_user(&msf, argp, sizeof msf))
1458 /* convert to bcd */
1459 azt_bin2bcd(&msf.cdmsf_min0);
1460 azt_bin2bcd(&msf.cdmsf_sec0);
1461 azt_bin2bcd(&msf.cdmsf_frame0);
1464 msf.cdmsf_frame1 = 1; /*read only one frame */
1465 azt_Play.start.min = msf.cdmsf_min0;
1466 azt_Play.start.sec = msf.cdmsf_sec0;
1467 azt_Play.start.frame = msf.cdmsf_frame0;
1468 azt_Play.end.min = msf.cdmsf_min1;
1469 azt_Play.end.sec = msf.cdmsf_sec1;
1470 azt_Play.end.frame = msf.cdmsf_frame1;
1471 if (cmd == CDROMREADRAW) {
1473 return -1; /*XA Disks can't be read raw */
1475 if (sendAztCmd(ACMD_PLAY_READ_RAW, &azt_Play))
1478 insb(DATA_PORT, buf, CD_FRAMESIZE_RAW);
1479 if (copy_to_user(argp, &buf, CD_FRAMESIZE_RAW))
1483 /*CDROMREADCOOKED*/ {
1484 if (sendAztCmd(ACMD_PLAY_READ, &azt_Play))
1487 insb(DATA_PORT, buf, CD_FRAMESIZE);
1488 if (copy_to_user(argp, &buf, CD_FRAMESIZE))
1493 case CDROMSEEK: /*seek msf address */
1494 if (copy_from_user(&msf, argp, sizeof msf))
1496 /* convert to bcd */
1497 azt_bin2bcd(&msf.cdmsf_min0);
1498 azt_bin2bcd(&msf.cdmsf_sec0);
1499 azt_bin2bcd(&msf.cdmsf_frame0);
1500 azt_Play.start.min = msf.cdmsf_min0;
1501 azt_Play.start.sec = msf.cdmsf_sec0;
1502 azt_Play.start.frame = msf.cdmsf_frame0;
1503 if (aztSeek(&azt_Play))
1506 #endif /*end of incompatible code */
1507 case CDROMREADMODE1: /*set read data in mode 1 */
1508 return aztSetDiskType(AZT_MODE_1);
1509 case CDROMREADMODE2: /*set read data in mode 2 */
1510 return aztSetDiskType(AZT_MODE_2);
1515 printk("aztcd: exiting aztcd_ioctl Command:%x Time:%li\n", cmd,
1522 * Take care of the different block sizes between cdrom and Linux.
1523 * When Linux gets variable block sizes this will probably go away.
1525 static void azt_transfer(void)
1528 printk("aztcd: executing azt_transfer Time:%li\n", jiffies);
1530 if (!current_valid())
1533 while (CURRENT->nr_sectors) {
1534 int bn = CURRENT->sector / 4;
1536 for (i = 0; i < AZT_BUF_SIZ && azt_buf_bn[i] != bn; ++i);
1537 if (i < AZT_BUF_SIZ) {
1538 int offs = (i * 4 + (CURRENT->sector & 3)) * 512;
1539 int nr_sectors = 4 - (CURRENT->sector & 3);
1540 if (azt_buf_out != i) {
1542 if (azt_buf_bn[i] != bn) {
1547 if (nr_sectors > CURRENT->nr_sectors)
1548 nr_sectors = CURRENT->nr_sectors;
1549 memcpy(CURRENT->buffer, azt_buf + offs,
1551 CURRENT->nr_sectors -= nr_sectors;
1552 CURRENT->sector += nr_sectors;
1553 CURRENT->buffer += nr_sectors * 512;
1561 static void do_aztcd_request(request_queue_t * q)
1564 printk(" do_aztcd_request(%ld+%ld) Time:%li\n", CURRENT->sector,
1565 CURRENT->nr_sectors, jiffies);
1567 if (DiskInfo.audio) {
1568 printk("aztcd: Error, tried to mount an Audio CD\n");
1569 end_request(CURRENT, 0);
1572 azt_transfer_is_active = 1;
1573 while (current_valid()) {
1575 if (CURRENT->nr_sectors == 0) {
1576 end_request(CURRENT, 1);
1578 azt_buf_out = -1; /* Want to read a block not in buffer */
1579 if (azt_state == AZT_S_IDLE) {
1580 if ((!aztTocUpToDate) || aztDiskChanged) {
1581 if (aztUpdateToc() < 0) {
1582 while (current_valid())
1583 end_request(CURRENT, 0);
1587 azt_state = AZT_S_START;
1589 SET_TIMER(azt_poll, HZ / 100);
1594 azt_transfer_is_active = 0;
1597 ("azt_next_bn:%x azt_buf_in:%x azt_buf_out:%x azt_buf_bn:%x\n",
1598 azt_next_bn, azt_buf_in, azt_buf_out, azt_buf_bn[azt_buf_in]);
1599 printk(" do_aztcd_request ends Time:%li\n", jiffies);
1604 static void azt_invalidate_buffers(void)
1609 printk("aztcd: executing azt_invalidate_buffers\n");
1611 for (i = 0; i < AZT_BUF_SIZ; ++i)
1617 * Open the device special file. Check that a disk is in.
1619 static int aztcd_open(struct inode *ip, struct file *fp)
1624 printk("aztcd: starting aztcd_open\n");
1627 if (aztPresent == 0)
1628 return -ENXIO; /* no hardware */
1630 if (!azt_open_count && azt_state == AZT_S_IDLE) {
1631 azt_invalidate_buffers();
1633 st = getAztStatus(); /* check drive status */
1635 goto err_out; /* drive doesn't respond */
1637 if (st & AST_DOOR_OPEN) { /* close door, then get the status again. */
1638 printk("aztcd: Door Open?\n");
1640 st = getAztStatus();
1643 if ((st & AST_NOT_READY) || (st & AST_DSK_CHG)) { /*no disk in drive or changed */
1645 ("aztcd: Disk Changed or No Disk in Drive?\n");
1656 printk("aztcd: exiting aztcd_open\n");
1666 * On close, we flush all azt blocks from the buffer cache.
1668 static int aztcd_release(struct inode *inode, struct file *file)
1671 printk("aztcd: executing aztcd_release\n");
1672 printk("inode: %p, device: %s file: %p\n", inode,
1673 inode->i_bdev->bd_disk->disk_name, file);
1675 if (!--azt_open_count) {
1676 azt_invalidate_buffers();
1679 aztSendCmd(ACMD_EJECT);
1685 static struct gendisk *azt_disk;
1688 * Test for presence of drive and initialize it. Called at boot time.
1691 static int __init aztcd_init(void)
1693 long int count, max_count;
1694 unsigned char result[50];
1696 void* status = NULL;
1700 if (azt_port == 0) {
1701 printk(KERN_INFO "aztcd: no Aztech CD-ROM Initialization");
1705 printk(KERN_INFO "aztcd: AZTECH, ORCHID, OKANO, WEARNES, TXC, CyDROM "
1707 printk(KERN_INFO "aztcd: (C) 1994-98 W.Zimmermann\n");
1708 if (azt_port == -1) {
1710 ("aztcd: DriverVersion=%s For IDE/ATAPI-drives use ide-cd.c\n",
1714 ("aztcd: DriverVersion=%s BaseAddress=0x%x For IDE/ATAPI-drives use ide-cd.c\n",
1715 AZT_VERSION, azt_port);
1716 printk(KERN_INFO "aztcd: If you have problems, read /usr/src/linux/"
1717 "Documentation/cdrom/aztcd\n");
1720 #ifdef AZT_SW32 /*CDROM connected to Soundwave32 card */
1721 if ((0xFF00 & inw(AZT_SW32_ID_REG)) != 0x4500) {
1723 ("aztcd: no Soundwave32 card detected at base:%x init:%x config:%x id:%x\n",
1724 AZT_SW32_BASE_ADDR, AZT_SW32_INIT,
1725 AZT_SW32_CONFIG_REG, AZT_SW32_ID_REG);
1729 "aztcd: Soundwave32 card detected at %x Version %x\n",
1730 AZT_SW32_BASE_ADDR, inw(AZT_SW32_ID_REG));
1731 outw(AZT_SW32_INIT, AZT_SW32_CONFIG_REG);
1732 for (count = 0; count < 10000; count++); /*delay a bit */
1736 /* check for presence of drive */
1738 if (azt_port == -1) { /* autoprobing for proprietary interface */
1739 for (i = 0; (azt_port_auto[i] != 0) && (i < 16); i++) {
1740 azt_port = azt_port_auto[i];
1741 printk(KERN_INFO "aztcd: Autoprobing BaseAddress=0x%x"
1743 /*proprietary interfaces need 4 bytes */
1744 if (!request_region(azt_port, 4, "aztcd")) {
1747 outb(POLLED, MODE_PORT);
1750 outb(ACMD_GET_VERSION, CMD_PORT); /*Try to get version info */
1752 aztTimeOutCount = 0;
1754 aztIndatum = inb(STATUS_PORT);
1756 if (aztTimeOutCount >= AZT_FAST_TIMEOUT)
1758 } while (aztIndatum & AFL_STATUS);
1759 if (inb(DATA_PORT) == AFL_OP_OK) { /* OK drive found */
1762 else { /* Drive not found on this port - try next one */
1763 release_region(azt_port, 4);
1766 if ((i == 16) || (azt_port_auto[i] == 0)) {
1767 printk(KERN_INFO "aztcd: no AZTECH CD-ROM drive found\n");
1770 } else { /* no autoprobing */
1771 if ((azt_port == 0x1f0) || (azt_port == 0x170))
1772 status = request_region(azt_port, 8, "aztcd"); /*IDE-interfaces need 8 bytes */
1774 status = request_region(azt_port, 4, "aztcd"); /*proprietary interfaces need 4 bytes */
1776 printk(KERN_WARNING "aztcd: conflict, I/O port (%X) "
1777 "already used\n", azt_port);
1781 if ((azt_port == 0x1f0) || (azt_port == 0x170))
1782 SWITCH_IDE_SLAVE; /*switch IDE interface to slave configuration */
1784 outb(POLLED, MODE_PORT);
1787 outb(ACMD_GET_VERSION, CMD_PORT); /*Try to get version info */
1789 aztTimeOutCount = 0;
1791 aztIndatum = inb(STATUS_PORT);
1793 if (aztTimeOutCount >= AZT_FAST_TIMEOUT)
1795 } while (aztIndatum & AFL_STATUS);
1797 if (inb(DATA_PORT) != AFL_OP_OK) { /*OP_OK? If not, reset and try again */
1799 if (azt_cont != 0x79) {
1800 printk(KERN_WARNING "aztcd: no AZTECH CD-ROM "
1801 "drive found-Try boot parameter aztcd="
1802 "<BaseAddress>,0x79\n");
1811 printk(KERN_INFO "aztcd: drive reset - "
1813 for (count = 0; count < 50; count++) {
1814 inb(STATUS_PORT); /*removing all data from earlier tries */
1817 outb(POLLED, MODE_PORT);
1820 getAztStatus(); /*trap errors */
1821 outb(ACMD_SOFT_RESET, CMD_PORT); /*send reset */
1823 if (inb(DATA_PORT) != AFL_OP_OK) { /*OP_OK? */
1824 printk(KERN_WARNING "aztcd: no AZTECH "
1825 "CD-ROM drive found\n");
1830 for (count = 0; count < AZT_TIMEOUT;
1832 barrier(); /* Stop gcc 2.96 being smart */
1833 /* use udelay(), damnit -- AV */
1835 if ((st = getAztStatus()) == -1) {
1836 printk(KERN_WARNING "aztcd: Drive Status"
1837 " Error Status=%x\n", st);
1842 printk(KERN_DEBUG "aztcd: Status = %x\n", st);
1844 outb(POLLED, MODE_PORT);
1847 outb(ACMD_GET_VERSION, CMD_PORT); /*GetVersion */
1856 result[0] = inb(DATA_PORT); /*reading in a null byte??? */
1857 for (count = 1; count < 50; count++) { /*Reading version string */
1858 aztTimeOutCount = 0; /*here we must implement STEN_LOW differently */
1860 aztIndatum = inb(STATUS_PORT); /*because we want to exit by timeout */
1862 if (aztTimeOutCount >= AZT_FAST_TIMEOUT)
1864 } while (aztIndatum & AFL_STATUS);
1865 if (aztTimeOutCount >= AZT_FAST_TIMEOUT)
1866 break; /*all chars read? */
1867 result[count] = inb(DATA_PORT);
1870 max_count = 30; /*print max.30 chars of the version string */
1873 printk(KERN_INFO "aztcd: FirmwareVersion=");
1874 for (count = 1; count < max_count; count++)
1875 printk("%c", result[count]);
1878 if ((result[1] == 'A') && (result[2] == 'Z') && (result[3] == 'T')) {
1879 printk("AZTECH drive detected\n");
1881 else if ((result[2] == 'C') && (result[3] == 'D')
1882 && (result[4] == 'D')) {
1883 printk("ORCHID or WEARNES drive detected\n"); /*ORCHID or WEARNES */
1884 } else if ((result[1] == 0x03) && (result[2] == '5')) {
1885 printk("TXC or CyCDROM drive detected\n"); /*Conrad TXC, CyCDROM */
1886 } else { /*OTHERS or none */
1887 printk("\nunknown drive or firmware version detected\n");
1889 ("aztcd may not run stable, if you want to try anyhow,\n");
1890 printk("boot with: aztcd=<BaseAddress>,0x79\n");
1891 if ((azt_cont != 0x79)) {
1892 printk("aztcd: FirmwareVersion=");
1893 for (count = 1; count < 5; count++)
1894 printk("%c", result[count]);
1896 printk("Aborted\n");
1901 azt_disk = alloc_disk(1);
1905 if (register_blkdev(MAJOR_NR, "aztcd")) {
1910 azt_queue = blk_init_queue(do_aztcd_request, &aztSpin);
1916 blk_queue_hardsect_size(azt_queue, 2048);
1917 azt_disk->major = MAJOR_NR;
1918 azt_disk->first_minor = 0;
1919 azt_disk->fops = &azt_fops;
1920 sprintf(azt_disk->disk_name, "aztcd");
1921 azt_disk->queue = azt_queue;
1923 azt_invalidate_buffers();
1928 unregister_blkdev(MAJOR_NR, "aztcd");
1932 if ((azt_port == 0x1f0) || (azt_port == 0x170)) {
1934 release_region(azt_port, 8); /*IDE-interface */
1936 release_region(azt_port, 4); /*proprietary interface */
1941 static void __exit aztcd_exit(void)
1943 del_gendisk(azt_disk);
1945 if ((unregister_blkdev(MAJOR_NR, "aztcd") == -EINVAL)) {
1946 printk("What's that: can't unregister aztcd\n");
1949 blk_cleanup_queue(azt_queue);
1950 if ((azt_port == 0x1f0) || (azt_port == 0x170)) {
1952 release_region(azt_port, 8); /*IDE-interface */
1954 release_region(azt_port, 4); /*proprietary interface */
1955 printk(KERN_INFO "aztcd module released.\n");
1958 module_init(aztcd_init);
1959 module_exit(aztcd_exit);
1961 /*##########################################################################
1962 Aztcd State Machine: Controls Drive Operating State
1963 ##########################################################################
1965 static void azt_poll(void)
1972 if (aztSendCmd(ACMD_GET_ERROR))
1973 RETURN("azt_poll 1");
1975 azt_error = inb(DATA_PORT) & 0xFF;
1976 printk("aztcd: I/O error 0x%02x\n", azt_error);
1977 azt_invalidate_buffers();
1978 #ifdef WARN_IF_READ_FAILURE
1981 ("aztcd: Read of Block %d Failed - Maybe Audio Disk?\n",
1986 ("aztcd: Read of Block %d Failed, Maybe Audio Disk? Giving up\n",
1988 if (azt_transfer_is_active) {
1992 if (current_valid())
1993 end_request(CURRENT, 0);
1997 azt_state = AZT_S_STOP;
2001 loop_ctl = 0; /* each case must flip this back to 1 if we want
2002 to come back up here */
2003 switch (azt_state) {
2007 if (azt_state != azt_state_old) {
2008 azt_state_old = azt_state;
2009 printk("AZT_S_IDLE\n");
2016 if (azt_state != azt_state_old) {
2017 azt_state_old = azt_state;
2018 printk("AZT_S_START\n");
2021 if (aztSendCmd(ACMD_GET_STATUS))
2022 RETURN("azt_poll 2"); /*result will be checked by aztStatus() */
2024 azt_mode == 1 ? AZT_S_READ : AZT_S_MODE;
2030 if (azt_state != azt_state_old) {
2031 azt_state_old = azt_state;
2032 printk("AZT_S_MODE\n");
2036 if ((st = aztStatus()) != -1) {
2037 if ((st & AST_DSK_CHG)
2038 || (st & AST_NOT_READY)) {
2041 azt_invalidate_buffers();
2042 end_request(CURRENT, 0);
2044 ("aztcd: Disk Changed or Not Ready 1 - Unmount Disk!\n");
2051 if ((st & AST_DOOR_OPEN) || (st & AST_NOT_READY)) {
2055 ("aztcd: Disk Changed or Not Ready 2 - Unmount Disk!\n");
2056 end_request(CURRENT, 0);
2057 printk((st & AST_DOOR_OPEN) ?
2058 "aztcd: door open\n" :
2059 "aztcd: disk removed\n");
2060 if (azt_transfer_is_active) {
2061 azt_state = AZT_S_START;
2062 loop_ctl = 1; /* goto immediately */
2065 azt_state = AZT_S_IDLE;
2066 while (current_valid())
2067 end_request(CURRENT, 0);
2071 /* if (aztSendCmd(ACMD_SET_MODE)) RETURN("azt_poll 3");
2072 outb(0x01, DATA_PORT);
2076 if (aztSendCmd(ACMD_GET_STATUS))
2077 RETURN("azt_poll 4");
2080 azt_state = AZT_S_READ;
2088 if (azt_state != azt_state_old) {
2089 azt_state_old = azt_state;
2090 printk("AZT_S_READ\n");
2094 if ((st = aztStatus()) != -1) {
2095 if ((st & AST_DSK_CHG)
2096 || (st & AST_NOT_READY)) {
2099 azt_invalidate_buffers();
2101 ("aztcd: Disk Changed or Not Ready 3 - Unmount Disk!\n");
2102 end_request(CURRENT, 0);
2109 if ((st & AST_DOOR_OPEN) || (st & AST_NOT_READY)) {
2112 printk((st & AST_DOOR_OPEN) ?
2113 "aztcd: door open\n" :
2114 "aztcd: disk removed\n");
2115 if (azt_transfer_is_active) {
2116 azt_state = AZT_S_START;
2120 azt_state = AZT_S_IDLE;
2121 while (current_valid())
2122 end_request(CURRENT, 0);
2126 if (current_valid()) {
2127 struct azt_Play_msf msf;
2129 azt_next_bn = CURRENT->sector / 4;
2130 azt_hsg2msf(azt_next_bn, &msf.start);
2132 /* find out in which track we are */
2133 while (azt_msf2hsg(&msf.start) >
2134 azt_msf2hsg(&Toc[++i].trackTime)) {
2136 if (azt_msf2hsg(&msf.start) <
2137 azt_msf2hsg(&Toc[i].trackTime) -
2139 azt_read_count = AZT_BUF_SIZ; /*fast, because we read ahead */
2140 /*azt_read_count=CURRENT->nr_sectors; slow, no read ahead */
2141 } else /* don't read beyond end of track */
2142 #if AZT_MULTISESSION
2145 (azt_msf2hsg(&Toc[i].trackTime)
2147 azt_msf2hsg(&msf.start);
2148 if (azt_read_count < 0)
2150 if (azt_read_count > AZT_BUF_SIZ)
2154 ("aztcd: warning - trying to read beyond end of track\n");
2155 /* printk("%i %i %li %li\n",i,azt_read_count,azt_msf2hsg(&msf.start),azt_msf2hsg(&Toc[i].trackTime));
2159 azt_read_count = AZT_BUF_SIZ;
2164 msf.end.frame = azt_read_count; /*Mitsumi here reads 0xffffff sectors */
2167 ("---reading msf-address %x:%x:%x %x:%x:%x\n",
2168 msf.start.min, msf.start.sec,
2169 msf.start.frame, msf.end.min,
2170 msf.end.sec, msf.end.frame);
2172 ("azt_next_bn:%x azt_buf_in:%x azt_buf_out:%x azt_buf_bn:%x\n",
2173 azt_next_bn, azt_buf_in, azt_buf_out,
2174 azt_buf_bn[azt_buf_in]);
2176 if (azt_read_mode == AZT_MODE_2) {
2177 sendAztCmd(ACMD_PLAY_READ_RAW, &msf); /*XA disks in raw mode */
2179 sendAztCmd(ACMD_PLAY_READ, &msf); /*others in cooked mode */
2181 azt_state = AZT_S_DATA;
2182 AztTimeout = READ_TIMEOUT;
2184 azt_state = AZT_S_STOP;
2194 if (azt_state != azt_state_old) {
2195 azt_state_old = azt_state;
2196 printk("AZT_S_DATA\n");
2200 st = inb(STATUS_PORT) & AFL_STATUSorDATA;
2206 if (st != azt_st_old) {
2208 printk("---AFL_DATA st:%x\n", st);
2213 ("aztcd: Read of Block %d Failed, Maybe Audio Disk ? Giving up\n",
2215 if (azt_transfer_is_active) {
2219 if (current_valid())
2220 end_request(CURRENT, 0);
2223 azt_state = AZT_S_START;
2224 AztTimeout = READ_TIMEOUT;
2228 case AFL_STATUSorDATA:
2230 if (st != azt_st_old) {
2233 ("---AFL_STATUSorDATA st:%x\n",
2241 if (st != azt_st_old) {
2243 printk("---default: st:%x\n", st);
2247 if (!current_valid() && azt_buf_in == azt_buf_out) {
2248 azt_state = AZT_S_STOP;
2252 if (azt_read_count <= 0)
2254 ("aztcd: warning - try to read 0 frames\n");
2255 while (azt_read_count) { /*??? fast read ahead loop */
2256 azt_buf_bn[azt_buf_in] = -1;
2257 DTEN_LOW; /*??? unsolved problem, very
2258 seldom we get timeouts
2259 here, don't now the real
2260 reason. With my drive this
2261 sometimes also happens with
2262 Aztech's original driver under
2263 DOS. Is it a hardware bug?
2264 I tried to recover from such
2265 situations here. Zimmermann */
2266 if (aztTimeOutCount >= AZT_TIMEOUT) {
2268 ("read_count:%d CURRENT->nr_sectors:%ld azt_buf_in:%d\n",
2270 CURRENT->nr_sectors,
2273 ("azt_transfer_is_active:%x\n",
2274 azt_transfer_is_active);
2276 azt_state = AZT_S_STOP;
2278 end_request(CURRENT, 1); /*should we have here (1) or (0)? */
2280 if (azt_read_mode ==
2297 ("AZT_S_DATA; ---I've read data- read_count: %d\n",
2300 ("azt_next_bn:%d azt_buf_in:%d azt_buf_out:%d azt_buf_bn:%d\n",
2307 azt_buf_bn[azt_buf_in] =
2309 if (azt_buf_out == -1)
2318 if (!azt_transfer_is_active) {
2319 while (current_valid()) {
2321 if (CURRENT->nr_sectors ==
2323 end_request(CURRENT, 1);
2330 && (CURRENT->sector / 4 < azt_next_bn
2331 || CURRENT->sector / 4 >
2332 azt_next_bn + AZT_BUF_SIZ)) {
2333 azt_state = AZT_S_STOP;
2337 AztTimeout = READ_TIMEOUT;
2338 if (azt_read_count == 0) {
2339 azt_state = AZT_S_STOP;
2350 if (azt_state != azt_state_old) {
2351 azt_state_old = azt_state;
2352 printk("AZT_S_STOP\n");
2355 if (azt_read_count != 0)
2356 printk("aztcd: discard data=%x frames\n",
2358 while (azt_read_count != 0) {
2360 if (!(inb(STATUS_PORT) & AFL_DATA)) {
2361 if (azt_read_mode == AZT_MODE_2)
2363 i < CD_FRAMESIZE_RAW;
2368 i < CD_FRAMESIZE; i++)
2373 if (aztSendCmd(ACMD_GET_STATUS))
2374 RETURN("azt_poll 5");
2375 azt_state = AZT_S_STOPPING;
2379 case AZT_S_STOPPING:
2381 if (azt_state != azt_state_old) {
2382 azt_state_old = azt_state;
2383 printk("AZT_S_STOPPING\n");
2387 if ((st = aztStatus()) == -1 && AztTimeout)
2391 && ((st & AST_DSK_CHG)
2392 || (st & AST_NOT_READY))) {
2395 azt_invalidate_buffers();
2397 ("aztcd: Disk Changed or Not Ready 4 - Unmount Disk!\n");
2398 end_request(CURRENT, 0);
2402 printk("CURRENT_VALID %d azt_mode %d\n",
2403 current_valid(), azt_mode);
2406 if (current_valid()) {
2408 if (azt_mode == 1) {
2409 azt_state = AZT_S_READ;
2414 azt_state = AZT_S_MODE;
2420 azt_state = AZT_S_START;
2424 azt_state = AZT_S_IDLE;
2430 printk("aztcd: invalid state %d\n", azt_state);
2436 if (!AztTimeout--) {
2437 printk("aztcd: timeout in state %d\n", azt_state);
2438 azt_state = AZT_S_STOP;
2439 if (aztSendCmd(ACMD_STOP))
2440 RETURN("azt_poll 6");
2444 SET_TIMER(azt_poll, HZ / 100);
2448 /*###########################################################################
2449 * Miscellaneous support functions
2450 ###########################################################################
2452 static void azt_hsg2msf(long hsg, struct msf *msf)
2455 msf->min = hsg / 4500;
2457 msf->sec = hsg / 75;
2458 msf->frame = hsg % 75;
2461 printk("aztcd: Error hsg2msf address Minutes\n");
2463 printk("aztcd: Error hsg2msf address Seconds\n");
2464 if (msf->frame >= 75)
2465 printk("aztcd: Error hsg2msf address Frames\n");
2467 azt_bin2bcd(&msf->min); /* convert to BCD */
2468 azt_bin2bcd(&msf->sec);
2469 azt_bin2bcd(&msf->frame);
2472 static long azt_msf2hsg(struct msf *mp)
2474 return azt_bcd2bin(mp->frame) + azt_bcd2bin(mp->sec) * 75
2475 + azt_bcd2bin(mp->min) * 4500 - CD_MSF_OFFSET;
2478 static void azt_bin2bcd(unsigned char *p)
2487 static int azt_bcd2bin(unsigned char bcd)
2489 return (bcd >> 4) * 10 + (bcd & 0xF);
2492 MODULE_LICENSE("GPL");
2493 MODULE_ALIAS_BLOCKDEV_MAJOR(AZTECH_CDROM_MAJOR);