1 /* $NetBSD: ss_mustek.c,v 1.21 2004/09/09 19:35:33 bouyer Exp $ */ 2 3 /* 4 * Copyright (c) 1995 Joachim Koenig-Baltes. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 3. All advertising materials mentioning features or use of this software 15 * must display the following acknowledgement: 16 * This product includes software developed by Joachim Koenig-Baltes. 17 * 4. The name of the author may not be used to endorse or promote products 18 * derived from this software without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 */ 31 32 /* 33 * special driver for MUSTEK flatbed scanners MFS 06000CX and MFS 12000CX 34 * these scanners come with their own scsi card, containing an NCR53C400 35 * SCSI controller chip. I'm in the progress of writing a driver for this 36 * card to work under NetBSD-current. I've hooked it up to a Seagate ST01 37 * hostadapter in the meantime, giving 350KB/sec for higher resolutions! 38 * 39 * I tried to connect it to my Adaptec 1542B, but with no success. It seems, 40 * it does not like synchronous negotiation between Hostadapter and other 41 * targets, but I could not turn this off for the 1542B. 42 * 43 * There is also an other reason why you would not like to connect it to your 44 * favourite SCSI host adapter: The Mustek DOES NOT DISCONNECT. It will block 45 * other traffic from the bus while a transfer is active. 46 */ 47 48 #include <sys/cdefs.h> 49 __KERNEL_RCSID(0, "$NetBSD: ss_mustek.c,v 1.21 2004/09/09 19:35:33 bouyer Exp $"); 50 51 #include <sys/param.h> 52 #include <sys/kernel.h> 53 #include <sys/systm.h> 54 #include <sys/fcntl.h> 55 #include <sys/errno.h> 56 #include <sys/ioctl.h> 57 #include <sys/malloc.h> 58 #include <sys/buf.h> 59 #include <sys/proc.h> 60 #include <sys/user.h> 61 #include <sys/device.h> 62 #include <sys/conf.h> /* for cdevsw */ 63 #include <sys/scanio.h> 64 65 #include <dev/scsipi/scsi_all.h> 66 #include <dev/scsipi/scsipi_all.h> 67 #include <dev/scsipi/scsi_scanner.h> 68 #include <dev/scsipi/scsiconf.h> 69 #include <dev/scsipi/scsipi_base.h> 70 #include <dev/scsipi/ssvar.h> 71 #include <dev/scsipi/ss_mustek.h> 72 73 #define MUSTEK_RETRIES 4 74 75 static int mustek_get_params(struct ss_softc *); 76 static int mustek_set_params(struct ss_softc *, struct scan_io *); 77 static int mustek_trigger_scanner(struct ss_softc *); 78 static void mustek_minphys(struct ss_softc *, struct buf *); 79 static int mustek_read(struct ss_softc *, struct buf *); 80 static int mustek_rewind_scanner(struct ss_softc *); 81 82 /* only used internally */ 83 static int mustek_get_status(struct ss_softc *, int, int); 84 static void mustek_compute_sizes(struct ss_softc *); 85 86 /* 87 * structure for the special handlers 88 */ 89 static struct ss_special mustek_special = { 90 mustek_set_params, 91 mustek_trigger_scanner, 92 mustek_get_params, 93 mustek_minphys, 94 mustek_read, 95 mustek_rewind_scanner, 96 NULL, /* no adf support right now */ 97 NULL /* no adf support right now */ 98 }; 99 100 /* 101 * mustek_attach: attach special functions to ss 102 */ 103 void 104 mustek_attach(struct ss_softc *ss, struct scsipibus_attach_args *sa) 105 { 106 #ifdef SCSIPI_DEBUG 107 struct scsipi_periph *periph = sa->sa_periph; 108 #endif 109 110 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_attach: start\n")); 111 ss->sio.scan_scanner_type = 0; 112 113 printf("\n%s: ", ss->sc_dev.dv_xname); 114 115 /* first, check the model which determines resolutions */ 116 if (!memcmp(sa->sa_inqbuf.product, "MFS-06000CX", 11)) { 117 ss->sio.scan_scanner_type = MUSTEK_06000CX; 118 printf("Mustek 6000CX Flatbed 3-pass color scanner, 3 - 600 dpi\n"); 119 } 120 if (!memcmp(sa->sa_inqbuf.product, "MFS-12000CX", 11)) { 121 ss->sio.scan_scanner_type = MUSTEK_12000CX; 122 printf("Mustek 12000CX Flatbed 3-pass color scanner, 6 - 1200 dpi\n"); 123 } 124 125 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_attach: scanner_type = %d\n", 126 ss->sio.scan_scanner_type)); 127 128 /* install special handlers */ 129 ss->special = &mustek_special; 130 131 /* 132 * populate the scanio struct with legal values 133 * the default should come from user space 134 */ 135 ss->sio.scan_width = 1200; 136 ss->sio.scan_height = 1200; 137 ss->sio.scan_x_resolution = 99; 138 ss->sio.scan_y_resolution = 99; 139 ss->sio.scan_x_origin = 0; 140 ss->sio.scan_y_origin = 0; 141 ss->sio.scan_brightness = 100; 142 ss->sio.scan_contrast = 100; 143 ss->sio.scan_quality = 100; 144 ss->sio.scan_image_mode = SIM_GRAYSCALE; 145 146 mustek_compute_sizes(ss); 147 } 148 149 static int 150 mustek_get_params (struct ss_softc *ss) 151 { 152 153 return (0); 154 } 155 156 /* 157 * check the parameters if the mustek is capable of fulfilling it 158 * but don't send the command to the scanner in case the user wants 159 * to change parameters by more than one call 160 */ 161 static int 162 mustek_set_params(struct ss_softc *ss, struct scan_io *sio) 163 { 164 int error; 165 166 /* 167 * if the scanner is triggered, then rewind it 168 */ 169 if (ss->flags & SSF_TRIGGERED) { 170 error = mustek_rewind_scanner(ss); 171 if (error) 172 return (error); 173 } 174 175 /* size constraints: 8.5" horizontally and 14" vertically */ 176 #ifdef MUSTEK_INCH_SPEC 177 /* sizes must be a multiple of 1/8" */ 178 sio->scan_x_origin -= sio->scan_x_origin % 150; 179 sio->scan_y_origin -= sio->scan_y_origin % 150; 180 sio->scan_width -= sio->scan_width % 150; 181 sio->scan_height -= sio->scan_height % 150; 182 #endif 183 if (sio->scan_width == 0 || 184 sio->scan_x_origin + sio->scan_width > 10200 || 185 sio->scan_height == 0 || 186 sio->scan_y_origin + sio->scan_height > 16800) 187 return (EINVAL); 188 189 /* 190 * for now, only realize the values for the MUSTEK_06000CX 191 * in the future, values for the MUSTEK_12000CX will be implemented 192 */ 193 194 /* 195 * resolution (dpi) must be <= 300 and a multiple of 3 or 196 * between 300 and 600 and a multiple of 30 197 */ 198 sio->scan_x_resolution -= sio->scan_x_resolution <= 300 ? 199 sio->scan_x_resolution % 3 : sio->scan_x_resolution % 30; 200 sio->scan_y_resolution -= sio->scan_y_resolution <= 300 ? 201 sio->scan_y_resolution % 3 : sio->scan_y_resolution % 30; 202 if (sio->scan_x_resolution < 3 || sio->scan_x_resolution > 600 || 203 sio->scan_x_resolution != sio->scan_y_resolution) 204 return (EINVAL); 205 206 /* assume brightness values are between 64 and 136 in steps of 3 */ 207 sio->scan_brightness -= (sio->scan_brightness - 64) % 3; 208 if (sio->scan_brightness < 64 || sio->scan_brightness > 136) 209 return (EINVAL); 210 211 /* contrast values must be between 16 and 184 in steps of 7 */ 212 sio->scan_contrast -= (sio->scan_contrast - 16) % 7; 213 if (sio->scan_contrast < 16 || sio->scan_contrast > 184) 214 return (EINVAL); 215 216 /* 217 * velocity: between 0 (fast) and 4 (slow) which will be mapped 218 * to 100% = 4, 80% = 3, 60% = 2, 40% = 1, 20% = 0 219 * must be a multiple of 20 220 */ 221 sio->scan_quality -= sio->scan_quality % 20; 222 if (sio->scan_quality < 20 || sio->scan_quality > 100) 223 return (EINVAL); 224 225 switch (sio->scan_image_mode) { 226 case SIM_BINARY_MONOCHROME: 227 case SIM_DITHERED_MONOCHROME: 228 case SIM_GRAYSCALE: 229 case SIM_RED: 230 case SIM_GREEN: 231 case SIM_BLUE: 232 break; 233 default: 234 return (EINVAL); 235 } 236 237 /* change ss_softc to the new values, but save ro-variables */ 238 sio->scan_scanner_type = ss->sio.scan_scanner_type; 239 memcpy(&ss->sio, sio, sizeof(struct scan_io)); 240 241 mustek_compute_sizes(ss); 242 243 return (0); 244 } 245 246 /* 247 * trim the requested transfer to a multiple of the line size 248 * this is called only from ssread() which guarantees, scanner is triggered 249 * In the future, it will trim the transfer to not read to much at a time 250 * because the mustek cannot disconnect. It will be calculated by the 251 * resolution, the velocity and the number of bytes per line. 252 */ 253 static void 254 mustek_minphys(struct ss_softc *ss, struct buf *bp) 255 { 256 #ifdef SCSIPI_DEBUG 257 struct scsipi_periph *periph = ss->sc_periph; 258 #endif 259 260 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_minphys: before: %ld\n", 261 bp->b_bcount)); 262 bp->b_bcount -= bp->b_bcount % 263 ((ss->sio.scan_pixels_per_line * ss->sio.scan_bits_per_pixel) / 8); 264 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_minphys: after: %ld\n", 265 bp->b_bcount)); 266 } 267 268 /* 269 * trigger the scanner to start a scan operation 270 * this includes sending the mode- and window-data, starting the scanner 271 * and getting the image size info 272 */ 273 static int 274 mustek_trigger_scanner(struct ss_softc *ss) 275 { 276 struct mustek_mode_select_cmd mode_cmd; 277 struct mustek_mode_select_data mode_data; 278 struct mustek_set_window_cmd window_cmd; 279 struct mustek_set_window_data window_data; 280 struct mustek_start_scan_cmd start_scan_cmd; 281 struct scsipi_periph *periph = ss->sc_periph; 282 int pixel_tlx, pixel_tly, pixel_brx, pixel_bry, paperlength; 283 int error; 284 285 mustek_compute_sizes(ss); 286 287 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_trigger_scanner\n")); 288 289 /* 290 * set the window params and send the scsi command 291 */ 292 memset(&window_cmd, 0, sizeof(window_cmd)); 293 window_cmd.opcode = MUSTEK_SET_WINDOW; 294 window_cmd.length = sizeof(window_data); 295 296 memset(&window_data, 0, sizeof(window_data)); 297 window_data.frame.header = MUSTEK_LINEART_BACKGROUND | MUSTEK_UNIT_SPEC; 298 #ifdef MUSTEK_INCH_SPEC 299 /* the positional values are all 1 byte because 256 / 8 = 32" */ 300 pixel_tlx = ss->sio.scan_x_origin / 150; 301 pixel_tly = ss->sio.scan_y_origin / 150; 302 pixel_brx = pixel_tlx + ss->sio.scan_width / 150; 303 pixel_bry = pixel_tly + ss->sio.scan_height / 150; 304 #else 305 pixel_tlx = (ss->sio.scan_x_origin * ss->sio.scan_x_resolution) / 1200; 306 pixel_tly = (ss->sio.scan_y_origin * ss->sio.scan_y_resolution) / 1200; 307 pixel_brx = pixel_tlx + 308 (ss->sio.scan_width * ss->sio.scan_x_resolution) / 1200; 309 pixel_bry = pixel_tly + 310 (ss->sio.scan_height * ss->sio.scan_y_resolution) / 1200; 311 #endif 312 _lto2l(pixel_tlx, window_data.frame.tl_x); 313 _lto2l(pixel_tly, window_data.frame.tl_y); 314 _lto2l(pixel_brx, window_data.frame.br_x); 315 _lto2l(pixel_bry, window_data.frame.br_y); 316 317 #if MUSTEK_WINDOWS >= 1 318 window_data.window1 = window_data.frame; 319 window_data.window1.header = MUSTEK_WINDOW_MASK | MUSTEK_UNIT_SPEC; 320 #endif 321 322 /* send the set window command to the scanner */ 323 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_set_parms: set_window\n")); 324 error = scsipi_command(periph, NULL, 325 (struct scsipi_generic *) &window_cmd, 326 sizeof(window_cmd), (u_char *) &window_data, sizeof(window_data), 327 MUSTEK_RETRIES, 5000, NULL, XS_CTL_DATA_OUT | XS_CTL_DATA_ONSTACK); 328 if (error) 329 return (error); 330 331 /* 332 * do what it takes to actualize the mode 333 */ 334 memset(&mode_cmd, 0, sizeof(mode_cmd)); 335 mode_cmd.opcode = MUSTEK_MODE_SELECT; 336 _lto2b(sizeof(mode_data), mode_cmd.length); 337 338 memset(&mode_data, 0, sizeof(mode_data)); 339 mode_data.mode = 340 MUSTEK_MODE_MASK | MUSTEK_HT_PATTERN_BUILTIN | MUSTEK_UNIT_SPEC; 341 if (ss->sio.scan_x_resolution <= 300) { 342 mode_data.resolution = ss->sio.scan_x_resolution / 3; 343 } else { 344 /* 345 * the resolution values is computed by modulo 100, but not 346 * for 600dpi, where the value is 100 (a bit tricky, but ...) 347 */ 348 mode_data.resolution = 349 ((ss->sio.scan_x_resolution - 1) % 100) + 1; 350 } 351 mode_data.brightness = (ss->sio.scan_brightness - 64) / 3; 352 mode_data.contrast = (ss->sio.scan_contrast - 16) / 7; 353 mode_data.grain = 0; 354 mode_data.velocity = ss->sio.scan_quality / 20 - 1; 355 #ifdef MUSTEK_INCH_SPEC 356 paperlength = 14 * 8; /* 14" */ 357 #else 358 paperlength = 14 * ss->sio.scan_y_resolution; /* 14" */ 359 #endif 360 _lto2l(paperlength, mode_data.paperlength); 361 362 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_trigger_scanner: mode_select\n")); 363 /* send the command to the scanner */ 364 error = scsipi_command(periph, NULL, 365 (struct scsipi_generic *) &mode_cmd, 366 sizeof(mode_cmd), (u_char *) &mode_data, sizeof(mode_data), 367 MUSTEK_RETRIES, 5000, NULL, XS_CTL_DATA_OUT | XS_CTL_DATA_ONSTACK); 368 if (error) 369 return (error); 370 371 /* 372 * now construct and send the start command 373 */ 374 memset(&start_scan_cmd, 0, sizeof(start_scan_cmd)); 375 start_scan_cmd.opcode = MUSTEK_START_STOP; 376 start_scan_cmd.mode = MUSTEK_SCAN_START; 377 if (ss->sio.scan_x_resolution <= 300) 378 start_scan_cmd.mode |= MUSTEK_RES_STEP_1; 379 else 380 start_scan_cmd.mode |= MUSTEK_RES_STEP_10; 381 switch (ss->sio.scan_image_mode) { 382 case SIM_BINARY_MONOCHROME: 383 case SIM_DITHERED_MONOCHROME: 384 start_scan_cmd.mode |= MUSTEK_BIT_MODE | MUSTEK_GRAY_FILTER; 385 break; 386 case SIM_GRAYSCALE: 387 start_scan_cmd.mode |= MUSTEK_GRAY_MODE | MUSTEK_GRAY_FILTER; 388 break; 389 case SIM_RED: 390 start_scan_cmd.mode |= MUSTEK_GRAY_MODE | MUSTEK_RED_FILTER; 391 break; 392 case SIM_GREEN: 393 start_scan_cmd.mode |= MUSTEK_GRAY_MODE | MUSTEK_GREEN_FILTER; 394 break; 395 case SIM_BLUE: 396 start_scan_cmd.mode |= MUSTEK_GRAY_MODE | MUSTEK_BLUE_FILTER; 397 break; 398 } 399 400 /* send the command to the scanner */ 401 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_trigger_scanner: start_scan\n")); 402 error = scsipi_command(periph, NULL, 403 (struct scsipi_generic *) &start_scan_cmd, 404 sizeof(start_scan_cmd), NULL, 0, 405 MUSTEK_RETRIES, 5000, NULL, 0); 406 if (error) 407 return (error); 408 409 /* 410 * now check if scanner ready this time with update of size info 411 * we wait here so that if the user issues a read directly afterwards, 412 * the scanner will respond directly (otherwise we had to sleep with 413 * a buffer locked in memory) 414 */ 415 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_trigger_scanner: get_status\n")); 416 error = mustek_get_status(ss, 60, 1); 417 if (error) 418 return (error); 419 420 return (0); 421 } 422 423 /* 424 * stop a scan operation in progress 425 */ 426 static int 427 mustek_rewind_scanner(struct ss_softc *ss) 428 { 429 struct mustek_start_scan_cmd cmd; 430 struct scsipi_periph *periph = ss->sc_periph; 431 int error; 432 433 if (ss->sio.scan_window_size != 0) { 434 /* 435 * only if not all data has been read, the scanner has to be 436 * stopped 437 */ 438 memset(&cmd, 0, sizeof(cmd)); 439 cmd.opcode = MUSTEK_START_STOP; 440 cmd.mode = MUSTEK_SCAN_STOP; 441 442 /* send the command to the scanner */ 443 SC_DEBUG(periph, SCSIPI_DB1, 444 ("mustek_rewind_scanner: stop_scan\n")); 445 error = scsipi_command(periph, NULL, 446 (struct scsipi_generic *) &cmd, 447 sizeof(cmd), NULL, 0, MUSTEK_RETRIES, 5000, NULL, 0); 448 if (error) 449 return (error); 450 } 451 452 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_rewind_scanner: end\n")); 453 454 return (0); 455 } 456 457 /* 458 * read the requested number of bytes/lines from the scanner 459 */ 460 static int 461 mustek_read(struct ss_softc *ss, struct buf *bp) 462 { 463 struct mustek_read_cmd cmd; 464 struct scsipi_xfer *xs; 465 struct scsipi_periph *periph = ss->sc_periph; 466 u_long lines_to_read; 467 int error; 468 469 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_read: start\n")); 470 471 memset(&cmd, 0, sizeof(cmd)); 472 cmd.opcode = MUSTEK_READ; 473 474 /* instead of the bytes, the mustek wants the number of lines */ 475 lines_to_read = bp->b_bcount / 476 ((ss->sio.scan_pixels_per_line * ss->sio.scan_bits_per_pixel) / 8); 477 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_read: read %ld lines\n", 478 lines_to_read)); 479 _lto3b(lines_to_read, cmd.length); 480 481 /* 482 * go ask the adapter to do all this for us 483 */ 484 xs = scsipi_make_xs(periph, 485 (struct scsipi_generic *) &cmd, sizeof(cmd), 486 (u_char *) bp->b_data, bp->b_bcount, 487 MUSTEK_RETRIES, 10000, bp, 488 XS_CTL_NOSLEEP | XS_CTL_ASYNC | XS_CTL_DATA_IN); 489 if (xs == NULL) { 490 /* 491 * out of memory. Keep this buffer in the queue, and 492 * retry later. 493 */ 494 callout_reset(&ss->sc_callout, hz / 2, ssrestart, 495 periph); 496 return(0); 497 } 498 #ifdef DIAGNOSTIC 499 if (BUFQ_GET(&ss->buf_queue) != bp) 500 panic("ssstart(): dequeued wrong buf"); 501 #else 502 BUFQ_GET(&ss->buf_queue); 503 #endif 504 error = scsipi_command(periph, xs, 505 (struct scsipi_generic *) &cmd, sizeof(cmd), 506 (u_char *) bp->b_data, bp->b_bcount, MUSTEK_RETRIES, 10000, bp, 507 XS_CTL_NOSLEEP | XS_CTL_ASYNC | XS_CTL_DATA_IN); 508 /* with a scsipi_xfer preallocated, scsipi_command can't fail */ 509 KASSERT(error == 0); 510 ss->sio.scan_lines -= lines_to_read; 511 if (ss->sio.scan_lines < 0) 512 ss->sio.scan_lines = 0; 513 ss->sio.scan_window_size -= bp->b_bcount; 514 if (ss->sio.scan_window_size < 0) 515 ss->sio.scan_window_size = 0; 516 return (0); 517 } 518 519 /* 520 * check if the scanner is ready to take commands 521 * wait timeout seconds and try only every second 522 * if update, then update picture size info 523 * 524 * returns EBUSY if scanner not ready 525 */ 526 static int 527 mustek_get_status(struct ss_softc *ss, int timeout, int update) 528 { 529 struct mustek_get_status_cmd cmd; 530 struct mustek_get_status_data data; 531 struct scsipi_periph *periph = ss->sc_periph; 532 int error, lines, bytes_per_line; 533 534 memset(&cmd, 0, sizeof(cmd)); 535 cmd.opcode = MUSTEK_GET_STATUS; 536 cmd.length = sizeof(data); 537 538 while (1) { 539 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_get_status: stat_cmd\n")); 540 error = scsipi_command(periph, NULL, 541 (struct scsipi_generic *) &cmd, sizeof(cmd), 542 (u_char *) &data, sizeof(data), MUSTEK_RETRIES, 543 5000, NULL, XS_CTL_DATA_IN | XS_CTL_DATA_ONSTACK); 544 if (error) 545 return (error); 546 if ((data.ready_busy == MUSTEK_READY) || 547 (timeout-- <= 0)) 548 break; 549 /* please wait a second */ 550 tsleep((caddr_t)mustek_get_status, PRIBIO + 1, "mtkrdy", hz); 551 } 552 553 if (update) { 554 bytes_per_line = _2ltol(data.bytes_per_line); 555 lines = _3ltol(data.lines); 556 if (lines != ss->sio.scan_lines) { 557 printf("mustek: lines actual(%d) != computed(%ld)\n", 558 lines, ss->sio.scan_lines); 559 return (EIO); 560 } 561 if (bytes_per_line * lines != ss->sio.scan_window_size) { 562 printf("mustek: win-size actual(%d) != computed(%ld)\n", 563 bytes_per_line * lines, ss->sio.scan_window_size); 564 return (EIO); 565 } 566 567 SC_DEBUG(periph, SCSIPI_DB1, 568 ("mustek_get_size: bpl=%ld, lines=%ld\n", 569 (ss->sio.scan_pixels_per_line * ss->sio.scan_bits_per_pixel) / 8, 570 ss->sio.scan_lines)); 571 SC_DEBUG(periph, SCSIPI_DB1, ("window size = %ld\n", 572 ss->sio.scan_window_size)); 573 } 574 575 SC_DEBUG(periph, SCSIPI_DB1, ("mustek_get_status: end\n")); 576 if (data.ready_busy == MUSTEK_READY) 577 return (0); 578 else 579 return (EBUSY); 580 } 581 582 /* 583 * mustek_compute_sizes: compute window_size and lines for the picture 584 * this function is called from different places in the code 585 */ 586 static void 587 mustek_compute_sizes(struct ss_softc *ss) 588 { 589 590 switch (ss->sio.scan_image_mode) { 591 case SIM_BINARY_MONOCHROME: 592 case SIM_DITHERED_MONOCHROME: 593 ss->sio.scan_bits_per_pixel = 1; 594 break; 595 case SIM_GRAYSCALE: 596 case SIM_RED: 597 case SIM_GREEN: 598 case SIM_BLUE: 599 ss->sio.scan_bits_per_pixel = 8; 600 break; 601 } 602 603 /* 604 * horizontal number of bytes is always a multiple of 2, 605 * in 8-bit mode at least 606 */ 607 ss->sio.scan_pixels_per_line = 608 (ss->sio.scan_width * ss->sio.scan_x_resolution) / 1200; 609 if (ss->sio.scan_bits_per_pixel == 1) 610 /* make it a multiple of 16, and thus of 2 bytes */ 611 ss->sio.scan_pixels_per_line = 612 (ss->sio.scan_pixels_per_line + 15) & 0xfffffff0; 613 else 614 ss->sio.scan_pixels_per_line = 615 (ss->sio.scan_pixels_per_line + 1) & 0xfffffffe; 616 617 ss->sio.scan_lines = 618 (ss->sio.scan_height * ss->sio.scan_y_resolution) / 1200; 619 ss->sio.scan_window_size = ss->sio.scan_lines * 620 ((ss->sio.scan_pixels_per_line * ss->sio.scan_bits_per_pixel) / 8); 621 } 622