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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Driver for USB Mass Storage compliant devices
  2.  * Debugging Functions Source Code File
  3.  *
  4.  * $Id: debug.c,v 1.5 2001/06/27 23:20:45 mdharm Exp $
  5.  *
  6.  * Current development and maintenance by:
  7.  *   (c) 1999, 2000 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
  8.  *
  9.  * Initial work by:
  10.  *   (c) 1999 Michael Gee (michael@linuxspecific.com)
  11.  *
  12.  * This driver is based on the 'USB Mass Storage Class' document. This
  13.  * describes in detail the protocol used to communicate with such
  14.  * devices.  Clearly, the designers had SCSI and ATAPI commands in
  15.  * mind when they created this document.  The commands are all very
  16.  * similar to commands in the SCSI-II and ATAPI specifications.
  17.  *
  18.  * It is important to note that in a number of cases this class
  19.  * exhibits class-specific exemptions from the USB specification.
  20.  * Notably the usage of NAK, STALL and ACK differs from the norm, in
  21.  * that they are used to communicate wait, failed and OK on commands.
  22.  *
  23.  * Also, for certain devices, the interrupt endpoint is used to convey
  24.  * status of a command.
  25.  *
  26.  * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
  27.  * information about this driver.
  28.  *
  29.  * This program is free software; you can redistribute it and/or modify it
  30.  * under the terms of the GNU General Public License as published by the
  31.  * Free Software Foundation; either version 2, or (at your option) any
  32.  * later version.
  33.  *
  34.  * This program is distributed in the hope that it will be useful, but
  35.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  36.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  37.  * General Public License for more details.
  38.  *
  39.  * You should have received a copy of the GNU General Public License along
  40.  * with this program; if not, write to the Free Software Foundation, Inc.,
  41.  * 675 Mass Ave, Cambridge, MA 02139, USA.
  42.  */
  43. #include "debug.h"
  44. void usb_stor_show_command(Scsi_Cmnd *srb)
  45. {
  46. char *what = NULL;
  47. switch (srb->cmnd[0]) {
  48. case TEST_UNIT_READY: what = "TEST_UNIT_READY"; break;
  49. case REZERO_UNIT: what = "REZERO_UNIT"; break;
  50. case REQUEST_SENSE: what = "REQUEST_SENSE"; break;
  51. case FORMAT_UNIT: what = "FORMAT_UNIT"; break;
  52. case READ_BLOCK_LIMITS: what = "READ_BLOCK_LIMITS"; break;
  53. case REASSIGN_BLOCKS: what = "REASSIGN_BLOCKS"; break;
  54. case READ_6: what = "READ_6"; break;
  55. case WRITE_6: what = "WRITE_6"; break;
  56. case SEEK_6: what = "SEEK_6"; break;
  57. case READ_REVERSE: what = "READ_REVERSE"; break;
  58. case WRITE_FILEMARKS: what = "WRITE_FILEMARKS"; break;
  59. case SPACE: what = "SPACE"; break;
  60. case INQUIRY: what = "INQUIRY"; break;
  61. case RECOVER_BUFFERED_DATA: what = "RECOVER_BUFFERED_DATA"; break;
  62. case MODE_SELECT: what = "MODE_SELECT"; break;
  63. case RESERVE: what = "RESERVE"; break;
  64. case RELEASE: what = "RELEASE"; break;
  65. case COPY: what = "COPY"; break;
  66. case ERASE: what = "ERASE"; break;
  67. case MODE_SENSE: what = "MODE_SENSE"; break;
  68. case START_STOP: what = "START_STOP"; break;
  69. case RECEIVE_DIAGNOSTIC: what = "RECEIVE_DIAGNOSTIC"; break;
  70. case SEND_DIAGNOSTIC: what = "SEND_DIAGNOSTIC"; break;
  71. case ALLOW_MEDIUM_REMOVAL: what = "ALLOW_MEDIUM_REMOVAL"; break;
  72. case SET_WINDOW: what = "SET_WINDOW"; break;
  73. case READ_CAPACITY: what = "READ_CAPACITY"; break;
  74. case READ_10: what = "READ_10"; break;
  75. case WRITE_10: what = "WRITE_10"; break;
  76. case SEEK_10: what = "SEEK_10"; break;
  77. case WRITE_VERIFY: what = "WRITE_VERIFY"; break;
  78. case VERIFY: what = "VERIFY"; break;
  79. case SEARCH_HIGH: what = "SEARCH_HIGH"; break;
  80. case SEARCH_EQUAL: what = "SEARCH_EQUAL"; break;
  81. case SEARCH_LOW: what = "SEARCH_LOW"; break;
  82. case SET_LIMITS: what = "SET_LIMITS"; break;
  83. case READ_POSITION: what = "READ_POSITION"; break;
  84. case SYNCHRONIZE_CACHE: what = "SYNCHRONIZE_CACHE"; break;
  85. case LOCK_UNLOCK_CACHE: what = "LOCK_UNLOCK_CACHE"; break;
  86. case READ_DEFECT_DATA: what = "READ_DEFECT_DATA"; break;
  87. case MEDIUM_SCAN: what = "MEDIUM_SCAN"; break;
  88. case COMPARE: what = "COMPARE"; break;
  89. case COPY_VERIFY: what = "COPY_VERIFY"; break;
  90. case WRITE_BUFFER: what = "WRITE_BUFFER"; break;
  91. case READ_BUFFER: what = "READ_BUFFER"; break;
  92. case UPDATE_BLOCK: what = "UPDATE_BLOCK"; break;
  93. case READ_LONG: what = "READ_LONG"; break;
  94. case WRITE_LONG: what = "WRITE_LONG"; break;
  95. case CHANGE_DEFINITION: what = "CHANGE_DEFINITION"; break;
  96. case WRITE_SAME: what = "WRITE_SAME"; break;
  97. case GPCMD_READ_SUBCHANNEL: what = "READ SUBCHANNEL"; break;
  98. case READ_TOC: what = "READ_TOC"; break;
  99. case GPCMD_READ_HEADER: what = "READ HEADER"; break;
  100. case GPCMD_PLAY_AUDIO_10: what = "PLAY AUDIO (10)"; break;
  101. case GPCMD_PLAY_AUDIO_MSF: what = "PLAY AUDIO MSF"; break;
  102. case GPCMD_GET_EVENT_STATUS_NOTIFICATION:
  103. what = "GET EVENT/STATUS NOTIFICATION"; break;
  104. case GPCMD_PAUSE_RESUME: what = "PAUSE/RESUME"; break;
  105. case LOG_SELECT: what = "LOG_SELECT"; break;
  106. case LOG_SENSE: what = "LOG_SENSE"; break;
  107. case GPCMD_STOP_PLAY_SCAN: what = "STOP PLAY/SCAN"; break;
  108. case GPCMD_READ_DISC_INFO: what = "READ DISC INFORMATION"; break;
  109. case GPCMD_READ_TRACK_RZONE_INFO:
  110. what = "READ TRACK INFORMATION"; break;
  111. case GPCMD_RESERVE_RZONE_TRACK: what = "RESERVE TRACK"; break;
  112. case GPCMD_SEND_OPC: what = "SEND OPC"; break;
  113. case MODE_SELECT_10: what = "MODE_SELECT_10"; break;
  114. case GPCMD_REPAIR_RZONE_TRACK: what = "REPAIR TRACK"; break;
  115. case 0x59: what = "READ MASTER CUE"; break;
  116. case MODE_SENSE_10: what = "MODE_SENSE_10"; break;
  117. case GPCMD_CLOSE_TRACK: what = "CLOSE TRACK/SESSION"; break;
  118. case 0x5C: what = "READ BUFFER CAPACITY"; break;
  119. case 0x5D: what = "SEND CUE SHEET"; break;
  120. case GPCMD_BLANK: what = "BLANK"; break;
  121. case MOVE_MEDIUM: what = "MOVE_MEDIUM or PLAY AUDIO (12)"; break;
  122. case READ_12: what = "READ_12"; break;
  123. case WRITE_12: what = "WRITE_12"; break;
  124. case WRITE_VERIFY_12: what = "WRITE_VERIFY_12"; break;
  125. case SEARCH_HIGH_12: what = "SEARCH_HIGH_12"; break;
  126. case SEARCH_EQUAL_12: what = "SEARCH_EQUAL_12"; break;
  127. case SEARCH_LOW_12: what = "SEARCH_LOW_12"; break;
  128. case SEND_VOLUME_TAG: what = "SEND_VOLUME_TAG"; break;
  129. case READ_ELEMENT_STATUS: what = "READ_ELEMENT_STATUS"; break;
  130. case GPCMD_READ_CD_MSF: what = "READ CD MSF"; break;
  131. case GPCMD_SCAN: what = "SCAN"; break;
  132. case GPCMD_SET_SPEED: what = "SET CD SPEED"; break;
  133. case GPCMD_MECHANISM_STATUS: what = "MECHANISM STATUS"; break;
  134. case GPCMD_READ_CD: what = "READ CD"; break;
  135. case 0xE1: what = "WRITE CONTINUE"; break;
  136. case WRITE_LONG_2: what = "WRITE_LONG_2"; break;
  137. default: what = "(unknown command)"; break;
  138. }
  139. US_DEBUGP("Command %s (%d bytes)n", what, srb->cmd_len);
  140. US_DEBUGP("%02x %02x %02x %02x "
  141.   "%02x %02x %02x %02x "
  142.   "%02x %02x %02x %02xn",
  143.   srb->cmnd[0], srb->cmnd[1], srb->cmnd[2], srb->cmnd[3],
  144.   srb->cmnd[4], srb->cmnd[5], srb->cmnd[6], srb->cmnd[7],
  145.   srb->cmnd[8], srb->cmnd[9], srb->cmnd[10],
  146.   srb->cmnd[11]);
  147. }
  148. void usb_stor_print_Scsi_Cmnd( Scsi_Cmnd* cmd )
  149. {
  150. int i=0, bufferSize = cmd->request_bufflen;
  151. u8* buffer = cmd->request_buffer;
  152. struct scatterlist* sg = (struct scatterlist*)cmd->request_buffer;
  153. US_DEBUGP("Dumping information about %p.n", cmd );
  154. US_DEBUGP("cmd->cmnd[0] value is %d.n", cmd->cmnd[0] );
  155. US_DEBUGP("(MODE_SENSE is %d and MODE_SENSE_10 is %d)n",
  156.   MODE_SENSE, MODE_SENSE_10 );
  157. US_DEBUGP("buffer is %p with length %d.n", buffer, bufferSize );
  158. for ( i=0; i<bufferSize; i+=16 )
  159. {
  160. US_DEBUGP("%02x %02x %02x %02x %02x %02x %02x %02xn"
  161.   "%02x %02x %02x %02x %02x %02x %02x %02xn",
  162.   buffer[i],
  163.   buffer[i+1],
  164.   buffer[i+2],
  165.   buffer[i+3],
  166.   buffer[i+4],
  167.   buffer[i+5],
  168.   buffer[i+6],
  169.   buffer[i+7],
  170.   buffer[i+8],
  171.   buffer[i+9],
  172.   buffer[i+10],
  173.   buffer[i+11],
  174.   buffer[i+12],
  175.   buffer[i+13],
  176.   buffer[i+14],
  177.   buffer[i+15] );
  178. }
  179. US_DEBUGP("Buffer has %d scatterlists.n", cmd->use_sg );
  180. for ( i=0; i<cmd->use_sg; i++ )
  181. {
  182. US_DEBUGP("Length of scatterlist %d is %d.n",i,sg[i].length);
  183. US_DEBUGP("%02x %02x %02x %02x %02x %02x %02x %02xn"
  184.   "%02x %02x %02x %02x %02x %02x %02x %02xn",
  185.   sg[i].address[0],
  186.   sg[i].address[1],
  187.   sg[i].address[2],
  188.   sg[i].address[3],
  189.   sg[i].address[4],
  190.   sg[i].address[5],
  191.   sg[i].address[6],
  192.   sg[i].address[7],
  193.   sg[i].address[8],
  194.   sg[i].address[9],
  195.   sg[i].address[10],
  196.   sg[i].address[11],
  197.   sg[i].address[12],
  198.   sg[i].address[13],
  199.   sg[i].address[14],
  200.   sg[i].address[15]);
  201. }
  202. }
  203. void usb_stor_show_sense(
  204. unsigned char key,
  205. unsigned char asc,
  206. unsigned char ascq) {
  207. char *keys[] = {
  208. "No Sense",
  209. "Recovered Error",
  210. "Not Ready",
  211. "Medium Error",
  212. "Hardware Error",
  213. "Illegal Request",
  214. "Unit Attention",
  215. "Data Protect",
  216. "Blank Check",
  217. "Vendor Specific",
  218. "Copy Aborted",
  219. "Aborted Command",
  220. "(Obsolete)",
  221. "Volume Overflow",
  222. "Miscompare"
  223. };
  224. unsigned short qual = asc;
  225. char *what = 0;
  226. char *keystr = 0;
  227. qual <<= 8;
  228. qual |= ascq;
  229. if (key>0x0E)
  230. keystr = "(Unknown Key)";
  231. else
  232. keystr = keys[key];
  233. switch (qual) {
  234. case 0x0000: what="no additional sense information"; break;
  235. case 0x0001: what="filemark detected"; break;
  236. case 0x0002: what="end of partition/medium detected"; break;
  237. case 0x0003: what="setmark detected"; break;
  238. case 0x0004: what="beginning of partition/medium detected"; break;
  239. case 0x0005: what="end of data detected"; break;
  240. case 0x0006: what="I/O process terminated"; break;
  241. case 0x0011: what="audio play operation in progress"; break;
  242. case 0x0012: what="audio play operation paused"; break;
  243. case 0x0013: what="audio play operation stopped due to error"; break;
  244. case 0x0014: what="audio play operation successfully completed"; break;
  245. case 0x0015: what="no current audio status to return"; break;
  246. case 0x0016: what="operation in progress"; break;
  247. case 0x0017: what="cleaning requested"; break;
  248. case 0x0100: what="no index/sector signal"; break;
  249. case 0x0200: what="no seek complete"; break;
  250. case 0x0300: what="peripheral device write fault"; break;
  251. case 0x0301: what="no write current"; break;
  252. case 0x0302: what="excessive write errors"; break;
  253. case 0x0400: what="LUN not ready, cause not reportable"; break;
  254. case 0x0401: what="LUN in process of becoming ready"; break;
  255. case 0x0402: what="LUN not ready, initializing cmd. required"; break;
  256. case 0x0403: what="LUN not ready, manual intervention required"; break;
  257. case 0x0404: what="LUN not ready, format in progress"; break;
  258. case 0x0405: what="LUN not ready, rebuild in progress"; break;
  259. case 0x0406: what="LUN not ready, recalculation in progress"; break;
  260. case 0x0407: what="LUN not ready, operation in progress"; break;
  261. case 0x0408: what="LUN not ready, long write in progress"; break;
  262. case 0x0500: what="LUN doesn't respond to selection"; break;
  263. case 0x0A00: what="error log overflow"; break;
  264. case 0x0C04: what="compression check miscompare error"; break;
  265. case 0x0C05: what="data expansion occurred during compression"; break;
  266. case 0x0C06: what="block not compressible"; break;
  267. case 0x1102: what="error too long to correct"; break;
  268. case 0x1106: what="CIRC unrecovered error"; break;
  269. case 0x1107: what="data resynchronization error"; break;
  270. case 0x110D: what="decompression CRC error"; break;
  271. case 0x110E: what="can't decompress using declared algorithm"; break;
  272. case 0x110F: what="error reading UPC/EAN number"; break;
  273. case 0x1110: what="error reading ISRC number"; break;
  274. case 0x1200: what="address mark not found for ID field"; break;
  275. case 0x1300: what="address mark not found for data field"; break;
  276. case 0x1403: what="end of data not found"; break;
  277. case 0x1404: what="block sequence error"; break;
  278. case 0x1600: what="data sync mark error"; break;
  279. case 0x1601: what="data sync error: data rewritten"; break;
  280. case 0x1602: what="data sync error: recommend rewrite"; break;
  281. case 0x1603: what="data sync error: data auto-reallocated"; break;
  282. case 0x1604: what="data sync error: recommend reassignment"; break;
  283. case 0x1900: what="defect list error"; break;
  284. case 0x1901: what="defect list not available"; break;
  285. case 0x1902: what="defect list error in primary list"; break;
  286. case 0x1903: what="defect list error in grown list"; break;
  287. case 0x1C00: what="defect list not found"; break;
  288. case 0x2400: what="invalid field in CDB"; break;
  289. case 0x2703: what="associated write protect"; break;
  290. case 0x2800: what="not ready to ready transition"; break;
  291. case 0x2903: what="bus device reset function occurred"; break;
  292. case 0x2904: what="device internal reset"; break;
  293. case 0x2B00: what="copy can't execute / host can't disconnect"; break;
  294. case 0x2C00: what="command sequence error"; break;
  295. case 0x2C03: what="current program area is not empty"; break;
  296. case 0x2C04: what="current program area is empty"; break;
  297. case 0x2F00: what="commands cleared by another initiator"; break;
  298. case 0x3001: what="can't read medium: unknown format"; break;
  299. case 0x3002: what="can't read medium: incompatible format"; break;
  300. case 0x3003: what="cleaning cartridge installed"; break;
  301. case 0x3004: what="can't write medium: unknown format"; break;
  302. case 0x3005: what="can't write medium: incompatible format"; break;
  303. case 0x3006: what="can't format medium: incompatible medium"; break;
  304. case 0x3007: what="cleaning failure"; break;
  305. case 0x3008: what="can't write: application code mismatch"; break;
  306. case 0x3009: what="current session not fixated for append"; break;
  307. case 0x3201: what="defect list update failure"; break;
  308. case 0x3400: what="enclosure failure"; break;
  309. case 0x3500: what="enclosure services failure"; break;
  310. case 0x3502: what="enclosure services unavailable"; break;
  311. case 0x3503: what="enclosure services transfer failure"; break;
  312. case 0x3504: what="enclosure services transfer refused"; break;
  313. case 0x3B0F: what="end of medium reached"; break;
  314. case 0x3F02: what="changed operating definition"; break;
  315. case 0x4100: what="data path failure (should use 40 NN)"; break;
  316. case 0x4A00: what="command phase error"; break;
  317. case 0x4B00: what="data phase error"; break;
  318. case 0x5100: what="erase failure"; break;
  319. case 0x5200: what="cartridge fault"; break;
  320. case 0x6300: what="end of user area encountered on this track"; break;
  321. case 0x6600: what="automatic document feeder cover up"; break;
  322. case 0x6601: what="automatic document feeder lift up"; break;
  323. case 0x6602: what="document jam in auto doc feeder"; break;
  324. case 0x6603: what="document miss feed auto in doc feeder"; break;
  325. case 0x6700: what="configuration failure"; break;
  326. case 0x6701: what="configuration of incapable LUN's failed"; break;
  327. case 0x6702: what="add logical unit failed"; break;
  328. case 0x6706: what="attachment of logical unit failed"; break;
  329. case 0x6707: what="creation of logical unit failed"; break;
  330. case 0x6900: what="data loss on logical unit"; break;
  331. case 0x6E00: what="command to logical unit failed"; break;
  332. case 0x7100: what="decompression exception long algorithm ID"; break;
  333. case 0x7204: what="empty or partially written reserved track"; break;
  334. case 0x7300: what="CD control error"; break;
  335. default:
  336. if (asc==0x40) {
  337. US_DEBUGP("%s: diagnostic failure on component"
  338.   " %02Xn", keystr, ascq);
  339. return;
  340. }
  341. if (asc==0x70) {
  342. US_DEBUGP("%s: decompression exception short"
  343.   " algorithm ID of %02Xn", keystr, ascq);
  344. return;
  345. }
  346. what = "(unknown ASC/ASCQ)";
  347. }
  348. US_DEBUGP("%s: %sn", keystr, what);
  349. }