aztcd.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:69k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #define AZT_VERSION "2.60"
  2. /*      $Id: aztcd.c,v 2.60 1997/11/29 09:51:19 root Exp root $
  3. linux/drivers/block/aztcd.c - Aztech CD268 CDROM driver
  4. Copyright (C) 1994-98 Werner Zimmermann(Werner.Zimmermann@fht-esslingen.de)
  5. based on Mitsumi CDROM driver by  Martin Hariss and preworks by
  6. Eberhard Moenkeberg; contains contributions by Joe Nardone and Robby 
  7. Schirmer.
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. HISTORY
  20. V0.0    Adaption to Aztech CD268-01A Version 1.3
  21. Version is PRE_ALPHA, unresolved points:
  22. 1. I use busy wait instead of timer wait in STEN_LOW,DTEN_LOW
  23.    thus driver causes CPU overhead and is very slow 
  24. 2. could not find a way to stop the drive, when it is
  25.    in data read mode, therefore I had to set
  26.    msf.end.min/sec/frame to 0:0:1 (in azt_poll); so only one
  27.    frame can be read in sequence, this is also the reason for
  28. 3. getting 'timeout in state 4' messages, but nevertheless
  29.    it works
  30. W.Zimmermann, Oct. 31, 1994
  31. V0.1    Version is ALPHA, problems #2 and #3 resolved.  
  32. W.Zimmermann, Nov. 3, 1994
  33. V0.2    Modification to some comments, debugging aids for partial test
  34. with Borland C under DOS eliminated. Timer interrupt wait 
  35. STEN_LOW_WAIT additionally to busy wait for STEN_LOW implemented; 
  36. use it only for the 'slow' commands (ACMD_GET_Q_CHANNEL, ACMD_
  37. SEEK_TO_LEAD_IN), all other commands are so 'fast', that busy 
  38. waiting seems better to me than interrupt rescheduling.
  39. Besides that, when used in the wrong place, STEN_LOW_WAIT causes
  40. kernel panic.
  41. In function aztPlay command ACMD_PLAY_AUDIO added, should make
  42. audio functions work. The Aztech drive needs different commands
  43. to read data tracks and play audio tracks.
  44. W.Zimmermann, Nov. 8, 1994
  45. V0.3    Recognition of missing drive during boot up improved (speeded up).
  46. W.Zimmermann, Nov. 13, 1994
  47. V0.35   Rewrote the control mechanism in azt_poll (formerly mcd_poll) 
  48. including removal of all 'goto' commands. :-); 
  49. J. Nardone, Nov. 14, 1994
  50. V0.4    Renamed variables and constants to 'azt' instead of 'mcd'; had
  51. to make some "compatibility" defines in azt.h; please note,
  52. that the source file was renamed to azt.c, the include file to
  53. azt.h                
  54. Speeded up drive recognition during init (will be a little bit 
  55. slower than before if no drive is installed!); suggested by
  56. Robby Schirmer.
  57. read_count declared volatile and set to AZT_BUF_SIZ to make
  58. drive faster (now 300kB/sec, was 60kB/sec before, measured
  59. by 'time dd if=/dev/cdrom of=/dev/null bs=2048 count=4096';
  60. different AZT_BUF_SIZes were test, above 16 no further im-
  61. provement seems to be possible; suggested by E.Moenkeberg.
  62. W.Zimmermann, Nov. 18, 1994
  63. V0.42   Included getAztStatus command in GetQChannelInfo() to allow
  64. reading Q-channel info on audio disks, if drive is stopped, 
  65. and some other bug fixes in the audio stuff, suggested by 
  66. Robby Schirmer.
  67. Added more ioctls (reading data in mode 1 and mode 2).
  68. Completely removed the old azt_poll() routine.
  69. Detection of ORCHID CDS-3110 in aztcd_init implemented.
  70. Additional debugging aids (see the readme file).
  71. W.Zimmermann, Dec. 9, 1994  
  72. V0.50   Autodetection of drives implemented.
  73. W.Zimmermann, Dec. 12, 1994
  74. V0.52   Prepared for including in the standard kernel, renamed most
  75. variables to contain 'azt', included autoconf.h
  76. W.Zimmermann, Dec. 16, 1994        
  77. V0.6    Version for being included in the standard Linux kernel.
  78. Renamed source and header file to aztcd.c and aztcd.h
  79. W.Zimmermann, Dec. 24, 1994
  80. V0.7    Changed VERIFY_READ to VERIFY_WRITE in aztcd_ioctl, case
  81. CDROMREADMODE1 and CDROMREADMODE2; bug fix in the ioctl,
  82. which causes kernel crashes when playing audio, changed 
  83. include-files (config.h instead of autoconf.h, removed
  84. delay.h)
  85. W.Zimmermann, Jan. 8, 1995
  86. V0.72   Some more modifications for adaption to the standard kernel.
  87. W.Zimmermann, Jan. 16, 1995
  88.         V0.80   aztcd is now part of the standard kernel since version 1.1.83.
  89.                 Modified the SET_TIMER and CLEAR_TIMER macros to comply with
  90.                 the new timer scheme.
  91.                 W.Zimmermann, Jan. 21, 1995
  92.         V0.90   Included CDROMVOLCTRL, but with my Aztech drive I can only turn
  93.                 the channels on and off. If it works better with your drive, 
  94.                 please mail me. Also implemented ACMD_CLOSE for CDROMSTART.
  95.                 W.Zimmermann, Jan. 24, 1995
  96.         V1.00   Implemented close and lock tray commands. Patches supplied by
  97. Frank Racis        
  98.                 Added support for loadable MODULEs, so aztcd can now also be
  99.                 loaded by insmod and removed by rmmod during run time
  100.                 Werner Zimmermann, Mar. 24, 95
  101.         V1.10   Implemented soundcard configuration for Orchid CDS-3110 drives
  102.                 connected to Soundwave32 cards. Release for LST 2.1.
  103.                 (still experimental)
  104.                 Werner Zimmermann, May 8, 95
  105.         V1.20   Implemented limited support for DOSEMU0.60's cdrom.c. Now it works, but
  106.                 sometimes DOSEMU may hang for 30 seconds or so. A fully functional ver-
  107.                 sion needs an update of Dosemu0.60's cdrom.c, which will come with the 
  108.                 next revision of Dosemu.
  109.                 Also Soundwave32 support now works.
  110.                 Werner Zimmermann, May 22, 95
  111. V1.30   Auto-eject feature. Inspired by Franc Racis (racis@psu.edu)
  112.         Werner Zimmermann, July 4, 95
  113. V1.40   Started multisession support. Implementation copied from mcdx.c
  114.         by Heiko Schlittermann. Not tested yet.
  115.         Werner Zimmermann, July 15, 95
  116.         V1.50   Implementation of ioctl CDROMRESET, continued multisession, began
  117.                 XA, but still untested. Heavy modifications to drive status de-
  118.                 tection.
  119.                 Werner Zimmermann, July 25, 95
  120.         V1.60   XA support now should work. Speeded up drive recognition in cases, 
  121.                 where no drive is installed.
  122.                 Werner Zimmermann, August 8, 1995
  123.         V1.70   Multisession support now is completed, but there is still not 
  124.                 enough testing done. If you can test it, please contact me. For
  125.                 details please read /usr/src/linux/Documentation/cdrom/aztcd
  126.                 Werner Zimmermann, August 19, 1995
  127.         V1.80   Modification to suit the new kernel boot procedure introduced
  128.                 with kernel 1.3.33. Will definitely not work with older kernels.
  129.                 Programming done by Linus himself.
  130.                 Werner Zimmermann, October 11, 1995
  131. V1.90   Support for Conrad TXC drives, thank's to Jochen Kunz and Olaf Kaluza.
  132.         Werner Zimmermann, October 21, 1995
  133.         V2.00   Changed #include "blk.h" to <linux/blk.h> as the directory
  134.                 structure was changed. README.aztcd is now /usr/src/docu-
  135.                 mentation/cdrom/aztcd
  136.                 Werner Zimmermann, November 10, 95
  137.         V2.10   Started to modify azt_poll to prevent reading beyond end of
  138.                 tracks.
  139.                 Werner Zimmermann, December 3, 95
  140.         V2.20   Changed some comments
  141.                 Werner Zimmermann, April 1, 96
  142.         V2.30   Implemented support for CyCDROM CR520, CR940, Code for CR520 
  143.          delivered by H.Berger with preworks by E.Moenkeberg.
  144.                 Werner Zimmermann, April 29, 96
  145.         V2.40   Reorganized the placement of functions in the source code file
  146.                 to reflect the layered approach; did not actually change code
  147.                 Werner Zimmermann, May 1, 96
  148.         V2.50   Heiko Eissfeldt suggested to remove some VERIFY_READs in 
  149.                 aztcd_ioctl; check_aztcd_media_change modified 
  150.                 Werner Zimmermann, May 16, 96       
  151. V2.60   Implemented Auto-Probing; made changes for kernel's 2.1.xx blocksize
  152.                 Adaption to linux kernel > 2.1.0
  153. Werner Zimmermann, Nov 29, 97
  154.         November 1999 -- Make kernel-parameter implementation work with 2.3.x 
  155.                  Removed init_module & cleanup_module in favor of 
  156.  module_init & module_exit.
  157.  Torben Mathiasen <tmm@image.dk>
  158. */
  159. #include <linux/version.h>
  160. #define MAJOR_NR AZTECH_CDROM_MAJOR
  161. #include <linux/blk.h>
  162. #include "aztcd.h"
  163. #include <linux/module.h>
  164. #include <linux/errno.h>
  165. #include <linux/sched.h>
  166. #include <linux/mm.h>
  167. #include <linux/timer.h>
  168. #include <linux/fs.h>
  169. #include <linux/kernel.h>
  170. #include <linux/cdrom.h>
  171. #include <linux/ioport.h>
  172. #include <linux/string.h>
  173. #include <linux/major.h>
  174. #include <linux/devfs_fs_kernel.h>
  175. #include <linux/init.h>
  176. #include <asm/system.h>
  177. #include <asm/io.h>
  178. #include <asm/uaccess.h>
  179. static int aztcd_blocksizes[1] = { 2048 };
  180. /*###########################################################################
  181.   Defines
  182.   ###########################################################################
  183. */
  184. #define SET_TIMER(func, jifs)   delay_timer.expires = jiffies + (jifs); 
  185.                                 delay_timer.function = (void *) (func); 
  186.                                 add_timer(&delay_timer);
  187. #define CLEAR_TIMER             del_timer(&delay_timer);
  188. #define RETURNM(message,value) {printk("aztcd: Warning: %s failedn",message);
  189.                                 return value;}
  190. #define RETURN(message)        {printk("aztcd: Warning: %s failedn",message);
  191.                                 return;}
  192. /* Macros to switch the IDE-interface to the slave device and back to the master*/
  193. #define SWITCH_IDE_SLAVE  outb_p(0xa0,azt_port+6); 
  194.                   outb_p(0x10,azt_port+6); 
  195.                   outb_p(0x00,azt_port+7); 
  196.                   outb_p(0x10,azt_port+6);
  197. #define SWITCH_IDE_MASTER outb_p(0xa0,azt_port+6);
  198. #if 0
  199. #define AZT_TEST
  200. #define AZT_TEST1 /* <int-..> */
  201. #define AZT_TEST2 /* do_aztcd_request */
  202. #define AZT_TEST3 /* AZT_S_state */
  203. #define AZT_TEST4 /* QUICK_LOOP-counter */
  204. #define AZT_TEST5 /* port(1) state */
  205. #define AZT_DEBUG
  206. #define AZT_DEBUG_MULTISESSION
  207. #endif
  208. #define CURRENT_VALID 
  209.   (!QUEUE_EMPTY && MAJOR(CURRENT -> rq_dev) == MAJOR_NR && CURRENT -> cmd == READ 
  210.    && CURRENT -> sector != -1)
  211. #define AFL_STATUSorDATA (AFL_STATUS | AFL_DATA)
  212. #define AZT_BUF_SIZ 16
  213. #define READ_TIMEOUT 3000
  214. #define azt_port aztcd /*needed for the modutils */
  215. /*##########################################################################
  216.   Type Definitions
  217.   ##########################################################################
  218. */
  219. enum azt_state_e { AZT_S_IDLE, /* 0 */
  220. AZT_S_START, /* 1 */
  221. AZT_S_MODE, /* 2 */
  222. AZT_S_READ, /* 3 */
  223. AZT_S_DATA, /* 4 */
  224. AZT_S_STOP, /* 5 */
  225. AZT_S_STOPPING /* 6 */
  226. };
  227. enum azt_read_modes { AZT_MODE_0, /*read mode for audio disks, not supported by Aztech firmware */
  228. AZT_MODE_1, /*read mode for normal CD-ROMs */
  229. AZT_MODE_2 /*read mode for XA CD-ROMs */
  230. };
  231. /*##########################################################################
  232.   Global Variables
  233.   ##########################################################################
  234. */
  235. static int aztPresent = 0;
  236. static volatile int azt_transfer_is_active = 0;
  237. static char azt_buf[CD_FRAMESIZE_RAW * AZT_BUF_SIZ]; /*buffer for block size conversion */
  238. #if AZT_PRIVATE_IOCTLS
  239. static char buf[CD_FRAMESIZE_RAW]; /*separate buffer for the ioctls */
  240. #endif
  241. static volatile int azt_buf_bn[AZT_BUF_SIZ], azt_next_bn;
  242. static volatile int azt_buf_in, azt_buf_out = -1;
  243. static volatile int azt_error = 0;
  244. static int azt_open_count = 0;
  245. static volatile enum azt_state_e azt_state = AZT_S_IDLE;
  246. #ifdef AZT_TEST3
  247. static volatile enum azt_state_e azt_state_old = AZT_S_STOP;
  248. static volatile int azt_st_old = 0;
  249. #endif
  250. static volatile enum azt_read_modes azt_read_mode = AZT_MODE_1;
  251. static int azt_mode = -1;
  252. static volatile int azt_read_count = 1;
  253. static int azt_port = AZT_BASE_ADDR;
  254. MODULE_PARM(azt_port, "i");
  255. static int azt_port_auto[16] = AZT_BASE_AUTO;
  256. static char azt_cont = 0;
  257. static char azt_init_end = 0;
  258. static char azt_auto_eject = AZT_AUTO_EJECT;
  259. static int AztTimeout, AztTries;
  260. static DECLARE_WAIT_QUEUE_HEAD(azt_waitq);
  261. static struct timer_list delay_timer;
  262. static struct azt_DiskInfo DiskInfo;
  263. static struct azt_Toc Toc[MAX_TRACKS];
  264. static struct azt_Play_msf azt_Play;
  265. static int aztAudioStatus = CDROM_AUDIO_NO_STATUS;
  266. static char aztDiskChanged = 1;
  267. static char aztTocUpToDate = 0;
  268. static unsigned char aztIndatum;
  269. static unsigned long aztTimeOutCount;
  270. static int aztCmd = 0;
  271. /*###########################################################################
  272.    Function Prototypes
  273.   ###########################################################################
  274. */
  275. /* CDROM Drive Low Level I/O Functions */
  276. void op_ok(void);
  277. void pa_ok(void);
  278. void sten_low(void);
  279. void dten_low(void);
  280. void statusAzt(void);
  281. static void aztStatTimer(void);
  282. /* CDROM Drive Command Functions */
  283. static int aztSendCmd(int cmd);
  284. static int sendAztCmd(int cmd, struct azt_Play_msf *params);
  285. static int aztSeek(struct azt_Play_msf *params);
  286. static int aztSetDiskType(int type);
  287. static int aztStatus(void);
  288. static int getAztStatus(void);
  289. static int aztPlay(struct azt_Play_msf *arg);
  290. static void aztCloseDoor(void);
  291. static void aztLockDoor(void);
  292. static void aztUnlockDoor(void);
  293. static int aztGetValue(unsigned char *result);
  294. static int aztGetQChannelInfo(struct azt_Toc *qp);
  295. static int aztUpdateToc(void);
  296. static int aztGetDiskInfo(void);
  297. #if AZT_MULTISESSION
  298. static int aztGetMultiDiskInfo(void);
  299. #endif
  300. static int aztGetToc(int multi);
  301. /* Kernel Interface Functions */
  302. static int check_aztcd_media_change(kdev_t full_dev);
  303. static int aztcd_ioctl(struct inode *ip, struct file *fp, unsigned int cmd,
  304.        unsigned long arg);
  305. static void azt_transfer(void);
  306. static void do_aztcd_request(request_queue_t *);
  307. static void azt_invalidate_buffers(void);
  308. int aztcd_open(struct inode *ip, struct file *fp);
  309. static int aztcd_release(struct inode *inode, struct file *file);
  310. int aztcd_init(void);
  311. static struct block_device_operations azt_fops = {
  312. owner:THIS_MODULE,
  313. open:aztcd_open,
  314. release:aztcd_release,
  315. ioctl:aztcd_ioctl,
  316. check_media_change:check_aztcd_media_change,
  317. };
  318. /* Aztcd State Machine: Controls Drive Operating State */
  319. static void azt_poll(void);
  320. /* Miscellaneous support functions */
  321. static void azt_hsg2msf(long hsg, struct msf *msf);
  322. static long azt_msf2hsg(struct msf *mp);
  323. static void azt_bin2bcd(unsigned char *p);
  324. static int azt_bcd2bin(unsigned char bcd);
  325. /*##########################################################################
  326.   CDROM Drive Low Level I/O Functions
  327.   ##########################################################################
  328. */
  329. /* Macros for the drive hardware interface handshake, these macros use
  330.    busy waiting */
  331. /* Wait for OP_OK = drive answers with AFL_OP_OK after receiving a command*/
  332. # define OP_OK op_ok()
  333. void op_ok(void)
  334. {
  335. aztTimeOutCount = 0;
  336. do {
  337. aztIndatum = inb(DATA_PORT);
  338. aztTimeOutCount++;
  339. if (aztTimeOutCount >= AZT_TIMEOUT) {
  340. printk("aztcd: Error Wait OP_OKn");
  341. break;
  342. }
  343. } while (aztIndatum != AFL_OP_OK);
  344. }
  345. /* Wait for PA_OK = drive answers with AFL_PA_OK after receiving parameters*/
  346. # define PA_OK pa_ok()
  347. void pa_ok(void)
  348. {
  349. aztTimeOutCount = 0;
  350. do {
  351. aztIndatum = inb(DATA_PORT);
  352. aztTimeOutCount++;
  353. if (aztTimeOutCount >= AZT_TIMEOUT) {
  354. printk("aztcd: Error Wait PA_OKn");
  355. break;
  356. }
  357. } while (aztIndatum != AFL_PA_OK);
  358. }
  359. /* Wait for STEN=Low = handshake signal 'AFL_.._OK available or command executed*/
  360. # define STEN_LOW  sten_low()
  361. void sten_low(void)
  362. {
  363. aztTimeOutCount = 0;
  364. do {
  365. aztIndatum = inb(STATUS_PORT);
  366. aztTimeOutCount++;
  367. if (aztTimeOutCount >= AZT_TIMEOUT) {
  368. if (azt_init_end)
  369. printk
  370.     ("aztcd: Error Wait STEN_LOW commands:%xn",
  371.      aztCmd);
  372. break;
  373. }
  374. } while (aztIndatum & AFL_STATUS);
  375. }
  376. /* Wait for DTEN=Low = handshake signal 'Data available'*/
  377. # define DTEN_LOW dten_low()
  378. void dten_low(void)
  379. {
  380. aztTimeOutCount = 0;
  381. do {
  382. aztIndatum = inb(STATUS_PORT);
  383. aztTimeOutCount++;
  384. if (aztTimeOutCount >= AZT_TIMEOUT) {
  385. printk("aztcd: Error Wait DTEN_OKn");
  386. break;
  387. }
  388. } while (aztIndatum & AFL_DATA);
  389. }
  390. /* 
  391.  * Macro for timer wait on STEN=Low, should only be used for 'slow' commands;
  392.  * may cause kernel panic when used in the wrong place
  393. */
  394. #define STEN_LOW_WAIT   statusAzt()
  395. void statusAzt(void)
  396. {
  397. AztTimeout = AZT_STATUS_DELAY;
  398. SET_TIMER(aztStatTimer, HZ / 100);
  399. sleep_on(&azt_waitq);
  400. if (AztTimeout <= 0)
  401. printk("aztcd: Error Wait STEN_LOW_WAIT command:%xn",
  402.        aztCmd);
  403. return;
  404. }
  405. static void aztStatTimer(void)
  406. {
  407. if (!(inb(STATUS_PORT) & AFL_STATUS)) {
  408. wake_up(&azt_waitq);
  409. return;
  410. }
  411. AztTimeout--;
  412. if (AztTimeout <= 0) {
  413. wake_up(&azt_waitq);
  414. printk("aztcd: Error aztStatTimer: Timeoutn");
  415. return;
  416. }
  417. SET_TIMER(aztStatTimer, HZ / 100);
  418. }
  419. /*##########################################################################
  420.   CDROM Drive Command Functions
  421.   ##########################################################################
  422. */
  423. /* 
  424.  * Send a single command, return -1 on error, else 0
  425. */
  426. static int aztSendCmd(int cmd)
  427. {
  428. unsigned char data;
  429. int retry;
  430. #ifdef AZT_DEBUG
  431. printk("aztcd: Executing command %xn", cmd);
  432. #endif
  433. if ((azt_port == 0x1f0) || (azt_port == 0x170))
  434. SWITCH_IDE_SLAVE; /*switch IDE interface to slave configuration */
  435. aztCmd = cmd;
  436. outb(POLLED, MODE_PORT);
  437. do {
  438. if (inb(STATUS_PORT) & AFL_STATUS)
  439. break;
  440. inb(DATA_PORT); /* if status left from last command, read and */
  441. } while (1); /* discard it */
  442. do {
  443. if (inb(STATUS_PORT) & AFL_DATA)
  444. break;
  445. inb(DATA_PORT); /* if data left from last command, read and */
  446. } while (1); /* discard it */
  447. for (retry = 0; retry < AZT_RETRY_ATTEMPTS; retry++) {
  448. outb((unsigned char) cmd, CMD_PORT);
  449. STEN_LOW;
  450. data = inb(DATA_PORT);
  451. if (data == AFL_OP_OK) {
  452. return 0;
  453. } /*OP_OK? */
  454. if (data == AFL_OP_ERR) {
  455. STEN_LOW;
  456. data = inb(DATA_PORT);
  457. printk
  458.     ("### Error 1 aztcd: aztSendCmd %x  Error Code %xn",
  459.      cmd, data);
  460. }
  461. }
  462. if (retry >= AZT_RETRY_ATTEMPTS) {
  463. printk("### Error 2 aztcd: aztSendCmd %x n", cmd);
  464. azt_error = 0xA5;
  465. }
  466. RETURNM("aztSendCmd", -1);
  467. }
  468. /*
  469.  * Send a play or read command to the drive, return -1 on error, else 0
  470. */
  471. static int sendAztCmd(int cmd, struct azt_Play_msf *params)
  472. {
  473. unsigned char data;
  474. int retry;
  475. #ifdef AZT_DEBUG
  476. printk("aztcd: play start=%02x:%02x:%02x  end=%02x:%02x:%02xn",
  477.        params->start.min, params->start.sec, params->start.frame,
  478.        params->end.min, params->end.sec, params->end.frame);
  479. #endif
  480. for (retry = 0; retry < AZT_RETRY_ATTEMPTS; retry++) {
  481. aztSendCmd(cmd);
  482. outb(params->start.min, CMD_PORT);
  483. outb(params->start.sec, CMD_PORT);
  484. outb(params->start.frame, CMD_PORT);
  485. outb(params->end.min, CMD_PORT);
  486. outb(params->end.sec, CMD_PORT);
  487. outb(params->end.frame, CMD_PORT);
  488. STEN_LOW;
  489. data = inb(DATA_PORT);
  490. if (data == AFL_PA_OK) {
  491. return 0;
  492. } /*PA_OK ? */
  493. if (data == AFL_PA_ERR) {
  494. STEN_LOW;
  495. data = inb(DATA_PORT);
  496. printk
  497.     ("### Error 1 aztcd: sendAztCmd %x  Error Code %xn",
  498.      cmd, data);
  499. }
  500. }
  501. if (retry >= AZT_RETRY_ATTEMPTS) {
  502. printk("### Error 2 aztcd: sendAztCmd %xn ", cmd);
  503. azt_error = 0xA5;
  504. }
  505. RETURNM("sendAztCmd", -1);
  506. }
  507. /*
  508.  * Send a seek command to the drive, return -1 on error, else 0
  509. */
  510. static int aztSeek(struct azt_Play_msf *params)
  511. {
  512. unsigned char data;
  513. int retry;
  514. #ifdef AZT_DEBUG
  515. printk("aztcd: aztSeek %02x:%02x:%02xn",
  516.        params->start.min, params->start.sec, params->start.frame);
  517. #endif
  518. for (retry = 0; retry < AZT_RETRY_ATTEMPTS; retry++) {
  519. aztSendCmd(ACMD_SEEK);
  520. outb(params->start.min, CMD_PORT);
  521. outb(params->start.sec, CMD_PORT);
  522. outb(params->start.frame, CMD_PORT);
  523. STEN_LOW;
  524. data = inb(DATA_PORT);
  525. if (data == AFL_PA_OK) {
  526. return 0;
  527. } /*PA_OK ? */
  528. if (data == AFL_PA_ERR) {
  529. STEN_LOW;
  530. data = inb(DATA_PORT);
  531. printk("### Error 1 aztcd: aztSeekn");
  532. }
  533. }
  534. if (retry >= AZT_RETRY_ATTEMPTS) {
  535. printk("### Error 2 aztcd: aztSeekn ");
  536. azt_error = 0xA5;
  537. }
  538. RETURNM("aztSeek", -1);
  539. }
  540. /* Send a Set Disk Type command
  541.    does not seem to work with Aztech drives, behavior is completely indepen-
  542.    dent on which mode is set ???
  543. */
  544. static int aztSetDiskType(int type)
  545. {
  546. unsigned char data;
  547. int retry;
  548. #ifdef AZT_DEBUG
  549. printk("aztcd: set disk type command: type= %in", type);
  550. #endif
  551. for (retry = 0; retry < AZT_RETRY_ATTEMPTS; retry++) {
  552. aztSendCmd(ACMD_SET_DISK_TYPE);
  553. outb(type, CMD_PORT);
  554. STEN_LOW;
  555. data = inb(DATA_PORT);
  556. if (data == AFL_PA_OK) { /*PA_OK ? */
  557. azt_read_mode = type;
  558. return 0;
  559. }
  560. if (data == AFL_PA_ERR) {
  561. STEN_LOW;
  562. data = inb(DATA_PORT);
  563. printk
  564.     ("### Error 1 aztcd: aztSetDiskType %x Error Code %xn",
  565.      type, data);
  566. }
  567. }
  568. if (retry >= AZT_RETRY_ATTEMPTS) {
  569. printk("### Error 2 aztcd: aztSetDiskType %xn ", type);
  570. azt_error = 0xA5;
  571. }
  572. RETURNM("aztSetDiskType", -1);
  573. }
  574. /* used in azt_poll to poll the status, expects another program to issue a 
  575.  * ACMD_GET_STATUS directly before 
  576.  */
  577. static int aztStatus(void)
  578. {
  579. int st;
  580. /* int i;
  581. i = inb(STATUS_PORT) & AFL_STATUS;    is STEN=0?    ???
  582. if (!i)
  583. */ STEN_LOW;
  584. if (aztTimeOutCount < AZT_TIMEOUT) {
  585. st = inb(DATA_PORT) & 0xFF;
  586. return st;
  587. } else
  588. RETURNM("aztStatus", -1);
  589. }
  590. /*
  591.  * Get the drive status
  592.  */
  593. static int getAztStatus(void)
  594. {
  595. int st;
  596. if (aztSendCmd(ACMD_GET_STATUS))
  597. RETURNM("getAztStatus 1", -1);
  598. STEN_LOW;
  599. st = inb(DATA_PORT) & 0xFF;
  600. #ifdef AZT_DEBUG
  601. printk("aztcd: Status = %xn", st);
  602. #endif
  603. if ((st == 0xFF) || (st & AST_CMD_CHECK)) {
  604. printk
  605.     ("aztcd: AST_CMD_CHECK error or no status availablen");
  606. return -1;
  607. }
  608. if (((st & AST_MODE_BITS) != AST_BUSY)
  609.     && (aztAudioStatus == CDROM_AUDIO_PLAY))
  610. /* XXX might be an error? look at q-channel? */
  611. aztAudioStatus = CDROM_AUDIO_COMPLETED;
  612. if ((st & AST_DSK_CHG) || (st & AST_NOT_READY)) {
  613. aztDiskChanged = 1;
  614. aztTocUpToDate = 0;
  615. aztAudioStatus = CDROM_AUDIO_NO_STATUS;
  616. }
  617. return st;
  618. }
  619. /*
  620.  * Send a 'Play' command and get the status.  Use only from the top half.
  621.  */
  622. static int aztPlay(struct azt_Play_msf *arg)
  623. {
  624. if (sendAztCmd(ACMD_PLAY_AUDIO, arg) < 0)
  625. RETURNM("aztPlay", -1);
  626. return 0;
  627. }
  628. /*
  629.  * Subroutines to automatically close the door (tray) and 
  630.  * lock it closed when the cd is mounted.  Leave the tray
  631.  * locking as an option
  632.  */
  633. static void aztCloseDoor(void)
  634. {
  635. aztSendCmd(ACMD_CLOSE);
  636. STEN_LOW;
  637. return;
  638. }
  639. static void aztLockDoor(void)
  640. {
  641. #if AZT_ALLOW_TRAY_LOCK
  642. aztSendCmd(ACMD_LOCK);
  643. STEN_LOW;
  644. #endif
  645. return;
  646. }
  647. static void aztUnlockDoor(void)
  648. {
  649. #if AZT_ALLOW_TRAY_LOCK
  650. aztSendCmd(ACMD_UNLOCK);
  651. STEN_LOW;
  652. #endif
  653. return;
  654. }
  655. /*
  656.  * Read a value from the drive.  Should return quickly, so a busy wait
  657.  * is used to avoid excessive rescheduling. The read command itself must
  658.  * be issued with aztSendCmd() directly before
  659.  */
  660. static int aztGetValue(unsigned char *result)
  661. {
  662. int s;
  663. STEN_LOW;
  664. if (aztTimeOutCount >= AZT_TIMEOUT) {
  665. printk("aztcd: aztGetValue timeoutn");
  666. return -1;
  667. }
  668. s = inb(DATA_PORT) & 0xFF;
  669. *result = (unsigned char) s;
  670. return 0;
  671. }
  672. /*
  673.  * Read the current Q-channel info.  Also used for reading the
  674.  * table of contents.
  675.  */
  676. int aztGetQChannelInfo(struct azt_Toc *qp)
  677. {
  678. unsigned char notUsed;
  679. int st;
  680. #ifdef AZT_DEBUG
  681. printk("aztcd: starting aztGetQChannelInfo  Time:%lin", jiffies);
  682. #endif
  683. if ((st = getAztStatus()) == -1)
  684. RETURNM("aztGetQChannelInfo 1", -1);
  685. if (aztSendCmd(ACMD_GET_Q_CHANNEL))
  686. RETURNM("aztGetQChannelInfo 2", -1);
  687. /*STEN_LOW_WAIT; ??? Dosemu0.60's cdrom.c does not like STEN_LOW_WAIT here */
  688. if (aztGetValue(&notUsed))
  689. RETURNM("aztGetQChannelInfo 3", -1); /*??? Nullbyte einlesen */
  690. if ((st & AST_MODE_BITS) == AST_INITIAL) {
  691. qp->ctrl_addr = 0; /* when audio stop ACMD_GET_Q_CHANNEL returns */
  692. qp->track = 0; /* only one byte with Aztech drives */
  693. qp->pointIndex = 0;
  694. qp->trackTime.min = 0;
  695. qp->trackTime.sec = 0;
  696. qp->trackTime.frame = 0;
  697. qp->diskTime.min = 0;
  698. qp->diskTime.sec = 0;
  699. qp->diskTime.frame = 0;
  700. return 0;
  701. } else {
  702. if (aztGetValue(&qp->ctrl_addr) < 0)
  703. RETURNM("aztGetQChannelInfo 4", -1);
  704. if (aztGetValue(&qp->track) < 0)
  705. RETURNM("aztGetQChannelInfo 4", -1);
  706. if (aztGetValue(&qp->pointIndex) < 0)
  707. RETURNM("aztGetQChannelInfo 4", -1);
  708. if (aztGetValue(&qp->trackTime.min) < 0)
  709. RETURNM("aztGetQChannelInfo 4", -1);
  710. if (aztGetValue(&qp->trackTime.sec) < 0)
  711. RETURNM("aztGetQChannelInfo 4", -1);
  712. if (aztGetValue(&qp->trackTime.frame) < 0)
  713. RETURNM("aztGetQChannelInfo 4", -1);
  714. if (aztGetValue(&notUsed) < 0)
  715. RETURNM("aztGetQChannelInfo 4", -1);
  716. if (aztGetValue(&qp->diskTime.min) < 0)
  717. RETURNM("aztGetQChannelInfo 4", -1);
  718. if (aztGetValue(&qp->diskTime.sec) < 0)
  719. RETURNM("aztGetQChannelInfo 4", -1);
  720. if (aztGetValue(&qp->diskTime.frame) < 0)
  721. RETURNM("aztGetQChannelInfo 4", -1);
  722. }
  723. #ifdef AZT_DEBUG
  724. printk("aztcd: exiting aztGetQChannelInfo  Time:%lin", jiffies);
  725. #endif
  726. return 0;
  727. }
  728. /*
  729.  * Read the table of contents (TOC) and TOC header if necessary
  730.  */
  731. static int aztUpdateToc()
  732. {
  733. int st;
  734. #ifdef AZT_DEBUG
  735. printk("aztcd: starting aztUpdateToc  Time:%lin", jiffies);
  736. #endif
  737. if (aztTocUpToDate)
  738. return 0;
  739. if (aztGetDiskInfo() < 0)
  740. return -EIO;
  741. if (aztGetToc(0) < 0)
  742. return -EIO;
  743. /*audio disk detection
  744.    with my Aztech drive there is no audio status bit, so I use the copy
  745.    protection bit of the first track. If this track is copy protected 
  746.    (copy bit = 0), I assume, it's an audio  disk. Strange, but works ??? */
  747. if (!(Toc[DiskInfo.first].ctrl_addr & 0x40))
  748. DiskInfo.audio = 1;
  749. else
  750. DiskInfo.audio = 0;
  751. /* XA detection */
  752. if (!DiskInfo.audio) {
  753. azt_Play.start.min = 0; /*XA detection only seems to work */
  754. azt_Play.start.sec = 2; /*when we play a track */
  755. azt_Play.start.frame = 0;
  756. azt_Play.end.min = 0;
  757. azt_Play.end.sec = 0;
  758. azt_Play.end.frame = 1;
  759. if (sendAztCmd(ACMD_PLAY_READ, &azt_Play))
  760. return -1;
  761. DTEN_LOW;
  762. for (st = 0; st < CD_FRAMESIZE; st++)
  763. inb(DATA_PORT);
  764. }
  765. DiskInfo.xa = getAztStatus() & AST_MODE;
  766. if (DiskInfo.xa) {
  767. printk
  768.     ("aztcd: XA support experimental - mail results to Werner.Zimmermann@fht-esslingen.den");
  769. }
  770. /*multisession detection
  771.    support for multisession CDs is done automatically with Aztech drives,
  772.    we don't have to take care about TOC redirection; if we want the isofs
  773.    to take care about redirection, we have to set AZT_MULTISESSION to 1 */
  774. DiskInfo.multi = 0;
  775. #if AZT_MULTISESSION
  776. if (DiskInfo.xa) {
  777. aztGetMultiDiskInfo(); /*here Disk.Info.multi is set */
  778. }
  779. #endif
  780. if (DiskInfo.multi) {
  781. DiskInfo.lastSession.min = Toc[DiskInfo.next].diskTime.min;
  782. DiskInfo.lastSession.sec = Toc[DiskInfo.next].diskTime.sec;
  783. DiskInfo.lastSession.frame =
  784.     Toc[DiskInfo.next].diskTime.frame;
  785. printk("aztcd: Multisession support experimentaln");
  786. } else {
  787. DiskInfo.lastSession.min =
  788.     Toc[DiskInfo.first].diskTime.min;
  789. DiskInfo.lastSession.sec =
  790.     Toc[DiskInfo.first].diskTime.sec;
  791. DiskInfo.lastSession.frame =
  792.     Toc[DiskInfo.first].diskTime.frame;
  793. }
  794. aztTocUpToDate = 1;
  795. #ifdef AZT_DEBUG
  796. printk("aztcd: exiting aztUpdateToc  Time:%lin", jiffies);
  797. #endif
  798. return 0;
  799. }
  800. /* Read the table of contents header, i.e. no. of tracks and start of first 
  801.  * track
  802.  */
  803. static int aztGetDiskInfo()
  804. {
  805. int limit;
  806. unsigned char test;
  807. struct azt_Toc qInfo;
  808. #ifdef AZT_DEBUG
  809. printk("aztcd: starting aztGetDiskInfo  Time:%lin", jiffies);
  810. #endif
  811. if (aztSendCmd(ACMD_SEEK_TO_LEADIN))
  812. RETURNM("aztGetDiskInfo 1", -1);
  813. STEN_LOW_WAIT;
  814. test = 0;
  815. for (limit = 300; limit > 0; limit--) {
  816. if (aztGetQChannelInfo(&qInfo) < 0)
  817. RETURNM("aztGetDiskInfo 2", -1);
  818. if (qInfo.pointIndex == 0xA0) { /*Number of FirstTrack */
  819. DiskInfo.first = qInfo.diskTime.min;
  820. DiskInfo.first = azt_bcd2bin(DiskInfo.first);
  821. test = test | 0x01;
  822. }
  823. if (qInfo.pointIndex == 0xA1) { /*Number of LastTrack */
  824. DiskInfo.last = qInfo.diskTime.min;
  825. DiskInfo.last = azt_bcd2bin(DiskInfo.last);
  826. test = test | 0x02;
  827. }
  828. if (qInfo.pointIndex == 0xA2) { /*DiskLength */
  829. DiskInfo.diskLength.min = qInfo.diskTime.min;
  830. DiskInfo.diskLength.sec = qInfo.diskTime.sec;
  831. DiskInfo.diskLength.frame = qInfo.diskTime.frame;
  832. test = test | 0x04;
  833. }
  834. if ((qInfo.pointIndex == DiskInfo.first) && (test & 0x01)) { /*StartTime of First Track */
  835. DiskInfo.firstTrack.min = qInfo.diskTime.min;
  836. DiskInfo.firstTrack.sec = qInfo.diskTime.sec;
  837. DiskInfo.firstTrack.frame = qInfo.diskTime.frame;
  838. test = test | 0x08;
  839. }
  840. if (test == 0x0F)
  841. break;
  842. }
  843. #ifdef AZT_DEBUG
  844. printk("aztcd: exiting aztGetDiskInfo  Time:%lin", jiffies);
  845. printk
  846.     ("Disk Info: first %d last %d length %02X:%02X.%02X dez  first %02X:%02X.%02X dezn",
  847.      DiskInfo.first, DiskInfo.last, DiskInfo.diskLength.min,
  848.      DiskInfo.diskLength.sec, DiskInfo.diskLength.frame,
  849.      DiskInfo.firstTrack.min, DiskInfo.firstTrack.sec,
  850.      DiskInfo.firstTrack.frame);
  851. #endif
  852. if (test != 0x0F)
  853. return -1;
  854. return 0;
  855. }
  856. #if AZT_MULTISESSION
  857. /*
  858.  * Get Multisession Disk Info
  859.  */
  860. static int aztGetMultiDiskInfo(void)
  861. {
  862. int limit, k = 5;
  863. unsigned char test;
  864. struct azt_Toc qInfo;
  865. #ifdef AZT_DEBUG
  866. printk("aztcd: starting aztGetMultiDiskInfon");
  867. #endif
  868. do {
  869. azt_Play.start.min = Toc[DiskInfo.last + 1].diskTime.min;
  870. azt_Play.start.sec = Toc[DiskInfo.last + 1].diskTime.sec;
  871. azt_Play.start.frame =
  872.     Toc[DiskInfo.last + 1].diskTime.frame;
  873. test = 0;
  874. for (limit = 30; limit > 0; limit--) { /*Seek for LeadIn of next session */
  875. if (aztSeek(&azt_Play))
  876. RETURNM("aztGetMultiDiskInfo 1", -1);
  877. if (aztGetQChannelInfo(&qInfo) < 0)
  878. RETURNM("aztGetMultiDiskInfo 2", -1);
  879. if ((qInfo.track == 0) && (qInfo.pointIndex))
  880. break; /*LeadIn found */
  881. if ((azt_Play.start.sec += 10) > 59) {
  882. azt_Play.start.sec = 0;
  883. azt_Play.start.min++;
  884. }
  885. }
  886. if (!limit)
  887. break; /*Check, if a leadin track was found, if not we're
  888.    at the end of the disk */
  889. #ifdef AZT_DEBUG_MULTISESSION
  890. printk("leadin found track %d  pointIndex %x  limit %dn",
  891.        qInfo.track, qInfo.pointIndex, limit);
  892. #endif
  893. for (limit = 300; limit > 0; limit--) {
  894. if (++azt_Play.start.frame > 74) {
  895. azt_Play.start.frame = 0;
  896. if (azt_Play.start.sec > 59) {
  897. azt_Play.start.sec = 0;
  898. azt_Play.start.min++;
  899. }
  900. }
  901. if (aztSeek(&azt_Play))
  902. RETURNM("aztGetMultiDiskInfo 3", -1);
  903. if (aztGetQChannelInfo(&qInfo) < 0)
  904. RETURNM("aztGetMultiDiskInfo 4", -1);
  905. if (qInfo.pointIndex == 0xA0) { /*Number of NextTrack */
  906. DiskInfo.next = qInfo.diskTime.min;
  907. DiskInfo.next = azt_bcd2bin(DiskInfo.next);
  908. test = test | 0x01;
  909. }
  910. if (qInfo.pointIndex == 0xA1) { /*Number of LastTrack */
  911. DiskInfo.last = qInfo.diskTime.min;
  912. DiskInfo.last = azt_bcd2bin(DiskInfo.last);
  913. test = test | 0x02;
  914. }
  915. if (qInfo.pointIndex == 0xA2) { /*DiskLength */
  916. DiskInfo.diskLength.min =
  917.     qInfo.diskTime.min;
  918. DiskInfo.diskLength.sec =
  919.     qInfo.diskTime.sec;
  920. DiskInfo.diskLength.frame =
  921.     qInfo.diskTime.frame;
  922. test = test | 0x04;
  923. }
  924. if ((qInfo.pointIndex == DiskInfo.next) && (test & 0x01)) { /*StartTime of Next Track */
  925. DiskInfo.nextSession.min =
  926.     qInfo.diskTime.min;
  927. DiskInfo.nextSession.sec =
  928.     qInfo.diskTime.sec;
  929. DiskInfo.nextSession.frame =
  930.     qInfo.diskTime.frame;
  931. test = test | 0x08;
  932. }
  933. if (test == 0x0F)
  934. break;
  935. }
  936. #ifdef AZT_DEBUG_MULTISESSION
  937. printk
  938.     ("MultiDisk Info: first %d next %d last %d length %02x:%02x.%02x dez  first %02x:%02x.%02x dez  next %02x:%02x.%02x dezn",
  939.      DiskInfo.first, DiskInfo.next, DiskInfo.last,
  940.      DiskInfo.diskLength.min, DiskInfo.diskLength.sec,
  941.      DiskInfo.diskLength.frame, DiskInfo.firstTrack.min,
  942.      DiskInfo.firstTrack.sec, DiskInfo.firstTrack.frame,
  943.      DiskInfo.nextSession.min, DiskInfo.nextSession.sec,
  944.      DiskInfo.nextSession.frame);
  945. #endif
  946. if (test != 0x0F)
  947. break;
  948. else
  949. DiskInfo.multi = 1; /*found TOC of more than one session */
  950. aztGetToc(1);
  951. } while (--k);
  952. #ifdef AZT_DEBUG
  953. printk("aztcd: exiting aztGetMultiDiskInfo  Time:%lin", jiffies);
  954. #endif
  955. return 0;
  956. }
  957. #endif
  958. /*
  959.  * Read the table of contents (TOC)
  960.  */
  961. static int aztGetToc(int multi)
  962. {
  963. int i, px;
  964. int limit;
  965. struct azt_Toc qInfo;
  966. #ifdef AZT_DEBUG
  967. printk("aztcd: starting aztGetToc  Time:%lin", jiffies);
  968. #endif
  969. if (!multi) {
  970. for (i = 0; i < MAX_TRACKS; i++)
  971. Toc[i].pointIndex = 0;
  972. i = DiskInfo.last + 3;
  973. } else {
  974. for (i = DiskInfo.next; i < MAX_TRACKS; i++)
  975. Toc[i].pointIndex = 0;
  976. i = DiskInfo.last + 4 - DiskInfo.next;
  977. }
  978. /*Is there a good reason to stop motor before TOC read?
  979.   if (aztSendCmd(ACMD_STOP)) RETURNM("aztGetToc 1",-1);
  980.       STEN_LOW_WAIT;
  981. */
  982. if (!multi) {
  983. azt_mode = 0x05;
  984. if (aztSendCmd(ACMD_SEEK_TO_LEADIN))
  985. RETURNM("aztGetToc 2", -1);
  986. STEN_LOW_WAIT;
  987. }
  988. for (limit = 300; limit > 0; limit--) {
  989. if (multi) {
  990. if (++azt_Play.start.sec > 59) {
  991. azt_Play.start.sec = 0;
  992. azt_Play.start.min++;
  993. }
  994. if (aztSeek(&azt_Play))
  995. RETURNM("aztGetToc 3", -1);
  996. }
  997. if (aztGetQChannelInfo(&qInfo) < 0)
  998. break;
  999. px = azt_bcd2bin(qInfo.pointIndex);
  1000. if (px > 0 && px < MAX_TRACKS && qInfo.track == 0)
  1001. if (Toc[px].pointIndex == 0) {
  1002. Toc[px] = qInfo;
  1003. i--;
  1004. }
  1005. if (i <= 0)
  1006. break;
  1007. }
  1008. Toc[DiskInfo.last + 1].diskTime = DiskInfo.diskLength;
  1009. Toc[DiskInfo.last].trackTime = DiskInfo.diskLength;
  1010. #ifdef AZT_DEBUG_MULTISESSION
  1011. printk("aztcd: exiting aztGetTocn");
  1012. for (i = 1; i <= DiskInfo.last + 1; i++)
  1013. printk
  1014.     ("i = %2d ctl-adr = %02X track %2d px %02X %02X:%02X.%02X dez  %02X:%02X.%02X dezn",
  1015.      i, Toc[i].ctrl_addr, Toc[i].track, Toc[i].pointIndex,
  1016.      Toc[i].trackTime.min, Toc[i].trackTime.sec,
  1017.      Toc[i].trackTime.frame, Toc[i].diskTime.min,
  1018.      Toc[i].diskTime.sec, Toc[i].diskTime.frame);
  1019. for (i = 100; i < 103; i++)
  1020. printk
  1021.     ("i = %2d ctl-adr = %02X track %2d px %02X %02X:%02X.%02X dez  %02X:%02X.%02X dezn",
  1022.      i, Toc[i].ctrl_addr, Toc[i].track, Toc[i].pointIndex,
  1023.      Toc[i].trackTime.min, Toc[i].trackTime.sec,
  1024.      Toc[i].trackTime.frame, Toc[i].diskTime.min,
  1025.      Toc[i].diskTime.sec, Toc[i].diskTime.frame);
  1026. #endif
  1027. return limit > 0 ? 0 : -1;
  1028. }
  1029. /*##########################################################################
  1030.   Kernel Interface Functions
  1031.   ##########################################################################
  1032. */
  1033. #ifndef MODULE
  1034. static int __init aztcd_setup(char *str)
  1035. {
  1036. int ints[4];
  1037. (void) get_options(str, ARRAY_SIZE(ints), ints);
  1038. if (ints[0] > 0)
  1039. azt_port = ints[1];
  1040. if (ints[1] > 1)
  1041. azt_cont = ints[2];
  1042. return 1;
  1043. }
  1044. __setup("aztcd=", aztcd_setup);
  1045. #endif /* !MODULE */
  1046. /* 
  1047.  * Checking if the media has been changed
  1048. */
  1049. static int check_aztcd_media_change(kdev_t full_dev)
  1050. {
  1051. if (aztDiskChanged) { /* disk changed */
  1052. aztDiskChanged = 0;
  1053. return 1;
  1054. } else
  1055. return 0; /* no change */
  1056. }
  1057. /*
  1058.  * Kernel IO-controls
  1059. */
  1060. static int aztcd_ioctl(struct inode *ip, struct file *fp, unsigned int cmd,
  1061.        unsigned long arg)
  1062. {
  1063. int i;
  1064. struct azt_Toc qInfo;
  1065. struct cdrom_ti ti;
  1066. struct cdrom_tochdr tocHdr;
  1067. struct cdrom_msf msf;
  1068. struct cdrom_tocentry entry;
  1069. struct azt_Toc *tocPtr;
  1070. struct cdrom_subchnl subchnl;
  1071. struct cdrom_volctrl volctrl;
  1072. #ifdef AZT_DEBUG
  1073. printk("aztcd: starting aztcd_ioctl - Command:%x   Time: %lin",
  1074.        cmd, jiffies);
  1075. printk("aztcd Status %xn", getAztStatus());
  1076. #endif
  1077. if (!ip)
  1078. RETURNM("aztcd_ioctl 1", -EINVAL);
  1079. if (getAztStatus() < 0)
  1080. RETURNM("aztcd_ioctl 2", -EIO);
  1081. if ((!aztTocUpToDate) || (aztDiskChanged)) {
  1082. if ((i = aztUpdateToc()) < 0)
  1083. RETURNM("aztcd_ioctl 3", i); /* error reading TOC */
  1084. }
  1085. switch (cmd) {
  1086. case CDROMSTART: /* Spin up the drive. Don't know, what to do,
  1087.    at least close the tray */
  1088. #if AZT_PRIVATE_IOCTLS
  1089. if (aztSendCmd(ACMD_CLOSE))
  1090. RETURNM("aztcd_ioctl 4", -1);
  1091. STEN_LOW_WAIT;
  1092. #endif
  1093. break;
  1094. case CDROMSTOP: /* Spin down the drive */
  1095. if (aztSendCmd(ACMD_STOP))
  1096. RETURNM("aztcd_ioctl 5", -1);
  1097. STEN_LOW_WAIT;
  1098. /* should we do anything if it fails? */
  1099. aztAudioStatus = CDROM_AUDIO_NO_STATUS;
  1100. break;
  1101. case CDROMPAUSE: /* Pause the drive */
  1102. if (aztAudioStatus != CDROM_AUDIO_PLAY)
  1103. return -EINVAL;
  1104. if (aztGetQChannelInfo(&qInfo) < 0) { /* didn't get q channel info */
  1105. aztAudioStatus = CDROM_AUDIO_NO_STATUS;
  1106. RETURNM("aztcd_ioctl 7", 0);
  1107. }
  1108. azt_Play.start = qInfo.diskTime; /* remember restart point */
  1109. if (aztSendCmd(ACMD_PAUSE))
  1110. RETURNM("aztcd_ioctl 8", -1);
  1111. STEN_LOW_WAIT;
  1112. aztAudioStatus = CDROM_AUDIO_PAUSED;
  1113. break;
  1114. case CDROMRESUME: /* Play it again, Sam */
  1115. if (aztAudioStatus != CDROM_AUDIO_PAUSED)
  1116. return -EINVAL;
  1117. /* restart the drive at the saved position. */
  1118. i = aztPlay(&azt_Play);
  1119. if (i < 0) {
  1120. aztAudioStatus = CDROM_AUDIO_ERROR;
  1121. return -EIO;
  1122. }
  1123. aztAudioStatus = CDROM_AUDIO_PLAY;
  1124. break;
  1125. case CDROMMULTISESSION: /*multisession support -- experimental */
  1126. {
  1127. struct cdrom_multisession ms;
  1128. #ifdef AZT_DEBUG
  1129. printk("aztcd ioctl MULTISESSIONn");
  1130. #endif
  1131. if (copy_from_user
  1132.     (&ms, (void *) arg,
  1133.      sizeof(struct cdrom_multisession)))
  1134. return -EFAULT;
  1135. if (ms.addr_format == CDROM_MSF) {
  1136. ms.addr.msf.minute =
  1137.     azt_bcd2bin(DiskInfo.lastSession.min);
  1138. ms.addr.msf.second =
  1139.     azt_bcd2bin(DiskInfo.lastSession.sec);
  1140. ms.addr.msf.frame =
  1141.     azt_bcd2bin(DiskInfo.lastSession.
  1142. frame);
  1143. } else if (ms.addr_format == CDROM_LBA)
  1144. ms.addr.lba =
  1145.     azt_msf2hsg(&DiskInfo.lastSession);
  1146. else
  1147. return -EINVAL;
  1148. ms.xa_flag = DiskInfo.xa;
  1149. if (copy_to_user
  1150.     ((void *) arg, &ms,
  1151.      sizeof(struct cdrom_multisession)))
  1152. return -EFAULT;
  1153. #ifdef AZT_DEBUG
  1154. if (ms.addr_format == CDROM_MSF)
  1155. printk
  1156.     ("aztcd multisession xa:%d, msf:%02x:%02x.%02x [%02x:%02x.%02x])n",
  1157.      ms.xa_flag, ms.addr.msf.minute,
  1158.      ms.addr.msf.second, ms.addr.msf.frame,
  1159.      DiskInfo.lastSession.min,
  1160.      DiskInfo.lastSession.sec,
  1161.      DiskInfo.lastSession.frame);
  1162. else
  1163. printk
  1164.     ("aztcd multisession %d, lba:0x%08x [%02x:%02x.%02x])n",
  1165.      ms.xa_flag, ms.addr.lba,
  1166.      DiskInfo.lastSession.min,
  1167.      DiskInfo.lastSession.sec,
  1168.      DiskInfo.lastSession.frame);
  1169. #endif
  1170. return 0;
  1171. }
  1172. case CDROMPLAYTRKIND: /* Play a track.  This currently ignores index. */
  1173. if (copy_from_user(&ti, (void *) arg, sizeof ti))
  1174. return -EFAULT;
  1175. if (ti.cdti_trk0 < DiskInfo.first
  1176.     || ti.cdti_trk0 > DiskInfo.last
  1177.     || ti.cdti_trk1 < ti.cdti_trk0) {
  1178. return -EINVAL;
  1179. }
  1180. if (ti.cdti_trk1 > DiskInfo.last)
  1181. ti.cdti_trk1 = DiskInfo.last;
  1182. azt_Play.start = Toc[ti.cdti_trk0].diskTime;
  1183. azt_Play.end = Toc[ti.cdti_trk1 + 1].diskTime;
  1184. #ifdef AZT_DEBUG
  1185. printk("aztcd play: %02x:%02x.%02x to %02x:%02x.%02xn",
  1186.        azt_Play.start.min, azt_Play.start.sec,
  1187.        azt_Play.start.frame, azt_Play.end.min,
  1188.        azt_Play.end.sec, azt_Play.end.frame);
  1189. #endif
  1190. i = aztPlay(&azt_Play);
  1191. if (i < 0) {
  1192. aztAudioStatus = CDROM_AUDIO_ERROR;
  1193. return -EIO;
  1194. }
  1195. aztAudioStatus = CDROM_AUDIO_PLAY;
  1196. break;
  1197. case CDROMPLAYMSF: /* Play starting at the given MSF address. */
  1198. /*              if (aztAudioStatus == CDROM_AUDIO_PLAY) 
  1199. { if (aztSendCmd(ACMD_STOP)) RETURNM("aztcd_ioctl 9",-1);
  1200.   STEN_LOW;
  1201.   aztAudioStatus = CDROM_AUDIO_NO_STATUS;
  1202. }
  1203. */
  1204. if (copy_from_user(&msf, (void *) arg, sizeof msf))
  1205. return -EFAULT;
  1206. /* convert to bcd */
  1207. azt_bin2bcd(&msf.cdmsf_min0);
  1208. azt_bin2bcd(&msf.cdmsf_sec0);
  1209. azt_bin2bcd(&msf.cdmsf_frame0);
  1210. azt_bin2bcd(&msf.cdmsf_min1);
  1211. azt_bin2bcd(&msf.cdmsf_sec1);
  1212. azt_bin2bcd(&msf.cdmsf_frame1);
  1213. azt_Play.start.min = msf.cdmsf_min0;
  1214. azt_Play.start.sec = msf.cdmsf_sec0;
  1215. azt_Play.start.frame = msf.cdmsf_frame0;
  1216. azt_Play.end.min = msf.cdmsf_min1;
  1217. azt_Play.end.sec = msf.cdmsf_sec1;
  1218. azt_Play.end.frame = msf.cdmsf_frame1;
  1219. #ifdef AZT_DEBUG
  1220. printk("aztcd play: %02x:%02x.%02x to %02x:%02x.%02xn",
  1221.        azt_Play.start.min, azt_Play.start.sec,
  1222.        azt_Play.start.frame, azt_Play.end.min,
  1223.        azt_Play.end.sec, azt_Play.end.frame);
  1224. #endif
  1225. i = aztPlay(&azt_Play);
  1226. if (i < 0) {
  1227. aztAudioStatus = CDROM_AUDIO_ERROR;
  1228. return -EIO;
  1229. }
  1230. aztAudioStatus = CDROM_AUDIO_PLAY;
  1231. break;
  1232. case CDROMREADTOCHDR: /* Read the table of contents header */
  1233. tocHdr.cdth_trk0 = DiskInfo.first;
  1234. tocHdr.cdth_trk1 = DiskInfo.last;
  1235. if (copy_to_user((void *) arg, &tocHdr, sizeof tocHdr))
  1236. return -EFAULT;
  1237. break;
  1238. case CDROMREADTOCENTRY: /* Read an entry in the table of contents */
  1239. if (copy_from_user(&entry, (void *) arg, sizeof entry))
  1240. return -EFAULT;
  1241. if ((!aztTocUpToDate) || aztDiskChanged)
  1242. aztUpdateToc();
  1243. if (entry.cdte_track == CDROM_LEADOUT)
  1244. tocPtr = &Toc[DiskInfo.last + 1];
  1245. else if (entry.cdte_track > DiskInfo.last
  1246.  || entry.cdte_track < DiskInfo.first) {
  1247. return -EINVAL;
  1248. } else
  1249. tocPtr = &Toc[entry.cdte_track];
  1250. entry.cdte_adr = tocPtr->ctrl_addr;
  1251. entry.cdte_ctrl = tocPtr->ctrl_addr >> 4;
  1252. if (entry.cdte_format == CDROM_LBA)
  1253. entry.cdte_addr.lba =
  1254.     azt_msf2hsg(&tocPtr->diskTime);
  1255. else if (entry.cdte_format == CDROM_MSF) {
  1256. entry.cdte_addr.msf.minute =
  1257.     azt_bcd2bin(tocPtr->diskTime.min);
  1258. entry.cdte_addr.msf.second =
  1259.     azt_bcd2bin(tocPtr->diskTime.sec);
  1260. entry.cdte_addr.msf.frame =
  1261.     azt_bcd2bin(tocPtr->diskTime.frame);
  1262. } else {
  1263. return -EINVAL;
  1264. }
  1265. if (copy_to_user((void *) arg, &entry, sizeof entry))
  1266. return -EFAULT;
  1267. break;
  1268. case CDROMSUBCHNL: /* Get subchannel info */
  1269. if (copy_from_user
  1270.     (&subchnl, (void *) arg, sizeof(struct cdrom_subchnl)))
  1271. return -EFAULT;
  1272. if (aztGetQChannelInfo(&qInfo) < 0) {
  1273. #ifdef AZT_DEBUG
  1274. printk
  1275.     ("aztcd: exiting aztcd_ioctl - Error 3 - Command:%xn",
  1276.      cmd);
  1277. #endif
  1278. return -EIO;
  1279. }
  1280. subchnl.cdsc_audiostatus = aztAudioStatus;
  1281. subchnl.cdsc_adr = qInfo.ctrl_addr;
  1282. subchnl.cdsc_ctrl = qInfo.ctrl_addr >> 4;
  1283. subchnl.cdsc_trk = azt_bcd2bin(qInfo.track);
  1284. subchnl.cdsc_ind = azt_bcd2bin(qInfo.pointIndex);
  1285. if (subchnl.cdsc_format == CDROM_LBA) {
  1286. subchnl.cdsc_absaddr.lba =
  1287.     azt_msf2hsg(&qInfo.diskTime);
  1288. subchnl.cdsc_reladdr.lba =
  1289.     azt_msf2hsg(&qInfo.trackTime);
  1290. } else { /*default */
  1291. subchnl.cdsc_format = CDROM_MSF;
  1292. subchnl.cdsc_absaddr.msf.minute =
  1293.     azt_bcd2bin(qInfo.diskTime.min);
  1294. subchnl.cdsc_absaddr.msf.second =
  1295.     azt_bcd2bin(qInfo.diskTime.sec);
  1296. subchnl.cdsc_absaddr.msf.frame =
  1297.     azt_bcd2bin(qInfo.diskTime.frame);
  1298. subchnl.cdsc_reladdr.msf.minute =
  1299.     azt_bcd2bin(qInfo.trackTime.min);
  1300. subchnl.cdsc_reladdr.msf.second =
  1301.     azt_bcd2bin(qInfo.trackTime.sec);
  1302. subchnl.cdsc_reladdr.msf.frame =
  1303.     azt_bcd2bin(qInfo.trackTime.frame);
  1304. }
  1305. if (copy_to_user
  1306.     ((void *) arg, &subchnl, sizeof(struct cdrom_subchnl)))
  1307. return -EFAULT;
  1308. break;
  1309. case CDROMVOLCTRL: /* Volume control 
  1310.    * With my Aztech CD268-01A volume control does not work, I can only
  1311.    turn the channels on (any value !=0) or off (value==0). Maybe it
  1312.    works better with your drive */
  1313. if (copy_from_user
  1314.     (&volctrl, (char *) arg, sizeof(volctrl)))
  1315. return -EFAULT;
  1316. azt_Play.start.min = 0x21;
  1317. azt_Play.start.sec = 0x84;
  1318. azt_Play.start.frame = volctrl.channel0;
  1319. azt_Play.end.min = volctrl.channel1;
  1320. azt_Play.end.sec = volctrl.channel2;
  1321. azt_Play.end.frame = volctrl.channel3;
  1322. sendAztCmd(ACMD_SET_VOLUME, &azt_Play);
  1323. STEN_LOW_WAIT;
  1324. break;
  1325. case CDROMEJECT:
  1326. aztUnlockDoor(); /* Assume user knows what they're doing */
  1327. /* all drives can at least stop! */
  1328. if (aztAudioStatus == CDROM_AUDIO_PLAY) {
  1329. if (aztSendCmd(ACMD_STOP))
  1330. RETURNM("azt_ioctl 10", -1);
  1331. STEN_LOW_WAIT;
  1332. }
  1333. if (aztSendCmd(ACMD_EJECT))
  1334. RETURNM("azt_ioctl 11", -1);
  1335. STEN_LOW_WAIT;
  1336. aztAudioStatus = CDROM_AUDIO_NO_STATUS;
  1337. break;
  1338. case CDROMEJECT_SW:
  1339. azt_auto_eject = (char) arg;
  1340. break;
  1341. case CDROMRESET:
  1342. outb(ACMD_SOFT_RESET, CMD_PORT); /*send reset */
  1343. STEN_LOW;
  1344. if (inb(DATA_PORT) != AFL_OP_OK) { /*OP_OK? */
  1345. printk
  1346.     ("aztcd: AZTECH CD-ROM drive does not respondn");
  1347. }
  1348. break;
  1349. /*Take care, the following code is not compatible with other CD-ROM drivers,
  1350.   use it at your own risk with cdplay.c. Set AZT_PRIVATE_IOCTLS to 0 in aztcd.h,
  1351.   if you do not want to use it!
  1352. */
  1353. #if AZT_PRIVATE_IOCTLS
  1354. case CDROMREADCOOKED: /*read data in mode 1 (2048 Bytes) */
  1355. case CDROMREADRAW: /*read data in mode 2 (2336 Bytes) */
  1356. {
  1357. if (copy_from_user(&msf, (void *) arg, sizeof msf))
  1358. return -EFAULT;
  1359. /* convert to bcd */
  1360. azt_bin2bcd(&msf.cdmsf_min0);
  1361. azt_bin2bcd(&msf.cdmsf_sec0);
  1362. azt_bin2bcd(&msf.cdmsf_frame0);
  1363. msf.cdmsf_min1 = 0;
  1364. msf.cdmsf_sec1 = 0;
  1365. msf.cdmsf_frame1 = 1; /*read only one frame */
  1366. azt_Play.start.min = msf.cdmsf_min0;
  1367. azt_Play.start.sec = msf.cdmsf_sec0;
  1368. azt_Play.start.frame = msf.cdmsf_frame0;
  1369. azt_Play.end.min = msf.cdmsf_min1;
  1370. azt_Play.end.sec = msf.cdmsf_sec1;
  1371. azt_Play.end.frame = msf.cdmsf_frame1;
  1372. if (cmd == CDROMREADRAW) {
  1373. if (DiskInfo.xa) {
  1374. return -1; /*XA Disks can't be read raw */
  1375. } else {
  1376. if (sendAztCmd
  1377.     (ACMD_PLAY_READ_RAW,
  1378.      &azt_Play))
  1379. return -1;
  1380. DTEN_LOW;
  1381. insb(DATA_PORT, buf,
  1382.      CD_FRAMESIZE_RAW);
  1383. if (copy_to_user
  1384.     ((void *) arg, &buf,
  1385.      CD_FRAMESIZE_RAW))
  1386. return -EFAULT;
  1387. }
  1388. } else
  1389. /*CDROMREADCOOKED*/ {
  1390. if (sendAztCmd(ACMD_PLAY_READ, &azt_Play))
  1391. return -1;
  1392. DTEN_LOW;
  1393. insb(DATA_PORT, buf, CD_FRAMESIZE);
  1394. if (copy_to_user
  1395.     ((void *) arg, &buf, CD_FRAMESIZE))
  1396. return -EFAULT;
  1397. }
  1398. }
  1399. break;
  1400. case CDROMSEEK: /*seek msf address */
  1401. if (copy_from_user(&msf, (void *) arg, sizeof msf))
  1402. return -EFAULT;
  1403. /* convert to bcd */
  1404. azt_bin2bcd(&msf.cdmsf_min0);
  1405. azt_bin2bcd(&msf.cdmsf_sec0);
  1406. azt_bin2bcd(&msf.cdmsf_frame0);
  1407. azt_Play.start.min = msf.cdmsf_min0;
  1408. azt_Play.start.sec = msf.cdmsf_sec0;
  1409. azt_Play.start.frame = msf.cdmsf_frame0;
  1410. if (aztSeek(&azt_Play))
  1411. return -1;
  1412. break;
  1413. #endif /*end of incompatible code */
  1414. case CDROMREADMODE1: /*set read data in mode 1 */
  1415. return aztSetDiskType(AZT_MODE_1);
  1416. case CDROMREADMODE2: /*set read data in mode 2 */
  1417. return aztSetDiskType(AZT_MODE_2);
  1418. default:
  1419. return -EINVAL;
  1420. }
  1421. #ifdef AZT_DEBUG
  1422. printk("aztcd: exiting aztcd_ioctl Command:%x  Time:%lin", cmd,
  1423.        jiffies);
  1424. #endif
  1425. return 0;
  1426. }
  1427. /*
  1428.  * Take care of the different block sizes between cdrom and Linux.
  1429.  * When Linux gets variable block sizes this will probably go away.
  1430.  */
  1431. static void azt_transfer(void)
  1432. {
  1433. #ifdef AZT_TEST
  1434. printk("aztcd: executing azt_transfer Time:%lin", jiffies);
  1435. #endif
  1436. if (CURRENT_VALID) {
  1437. while (CURRENT->nr_sectors) {
  1438. int bn = CURRENT->sector / 4;
  1439. int i;
  1440. for (i = 0; i < AZT_BUF_SIZ && azt_buf_bn[i] != bn;
  1441.      ++i);
  1442. if (i < AZT_BUF_SIZ) {
  1443. int offs =
  1444.     (i * 4 + (CURRENT->sector & 3)) * 512;
  1445. int nr_sectors = 4 - (CURRENT->sector & 3);
  1446. if (azt_buf_out != i) {
  1447. azt_buf_out = i;
  1448. if (azt_buf_bn[i] != bn) {
  1449. azt_buf_out = -1;
  1450. continue;
  1451. }
  1452. }
  1453. if (nr_sectors > CURRENT->nr_sectors)
  1454. nr_sectors = CURRENT->nr_sectors;
  1455. memcpy(CURRENT->buffer, azt_buf + offs,
  1456.        nr_sectors * 512);
  1457. CURRENT->nr_sectors -= nr_sectors;
  1458. CURRENT->sector += nr_sectors;
  1459. CURRENT->buffer += nr_sectors * 512;
  1460. } else {
  1461. azt_buf_out = -1;
  1462. break;
  1463. }
  1464. }
  1465. }
  1466. }
  1467. static void do_aztcd_request(request_queue_t * q)
  1468. {
  1469. #ifdef AZT_TEST
  1470. printk(" do_aztcd_request(%ld+%ld) Time:%lin", CURRENT->sector,
  1471.        CURRENT->nr_sectors, jiffies);
  1472. #endif
  1473. if (DiskInfo.audio) {
  1474. printk("aztcd: Error, tried to mount an Audio CDn");
  1475. end_request(0);
  1476. return;
  1477. }
  1478. azt_transfer_is_active = 1;
  1479. while (CURRENT_VALID) {
  1480. if (CURRENT->bh) {
  1481. if (!buffer_locked(CURRENT->bh))
  1482. panic(DEVICE_NAME ": block not locked");
  1483. }
  1484. azt_transfer();
  1485. if (CURRENT->nr_sectors == 0) {
  1486. end_request(1);
  1487. } else {
  1488. azt_buf_out = -1; /* Want to read a block not in buffer */
  1489. if (azt_state == AZT_S_IDLE) {
  1490. if ((!aztTocUpToDate) || aztDiskChanged) {
  1491. if (aztUpdateToc() < 0) {
  1492. while (CURRENT_VALID)
  1493. end_request(0);
  1494. break;
  1495. }
  1496. }
  1497. azt_state = AZT_S_START;
  1498. AztTries = 5;
  1499. SET_TIMER(azt_poll, HZ / 100);
  1500. }
  1501. break;
  1502. }
  1503. }
  1504. azt_transfer_is_active = 0;
  1505. #ifdef AZT_TEST2
  1506. printk
  1507.     ("azt_next_bn:%x  azt_buf_in:%x azt_buf_out:%x  azt_buf_bn:%xn",
  1508.      azt_next_bn, azt_buf_in, azt_buf_out, azt_buf_bn[azt_buf_in]);
  1509. printk(" do_aztcd_request ends  Time:%lin", jiffies);
  1510. #endif
  1511. }
  1512. static void azt_invalidate_buffers(void)
  1513. {
  1514. int i;
  1515. #ifdef AZT_DEBUG
  1516. printk("aztcd: executing azt_invalidate_buffersn");
  1517. #endif
  1518. for (i = 0; i < AZT_BUF_SIZ; ++i)
  1519. azt_buf_bn[i] = -1;
  1520. azt_buf_out = -1;
  1521. }
  1522. /*
  1523.  * Open the device special file.  Check that a disk is in.
  1524.  */
  1525. int aztcd_open(struct inode *ip, struct file *fp)
  1526. {
  1527. int st;
  1528. #ifdef AZT_DEBUG
  1529. printk("aztcd: starting aztcd_openn");
  1530. #endif
  1531. if (aztPresent == 0)
  1532. return -ENXIO; /* no hardware */
  1533. if (!azt_open_count && azt_state == AZT_S_IDLE) {
  1534. azt_invalidate_buffers();
  1535. st = getAztStatus(); /* check drive status */
  1536. if (st == -1)
  1537. goto err_out; /* drive doesn't respond */
  1538. if (st & AST_DOOR_OPEN) { /* close door, then get the status again. */
  1539. printk("aztcd: Door Open?n");
  1540. aztCloseDoor();
  1541. st = getAztStatus();
  1542. }
  1543. if ((st & AST_NOT_READY) || (st & AST_DSK_CHG)) { /*no disk in drive or changed */
  1544. printk
  1545.     ("aztcd: Disk Changed or No Disk in Drive?n");
  1546. aztTocUpToDate = 0;
  1547. }
  1548. if (aztUpdateToc())
  1549. goto err_out;
  1550. }
  1551. ++azt_open_count;
  1552. aztLockDoor();
  1553. #ifdef AZT_DEBUG
  1554. printk("aztcd: exiting aztcd_openn");
  1555. #endif
  1556. return 0;
  1557.       err_out:
  1558. return -EIO;
  1559. }
  1560. /*
  1561.  * On close, we flush all azt blocks from the buffer cache.
  1562.  */
  1563. static int aztcd_release(struct inode *inode, struct file *file)
  1564. {
  1565. #ifdef AZT_DEBUG
  1566. printk("aztcd: executing aztcd_releasen");
  1567. printk("inode: %p, inode->i_rdev: %x    file: %pn", inode,
  1568.        inode->i_rdev, file);
  1569. #endif
  1570. if (!--azt_open_count) {
  1571. azt_invalidate_buffers();
  1572. aztUnlockDoor();
  1573. if (azt_auto_eject)
  1574. aztSendCmd(ACMD_EJECT);
  1575. CLEAR_TIMER;
  1576. }
  1577. return 0;
  1578. }
  1579. /*
  1580.  * Test for presence of drive and initialize it.  Called at boot time.
  1581.  */
  1582. int __init aztcd_init(void)
  1583. {
  1584. long int count, max_count;
  1585. unsigned char result[50];
  1586. int st;
  1587. int i = 0;
  1588. if (azt_port == 0) {
  1589. printk("aztcd: no Aztech CD-ROM Initialization");
  1590. return -EIO;
  1591. }
  1592. printk
  1593.     ("aztcd: AZTECH, ORCHID, OKANO, WEARNES, TXC, CyDROM CD-ROM Drivern");
  1594. printk("aztcd: (C) 1994-98 W.Zimmermannn");
  1595. if (azt_port == -1) {
  1596. printk
  1597.     ("aztcd: KernelVersion=%s DriverVersion=%s For IDE/ATAPI-drives use ide-cd.cn",
  1598.      UTS_RELEASE, AZT_VERSION);
  1599. } else
  1600. printk
  1601.     ("aztcd: DriverVersion=%s BaseAddress=0x%x  For IDE/ATAPI-drives use ide-cd.cn",
  1602.      AZT_VERSION, azt_port);
  1603. printk
  1604.     ("aztcd: If you have problems, read /usr/src/linux/Documentation/cdrom/aztcdn");
  1605. #ifdef AZT_SW32 /*CDROM connected to Soundwave32 card */
  1606. if ((0xFF00 & inw(AZT_SW32_ID_REG)) != 0x4500) {
  1607. printk
  1608.     ("aztcd: no Soundwave32 card detected at base:%x init:%x config:%x id:%xn",
  1609.      AZT_SW32_BASE_ADDR, AZT_SW32_INIT,
  1610.      AZT_SW32_CONFIG_REG, AZT_SW32_ID_REG);
  1611. return -EIO;
  1612. } else {
  1613. printk(KERN_INFO
  1614.        "aztcd: Soundwave32 card detected at %x  Version %xn",
  1615.        AZT_SW32_BASE_ADDR, inw(AZT_SW32_ID_REG));
  1616. outw(AZT_SW32_INIT, AZT_SW32_CONFIG_REG);
  1617. for (count = 0; count < 10000; count++); /*delay a bit */
  1618. }
  1619. #endif
  1620. /* check for presence of drive */
  1621. if (azt_port == -1) { /* autoprobing */
  1622. for (i = 0; (azt_port_auto[i] != 0) && (i < 16); i++) {
  1623. azt_port = azt_port_auto[i];
  1624. printk("aztcd: Autoprobing BaseAddress=0x%x n",
  1625.        azt_port);
  1626. st = check_region(azt_port, 4); /*proprietary interfaces need 4 bytes */
  1627. if (st)
  1628. continue;
  1629. outb(POLLED, MODE_PORT);
  1630. inb(CMD_PORT);
  1631. inb(CMD_PORT);
  1632. outb(ACMD_GET_VERSION, CMD_PORT); /*Try to get version info */
  1633. aztTimeOutCount = 0;
  1634. do {
  1635. aztIndatum = inb(STATUS_PORT);
  1636. aztTimeOutCount++;
  1637. if (aztTimeOutCount >= AZT_FAST_TIMEOUT)
  1638. break;
  1639. } while (aztIndatum & AFL_STATUS);
  1640. if (inb(DATA_PORT) == AFL_OP_OK)
  1641. break;
  1642. }
  1643. if ((azt_port_auto[i] == 0) || (i == 16)) {
  1644. printk("aztcd: no AZTECH CD-ROM drive foundn");
  1645. return -EIO;
  1646. }
  1647. } else { /* no autoprobing */
  1648. if ((azt_port == 0x1f0) || (azt_port == 0x170))
  1649. st = check_region(azt_port, 8); /*IDE-interfaces need 8 bytes */
  1650. else
  1651. st = check_region(azt_port, 4); /*proprietary interfaces need 4 bytes */
  1652. if (st) {
  1653. printk
  1654.     ("aztcd: conflict, I/O port (%X) already usedn",
  1655.      azt_port);
  1656. return -EIO;
  1657. }
  1658. if ((azt_port == 0x1f0) || (azt_port == 0x170))
  1659. SWITCH_IDE_SLAVE; /*switch IDE interface to slave configuration */
  1660. outb(POLLED, MODE_PORT);
  1661. inb(CMD_PORT);
  1662. inb(CMD_PORT);
  1663. outb(ACMD_GET_VERSION, CMD_PORT); /*Try to get version info */
  1664. aztTimeOutCount = 0;
  1665. do {
  1666. aztIndatum = inb(STATUS_PORT);
  1667. aztTimeOutCount++;
  1668. if (aztTimeOutCount >= AZT_FAST_TIMEOUT)
  1669. break;
  1670. } while (aztIndatum & AFL_STATUS);
  1671. if (inb(DATA_PORT) != AFL_OP_OK) { /*OP_OK? If not, reset and try again */
  1672. #ifndef MODULE
  1673. if (azt_cont != 0x79) {
  1674. printk
  1675.     ("aztcd: no AZTECH CD-ROM drive found-Try boot parameter aztcd=<BaseAddress>,0x79n");
  1676. return -EIO;
  1677. }
  1678. #else
  1679. if (0) {
  1680. }
  1681. #endif
  1682. else {
  1683. printk
  1684.     ("aztcd: drive reset - please waitn");
  1685. for (count = 0; count < 50; count++) {
  1686. inb(STATUS_PORT); /*removing all data from earlier tries */
  1687. inb(DATA_PORT);
  1688. }
  1689. outb(POLLED, MODE_PORT);
  1690. inb(CMD_PORT);
  1691. inb(CMD_PORT);
  1692. getAztStatus(); /*trap errors */
  1693. outb(ACMD_SOFT_RESET, CMD_PORT); /*send reset */
  1694. STEN_LOW;
  1695. if (inb(DATA_PORT) != AFL_OP_OK) { /*OP_OK? */
  1696. printk
  1697.     ("aztcd: no AZTECH CD-ROM drive foundn");
  1698. return -EIO;
  1699. }
  1700. for (count = 0; count < AZT_TIMEOUT;
  1701.      count++)
  1702. barrier(); /* Stop gcc 2.96 being smart */
  1703. if ((st = getAztStatus()) == -1) {
  1704. printk
  1705.     ("aztcd: Drive Status Error Status=%xn",
  1706.      st);
  1707. return -EIO;
  1708. }
  1709. #ifdef AZT_DEBUG
  1710. printk("aztcd: Status = %xn", st);
  1711. #endif
  1712. outb(POLLED, MODE_PORT);
  1713. inb(CMD_PORT);
  1714. inb(CMD_PORT);
  1715. outb(ACMD_GET_VERSION, CMD_PORT); /*GetVersion */
  1716. STEN_LOW;
  1717. OP_OK;
  1718. }
  1719. }
  1720. }
  1721. azt_init_end = 1;
  1722. STEN_LOW;
  1723. result[0] = inb(DATA_PORT); /*reading in a null byte??? */
  1724. for (count = 1; count < 50; count++) { /*Reading version string */
  1725. aztTimeOutCount = 0; /*here we must implement STEN_LOW differently */
  1726. do {
  1727. aztIndatum = inb(STATUS_PORT); /*because we want to exit by timeout */
  1728. aztTimeOutCount++;
  1729. if (aztTimeOutCount >= AZT_FAST_TIMEOUT)
  1730. break;
  1731. } while (aztIndatum & AFL_STATUS);
  1732. if (aztTimeOutCount >= AZT_FAST_TIMEOUT)
  1733. break; /*all chars read? */
  1734. result[count] = inb(DATA_PORT);
  1735. }
  1736. if (count > 30)
  1737. max_count = 30; /*print max.30 chars of the version string */
  1738. else
  1739. max_count = count;
  1740. printk(KERN_INFO "aztcd: FirmwareVersion=");
  1741. for (count = 1; count < max_count; count++)
  1742. printk("%c", result[count]);
  1743. printk("<<>> ");
  1744. if ((result[1] == 'A') && (result[2] == 'Z') && (result[3] == 'T')) {
  1745. printk("AZTECH drive detectedn");
  1746. /*AZTECH*/}
  1747. else if ((result[2] == 'C') && (result[3] == 'D')
  1748.  && (result[4] == 'D')) {
  1749. printk("ORCHID or WEARNES drive detectedn"); /*ORCHID or WEARNES */
  1750. } else if ((result[1] == 0x03) && (result[2] == '5')) {
  1751. printk("TXC or CyCDROM drive detectedn"); /*Conrad TXC, CyCDROM */
  1752. } else { /*OTHERS or none */
  1753. printk("nunknown drive or firmware version detectedn");
  1754. printk
  1755.     ("aztcd may not run stable, if you want to try anyhow,n");
  1756. printk("boot with: aztcd=<BaseAddress>,0x79n");
  1757. if ((azt_cont != 0x79)) {
  1758. printk("aztcd: FirmwareVersion=");
  1759. for (count = 1; count < 5; count++)
  1760. printk("%c", result[count]);
  1761. printk("<<>> ");
  1762. printk("Abortedn");
  1763. return -EIO;
  1764. }
  1765. }
  1766. devfs_register(NULL, "aztcd", DEVFS_FL_DEFAULT, MAJOR_NR, 0,
  1767.        S_IFBLK | S_IRUGO | S_IWUGO, &azt_fops, NULL);
  1768. if (devfs_register_blkdev(MAJOR_NR, "aztcd", &azt_fops) != 0) {
  1769. printk("aztcd: Unable to get major %d for Aztech CD-ROMn",
  1770.        MAJOR_NR);
  1771. return -EIO;
  1772. }
  1773. blk_init_queue(BLK_DEFAULT_QUEUE(MAJOR_NR), DEVICE_REQUEST);
  1774. blksize_size[MAJOR_NR] = aztcd_blocksizes;
  1775. read_ahead[MAJOR_NR] = 4;
  1776. register_disk(NULL, MKDEV(MAJOR_NR, 0), 1, &azt_fops, 0);
  1777. if ((azt_port == 0x1f0) || (azt_port == 0x170))
  1778. request_region(azt_port, 8, "aztcd"); /*IDE-interface */
  1779. else
  1780. request_region(azt_port, 4, "aztcd"); /*proprietary interface */
  1781. azt_invalidate_buffers();
  1782. aztPresent = 1;
  1783. aztCloseDoor();
  1784. return (0);
  1785. }
  1786. void __exit aztcd_exit(void)
  1787. {
  1788. devfs_unregister(devfs_find_handle
  1789.  (NULL, "aztcd", 0, 0, DEVFS_SPECIAL_BLK, 0));
  1790. if ((devfs_unregister_blkdev(MAJOR_NR, "aztcd") == -EINVAL)) {
  1791. printk("What's that: can't unregister aztcdn");
  1792. return;
  1793. }
  1794. blk_cleanup_queue(BLK_DEFAULT_QUEUE(MAJOR_NR));
  1795. if ((azt_port == 0x1f0) || (azt_port == 0x170)) {
  1796. SWITCH_IDE_MASTER;
  1797. release_region(azt_port, 8); /*IDE-interface */
  1798. } else
  1799. release_region(azt_port, 4); /*proprietary interface */
  1800. printk(KERN_INFO "aztcd module released.n");
  1801. }
  1802. #ifdef MODULE
  1803. module_init(aztcd_init);
  1804. #endif
  1805. module_exit(aztcd_exit);
  1806. /*##########################################################################
  1807.   Aztcd State Machine: Controls Drive Operating State
  1808.   ##########################################################################
  1809. */
  1810. static void azt_poll(void)
  1811. {
  1812. int st = 0;
  1813. int loop_ctl = 1;
  1814. int skip = 0;
  1815. if (azt_error) {
  1816. if (aztSendCmd(ACMD_GET_ERROR))
  1817. RETURN("azt_poll 1");
  1818. STEN_LOW;
  1819. azt_error = inb(DATA_PORT) & 0xFF;
  1820. printk("aztcd: I/O error 0x%02xn", azt_error);
  1821. azt_invalidate_buffers();
  1822. #ifdef WARN_IF_READ_FAILURE
  1823. if (AztTries == 5)
  1824. printk
  1825.     ("aztcd: Read of Block %d Failed - Maybe Audio Disk?n",
  1826.      azt_next_bn);
  1827. #endif
  1828. if (!AztTries--) {
  1829. printk
  1830.     ("aztcd: Read of Block %d Failed, Maybe Audio Disk? Giving upn",
  1831.      azt_next_bn);
  1832. if (azt_transfer_is_active) {
  1833. AztTries = 0;
  1834. loop_ctl = 0;
  1835. }
  1836. if (CURRENT_VALID)
  1837. end_request(0);
  1838. AztTries = 5;
  1839. }
  1840. azt_error = 0;
  1841. azt_state = AZT_S_STOP;
  1842. }
  1843. while (loop_ctl) {
  1844. loop_ctl = 0; /* each case must flip this back to 1 if we want
  1845.    to come back up here */
  1846. switch (azt_state) {
  1847. case AZT_S_IDLE:
  1848. #ifdef AZT_TEST3
  1849. if (azt_state != azt_state_old) {
  1850. azt_state_old = azt_state;
  1851. printk("AZT_S_IDLEn");
  1852. }
  1853. #endif
  1854. return;
  1855. case AZT_S_START:
  1856. #ifdef AZT_TEST3
  1857. if (azt_state != azt_state_old) {
  1858. azt_state_old = azt_state;
  1859. printk("AZT_S_STARTn");
  1860. }
  1861. #endif
  1862. if (aztSendCmd(ACMD_GET_STATUS))
  1863. RETURN("azt_poll 2"); /*result will be checked by aztStatus() */
  1864. azt_state =
  1865.     azt_mode == 1 ? AZT_S_READ : AZT_S_MODE;
  1866. AztTimeout = 3000;
  1867. break;
  1868. case AZT_S_MODE:
  1869. #ifdef AZT_TEST3
  1870. if (azt_state != azt_state_old) {
  1871. azt_state_old = azt_state;
  1872. printk("AZT_S_MODEn");
  1873. }
  1874. #endif
  1875. if (!skip) {
  1876. if ((st = aztStatus()) != -1) {
  1877. if ((st & AST_DSK_CHG)
  1878.     || (st & AST_NOT_READY)) {
  1879. aztDiskChanged = 1;
  1880. aztTocUpToDate = 0;
  1881. azt_invalidate_buffers();
  1882. end_request(0);
  1883. printk
  1884.     ("aztcd: Disk Changed or Not Ready 1 - Unmount Disk!n");
  1885. }
  1886. } else
  1887. break;
  1888. }
  1889. skip = 0;
  1890. if ((st & AST_DOOR_OPEN) || (st & AST_NOT_READY)) {
  1891. aztDiskChanged = 1;
  1892. aztTocUpToDate = 0;
  1893. printk
  1894.     ("aztcd: Disk Changed or Not Ready 2 - Unmount Disk!n");
  1895. end_request(0);
  1896. printk((st & AST_DOOR_OPEN) ?
  1897.        "aztcd: door openn" :
  1898.        "aztcd: disk removedn");
  1899. if (azt_transfer_is_active) {
  1900. azt_state = AZT_S_START;
  1901. loop_ctl = 1; /* goto immediately */
  1902. break;
  1903. }
  1904. azt_state = AZT_S_IDLE;
  1905. while (CURRENT_VALID)
  1906. end_request(0);
  1907. return;
  1908. }
  1909. /*   if (aztSendCmd(ACMD_SET_MODE)) RETURN("azt_poll 3");
  1910.   outb(0x01, DATA_PORT);          
  1911.   PA_OK;
  1912.   STEN_LOW;
  1913. */
  1914. if (aztSendCmd(ACMD_GET_STATUS))
  1915. RETURN("azt_poll 4");
  1916. STEN_LOW;
  1917. azt_mode = 1;
  1918. azt_state = AZT_S_READ;
  1919. AztTimeout = 3000;
  1920. break;
  1921. case AZT_S_READ:
  1922. #ifdef AZT_TEST3
  1923. if (azt_state != azt_state_old) {
  1924. azt_state_old = azt_state;
  1925. printk("AZT_S_READn");
  1926. }
  1927. #endif
  1928. if (!skip) {
  1929. if ((st = aztStatus()) != -1) {
  1930. if ((st & AST_DSK_CHG)
  1931.     || (st & AST_NOT_READY)) {
  1932. aztDiskChanged = 1;
  1933. aztTocUpToDate = 0;
  1934. azt_invalidate_buffers();
  1935. printk
  1936.     ("aztcd: Disk Changed or Not Ready 3 - Unmount Disk!n");
  1937. end_request(0);
  1938. }
  1939. } else
  1940. break;
  1941. }
  1942. skip = 0;
  1943. if ((st & AST_DOOR_OPEN) || (st & AST_NOT_READY)) {
  1944. aztDiskChanged = 1;
  1945. aztTocUpToDate = 0;
  1946. printk((st & AST_DOOR_OPEN) ?
  1947.        "aztcd: door openn" :
  1948.        "aztcd: disk removedn");
  1949. if (azt_transfer_is_active) {
  1950. azt_state = AZT_S_START;
  1951. loop_ctl = 1;
  1952. break;
  1953. }
  1954. azt_state = AZT_S_IDLE;
  1955. while (CURRENT_VALID)
  1956. end_request(0);
  1957. return;
  1958. }
  1959. if (CURRENT_VALID) {
  1960. struct azt_Play_msf msf;
  1961. int i;
  1962. azt_next_bn = CURRENT->sector / 4;
  1963. azt_hsg2msf(azt_next_bn, &msf.start);
  1964. i = 0;
  1965. /* find out in which track we are */
  1966. while (azt_msf2hsg(&msf.start) >
  1967.        azt_msf2hsg(&Toc[++i].trackTime)) {
  1968. };
  1969. if (azt_msf2hsg(&msf.start) <
  1970.     azt_msf2hsg(&Toc[i].trackTime) -
  1971.     AZT_BUF_SIZ) {
  1972. azt_read_count = AZT_BUF_SIZ; /*fast, because we read ahead */
  1973. /*azt_read_count=CURRENT->nr_sectors;    slow, no read ahead */
  1974. } else /* don't read beyond end of track */
  1975. #if AZT_MULTISESSION
  1976. {
  1977. azt_read_count =
  1978.     (azt_msf2hsg(&Toc[i].trackTime)
  1979.      / 4) * 4 -
  1980.     azt_msf2hsg(&msf.start);
  1981. if (azt_read_count < 0)
  1982. azt_read_count = 0;
  1983. if (azt_read_count > AZT_BUF_SIZ)
  1984. azt_read_count =
  1985.     AZT_BUF_SIZ;
  1986. printk
  1987.     ("aztcd: warning - trying to read beyond end of trackn");
  1988. /*               printk("%i %i %li %lin",i,azt_read_count,azt_msf2hsg(&msf.start),azt_msf2hsg(&Toc[i].trackTime));
  1989. */ }
  1990. #else
  1991. {
  1992. azt_read_count = AZT_BUF_SIZ;
  1993. }
  1994. #endif
  1995. msf.end.min = 0;
  1996. msf.end.sec = 0;
  1997. msf.end.frame = azt_read_count; /*Mitsumi here reads 0xffffff sectors */
  1998. #ifdef AZT_TEST3
  1999. printk
  2000.     ("---reading msf-address %x:%x:%x  %x:%x:%xn",
  2001.      msf.start.min, msf.start.sec,
  2002.      msf.start.frame, msf.end.min,
  2003.      msf.end.sec, msf.end.frame);
  2004. printk
  2005.     ("azt_next_bn:%x  azt_buf_in:%x azt_buf_out:%x  azt_buf_bn:%xn",
  2006.      azt_next_bn, azt_buf_in, azt_buf_out,
  2007.      azt_buf_bn[azt_buf_in]);
  2008. #endif
  2009. if (azt_read_mode == AZT_MODE_2) {
  2010. sendAztCmd(ACMD_PLAY_READ_RAW, &msf); /*XA disks in raw mode */
  2011. } else {
  2012. sendAztCmd(ACMD_PLAY_READ, &msf); /*others in cooked mode */
  2013. }
  2014. azt_state = AZT_S_DATA;
  2015. AztTimeout = READ_TIMEOUT;
  2016. } else {
  2017. azt_state = AZT_S_STOP;
  2018. loop_ctl = 1;
  2019. break;
  2020. }
  2021. break;
  2022. case AZT_S_DATA:
  2023. #ifdef AZT_TEST3
  2024. if (azt_state != azt_state_old) {
  2025. azt_state_old = azt_state;
  2026. printk("AZT_S_DATAn");
  2027. }
  2028. #endif
  2029. st = inb(STATUS_PORT) & AFL_STATUSorDATA;
  2030. switch (st) {
  2031. case AFL_DATA:
  2032. #ifdef AZT_TEST3
  2033. if (st != azt_st_old) {
  2034. azt_st_old = st;
  2035. printk("---AFL_DATA st:%xn", st);
  2036. }
  2037. #endif
  2038. if (!AztTries--) {
  2039. printk
  2040.     ("aztcd: Read of Block %d Failed, Maybe Audio Disk ? Giving upn",
  2041.      azt_next_bn);
  2042. if (azt_transfer_is_active) {
  2043. AztTries = 0;
  2044. break;
  2045. }
  2046. if (CURRENT_VALID)
  2047. end_request(0);
  2048. AztTries = 5;
  2049. }
  2050. azt_state = AZT_S_START;
  2051. AztTimeout = READ_TIMEOUT;
  2052. loop_ctl = 1;
  2053. break;
  2054. case AFL_STATUSorDATA:
  2055. #ifdef AZT_TEST3
  2056. if (st != azt_st_old) {
  2057. azt_st_old = st;
  2058. printk
  2059.     ("---AFL_STATUSorDATA st:%xn",
  2060.      st);
  2061. }
  2062. #endif
  2063. break;
  2064. default:
  2065. #ifdef AZT_TEST3
  2066. if (st != azt_st_old) {
  2067. azt_st_old = st;
  2068. printk("---default: st:%xn", st);
  2069. }
  2070. #endif
  2071. AztTries = 5;
  2072. if (!CURRENT_VALID
  2073.     && azt_buf_in == azt_buf_out) {
  2074. azt_state = AZT_S_STOP;
  2075. loop_ctl = 1;
  2076. break;
  2077. }
  2078. if (azt_read_count <= 0)
  2079. printk
  2080.     ("aztcd: warning - try to read 0 framesn");
  2081. while (azt_read_count) { /*??? fast read ahead loop */
  2082. azt_buf_bn[azt_buf_in] = -1;
  2083. DTEN_LOW; /*??? unsolved problem, very
  2084.    seldom we get timeouts
  2085.    here, don't now the real
  2086.    reason. With my drive this
  2087.    sometimes also happens with
  2088.    Aztech's original driver under
  2089.    DOS. Is it a hardware bug? 
  2090.    I tried to recover from such
  2091.    situations here. Zimmermann */
  2092. if (aztTimeOutCount >= AZT_TIMEOUT) {
  2093. printk
  2094.     ("read_count:%d CURRENT->nr_sectors:%ld azt_buf_in:%dn",
  2095.      azt_read_count,
  2096.      CURRENT->nr_sectors,
  2097.      azt_buf_in);
  2098. printk
  2099.     ("azt_transfer_is_active:%xn",
  2100.      azt_transfer_is_active);
  2101. azt_read_count = 0;
  2102. azt_state = AZT_S_STOP;
  2103. loop_ctl = 1;
  2104. end_request(1); /*should we have here (1) or (0)? */
  2105. } else {
  2106. if (azt_read_mode ==
  2107.     AZT_MODE_2) {
  2108. insb(DATA_PORT,
  2109.      azt_buf +
  2110.      CD_FRAMESIZE_RAW
  2111.      * azt_buf_in,
  2112.      CD_FRAMESIZE_RAW);
  2113. } else {
  2114. insb(DATA_PORT,
  2115.      azt_buf +
  2116.      CD_FRAMESIZE *
  2117.      azt_buf_in,
  2118.      CD_FRAMESIZE);
  2119. }
  2120. azt_read_count--;
  2121. #ifdef AZT_TEST3
  2122. printk
  2123.     ("AZT_S_DATA; ---I've read data- read_count: %dn",
  2124.      azt_read_count);
  2125. printk
  2126.     ("azt_next_bn:%d  azt_buf_in:%d azt_buf_out:%d  azt_buf_bn:%dn",
  2127.      azt_next_bn,
  2128.      azt_buf_in,
  2129.      azt_buf_out,
  2130.      azt_buf_bn
  2131.      [azt_buf_in]);
  2132. #endif
  2133. azt_buf_bn[azt_buf_in] =
  2134.     azt_next_bn++;
  2135. if (azt_buf_out == -1)
  2136. azt_buf_out =
  2137.     azt_buf_in;
  2138. azt_buf_in =
  2139.     azt_buf_in + 1 ==
  2140.     AZT_BUF_SIZ ? 0 :
  2141.     azt_buf_in + 1;
  2142. }
  2143. }
  2144. if (!azt_transfer_is_active) {
  2145. while (CURRENT_VALID) {
  2146. azt_transfer();
  2147. if (CURRENT->nr_sectors ==
  2148.     0)
  2149. end_request(1);
  2150. else
  2151. break;
  2152. }
  2153. }
  2154. if (CURRENT_VALID
  2155.     && (CURRENT->sector / 4 < azt_next_bn
  2156. || CURRENT->sector / 4 >
  2157. azt_next_bn + AZT_BUF_SIZ)) {
  2158. azt_state = AZT_S_STOP;
  2159. loop_ctl = 1;
  2160. break;
  2161. }
  2162. AztTimeout = READ_TIMEOUT;
  2163. if (azt_read_count == 0) {
  2164. azt_state = AZT_S_STOP;
  2165. loop_ctl = 1;
  2166. break;
  2167. }
  2168. break;
  2169. }
  2170. break;
  2171. case AZT_S_STOP:
  2172. #ifdef AZT_TEST3
  2173. if (azt_state != azt_state_old) {
  2174. azt_state_old = azt_state;
  2175. printk("AZT_S_STOPn");
  2176. }
  2177. #endif
  2178. if (azt_read_count != 0)
  2179. printk("aztcd: discard data=%x framesn",
  2180.        azt_read_count);
  2181. while (azt_read_count != 0) {
  2182. int i;
  2183. if (!(inb(STATUS_PORT) & AFL_DATA)) {
  2184. if (azt_read_mode == AZT_MODE_2)
  2185. for (i = 0;
  2186.      i < CD_FRAMESIZE_RAW;
  2187.      i++)
  2188. inb(DATA_PORT);
  2189. else
  2190. for (i = 0;
  2191.      i < CD_FRAMESIZE; i++)
  2192. inb(DATA_PORT);
  2193. }
  2194. azt_read_count--;
  2195. }
  2196. if (aztSendCmd(ACMD_GET_STATUS))
  2197. RETURN("azt_poll 5");
  2198. azt_state = AZT_S_STOPPING;
  2199. AztTimeout = 1000;
  2200. break;
  2201. case AZT_S_STOPPING:
  2202. #ifdef AZT_TEST3
  2203. if (azt_state != azt_state_old) {
  2204. azt_state_old = azt_state;
  2205. printk("AZT_S_STOPPINGn");
  2206. }
  2207. #endif
  2208. if ((st = aztStatus()) == -1 && AztTimeout)
  2209. break;
  2210. if ((st != -1)
  2211.     && ((st & AST_DSK_CHG)
  2212. || (st & AST_NOT_READY))) {
  2213. aztDiskChanged = 1;
  2214. aztTocUpToDate = 0;
  2215. azt_invalidate_buffers();
  2216. printk
  2217.     ("aztcd: Disk Changed or Not Ready 4 - Unmount Disk!n");
  2218. end_request(0);
  2219. }
  2220. #ifdef AZT_TEST3
  2221. printk("CURRENT_VALID %d azt_mode %dn",
  2222.        CURRENT_VALID, azt_mode);
  2223. #endif
  2224. if (CURRENT_VALID) {
  2225. if (st != -1) {
  2226. if (azt_mode == 1) {
  2227. azt_state = AZT_S_READ;
  2228. loop_ctl = 1;
  2229. skip = 1;
  2230. break;
  2231. } else {
  2232. azt_state = AZT_S_MODE;
  2233. loop_ctl = 1;
  2234. skip = 1;
  2235. break;
  2236. }
  2237. } else {
  2238. azt_state = AZT_S_START;
  2239. AztTimeout = 1;
  2240. }
  2241. } else {
  2242. azt_state = AZT_S_IDLE;
  2243. return;
  2244. }
  2245. break;
  2246. default:
  2247. printk("aztcd: invalid state %dn", azt_state);
  2248. return;
  2249. } /* case */
  2250. } /* while */
  2251. if (!AztTimeout--) {
  2252. printk("aztcd: timeout in state %dn", azt_state);
  2253. azt_state = AZT_S_STOP;
  2254. if (aztSendCmd(ACMD_STOP))
  2255. RETURN("azt_poll 6");
  2256. STEN_LOW_WAIT;
  2257. };
  2258. SET_TIMER(azt_poll, HZ / 100);
  2259. }
  2260. /*###########################################################################
  2261.  * Miscellaneous support functions
  2262.   ###########################################################################
  2263. */
  2264. static void azt_hsg2msf(long hsg, struct msf *msf)
  2265. {
  2266. hsg += 150;
  2267. msf->min = hsg / 4500;
  2268. hsg %= 4500;
  2269. msf->sec = hsg / 75;
  2270. msf->frame = hsg % 75;
  2271. #ifdef AZT_DEBUG
  2272. if (msf->min >= 70)
  2273. printk("aztcd: Error hsg2msf address Minutesn");
  2274. if (msf->sec >= 60)
  2275. printk("aztcd: Error hsg2msf address Secondsn");
  2276. if (msf->frame >= 75)
  2277. printk("aztcd: Error hsg2msf address Framesn");
  2278. #endif
  2279. azt_bin2bcd(&msf->min); /* convert to BCD */
  2280. azt_bin2bcd(&msf->sec);
  2281. azt_bin2bcd(&msf->frame);
  2282. }
  2283. static long azt_msf2hsg(struct msf *mp)
  2284. {
  2285. return azt_bcd2bin(mp->frame) + azt_bcd2bin(mp->sec) * 75
  2286.     + azt_bcd2bin(mp->min) * 4500 - CD_MSF_OFFSET;
  2287. }
  2288. static void azt_bin2bcd(unsigned char *p)
  2289. {
  2290. int u, t;
  2291. u = *p % 10;
  2292. t = *p / 10;
  2293. *p = u | (t << 4);
  2294. }
  2295. static int azt_bcd2bin(unsigned char bcd)
  2296. {
  2297. return (bcd >> 4) * 10 + (bcd & 0xF);
  2298. }
  2299. MODULE_LICENSE("GPL");
  2300. EXPORT_NO_SYMBOLS;