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

驱动编程

开发平台:

Unix_Linux

  1. /*
  2.  * acsi_slm.c -- Device driver for the Atari SLM laser printer
  3.  *
  4.  * Copyright 1995 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
  5.  *
  6.  * This file is subject to the terms and conditions of the GNU General Public
  7.  * License.  See the file COPYING in the main directory of this archive for
  8.  * more details.
  9.  * 
  10.  */
  11. /*
  12. Notes:
  13. The major number for SLM printers is 28 (like ACSI), but as a character
  14. device, not block device. The minor number is the number of the printer (if
  15. you have more than one SLM; currently max. 2 (#define-constant) SLMs are
  16. supported). The device can be opened for reading and writing. If reading it,
  17. you get some status infos (MODE SENSE data). Writing mode is used for the data
  18. to be printed. Some ioctls allow to get the printer status and to tune printer
  19. modes and some internal variables.
  20. A special problem of the SLM driver is the timing and thus the buffering of
  21. the print data. The problem is that all the data for one page must be present
  22. in memory when printing starts, else --when swapping occurs-- the timing could
  23. not be guaranteed. There are several ways to assure this:
  24.  1) Reserve a buffer of 1196k (maximum page size) statically by
  25.     atari_stram_alloc(). The data are collected there until they're complete,
  26. and then printing starts. Since the buffer is reserved, no further
  27. considerations about memory and swapping are needed. So this is the
  28. simplest method, but it needs a lot of memory for just the SLM.
  29.     An striking advantage of this method is (supposed the SLM_CONT_CNT_REPROG
  30. method works, see there), that there are no timing problems with the DMA
  31. anymore.
  32.  2) The other method would be to reserve the buffer dynamically each time
  33.     printing is required. I could think of looking at mem_map where the
  34. largest unallocted ST-RAM area is, taking the area, and then extending it
  35. by swapping out the neighbored pages, until the needed size is reached.
  36. This requires some mm hacking, but seems possible. The only obstacle could
  37. be pages that cannot be swapped out (reserved pages)...
  38.  3) Another possibility would be to leave the real data in user space and to
  39.     work with two dribble buffers of about 32k in the driver: While the one
  40. buffer is DMAed to the SLM, the other can be filled with new data. But
  41. to keep the timing, that requires that the user data remain in memory and
  42. are not swapped out. Requires mm hacking, too, but maybe not so bad as
  43. method 2).
  44. */
  45. #include <linux/module.h>
  46. #include <linux/errno.h>
  47. #include <linux/sched.h>
  48. #include <linux/timer.h>
  49. #include <linux/fs.h>
  50. #include <linux/major.h>
  51. #include <linux/kernel.h>
  52. #include <linux/delay.h>
  53. #include <linux/interrupt.h>
  54. #include <linux/time.h>
  55. #include <linux/mm.h>
  56. #include <linux/slab.h>
  57. #include <linux/devfs_fs_kernel.h>
  58. #include <linux/smp_lock.h>
  59. #include <asm/pgtable.h>
  60. #include <asm/system.h>
  61. #include <asm/uaccess.h>
  62. #include <asm/atarihw.h>
  63. #include <asm/atariints.h>
  64. #include <asm/atari_acsi.h>
  65. #include <asm/atari_stdma.h>
  66. #include <asm/atari_stram.h>
  67. #include <asm/atari_SLM.h>
  68. #undef DEBUG
  69. /* Define this if the page data are continuous in physical memory. That
  70.  * requires less reprogramming of the ST-DMA */
  71. #define SLM_CONTINUOUS_DMA
  72. /* Use continuous reprogramming of the ST-DMA counter register. This is
  73.  * --strictly speaking-- not allowed, Atari recommends not to look at the
  74.  * counter register while a DMA is going on. But I don't know if that applies
  75.  * only for reading the register, or also writing to it. Writing only works
  76.  * fine for me... The advantage is that the timing becomes absolutely
  77.  * uncritical: Just update each, say 200ms, the counter reg to its maximum,
  78.  * and the DMA will work until the status byte interrupt occurs.
  79.  */
  80. #define SLM_CONT_CNT_REPROG
  81. #define CMDSET_TARG_LUN(cmd,targ,lun)
  82.     do {
  83. cmd[0] = (cmd[0] & ~0xe0) | (targ)<<5;
  84. cmd[1] = (cmd[1] & ~0xe0) | (lun)<<5;
  85. } while(0)
  86. #define START_TIMER(to) mod_timer(&slm_timer, jiffies + (to))
  87. #define STOP_TIMER() del_timer(&slm_timer)
  88. static char slmreqsense_cmd[6] = { 0x03, 0, 0, 0, 0, 0 };
  89. static char slmprint_cmd[6]    = { 0x0a, 0, 0, 0, 0, 0 };
  90. static char slminquiry_cmd[6]  = { 0x12, 0, 0, 0, 0, 0x80 };
  91. static char slmmsense_cmd[6]   = { 0x1a, 0, 0, 0, 255, 0 };
  92. #if 0
  93. static char slmmselect_cmd[6]  = { 0x15, 0, 0, 0, 0, 0 };
  94. #endif
  95. #define MAX_SLM 2
  96. static struct slm {
  97. unsigned target; /* target number */
  98. unsigned lun; /* LUN in target controller */
  99. atomic_t wr_ok;  /* set to 0 if output part busy */
  100. atomic_t rd_ok; /* set to 0 if status part busy */
  101. } slm_info[MAX_SLM];
  102. int N_SLM_Printers = 0;
  103. /* printer buffer */
  104. static unsigned char *SLMBuffer; /* start of buffer */
  105. static unsigned char *BufferP; /* current position in buffer */
  106. static int BufferSize; /* length of buffer for page size */
  107. typedef enum { IDLE, FILLING, PRINTING } SLMSTATE;
  108. static SLMSTATE SLMState;
  109. static int SLMBufOwner; /* SLM# currently using the buffer */
  110. /* DMA variables */
  111. #ifndef SLM_CONT_CNT_REPROG
  112. static unsigned long SLMCurAddr; /* current base addr of DMA chunk */
  113. static unsigned long SLMEndAddr; /* expected end addr */
  114. static unsigned long SLMSliceSize; /* size of one DMA chunk */
  115. #endif
  116. static int SLMError;
  117. /* wait queues */
  118. static DECLARE_WAIT_QUEUE_HEAD(slm_wait); /* waiting for buffer */
  119. static DECLARE_WAIT_QUEUE_HEAD(print_wait); /* waiting for printing finished */
  120. /* status codes */
  121. #define SLMSTAT_OK 0x00
  122. #define SLMSTAT_ORNERY 0x02
  123. #define SLMSTAT_TONER 0x03
  124. #define SLMSTAT_WARMUP 0x04
  125. #define SLMSTAT_PAPER 0x05
  126. #define SLMSTAT_DRUM 0x06
  127. #define SLMSTAT_INJAM 0x07
  128. #define SLMSTAT_THRJAM 0x08
  129. #define SLMSTAT_OUTJAM 0x09
  130. #define SLMSTAT_COVER 0x0a
  131. #define SLMSTAT_FUSER 0x0b
  132. #define SLMSTAT_IMAGER 0x0c
  133. #define SLMSTAT_MOTOR 0x0d
  134. #define SLMSTAT_VIDEO 0x0e
  135. #define SLMSTAT_SYSTO 0x10
  136. #define SLMSTAT_OPCODE 0x12
  137. #define SLMSTAT_DEVNUM 0x15
  138. #define SLMSTAT_PARAM 0x1a
  139. #define SLMSTAT_ACSITO 0x1b /* driver defined */
  140. #define SLMSTAT_NOTALL 0x1c /* driver defined */
  141. static char *SLMErrors[] = {
  142. /* 0x00 */ "OK and ready",
  143. /* 0x01 */ NULL,
  144. /* 0x02 */ "ornery printer",
  145. /* 0x03 */ "toner empty",
  146. /* 0x04 */ "warming up",
  147. /* 0x05 */ "paper empty",
  148. /* 0x06 */ "drum empty",
  149. /* 0x07 */ "input jam",
  150. /* 0x08 */ "through jam",
  151. /* 0x09 */ "output jam",
  152. /* 0x0a */ "cover open",
  153. /* 0x0b */ "fuser malfunction",
  154. /* 0x0c */ "imager malfunction",
  155. /* 0x0d */ "motor malfunction",
  156. /* 0x0e */ "video malfunction",
  157. /* 0x0f */ NULL,
  158. /* 0x10 */ "printer system timeout",
  159. /* 0x11 */ NULL,
  160. /* 0x12 */ "invalid operation code",
  161. /* 0x13 */ NULL,
  162. /* 0x14 */ NULL,
  163. /* 0x15 */ "invalid device number",
  164. /* 0x16 */ NULL,
  165. /* 0x17 */ NULL,
  166. /* 0x18 */ NULL,
  167. /* 0x19 */ NULL,
  168. /* 0x1a */ "invalid parameter list",
  169. /* 0x1b */ "ACSI timeout",
  170. /* 0x1c */ "not all printed"
  171. };
  172. #define N_ERRORS (sizeof(SLMErrors)/sizeof(*SLMErrors))
  173. /* real (driver caused) error? */
  174. #define IS_REAL_ERROR(x) (x > 0x10)
  175. static struct {
  176. char *name;
  177. int  w, h;
  178. } StdPageSize[] = {
  179. { "Letter", 2400, 3180 },
  180. { "Legal",  2400, 4080 },
  181. { "A4",     2336, 3386 },
  182. { "B5",     2016, 2914 }
  183. };
  184. #define N_STD_SIZES (sizeof(StdPageSize)/sizeof(*StdPageSize))
  185. #define SLM_BUFFER_SIZE (2336*3386/8) /* A4 for now */
  186. #define SLM_DMA_AMOUNT 255 /* #sectors to program the DMA for */
  187. #ifdef SLM_CONTINUOUS_DMA
  188. # define SLM_DMA_INT_OFFSET 0 /* DMA goes until seccnt 0, no offs */
  189. # define SLM_DMA_END_OFFSET 32 /* 32 Byte ST-DMA FIFO */
  190. # define SLM_SLICE_SIZE(w)  (255*512)
  191. #else
  192. # define SLM_DMA_INT_OFFSET 32 /* 32 Byte ST-DMA FIFO */
  193. # define SLM_DMA_END_OFFSET 32 /* 32 Byte ST-DMA FIFO */
  194. # define SLM_SLICE_SIZE(w) ((254*512)/(w/8)*(w/8))
  195. #endif
  196. /* calculate the number of jiffies to wait for 'n' bytes */
  197. #ifdef SLM_CONT_CNT_REPROG
  198. #define DMA_TIME_FOR(n) 50
  199. #define DMA_STARTUP_TIME 0
  200. #else
  201. #define DMA_TIME_FOR(n) (n/1400-1)
  202. #define DMA_STARTUP_TIME 650
  203. #endif
  204. /***************************** Prototypes *****************************/
  205. static char *slm_errstr( int stat );
  206. static int slm_getstats( char *buffer, int device );
  207. static ssize_t slm_read( struct file* file, char *buf, size_t count, loff_t
  208.                          *ppos );
  209. static void start_print( int device );
  210. static irqreturn_t slm_interrupt(int irc, void *data, struct pt_regs *fp);
  211. static void slm_test_ready( unsigned long dummy );
  212. static void set_dma_addr( unsigned long paddr );
  213. static unsigned long get_dma_addr( void );
  214. static ssize_t slm_write( struct file *file, const char *buf, size_t count,
  215.                           loff_t *ppos );
  216. static int slm_ioctl( struct inode *inode, struct file *file, unsigned int
  217.                       cmd, unsigned long arg );
  218. static int slm_open( struct inode *inode, struct file *file );
  219. static int slm_release( struct inode *inode, struct file *file );
  220. static int slm_req_sense( int device );
  221. static int slm_mode_sense( int device, char *buffer, int abs_flag );
  222. #if 0
  223. static int slm_mode_select( int device, char *buffer, int len, int
  224.                             default_flag );
  225. #endif
  226. static int slm_get_pagesize( int device, int *w, int *h );
  227. /************************* End of Prototypes **************************/
  228. static DEFINE_TIMER(slm_timer, slm_test_ready, 0, 0);
  229. static struct file_operations slm_fops = {
  230. .owner = THIS_MODULE,
  231. .read = slm_read,
  232. .write = slm_write,
  233. .ioctl = slm_ioctl,
  234. .open = slm_open,
  235. .release = slm_release,
  236. };
  237. /* ---------------------------------------------------------------------- */
  238. /*    Status Functions   */
  239. static char *slm_errstr( int stat )
  240. { char *p;
  241. static char str[22];
  242. stat &= 0x1f;
  243. if (stat >= 0 && stat < N_ERRORS && (p = SLMErrors[stat]))
  244. return( p );
  245. sprintf( str, "unknown status 0x%02x", stat );
  246. return( str );
  247. }
  248. static int slm_getstats( char *buffer, int device )
  249. { int  len = 0, stat, i, w, h;
  250. unsigned char buf[256];
  251. stat = slm_mode_sense( device, buf, 0 );
  252. if (IS_REAL_ERROR(stat))
  253. return( -EIO );
  254. #define SHORTDATA(i) ((buf[i] << 8) | buf[i+1])
  255. #define BOOLDATA(i,mask) ((buf[i] & mask) ? "on" : "off")
  256. w = SHORTDATA( 3 );
  257. h = SHORTDATA( 1 );
  258. len += sprintf( buffer+len, "Statustt%sn",
  259. slm_errstr( stat ) );
  260. len += sprintf( buffer+len, "Page Sizet%dx%d",
  261. w, h );
  262. for( i = 0; i < N_STD_SIZES; ++i ) {
  263. if (w == StdPageSize[i].w && h == StdPageSize[i].h)
  264. break;
  265. }
  266. if (i < N_STD_SIZES)
  267. len += sprintf( buffer+len, " (%s)", StdPageSize[i].name );
  268. buffer[len++] = 'n';
  269. len += sprintf( buffer+len, "Top/Left Margint%d/%dn",
  270. SHORTDATA( 5 ), SHORTDATA( 7 ) );
  271. len += sprintf( buffer+len, "Manual Feedt%sn",
  272. BOOLDATA( 9, 0x01 ) );
  273. len += sprintf( buffer+len, "Input Selectt%dn",
  274. (buf[9] >> 1) & 7 );
  275. len += sprintf( buffer+len, "Auto Selectt%sn",
  276. BOOLDATA( 9, 0x10 ) );
  277. len += sprintf( buffer+len, "Prefeed Papert%sn",
  278. BOOLDATA( 9, 0x20 ) );
  279. len += sprintf( buffer+len, "Thick Pixelst%sn",
  280. BOOLDATA( 9, 0x40 ) );
  281. len += sprintf( buffer+len, "H/V Resol.t%d/%d dpin",
  282. SHORTDATA( 12 ), SHORTDATA( 10 ) );
  283. len += sprintf( buffer+len, "System Timeoutt%dn",
  284. buf[14] );
  285. len += sprintf( buffer+len, "Scan Timet%dn",
  286. SHORTDATA( 15 ) );
  287. len += sprintf( buffer+len, "Page Countt%dn",
  288. SHORTDATA( 17 ) );
  289. len += sprintf( buffer+len, "In/Out Cap.t%d/%dn",
  290. SHORTDATA( 19 ), SHORTDATA( 21 ) );
  291. len += sprintf( buffer+len, "Stagger Outputt%sn",
  292. BOOLDATA( 23, 0x01 ) );
  293. len += sprintf( buffer+len, "Output Selectt%dn",
  294. (buf[23] >> 1) & 7 );
  295. len += sprintf( buffer+len, "Duplex Printt%sn",
  296. BOOLDATA( 23, 0x10 ) );
  297. len += sprintf( buffer+len, "Color Sep.t%sn",
  298. BOOLDATA( 23, 0x20 ) );
  299. return( len );
  300. }
  301. static ssize_t slm_read( struct file *file, char *buf, size_t count,
  302.  loff_t *ppos )
  303. {
  304. struct inode *node = file->f_dentry->d_inode;
  305. unsigned long page;
  306. int length;
  307. int end;
  308. if (count < 0)
  309. return( -EINVAL );
  310. if (!(page = __get_free_page( GFP_KERNEL )))
  311. return( -ENOMEM );
  312. length = slm_getstats( (char *)page, iminor(node) );
  313. if (length < 0) {
  314. count = length;
  315. goto out;
  316. }
  317. if (file->f_pos >= length) {
  318. count = 0;
  319. goto out;
  320. }
  321. if (count + file->f_pos > length)
  322. count = length - file->f_pos;
  323. end = count + file->f_pos;
  324. if (copy_to_user(buf, (char *)page + file->f_pos, count)) {
  325. count = -EFAULT;
  326. goto out;
  327. }
  328. file->f_pos = end;
  329. out: free_page( page );
  330. return( count );
  331. }
  332. /* ---------------------------------------------------------------------- */
  333. /*    Printing   */
  334. static void start_print( int device )
  335. { struct slm *sip = &slm_info[device];
  336. unsigned char *cmd;
  337. unsigned long paddr;
  338. int i;
  339. stdma_lock( slm_interrupt, NULL );
  340. CMDSET_TARG_LUN( slmprint_cmd, sip->target, sip->lun );
  341. cmd = slmprint_cmd;
  342. paddr = virt_to_phys( SLMBuffer );
  343. dma_cache_maintenance( paddr, virt_to_phys(BufferP)-paddr, 1 );
  344. DISABLE_IRQ();
  345. /* Low on A1 */
  346. dma_wd.dma_mode_status = 0x88;
  347. MFPDELAY();
  348. /* send the command bytes except the last */
  349. for( i = 0; i < 5; ++i ) {
  350. DMA_LONG_WRITE( *cmd++, 0x8a );
  351. udelay(20);
  352. if (!acsi_wait_for_IRQ( HZ/2 )) {
  353. SLMError = 1;
  354. return; /* timeout */
  355. }
  356. }
  357. /* last command byte */
  358. DMA_LONG_WRITE( *cmd++, 0x82 );
  359. MFPDELAY();
  360. /* set DMA address */
  361. set_dma_addr( paddr );
  362. /* program DMA for write and select sector counter reg */
  363. dma_wd.dma_mode_status = 0x192;
  364. MFPDELAY();
  365. /* program for 255*512 bytes and start DMA */
  366. DMA_LONG_WRITE( SLM_DMA_AMOUNT, 0x112 );
  367. #ifndef SLM_CONT_CNT_REPROG
  368. SLMCurAddr = paddr;
  369. SLMEndAddr = paddr + SLMSliceSize + SLM_DMA_INT_OFFSET;
  370. #endif
  371. START_TIMER( DMA_STARTUP_TIME + DMA_TIME_FOR( SLMSliceSize ));
  372. #if !defined(SLM_CONT_CNT_REPROG) && defined(DEBUG)
  373. printk( "SLM: CurAddr=%#lx EndAddr=%#lx timer=%ldn",
  374. SLMCurAddr, SLMEndAddr, DMA_TIME_FOR( SLMSliceSize ) );
  375. #endif
  376. ENABLE_IRQ();
  377. }
  378. /* Only called when an error happened or at the end of a page */
  379. static irqreturn_t slm_interrupt(int irc, void *data, struct pt_regs *fp)
  380. { unsigned long addr;
  381. int stat;
  382. STOP_TIMER();
  383. addr = get_dma_addr();
  384. stat = acsi_getstatus();
  385. SLMError = (stat < 0)             ? SLMSTAT_ACSITO :
  386.        (addr < virt_to_phys(BufferP)) ? SLMSTAT_NOTALL :
  387.     stat;
  388. dma_wd.dma_mode_status = 0x80;
  389. MFPDELAY();
  390. #ifdef DEBUG
  391. printk( "SLM: interrupt, addr=%#lx, error=%dn", addr, SLMError );
  392. #endif
  393. wake_up( &print_wait );
  394. stdma_release();
  395. ENABLE_IRQ();
  396. return IRQ_HANDLED;
  397. }
  398. static void slm_test_ready( unsigned long dummy )
  399. {
  400. #ifdef SLM_CONT_CNT_REPROG
  401. /* program for 255*512 bytes again */
  402. dma_wd.fdc_acces_seccount = SLM_DMA_AMOUNT;
  403. START_TIMER( DMA_TIME_FOR(0) );
  404. #ifdef DEBUG
  405. printk( "SLM: reprogramming timer for %d jiffies, addr=%#lxn",
  406. DMA_TIME_FOR(0), get_dma_addr() );
  407. #endif
  408. #else /* !SLM_CONT_CNT_REPROG */
  409. unsigned long flags, addr;
  410. int d, ti;
  411. #ifdef DEBUG
  412. struct timeval start_tm, end_tm;
  413. int    did_wait = 0;
  414. #endif
  415. local_irq_save(flags);
  416. addr = get_dma_addr();
  417. if ((d = SLMEndAddr - addr) > 0) {
  418. local_irq_restore(flags);
  419. /* slice not yet finished, decide whether to start another timer or to
  420.  * busy-wait */
  421. ti = DMA_TIME_FOR( d );
  422. if (ti > 0) {
  423. #ifdef DEBUG
  424. printk( "SLM: reprogramming timer for %d jiffies, rest %d bytesn",
  425. ti, d );
  426. #endif
  427. START_TIMER( ti );
  428. return;
  429. }
  430. /* wait for desired end address to be reached */
  431. #ifdef DEBUG
  432. do_gettimeofday( &start_tm );
  433. did_wait = 1;
  434. #endif
  435. local_irq_disable();
  436. while( get_dma_addr() < SLMEndAddr )
  437. barrier();
  438. }
  439. /* slice finished, start next one */
  440. SLMCurAddr += SLMSliceSize;
  441. #ifdef SLM_CONTINUOUS_DMA
  442. /* program for 255*512 bytes again */
  443. dma_wd.fdc_acces_seccount = SLM_DMA_AMOUNT;
  444. #else
  445. /* set DMA address;
  446.  * add 2 bytes for the ones in the SLM controller FIFO! */
  447. set_dma_addr( SLMCurAddr + 2 );
  448. /* toggle DMA to write and select sector counter reg */
  449. dma_wd.dma_mode_status = 0x92;
  450. MFPDELAY();
  451. dma_wd.dma_mode_status = 0x192;
  452. MFPDELAY();
  453. /* program for 255*512 bytes and start DMA */
  454. DMA_LONG_WRITE( SLM_DMA_AMOUNT, 0x112 );
  455. #endif
  456. local_irq_restore(flags);
  457. #ifdef DEBUG
  458. if (did_wait) {
  459. int ms;
  460. do_gettimeofday( &end_tm );
  461. ms = (end_tm.tv_sec*1000000+end_tm.tv_usec) -
  462.  (start_tm.tv_sec*1000000+start_tm.tv_usec); 
  463. printk( "SLM: did %ld.%ld ms busy waiting for %d bytesn",
  464. ms/1000, ms%1000, d );
  465. }
  466. else
  467. printk( "SLM: didn't wait (!)n" );
  468. #endif
  469. if ((unsigned char *)PTOV( SLMCurAddr + SLMSliceSize ) >= BufferP) {
  470. /* will be last slice, no timer necessary */
  471. #ifdef DEBUG
  472. printk( "SLM: CurAddr=%#lx EndAddr=%#lx last slice -> no timern",
  473. SLMCurAddr, SLMEndAddr );
  474. #endif
  475. }
  476. else {
  477. /* not last slice */
  478. SLMEndAddr = SLMCurAddr + SLMSliceSize + SLM_DMA_INT_OFFSET;
  479. START_TIMER( DMA_TIME_FOR( SLMSliceSize ));
  480. #ifdef DEBUG
  481. printk( "SLM: CurAddr=%#lx EndAddr=%#lx timer=%ldn",
  482. SLMCurAddr, SLMEndAddr, DMA_TIME_FOR( SLMSliceSize ) );
  483. #endif
  484. }
  485. #endif /* SLM_CONT_CNT_REPROG */
  486. }
  487. static void set_dma_addr( unsigned long paddr )
  488. { unsigned long flags;
  489. local_irq_save(flags);
  490. dma_wd.dma_lo = (unsigned char)paddr;
  491. paddr >>= 8;
  492. MFPDELAY();
  493. dma_wd.dma_md = (unsigned char)paddr;
  494. paddr >>= 8;
  495. MFPDELAY();
  496. if (ATARIHW_PRESENT( EXTD_DMA ))
  497. st_dma_ext_dmahi = (unsigned short)paddr;
  498. else
  499. dma_wd.dma_hi = (unsigned char)paddr;
  500. MFPDELAY();
  501. local_irq_restore(flags);
  502. }
  503. static unsigned long get_dma_addr( void )
  504. { unsigned long addr;
  505. addr = dma_wd.dma_lo & 0xff;
  506. MFPDELAY();
  507. addr |= (dma_wd.dma_md & 0xff) << 8;
  508. MFPDELAY();
  509. addr |= (dma_wd.dma_hi & 0xff) << 16;
  510. MFPDELAY();
  511. return( addr );
  512. }
  513. static ssize_t slm_write( struct file *file, const char *buf, size_t count,
  514.   loff_t *ppos )
  515. {
  516. struct inode *node = file->f_dentry->d_inode;
  517. int device = iminor(node);
  518. int n, filled, w, h;
  519. while( SLMState == PRINTING ||
  520.    (SLMState == FILLING && SLMBufOwner != device) ) {
  521. interruptible_sleep_on( &slm_wait );
  522. if (signal_pending(current))
  523. return( -ERESTARTSYS );
  524. }
  525. if (SLMState == IDLE) {
  526. /* first data of page: get current page size  */
  527. if (slm_get_pagesize( device, &w, &h ))
  528. return( -EIO );
  529. BufferSize = w*h/8;
  530. if (BufferSize > SLM_BUFFER_SIZE)
  531. return( -ENOMEM );
  532. SLMState = FILLING;
  533. SLMBufOwner = device;
  534. }
  535. n = count;
  536. filled = BufferP - SLMBuffer;
  537. if (filled + n > BufferSize)
  538. n = BufferSize - filled;
  539. if (copy_from_user(BufferP, buf, n))
  540. return -EFAULT;
  541. BufferP += n;
  542. filled += n;
  543. if (filled == BufferSize) {
  544. /* Check the paper size again! The user may have switched it in the
  545.  * time between starting the data and finishing them. Would end up in
  546.  * a trashy page... */
  547. if (slm_get_pagesize( device, &w, &h ))
  548. return( -EIO );
  549. if (BufferSize != w*h/8) {
  550. printk( KERN_NOTICE "slm%d: page size changed while printingn",
  551. device );
  552. return( -EAGAIN );
  553. }
  554. SLMState = PRINTING;
  555. /* choose a slice size that is a multiple of the line size */
  556. #ifndef SLM_CONT_CNT_REPROG
  557. SLMSliceSize = SLM_SLICE_SIZE(w);
  558. #endif
  559. start_print( device );
  560. sleep_on( &print_wait );
  561. if (SLMError && IS_REAL_ERROR(SLMError)) {
  562. printk( KERN_ERR "slm%d: %sn", device, slm_errstr(SLMError) );
  563. n = -EIO;
  564. }
  565. SLMState = IDLE;
  566. BufferP = SLMBuffer;
  567. wake_up_interruptible( &slm_wait );
  568. }
  569. return( n );
  570. }
  571. /* ---------------------------------------------------------------------- */
  572. /*    ioctl Functions   */
  573. static int slm_ioctl( struct inode *inode, struct file *file,
  574.   unsigned int cmd, unsigned long arg )
  575. { int device = iminor(inode), err;
  576. /* I can think of setting:
  577.  *  - manual feed
  578.  *  - paper format
  579.  *  - copy count
  580.  *  - ...
  581.  * but haven't implemented that yet :-)
  582.  * BTW, has anybody better docs about the MODE SENSE/MODE SELECT data?
  583.  */
  584. switch( cmd ) {
  585.   case SLMIORESET: /* reset buffer, i.e. empty the buffer */
  586. if (!(file->f_mode & 2))
  587. return( -EINVAL );
  588. if (SLMState == PRINTING)
  589. return( -EBUSY );
  590. SLMState = IDLE;
  591. BufferP = SLMBuffer;
  592. wake_up_interruptible( &slm_wait );
  593. return( 0 );
  594.   case SLMIOGSTAT: { /* get status */
  595. int stat;
  596. char *str;
  597. stat = slm_req_sense( device );
  598. if (arg) {
  599. str = slm_errstr( stat );
  600. if (put_user(stat,
  601.                          (long *)&((struct SLM_status *)arg)->stat))
  602.                     return -EFAULT;
  603. if (copy_to_user( ((struct SLM_status *)arg)->str, str,
  604.  strlen(str) + 1))
  605. return -EFAULT;
  606. }
  607. return( stat );
  608.   }
  609.   case SLMIOGPSIZE: { /* get paper size */
  610. int w, h;
  611. if ((err = slm_get_pagesize( device, &w, &h ))) return( err );
  612.           if (put_user(w, (long *)&((struct SLM_paper_size *)arg)->width))
  613. return -EFAULT;
  614. if (put_user(h, (long *)&((struct SLM_paper_size *)arg)->height))
  615. return -EFAULT;
  616. return( 0 );
  617.   }
  618.   case SLMIOGMFEED: /* get manual feed */
  619. return( -EINVAL );
  620.   case SLMIOSPSIZE: /* set paper size */
  621. return( -EINVAL );
  622.   case SLMIOSMFEED: /* set manual feed */
  623. return( -EINVAL );
  624. }
  625. return( -EINVAL );
  626. }
  627. /* ---------------------------------------------------------------------- */
  628. /*  Opening and Closing   */
  629. static int slm_open( struct inode *inode, struct file *file )
  630. { int device;
  631. struct slm *sip;
  632. device = iminor(inode);
  633. if (device >= N_SLM_Printers)
  634. return( -ENXIO );
  635. sip = &slm_info[device];
  636. if (file->f_mode & 2) {
  637. /* open for writing is exclusive */
  638. if ( !atomic_dec_and_test(&sip->wr_ok) ) {
  639. atomic_inc(&sip->wr_ok);
  640. return( -EBUSY );
  641. }
  642. }
  643. if (file->f_mode & 1) {
  644. /* open for reading is exclusive */
  645.                 if ( !atomic_dec_and_test(&sip->rd_ok) ) {
  646.                         atomic_inc(&sip->rd_ok);
  647.                         return( -EBUSY );
  648.                 }
  649. }
  650. return( 0 );
  651. }
  652. static int slm_release( struct inode *inode, struct file *file )
  653. { int device;
  654. struct slm *sip;
  655. device = iminor(inode);
  656. sip = &slm_info[device];
  657. if (file->f_mode & 2)
  658. atomic_inc( &sip->wr_ok );
  659. if (file->f_mode & 1)
  660. atomic_inc( &sip->rd_ok );
  661. return( 0 );
  662. }
  663. /* ---------------------------------------------------------------------- */
  664. /*  ACSI Primitives for the SLM   */
  665. static int slm_req_sense( int device )
  666. { int stat, rv;
  667. struct slm *sip = &slm_info[device];
  668. stdma_lock( NULL, NULL );
  669. CMDSET_TARG_LUN( slmreqsense_cmd, sip->target, sip->lun );
  670. if (!acsicmd_nodma( slmreqsense_cmd, 0 ) ||
  671. (stat = acsi_getstatus()) < 0)
  672. rv = SLMSTAT_ACSITO;
  673. else
  674. rv = stat & 0x1f;
  675. ENABLE_IRQ();
  676. stdma_release();
  677. return( rv );
  678. }
  679. static int slm_mode_sense( int device, char *buffer, int abs_flag )
  680. { unsigned char stat, len;
  681. int rv = 0;
  682. struct slm *sip = &slm_info[device];
  683. stdma_lock( NULL, NULL );
  684. CMDSET_TARG_LUN( slmmsense_cmd, sip->target, sip->lun );
  685. slmmsense_cmd[5] = abs_flag ? 0x80 : 0;
  686. if (!acsicmd_nodma( slmmsense_cmd, 0 )) {
  687. rv = SLMSTAT_ACSITO;
  688. goto the_end;
  689. }
  690. if (!acsi_extstatus( &stat, 1 )) {
  691. acsi_end_extstatus();
  692. rv = SLMSTAT_ACSITO;
  693. goto the_end;
  694. }
  695. if (!acsi_extstatus( &len, 1 )) {
  696. acsi_end_extstatus();
  697. rv = SLMSTAT_ACSITO;
  698. goto the_end;
  699. }
  700. buffer[0] = len;
  701. if (!acsi_extstatus( buffer+1, len )) {
  702. acsi_end_extstatus();
  703. rv = SLMSTAT_ACSITO;
  704. goto the_end;
  705. }
  706. acsi_end_extstatus();
  707. rv = stat & 0x1f;
  708.   the_end:
  709. ENABLE_IRQ();
  710. stdma_release();
  711. return( rv );
  712. }
  713. #if 0
  714. /* currently unused */
  715. static int slm_mode_select( int device, char *buffer, int len,
  716. int default_flag )
  717. { int stat, rv;
  718. struct slm *sip = &slm_info[device];
  719. stdma_lock( NULL, NULL );
  720. CMDSET_TARG_LUN( slmmselect_cmd, sip->target, sip->lun );
  721. slmmselect_cmd[5] = default_flag ? 0x80 : 0;
  722. if (!acsicmd_nodma( slmmselect_cmd, 0 )) {
  723. rv = SLMSTAT_ACSITO;
  724. goto the_end;
  725. }
  726. if (!default_flag) {
  727. unsigned char c = len;
  728. if (!acsi_extcmd( &c, 1 )) {
  729. rv = SLMSTAT_ACSITO;
  730. goto the_end;
  731. }
  732. if (!acsi_extcmd( buffer, len )) {
  733. rv = SLMSTAT_ACSITO;
  734. goto the_end;
  735. }
  736. }
  737. stat = acsi_getstatus();
  738. rv = (stat < 0 ? SLMSTAT_ACSITO : stat);
  739.   the_end:
  740. ENABLE_IRQ();
  741. stdma_release();
  742. return( rv );
  743. }
  744. #endif
  745. static int slm_get_pagesize( int device, int *w, int *h )
  746. { char buf[256];
  747. int stat;
  748. stat = slm_mode_sense( device, buf, 0 );
  749. ENABLE_IRQ();
  750. stdma_release();
  751. if (stat != SLMSTAT_OK)
  752. return( -EIO );
  753. *w = (buf[3] << 8) | buf[4];
  754. *h = (buf[1] << 8) | buf[2];
  755. return( 0 );
  756. }
  757. /* ---------------------------------------------------------------------- */
  758. /* Initialization   */
  759. int attach_slm( int target, int lun )
  760. { static int did_register;
  761. int len;
  762. if (N_SLM_Printers >= MAX_SLM) {
  763. printk( KERN_WARNING "Too much SLMsn" );
  764. return( 0 );
  765. }
  766. /* do an INQUIRY */
  767. udelay(100);
  768. CMDSET_TARG_LUN( slminquiry_cmd, target, lun );
  769. if (!acsicmd_nodma( slminquiry_cmd, 0 )) {
  770.   inq_timeout:
  771. printk( KERN_ERR "SLM inquiry command timed out.n" );
  772.   inq_fail:
  773. acsi_end_extstatus();
  774. return( 0 );
  775. }
  776. /* read status and header of return data */
  777. if (!acsi_extstatus( SLMBuffer, 6 ))
  778. goto inq_timeout;
  779. if (SLMBuffer[1] != 2) { /* device type == printer? */
  780. printk( KERN_ERR "SLM inquiry returned device type != printern" );
  781. goto inq_fail;
  782. }
  783. len = SLMBuffer[5];
  784. /* read id string */
  785. if (!acsi_extstatus( SLMBuffer, len ))
  786. goto inq_timeout;
  787. acsi_end_extstatus();
  788. SLMBuffer[len] = 0;
  789. if (!did_register) {
  790. did_register = 1;
  791. }
  792. slm_info[N_SLM_Printers].target = target;
  793. slm_info[N_SLM_Printers].lun    = lun;
  794. atomic_set(&slm_info[N_SLM_Printers].wr_ok, 1 ); 
  795. atomic_set(&slm_info[N_SLM_Printers].rd_ok, 1 );
  796. printk( KERN_INFO "  Printer: %sn", SLMBuffer );
  797. printk( KERN_INFO "Detected slm%d at id %d lun %dn",
  798. N_SLM_Printers, target, lun );
  799. N_SLM_Printers++;
  800. return( 1 );
  801. }
  802. int slm_init( void )
  803. {
  804. int i;
  805. if (register_chrdev( ACSI_MAJOR, "slm", &slm_fops )) {
  806. printk( KERN_ERR "Unable to get major %d for ACSI SLMn", ACSI_MAJOR );
  807. return -EBUSY;
  808. }
  809. if (!(SLMBuffer = atari_stram_alloc( SLM_BUFFER_SIZE, "SLM" ))) {
  810. printk( KERN_ERR "Unable to get SLM ST-Ram buffer.n" );
  811. unregister_chrdev( ACSI_MAJOR, "slm" );
  812. return -ENOMEM;
  813. }
  814. BufferP = SLMBuffer;
  815. SLMState = IDLE;
  816. devfs_mk_dir("slm");
  817. for (i = 0; i < MAX_SLM; i++) {
  818. devfs_mk_cdev(MKDEV(ACSI_MAJOR, i),
  819. S_IFCHR|S_IRUSR|S_IWUSR, "slm/%d", i);
  820. }
  821. return 0;
  822. }
  823. #ifdef MODULE
  824. /* from acsi.c */
  825. void acsi_attach_SLMs( int (*attach_func)( int, int ) );
  826. int init_module(void)
  827. {
  828. int err;
  829. if ((err = slm_init()))
  830. return( err );
  831. /* This calls attach_slm() for every target/lun where acsi.c detected a
  832.  * printer */
  833. acsi_attach_SLMs( attach_slm );
  834. return( 0 );
  835. }
  836. void cleanup_module(void)
  837. {
  838. int i;
  839. for (i = 0; i < MAX_SLM; i++)
  840. devfs_remove("slm/%d", i);
  841. devfs_remove("slm");
  842. if (unregister_chrdev( ACSI_MAJOR, "slm" ) != 0)
  843. printk( KERN_ERR "acsi_slm: cleanup_module failedn");
  844. atari_stram_free( SLMBuffer );
  845. }
  846. #endif