3 * Denis Peter, MPL AG Switzerland
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 #include <asm/processor.h>
37 #if (CONFIG_COMMANDS & CFG_CMD_SCSI)
39 #ifdef CONFIG_SCSI_SYM53C8XX
40 #define SCSI_VEND_ID 0x1000
41 #ifndef CONFIG_SCSI_DEV_ID
42 #define SCSI_DEV_ID 0x0001
44 #define SCSI_DEV_ID CONFIG_SCSI_DEV_ID
46 #elif defined CONFIG_SATA_ULI5288
48 #define SCSI_VEND_ID 0x10b9
49 #define SCSI_DEV_ID 0x5288
52 #error no scsi device defined
56 static ccb tempccb
; /* temporary scsi command buffer */
58 static unsigned char tempbuff
[512]; /* temporary data buffer */
60 static int scsi_max_devs
; /* number of highest available scsi device */
62 static int scsi_curr_dev
; /* current device */
64 static block_dev_desc_t scsi_dev_desc
[CFG_SCSI_MAX_DEVICE
];
66 /********************************************************************************
67 * forward declerations of some Setup Routines
69 void scsi_setup_test_unit_ready(ccb
* pccb
);
70 void scsi_setup_read_capacity(ccb
* pccb
);
71 void scsi_setup_read6(ccb
* pccb
, unsigned long start
, unsigned short blocks
);
72 void scsi_setup_read_ext(ccb
* pccb
, unsigned long start
, unsigned short blocks
);
73 void scsi_setup_inquiry(ccb
* pccb
);
74 void scsi_ident_cpy (unsigned char *dest
, unsigned char *src
, unsigned int len
);
77 ulong
scsi_read(int device
, ulong blknr
, ulong blkcnt
, ulong
*buffer
);
80 /*********************************************************************************
81 * (re)-scan the scsi bus and reports scsi device info
82 * to the user if mode = 1
84 void scsi_scan(int mode
)
86 unsigned char i
,perq
,modi
,lun
;
87 unsigned long capacity
,blksz
;
88 ccb
* pccb
=(ccb
*)&tempccb
;
91 printf("scanning bus for devices...\n");
93 for(i
=0;i
<CFG_SCSI_MAX_DEVICE
;i
++) {
94 scsi_dev_desc
[i
].target
=0xff;
95 scsi_dev_desc
[i
].lun
=0xff;
96 scsi_dev_desc
[i
].lba
=0;
97 scsi_dev_desc
[i
].blksz
=0;
98 scsi_dev_desc
[i
].type
=DEV_TYPE_UNKNOWN
;
99 scsi_dev_desc
[i
].vendor
[0]=0;
100 scsi_dev_desc
[i
].product
[0]=0;
101 scsi_dev_desc
[i
].revision
[0]=0;
102 scsi_dev_desc
[i
].removable
=FALSE
;
103 scsi_dev_desc
[i
].if_type
=IF_TYPE_SCSI
;
104 scsi_dev_desc
[i
].dev
=i
;
105 scsi_dev_desc
[i
].part_type
=PART_TYPE_UNKNOWN
;
106 scsi_dev_desc
[i
].block_read
=scsi_read
;
109 for(i
=0;i
<CFG_SCSI_MAX_SCSI_ID
;i
++) {
111 for(lun
=0;lun
<CFG_SCSI_MAX_LUN
;lun
++) {
113 pccb
->pdata
=(unsigned char *)&tempbuff
;
115 scsi_setup_inquiry(pccb
);
116 if(scsi_exec(pccb
)!=TRUE
) {
117 if(pccb
->contr_stat
==SCSI_SEL_TIME_OUT
) {
118 debug ("Selection timeout ID %d\n",pccb
->target
);
119 continue; /* selection timeout => assuming no device present */
121 scsi_print_error(pccb
);
126 if((perq
& 0x1f)==0x1f) {
127 continue; /* skip unknown devices */
129 if((modi
&0x80)==0x80) /* drive is removable */
130 scsi_dev_desc
[scsi_max_devs
].removable
=TRUE
;
131 /* get info for this device */
132 scsi_ident_cpy(&scsi_dev_desc
[scsi_max_devs
].vendor
[0],&tempbuff
[8],8);
133 scsi_ident_cpy(&scsi_dev_desc
[scsi_max_devs
].product
[0],&tempbuff
[16],16);
134 scsi_ident_cpy(&scsi_dev_desc
[scsi_max_devs
].revision
[0],&tempbuff
[32],4);
135 scsi_dev_desc
[scsi_max_devs
].target
=pccb
->target
;
136 scsi_dev_desc
[scsi_max_devs
].lun
=pccb
->lun
;
139 scsi_setup_test_unit_ready(pccb
);
140 if(scsi_exec(pccb
)!=TRUE
) {
141 if(scsi_dev_desc
[scsi_max_devs
].removable
==TRUE
) {
142 scsi_dev_desc
[scsi_max_devs
].type
=perq
;
145 scsi_print_error(pccb
);
149 scsi_setup_read_capacity(pccb
);
150 if(scsi_exec(pccb
)!=TRUE
) {
151 scsi_print_error(pccb
);
154 capacity
=((unsigned long)tempbuff
[0]<<24)|((unsigned long)tempbuff
[1]<<16)|
155 ((unsigned long)tempbuff
[2]<<8)|((unsigned long)tempbuff
[3]);
156 blksz
=((unsigned long)tempbuff
[4]<<24)|((unsigned long)tempbuff
[5]<<16)|
157 ((unsigned long)tempbuff
[6]<<8)|((unsigned long)tempbuff
[7]);
158 scsi_dev_desc
[scsi_max_devs
].lba
=capacity
;
159 scsi_dev_desc
[scsi_max_devs
].blksz
=blksz
;
160 scsi_dev_desc
[scsi_max_devs
].type
=perq
;
161 init_part(&scsi_dev_desc
[scsi_max_devs
]);
164 printf (" Device %d: ", scsi_max_devs
);
165 dev_print(&scsi_dev_desc
[scsi_max_devs
]);
181 busdevfunc
=pci_find_device(SCSI_VEND_ID
,SCSI_DEV_ID
,0); /* get PCI Device ID */
183 printf("Error SCSI Controller (%04X,%04X) not found\n",SCSI_VEND_ID
,SCSI_DEV_ID
);
188 printf("SCSI Controller (%04X,%04X) found (%d:%d:%d)\n",SCSI_VEND_ID
,SCSI_DEV_ID
,(busdevfunc
>>16)&0xFF,(busdevfunc
>>11)&0x1F,(busdevfunc
>>8)&0x7);
191 scsi_low_level_init(busdevfunc
);
195 block_dev_desc_t
* scsi_get_dev(int dev
)
197 return((block_dev_desc_t
*)&scsi_dev_desc
[dev
]);
201 /******************************************************************************
202 * scsi boot command intepreter. Derived from diskboot
204 int do_scsiboot (cmd_tbl_t
*cmdtp
, int flag
, int argc
, char *argv
[])
206 char *boot_device
= NULL
;
209 ulong addr
, cnt
, checksum
;
210 disk_partition_t info
;
216 addr
= CFG_LOAD_ADDR
;
217 boot_device
= getenv ("bootdevice");
220 addr
= simple_strtoul(argv
[1], NULL
, 16);
221 boot_device
= getenv ("bootdevice");
224 addr
= simple_strtoul(argv
[1], NULL
, 16);
225 boot_device
= argv
[2];
228 printf ("Usage:\n%s\n", cmdtp
->usage
);
233 puts ("\n** No boot device **\n");
237 dev
= simple_strtoul(boot_device
, &ep
, 16);
238 printf("booting from dev %d\n",dev
);
239 if (scsi_dev_desc
[dev
].type
== DEV_TYPE_UNKNOWN
) {
240 printf ("\n** Device %d not available\n", dev
);
246 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
249 part
= simple_strtoul(++ep
, NULL
, 16);
251 if (get_partition_info (scsi_dev_desc
, part
, &info
)) {
252 printf("error reading partinfo\n");
255 if ((strncmp((char *)(info
.type
), BOOT_PART_TYPE
, sizeof(info
.type
)) != 0) &&
256 (strncmp((char *)(info
.type
), BOOT_PART_COMP
, sizeof(info
.type
)) != 0)) {
257 printf ("\n** Invalid partition type \"%.32s\""
258 " (expect \"" BOOT_PART_TYPE
"\")\n",
263 printf ("\nLoading from SCSI device %d, partition %d: "
264 "Name: %.32s Type: %.32s\n",
265 dev
, part
, info
.name
, info
.type
);
267 debug ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
268 info
.start
, info
.size
, info
.blksz
);
270 if (scsi_read (dev
, info
.start
, 1, (ulong
*)addr
) != 1) {
271 printf ("** Read error on %d:%d\n", dev
, part
);
275 hdr
= (image_header_t
*)addr
;
277 if (ntohl(hdr
->ih_magic
) == IH_MAGIC
) {
278 printf("\n** Bad Magic Number **\n");
282 checksum
= ntohl(hdr
->ih_hcrc
);
285 if (crc32 (0, (uchar
*)hdr
, sizeof(image_header_t
)) != checksum
) {
286 puts ("\n** Bad Header Checksum **\n");
289 hdr
->ih_hcrc
= htonl(checksum
); /* restore checksum for later use */
291 print_image_hdr (hdr
);
292 cnt
= (ntohl(hdr
->ih_size
) + sizeof(image_header_t
));
293 cnt
+= info
.blksz
- 1;
297 if (scsi_read (dev
, info
.start
+1, cnt
,
298 (ulong
*)(addr
+info
.blksz
)) != cnt
) {
299 printf ("** Read error on %d:%d\n", dev
, part
);
302 /* Loading ok, update default load address */
305 flush_cache (addr
, (cnt
+1)*info
.blksz
);
307 /* Check if we should attempt an auto-start */
308 if (((ep
= getenv("autostart")) != NULL
) && (strcmp(ep
,"yes") == 0)) {
310 extern int do_bootm (cmd_tbl_t
*, int, int, char *[]);
311 local_args
[0] = argv
[0];
312 local_args
[1] = NULL
;
313 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr
);
314 rcode
= do_bootm (cmdtp
, 0, 1, local_args
);
319 /*********************************************************************************
320 * scsi command intepreter
322 int do_scsi (cmd_tbl_t
*cmdtp
, int flag
, int argc
, char *argv
[])
326 case 1: printf ("Usage:\n%s\n", cmdtp
->usage
); return 1;
328 if (strncmp(argv
[1],"res",3) == 0) {
329 printf("\nReset SCSI\n");
334 if (strncmp(argv
[1],"inf",3) == 0) {
336 for (i
=0; i
<CFG_SCSI_MAX_DEVICE
; ++i
) {
337 if(scsi_dev_desc
[i
].type
==DEV_TYPE_UNKNOWN
)
338 continue; /* list only known devices */
339 printf ("SCSI dev. %d: ", i
);
340 dev_print(&scsi_dev_desc
[i
]);
344 if (strncmp(argv
[1],"dev",3) == 0) {
345 if ((scsi_curr_dev
< 0) || (scsi_curr_dev
>= CFG_SCSI_MAX_DEVICE
)) {
346 printf("\nno SCSI devices available\n");
349 printf ("\n Device %d: ", scsi_curr_dev
);
350 dev_print(&scsi_dev_desc
[scsi_curr_dev
]);
353 if (strncmp(argv
[1],"scan",4) == 0) {
357 if (strncmp(argv
[1],"part",4) == 0) {
359 for (ok
=0, dev
=0; dev
<CFG_SCSI_MAX_DEVICE
; ++dev
) {
360 if (scsi_dev_desc
[dev
].type
!=DEV_TYPE_UNKNOWN
) {
364 debug ("print_part of %x\n",dev
);
365 print_part(&scsi_dev_desc
[dev
]);
369 printf("\nno SCSI devices available\n");
372 printf ("Usage:\n%s\n", cmdtp
->usage
);
375 if (strncmp(argv
[1],"dev",3) == 0) {
376 int dev
= (int)simple_strtoul(argv
[2], NULL
, 10);
377 printf ("\nSCSI device %d: ", dev
);
378 if (dev
>= CFG_SCSI_MAX_DEVICE
) {
379 printf("unknown device\n");
382 printf ("\n Device %d: ", dev
);
383 dev_print(&scsi_dev_desc
[dev
]);
384 if(scsi_dev_desc
[dev
].type
== DEV_TYPE_UNKNOWN
) {
388 printf("... is now current device\n");
391 if (strncmp(argv
[1],"part",4) == 0) {
392 int dev
= (int)simple_strtoul(argv
[2], NULL
, 10);
393 if(scsi_dev_desc
[dev
].type
!= DEV_TYPE_UNKNOWN
) {
394 print_part(&scsi_dev_desc
[dev
]);
397 printf ("\nSCSI device %d not available\n", dev
);
401 printf ("Usage:\n%s\n", cmdtp
->usage
);
404 /* at least 4 args */
405 if (strcmp(argv
[1],"read") == 0) {
406 ulong addr
= simple_strtoul(argv
[2], NULL
, 16);
407 ulong blk
= simple_strtoul(argv
[3], NULL
, 16);
408 ulong cnt
= simple_strtoul(argv
[4], NULL
, 16);
410 printf ("\nSCSI read: device %d block # %ld, count %ld ... ",
411 scsi_curr_dev
, blk
, cnt
);
412 n
= scsi_read(scsi_curr_dev
, blk
, cnt
, (ulong
*)addr
);
413 printf ("%ld blocks read: %s\n",n
,(n
==cnt
) ? "OK" : "ERROR");
417 printf ("Usage:\n%s\n", cmdtp
->usage
);
421 /****************************************************************************************
425 #define SCSI_MAX_READ_BLK 0xFFFF /* almost the maximum amount of the scsi_ext command.. */
427 ulong
scsi_read(int device
, ulong blknr
, ulong blkcnt
, ulong
*buffer
)
429 ulong start
,blks
, buf_addr
;
430 unsigned short smallblks
;
431 ccb
* pccb
=(ccb
*)&tempccb
;
435 pccb
->target
=scsi_dev_desc
[device
].target
;
436 pccb
->lun
=scsi_dev_desc
[device
].lun
;
437 buf_addr
=(unsigned long)buffer
;
440 debug ("\nscsi_read: dev %d startblk %lx, blccnt %lx buffer %lx\n",device
,start
,blks
,(unsigned long)buffer
);
442 pccb
->pdata
=(unsigned char *)buf_addr
;
443 if(blks
>SCSI_MAX_READ_BLK
) {
444 pccb
->datalen
=scsi_dev_desc
[device
].blksz
* SCSI_MAX_READ_BLK
;
445 smallblks
=SCSI_MAX_READ_BLK
;
446 scsi_setup_read_ext(pccb
,start
,smallblks
);
447 start
+=SCSI_MAX_READ_BLK
;
448 blks
-=SCSI_MAX_READ_BLK
;
451 pccb
->datalen
=scsi_dev_desc
[device
].blksz
* blks
;
452 smallblks
=(unsigned short) blks
;
453 scsi_setup_read_ext(pccb
,start
,smallblks
);
457 debug ("scsi_read_ext: startblk %lx, blccnt %x buffer %lx\n",start
,smallblks
,buf_addr
);
458 if(scsi_exec(pccb
)!=TRUE
) {
459 scsi_print_error(pccb
);
463 buf_addr
+=pccb
->datalen
;
465 debug ("scsi_read_ext: end startblk %lx, blccnt %x buffer %lx\n",start
,smallblks
,buf_addr
);
469 /* copy src to dest, skipping leading and trailing blanks
470 * and null terminate the string
472 void scsi_ident_cpy (unsigned char *dest
, unsigned char *src
, unsigned int len
)
488 for( ; start
<=end
; start
++) {
495 /* Trim trailing blanks, and NUL-terminate string
497 void scsi_trim_trail (unsigned char *str
, unsigned int len
)
499 unsigned char *p
= str
+ len
- 1;
510 /************************************************************************************
511 * Some setup (fill-in) routines
513 void scsi_setup_test_unit_ready(ccb
* pccb
)
515 pccb
->cmd
[0]=SCSI_TST_U_RDY
;
516 pccb
->cmd
[1]=pccb
->lun
<<5;
522 pccb
->msgout
[0]=SCSI_IDENTIFY
; /* NOT USED */
525 void scsi_setup_read_capacity(ccb
* pccb
)
527 pccb
->cmd
[0]=SCSI_RD_CAPAC
;
528 pccb
->cmd
[1]=pccb
->lun
<<5;
538 pccb
->msgout
[0]=SCSI_IDENTIFY
; /* NOT USED */
542 void scsi_setup_read_ext(ccb
* pccb
, unsigned long start
, unsigned short blocks
)
544 pccb
->cmd
[0]=SCSI_READ10
;
545 pccb
->cmd
[1]=pccb
->lun
<<5;
546 pccb
->cmd
[2]=((unsigned char) (start
>>24))&0xff;
547 pccb
->cmd
[3]=((unsigned char) (start
>>16))&0xff;
548 pccb
->cmd
[4]=((unsigned char) (start
>>8))&0xff;
549 pccb
->cmd
[5]=((unsigned char) (start
))&0xff;
551 pccb
->cmd
[7]=((unsigned char) (blocks
>>8))&0xff;
552 pccb
->cmd
[8]=(unsigned char) blocks
& 0xff;
555 pccb
->msgout
[0]=SCSI_IDENTIFY
; /* NOT USED */
556 debug ("scsi_setup_read_ext: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
557 pccb
->cmd
[0],pccb
->cmd
[1],
558 pccb
->cmd
[2],pccb
->cmd
[3],pccb
->cmd
[4],pccb
->cmd
[5],
559 pccb
->cmd
[7],pccb
->cmd
[8]);
562 void scsi_setup_read6(ccb
* pccb
, unsigned long start
, unsigned short blocks
)
564 pccb
->cmd
[0]=SCSI_READ6
;
565 pccb
->cmd
[1]=pccb
->lun
<<5 | (((unsigned char)(start
>>16))&0x1f);
566 pccb
->cmd
[2]=((unsigned char) (start
>>8))&0xff;
567 pccb
->cmd
[3]=((unsigned char) (start
))&0xff;
568 pccb
->cmd
[4]=(unsigned char) blocks
& 0xff;
571 pccb
->msgout
[0]=SCSI_IDENTIFY
; /* NOT USED */
572 debug ("scsi_setup_read6: cmd: %02X %02X startblk %02X%02X blccnt %02X\n",
573 pccb
->cmd
[0],pccb
->cmd
[1],
574 pccb
->cmd
[2],pccb
->cmd
[3],pccb
->cmd
[4]);
578 void scsi_setup_inquiry(ccb
* pccb
)
580 pccb
->cmd
[0]=SCSI_INQUIRY
;
581 pccb
->cmd
[1]=pccb
->lun
<<5;
584 if(pccb
->datalen
>255)
587 pccb
->cmd
[4]=(unsigned char)pccb
->datalen
;
590 pccb
->msgout
[0]=SCSI_IDENTIFY
; /* NOT USED */
596 "scsi - SCSI sub-system\n",
597 "reset - reset SCSI controller\n"
598 "scsi info - show available SCSI devices\n"
599 "scsi scan - (re-)scan SCSI bus\n"
600 "scsi device [dev] - show or set current device\n"
601 "scsi part [dev] - print partition table of one or all SCSI devices\n"
602 "scsi read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
603 " to memory address `addr'\n"
607 scsiboot
, 3, 1, do_scsiboot
,
608 "scsiboot- boot from SCSI device\n",
609 "loadAddr dev:part\n"
612 #endif /* #if (CONFIG_COMMANDS & CFG_CMD_SCSI) */