acsi.c
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:45k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /*
  2.  * acsi.c -- Device driver for Atari ACSI hard disks
  3.  *
  4.  * Copyright 1994 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
  5.  *
  6.  * Some parts are based on hd.c by Linus Torvalds
  7.  *
  8.  * This file is subject to the terms and conditions of the GNU General Public
  9.  * License.  See the file COPYING in the main directory of this archive for
  10.  * more details.
  11.  *
  12.  */
  13. /*
  14.  * Still to in this file:
  15.  *  - If a command ends with an error status (!= 0), the following
  16.  *    REQUEST SENSE commands (4 to fill the ST-DMA FIFO) are done by
  17.  *    polling the _IRQ signal (not interrupt-driven). This should be
  18.  *    avoided in future because it takes up a non-neglectible time in
  19.  *    the interrupt service routine while interrupts are disabled.
  20.  *    Maybe a timer interrupt will get lost :-(
  21.  */
  22. /*
  23.  * General notes:
  24.  *
  25.  *  - All ACSI devices (disks, CD-ROMs, ...) use major number 28.
  26.  *    Minors are organized like it is with SCSI: The upper 4 bits
  27.  *    identify the device, the lower 4 bits the partition.
  28.  *    The device numbers (the upper 4 bits) are given in the same
  29.  *    order as the devices are found on the bus.
  30.  *  - Up to 8 LUNs are supported for each target (if CONFIG_ACSI_MULTI_LUN
  31.  *    is defined), but only a total of 16 devices (due to minor
  32.  *    numbers...). Note that Atari allows only a maximum of 4 targets
  33.  *    (i.e. controllers, not devices) on the ACSI bus!
  34.  *  - A optimizing scheme similar to SCSI scatter-gather is implemented.
  35.  *  - Removable media are supported. After a medium change to device
  36.  *    is reinitialized (partition check etc.). Also, if the device
  37.  *    knows the PREVENT/ALLOW MEDIUM REMOVAL command, the door should
  38.  *    be locked and unlocked when mounting the first or unmounting the
  39.  *    last filesystem on the device. The code is untested, because I
  40.  *    don't have a removable hard disk.
  41.  *
  42.  */
  43. #include <linux/config.h>
  44. #include <linux/module.h>
  45. #include <linux/errno.h>
  46. #include <linux/signal.h>
  47. #include <linux/sched.h>
  48. #include <linux/timer.h>
  49. #include <linux/fs.h>
  50. #include <linux/kernel.h>
  51. #include <linux/genhd.h>
  52. #include <linux/delay.h>
  53. #include <linux/mm.h>
  54. #include <linux/major.h>
  55. #include <linux/slab.h>
  56. #include <linux/interrupt.h>
  57. #include <scsi/scsi.h> /* for SCSI_IOCTL_GET_IDLUN */
  58. typedef void Scsi_Device; /* hack to avoid including scsi.h */
  59. #include <scsi/scsi_ioctl.h>
  60. #include <linux/hdreg.h> /* for HDIO_GETGEO */
  61. #include <linux/blkpg.h>
  62. #include <linux/buffer_head.h>
  63. #include <linux/blkdev.h>
  64. #include <asm/setup.h>
  65. #include <asm/pgtable.h>
  66. #include <asm/system.h>
  67. #include <asm/uaccess.h>
  68. #include <asm/atarihw.h>
  69. #include <asm/atariints.h>
  70. #include <asm/atari_acsi.h>
  71. #include <asm/atari_stdma.h>
  72. #include <asm/atari_stram.h>
  73. static void (*do_acsi)(void) = NULL;
  74. static struct request_queue *acsi_queue;
  75. #define QUEUE (acsi_queue)
  76. #define CURRENT elv_next_request(acsi_queue)
  77. #define DEBUG
  78. #undef DEBUG_DETECT
  79. #undef NO_WRITE
  80. #define MAX_ERRORS      8 /* Max read/write errors/sector */
  81. #define MAX_LUN 8 /* Max LUNs per target */
  82. #define MAX_DEV     16
  83. #define ACSI_BUFFER_SIZE (16*1024) /* "normal" ACSI buffer size */
  84. #define ACSI_BUFFER_MINSIZE (2048)    /* min. buf size if ext. DMA */
  85. #define ACSI_BUFFER_SIZE_ORDER   2   /* order size for above */
  86. #define ACSI_BUFFER_MINSIZE_ORDER 0       /* order size for above */
  87. #define ACSI_BUFFER_SECTORS (ACSI_BUFFER_SIZE/512)
  88. #define ACSI_BUFFER_ORDER 
  89. (ATARIHW_PRESENT(EXTD_DMA) ? 
  90.  ACSI_BUFFER_MINSIZE_ORDER : 
  91.  ACSI_BUFFER_SIZE_ORDER)
  92. #define ACSI_TIMEOUT (4*HZ)
  93. /* minimum delay between two commands */
  94. #define COMMAND_DELAY 500
  95. typedef enum {
  96. NONE, HARDDISK, CDROM
  97. } ACSI_TYPE;
  98. struct acsi_info_struct {
  99. ACSI_TYPE type; /* type of device */
  100. unsigned target; /* target number */
  101. unsigned lun; /* LUN in target controller */
  102. unsigned removable : 1; /* Flag for removable media */
  103. unsigned read_only : 1; /* Flag for read only devices */
  104. unsigned old_atari_disk : 1; /* Is an old Atari disk       */
  105. unsigned changed : 1; /* Medium has been changed */
  106. unsigned long  size; /* #blocks */
  107. int access_count;
  108. } acsi_info[MAX_DEV];
  109. /*
  110.  * SENSE KEYS
  111.  */
  112. #define NO_SENSE 0x00
  113. #define RECOVERED_ERROR  0x01
  114. #define NOT_READY 0x02
  115. #define MEDIUM_ERROR 0x03
  116. #define HARDWARE_ERROR 0x04
  117. #define ILLEGAL_REQUEST  0x05
  118. #define UNIT_ATTENTION 0x06
  119. #define DATA_PROTECT 0x07
  120. #define BLANK_CHECK 0x08
  121. #define COPY_ABORTED 0x0a
  122. #define ABORTED_COMMAND  0x0b
  123. #define VOLUME_OVERFLOW  0x0d
  124. #define MISCOMPARE 0x0e
  125. /*
  126.  * DEVICE TYPES
  127.  */
  128. #define TYPE_DISK 0x00
  129. #define TYPE_TAPE 0x01
  130. #define TYPE_WORM 0x04
  131. #define TYPE_ROM 0x05
  132. #define TYPE_MOD 0x07
  133. #define TYPE_NO_LUN 0x7f
  134. /* The data returned by MODE SENSE differ between the old Atari
  135.  * hard disks and SCSI disks connected to ACSI. In the following, both
  136.  * formats are defined and some macros to operate on them potably.
  137.  */
  138. typedef struct {
  139. unsigned long dummy[2];
  140. unsigned long sector_size;
  141. unsigned char format_code;
  142. #define ATARI_SENSE_FORMAT_FIX 1
  143. #define ATARI_SENSE_FORMAT_CHNG 2
  144. unsigned char cylinders_h;
  145. unsigned char cylinders_l;
  146. unsigned char heads;
  147. unsigned char reduced_h;
  148. unsigned char reduced_l;
  149. unsigned char precomp_h;
  150. unsigned char precomp_l;
  151. unsigned char landing_zone;
  152. unsigned char steprate;
  153. unsigned char type;
  154. #define ATARI_SENSE_TYPE_FIXCHNG_MASK 4
  155. #define ATARI_SENSE_TYPE_SOFTHARD_MASK 8
  156. #define ATARI_SENSE_TYPE_FIX 4
  157. #define ATARI_SENSE_TYPE_CHNG 0
  158. #define ATARI_SENSE_TYPE_SOFT 0
  159. #define ATARI_SENSE_TYPE_HARD 8
  160. unsigned char sectors;
  161. } ATARI_SENSE_DATA;
  162. #define ATARI_CAPACITY(sd) 
  163. (((int)((sd).cylinders_h<<8)|(sd).cylinders_l) * 
  164.  (sd).heads * (sd).sectors)
  165. typedef struct {
  166. unsigned char   dummy1;
  167. unsigned char   medium_type;
  168. unsigned char   dummy2;
  169. unsigned char   descriptor_size;
  170. unsigned long   block_count;
  171. unsigned long   sector_size;
  172. /* Page 0 data */
  173. unsigned char page_code;
  174. unsigned char page_size;
  175. unsigned char page_flags;
  176. unsigned char qualifier;
  177. } SCSI_SENSE_DATA;
  178. #define SCSI_CAPACITY(sd)  ((sd).block_count & 0xffffff)
  179. typedef union {
  180. ATARI_SENSE_DATA atari;
  181. SCSI_SENSE_DATA scsi;
  182. } SENSE_DATA;
  183. #define SENSE_TYPE_UNKNOWN 0
  184. #define SENSE_TYPE_ATARI 1
  185. #define SENSE_TYPE_SCSI 2
  186. #define SENSE_TYPE(sd)
  187. (((sd).atari.dummy[0] == 8 &&
  188.   ((sd).atari.format_code == 1 ||
  189.    (sd).atari.format_code == 2)) ? SENSE_TYPE_ATARI :
  190.  ((sd).scsi.dummy1 >= 11) ? SENSE_TYPE_SCSI :
  191.  SENSE_TYPE_UNKNOWN)
  192.  
  193. #define CAPACITY(sd)
  194. (SENSE_TYPE(sd) == SENSE_TYPE_ATARI ?
  195.  ATARI_CAPACITY((sd).atari) :
  196.  SCSI_CAPACITY((sd).scsi))
  197. #define SECTOR_SIZE(sd)
  198. (SENSE_TYPE(sd) == SENSE_TYPE_ATARI ?
  199.  (sd).atari.sector_size :
  200.  (sd).scsi.sector_size & 0xffffff)
  201. /* Default size if capacity cannot be determined (1 GByte) */
  202. #define DEFAULT_SIZE 0x1fffff
  203. #define CARTRCH_STAT(aip,buf)
  204. (aip->old_atari_disk ?
  205.  (((buf)[0] & 0x7f) == 0x28) :
  206.  ((((buf)[0] & 0x70) == 0x70) ?
  207.   (((buf)[2] & 0x0f) == 0x06) :
  208.   (((buf)[0] & 0x0f) == 0x06)))
  209. /* These two are also exported to other drivers that work on the ACSI bus and
  210.  * need an ST-RAM buffer. */
  211. char  *acsi_buffer;
  212. unsigned long  phys_acsi_buffer;
  213. static int NDevices;
  214. static int CurrentNReq;
  215. static int CurrentNSect;
  216. static char *CurrentBuffer;
  217. static DEFINE_SPINLOCK(acsi_lock);
  218. #define SET_TIMER() mod_timer(&acsi_timer, jiffies + ACSI_TIMEOUT)
  219. #define CLEAR_TIMER() del_timer(&acsi_timer)
  220. static unsigned long STramMask;
  221. #define STRAM_ADDR(a) (((a) & STramMask) == 0)
  222. /* ACSI commands */
  223. static char tur_cmd[6]        = { 0x00, 0, 0, 0, 0, 0 };
  224. static char modesense_cmd[6]  = { 0x1a, 0, 0, 0, 24, 0 };
  225. static char modeselect_cmd[6] = { 0x15, 0, 0, 0, 12, 0 };
  226. static char inquiry_cmd[6]    = { 0x12, 0, 0, 0,255, 0 };
  227. static char reqsense_cmd[6]   = { 0x03, 0, 0, 0, 4, 0 };
  228. static char read_cmd[6]       = { 0x08, 0, 0, 0, 0, 0 };
  229. static char write_cmd[6]      = { 0x0a, 0, 0, 0, 0, 0 };
  230. static char pa_med_rem_cmd[6] = { 0x1e, 0, 0, 0, 0, 0 };
  231. #define CMDSET_TARG_LUN(cmd,targ,lun)
  232.     do {
  233. cmd[0] = (cmd[0] & ~0xe0) | (targ)<<5;
  234. cmd[1] = (cmd[1] & ~0xe0) | (lun)<<5;
  235. } while(0)
  236. #define CMDSET_BLOCK(cmd,blk)
  237.     do {
  238. unsigned long __blk = (blk);
  239. cmd[3] = __blk; __blk >>= 8;
  240. cmd[2] = __blk; __blk >>= 8;
  241. cmd[1] = (cmd[1] & 0xe0) | (__blk & 0x1f);
  242. } while(0)
  243. #define CMDSET_LEN(cmd,len)
  244. do {
  245. cmd[4] = (len);
  246. } while(0)
  247. /* ACSI errors (from REQUEST SENSE); There are two tables, one for the
  248.  * old Atari disks and one for SCSI on ACSI disks.
  249.  */
  250. struct acsi_error {
  251. unsigned char code;
  252. const char *text;
  253. } atari_acsi_errors[] = {
  254. { 0x00, "No error (??)" },
  255. { 0x01, "No index pulses" },
  256. { 0x02, "Seek not complete" },
  257. { 0x03, "Write fault" },
  258. { 0x04, "Drive not ready" },
  259. { 0x06, "No Track 00 signal" },
  260. { 0x10, "ECC error in ID field" },
  261. { 0x11, "Uncorrectable data error" },
  262. { 0x12, "ID field address mark not found" },
  263. { 0x13, "Data field address mark not found" },
  264. { 0x14, "Record not found" },
  265. { 0x15, "Seek error" },
  266. { 0x18, "Data check in no retry mode" },
  267. { 0x19, "ECC error during verify" },
  268. { 0x1a, "Access to bad block" },
  269. { 0x1c, "Unformatted or bad format" },
  270. { 0x20, "Invalid command" },
  271. { 0x21, "Invalid block address" },
  272. { 0x23, "Volume overflow" },
  273. { 0x24, "Invalid argument" },
  274. { 0x25, "Invalid drive number" },
  275. { 0x26, "Byte zero parity check" },
  276. { 0x28, "Cartride changed" },
  277. { 0x2c, "Error count overflow" },
  278. { 0x30, "Controller selftest failed" }
  279. },
  280. scsi_acsi_errors[] = {
  281. { 0x00, "No error (??)" },
  282. { 0x01, "Recovered error" },
  283. { 0x02, "Drive not ready" },
  284. { 0x03, "Uncorrectable medium error" },
  285. { 0x04, "Hardware error" },
  286. { 0x05, "Illegal request" },
  287. { 0x06, "Unit attention (Reset or cartridge changed)" },
  288. { 0x07, "Data protection" },
  289. { 0x08, "Blank check" },
  290. { 0x0b, "Aborted Command" },
  291. { 0x0d, "Volume overflow" }
  292. };
  293. /***************************** Prototypes *****************************/
  294. static int acsicmd_dma( const char *cmd, char *buffer, int blocks, int
  295.                         rwflag, int enable);
  296. static int acsi_reqsense( char *buffer, int targ, int lun);
  297. static void acsi_print_error(const unsigned char *errblk, struct acsi_info_struct *aip);
  298. static irqreturn_t acsi_interrupt (int irq, void *data, struct pt_regs *fp);
  299. static void unexpected_acsi_interrupt( void );
  300. static void bad_rw_intr( void );
  301. static void read_intr( void );
  302. static void write_intr( void);
  303. static void acsi_times_out( unsigned long dummy );
  304. static void copy_to_acsibuffer( void );
  305. static void copy_from_acsibuffer( void );
  306. static void do_end_requests( void );
  307. static void do_acsi_request( request_queue_t * );
  308. static void redo_acsi_request( void );
  309. static int acsi_ioctl( struct inode *inode, struct file *file, unsigned int
  310.                        cmd, unsigned long arg );
  311. static int acsi_open( struct inode * inode, struct file * filp );
  312. static int acsi_release( struct inode * inode, struct file * file );
  313. static void acsi_prevent_removal(struct acsi_info_struct *aip, int flag );
  314. static int acsi_change_blk_size( int target, int lun);
  315. static int acsi_mode_sense( int target, int lun, SENSE_DATA *sd );
  316. static int acsi_revalidate (struct gendisk *disk);
  317. /************************* End of Prototypes **************************/
  318. DEFINE_TIMER(acsi_timer, acsi_times_out, 0, 0);
  319. #ifdef CONFIG_ATARI_SLM
  320. extern int attach_slm( int target, int lun );
  321. extern int slm_init( void );
  322. #endif
  323. /***********************************************************************
  324.  *
  325.  *   ACSI primitives
  326.  *
  327.  **********************************************************************/
  328. /*
  329.  * The following two functions wait for _IRQ to become Low or High,
  330.  * resp., with a timeout. The 'timeout' parameter is in jiffies
  331.  * (10ms).
  332.  * If the functions are called with timer interrupts on (int level <
  333.  * 6), the timeout is based on the 'jiffies' variable to provide exact
  334.  * timeouts for device probing etc.
  335.  * If interrupts are disabled, the number of tries is based on the
  336.  * 'loops_per_jiffy' variable. A rough estimation is sufficient here...
  337.  */
  338. #define INT_LEVEL
  339. ({ unsigned __sr;
  340. __asm__ __volatile__ ( "movew %/sr,%0" : "=dm" (__sr) );
  341. (__sr >> 8) & 7;
  342. })
  343. int acsi_wait_for_IRQ( unsigned timeout )
  344. {
  345. if (INT_LEVEL < 6) {
  346. unsigned long maxjif = jiffies + timeout;
  347. while (time_before(jiffies, maxjif))
  348. if (!(mfp.par_dt_reg & 0x20)) return( 1 );
  349. }
  350. else {
  351. long tries = loops_per_jiffy / 8 * timeout;
  352. while( --tries >= 0 )
  353. if (!(mfp.par_dt_reg & 0x20)) return( 1 );
  354. }
  355. return( 0 ); /* timeout! */
  356. }
  357. int acsi_wait_for_noIRQ( unsigned timeout )
  358. {
  359. if (INT_LEVEL < 6) {
  360. unsigned long maxjif = jiffies + timeout;
  361. while (time_before(jiffies, maxjif))
  362. if (mfp.par_dt_reg & 0x20) return( 1 );
  363. }
  364. else {
  365. long tries = loops_per_jiffy * timeout / 8;
  366. while( tries-- >= 0 )
  367. if (mfp.par_dt_reg & 0x20) return( 1 );
  368. }
  369. return( 0 ); /* timeout! */
  370. }
  371. static struct timeval start_time;
  372. void
  373. acsi_delay_start(void)
  374. {
  375. do_gettimeofday(&start_time);
  376. }
  377. /* wait from acsi_delay_start to now usec (<1E6) usec */
  378. void
  379. acsi_delay_end(long usec)
  380. {
  381. struct timeval end_time;
  382. long deltau,deltas;
  383. do_gettimeofday(&end_time);
  384. deltau=end_time.tv_usec - start_time.tv_usec;
  385. deltas=end_time.tv_sec - start_time.tv_sec;
  386. if (deltas > 1 || deltas < 0)
  387. return;
  388. if (deltas > 0)
  389. deltau += 1000*1000;
  390. if (deltau >= usec)
  391. return;
  392. udelay(usec-deltau);
  393. }
  394. /* acsicmd_dma() sends an ACSI command and sets up the DMA to transfer
  395.  * 'blocks' blocks of 512 bytes from/to 'buffer'.
  396.  * Because the _IRQ signal is used for handshaking the command bytes,
  397.  * the ACSI interrupt has to be disabled in this function. If the end
  398.  * of the operation should be signalled by a real interrupt, it has to be
  399.  * reenabled afterwards.
  400.  */
  401. static int acsicmd_dma( const char *cmd, char *buffer, int blocks, int rwflag, int enable)
  402. { unsigned long flags, paddr;
  403. int i;
  404. #ifdef NO_WRITE
  405. if (rwflag || *cmd == 0x0a) {
  406. printk( "ACSI: Write commands disabled!n" );
  407. return( 0 );
  408. }
  409. #endif
  410. rwflag = rwflag ? 0x100 : 0;
  411. paddr = virt_to_phys( buffer );
  412. acsi_delay_end(COMMAND_DELAY);
  413. DISABLE_IRQ();
  414. local_irq_save(flags);
  415. /* Low on A1 */
  416. dma_wd.dma_mode_status = 0x88 | rwflag;
  417. MFPDELAY();
  418. /* set DMA address */
  419. dma_wd.dma_lo = (unsigned char)paddr;
  420. paddr >>= 8;
  421. MFPDELAY();
  422. dma_wd.dma_md = (unsigned char)paddr;
  423. paddr >>= 8;
  424. MFPDELAY();
  425. if (ATARIHW_PRESENT(EXTD_DMA))
  426. st_dma_ext_dmahi = (unsigned short)paddr;
  427. else
  428. dma_wd.dma_hi = (unsigned char)paddr;
  429. MFPDELAY();
  430. local_irq_restore(flags);
  431. /* send the command bytes except the last */
  432. for( i = 0; i < 5; ++i ) {
  433. DMA_LONG_WRITE( *cmd++, 0x8a | rwflag );
  434. udelay(20);
  435. if (!acsi_wait_for_IRQ( HZ/2 )) return( 0 ); /* timeout */
  436. }
  437. /* Clear FIFO and switch DMA to correct direction */  
  438. dma_wd.dma_mode_status = 0x92 | (rwflag ^ 0x100);  
  439. MFPDELAY();
  440. dma_wd.dma_mode_status = 0x92 | rwflag;
  441. MFPDELAY();
  442. /* How many sectors for DMA */
  443. dma_wd.fdc_acces_seccount = blocks;
  444. MFPDELAY();
  445. /* send last command byte */
  446. dma_wd.dma_mode_status = 0x8a | rwflag;
  447. MFPDELAY();
  448. DMA_LONG_WRITE( *cmd++, 0x0a | rwflag );
  449. if (enable)
  450. ENABLE_IRQ();
  451. udelay(80);
  452. return( 1 );
  453. }
  454. /*
  455.  * acsicmd_nodma() sends an ACSI command that requires no DMA.
  456.  */
  457. int acsicmd_nodma( const char *cmd, int enable)
  458. { int i;
  459. acsi_delay_end(COMMAND_DELAY);
  460. DISABLE_IRQ();
  461. /* send first command byte */
  462. dma_wd.dma_mode_status = 0x88;
  463. MFPDELAY();
  464. DMA_LONG_WRITE( *cmd++, 0x8a );
  465. udelay(20);
  466. if (!acsi_wait_for_IRQ( HZ/2 )) return( 0 ); /* timeout */
  467. /* send the intermediate command bytes */
  468. for( i = 0; i < 4; ++i ) {
  469. DMA_LONG_WRITE( *cmd++, 0x8a );
  470. udelay(20);
  471. if (!acsi_wait_for_IRQ( HZ/2 )) return( 0 ); /* timeout */
  472. }
  473. /* send last command byte */
  474. DMA_LONG_WRITE( *cmd++, 0x0a );
  475. if (enable)
  476. ENABLE_IRQ();
  477. udelay(80);
  478. return( 1 );
  479. /* Note that the ACSI interrupt is still disabled after this
  480.  * function. If you want to get the IRQ delivered, enable it manually!
  481.  */
  482. }
  483. static int acsi_reqsense( char *buffer, int targ, int lun)
  484. {
  485. CMDSET_TARG_LUN( reqsense_cmd, targ, lun);
  486. if (!acsicmd_dma( reqsense_cmd, buffer, 1, 0, 0 )) return( 0 );
  487. if (!acsi_wait_for_IRQ( 10 )) return( 0 );
  488. acsi_getstatus();
  489. if (!acsicmd_nodma( reqsense_cmd, 0 )) return( 0 );
  490. if (!acsi_wait_for_IRQ( 10 )) return( 0 );
  491. acsi_getstatus();
  492. if (!acsicmd_nodma( reqsense_cmd, 0 )) return( 0 );
  493. if (!acsi_wait_for_IRQ( 10 )) return( 0 );
  494. acsi_getstatus();
  495. if (!acsicmd_nodma( reqsense_cmd, 0 )) return( 0 );
  496. if (!acsi_wait_for_IRQ( 10 )) return( 0 );
  497. acsi_getstatus();
  498. dma_cache_maintenance( virt_to_phys(buffer), 16, 0 );
  499. return( 1 );
  500. }
  501. /*
  502.  * ACSI status phase: get the status byte from the bus
  503.  *
  504.  * I've seen several times that a 0xff status is read, propably due to
  505.  * a timing error. In this case, the procedure is repeated after the
  506.  * next _IRQ edge.
  507.  */
  508. int acsi_getstatus( void )
  509. { int status;
  510. DISABLE_IRQ();
  511. for(;;) {
  512. if (!acsi_wait_for_IRQ( 100 )) {
  513. acsi_delay_start();
  514. return( -1 );
  515. }
  516. dma_wd.dma_mode_status = 0x8a;
  517. MFPDELAY();
  518. status = dma_wd.fdc_acces_seccount;
  519. if (status != 0xff) break;
  520. #ifdef DEBUG
  521. printk("ACSI: skipping 0xff status byten" );
  522. #endif
  523. udelay(40);
  524. acsi_wait_for_noIRQ( 20 );
  525. }
  526. dma_wd.dma_mode_status = 0x80;
  527. udelay(40);
  528. acsi_wait_for_noIRQ( 20 );
  529. acsi_delay_start();
  530. return( status & 0x1f ); /* mask of the device# */
  531. }
  532. #if (defined(CONFIG_ATARI_SLM) || defined(CONFIG_ATARI_SLM_MODULE))
  533. /* Receive data in an extended status phase. Needed by SLM printer. */
  534. int acsi_extstatus( char *buffer, int cnt )
  535. { int status;
  536. DISABLE_IRQ();
  537. udelay(80);
  538. while( cnt-- > 0 ) {
  539. if (!acsi_wait_for_IRQ( 40 )) return( 0 );
  540. dma_wd.dma_mode_status = 0x8a;
  541. MFPDELAY();
  542. status = dma_wd.fdc_acces_seccount;
  543. MFPDELAY();
  544. *buffer++ = status & 0xff;
  545. udelay(40);
  546. }
  547. return( 1 );
  548. }
  549. /* Finish an extended status phase */
  550. void acsi_end_extstatus( void )
  551. {
  552. dma_wd.dma_mode_status = 0x80;
  553. udelay(40);
  554. acsi_wait_for_noIRQ( 20 );
  555. acsi_delay_start();
  556. }
  557. /* Send data in an extended command phase */
  558. int acsi_extcmd( unsigned char *buffer, int cnt )
  559. {
  560. while( cnt-- > 0 ) {
  561. DMA_LONG_WRITE( *buffer++, 0x8a );
  562. udelay(20);
  563. if (!acsi_wait_for_IRQ( HZ/2 )) return( 0 ); /* timeout */
  564. }
  565. return( 1 );
  566. }
  567. #endif
  568. static void acsi_print_error(const unsigned char *errblk, struct acsi_info_struct *aip)
  569. { int atari_err, i, errcode;
  570. struct acsi_error *arr;
  571. atari_err = aip->old_atari_disk;
  572. if (atari_err)
  573. errcode = errblk[0] & 0x7f;
  574. else
  575. if ((errblk[0] & 0x70) == 0x70)
  576. errcode = errblk[2] & 0x0f;
  577. else
  578. errcode = errblk[0] & 0x0f;
  579. printk( KERN_ERR "ACSI error 0x%02x", errcode );
  580. if (errblk[0] & 0x80)
  581. printk( " for sector %d",
  582. ((errblk[1] & 0x1f) << 16) |
  583. (errblk[2] << 8) | errblk[0] );
  584. arr = atari_err ? atari_acsi_errors : scsi_acsi_errors;
  585. i = atari_err ? sizeof(atari_acsi_errors)/sizeof(*atari_acsi_errors) :
  586.             sizeof(scsi_acsi_errors)/sizeof(*scsi_acsi_errors);
  587. for( --i; i >= 0; --i )
  588. if (arr[i].code == errcode) break;
  589. if (i >= 0)
  590. printk( ": %sn", arr[i].text );
  591. }
  592. /*******************************************************************
  593.  *
  594.  * ACSI interrupt routine
  595.  *   Test, if this is a ACSI interrupt and call the irq handler
  596.  *   Otherwise ignore this interrupt.
  597.  *
  598.  *******************************************************************/
  599. static irqreturn_t acsi_interrupt(int irq, void *data, struct pt_regs *fp )
  600. { void (*acsi_irq_handler)(void) = do_acsi;
  601. do_acsi = NULL;
  602. CLEAR_TIMER();
  603. if (!acsi_irq_handler)
  604. acsi_irq_handler = unexpected_acsi_interrupt;
  605. acsi_irq_handler();
  606. return IRQ_HANDLED;
  607. }
  608. /******************************************************************
  609.  *
  610.  * The Interrupt handlers
  611.  *
  612.  *******************************************************************/
  613. static void unexpected_acsi_interrupt( void )
  614. {
  615. printk( KERN_WARNING "Unexpected ACSI interruptn" );
  616. }
  617. /* This function is called in case of errors. Because we cannot reset
  618.  * the ACSI bus or a single device, there is no other choice than
  619.  * retrying several times :-(
  620.  */
  621. static void bad_rw_intr( void )
  622. {
  623. if (!CURRENT)
  624. return;
  625. if (++CURRENT->errors >= MAX_ERRORS)
  626. end_request(CURRENT, 0);
  627. /* Otherwise just retry */
  628. }
  629. static void read_intr( void )
  630. { int status;
  631. status = acsi_getstatus();
  632. if (status != 0) {
  633. struct gendisk *disk = CURRENT->rq_disk;
  634. struct acsi_info_struct *aip = disk->private_data;
  635. printk(KERN_ERR "%s: ", disk->disk_name);
  636. if (!acsi_reqsense(acsi_buffer, aip->target, aip->lun))
  637. printk( "ACSI error and REQUEST SENSE failed (status=0x%02x)n", status );
  638. else {
  639. acsi_print_error(acsi_buffer, aip);
  640. if (CARTRCH_STAT(aip, acsi_buffer))
  641. aip->changed = 1;
  642. }
  643. ENABLE_IRQ();
  644. bad_rw_intr();
  645. redo_acsi_request();
  646. return;
  647. }
  648. dma_cache_maintenance( virt_to_phys(CurrentBuffer), CurrentNSect*512, 0 );
  649. if (CurrentBuffer == acsi_buffer)
  650. copy_from_acsibuffer();
  651. do_end_requests();
  652. redo_acsi_request();
  653. }
  654. static void write_intr(void)
  655. { int status;
  656. status = acsi_getstatus();
  657. if (status != 0) {
  658. struct gendisk *disk = CURRENT->rq_disk;
  659. struct acsi_info_struct *aip = disk->private_data;
  660. printk( KERN_ERR "%s: ", disk->disk_name);
  661. if (!acsi_reqsense( acsi_buffer, aip->target, aip->lun))
  662. printk( "ACSI error and REQUEST SENSE failed (status=0x%02x)n", status );
  663. else {
  664. acsi_print_error(acsi_buffer, aip);
  665. if (CARTRCH_STAT(aip, acsi_buffer))
  666. aip->changed = 1;
  667. }
  668. bad_rw_intr();
  669. redo_acsi_request();
  670. return;
  671. }
  672. do_end_requests();
  673. redo_acsi_request();
  674. }
  675. static void acsi_times_out( unsigned long dummy )
  676. {
  677. DISABLE_IRQ();
  678. if (!do_acsi) return;
  679. do_acsi = NULL;
  680. printk( KERN_ERR "ACSI timeoutn" );
  681. if (!CURRENT)
  682.     return;
  683. if (++CURRENT->errors >= MAX_ERRORS) {
  684. #ifdef DEBUG
  685. printk( KERN_ERR "ACSI: too many errors.n" );
  686. #endif
  687. end_request(CURRENT, 0);
  688. }
  689. redo_acsi_request();
  690. }
  691. /***********************************************************************
  692.  *
  693.  *  Scatter-gather utility functions
  694.  *
  695.  ***********************************************************************/
  696. static void copy_to_acsibuffer( void )
  697. { int i;
  698. char *src, *dst;
  699. struct buffer_head *bh;
  700. src = CURRENT->buffer;
  701. dst = acsi_buffer;
  702. bh = CURRENT->bh;
  703. if (!bh)
  704. memcpy( dst, src, CurrentNSect*512 );
  705. else
  706. for( i = 0; i < CurrentNReq; ++i ) {
  707. memcpy( dst, src, bh->b_size );
  708. dst += bh->b_size;
  709. if ((bh = bh->b_reqnext))
  710. src = bh->b_data;
  711. }
  712. }
  713. static void copy_from_acsibuffer( void )
  714. { int i;
  715. char *src, *dst;
  716. struct buffer_head *bh;
  717. dst = CURRENT->buffer;
  718. src = acsi_buffer;
  719. bh = CURRENT->bh;
  720. if (!bh)
  721. memcpy( dst, src, CurrentNSect*512 );
  722. else
  723. for( i = 0; i < CurrentNReq; ++i ) {
  724. memcpy( dst, src, bh->b_size );
  725. src += bh->b_size;
  726. if ((bh = bh->b_reqnext))
  727. dst = bh->b_data;
  728. }
  729. }
  730. static void do_end_requests( void )
  731. { int i, n;
  732. if (!CURRENT->bh) {
  733. CURRENT->nr_sectors -= CurrentNSect;
  734. CURRENT->current_nr_sectors -= CurrentNSect;
  735. CURRENT->sector += CurrentNSect;
  736. if (CURRENT->nr_sectors == 0)
  737. end_request(CURRENT, 1);
  738. }
  739. else {
  740. for( i = 0; i < CurrentNReq; ++i ) {
  741. n = CURRENT->bh->b_size >> 9;
  742. CURRENT->nr_sectors -= n;
  743. CURRENT->current_nr_sectors -= n;
  744. CURRENT->sector += n;
  745. end_request(CURRENT, 1);
  746. }
  747. }
  748. }
  749. /***********************************************************************
  750.  *
  751.  *  do_acsi_request and friends
  752.  *
  753.  ***********************************************************************/
  754. static void do_acsi_request( request_queue_t * q )
  755. {
  756. stdma_lock( acsi_interrupt, NULL );
  757. redo_acsi_request();
  758. }
  759. static void redo_acsi_request( void )
  760. {
  761. unsigned block, target, lun, nsect;
  762. char  *buffer;
  763. unsigned long pbuffer;
  764. struct buffer_head *bh;
  765. struct gendisk *disk;
  766. struct acsi_info_struct *aip;
  767.   repeat:
  768. CLEAR_TIMER();
  769. if (do_acsi)
  770. return;
  771. if (!CURRENT) {
  772. do_acsi = NULL;
  773. ENABLE_IRQ();
  774. stdma_release();
  775. return;
  776. }
  777. disk = CURRENT->rq_disk;
  778. aip = disk->private_data;
  779. if (CURRENT->bh) {
  780. if (!CURRENT->bh && !buffer_locked(CURRENT->bh))
  781. panic("ACSI: block not locked");
  782. }
  783. block = CURRENT->sector;
  784. if (block+CURRENT->nr_sectors >= get_capacity(disk)) {
  785. #ifdef DEBUG
  786. printk( "%s: attempted access for blocks %d...%ld past end of device at block %ld.n",
  787.        disk->disk_name,
  788.        block, block + CURRENT->nr_sectors - 1,
  789.        get_capacity(disk));
  790. #endif
  791. end_request(CURRENT, 0);
  792. goto repeat;
  793. }
  794. if (aip->changed) {
  795. printk( KERN_NOTICE "%s: request denied because cartridge has "
  796. "been changed.n", disk->disk_name);
  797. end_request(CURRENT, 0);
  798. goto repeat;
  799. }
  800. target = aip->target;
  801. lun    = aip->lun;
  802. /* Find out how many sectors should be transferred from/to
  803.  * consecutive buffers and thus can be done with a single command.
  804.  */
  805. buffer      = CURRENT->buffer;
  806. pbuffer     = virt_to_phys(buffer);
  807. nsect       = CURRENT->current_nr_sectors;
  808. CurrentNReq = 1;
  809. if ((bh = CURRENT->bh) && bh != CURRENT->bhtail) {
  810. if (!STRAM_ADDR(pbuffer)) {
  811. /* If transfer is done via the ACSI buffer anyway, we can
  812.  * assemble as much bh's as fit in the buffer.
  813.  */
  814. while( (bh = bh->b_reqnext) ) {
  815. if (nsect + (bh->b_size>>9) > ACSI_BUFFER_SECTORS) break;
  816. nsect += bh->b_size >> 9;
  817. ++CurrentNReq;
  818. if (bh == CURRENT->bhtail) break;
  819. }
  820. buffer = acsi_buffer;
  821. pbuffer = phys_acsi_buffer;
  822. }
  823. else {
  824. unsigned long pendadr, pnewadr;
  825. pendadr = pbuffer + nsect*512;
  826. while( (bh = bh->b_reqnext) ) {
  827. pnewadr = virt_to_phys(bh->b_data);
  828. if (!STRAM_ADDR(pnewadr) || pendadr != pnewadr) break;
  829. nsect += bh->b_size >> 9;
  830. pendadr = pnewadr + bh->b_size;
  831. ++CurrentNReq;
  832. if (bh == CURRENT->bhtail) break;
  833. }
  834. }
  835. }
  836. else {
  837. if (!STRAM_ADDR(pbuffer)) {
  838. buffer = acsi_buffer;
  839. pbuffer = phys_acsi_buffer;
  840. if (nsect > ACSI_BUFFER_SECTORS)
  841. nsect = ACSI_BUFFER_SECTORS;
  842. }
  843. }
  844. CurrentBuffer = buffer;
  845. CurrentNSect  = nsect;
  846. if (rq_data_dir(CURRENT) == WRITE) {
  847. CMDSET_TARG_LUN( write_cmd, target, lun );
  848. CMDSET_BLOCK( write_cmd, block );
  849. CMDSET_LEN( write_cmd, nsect );
  850. if (buffer == acsi_buffer)
  851. copy_to_acsibuffer();
  852. dma_cache_maintenance( pbuffer, nsect*512, 1 );
  853. do_acsi = write_intr;
  854. if (!acsicmd_dma( write_cmd, buffer, nsect, 1, 1)) {
  855. do_acsi = NULL;
  856. printk( KERN_ERR "ACSI (write): Timeout in command blockn" );
  857. bad_rw_intr();
  858. goto repeat;
  859. }
  860. SET_TIMER();
  861. return;
  862. }
  863. if (rq_data_dir(CURRENT) == READ) {
  864. CMDSET_TARG_LUN( read_cmd, target, lun );
  865. CMDSET_BLOCK( read_cmd, block );
  866. CMDSET_LEN( read_cmd, nsect );
  867. do_acsi = read_intr;
  868. if (!acsicmd_dma( read_cmd, buffer, nsect, 0, 1)) {
  869. do_acsi = NULL;
  870. printk( KERN_ERR "ACSI (read): Timeout in command blockn" );
  871. bad_rw_intr();
  872. goto repeat;
  873. }
  874. SET_TIMER();
  875. return;
  876. }
  877. panic("unknown ACSI command");
  878. }
  879. /***********************************************************************
  880.  *
  881.  *  Misc functions: ioctl, open, release, check_change, ...
  882.  *
  883.  ***********************************************************************/
  884. static int acsi_ioctl( struct inode *inode, struct file *file,
  885.    unsigned int cmd, unsigned long arg )
  886. {
  887. struct gendisk *disk = inode->i_bdev->bd_disk;
  888. struct acsi_info_struct *aip = disk->private_data;
  889. switch (cmd) {
  890.   case HDIO_GETGEO:
  891. /* HDIO_GETGEO is supported more for getting the partition's
  892.  * start sector... */
  893.   { struct hd_geometry *geo = (struct hd_geometry *)arg;
  894.     /* just fake some geometry here, it's nonsense anyway; to make it
  895.  * easy, use Adaptec's usual 64/32 mapping */
  896.     put_user( 64, &geo->heads );
  897.     put_user( 32, &geo->sectors );
  898.     put_user( aip->size >> 11, &geo->cylinders );
  899. put_user(get_start_sect(inode->i_bdev), &geo->start);
  900. return 0;
  901.   }
  902.   case SCSI_IOCTL_GET_IDLUN:
  903. /* SCSI compatible GET_IDLUN call to get target's ID and LUN number */
  904. put_user( aip->target | (aip->lun << 8),
  905.   &((Scsi_Idlun *) arg)->dev_id );
  906. put_user( 0, &((Scsi_Idlun *) arg)->host_unique_id );
  907. return 0;
  908.   default:
  909. return -EINVAL;
  910. }
  911. }
  912. /*
  913.  * Open a device, check for read-only and lock the medium if it is
  914.  * removable.
  915.  *
  916.  * Changes by Martin Rogge, 9th Aug 1995:
  917.  * Check whether check_disk_change (and therefore revalidate_acsidisk)
  918.  * was successful. They fail when there is no medium in the drive.
  919.  *
  920.  * The problem of media being changed during an operation can be 
  921.  * ignored because of the prevent_removal code.
  922.  *
  923.  * Added check for the validity of the device number.
  924.  *
  925.  */
  926. static int acsi_open( struct inode * inode, struct file * filp )
  927. {
  928. struct gendisk *disk = inode->i_bdev->bd_disk;
  929. struct acsi_info_struct *aip = disk->private_data;
  930. if (aip->access_count == 0 && aip->removable) {
  931. #if 0
  932. aip->changed = 1; /* safety first */
  933. #endif
  934. check_disk_change( inode->i_bdev );
  935. if (aip->changed) /* revalidate was not successful (no medium) */
  936. return -ENXIO;
  937. acsi_prevent_removal(aip, 1);
  938. }
  939. aip->access_count++;
  940. if (filp && filp->f_mode) {
  941. check_disk_change( inode->i_bdev );
  942. if (filp->f_mode & 2) {
  943. if (aip->read_only) {
  944. acsi_release( inode, filp );
  945. return -EROFS;
  946. }
  947. }
  948. }
  949. return 0;
  950. }
  951. /*
  952.  * Releasing a block device means we sync() it, so that it can safely
  953.  * be forgotten about...
  954.  */
  955. static int acsi_release( struct inode * inode, struct file * file )
  956. {
  957. struct gendisk *disk = inode->i_bdev->bd_disk;
  958. struct acsi_info_struct *aip = disk->private_data;
  959. if (--aip->access_count == 0 && aip->removable)
  960. acsi_prevent_removal(aip, 0);
  961. return( 0 );
  962. }
  963. /*
  964.  * Prevent or allow a media change for removable devices.
  965.  */
  966. static void acsi_prevent_removal(struct acsi_info_struct *aip, int flag)
  967. {
  968. stdma_lock( NULL, NULL );
  969. CMDSET_TARG_LUN(pa_med_rem_cmd, aip->target, aip->lun);
  970. CMDSET_LEN( pa_med_rem_cmd, flag );
  971. if (acsicmd_nodma(pa_med_rem_cmd, 0) && acsi_wait_for_IRQ(3*HZ))
  972. acsi_getstatus();
  973. /* Do not report errors -- some devices may not know this command. */
  974. ENABLE_IRQ();
  975. stdma_release();
  976. }
  977. static int acsi_media_change(struct gendisk *disk)
  978. {
  979. struct acsi_info_struct *aip = disk->private_data;
  980. if (!aip->removable) 
  981. return 0;
  982. if (aip->changed)
  983. /* We can be sure that the medium has been changed -- REQUEST
  984.  * SENSE has reported this earlier.
  985.  */
  986. return 1;
  987. /* If the flag isn't set, make a test by reading block 0.
  988.  * If errors happen, it seems to be better to say "changed"...
  989.  */
  990. stdma_lock( NULL, NULL );
  991. CMDSET_TARG_LUN(read_cmd, aip->target, aip->lun);
  992. CMDSET_BLOCK( read_cmd, 0 );
  993. CMDSET_LEN( read_cmd, 1 );
  994. if (acsicmd_dma(read_cmd, acsi_buffer, 1, 0, 0) &&
  995.     acsi_wait_for_IRQ(3*HZ)) {
  996. if (acsi_getstatus()) {
  997. if (acsi_reqsense(acsi_buffer, aip->target, aip->lun)) {
  998. if (CARTRCH_STAT(aip, acsi_buffer))
  999. aip->changed = 1;
  1000. }
  1001. else {
  1002. printk( KERN_ERR "%s: REQUEST SENSE failed in test for "
  1003.        "medium change; assuming a changen", disk->disk_name );
  1004. aip->changed = 1;
  1005. }
  1006. }
  1007. }
  1008. else {
  1009. printk( KERN_ERR "%s: Test for medium changed timed out; "
  1010. "assuming a changen", disk->disk_name);
  1011. aip->changed = 1;
  1012. }
  1013. ENABLE_IRQ();
  1014. stdma_release();
  1015. /* Now, after reading a block, the changed status is surely valid. */
  1016. return aip->changed;
  1017. }
  1018. static int acsi_change_blk_size( int target, int lun)
  1019. { int i;
  1020. for (i=0; i<12; i++)
  1021. acsi_buffer[i] = 0;
  1022. acsi_buffer[3] = 8;
  1023. acsi_buffer[10] = 2;
  1024. CMDSET_TARG_LUN( modeselect_cmd, target, lun);
  1025. if (!acsicmd_dma( modeselect_cmd, acsi_buffer, 1,1,0) ||
  1026. !acsi_wait_for_IRQ( 3*HZ ) ||
  1027. acsi_getstatus() != 0 ) {
  1028. return(0);
  1029. }
  1030. return(1);
  1031. }
  1032. static int acsi_mode_sense( int target, int lun, SENSE_DATA *sd )
  1033. {
  1034. int page;
  1035. CMDSET_TARG_LUN( modesense_cmd, target, lun );
  1036. for (page=0; page<4; page++) {
  1037. modesense_cmd[2] = page;
  1038. if (!acsicmd_dma( modesense_cmd, acsi_buffer, 1, 0, 0 ) ||
  1039.     !acsi_wait_for_IRQ( 3*HZ ) ||
  1040.     acsi_getstatus())
  1041. continue;
  1042. /* read twice to jump over the second 16-byte border! */
  1043. udelay(300);
  1044. if (acsi_wait_for_noIRQ( 20 ) &&
  1045.     acsicmd_nodma( modesense_cmd, 0 ) &&
  1046.     acsi_wait_for_IRQ( 3*HZ ) &&
  1047.     acsi_getstatus() == 0)
  1048. break;
  1049. }
  1050. if (page == 4) {
  1051. return(0);
  1052. }
  1053. dma_cache_maintenance( phys_acsi_buffer, sizeof(SENSE_DATA), 0 );
  1054. *sd = *(SENSE_DATA *)acsi_buffer;
  1055. /* Validity check, depending on type of data */
  1056. switch( SENSE_TYPE(*sd) ) {
  1057.   case SENSE_TYPE_ATARI:
  1058. if (CAPACITY(*sd) == 0)
  1059. goto invalid_sense;
  1060. break;
  1061.   case SENSE_TYPE_SCSI:
  1062. if (sd->scsi.descriptor_size != 8)
  1063. goto invalid_sense;
  1064. break;
  1065.   case SENSE_TYPE_UNKNOWN:
  1066. printk( KERN_ERR "ACSI target %d, lun %d: Cannot interpret "
  1067. "sense datan", target, lun ); 
  1068.   invalid_sense:
  1069. #ifdef DEBUG
  1070. { int i;
  1071. printk( "Mode sense data for ACSI target %d, lun %d seem not valid:",
  1072. target, lun );
  1073. for( i = 0; i < sizeof(SENSE_DATA); ++i )
  1074. printk( "%02x ", (unsigned char)acsi_buffer[i] );
  1075. printk( "n" );
  1076. }
  1077. #endif
  1078. return( 0 );
  1079. }
  1080. return( 1 );
  1081. }
  1082. /*******************************************************************
  1083.  *
  1084.  *  Initialization
  1085.  *
  1086.  ********************************************************************/
  1087. extern struct block_device_operations acsi_fops;
  1088. static struct gendisk *acsi_gendisk[MAX_DEV];
  1089. #define MAX_SCSI_DEVICE_CODE 10
  1090. static const char *const scsi_device_types[MAX_SCSI_DEVICE_CODE] =
  1091. {
  1092.  "Direct-Access    ",
  1093.  "Sequential-Access",
  1094.  "Printer          ",
  1095.  "Processor        ",
  1096.  "WORM             ",
  1097.  "CD-ROM           ",
  1098.  "Scanner          ",
  1099.  "Optical Device   ",
  1100.  "Medium Changer   ",
  1101.  "Communications   "
  1102. };
  1103. static void print_inquiry(unsigned char *data)
  1104. {
  1105. int i;
  1106. printk(KERN_INFO "  Vendor: ");
  1107. for (i = 8; i < 16; i++)
  1108. {
  1109.         if (data[i] >= 0x20 && i < data[4] + 5)
  1110. printk("%c", data[i]);
  1111. else
  1112. printk(" ");
  1113. }
  1114. printk("  Model: ");
  1115. for (i = 16; i < 32; i++)
  1116. {
  1117.         if (data[i] >= 0x20 && i < data[4] + 5)
  1118. printk("%c", data[i]);
  1119. else
  1120. printk(" ");
  1121. }
  1122. printk("  Rev: ");
  1123. for (i = 32; i < 36; i++)
  1124. {
  1125.         if (data[i] >= 0x20 && i < data[4] + 5)
  1126. printk("%c", data[i]);
  1127. else
  1128. printk(" ");
  1129. }
  1130. printk("n");
  1131. i = data[0] & 0x1f;
  1132. printk(KERN_INFO "  Type:   %s ", (i < MAX_SCSI_DEVICE_CODE
  1133.    ? scsi_device_types[i]
  1134.    : "Unknown          "));
  1135. printk("                 ANSI SCSI revision: %02x", data[2] & 0x07);
  1136. if ((data[2] & 0x07) == 1 && (data[3] & 0x0f) == 1)
  1137.   printk(" CCSn");
  1138. else
  1139.   printk("n");
  1140. }
  1141. /* 
  1142.  * Changes by Martin Rogge, 9th Aug 1995: 
  1143.  * acsi_devinit has been taken out of acsi_geninit, because it needs 
  1144.  * to be called from revalidate_acsidisk. The result of request sense 
  1145.  * is now checked for DRIVE NOT READY.
  1146.  *
  1147.  * The structure *aip is only valid when acsi_devinit returns 
  1148.  * DEV_SUPPORTED. 
  1149.  *
  1150.  */
  1151. #define DEV_NONE 0
  1152. #define DEV_UNKNOWN 1
  1153. #define DEV_SUPPORTED 2
  1154. #define DEV_SLM 3
  1155. static int acsi_devinit(struct acsi_info_struct *aip)
  1156. {
  1157. int status, got_inquiry;
  1158. SENSE_DATA sense;
  1159. unsigned char reqsense, extsense;
  1160. /*****************************************************************/
  1161. /* Do a TEST UNIT READY command to test the presence of a device */
  1162. /*****************************************************************/
  1163. CMDSET_TARG_LUN(tur_cmd, aip->target, aip->lun);
  1164. if (!acsicmd_nodma(tur_cmd, 0)) {
  1165. /* timed out -> no device here */
  1166. #ifdef DEBUG_DETECT
  1167. printk("target %d lun %d: timeoutn", aip->target, aip->lun);
  1168. #endif
  1169. return DEV_NONE;
  1170. }
  1171. /*************************/
  1172. /* Read the ACSI status. */
  1173. /*************************/
  1174. status = acsi_getstatus();
  1175. if (status) {
  1176. if (status == 0x12) {
  1177. /* The SLM printer should be the only device that
  1178.  * responds with the error code in the status byte. In
  1179.  * correct status bytes, bit 4 is never set.
  1180.  */
  1181. printk( KERN_INFO "Detected SLM printer at id %d lun %dn",
  1182.        aip->target, aip->lun);
  1183. return DEV_SLM;
  1184. }
  1185. /* ignore CHECK CONDITION, since some devices send a
  1186.    UNIT ATTENTION */
  1187. if ((status & 0x1e) != 0x2) {
  1188. #ifdef DEBUG_DETECT
  1189. printk("target %d lun %d: status %dn",
  1190.        aip->target, aip->lun, status);
  1191. #endif
  1192. return DEV_UNKNOWN;
  1193. }
  1194. }
  1195. /*******************************/
  1196. /* Do a REQUEST SENSE command. */
  1197. /*******************************/
  1198. if (!acsi_reqsense(acsi_buffer, aip->target, aip->lun)) {
  1199. printk( KERN_WARNING "acsi_reqsense failedn");
  1200. acsi_buffer[0] = 0;
  1201. acsi_buffer[2] = UNIT_ATTENTION;
  1202. }
  1203. reqsense = acsi_buffer[0];
  1204. extsense = acsi_buffer[2] & 0xf;
  1205. if (status) {
  1206. if ((reqsense & 0x70) == 0x70) { /* extended sense */
  1207. if (extsense != UNIT_ATTENTION &&
  1208.     extsense != NOT_READY) {
  1209. #ifdef DEBUG_DETECT
  1210. printk("target %d lun %d: extended sense %dn",
  1211.        aip->target, aip->lun, extsense);
  1212. #endif
  1213. return DEV_UNKNOWN;
  1214. }
  1215. }
  1216. else {
  1217. if (reqsense & 0x7f) {
  1218. #ifdef DEBUG_DETECT
  1219. printk("target %d lun %d: sense %dn",
  1220.        aip->target, aip->lun, reqsense);
  1221. #endif
  1222. return DEV_UNKNOWN;
  1223. }
  1224. }
  1225. }
  1226. else 
  1227. if (reqsense == 0x4) { /* SH204 Bug workaround */
  1228. #ifdef DEBUG_DETECT
  1229. printk("target %d lun %d status=0 sense=4n",
  1230.        aip->target, aip->lun);
  1231. #endif
  1232. return DEV_UNKNOWN;
  1233. }
  1234. /***********************************************************/
  1235. /* Do an INQUIRY command to get more infos on this device. */
  1236. /***********************************************************/
  1237. /* Assume default values */
  1238. aip->removable = 1;
  1239. aip->read_only = 0;
  1240. aip->old_atari_disk = 0;
  1241. aip->changed = (extsense == NOT_READY); /* medium inserted? */
  1242. aip->size = DEFAULT_SIZE;
  1243. got_inquiry = 0;
  1244. /* Fake inquiry result for old atari disks */
  1245. memcpy(acsi_buffer, "00000100    Adaptec 40xx"
  1246.        "                    ", 40);
  1247. CMDSET_TARG_LUN(inquiry_cmd, aip->target, aip->lun);
  1248. if (acsicmd_dma(inquiry_cmd, acsi_buffer, 1, 0, 0) &&
  1249.     acsi_getstatus() == 0) {
  1250. acsicmd_nodma(inquiry_cmd, 0);
  1251. acsi_getstatus();
  1252. dma_cache_maintenance( phys_acsi_buffer, 256, 0 );
  1253. got_inquiry = 1;
  1254. aip->removable = !!(acsi_buffer[1] & 0x80);
  1255. }
  1256. if (aip->type == NONE) /* only at boot time */
  1257. print_inquiry(acsi_buffer);
  1258. switch(acsi_buffer[0]) {
  1259.   case TYPE_DISK:
  1260. aip->type = HARDDISK;
  1261. break;
  1262.   case TYPE_ROM:
  1263. aip->type = CDROM;
  1264. aip->read_only = 1;
  1265. break;
  1266.   default:
  1267. return DEV_UNKNOWN;
  1268. }
  1269. /****************************/
  1270. /* Do a MODE SENSE command. */
  1271. /****************************/
  1272. if (!acsi_mode_sense(aip->target, aip->lun, &sense)) {
  1273. printk( KERN_WARNING "No mode sense data.n" );
  1274. return DEV_UNKNOWN;
  1275. }
  1276. if ((SECTOR_SIZE(sense) != 512) &&
  1277.     ((aip->type != CDROM) ||
  1278.      !acsi_change_blk_size(aip->target, aip->lun) ||
  1279.      !acsi_mode_sense(aip->target, aip->lun, &sense) ||
  1280.      (SECTOR_SIZE(sense) != 512))) {
  1281. printk( KERN_WARNING "Sector size != 512 not supported.n" );
  1282. return DEV_UNKNOWN;
  1283. }
  1284. /* There are disks out there that claim to have 0 sectors... */
  1285. if (CAPACITY(sense))
  1286. aip->size = CAPACITY(sense); /* else keep DEFAULT_SIZE */
  1287. if (!got_inquiry && SENSE_TYPE(sense) == SENSE_TYPE_ATARI) {
  1288. /* If INQUIRY failed and the sense data suggest an old
  1289.  * Atari disk (SH20x, Megafile), the disk is not removable
  1290.  */
  1291. aip->removable = 0;
  1292. aip->old_atari_disk = 1;
  1293. }
  1294. /******************/
  1295. /* We've done it. */
  1296. /******************/
  1297. return DEV_SUPPORTED;
  1298. }
  1299. EXPORT_SYMBOL(acsi_delay_start);
  1300. EXPORT_SYMBOL(acsi_delay_end);
  1301. EXPORT_SYMBOL(acsi_wait_for_IRQ);
  1302. EXPORT_SYMBOL(acsi_wait_for_noIRQ);
  1303. EXPORT_SYMBOL(acsicmd_nodma);
  1304. EXPORT_SYMBOL(acsi_getstatus);
  1305. EXPORT_SYMBOL(acsi_buffer);
  1306. EXPORT_SYMBOL(phys_acsi_buffer);
  1307. #ifdef CONFIG_ATARI_SLM_MODULE
  1308. void acsi_attach_SLMs( int (*attach_func)( int, int ) );
  1309. EXPORT_SYMBOL(acsi_extstatus);
  1310. EXPORT_SYMBOL(acsi_end_extstatus);
  1311. EXPORT_SYMBOL(acsi_extcmd);
  1312. EXPORT_SYMBOL(acsi_attach_SLMs);
  1313. /* to remember IDs of SLM devices, SLM module is loaded later
  1314.  * (index is target#, contents is lun#, -1 means "no SLM") */
  1315. int SLM_devices[8];
  1316. #endif
  1317. static struct block_device_operations acsi_fops = {
  1318. .owner = THIS_MODULE,
  1319. .open = acsi_open,
  1320. .release = acsi_release,
  1321. .ioctl = acsi_ioctl,
  1322. .media_changed = acsi_media_change,
  1323. .revalidate_disk= acsi_revalidate,
  1324. };
  1325. #ifdef CONFIG_ATARI_SLM_MODULE
  1326. /* call attach_slm() for each device that is a printer; needed for init of SLM
  1327.  * driver as a module, since it's not yet present if acsi.c is inited and thus
  1328.  * the bus gets scanned. */
  1329. void acsi_attach_SLMs( int (*attach_func)( int, int ) )
  1330. {
  1331. int i, n = 0;
  1332. for( i = 0; i < 8; ++i )
  1333. if (SLM_devices[i] >= 0)
  1334. n += (*attach_func)( i, SLM_devices[i] );
  1335. printk( KERN_INFO "Found %d SLM printer(s) total.n", n );
  1336. }
  1337. #endif /* CONFIG_ATARI_SLM_MODULE */
  1338. int acsi_init( void )
  1339. {
  1340. int err = 0;
  1341. int i, target, lun;
  1342. struct acsi_info_struct *aip;
  1343. #ifdef CONFIG_ATARI_SLM
  1344. int n_slm = 0;
  1345. #endif
  1346. if (!MACH_IS_ATARI || !ATARIHW_PRESENT(ACSI))
  1347. return 0;
  1348. if (register_blkdev(ACSI_MAJOR, "ad")) {
  1349. err = -EBUSY;
  1350. goto out1;
  1351. }
  1352. if (!(acsi_buffer =
  1353.   (char *)atari_stram_alloc(ACSI_BUFFER_SIZE, "acsi"))) {
  1354. err = -ENOMEM;
  1355. printk( KERN_ERR "Unable to get ACSI ST-Ram buffer.n" );
  1356. goto out2;
  1357. }
  1358. phys_acsi_buffer = virt_to_phys( acsi_buffer );
  1359. STramMask = ATARIHW_PRESENT(EXTD_DMA) ? 0x00000000 : 0xff000000;
  1360. acsi_queue = blk_init_queue(do_acsi_request, &acsi_lock);
  1361. if (!acsi_queue) {
  1362. err = -ENOMEM;
  1363. goto out2a;
  1364. }
  1365. #ifdef CONFIG_ATARI_SLM
  1366. err = slm_init();
  1367. #endif
  1368. if (err)
  1369. goto out3;
  1370. printk( KERN_INFO "Probing ACSI devices:n" );
  1371. NDevices = 0;
  1372. #ifdef CONFIG_ATARI_SLM_MODULE
  1373. for( i = 0; i < 8; ++i )
  1374. SLM_devices[i] = -1;
  1375. #endif
  1376. stdma_lock(NULL, NULL);
  1377. for (target = 0; target < 8 && NDevices < MAX_DEV; ++target) {
  1378. lun = 0;
  1379. do {
  1380. aip = &acsi_info[NDevices];
  1381. aip->type = NONE;
  1382. aip->target = target;
  1383. aip->lun = lun;
  1384. i = acsi_devinit(aip);
  1385. switch (i) {
  1386.   case DEV_SUPPORTED:
  1387. printk( KERN_INFO "Detected ");
  1388. switch (aip->type) {
  1389.   case HARDDISK:
  1390. printk("disk");
  1391. break;
  1392.   case CDROM:
  1393. printk("cdrom");
  1394. break;
  1395.   default:
  1396. }
  1397. printk(" ad%c at id %d lun %d ",
  1398.        'a' + NDevices, target, lun);
  1399. if (aip->removable) 
  1400. printk("(removable) ");
  1401. if (aip->read_only) 
  1402. printk("(read-only) ");
  1403. if (aip->size == DEFAULT_SIZE)
  1404. printk(" unkown size, using default ");
  1405. printk("%ld MByten",
  1406.        (aip->size*512+1024*1024/2)/(1024*1024));
  1407. NDevices++;
  1408. break;
  1409.   case DEV_SLM:
  1410. #ifdef CONFIG_ATARI_SLM
  1411. n_slm += attach_slm( target, lun );
  1412. break;
  1413. #endif
  1414. #ifdef CONFIG_ATARI_SLM_MODULE
  1415. SLM_devices[target] = lun;
  1416. break;
  1417. #endif
  1418. /* neither of the above: fall through to unknown device */
  1419.   case DEV_UNKNOWN:
  1420. printk( KERN_INFO "Detected unsupported device at "
  1421. "id %d lun %dn", target, lun);
  1422. break;
  1423. }
  1424. }
  1425. #ifdef CONFIG_ACSI_MULTI_LUN
  1426. while (i != DEV_NONE && ++lun < MAX_LUN);
  1427. #else
  1428. while (0);
  1429. #endif
  1430. }
  1431. /* reenable interrupt */
  1432. ENABLE_IRQ();
  1433. stdma_release();
  1434. #ifndef CONFIG_ATARI_SLM
  1435. printk( KERN_INFO "Found %d ACSI device(s) total.n", NDevices );
  1436. #else
  1437. printk( KERN_INFO "Found %d ACSI device(s) and %d SLM printer(s) total.n",
  1438. NDevices, n_slm );
  1439. #endif
  1440. err = -ENOMEM;
  1441. for( i = 0; i < NDevices; ++i ) {
  1442. acsi_gendisk[i] = alloc_disk(16);
  1443. if (!acsi_gendisk[i])
  1444. goto out4;
  1445. }
  1446. for( i = 0; i < NDevices; ++i ) {
  1447. struct gendisk *disk = acsi_gendisk[i];
  1448. sprintf(disk->disk_name, "ad%c", 'a'+i);
  1449. aip = &acsi_info[NDevices];
  1450. sprintf(disk->devfs_name, "ad/target%d/lun%d", aip->target, aip->lun);
  1451. disk->major = ACSI_MAJOR;
  1452. disk->first_minor = i << 4;
  1453. if (acsi_info[i].type != HARDDISK) {
  1454. disk->minors = 1;
  1455. strcat(disk->devfs_name, "/disc");
  1456. }
  1457. disk->fops = &acsi_fops;
  1458. disk->private_data = &acsi_info[i];
  1459. set_capacity(disk, acsi_info[i].size);
  1460. disk->queue = acsi_queue;
  1461. add_disk(disk);
  1462. }
  1463. return 0;
  1464. out4:
  1465. while (i--)
  1466. put_disk(acsi_gendisk[i]);
  1467. out3:
  1468. blk_cleanup_queue(acsi_queue);
  1469. out2a:
  1470. atari_stram_free( acsi_buffer );
  1471. out2:
  1472. unregister_blkdev( ACSI_MAJOR, "ad" );
  1473. out1:
  1474. return err;
  1475. }
  1476. #ifdef MODULE
  1477. MODULE_LICENSE("GPL");
  1478. int init_module(void)
  1479. {
  1480. int err;
  1481. if ((err = acsi_init()))
  1482. return( err );
  1483. printk( KERN_INFO "ACSI driver loaded as module.n");
  1484. return( 0 );
  1485. }
  1486. void cleanup_module(void)
  1487. {
  1488. int i;
  1489. del_timer( &acsi_timer );
  1490. blk_cleanup_queue(acsi_queue);
  1491. atari_stram_free( acsi_buffer );
  1492. if (unregister_blkdev( ACSI_MAJOR, "ad" ) != 0)
  1493. printk( KERN_ERR "acsi: cleanup_module failedn");
  1494. for (i = 0; i < NDevices; i++) {
  1495. del_gendisk(acsi_gendisk[i]);
  1496. put_disk(acsi_gendisk[i]);
  1497. }
  1498. }
  1499. #endif
  1500. /*
  1501.  * This routine is called to flush all partitions and partition tables
  1502.  * for a changed scsi disk, and then re-read the new partition table.
  1503.  * If we are revalidating a disk because of a media change, then we
  1504.  * enter with usage == 0.  If we are using an ioctl, we automatically have
  1505.  * usage == 1 (we need an open channel to use an ioctl :-), so this
  1506.  * is our limit.
  1507.  *
  1508.  * Changes by Martin Rogge, 9th Aug 1995: 
  1509.  * got cd-roms to work by calling acsi_devinit. There are only two problems:
  1510.  * First, if there is no medium inserted, the status will remain "changed".
  1511.  * That is no problem at all, but our design of three-valued logic (medium
  1512.  * changed, medium not changed, no medium inserted).
  1513.  * Secondly the check could fail completely and the drive could deliver
  1514.  * nonsensical data, which could mess up the acsi_info[] structure. In
  1515.  * that case we try to make the entry safe.
  1516.  *
  1517.  */
  1518. static int acsi_revalidate(struct gendisk *disk)
  1519. {
  1520. struct acsi_info_struct *aip = disk->private_data;
  1521. stdma_lock( NULL, NULL );
  1522. if (acsi_devinit(aip) != DEV_SUPPORTED) {
  1523. printk( KERN_ERR "ACSI: revalidate failed for target %d lun %dn",
  1524.        aip->target, aip->lun);
  1525. aip->size = 0;
  1526. aip->read_only = 1;
  1527. aip->removable = 1;
  1528. aip->changed = 1; /* next acsi_open will try again... */
  1529. }
  1530. ENABLE_IRQ();
  1531. stdma_release();
  1532. set_capacity(disk, aip->size);
  1533. return 0;
  1534. }