pd.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:29k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.         pd.c    (c) 1997-8  Grant R. Guenther <grant@torque.net>
  3.                             Under the terms of the GNU General Public License.
  4.         This is the high-level driver for parallel port IDE hard
  5.         drives based on chips supported by the paride module.
  6. By default, the driver will autoprobe for a single parallel
  7. port IDE drive, but if their individual parameters are
  8.         specified, the driver can handle up to 4 drives.
  9.         The behaviour of the pd driver can be altered by setting
  10.         some parameters from the insmod command line.  The following
  11.         parameters are adjustable:
  12.  
  13.     drive0   These four arguments can be arrays of     
  14.     drive1 1-8 integers as follows:
  15.     drive2
  16.     drive3 <prt>,<pro>,<uni>,<mod>,<geo>,<sby>,<dly>,<slv>
  17. Where,
  18. <prt> is the base of the parallel port address for
  19. the corresponding drive.  (required)
  20. <pro>   is the protocol number for the adapter that
  21. supports this drive.  These numbers are
  22.                         logged by 'paride' when the protocol modules
  23. are initialised.  (0 if not given)
  24. <uni>   for those adapters that support chained
  25. devices, this is the unit selector for the
  26.         chain of devices on the given port.  It should
  27. be zero for devices that don't support chaining.
  28. (0 if not given)
  29. <mod>   this can be -1 to choose the best mode, or one
  30.         of the mode numbers supported by the adapter.
  31. (-1 if not given)
  32. <geo>   this defaults to 0 to indicate that the driver
  33. should use the CHS geometry provided by the drive
  34. itself.  If set to 1, the driver will provide
  35. a logical geometry with 64 heads and 32 sectors
  36. per track, to be consistent with most SCSI
  37.         drivers.  (0 if not given)
  38. <sby>   set this to zero to disable the power saving
  39. standby mode, if needed.  (1 if not given)
  40. <dly>   some parallel ports require the driver to 
  41. go more slowly.  -1 sets a default value that
  42. should work with the chosen protocol.  Otherwise,
  43. set this to a small integer, the larger it is
  44. the slower the port i/o.  In some cases, setting
  45. this to zero will speed up the device. (default -1)
  46. <slv>   IDE disks can be jumpered to master or slave.
  47.                         Set this to 0 to choose the master drive, 1 to
  48.                         choose the slave, -1 (the default) to choose the
  49.                         first drive found.
  50.             major       You may use this parameter to overide the
  51.                         default major number (45) that this driver
  52.                         will use.  Be sure to change the device
  53.                         name as well.
  54.             name        This parameter is a character string that
  55.                         contains the name the kernel will use for this
  56.                         device (in /proc output, for instance).
  57. (default "pd")
  58.     cluster The driver will attempt to aggregate requests
  59. for adjacent blocks into larger multi-block
  60. clusters.  The maximum cluster size (in 512
  61. byte sectors) is set with this parameter.
  62. (default 64)
  63.     verbose This parameter controls the amount of logging
  64. that the driver will do.  Set it to 0 for 
  65. normal operation, 1 to see autoprobe progress
  66. messages, or 2 to see additional debugging
  67. output.  (default 0)
  68.             nice        This parameter controls the driver's use of
  69.                         idle CPU time, at the expense of some speed.
  70.         If this driver is built into the kernel, you can use kernel
  71.         the following command line parameters, with the same values
  72.         as the corresponding module parameters listed above:
  73.             pd.drive0
  74.             pd.drive1
  75.             pd.drive2
  76.             pd.drive3
  77.             pd.cluster
  78.             pd.nice
  79.         In addition, you can use the parameter pd.disable to disable
  80.         the driver entirely.
  81.  
  82. */
  83. /* Changes:
  84. 1.01 GRG 1997.01.24 Restored pd_reset()
  85. Added eject ioctl
  86. 1.02    GRG 1998.05.06  SMP spinlock changes, 
  87. Added slave support
  88. 1.03    GRG 1998.06.16  Eliminate an Ugh.
  89. 1.04 GRG 1998.08.15  Extra debugging, use HZ in loop timing
  90. 1.05    GRG 1998.09.24  Added jumbo support
  91. */
  92. #define PD_VERSION      "1.05"
  93. #define PD_MAJOR 45
  94. #define PD_NAME "pd"
  95. #define PD_UNITS 4
  96. /* Here are things one can override from the insmod command.
  97.    Most are autoprobed by paride unless set here.  Verbose is off
  98.    by default.
  99. */
  100. static int verbose = 0;
  101. static int major = PD_MAJOR;
  102. static char *name = PD_NAME;
  103. static int cluster = 64;
  104. static int      nice = 0;
  105. static int      disable = 0;
  106. static int drive0[8] = {0,0,0,-1,0,1,-1,-1};
  107. static int drive1[8] = {0,0,0,-1,0,1,-1,-1};
  108. static int drive2[8] = {0,0,0,-1,0,1,-1,-1};
  109. static int drive3[8] = {0,0,0,-1,0,1,-1,-1};
  110. static int (*drives[4])[8] = {&drive0,&drive1,&drive2,&drive3};
  111. static int pd_drive_count;
  112. #define D_PRT 0
  113. #define D_PRO   1
  114. #define D_UNI 2
  115. #define D_MOD 3
  116. #define D_GEO 4
  117. #define D_SBY 5
  118. #define D_DLY 6
  119. #define D_SLV   7
  120. #define DU (*drives[unit])
  121. /* end of parameters */
  122. #include <linux/module.h>
  123. #include <linux/errno.h>
  124. #include <linux/fs.h>
  125. #include <linux/devfs_fs_kernel.h>
  126. #include <linux/kernel.h>
  127. #include <linux/delay.h>
  128. #include <linux/genhd.h>
  129. #include <linux/hdreg.h>
  130. #include <linux/cdrom.h> /* for the eject ioctl */
  131. #include <linux/spinlock.h>
  132. #include <asm/uaccess.h>
  133. #ifndef MODULE
  134. #include "setup.h"
  135. static STT pd_stt[7] = {{"drive0",8,drive0},
  136.         {"drive1",8,drive1},
  137.         {"drive2",8,drive2},
  138.         {"drive3",8,drive3},
  139. {"disable",1,&disable},
  140.         {"cluster",1,&cluster},
  141.         {"nice",1,&nice}};
  142. void pd_setup( char *str, int *ints)
  143. { generic_setup(pd_stt,7,str);
  144. }
  145. #endif
  146. MODULE_PARM(verbose,"i");
  147. MODULE_PARM(major,"i");
  148. MODULE_PARM(name,"s");
  149. MODULE_PARM(cluster,"i");
  150. MODULE_PARM(nice,"i");
  151. MODULE_PARM(drive0,"1-8i");
  152. MODULE_PARM(drive1,"1-8i");
  153. MODULE_PARM(drive2,"1-8i");
  154. MODULE_PARM(drive3,"1-8i");
  155. #include "paride.h"
  156. #define PD_BITS    4
  157. /* set up defines for blk.h,  why don't all drivers do it this way ? */
  158. #define MAJOR_NR   major
  159. #define DEVICE_NAME "PD"
  160. #define DEVICE_REQUEST do_pd_request
  161. #define DEVICE_NR(device) (MINOR(device)>>PD_BITS)
  162. #define DEVICE_ON(device)
  163. #define DEVICE_OFF(device)
  164. #include <linux/blk.h>
  165. #include <linux/blkpg.h>
  166. #include "pseudo.h"
  167. #define PD_PARTNS   (1<<PD_BITS)
  168. #define PD_DEVS PD_PARTNS*PD_UNITS
  169. /* numbers for "SCSI" geometry */
  170. #define PD_LOG_HEADS    64
  171. #define PD_LOG_SECTS    32
  172. #define PD_ID_OFF       54
  173. #define PD_ID_LEN       14
  174. #define PD_MAX_RETRIES  5
  175. #define PD_TMO          800             /* interrupt timeout in jiffies */
  176. #define PD_SPIN_DEL     50              /* spin delay in micro-seconds  */
  177. #define PD_SPIN         (1000000*PD_TMO)/(HZ*PD_SPIN_DEL)  
  178. #define STAT_ERR        0x00001
  179. #define STAT_INDEX      0x00002
  180. #define STAT_ECC        0x00004
  181. #define STAT_DRQ        0x00008
  182. #define STAT_SEEK       0x00010
  183. #define STAT_WRERR      0x00020
  184. #define STAT_READY      0x00040
  185. #define STAT_BUSY       0x00080
  186. #define ERR_AMNF        0x00100
  187. #define ERR_TK0NF       0x00200
  188. #define ERR_ABRT        0x00400
  189. #define ERR_MCR         0x00800
  190. #define ERR_IDNF        0x01000
  191. #define ERR_MC          0x02000
  192. #define ERR_UNC         0x04000
  193. #define ERR_TMO         0x10000
  194. #define IDE_READ         0x20
  195. #define IDE_WRITE        0x30
  196. #define IDE_READ_VRFY 0x40
  197. #define IDE_INIT_DEV_PARMS 0x91
  198. #define IDE_STANDBY      0x96
  199. #define IDE_ACKCHANGE    0xdb
  200. #define IDE_DOORLOCK     0xde
  201. #define IDE_DOORUNLOCK   0xdf
  202. #define IDE_IDENTIFY     0xec
  203. #define IDE_EJECT 0xed
  204. int pd_init(void);
  205. void pd_setup(char * str, int * ints);
  206. #ifdef MODULE
  207. void cleanup_module( void );
  208. #endif
  209. static int pd_open(struct inode *inode, struct file *file);
  210. static void do_pd_request(request_queue_t * q);
  211. static int pd_ioctl(struct inode *inode,struct file *file,
  212.                     unsigned int cmd, unsigned long arg);
  213. static int pd_release (struct inode *inode, struct file *file);
  214. static int pd_revalidate(kdev_t dev);
  215. static int pd_detect(void);
  216. static void do_pd_read(void);
  217. static void do_pd_read_start(void);
  218. static void do_pd_write(void);
  219. static void do_pd_write_start(void);
  220. static void do_pd_read_drq( void );
  221. static void do_pd_write_done( void );
  222. static int pd_identify (int unit);
  223. static void pd_media_check(int unit);
  224. static void pd_doorlock(int unit, int func);
  225. static int pd_check_media(kdev_t dev);
  226. static void pd_eject( int unit);
  227. static struct hd_struct pd_hd[PD_DEVS];
  228. static int pd_sizes[PD_DEVS];
  229. static int pd_blocksizes[PD_DEVS];
  230. static int pd_maxsectors[PD_DEVS];
  231. #define PD_NAMELEN 8
  232. struct pd_unit {
  233. struct pi_adapter pia; /* interface to paride layer */
  234. struct pi_adapter *pi;
  235. int access;                /* count of active opens ... */
  236. int capacity;              /* Size of this volume in sectors */
  237. int heads;                 /* physical geometry */
  238. int sectors;
  239. int cylinders;
  240. int drive; /* master=0 slave=1 */
  241. int changed; /* Have we seen a disk change ? */
  242. int removable; /* removable media device  ?  */
  243. int standby;
  244. int alt_geom;
  245. int present;
  246. char name[PD_NAMELEN]; /* pda, pdb, etc ... */
  247. };
  248. struct pd_unit pd[PD_UNITS];
  249. /*  'unit' must be defined in all functions - either as a local or a param */
  250. #define PD pd[unit]
  251. #define PI PD.pi
  252. static int pd_valid = 1; /* serialise partition checks */
  253. static char pd_scratch[512];            /* scratch block buffer */
  254. /* the variables below are used mainly in the I/O request engine, which
  255.    processes only one request at a time.
  256. */
  257. static int pd_retries = 0;              /* i/o error retry count */
  258. static int pd_busy = 0;                 /* request being processed ? */
  259. static int pd_block;                    /* address of next requested block */
  260. static int pd_count;                    /* number of blocks still to do */
  261. static int pd_run; /* sectors in current cluster */
  262. static int pd_cmd; /* current command READ/WRITE */
  263. static int pd_unit; /* unit of current request */
  264. static int pd_dev; /* minor of current request */
  265. static int pd_poffs; /* partition offset of current minor */
  266. static char * pd_buf;                   /* buffer for request in progress */
  267. static DECLARE_WAIT_QUEUE_HEAD(pd_wait_open);
  268. static char *pd_errs[17] = { "ERR","INDEX","ECC","DRQ","SEEK","WRERR",
  269.                              "READY","BUSY","AMNF","TK0NF","ABRT","MCR",
  270.                              "IDNF","MC","UNC","???","TMO"};
  271. /* kernel glue structures */
  272. extern struct block_device_operations pd_fops;
  273. static struct gendisk pd_gendisk = {
  274. major: PD_MAJOR,
  275. major_name: PD_NAME,
  276. minor_shift: PD_BITS,
  277. max_p: PD_PARTNS,
  278. part: pd_hd,
  279. sizes: pd_sizes,
  280. fops: &pd_fops,
  281. };
  282. static struct block_device_operations pd_fops = {
  283. owner: THIS_MODULE,
  284.         open: pd_open,
  285.         release: pd_release,
  286.         ioctl: pd_ioctl,
  287.         check_media_change: pd_check_media,
  288.         revalidate: pd_revalidate
  289. };
  290. void pd_init_units( void )
  291. { int unit, j;
  292. pd_drive_count = 0;
  293. for (unit=0;unit<PD_UNITS;unit++) {
  294. PD.pi = & PD.pia;
  295. PD.access = 0;
  296. PD.changed = 1;
  297. PD.capacity = 0;
  298. PD.drive = DU[D_SLV];
  299. PD.present = 0;
  300. j = 0;
  301. while ((j < PD_NAMELEN-2) && (PD.name[j]=name[j])) j++;
  302. PD.name[j++] = 'a' + unit;
  303. PD.name[j] = 0;
  304. PD.alt_geom = DU[D_GEO];
  305. PD.standby = DU[D_SBY];
  306. if (DU[D_PRT]) pd_drive_count++;
  307. }
  308. }
  309. int pd_init (void)
  310. {       int i;
  311. request_queue_t * q; 
  312. if (disable) return -1;
  313.         if (devfs_register_blkdev(MAJOR_NR,name,&pd_fops)) {
  314.                 printk("%s: unable to get major number %dn",
  315.                         name,major);
  316.                 return -1;
  317.         }
  318. q = BLK_DEFAULT_QUEUE(MAJOR_NR);
  319. blk_init_queue(q, DEVICE_REQUEST);
  320.         read_ahead[MAJOR_NR] = 8;       /* 8 sector (4kB) read ahead */
  321.         
  322. pd_gendisk.major = major;
  323. pd_gendisk.major_name = name;
  324. add_gendisk(&pd_gendisk);
  325. for(i=0;i<PD_DEVS;i++) pd_blocksizes[i] = 1024;
  326. blksize_size[MAJOR_NR] = pd_blocksizes;
  327. for(i=0;i<PD_DEVS;i++) pd_maxsectors[i] = cluster;
  328. max_sectors[MAJOR_NR] = pd_maxsectors;
  329. printk("%s: %s version %s, major %d, cluster %d, nice %dn",
  330. name,name,PD_VERSION,major,cluster,nice);
  331. pd_init_units();
  332. pd_valid = 0;
  333. pd_gendisk.nr_real = pd_detect();
  334. pd_valid = 1;
  335. #ifdef MODULE
  336.         if (!pd_gendisk.nr_real) {
  337. cleanup_module();
  338. return -1;
  339. }
  340. #endif
  341.         return 0;
  342. }
  343. static int pd_open (struct inode *inode, struct file *file)
  344. {       int unit = DEVICE_NR(inode->i_rdev);
  345.         if ((unit >= PD_UNITS) || (!PD.present)) return -ENODEV;
  346. wait_event (pd_wait_open, pd_valid);
  347.         PD.access++;
  348.         if (PD.removable) {
  349. pd_media_check(unit);
  350. pd_doorlock(unit,IDE_DOORLOCK);
  351. }
  352.         return 0;
  353. }
  354. static int pd_ioctl(struct inode *inode,struct file *file,
  355.                     unsigned int cmd, unsigned long arg)
  356. {       struct hd_geometry *geo = (struct hd_geometry *) arg;
  357.         int dev, err, unit;
  358.         if ((!inode) || (!inode->i_rdev)) return -EINVAL;
  359.         dev = MINOR(inode->i_rdev);
  360. unit = DEVICE_NR(inode->i_rdev);
  361.         if (dev >= PD_DEVS) return -EINVAL;
  362. if (!PD.present) return -ENODEV;
  363.         switch (cmd) {
  364.     case CDROMEJECT:
  365. if (PD.access == 1) pd_eject(unit);
  366. return 0;
  367.             case HDIO_GETGEO:
  368.                 if (!geo) return -EINVAL;
  369.                 err = verify_area(VERIFY_WRITE,geo,sizeof(*geo));
  370.                 if (err) return err;
  371. if (PD.alt_geom) {
  372.                     put_user(PD.capacity/(PD_LOG_HEADS*PD_LOG_SECTS), 
  373.      (short *) &geo->cylinders);
  374.                     put_user(PD_LOG_HEADS, (char *) &geo->heads);
  375.                     put_user(PD_LOG_SECTS, (char *) &geo->sectors);
  376. } else {
  377.                     put_user(PD.cylinders, (short *) &geo->cylinders);
  378.                     put_user(PD.heads, (char *) &geo->heads);
  379.                     put_user(PD.sectors, (char *) &geo->sectors);
  380. }
  381.                 put_user(pd_hd[dev].start_sect,(long *)&geo->start);
  382.                 return 0;
  383.             case BLKRRPART:
  384. if (!capable(CAP_SYS_ADMIN))
  385. return -EACCES;
  386.                 return pd_revalidate(inode->i_rdev);
  387.     case BLKGETSIZE:
  388.     case BLKGETSIZE64:
  389.     case BLKROSET:
  390.     case BLKROGET:
  391.     case BLKRASET:
  392.     case BLKRAGET:
  393.     case BLKFLSBUF:
  394.     case BLKPG:
  395. return blk_ioctl(inode->i_rdev, cmd, arg);
  396.             default:
  397.                 return -EINVAL;
  398.         }
  399. }
  400. static int pd_release (struct inode *inode, struct file *file)
  401. {       kdev_t devp;
  402. int unit;
  403.         devp = inode->i_rdev;
  404. unit = DEVICE_NR(devp);
  405. if ((unit >= PD_UNITS) || (PD.access <= 0)) 
  406. return -EINVAL;
  407. PD.access--;
  408.         if (!PD.access && PD.removable)
  409. pd_doorlock(unit,IDE_DOORUNLOCK);
  410. return 0;
  411. }
  412. static int pd_check_media( kdev_t dev)
  413. {       int r, unit;
  414. unit = DEVICE_NR(dev);
  415. if ((unit >= PD_UNITS) || (!PD.present)) return -ENODEV;
  416.         if (!PD.removable) return 0;
  417. pd_media_check(unit);
  418. r = PD.changed;
  419. PD.changed = 0;
  420. return r;
  421. }
  422. static int pd_revalidate(kdev_t dev)
  423. {       int p, unit, minor;
  424.         long flags;
  425.         unit = DEVICE_NR(dev);
  426.         if ((unit >= PD_UNITS) || (!PD.present)) return -ENODEV;
  427.         save_flags(flags);
  428.         cli(); 
  429.         if (PD.access > 1) {
  430.                 restore_flags(flags);
  431.                 return -EBUSY;
  432.         }
  433.         pd_valid = 0;
  434.         restore_flags(flags);   
  435.         for (p=(PD_PARTNS-1);p>=0;p--) {
  436. minor = p + unit*PD_PARTNS;
  437.                 invalidate_device(MKDEV(MAJOR_NR, minor), 1);
  438.                 pd_hd[minor].start_sect = 0;
  439.                 pd_hd[minor].nr_sects = 0;
  440.         }
  441. if (pd_identify(unit))
  442. grok_partitions(&pd_gendisk,unit,1<<PD_BITS,PD.capacity);
  443.         pd_valid = 1;
  444.         wake_up(&pd_wait_open);
  445.         return 0;
  446. }
  447. #ifdef MODULE
  448. /* Glue for modules ... */
  449. void    cleanup_module(void);
  450. int     init_module(void)
  451. {
  452. #ifdef PARIDE_JUMBO
  453.        { extern paride_init();
  454.          paride_init();
  455.        } 
  456. #endif
  457.         return pd_init();
  458. }
  459. void    cleanup_module(void)
  460. {
  461. int unit;
  462.         devfs_unregister_blkdev(MAJOR_NR,name);
  463. del_gendisk(&pd_gendisk);
  464. for (unit=0;unit<PD_UNITS;unit++) 
  465.    if (PD.present) pi_release(PI);
  466. max_sectors[MAJOR_NR] = NULL;
  467. }
  468. #endif
  469. #define WR(c,r,v) pi_write_regr(PI,c,r,v)
  470. #define RR(c,r) (pi_read_regr(PI,c,r))
  471. #define DRIVE (0xa0+0x10*PD.drive)
  472. /*  ide command interface */
  473. static void pd_print_error( int unit, char * msg, int status )
  474. {       int     i;
  475. printk("%s: %s: status = 0x%x =",PD.name,msg,status);
  476.         for(i=0;i<18;i++) if (status & (1<<i)) printk(" %s",pd_errs[i]);
  477. printk("n");
  478. }
  479. static void pd_reset( int unit )    /* called only for MASTER drive */
  480. {       pi_connect(PI);
  481. WR(1,6,4);
  482.         udelay(50);
  483.         WR(1,6,0);
  484. pi_disconnect(PI);
  485. udelay(250);
  486. }
  487. #define DBMSG(msg) ((verbose>1)?(msg):NULL)
  488. static int pd_wait_for( int unit, int w, char * msg )    /* polled wait */
  489. {       int     k, r, e;
  490.         k=0;
  491.         while(k < PD_SPIN) { 
  492.             r = RR(1,6);
  493.             k++;
  494.             if (((r & w) == w) && !(r & STAT_BUSY)) break;
  495.             udelay(PD_SPIN_DEL);
  496.         }
  497.         e = (RR(0,1)<<8) + RR(0,7);
  498.         if (k >= PD_SPIN)  e |= ERR_TMO;
  499.         if ((e & (STAT_ERR|ERR_TMO)) && (msg != NULL)) 
  500. pd_print_error(unit,msg,e);
  501.         return e;
  502. }
  503. static void pd_send_command( int unit, int n, int s, int h, 
  504.      int c0, int c1, int func )
  505. {
  506.         WR(0,6,DRIVE+h);
  507.         WR(0,1,0);                /* the IDE task file */
  508.         WR(0,2,n);
  509.         WR(0,3,s);
  510.         WR(0,4,c0);
  511.         WR(0,5,c1);
  512.         WR(0,7,func);
  513.         udelay(1);
  514. }
  515. static void pd_ide_command( int unit, int func, int block, int count )
  516. /* Don't use this call if the capacity is zero. */
  517. {       int c1, c0, h, s;
  518.         s  = ( block % PD.sectors) + 1;
  519.         h  = ( block / PD.sectors) % PD.heads;
  520.         c0 = ( block / (PD.sectors*PD.heads)) % 256;
  521.         c1 = ( block / (PD.sectors*PD.heads*256));
  522.         pd_send_command(unit,count,s,h,c0,c1,func);
  523. }
  524. /* According to the ATA standard, the default CHS geometry should be
  525.    available following a reset.  Some Western Digital drives come up
  526.    in a mode where only LBA addresses are accepted until the device
  527.    parameters are initialised.
  528. */
  529. static void pd_init_dev_parms( int unit )
  530.  
  531. {       pi_connect(PI);
  532.         pd_wait_for(unit,0,DBMSG("before init_dev_parms"));
  533.         pd_send_command(unit,PD.sectors,0,PD.heads-1,0,0,IDE_INIT_DEV_PARMS);
  534.         udelay(300);
  535.         pd_wait_for(unit,0,"Initialise device parameters");
  536.         pi_disconnect(PI);
  537. }
  538. static void pd_doorlock( int unit, int func )
  539. {       pi_connect(PI);
  540.         if (pd_wait_for(unit,STAT_READY,"Lock") & STAT_ERR) {
  541.                 pi_disconnect(PI);
  542.                 return;
  543.         }
  544.         pd_send_command(unit,1,0,0,0,0,func);
  545.         pd_wait_for(unit,STAT_READY,"Lock done");
  546.         pi_disconnect(PI);
  547. }
  548. static void pd_eject( int unit )
  549. { pi_connect(PI);
  550.         pd_wait_for(unit,0,DBMSG("before unlock on eject"));
  551.         pd_send_command(unit,1,0,0,0,0,IDE_DOORUNLOCK);
  552.         pd_wait_for(unit,0,DBMSG("after unlock on eject"));
  553.         pd_wait_for(unit,0,DBMSG("before eject"));
  554.         pd_send_command(unit,0,0,0,0,0,IDE_EJECT);
  555.         pd_wait_for(unit,0,DBMSG("after eject"));
  556.         pi_disconnect(PI);
  557. }
  558. static void pd_media_check( int unit )
  559. {       int  r;
  560.         pi_connect(PI);
  561.         r = pd_wait_for(unit,STAT_READY,DBMSG("before media_check"));
  562.         if (!(r & STAT_ERR)) {
  563.                 pd_send_command(unit,1,1,0,0,0,IDE_READ_VRFY);  
  564.                 r = pd_wait_for(unit,STAT_READY,DBMSG("RDY after READ_VRFY"));
  565.         } else PD.changed = 1;   /* say changed if other error */
  566.         if (r & ERR_MC) {
  567.                 PD.changed = 1;
  568.                 pd_send_command(unit,1,0,0,0,0,IDE_ACKCHANGE);
  569.                 pd_wait_for(unit,STAT_READY,DBMSG("RDY after ACKCHANGE"));
  570. pd_send_command(unit,1,1,0,0,0,IDE_READ_VRFY);
  571.                 r = pd_wait_for(unit,STAT_READY,DBMSG("RDY after VRFY"));
  572.         }
  573.         pi_disconnect(PI);
  574. }
  575. static void pd_standby_off( int unit )
  576. {       pi_connect(PI);
  577.         pd_wait_for(unit,0,DBMSG("before STANDBY"));
  578.         pd_send_command(unit,0,0,0,0,0,IDE_STANDBY);
  579.         pd_wait_for(unit,0,DBMSG("after STANDBY"));
  580.         pi_disconnect(PI);
  581. }
  582. #define  word_val(n) ((pd_scratch[2*n]&0xff)+256*(pd_scratch[2*n+1]&0xff))
  583. static int pd_identify( int unit )
  584. {       int j;
  585. char id[PD_ID_LEN+1];
  586. /* WARNING:  here there may be dragons.  reset() applies to both drives,
  587.    but we call it only on probing the MASTER. This should allow most
  588.    common configurations to work, but be warned that a reset can clear
  589.    settings on the SLAVE drive.
  590. */ 
  591. if (PD.drive == 0) pd_reset(unit);
  592.         pi_connect(PI);
  593. WR(0,6,DRIVE);
  594.         pd_wait_for(unit,0,DBMSG("before IDENT"));  
  595.         pd_send_command(unit,1,0,0,0,0,IDE_IDENTIFY);
  596.         if (pd_wait_for(unit,STAT_DRQ,DBMSG("IDENT DRQ")) & STAT_ERR) {
  597.                 pi_disconnect(PI);
  598.                 return 0;
  599.         }
  600.         pi_read_block(PI,pd_scratch,512);
  601.         pi_disconnect(PI);
  602.         PD.sectors = word_val(6);
  603.         PD.heads = word_val(3);
  604.         PD.cylinders  = word_val(1);
  605.         PD.capacity = PD.sectors*PD.heads*PD.cylinders;
  606.         for(j=0;j<PD_ID_LEN;j++) id[j^1] = pd_scratch[j+PD_ID_OFF];
  607.         j = PD_ID_LEN-1;
  608.         while ((j >= 0) && (id[j] <= 0x20)) j--;
  609.         j++; id[j] = 0;
  610.         PD.removable = (word_val(0) & 0x80);
  611.  
  612.         printk("%s: %s, %s, %d blocks [%dM], (%d/%d/%d), %s median",
  613.                     PD.name,id,
  614.     PD.drive?"slave":"master",
  615.     PD.capacity,PD.capacity/2048,
  616.                     PD.cylinders,PD.heads,PD.sectors,
  617.                     PD.removable?"removable":"fixed");
  618.         if (PD.capacity) pd_init_dev_parms(unit);
  619.         if (!PD.standby) pd_standby_off(unit);
  620.         return 1;
  621. }
  622. static int pd_probe_drive( int unit )
  623. {
  624. if (PD.drive == -1) {
  625. for (PD.drive=0;PD.drive<=1;PD.drive++)
  626. if (pd_identify(unit))
  627. return 1;
  628. return 0;
  629. }
  630. return pd_identify(unit);
  631. }
  632. static int pd_detect( void )
  633. {       int k, unit;
  634. k = 0;
  635. if (pd_drive_count == 0) {  /* nothing spec'd - so autoprobe for 1 */
  636.     unit = 0;
  637.     if (pi_init(PI,1,-1,-1,-1,-1,-1,pd_scratch,
  638.              PI_PD,verbose,PD.name)) {
  639. if (pd_probe_drive(unit)) {
  640. PD.present = 1;
  641. k = 1;
  642. } else pi_release(PI);
  643.     }
  644.     } else for (unit=0;unit<PD_UNITS;unit++) if (DU[D_PRT])
  645.     if (pi_init(PI,0,DU[D_PRT],DU[D_MOD],DU[D_UNI],
  646. DU[D_PRO],DU[D_DLY],pd_scratch,
  647. PI_PD,verbose,PD.name)) {
  648.                 if (pd_probe_drive(unit)) {
  649.                         PD.present = 1;
  650.                         k = unit+1;
  651.                 } else pi_release(PI);
  652.             }
  653. for (unit=0;unit<PD_UNITS;unit++)
  654. register_disk(&pd_gendisk,MKDEV(MAJOR_NR,unit<<PD_BITS),
  655. PD_PARTNS,&pd_fops,
  656. PD.present?PD.capacity:0);
  657. /* We lie about the number of drives found, as the generic partition
  658.    scanner assumes that the drives are numbered sequentially from 0.
  659.    This can result in some bogus error messages if non-sequential
  660.    drive numbers are used.
  661. */
  662. if (k)
  663. return k; 
  664.         printk("%s: no valid drive foundn",name);
  665.         return 0;
  666. }
  667. /* The i/o request engine */
  668. static int pd_ready( void )
  669. {  int unit = pd_unit;
  670. return (!(RR(1,6) & STAT_BUSY)) ;
  671. }
  672. static void do_pd_request (request_queue_t * q)
  673. {       struct buffer_head * bh;
  674. int unit;
  675.         if (pd_busy) return;
  676. repeat:
  677.         if (QUEUE_EMPTY || (CURRENT->rq_status == RQ_INACTIVE)) return;
  678.         INIT_REQUEST;
  679.         pd_dev = MINOR(CURRENT->rq_dev);
  680. pd_unit = unit = DEVICE_NR(CURRENT->rq_dev);
  681.         pd_block = CURRENT->sector;
  682.         pd_run = CURRENT->nr_sectors;
  683.         pd_count = CURRENT->current_nr_sectors;
  684. bh = CURRENT->bh;
  685.         if ((pd_dev >= PD_DEVS) || 
  686.     ((pd_block+pd_count) > pd_hd[pd_dev].nr_sects)) {
  687.                 end_request(0);
  688.                 goto repeat;
  689.         }
  690. pd_cmd = CURRENT->cmd;
  691. pd_poffs = pd_hd[pd_dev].start_sect;
  692.         pd_block += pd_poffs;
  693.         pd_buf = CURRENT->buffer;
  694.         pd_retries = 0;
  695. pd_busy = 1;
  696.         if (pd_cmd == READ) pi_do_claimed(PI,do_pd_read);
  697.         else if (pd_cmd == WRITE) pi_do_claimed(PI,do_pd_write);
  698.         else {  pd_busy = 0;
  699. end_request(0);
  700.                 goto repeat;
  701.         }
  702. }
  703. static void pd_next_buf( int unit )
  704. { long saved_flags;
  705. spin_lock_irqsave(&io_request_lock,saved_flags);
  706. end_request(1);
  707. if (!pd_run) {  spin_unlock_irqrestore(&io_request_lock,saved_flags);
  708. return; 
  709. }
  710. /* paranoia */
  711. if (QUEUE_EMPTY ||
  712.     (CURRENT->cmd != pd_cmd) ||
  713.     (MINOR(CURRENT->rq_dev) != pd_dev) ||
  714.     (CURRENT->rq_status == RQ_INACTIVE) ||
  715.     (CURRENT->sector+pd_poffs != pd_block)) 
  716. printk("%s: OUCH: request list changed unexpectedlyn",
  717. PD.name);
  718. pd_count = CURRENT->current_nr_sectors;
  719. pd_buf = CURRENT->buffer;
  720. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  721. }
  722. static void do_pd_read( void )
  723. { ps_set_intr(do_pd_read_start,0,0,nice);
  724. }
  725. static void do_pd_read_start( void )
  726.  
  727. {       int unit = pd_unit;
  728. long    saved_flags;
  729. pd_busy = 1;
  730.         pi_connect(PI);
  731.         if (pd_wait_for(unit,STAT_READY,"do_pd_read") & STAT_ERR) {
  732.                 pi_disconnect(PI);
  733.                 if (pd_retries < PD_MAX_RETRIES) {
  734.                         pd_retries++;
  735.                         pi_do_claimed(PI,do_pd_read_start);
  736. return;
  737.                 }
  738. spin_lock_irqsave(&io_request_lock,saved_flags);
  739.                 end_request(0);
  740.                 pd_busy = 0;
  741. do_pd_request(NULL);
  742. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  743.                 return;
  744.         }
  745.         pd_ide_command(unit,IDE_READ,pd_block,pd_run);
  746.         ps_set_intr(do_pd_read_drq,pd_ready,PD_TMO,nice);
  747. }
  748. static void do_pd_read_drq( void )
  749. {       int unit = pd_unit;
  750. long    saved_flags;
  751. while (1) {
  752.             if (pd_wait_for(unit,STAT_DRQ,"do_pd_read_drq") & STAT_ERR) {
  753.                 pi_disconnect(PI);
  754.                 if (pd_retries < PD_MAX_RETRIES) {
  755.                         pd_retries++;
  756.                         pi_do_claimed(PI,do_pd_read_start);
  757.                         return;
  758.                 }
  759. spin_lock_irqsave(&io_request_lock,saved_flags);
  760.                 end_request(0);
  761.                 pd_busy = 0;
  762. do_pd_request(NULL);
  763. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  764.                 return;
  765.             }
  766.             pi_read_block(PI,pd_buf,512);
  767.             pd_count--; pd_run--;
  768.             pd_buf += 512;
  769.     pd_block++;
  770.     if (!pd_run) break;
  771.     if (!pd_count) pd_next_buf(unit);
  772.         }
  773.         pi_disconnect(PI);
  774. spin_lock_irqsave(&io_request_lock,saved_flags);
  775.         end_request(1);
  776.         pd_busy = 0;
  777. do_pd_request(NULL);
  778. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  779. }
  780. static void do_pd_write( void )
  781. {  ps_set_intr(do_pd_write_start,0,0,nice);
  782. }
  783. static void do_pd_write_start( void )
  784. {       int  unit = pd_unit;
  785. long    saved_flags;
  786. pd_busy = 1;
  787.         pi_connect(PI);
  788.         if (pd_wait_for(unit,STAT_READY,"do_pd_write") & STAT_ERR) {
  789.                 pi_disconnect(PI);
  790.                 if (pd_retries < PD_MAX_RETRIES) {
  791.                         pd_retries++;
  792. pi_do_claimed(PI,do_pd_write_start);
  793.                         return;
  794.                 }
  795. spin_lock_irqsave(&io_request_lock,saved_flags);
  796.                 end_request(0);
  797.                 pd_busy = 0;
  798. do_pd_request(NULL);
  799. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  800.                 return;
  801.         }
  802.         pd_ide_command(unit,IDE_WRITE,pd_block,pd_run);
  803. while (1) {
  804.             if (pd_wait_for(unit,STAT_DRQ,"do_pd_write_drq") & STAT_ERR) {
  805.                 pi_disconnect(PI);
  806.                 if (pd_retries < PD_MAX_RETRIES) {
  807.                         pd_retries++;
  808.                         pi_do_claimed(PI,do_pd_write_start);
  809.                         return;
  810.                 }
  811. spin_lock_irqsave(&io_request_lock,saved_flags);
  812.                 end_request(0);
  813.                 pd_busy = 0;
  814. do_pd_request(NULL);
  815.                 spin_unlock_irqrestore(&io_request_lock,saved_flags);
  816. return;
  817.             }
  818.             pi_write_block(PI,pd_buf,512);
  819.     pd_count--; pd_run--;
  820.     pd_buf += 512;
  821.     pd_block++;
  822.     if (!pd_run) break;
  823.     if (!pd_count) pd_next_buf(unit);
  824. }
  825.         ps_set_intr(do_pd_write_done,pd_ready,PD_TMO,nice);
  826. }
  827. static void do_pd_write_done( void )
  828. {       int unit = pd_unit;
  829. long    saved_flags;
  830.         if (pd_wait_for(unit,STAT_READY,"do_pd_write_done") & STAT_ERR) {
  831.                 pi_disconnect(PI);
  832.                 if (pd_retries < PD_MAX_RETRIES) {
  833.                         pd_retries++;
  834.                         pi_do_claimed(PI,do_pd_write_start);
  835.                         return;
  836.                 }
  837. spin_lock_irqsave(&io_request_lock,saved_flags);
  838.                 end_request(0);
  839.                 pd_busy = 0;
  840. do_pd_request(NULL);
  841. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  842.                 return;
  843.         }
  844.         pi_disconnect(PI);
  845. spin_lock_irqsave(&io_request_lock,saved_flags);
  846.         end_request(1);
  847.         pd_busy = 0;
  848. do_pd_request(NULL);
  849. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  850. }
  851. /* end of pd.c */
  852. MODULE_LICENSE("GPL");