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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* Driver for Freecom USB/IDE adaptor
  2.  *
  3.  * $Id: freecom.c,v 1.21 2001/12/29 03:47:33 mdharm Exp $
  4.  *
  5.  * Freecom v0.1:
  6.  *
  7.  * First release
  8.  *
  9.  * Current development and maintenance by:
  10.  *   (C) 2000 David Brown <usb-storage@davidb.org>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify it
  13.  * under the terms of the GNU General Public License as published by the
  14.  * Free Software Foundation; either version 2, or (at your option) any
  15.  * later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful, but
  18.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  20.  * General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License along
  23.  * with this program; if not, write to the Free Software Foundation, Inc.,
  24.  * 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  *
  26.  * This driver was developed with information provided in FREECOM's USB
  27.  * Programmers Reference Guide.  For further information contact Freecom
  28.  * (http://www.freecom.de/)
  29.  */
  30. #include <linux/config.h>
  31. #include "transport.h"
  32. #include "protocol.h"
  33. #include "usb.h"
  34. #include "debug.h"
  35. #include "freecom.h"
  36. #include <linux/hdreg.h>
  37. #ifdef CONFIG_USB_STORAGE_DEBUG
  38. static void pdump (void *, int);
  39. #endif
  40. struct freecom_udata {
  41.         __u8    buffer[64];             /* Common command block. */
  42. };
  43. typedef struct freecom_udata *freecom_udata_t;
  44. /* All of the outgoing packets are 64 bytes long. */
  45. struct freecom_cb_wrap {
  46.         __u8    Type;                   /* Command type. */
  47.         __u8    Timeout;                /* Timeout in seconds. */
  48.         __u8    Atapi[12];              /* An ATAPI packet. */
  49.         __u8    Filler[50];             /* Padding Data. */
  50. };
  51. struct freecom_xfer_wrap {
  52.         __u8    Type;                   /* Command type. */
  53.         __u8    Timeout;                /* Timeout in seconds. */
  54.         __u32   Count;                  /* Number of bytes to transfer. */
  55.         __u8    Pad[58];
  56. } __attribute__ ((packed));
  57. struct freecom_ide_out {
  58.         __u8    Type;                   /* Type + IDE register. */
  59.         __u8    Pad;
  60.         __u16   Value;                  /* Value to write. */
  61.         __u8    Pad2[60];
  62. };
  63. struct freecom_ide_in {
  64.         __u8    Type;                   /* Type | IDE register. */
  65.         __u8    Pad[63];
  66. };
  67. struct freecom_status {
  68.         __u8    Status;
  69.         __u8    Reason;
  70.         __u16   Count;
  71.         __u8    Pad[60];
  72. };
  73. /* Freecom stuffs the interrupt status in the INDEX_STAT bit of the ide
  74.  * register. */
  75. #define FCM_INT_STATUS 0x02 /* INDEX_STAT */
  76. #define FCM_STATUS_BUSY 0x80
  77. /* These are the packet types.  The low bit indicates that this command
  78.  * should wait for an interrupt. */
  79. #define FCM_PACKET_ATAPI 0x21
  80. #define FCM_PACKET_STATUS 0x20
  81. /* Receive data from the IDE interface.  The ATAPI packet has already
  82.  * waited, so the data should be immediately available. */
  83. #define FCM_PACKET_INPUT 0x81
  84. /* Send data to the IDE interface. */
  85. #define FCM_PACKET_OUTPUT 0x01
  86. /* Write a value to an ide register.  Or the ide register to write after
  87.  * munging the address a bit. */
  88. #define FCM_PACKET_IDE_WRITE 0x40
  89. #define FCM_PACKET_IDE_READ 0xC0
  90. /* All packets (except for status) are 64 bytes long. */
  91. #define FCM_PACKET_LENGTH 64
  92. /*
  93.  * Transfer an entire SCSI command's worth of data payload over the bulk
  94.  * pipe.
  95.  *
  96.  * Note that this uses usb_stor_transfer_partial to achieve it's goals -- this
  97.  * function simply determines if we're going to use scatter-gather or not,
  98.  * and acts appropriately.  For now, it also re-interprets the error codes.
  99.  */
  100. static void us_transfer_freecom(Scsi_Cmnd *srb, struct us_data* us, int transfer_amount)
  101. {
  102. int i;
  103. int result = -1;
  104. struct scatterlist *sg;
  105. unsigned int total_transferred = 0;
  106. /* was someone foolish enough to request more data than available
  107.  * buffer space? */
  108. if (transfer_amount > srb->request_bufflen)
  109. transfer_amount = srb->request_bufflen;
  110. /* are we scatter-gathering? */
  111. if (srb->use_sg) {
  112. /* loop over all the scatter gather structures and 
  113.  * make the appropriate requests for each, until done
  114.  */
  115. sg = (struct scatterlist *) srb->request_buffer;
  116. for (i = 0; i < srb->use_sg; i++) {
  117. US_DEBUGP("transfer_amount: %d and total_transferred: %dn", transfer_amount, total_transferred);
  118. /* End this if we're done */
  119. if (transfer_amount == total_transferred)
  120. break;
  121. /* transfer the lesser of the next buffer or the
  122.  * remaining data */
  123. if (transfer_amount - total_transferred >= 
  124. sg[i].length) {
  125. result = usb_stor_transfer_partial(us,
  126. sg[i].address, sg[i].length);
  127. total_transferred += sg[i].length;
  128. } else {
  129. result = usb_stor_transfer_partial(us,
  130. sg[i].address,
  131. transfer_amount - total_transferred);
  132. total_transferred += transfer_amount - total_transferred;
  133. }
  134. /* if we get an error, end the loop here */
  135. if (result)
  136. break;
  137. }
  138. }
  139. else
  140. /* no scatter-gather, just make the request */
  141. result = usb_stor_transfer_partial(us, srb->request_buffer, 
  142.      transfer_amount);
  143. /* return the result in the data structure itself */
  144. srb->result = result;
  145. }
  146. #if 0
  147. /* Write a value to an ide register. */
  148. static int
  149. freecom_ide_write (struct us_data *us, int reg, int value)
  150. {
  151.         freecom_udata_t extra = (freecom_udata_t) us->extra;
  152.         struct freecom_ide_out *ideout =
  153.                 (struct freecom_ide_out *) extra->buffer;
  154.         int opipe;
  155.         int result, partial;
  156.         US_DEBUGP("IDE out 0x%02x <- 0x%02xn", reg, value);
  157.         /* Get handles for both transports. */
  158.         opipe = usb_sndbulkpipe (us->pusb_dev, us->ep_out);
  159.         if (reg < 0 || reg > 8)
  160.                 return USB_STOR_TRANSPORT_ERROR;
  161.         if (reg < 8)
  162.                 reg |= 0x20;
  163.         else
  164.                 reg = 0x0e;
  165.         ideout->Type = FCM_PACKET_IDE_WRITE | reg;
  166.         ideout->Pad = 0;
  167.         ideout->Value = cpu_to_le16 (value);
  168.         memset (ideout->Pad2, 0, sizeof (ideout->Pad2));
  169.         result = usb_stor_bulk_msg (us, ideout, opipe,
  170.                         FCM_PACKET_LENGTH, &partial);
  171.         if (result != 0) {
  172.                 if (result == -ENOENT)
  173.                         return US_BULK_TRANSFER_ABORTED;
  174.                 else
  175.                         return USB_STOR_TRANSPORT_ERROR;
  176.         }
  177.         return USB_STOR_TRANSPORT_GOOD;
  178. }
  179. /* Read a value from an ide register. */
  180. static int
  181. freecom_ide_read (struct us_data *us, int reg, int *value)
  182. {
  183.         freecom_udata_t extra = (freecom_udata_t) us->extra;
  184.         struct freecom_ide_in *idein =
  185.                 (struct freecom_ide_in *) extra->buffer;
  186.         __u8 *buffer = extra->buffer;
  187.         int ipipe, opipe;
  188.         int result, partial;
  189.         int desired_length;
  190.         /* Get handles for both transports. */
  191.         opipe = usb_sndbulkpipe (us->pusb_dev, us->ep_out);
  192.         ipipe = usb_rcvbulkpipe (us->pusb_dev, us->ep_in);
  193.         if (reg < 0 || reg > 8)
  194.                 return USB_STOR_TRANSPORT_ERROR;
  195.         if (reg < 8)
  196.                 reg |= 0x10;
  197.         else
  198.                 reg = 0x0e;
  199.         US_DEBUGP("IDE in request for register 0x%02xn", reg);
  200.         idein->Type = FCM_PACKET_IDE_READ | reg;
  201.         memset (idein->Pad, 0, sizeof (idein->Pad));
  202.         result = usb_stor_bulk_msg (us, idein, opipe,
  203.                         FCM_PACKET_LENGTH, &partial);
  204.         if (result != 0) {
  205.                 if (result == -ENOENT)
  206.                         return US_BULK_TRANSFER_ABORTED;
  207.                 else
  208.                         return USB_STOR_TRANSPORT_ERROR;
  209.         }
  210.         desired_length = 1;
  211.         if (reg == 0x10)
  212.                 desired_length = 2;
  213.         result = usb_stor_bulk_msg (us, buffer, ipipe,
  214.                         desired_length, &partial);
  215.         if (result != 0) {
  216.                 if (result == -ENOENT)
  217.                         return US_BULK_TRANSFER_ABORTED;
  218.                 else
  219.                         return USB_STOR_TRANSPORT_ERROR;
  220.         }
  221.         US_DEBUGP("IDE in partial is %dn", partial);
  222.         if (desired_length == 1)
  223.                 *value = buffer[0];
  224.         else
  225.                 *value = le16_to_cpu (*(__u16 *) buffer);
  226.         US_DEBUGP("IDE in 0x%02x -> 0x%02xn", reg, *value);
  227.         return USB_STOR_TRANSPORT_GOOD;
  228. }
  229. #endif
  230. static int
  231. freecom_readdata (Scsi_Cmnd *srb, struct us_data *us,
  232.                 int ipipe, int opipe, int count)
  233. {
  234.         freecom_udata_t extra = (freecom_udata_t) us->extra;
  235.         struct freecom_xfer_wrap *fxfr =
  236.                 (struct freecom_xfer_wrap *) extra->buffer;
  237.         int result, partial;
  238.         fxfr->Type = FCM_PACKET_INPUT | 0x00;
  239.         fxfr->Timeout = 0;    /* Short timeout for debugging. */
  240.         fxfr->Count = cpu_to_le32 (count);
  241.         memset (fxfr->Pad, 0, sizeof (fxfr->Pad));
  242.         US_DEBUGP("Read data Freecom! (c=%d)n", count);
  243.         /* Issue the transfer command. */
  244.         result = usb_stor_bulk_msg (us, fxfr, opipe,
  245.                         FCM_PACKET_LENGTH, &partial);
  246.         if (result != 0) {
  247.                 US_DEBUGP ("Freecom readdata xpot failure: r=%d, p=%dn",
  248.                                 result, partial);
  249. /* -ENOENT -- we canceled this transfer */
  250. if (result == -ENOENT) {
  251. US_DEBUGP("freecom_readdata(): transfer abortedn");
  252. return US_BULK_TRANSFER_ABORTED;
  253. }
  254.                 return USB_STOR_TRANSPORT_ERROR;
  255.         }
  256.         US_DEBUGP("Done issuing read request: %d %dn", result, partial);
  257.         /* Now transfer all of our blocks. */
  258. US_DEBUGP("Start of readn");
  259. us_transfer_freecom(srb, us, count);
  260.         US_DEBUGP("freecom_readdata done!n");
  261.         return USB_STOR_TRANSPORT_GOOD;
  262. }
  263. static int
  264. freecom_writedata (Scsi_Cmnd *srb, struct us_data *us,
  265.                 int ipipe, int opipe, int count)
  266. {
  267.         freecom_udata_t extra = (freecom_udata_t) us->extra;
  268.         struct freecom_xfer_wrap *fxfr =
  269.                 (struct freecom_xfer_wrap *) extra->buffer;
  270.         int result, partial;
  271.         fxfr->Type = FCM_PACKET_OUTPUT | 0x00;
  272.         fxfr->Timeout = 0;    /* Short timeout for debugging. */
  273.         fxfr->Count = cpu_to_le32 (count);
  274.         memset (fxfr->Pad, 0, sizeof (fxfr->Pad));
  275.         US_DEBUGP("Write data Freecom! (c=%d)n", count);
  276.         /* Issue the transfer command. */
  277.         result = usb_stor_bulk_msg (us, fxfr, opipe,
  278.                         FCM_PACKET_LENGTH, &partial);
  279.         if (result != 0) {
  280.                 US_DEBUGP ("Freecom writedata xpot failure: r=%d, p=%dn",
  281.                                 result, partial);
  282. /* -ENOENT -- we canceled this transfer */
  283. if (result == -ENOENT) {
  284. US_DEBUGP("freecom_writedata(): transfer abortedn");
  285. return US_BULK_TRANSFER_ABORTED;
  286. }
  287.                 return USB_STOR_TRANSPORT_ERROR;
  288.         }
  289.         US_DEBUGP("Done issuing write request: %d %dn",
  290.                         result, partial);
  291.         /* Now transfer all of our blocks. */
  292. US_DEBUGP("Start of writen");
  293. us_transfer_freecom(srb, us, count);
  294.         US_DEBUGP("freecom_writedata done!n");
  295.         return USB_STOR_TRANSPORT_GOOD;
  296. }
  297. /*
  298.  * Transport for the Freecom USB/IDE adaptor.
  299.  *
  300.  */
  301. int freecom_transport(Scsi_Cmnd *srb, struct us_data *us)
  302. {
  303.         struct freecom_cb_wrap *fcb;
  304.         struct freecom_status  *fst;
  305.         int ipipe, opipe;             /* We need both pipes. */
  306.         int result;
  307.         int partial;
  308.         int length;
  309.         freecom_udata_t extra;
  310.         extra = (freecom_udata_t) us->extra;
  311.         fcb = (struct freecom_cb_wrap *) extra->buffer;
  312.         fst = (struct freecom_status *) extra->buffer;
  313.         US_DEBUGP("Freecom TRANSPORT STARTEDn");
  314.         /* Get handles for both transports. */
  315.         opipe = usb_sndbulkpipe (us->pusb_dev, us->ep_out);
  316.         ipipe = usb_rcvbulkpipe (us->pusb_dev, us->ep_in);
  317.         /* The ATAPI Command always goes out first. */
  318.         fcb->Type = FCM_PACKET_ATAPI | 0x00;
  319.         fcb->Timeout = 0;
  320.         memcpy (fcb->Atapi, srb->cmnd, 12);
  321.         memset (fcb->Filler, 0, sizeof (fcb->Filler));
  322.         US_DEBUG(pdump (srb->cmnd, 12));
  323.         /* Send it out. */
  324.         result = usb_stor_bulk_msg (us, fcb, opipe,
  325.                         FCM_PACKET_LENGTH, &partial);
  326.         /* The Freecom device will only fail if there is something wrong in
  327.          * USB land.  It returns the status in its own registers, which
  328.          * come back in the bulk pipe. */
  329.         if (result != 0) {
  330.                 US_DEBUGP ("freecom xport failure: r=%d, p=%dn",
  331.                                 result, partial);
  332. /* -ENOENT -- we canceled this transfer */
  333. if (result == -ENOENT) {
  334. US_DEBUGP("freecom_transport(): transfer abortedn");
  335. return US_BULK_TRANSFER_ABORTED;
  336. }
  337.                 return USB_STOR_TRANSPORT_ERROR;
  338.         }
  339.         /* There are times we can optimize out this status read, but it
  340.          * doesn't hurt us to always do it now. */
  341.         result = usb_stor_bulk_msg (us, fst, ipipe,
  342.                         FCM_PACKET_LENGTH, &partial);
  343.         US_DEBUGP("foo Status result %d %dn", result, partial);
  344. /* -ENOENT -- we canceled this transfer */
  345. if (result == -ENOENT) {
  346. US_DEBUGP("freecom_transport(): transfer abortedn");
  347. return US_BULK_TRANSFER_ABORTED;
  348. }
  349.         US_DEBUG(pdump ((void *) fst, partial));
  350. /* The firmware will time-out commands after 20 seconds. Some commands
  351.  * can legitimately take longer than this, so we use a different
  352.  * command that only waits for the interrupt and then sends status,
  353.  * without having to send a new ATAPI command to the device. 
  354.  *
  355.  * NOTE: There is some indication that a data transfer after a timeout
  356.  * may not work, but that is a condition that should never happen.
  357.  */
  358. while (fst->Status & FCM_STATUS_BUSY) {
  359. US_DEBUGP("20 second USB/ATAPI bridge TIMEOUT occured!n");
  360. US_DEBUGP("fst->Status is %xn", fst->Status);
  361. /* Get the status again */
  362. fcb->Type = FCM_PACKET_STATUS;
  363. fcb->Timeout = 0;
  364. memset (fcb->Atapi, 0, sizeof(fcb->Atapi));
  365. memset (fcb->Filler, 0, sizeof (fcb->Filler));
  366.          /* Send it out. */
  367. result = usb_stor_bulk_msg (us, fcb, opipe,
  368. FCM_PACKET_LENGTH, &partial);
  369. /* The Freecom device will only fail if there is something
  370.  * wrong in USB land.  It returns the status in its own
  371.  * registers, which come back in the bulk pipe.
  372.  */
  373. if (result != 0) {
  374. US_DEBUGP ("freecom xport failure: r=%d, p=%dn",
  375. result, partial);
  376. /* -ENOENT -- we canceled this transfer */
  377. if (result == -ENOENT) {
  378. US_DEBUGP("freecom_transport(): transfer abortedn");
  379. return US_BULK_TRANSFER_ABORTED;
  380. }
  381. return USB_STOR_TRANSPORT_ERROR;
  382. }
  383. /* get the data */
  384.          result = usb_stor_bulk_msg (us, fst, ipipe,
  385. FCM_PACKET_LENGTH, &partial);
  386. US_DEBUGP("bar Status result %d %dn", result, partial);
  387. /* -ENOENT -- we canceled this transfer */
  388. if (result == -ENOENT) {
  389. US_DEBUGP("freecom_transport(): transfer abortedn");
  390. return US_BULK_TRANSFER_ABORTED;
  391. }
  392. US_DEBUG(pdump ((void *) fst, partial));
  393. }
  394.         if (partial != 4 || result != 0) {
  395.                 return USB_STOR_TRANSPORT_ERROR;
  396.         }
  397.         if ((fst->Status & 1) != 0) {
  398.                 US_DEBUGP("operation failedn");
  399.                 return USB_STOR_TRANSPORT_FAILED;
  400.         }
  401.         /* The device might not have as much data available as we
  402.          * requested.  If you ask for more than the device has, this reads
  403.          * and such will hang. */
  404.         US_DEBUGP("Device indicates that it has %d bytes availablen",
  405.                         le16_to_cpu (fst->Count));
  406.         US_DEBUGP("SCSI requested %dn", usb_stor_transfer_length(srb));
  407.         /* Find the length we desire to read. */
  408. switch (srb->cmnd[0]) {
  409. case INQUIRY:
  410. case REQUEST_SENSE: /* 16 or 18 bytes? spec says 18, lots of devices only have 16 */
  411. case MODE_SENSE:
  412. case MODE_SENSE_10:
  413. length = fst->Count;
  414. break;
  415. default:
  416.   length = usb_stor_transfer_length (srb);
  417. }
  418. /* verify that this amount is legal */
  419. if (length > srb->request_bufflen) {
  420. length = srb->request_bufflen;
  421. US_DEBUGP("Truncating request to match buffer length: %dn", length);
  422. }
  423.         /* What we do now depends on what direction the data is supposed to
  424.          * move in. */
  425.         switch (us->srb->sc_data_direction) {
  426.         case SCSI_DATA_READ:
  427.                 /* Make sure that the status indicates that the device
  428.                  * wants data as well. */
  429.                 if ((fst->Status & DRQ_STAT) == 0 || (fst->Reason & 3) != 2) {
  430.                         US_DEBUGP("SCSI wants data, drive doesn't have anyn");
  431.                         return USB_STOR_TRANSPORT_FAILED;
  432.                 }
  433.                 result = freecom_readdata (srb, us, ipipe, opipe, length);
  434.                 if (result != USB_STOR_TRANSPORT_GOOD)
  435.                         return result;
  436.                 US_DEBUGP("FCM: Waiting for statusn");
  437.                 result = usb_stor_bulk_msg (us, fst, ipipe,
  438.                                 FCM_PACKET_LENGTH, &partial);
  439. US_DEBUG(pdump ((void *) fst, partial));
  440.                 if (result == -ENOENT) {
  441.                         US_DEBUGP ("freecom_transport: transfer abortedn");
  442.                         return US_BULK_TRANSFER_ABORTED;
  443.                 }
  444.                 if (partial != 4 || result != 0)
  445.                         return USB_STOR_TRANSPORT_ERROR;
  446.                 if ((fst->Status & ERR_STAT) != 0) {
  447.                         US_DEBUGP("operation failedn");
  448.                         return USB_STOR_TRANSPORT_FAILED;
  449.                 }
  450.                 if ((fst->Reason & 3) != 3) {
  451.                         US_DEBUGP("Drive seems still hungryn");
  452.                         return USB_STOR_TRANSPORT_FAILED;
  453.                 }
  454.                 US_DEBUGP("Transfer happyn");
  455.                 break;
  456.         case SCSI_DATA_WRITE:
  457.                 /* Make sure the status indicates that the device wants to
  458.                  * send us data. */
  459.                 /* !!IMPLEMENT!! */
  460.                 result = freecom_writedata (srb, us, ipipe, opipe, length);
  461.                 if (result != USB_STOR_TRANSPORT_GOOD)
  462.                         return result;
  463.                 US_DEBUGP("FCM: Waiting for statusn");
  464.                 result = usb_stor_bulk_msg (us, fst, ipipe,
  465.                                 FCM_PACKET_LENGTH, &partial);
  466.                 if (result == -ENOENT) {
  467.                         US_DEBUGP ("freecom_transport: transfer abortedn");
  468.                         return US_BULK_TRANSFER_ABORTED;
  469.                 }
  470.                 if (partial != 4 || result != 0)
  471.                         return USB_STOR_TRANSPORT_ERROR;
  472.                 if ((fst->Status & ERR_STAT) != 0) {
  473.                         US_DEBUGP("operation failedn");
  474.                         return USB_STOR_TRANSPORT_FAILED;
  475.                 }
  476.                 if ((fst->Reason & 3) != 3) {
  477.                         US_DEBUGP("Drive seems still hungryn");
  478.                         return USB_STOR_TRANSPORT_FAILED;
  479.                 }
  480.                 US_DEBUGP("Transfer happyn");
  481.                 break;
  482.         case SCSI_DATA_NONE:
  483.                 /* Easy, do nothing. */
  484.                 break;
  485.         default:
  486.                 US_DEBUGP ("freecom unimplemented direction: %dn",
  487.                                 us->srb->sc_data_direction);
  488.                 // Return fail, SCSI seems to handle this better.
  489.                 return USB_STOR_TRANSPORT_FAILED;
  490.                 break;
  491.         }
  492.         return USB_STOR_TRANSPORT_GOOD;
  493.         US_DEBUGP("Freecom: transfer_length = %dn",
  494. usb_stor_transfer_length (srb));
  495.         US_DEBUGP("Freecom: direction = %dn", srb->sc_data_direction);
  496.         return USB_STOR_TRANSPORT_ERROR;
  497. }
  498. int
  499. freecom_init (struct us_data *us)
  500. {
  501.         int result;
  502. char buffer[33];
  503.         /* Allocate a buffer for us.  The upper usb transport code will
  504.          * free this for us when cleaning up. */
  505.         if (us->extra == NULL) {
  506.                 us->extra = kmalloc (sizeof (struct freecom_udata),
  507.                                 GFP_KERNEL);
  508.                 if (us->extra == NULL) {
  509.                         US_DEBUGP("Out of memoryn");
  510.                         return USB_STOR_TRANSPORT_ERROR;
  511.                 }
  512.         }
  513. result = usb_control_msg(us->pusb_dev,
  514. usb_rcvctrlpipe(us->pusb_dev, 0),
  515. 0x4c, 0xc0, 0x4346, 0x0, buffer, 0x20, 3*HZ);
  516. buffer[32] = '';
  517. US_DEBUGP("String returned from FC init is: %sn", buffer);
  518. /* Special thanks to the people at Freecom for providing me with
  519.  * this "magic sequence", which they use in their Windows and MacOS
  520.  * drivers to make sure that all the attached perhiperals are
  521.  * properly reset.
  522.  */
  523. /* send reset */
  524. result = usb_control_msg(us->pusb_dev,
  525. usb_sndctrlpipe(us->pusb_dev, 0),
  526. 0x4d, 0x40, 0x24d8, 0x0, NULL, 0x0, 3*HZ);
  527. US_DEBUGP("result from activate reset is %dn", result);
  528. /* wait 250ms */
  529. mdelay(250);
  530. /* clear reset */
  531. result = usb_control_msg(us->pusb_dev,
  532. usb_sndctrlpipe(us->pusb_dev, 0),
  533. 0x4d, 0x40, 0x24f8, 0x0, NULL, 0x0, 3*HZ);
  534. US_DEBUGP("result from clear reset is %dn", result);
  535. /* wait 3 seconds */
  536. mdelay(3 * 1000);
  537.         return USB_STOR_TRANSPORT_GOOD;
  538. }
  539. int usb_stor_freecom_reset(struct us_data *us)
  540. {
  541.         printk (KERN_CRIT "freecom reset calledn");
  542.         /* We don't really have this feature. */
  543.         return FAILED;
  544. }
  545. #ifdef CONFIG_USB_STORAGE_DEBUG
  546. static void pdump (void *ibuffer, int length)
  547. {
  548. static char line[80];
  549. int offset = 0;
  550. unsigned char *buffer = (unsigned char *) ibuffer;
  551. int i, j;
  552. int from, base;
  553. offset = 0;
  554. for (i = 0; i < length; i++) {
  555. if ((i & 15) == 0) {
  556. if (i > 0) {
  557. offset += sprintf (line+offset, " - ");
  558. for (j = i - 16; j < i; j++) {
  559. if (buffer[j] >= 32 && buffer[j] <= 126)
  560. line[offset++] = buffer[j];
  561. else
  562. line[offset++] = '.';
  563. }
  564. line[offset] = 0;
  565. US_DEBUGP("%sn", line);
  566. offset = 0;
  567. }
  568. offset += sprintf (line+offset, "%08x:", i);
  569. }
  570. else if ((i & 7) == 0) {
  571. offset += sprintf (line+offset, " -");
  572. }
  573. offset += sprintf (line+offset, " %02x", buffer[i] & 0xff);
  574. }
  575. /* Add the last "chunk" of data. */
  576. from = (length - 1) % 16;
  577. base = ((length - 1) / 16) * 16;
  578. for (i = from + 1; i < 16; i++)
  579. offset += sprintf (line+offset, "   ");
  580. if (from < 8)
  581. offset += sprintf (line+offset, "  ");
  582. offset += sprintf (line+offset, " - ");
  583. for (i = 0; i <= from; i++) {
  584. if (buffer[base+i] >= 32 && buffer[base+i] <= 126)
  585. line[offset++] = buffer[base+i];
  586. else
  587. line[offset++] = '.';
  588. }
  589. line[offset] = 0;
  590. US_DEBUGP("%sn", line);
  591. offset = 0;
  592. }
  593. #endif