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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* Driver for Microtech DPCM-USB CompactFlash/SmartMedia reader
  2.  *
  3.  * $Id: dpcm.c,v 1.4 2001/06/11 02:54:25 mdharm Exp $
  4.  *
  5.  * DPCM driver v0.1:
  6.  *
  7.  * First release
  8.  *
  9.  * Current development and maintenance by:
  10.  *   (c) 2000 Brian Webb (webbb@earthlink.net)
  11.  *
  12.  * This device contains both a CompactFlash card reader, which
  13.  * uses the Control/Bulk w/o Interrupt protocol and
  14.  * a SmartMedia card reader that uses the same protocol
  15.  * as the SDDR09.
  16.  *
  17.  * This program is free software; you can redistribute it and/or modify it
  18.  * under the terms of the GNU General Public License as published by the
  19.  * Free Software Foundation; either version 2, or (at your option) any
  20.  * later version.
  21.  *
  22.  * This program is distributed in the hope that it will be useful, but
  23.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  24.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  25.  * General Public License for more details.
  26.  *
  27.  * You should have received a copy of the GNU General Public License along
  28.  * with this program; if not, write to the Free Software Foundation, Inc.,
  29.  * 675 Mass Ave, Cambridge, MA 02139, USA.
  30.  */
  31. #include <linux/config.h>
  32. #include "transport.h"
  33. #include "protocol.h"
  34. #include "usb.h"
  35. #include "debug.h"
  36. #include "dpcm.h"
  37. #include "sddr09.h"
  38. /*
  39.  * Transport for the Microtech DPCM-USB
  40.  *
  41.  */
  42. int dpcm_transport(Scsi_Cmnd *srb, struct us_data *us)
  43. {
  44.   int ret;
  45.   if(srb == NULL)
  46.     return USB_STOR_TRANSPORT_ERROR;
  47.   US_DEBUGP("dpcm_transport: LUN=%dn", srb->lun);
  48.   switch(srb->lun) {
  49.   case 0:
  50.     /*
  51.      * LUN 0 corresponds to the CompactFlash card reader.
  52.      */
  53.     return usb_stor_CB_transport(srb, us);
  54. #ifdef CONFIG_USB_STORAGE_SDDR09
  55.   case 1:
  56.     /*
  57.      * LUN 1 corresponds to the SmartMedia card reader.
  58.      */
  59.     /*
  60.      * Set the LUN to 0 (just in case).
  61.      */
  62.     srb->lun = 0; us->srb->lun = 0;
  63.     ret = sddr09_transport(srb, us);
  64.     srb->lun = 1; us->srb->lun = 1;
  65.     return ret;
  66. #endif
  67.   default:
  68.     US_DEBUGP("dpcm_transport: Invalid LUN %dn", srb->lun);
  69.     return USB_STOR_TRANSPORT_ERROR;
  70.   }
  71. }