1 /* Driver for SanDisk SDDR-55 SmartMedia reader
9 * Current development and maintenance by:
10 * (c) 2002 Simon Munton
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
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.
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.
27 #include <linux/jiffies.h>
28 #include <linux/errno.h>
29 #include <linux/slab.h>
31 #include <scsi/scsi.h>
32 #include <scsi/scsi_cmnd.h>
35 #include "transport.h"
41 #define short_pack(lsb,msb) ( ((u16)(lsb)) | ( ((u16)(msb))<<8 ) )
42 #define LSB_of(s) ((s)&0xFF)
43 #define MSB_of(s) ((s)>>8)
46 #define set_sense_info(sk, asc, ascq) \
48 info->sense_data[2] = sk; \
49 info->sense_data[12] = asc; \
50 info->sense_data[13] = ascq; \
54 struct sddr55_card_info
{
55 unsigned long capacity
; /* Size of card in bytes */
56 int max_log_blks
; /* maximum number of logical blocks */
57 int pageshift
; /* log2 of pagesize */
58 int smallpageshift
; /* 1 if pagesize == 256 */
59 int blocksize
; /* Size of block in pages */
60 int blockshift
; /* log2 of blocksize */
61 int blockmask
; /* 2^blockshift - 1 */
62 int read_only
; /* non zero if card is write protected */
63 int force_read_only
; /* non zero if we find a map error*/
64 int *lba_to_pba
; /* logical to physical map */
65 int *pba_to_lba
; /* physical to logical map */
66 int fatal_error
; /* set if we detect something nasty */
67 unsigned long last_access
; /* number of jiffies since we last talked to device */
68 unsigned char sense_data
[18];
72 #define NOT_ALLOCATED 0xffffffff
73 #define BAD_BLOCK 0xffff
74 #define CIS_BLOCK 0x400
75 #define UNUSED_BLOCK 0x3ff
78 sddr55_bulk_transport(struct us_data
*us
, int direction
,
79 unsigned char *data
, unsigned int len
) {
80 struct sddr55_card_info
*info
= (struct sddr55_card_info
*)us
->extra
;
81 unsigned int pipe
= (direction
== DMA_FROM_DEVICE
) ?
82 us
->recv_bulk_pipe
: us
->send_bulk_pipe
;
85 return USB_STOR_XFER_GOOD
;
86 info
->last_access
= jiffies
;
87 return usb_stor_bulk_transfer_buf(us
, pipe
, data
, len
, NULL
);
90 /* check if card inserted, if there is, update read_only status
91 * return non zero if no card
94 static int sddr55_status(struct us_data
*us
)
97 unsigned char *command
= us
->iobuf
;
98 unsigned char *status
= us
->iobuf
;
99 struct sddr55_card_info
*info
= (struct sddr55_card_info
*)us
->extra
;
102 memset(command
, 0, 8);
105 result
= sddr55_bulk_transport(us
,
106 DMA_TO_DEVICE
, command
, 8);
108 US_DEBUGP("Result for send_command in status %d\n",
111 if (result
!= USB_STOR_XFER_GOOD
) {
112 set_sense_info (4, 0, 0); /* hardware error */
113 return USB_STOR_TRANSPORT_ERROR
;
116 result
= sddr55_bulk_transport(us
,
117 DMA_FROM_DEVICE
, status
, 4);
119 /* expect to get short transfer if no card fitted */
120 if (result
== USB_STOR_XFER_SHORT
|| result
== USB_STOR_XFER_STALLED
) {
121 /* had a short transfer, no card inserted, free map memory */
122 kfree(info
->lba_to_pba
);
123 kfree(info
->pba_to_lba
);
124 info
->lba_to_pba
= NULL
;
125 info
->pba_to_lba
= NULL
;
127 info
->fatal_error
= 0;
128 info
->force_read_only
= 0;
130 set_sense_info (2, 0x3a, 0); /* not ready, medium not present */
131 return USB_STOR_TRANSPORT_FAILED
;
134 if (result
!= USB_STOR_XFER_GOOD
) {
135 set_sense_info (4, 0, 0); /* hardware error */
136 return USB_STOR_TRANSPORT_FAILED
;
139 /* check write protect status */
140 info
->read_only
= (status
[0] & 0x20);
142 /* now read status */
143 result
= sddr55_bulk_transport(us
,
144 DMA_FROM_DEVICE
, status
, 2);
146 if (result
!= USB_STOR_XFER_GOOD
) {
147 set_sense_info (4, 0, 0); /* hardware error */
150 return (result
== USB_STOR_XFER_GOOD
?
151 USB_STOR_TRANSPORT_GOOD
: USB_STOR_TRANSPORT_FAILED
);
155 static int sddr55_read_data(struct us_data
*us
,
158 unsigned short sectors
) {
160 int result
= USB_STOR_TRANSPORT_GOOD
;
161 unsigned char *command
= us
->iobuf
;
162 unsigned char *status
= us
->iobuf
;
163 struct sddr55_card_info
*info
= (struct sddr55_card_info
*)us
->extra
;
164 unsigned char *buffer
;
167 unsigned long address
;
169 unsigned short pages
;
170 unsigned int len
, offset
;
171 struct scatterlist
*sg
;
173 // Since we only read in one block at a time, we have to create
174 // a bounce buffer and move the data a piece at a time between the
175 // bounce buffer and the actual transfer buffer.
177 len
= min((unsigned int) sectors
, (unsigned int) info
->blocksize
>>
178 info
->smallpageshift
) * PAGESIZE
;
179 buffer
= kmalloc(len
, GFP_NOIO
);
181 return USB_STOR_TRANSPORT_ERROR
; /* out of memory */
187 /* have we got to end? */
188 if (lba
>= info
->max_log_blks
)
191 pba
= info
->lba_to_pba
[lba
];
193 // Read as many sectors as possible in this block
195 pages
= min((unsigned int) sectors
<< info
->smallpageshift
,
196 info
->blocksize
- page
);
197 len
= pages
<< info
->pageshift
;
199 US_DEBUGP("Read %02X pages, from PBA %04X"
200 " (LBA %04X) page %02X\n",
201 pages
, pba
, lba
, page
);
203 if (pba
== NOT_ALLOCATED
) {
204 /* no pba for this lba, fill with zeroes */
205 memset (buffer
, 0, len
);
208 address
= (pba
<< info
->blockshift
) + page
;
211 command
[1] = LSB_of(address
>>16);
212 command
[2] = LSB_of(address
>>8);
213 command
[3] = LSB_of(address
);
217 command
[6] = LSB_of(pages
<< (1 - info
->smallpageshift
));
221 result
= sddr55_bulk_transport(us
,
222 DMA_TO_DEVICE
, command
, 8);
224 US_DEBUGP("Result for send_command in read_data %d\n",
227 if (result
!= USB_STOR_XFER_GOOD
) {
228 result
= USB_STOR_TRANSPORT_ERROR
;
233 result
= sddr55_bulk_transport(us
,
234 DMA_FROM_DEVICE
, buffer
, len
);
236 if (result
!= USB_STOR_XFER_GOOD
) {
237 result
= USB_STOR_TRANSPORT_ERROR
;
241 /* now read status */
242 result
= sddr55_bulk_transport(us
,
243 DMA_FROM_DEVICE
, status
, 2);
245 if (result
!= USB_STOR_XFER_GOOD
) {
246 result
= USB_STOR_TRANSPORT_ERROR
;
250 /* check status for error */
251 if (status
[0] == 0xff && status
[1] == 0x4) {
252 set_sense_info (3, 0x11, 0);
253 result
= USB_STOR_TRANSPORT_FAILED
;
258 // Store the data in the transfer buffer
259 usb_stor_access_xfer_buf(buffer
, len
, us
->srb
,
260 &sg
, &offset
, TO_XFER_BUF
);
264 sectors
-= pages
>> info
->smallpageshift
;
267 result
= USB_STOR_TRANSPORT_GOOD
;
275 static int sddr55_write_data(struct us_data
*us
,
278 unsigned short sectors
) {
280 int result
= USB_STOR_TRANSPORT_GOOD
;
281 unsigned char *command
= us
->iobuf
;
282 unsigned char *status
= us
->iobuf
;
283 struct sddr55_card_info
*info
= (struct sddr55_card_info
*)us
->extra
;
284 unsigned char *buffer
;
287 unsigned int new_pba
;
288 unsigned long address
;
290 unsigned short pages
;
292 unsigned int len
, offset
;
293 struct scatterlist
*sg
;
295 /* check if we are allowed to write */
296 if (info
->read_only
|| info
->force_read_only
) {
297 set_sense_info (7, 0x27, 0); /* read only */
298 return USB_STOR_TRANSPORT_FAILED
;
301 // Since we only write one block at a time, we have to create
302 // a bounce buffer and move the data a piece at a time between the
303 // bounce buffer and the actual transfer buffer.
305 len
= min((unsigned int) sectors
, (unsigned int) info
->blocksize
>>
306 info
->smallpageshift
) * PAGESIZE
;
307 buffer
= kmalloc(len
, GFP_NOIO
);
309 return USB_STOR_TRANSPORT_ERROR
;
313 while (sectors
> 0) {
315 /* have we got to end? */
316 if (lba
>= info
->max_log_blks
)
319 pba
= info
->lba_to_pba
[lba
];
321 // Write as many sectors as possible in this block
323 pages
= min((unsigned int) sectors
<< info
->smallpageshift
,
324 info
->blocksize
- page
);
325 len
= pages
<< info
->pageshift
;
327 // Get the data from the transfer buffer
328 usb_stor_access_xfer_buf(buffer
, len
, us
->srb
,
329 &sg
, &offset
, FROM_XFER_BUF
);
331 US_DEBUGP("Write %02X pages, to PBA %04X"
332 " (LBA %04X) page %02X\n",
333 pages
, pba
, lba
, page
);
337 if (pba
== NOT_ALLOCATED
) {
338 /* no pba allocated for this lba, find a free pba to use */
340 int max_pba
= (info
->max_log_blks
/ 250 ) * 256;
344 /* set pba to first block in zone lba is in */
345 pba
= (lba
/ 1000) * 1024;
347 US_DEBUGP("No PBA for LBA %04X\n",lba
);
353 * Scan through the map looking for an unused block
354 * leave 16 unused blocks at start (or as many as
355 * possible) since the sddr55 seems to reuse a used
356 * block when it shouldn't if we don't leave space.
358 for (i
= 0; i
< max_pba
; i
++, pba
++) {
359 if (info
->pba_to_lba
[pba
] == UNUSED_BLOCK
) {
361 if (found_count
++ > 16)
370 US_DEBUGP("Couldn't find unallocated block\n");
372 set_sense_info (3, 0x31, 0); /* medium error */
373 result
= USB_STOR_TRANSPORT_FAILED
;
377 US_DEBUGP("Allocating PBA %04X for LBA %04X\n", pba
, lba
);
379 /* set writing to unallocated block flag */
383 address
= (pba
<< info
->blockshift
) + page
;
385 command
[1] = LSB_of(address
>>16);
386 command
[2] = LSB_of(address
>>8);
387 command
[3] = LSB_of(address
);
389 /* set the lba into the command, modulo 1000 */
390 command
[0] = LSB_of(lba
% 1000);
391 command
[6] = MSB_of(lba
% 1000);
393 command
[4] |= LSB_of(pages
>> info
->smallpageshift
);
398 result
= sddr55_bulk_transport(us
,
399 DMA_TO_DEVICE
, command
, 8);
401 if (result
!= USB_STOR_XFER_GOOD
) {
402 US_DEBUGP("Result for send_command in write_data %d\n",
405 /* set_sense_info is superfluous here? */
406 set_sense_info (3, 0x3, 0);/* peripheral write error */
407 result
= USB_STOR_TRANSPORT_FAILED
;
412 result
= sddr55_bulk_transport(us
,
413 DMA_TO_DEVICE
, buffer
, len
);
415 if (result
!= USB_STOR_XFER_GOOD
) {
416 US_DEBUGP("Result for send_data in write_data %d\n",
419 /* set_sense_info is superfluous here? */
420 set_sense_info (3, 0x3, 0);/* peripheral write error */
421 result
= USB_STOR_TRANSPORT_FAILED
;
425 /* now read status */
426 result
= sddr55_bulk_transport(us
, DMA_FROM_DEVICE
, status
, 6);
428 if (result
!= USB_STOR_XFER_GOOD
) {
429 US_DEBUGP("Result for get_status in write_data %d\n",
432 /* set_sense_info is superfluous here? */
433 set_sense_info (3, 0x3, 0);/* peripheral write error */
434 result
= USB_STOR_TRANSPORT_FAILED
;
438 new_pba
= (status
[3] + (status
[4] << 8) + (status
[5] << 16))
441 /* check status for error */
442 if (status
[0] == 0xff && status
[1] == 0x4) {
443 info
->pba_to_lba
[new_pba
] = BAD_BLOCK
;
445 set_sense_info (3, 0x0c, 0);
446 result
= USB_STOR_TRANSPORT_FAILED
;
450 US_DEBUGP("Updating maps for LBA %04X: old PBA %04X, new PBA %04X\n",
453 /* update the lba<->pba maps, note new_pba might be the same as pba */
454 info
->lba_to_pba
[lba
] = new_pba
;
455 info
->pba_to_lba
[pba
] = UNUSED_BLOCK
;
457 /* check that new_pba wasn't already being used */
458 if (info
->pba_to_lba
[new_pba
] != UNUSED_BLOCK
) {
459 printk(KERN_ERR
"sddr55 error: new PBA %04X already in use for LBA %04X\n",
460 new_pba
, info
->pba_to_lba
[new_pba
]);
461 info
->fatal_error
= 1;
462 set_sense_info (3, 0x31, 0);
463 result
= USB_STOR_TRANSPORT_FAILED
;
467 /* update the pba<->lba maps for new_pba */
468 info
->pba_to_lba
[new_pba
] = lba
% 1000;
472 sectors
-= pages
>> info
->smallpageshift
;
474 result
= USB_STOR_TRANSPORT_GOOD
;
481 static int sddr55_read_deviceID(struct us_data
*us
,
482 unsigned char *manufacturerID
,
483 unsigned char *deviceID
) {
486 unsigned char *command
= us
->iobuf
;
487 unsigned char *content
= us
->iobuf
;
489 memset(command
, 0, 8);
492 result
= sddr55_bulk_transport(us
, DMA_TO_DEVICE
, command
, 8);
494 US_DEBUGP("Result of send_control for device ID is %d\n",
497 if (result
!= USB_STOR_XFER_GOOD
)
498 return USB_STOR_TRANSPORT_ERROR
;
500 result
= sddr55_bulk_transport(us
,
501 DMA_FROM_DEVICE
, content
, 4);
503 if (result
!= USB_STOR_XFER_GOOD
)
504 return USB_STOR_TRANSPORT_ERROR
;
506 *manufacturerID
= content
[0];
507 *deviceID
= content
[1];
509 if (content
[0] != 0xff) {
510 result
= sddr55_bulk_transport(us
,
511 DMA_FROM_DEVICE
, content
, 2);
514 return USB_STOR_TRANSPORT_GOOD
;
518 int sddr55_reset(struct us_data
*us
) {
523 static unsigned long sddr55_get_capacity(struct us_data
*us
) {
525 unsigned char uninitialized_var(manufacturerID
);
526 unsigned char uninitialized_var(deviceID
);
528 struct sddr55_card_info
*info
= (struct sddr55_card_info
*)us
->extra
;
530 US_DEBUGP("Reading capacity...\n");
532 result
= sddr55_read_deviceID(us
,
536 US_DEBUGP("Result of read_deviceID is %d\n",
539 if (result
!= USB_STOR_XFER_GOOD
)
542 US_DEBUGP("Device ID = %02X\n", deviceID
);
543 US_DEBUGP("Manuf ID = %02X\n", manufacturerID
);
546 info
->smallpageshift
= 0;
547 info
->blocksize
= 16;
548 info
->blockshift
= 4;
549 info
->blockmask
= 15;
557 info
->smallpageshift
= 1;
563 info
->smallpageshift
= 1;
564 case 0x5d: // 5d is a ROM card with pagesize 512.
578 info
->blocksize
= 32;
579 info
->blockshift
= 5;
580 info
->blockmask
= 31;
584 info
->blocksize
= 32;
585 info
->blockshift
= 5;
586 info
->blockmask
= 31;
590 info
->blocksize
= 32;
591 info
->blockshift
= 5;
592 info
->blockmask
= 31;
596 info
->blocksize
= 32;
597 info
->blockshift
= 5;
598 info
->blockmask
= 31;
607 static int sddr55_read_map(struct us_data
*us
) {
609 struct sddr55_card_info
*info
= (struct sddr55_card_info
*)(us
->extra
);
611 unsigned char *buffer
;
612 unsigned char *command
= us
->iobuf
;
615 unsigned short max_lba
;
621 numblocks
= info
->capacity
>> (info
->blockshift
+ info
->pageshift
);
623 buffer
= kmalloc( numblocks
* 2, GFP_NOIO
);
628 memset(command
, 0, 8);
630 command
[6] = numblocks
* 2 / 256;
633 result
= sddr55_bulk_transport(us
, DMA_TO_DEVICE
, command
, 8);
635 if ( result
!= USB_STOR_XFER_GOOD
) {
640 result
= sddr55_bulk_transport(us
, DMA_FROM_DEVICE
, buffer
, numblocks
* 2);
642 if ( result
!= USB_STOR_XFER_GOOD
) {
647 result
= sddr55_bulk_transport(us
, DMA_FROM_DEVICE
, command
, 2);
649 if ( result
!= USB_STOR_XFER_GOOD
) {
654 kfree(info
->lba_to_pba
);
655 kfree(info
->pba_to_lba
);
656 info
->lba_to_pba
= kmalloc(numblocks
*sizeof(int), GFP_NOIO
);
657 info
->pba_to_lba
= kmalloc(numblocks
*sizeof(int), GFP_NOIO
);
659 if (info
->lba_to_pba
== NULL
|| info
->pba_to_lba
== NULL
) {
660 kfree(info
->lba_to_pba
);
661 kfree(info
->pba_to_lba
);
662 info
->lba_to_pba
= NULL
;
663 info
->pba_to_lba
= NULL
;
668 memset(info
->lba_to_pba
, 0xff, numblocks
*sizeof(int));
669 memset(info
->pba_to_lba
, 0xff, numblocks
*sizeof(int));
671 /* set maximum lba */
672 max_lba
= info
->max_log_blks
;
676 // Each block is 64 bytes of control data, so block i is located in
677 // scatterlist block i*64/128k = i*(2^6)*(2^-17) = i*(2^-11)
679 for (i
=0; i
<numblocks
; i
++) {
682 lba
= short_pack(buffer
[i
* 2], buffer
[i
* 2 + 1]);
684 /* Every 1024 physical blocks ("zone"), the LBA numbers
685 * go back to zero, but are within a higher
686 * block of LBA's. Also, there is a maximum of
687 * 1000 LBA's per zone. In other words, in PBA
688 * 1024-2047 you will find LBA 0-999 which are
689 * really LBA 1000-1999. Yes, this wastes 24
690 * physical blocks per zone. Go figure.
691 * These devices can have blocks go bad, so there
692 * are 24 spare blocks to use when blocks do go bad.
695 /* SDDR55 returns 0xffff for a bad block, and 0x400 for the
696 * CIS block. (Is this true for cards 8MB or less??)
697 * Record these in the physical to logical map
700 info
->pba_to_lba
[i
] = lba
;
702 if (lba
>= max_lba
) {
706 if (info
->lba_to_pba
[lba
+ zone
* 1000] != NOT_ALLOCATED
&&
707 !info
->force_read_only
) {
708 printk("sddr55: map inconsistency at LBA %04X\n", lba
+ zone
* 1000);
709 info
->force_read_only
= 1;
712 if (lba
<0x10 || (lba
>=0x3E0 && lba
<0x3EF))
713 US_DEBUGP("LBA %04X <-> PBA %04X\n", lba
, i
);
715 info
->lba_to_pba
[lba
+ zone
* 1000] = i
;
723 static void sddr55_card_info_destructor(void *extra
) {
724 struct sddr55_card_info
*info
= (struct sddr55_card_info
*)extra
;
729 kfree(info
->lba_to_pba
);
730 kfree(info
->pba_to_lba
);
735 * Transport for the Sandisk SDDR-55
737 int sddr55_transport(struct scsi_cmnd
*srb
, struct us_data
*us
)
740 static unsigned char inquiry_response
[8] = {
741 0x00, 0x80, 0x00, 0x02, 0x1F, 0x00, 0x00, 0x00
743 // write-protected for now, no block descriptor support
744 static unsigned char mode_page_01
[20] = {
745 0x0, 0x12, 0x00, 0x80, 0x0, 0x0, 0x0, 0x0,
747 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
749 unsigned char *ptr
= us
->iobuf
;
750 unsigned long capacity
;
754 unsigned short pages
;
755 struct sddr55_card_info
*info
;
759 sizeof(struct sddr55_card_info
), GFP_NOIO
);
761 return USB_STOR_TRANSPORT_ERROR
;
762 us
->extra_destructor
= sddr55_card_info_destructor
;
765 info
= (struct sddr55_card_info
*)(us
->extra
);
767 if (srb
->cmnd
[0] == REQUEST_SENSE
) {
768 US_DEBUGP("SDDR55: request sense %02x/%02x/%02x\n", info
->sense_data
[2], info
->sense_data
[12], info
->sense_data
[13]);
770 memcpy (ptr
, info
->sense_data
, sizeof info
->sense_data
);
773 usb_stor_set_xfer_buf (ptr
, sizeof info
->sense_data
, srb
);
774 memset (info
->sense_data
, 0, sizeof info
->sense_data
);
776 return USB_STOR_TRANSPORT_GOOD
;
779 memset (info
->sense_data
, 0, sizeof info
->sense_data
);
781 /* Dummy up a response for INQUIRY since SDDR55 doesn't
782 respond to INQUIRY commands */
784 if (srb
->cmnd
[0] == INQUIRY
) {
785 memcpy(ptr
, inquiry_response
, 8);
786 fill_inquiry_response(us
, ptr
, 36);
787 return USB_STOR_TRANSPORT_GOOD
;
790 /* only check card status if the map isn't allocated, ie no card seen yet
791 * or if it's been over half a second since we last accessed it
793 if (info
->lba_to_pba
== NULL
|| time_after(jiffies
, info
->last_access
+ HZ
/2)) {
795 /* check to see if a card is fitted */
796 result
= sddr55_status (us
);
798 result
= sddr55_status (us
);
800 set_sense_info (6, 0x28, 0); /* new media, set unit attention, not ready to ready */
802 return USB_STOR_TRANSPORT_FAILED
;
806 /* if we detected a problem with the map when writing,
807 don't allow any more access */
808 if (info
->fatal_error
) {
810 set_sense_info (3, 0x31, 0);
811 return USB_STOR_TRANSPORT_FAILED
;
814 if (srb
->cmnd
[0] == READ_CAPACITY
) {
816 capacity
= sddr55_get_capacity(us
);
819 set_sense_info (3, 0x30, 0); /* incompatible medium */
820 return USB_STOR_TRANSPORT_FAILED
;
823 info
->capacity
= capacity
;
825 /* figure out the maximum logical block number, allowing for
826 * the fact that only 250 out of every 256 are used */
827 info
->max_log_blks
= ((info
->capacity
>> (info
->pageshift
+ info
->blockshift
)) / 256) * 250;
829 /* Last page in the card, adjust as we only use 250 out of
831 capacity
= (capacity
/ 256) * 250;
833 capacity
/= PAGESIZE
;
836 ((__be32
*) ptr
)[0] = cpu_to_be32(capacity
);
837 ((__be32
*) ptr
)[1] = cpu_to_be32(PAGESIZE
);
838 usb_stor_set_xfer_buf(ptr
, 8, srb
);
842 return USB_STOR_TRANSPORT_GOOD
;
845 if (srb
->cmnd
[0] == MODE_SENSE_10
) {
847 memcpy(ptr
, mode_page_01
, sizeof mode_page_01
);
848 ptr
[3] = (info
->read_only
|| info
->force_read_only
) ? 0x80 : 0;
849 usb_stor_set_xfer_buf(ptr
, sizeof(mode_page_01
), srb
);
851 if ( (srb
->cmnd
[2] & 0x3F) == 0x01 ) {
853 "SDDR55: Dummy up request for mode page 1\n");
854 return USB_STOR_TRANSPORT_GOOD
;
856 } else if ( (srb
->cmnd
[2] & 0x3F) == 0x3F ) {
858 "SDDR55: Dummy up request for all mode pages\n");
859 return USB_STOR_TRANSPORT_GOOD
;
862 set_sense_info (5, 0x24, 0); /* invalid field in command */
863 return USB_STOR_TRANSPORT_FAILED
;
866 if (srb
->cmnd
[0] == ALLOW_MEDIUM_REMOVAL
) {
869 "SDDR55: %s medium removal. Not that I can do"
870 " anything about it...\n",
871 (srb
->cmnd
[4]&0x03) ? "Prevent" : "Allow");
873 return USB_STOR_TRANSPORT_GOOD
;
877 if (srb
->cmnd
[0] == READ_10
|| srb
->cmnd
[0] == WRITE_10
) {
879 page
= short_pack(srb
->cmnd
[3], srb
->cmnd
[2]);
881 page
|= short_pack(srb
->cmnd
[5], srb
->cmnd
[4]);
882 pages
= short_pack(srb
->cmnd
[8], srb
->cmnd
[7]);
884 page
<<= info
->smallpageshift
;
886 // convert page to block and page-within-block
888 lba
= page
>> info
->blockshift
;
889 page
= page
& info
->blockmask
;
891 // locate physical block corresponding to logical block
893 if (lba
>= info
->max_log_blks
) {
895 US_DEBUGP("Error: Requested LBA %04X exceeds maximum "
896 "block %04X\n", lba
, info
->max_log_blks
-1);
898 set_sense_info (5, 0x24, 0); /* invalid field in command */
900 return USB_STOR_TRANSPORT_FAILED
;
903 pba
= info
->lba_to_pba
[lba
];
905 if (srb
->cmnd
[0] == WRITE_10
) {
906 US_DEBUGP("WRITE_10: write block %04X (LBA %04X) page %01X"
908 pba
, lba
, page
, pages
);
910 return sddr55_write_data(us
, lba
, page
, pages
);
912 US_DEBUGP("READ_10: read block %04X (LBA %04X) page %01X"
914 pba
, lba
, page
, pages
);
916 return sddr55_read_data(us
, lba
, page
, pages
);
921 if (srb
->cmnd
[0] == TEST_UNIT_READY
) {
922 return USB_STOR_TRANSPORT_GOOD
;
925 if (srb
->cmnd
[0] == START_STOP
) {
926 return USB_STOR_TRANSPORT_GOOD
;
929 set_sense_info (5, 0x20, 0); /* illegal command */
931 return USB_STOR_TRANSPORT_FAILED
; // FIXME: sense buffer?