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,
33 #include <asm/processor.h>
42 #define PRINTF(fmt,args...) printf (fmt ,##args)
44 #define PRINTF(fmt,args...)
47 #if (CONFIG_COMMANDS & CFG_CMD_SCSI)
49 #ifdef CONFIG_SCSI_SYM53C8XX
50 #define SCSI_VEND_ID 0x1000
51 #ifndef CONFIG_SCSI_DEV_ID
52 #define SCSI_DEV_ID 0x0001
54 #define SCSI_DEV_ID CONFIG_SCSI_DEV_ID
57 #error CONFIG_SCSI_SYM53C8XX must be defined
61 static ccb tempccb; /* temporary scsi command buffer */
63 static unsigned char tempbuff[512]; /* temporary data buffer */
65 static int scsi_max_devs; /* number of highest available scsi device */
67 static int scsi_curr_dev; /* current device */
69 static block_dev_desc_t scsi_dev_desc[CFG_SCSI_MAX_DEVICE];
71 /********************************************************************************
72 * forward declerations of some Setup Routines
74 void scsi_setup_test_unit_ready(ccb * pccb);
75 void scsi_setup_read_capacity(ccb * pccb);
76 void scsi_setup_read6(ccb * pccb, unsigned long start, unsigned short blocks);
77 void scsi_setup_read_ext(ccb * pccb, unsigned long start, unsigned short blocks);
78 void scsi_setup_inquiry(ccb * pccb);
79 void scsi_ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
82 ulong scsi_read(int device, ulong blknr, ulong blkcnt, ulong *buffer);
85 /*********************************************************************************
86 * (re)-scan the scsi bus and reports scsi device info
87 * to the user if mode = 1
89 void scsi_scan(int mode)
91 unsigned char i,perq,modi,lun;
92 unsigned long capacity,blksz;
93 ccb* pccb=(ccb *)&tempccb;
96 printf("scanning bus for devices...\n");
98 for(i=0;i<CFG_SCSI_MAX_DEVICE;i++) {
99 scsi_dev_desc[i].target=0xff;
100 scsi_dev_desc[i].lun=0xff;
101 scsi_dev_desc[i].lba=0;
102 scsi_dev_desc[i].blksz=0;
103 scsi_dev_desc[i].type=DEV_TYPE_UNKNOWN;
104 scsi_dev_desc[i].vendor[0]=0;
105 scsi_dev_desc[i].product[0]=0;
106 scsi_dev_desc[i].revision[0]=0;
107 scsi_dev_desc[i].removable=FALSE;
108 scsi_dev_desc[i].if_type=IF_TYPE_SCSI;
109 scsi_dev_desc[i].dev=i;
110 scsi_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
111 scsi_dev_desc[i].block_read=scsi_read;
114 for(i=0;i<CFG_SCSI_MAX_SCSI_ID;i++) {
116 for(lun=0;lun<CFG_SCSI_MAX_LUN;lun++) {
118 pccb->pdata=(unsigned char *)&tempbuff;
120 scsi_setup_inquiry(pccb);
121 if(scsi_exec(pccb)!=TRUE) {
122 if(pccb->contr_stat==SCSI_SEL_TIME_OUT) {
123 PRINTF("Selection timeout ID %d\n",pccb->target);
124 continue; /* selection timeout => assuming no device present */
126 scsi_print_error(pccb);
131 if((perq & 0x1f)==0x1f) {
132 continue; /* skip unknown devices */
134 if((modi&0x80)==0x80) /* drive is removable */
135 scsi_dev_desc[scsi_max_devs].removable=TRUE;
136 /* get info for this device */
137 scsi_ident_cpy(&scsi_dev_desc[scsi_max_devs].vendor[0],&tempbuff[8],8);
138 scsi_ident_cpy(&scsi_dev_desc[scsi_max_devs].product[0],&tempbuff[16],16);
139 scsi_ident_cpy(&scsi_dev_desc[scsi_max_devs].revision[0],&tempbuff[32],4);
140 scsi_dev_desc[scsi_max_devs].target=pccb->target;
141 scsi_dev_desc[scsi_max_devs].lun=pccb->lun;
144 scsi_setup_test_unit_ready(pccb);
145 if(scsi_exec(pccb)!=TRUE) {
146 if(scsi_dev_desc[scsi_max_devs].removable==TRUE) {
147 scsi_dev_desc[scsi_max_devs].type=perq;
150 scsi_print_error(pccb);
154 scsi_setup_read_capacity(pccb);
155 if(scsi_exec(pccb)!=TRUE) {
156 scsi_print_error(pccb);
159 capacity=((unsigned long)tempbuff[0]<<24)|((unsigned long)tempbuff[1]<<16)|
160 ((unsigned long)tempbuff[2]<<8)|((unsigned long)tempbuff[3]);
161 blksz=((unsigned long)tempbuff[4]<<24)|((unsigned long)tempbuff[5]<<16)|
162 ((unsigned long)tempbuff[6]<<8)|((unsigned long)tempbuff[7]);
163 scsi_dev_desc[scsi_max_devs].lba=capacity;
164 scsi_dev_desc[scsi_max_devs].blksz=blksz;
165 scsi_dev_desc[scsi_max_devs].type=perq;
166 init_part(&scsi_dev_desc[scsi_max_devs]);
169 printf (" Device %d: ", scsi_max_devs);
170 dev_print(&scsi_dev_desc[scsi_max_devs]);
186 busdevfunc=pci_find_device(SCSI_VEND_ID,SCSI_DEV_ID,0); /* get PCI Device ID */
188 printf("Error SCSI Controller (%04X,%04X) not found\n",SCSI_VEND_ID,SCSI_DEV_ID);
193 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);
196 scsi_low_level_init(busdevfunc);
200 block_dev_desc_t * scsi_get_dev(int dev)
202 return((block_dev_desc_t *)&scsi_dev_desc[dev]);
206 /******************************************************************************
207 * scsi boot command intepreter. Derived from diskboot
209 int do_scsiboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
211 char *boot_device = NULL;
216 disk_partition_t info;
222 addr = CFG_LOAD_ADDR;
223 boot_device = getenv ("bootdevice");
226 addr = simple_strtoul(argv[1], NULL, 16);
227 boot_device = getenv ("bootdevice");
230 addr = simple_strtoul(argv[1], NULL, 16);
231 boot_device = argv[2];
234 printf ("Usage:\n%s\n", cmdtp->usage);
239 puts ("\n** No boot device **\n");
243 dev = simple_strtoul(boot_device, &ep, 16);
244 printf("booting from dev %d\n",dev);
245 if (scsi_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
246 printf ("\n** Device %d not available\n", dev);
252 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
255 part = simple_strtoul(++ep, NULL, 16);
257 if (get_partition_info (&scsi_dev_desc[dev], part, &info)) {
258 printf("error reading partinfo\n");
261 if ((strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
262 (strncmp(info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
263 printf ("\n** Invalid partition type \"%.32s\""
264 " (expect \"" BOOT_PART_TYPE "\")\n",
269 printf ("\nLoading from SCSI device %d, partition %d: "
270 "Name: %.32s Type: %.32s\n",
271 dev, part, info.name, info.type);
273 PRINTF ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
274 info.start, info.size, info.blksz);
276 if (scsi_read (dev, info.start, 1, (ulong *)addr) != 1) {
277 printf ("** Read error on %d:%d\n", dev, part);
281 hdr = (image_header_t *)addr;
283 if (hdr->ih_magic == IH_MAGIC) {
285 print_image_hdr (hdr);
286 cnt = (hdr->ih_size + sizeof(image_header_t));
287 cnt += info.blksz - 1;
291 printf("\n** Bad Magic Number **\n");
295 if (scsi_read (dev, info.start+1, cnt,
296 (ulong *)(addr+info.blksz)) != cnt) {
297 printf ("** Read error on %d:%d\n", dev, part);
300 /* Loading ok, update default load address */
303 flush_cache (addr, (cnt+1)*info.blksz);
305 /* Check if we should attempt an auto-start */
306 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
308 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
309 local_args[0] = argv[0];
310 local_args[1] = NULL;
311 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
312 rcode = do_bootm (cmdtp, 0, 1, local_args);
317 /*********************************************************************************
318 * scsi command intepreter
320 int do_scsi (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
324 case 1: printf ("Usage:\n%s\n", cmdtp->usage); return 1;
326 if (strncmp(argv[1],"res",3) == 0) {
327 printf("\nReset SCSI\n");
332 if (strncmp(argv[1],"inf",3) == 0) {
334 for (i=0; i<CFG_SCSI_MAX_DEVICE; ++i) {
335 if(scsi_dev_desc[i].type==DEV_TYPE_UNKNOWN)
336 continue; /* list only known devices */
337 printf ("SCSI dev. %d: ", i);
338 dev_print(&scsi_dev_desc[i]);
342 if (strncmp(argv[1],"dev",3) == 0) {
343 if ((scsi_curr_dev < 0) || (scsi_curr_dev >= CFG_SCSI_MAX_DEVICE)) {
344 printf("\nno SCSI devices available\n");
347 printf ("\n Device %d: ", scsi_curr_dev);
348 dev_print(&scsi_dev_desc[scsi_curr_dev]);
351 if (strncmp(argv[1],"scan",4) == 0) {
355 if (strncmp(argv[1],"part",4) == 0) {
357 for (ok=0, dev=0; dev<CFG_SCSI_MAX_DEVICE; ++dev) {
358 if (scsi_dev_desc[dev].type!=DEV_TYPE_UNKNOWN) {
362 PRINTF("print_part of %x\n",dev);
363 print_part(&scsi_dev_desc[dev]);
367 printf("\nno SCSI devices available\n");
370 printf ("Usage:\n%s\n", cmdtp->usage);
373 if (strncmp(argv[1],"dev",3) == 0) {
374 int dev = (int)simple_strtoul(argv[2], NULL, 10);
375 printf ("\nSCSI device %d: ", dev);
376 if (dev >= CFG_SCSI_MAX_DEVICE) {
377 printf("unknown device\n");
380 printf ("\n Device %d: ", dev);
381 dev_print(&scsi_dev_desc[dev]);
382 if(scsi_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
386 printf("... is now current device\n");
389 if (strncmp(argv[1],"part",4) == 0) {
390 int dev = (int)simple_strtoul(argv[2], NULL, 10);
391 if(scsi_dev_desc[dev].type != DEV_TYPE_UNKNOWN) {
392 print_part(&scsi_dev_desc[dev]);
395 printf ("\nSCSI device %d not available\n", dev);
399 printf ("Usage:\n%s\n", cmdtp->usage);
402 /* at least 4 args */
403 if (strcmp(argv[1],"read") == 0) {
404 ulong addr = simple_strtoul(argv[2], NULL, 16);
405 ulong blk = simple_strtoul(argv[3], NULL, 16);
406 ulong cnt = simple_strtoul(argv[4], NULL, 16);
408 printf ("\nSCSI read: device %d block # %ld, count %ld ... ",
409 scsi_curr_dev, blk, cnt);
410 n = scsi_read(scsi_curr_dev, blk, cnt, (ulong *)addr);
411 printf ("%ld blocks read: %s\n",n,(n==cnt) ? "OK" : "ERROR");
415 printf ("Usage:\n%s\n", cmdtp->usage);
419 /****************************************************************************************
423 #define SCSI_MAX_READ_BLK 0xFFFF /* almost the maximum amount of the scsi_ext command.. */
425 ulong scsi_read(int device, ulong blknr, ulong blkcnt, ulong *buffer)
427 ulong start,blks, buf_addr;
428 unsigned short smallblks;
429 ccb* pccb=(ccb *)&tempccb;
433 pccb->target=scsi_dev_desc[device].target;
434 pccb->lun=scsi_dev_desc[device].lun;
435 buf_addr=(unsigned long)buffer;
438 PRINTF("\nscsi_read: dev %d startblk %lx, blccnt %lx buffer %lx\n",device,start,blks,(unsigned long)buffer);
440 pccb->pdata=(unsigned char *)buf_addr;
441 if(blks>SCSI_MAX_READ_BLK) {
442 pccb->datalen=scsi_dev_desc[device].blksz * SCSI_MAX_READ_BLK;
443 smallblks=SCSI_MAX_READ_BLK;
444 scsi_setup_read_ext(pccb,start,smallblks);
445 start+=SCSI_MAX_READ_BLK;
446 blks-=SCSI_MAX_READ_BLK;
449 pccb->datalen=scsi_dev_desc[device].blksz * blks;
450 smallblks=(unsigned short) blks;
451 scsi_setup_read_ext(pccb,start,smallblks);
455 PRINTF("scsi_read_ext: startblk %lx, blccnt %x buffer %lx\n",start,smallblks,buf_addr);
456 if(scsi_exec(pccb)!=TRUE) {
457 scsi_print_error(pccb);
461 buf_addr+=pccb->datalen;
463 PRINTF("scsi_read_ext: end startblk %lx, blccnt %x buffer %lx\n",start,smallblks,buf_addr);
467 /* copy src to dest, skipping leading and trailing blanks
468 * and null terminate the string
470 void scsi_ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len)
486 for( ; start<=end; start++) {
493 /* Trim trailing blanks, and NUL-terminate string
495 void scsi_trim_trail (unsigned char *str, unsigned int len)
497 unsigned char *p = str + len - 1;
508 /************************************************************************************
509 * Some setup (fill-in) routines
511 void scsi_setup_test_unit_ready(ccb * pccb)
513 pccb->cmd[0]=SCSI_TST_U_RDY;
514 pccb->cmd[1]=pccb->lun<<5;
520 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
523 void scsi_setup_read_capacity(ccb * pccb)
525 pccb->cmd[0]=SCSI_RD_CAPAC;
526 pccb->cmd[1]=pccb->lun<<5;
536 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
540 void scsi_setup_read_ext(ccb * pccb, unsigned long start, unsigned short blocks)
542 pccb->cmd[0]=SCSI_READ10;
543 pccb->cmd[1]=pccb->lun<<5;
544 pccb->cmd[2]=((unsigned char) (start>>24))&0xff;
545 pccb->cmd[3]=((unsigned char) (start>>16))&0xff;
546 pccb->cmd[4]=((unsigned char) (start>>8))&0xff;
547 pccb->cmd[5]=((unsigned char) (start))&0xff;
549 pccb->cmd[7]=((unsigned char) (blocks>>8))&0xff;
550 pccb->cmd[8]=(unsigned char) blocks & 0xff;
553 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
554 PRINTF("scsi_setup_read_ext: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
555 pccb->cmd[0],pccb->cmd[1],
556 pccb->cmd[2],pccb->cmd[3],pccb->cmd[4],pccb->cmd[5],
557 pccb->cmd[7],pccb->cmd[8]);
560 void scsi_setup_read6(ccb * pccb, unsigned long start, unsigned short blocks)
562 pccb->cmd[0]=SCSI_READ6;
563 pccb->cmd[1]=pccb->lun<<5 | (((unsigned char)(start>>16))&0x1f);
564 pccb->cmd[2]=((unsigned char) (start>>8))&0xff;
565 pccb->cmd[3]=((unsigned char) (start))&0xff;
566 pccb->cmd[4]=(unsigned char) blocks & 0xff;
569 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
570 PRINTF("scsi_setup_read6: cmd: %02X %02X startblk %02X%02X blccnt %02X\n",
571 pccb->cmd[0],pccb->cmd[1],
572 pccb->cmd[2],pccb->cmd[3],pccb->cmd[4]);
576 void scsi_setup_inquiry(ccb * pccb)
578 pccb->cmd[0]=SCSI_INQUIRY;
579 pccb->cmd[1]=pccb->lun<<5;
582 if(pccb->datalen>255)
585 pccb->cmd[4]=(unsigned char)pccb->datalen;
588 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
591 #endif /* #if (CONFIG_COMMANDS & CFG_CMD_SCSI) */