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 #ifdef CONFIG_SCSI_DEV_LIST
38 #define SCSI_DEV_LIST CONFIG_SCSI_DEV_LIST
40 #ifdef CONFIG_SCSI_SYM53C8XX
41 #define SCSI_VEND_ID 0x1000
42 #ifndef CONFIG_SCSI_DEV_ID
43 #define SCSI_DEV_ID 0x0001
45 #define SCSI_DEV_ID CONFIG_SCSI_DEV_ID
47 #elif defined CONFIG_SATA_ULI5288
49 #define SCSI_VEND_ID 0x10b9
50 #define SCSI_DEV_ID 0x5288
52 #elif !defined(CONFIG_SCSI_AHCI_PLAT)
53 #error no scsi device defined
55 #define SCSI_DEV_LIST {SCSI_VEND_ID, SCSI_DEV_ID}
59 const struct pci_device_id scsi_device_list[] = { SCSI_DEV_LIST };
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[CONFIG_SYS_SCSI_MAX_DEVICE];
71 /********************************************************************************
72 * forward declerations of some Setup Routines
74 void scsi_setup_test_unit_ready(ccb * pccb);
75 void scsi_setup_read6(ccb * pccb, unsigned long start, unsigned short blocks);
76 void scsi_setup_read_ext(ccb * pccb, unsigned long start, unsigned short blocks);
77 static void scsi_setup_write_ext(ccb *pccb, unsigned long start,
78 unsigned short blocks);
79 void scsi_setup_inquiry(ccb * pccb);
80 void scsi_ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
83 static int scsi_read_capacity(ccb *pccb, lbaint_t *capacity,
84 unsigned long *blksz);
85 static ulong scsi_read(int device, ulong blknr, lbaint_t blkcnt, void *buffer);
86 static ulong scsi_write(int device, ulong blknr,
87 lbaint_t blkcnt, const void *buffer);
90 /*********************************************************************************
91 * (re)-scan the scsi bus and reports scsi device info
92 * to the user if mode = 1
94 void scsi_scan(int mode)
96 unsigned char i,perq,modi,lun;
99 ccb* pccb=(ccb *)&tempccb;
102 printf("scanning bus for devices...\n");
104 for(i=0;i<CONFIG_SYS_SCSI_MAX_DEVICE;i++) {
105 scsi_dev_desc[i].target=0xff;
106 scsi_dev_desc[i].lun=0xff;
107 scsi_dev_desc[i].lba=0;
108 scsi_dev_desc[i].blksz=0;
109 scsi_dev_desc[i].type=DEV_TYPE_UNKNOWN;
110 scsi_dev_desc[i].vendor[0]=0;
111 scsi_dev_desc[i].product[0]=0;
112 scsi_dev_desc[i].revision[0]=0;
113 scsi_dev_desc[i].removable = false;
114 scsi_dev_desc[i].if_type=IF_TYPE_SCSI;
115 scsi_dev_desc[i].dev=i;
116 scsi_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
117 scsi_dev_desc[i].block_read=scsi_read;
118 scsi_dev_desc[i].block_write = scsi_write;
121 for(i=0;i<CONFIG_SYS_SCSI_MAX_SCSI_ID;i++) {
123 for(lun=0;lun<CONFIG_SYS_SCSI_MAX_LUN;lun++) {
125 pccb->pdata=(unsigned char *)&tempbuff;
127 scsi_setup_inquiry(pccb);
128 if (scsi_exec(pccb) != true) {
129 if(pccb->contr_stat==SCSI_SEL_TIME_OUT) {
130 debug ("Selection timeout ID %d\n",pccb->target);
131 continue; /* selection timeout => assuming no device present */
133 scsi_print_error(pccb);
138 if((perq & 0x1f)==0x1f) {
139 continue; /* skip unknown devices */
141 if((modi&0x80)==0x80) /* drive is removable */
142 scsi_dev_desc[scsi_max_devs].removable=true;
143 /* get info for this device */
144 scsi_ident_cpy((unsigned char *)&scsi_dev_desc[scsi_max_devs].vendor[0],
146 scsi_ident_cpy((unsigned char *)&scsi_dev_desc[scsi_max_devs].product[0],
148 scsi_ident_cpy((unsigned char *)&scsi_dev_desc[scsi_max_devs].revision[0],
150 scsi_dev_desc[scsi_max_devs].target=pccb->target;
151 scsi_dev_desc[scsi_max_devs].lun=pccb->lun;
154 scsi_setup_test_unit_ready(pccb);
155 if (scsi_exec(pccb) != true) {
156 if (scsi_dev_desc[scsi_max_devs].removable == true) {
157 scsi_dev_desc[scsi_max_devs].type=perq;
160 scsi_print_error(pccb);
163 if (scsi_read_capacity(pccb, &capacity, &blksz)) {
164 scsi_print_error(pccb);
167 scsi_dev_desc[scsi_max_devs].lba=capacity;
168 scsi_dev_desc[scsi_max_devs].blksz=blksz;
169 scsi_dev_desc[scsi_max_devs].type=perq;
170 init_part(&scsi_dev_desc[scsi_max_devs]);
173 printf (" Device %d: ", scsi_max_devs);
174 dev_print(&scsi_dev_desc[scsi_max_devs]);
184 printf("Found %d device(s).\n", scsi_max_devs);
185 setenv_ulong("scsidevs", scsi_max_devs);
188 int scsi_get_disk_count(void)
190 return scsi_max_devs;
199 * Find a device from the list, this driver will support a single
202 for (i = 0; i < ARRAY_SIZE(scsi_device_list); i++) {
203 /* get PCI Device ID */
204 busdevfunc = pci_find_device(scsi_device_list[i].vendor,
205 scsi_device_list[i].device,
207 if (busdevfunc != -1)
211 if (busdevfunc == -1) {
212 printf("Error: SCSI Controller(s) ");
213 for (i = 0; i < ARRAY_SIZE(scsi_device_list); i++) {
215 scsi_device_list[i].vendor,
216 scsi_device_list[i].device);
218 printf("not found\n");
223 printf("SCSI Controller (%04X,%04X) found (%d:%d:%d)\n",
224 scsi_device_list[i].vendor,
225 scsi_device_list[i].device,
226 (busdevfunc >> 16) & 0xFF,
227 (busdevfunc >> 11) & 0x1F,
228 (busdevfunc >> 8) & 0x7);
231 scsi_low_level_init(busdevfunc);
236 #ifdef CONFIG_PARTITIONS
237 block_dev_desc_t * scsi_get_dev(int dev)
239 return (dev < CONFIG_SYS_SCSI_MAX_DEVICE) ? &scsi_dev_desc[dev] : NULL;
243 /******************************************************************************
244 * scsi boot command intepreter. Derived from diskboot
246 int do_scsiboot (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
248 return common_diskboot(cmdtp, "scsi", argc, argv);
251 /*********************************************************************************
252 * scsi command intepreter
254 int do_scsi (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
259 return CMD_RET_USAGE;
262 if (strncmp(argv[1],"res",3) == 0) {
263 printf("\nReset SCSI\n");
268 if (strncmp(argv[1],"inf",3) == 0) {
270 for (i=0; i<CONFIG_SYS_SCSI_MAX_DEVICE; ++i) {
271 if(scsi_dev_desc[i].type==DEV_TYPE_UNKNOWN)
272 continue; /* list only known devices */
273 printf ("SCSI dev. %d: ", i);
274 dev_print(&scsi_dev_desc[i]);
278 if (strncmp(argv[1],"dev",3) == 0) {
279 if ((scsi_curr_dev < 0) || (scsi_curr_dev >= CONFIG_SYS_SCSI_MAX_DEVICE)) {
280 printf("\nno SCSI devices available\n");
283 printf ("\n Device %d: ", scsi_curr_dev);
284 dev_print(&scsi_dev_desc[scsi_curr_dev]);
287 if (strncmp(argv[1],"scan",4) == 0) {
291 if (strncmp(argv[1],"part",4) == 0) {
293 for (ok=0, dev=0; dev<CONFIG_SYS_SCSI_MAX_DEVICE; ++dev) {
294 if (scsi_dev_desc[dev].type!=DEV_TYPE_UNKNOWN) {
298 debug ("print_part of %x\n",dev);
299 print_part(&scsi_dev_desc[dev]);
303 printf("\nno SCSI devices available\n");
306 return CMD_RET_USAGE;
308 if (strncmp(argv[1],"dev",3) == 0) {
309 int dev = (int)simple_strtoul(argv[2], NULL, 10);
310 printf ("\nSCSI device %d: ", dev);
311 if (dev >= CONFIG_SYS_SCSI_MAX_DEVICE) {
312 printf("unknown device\n");
315 printf ("\n Device %d: ", dev);
316 dev_print(&scsi_dev_desc[dev]);
317 if(scsi_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
321 printf("... is now current device\n");
324 if (strncmp(argv[1],"part",4) == 0) {
325 int dev = (int)simple_strtoul(argv[2], NULL, 10);
326 if(scsi_dev_desc[dev].type != DEV_TYPE_UNKNOWN) {
327 print_part(&scsi_dev_desc[dev]);
330 printf ("\nSCSI device %d not available\n", dev);
334 return CMD_RET_USAGE;
336 /* at least 4 args */
337 if (strcmp(argv[1],"read") == 0) {
338 ulong addr = simple_strtoul(argv[2], NULL, 16);
339 ulong blk = simple_strtoul(argv[3], NULL, 16);
340 ulong cnt = simple_strtoul(argv[4], NULL, 16);
342 printf ("\nSCSI read: device %d block # %ld, count %ld ... ",
343 scsi_curr_dev, blk, cnt);
344 n = scsi_read(scsi_curr_dev, blk, cnt, (ulong *)addr);
345 printf ("%ld blocks read: %s\n",n,(n==cnt) ? "OK" : "ERROR");
347 } else if (strcmp(argv[1], "write") == 0) {
348 ulong addr = simple_strtoul(argv[2], NULL, 16);
349 ulong blk = simple_strtoul(argv[3], NULL, 16);
350 ulong cnt = simple_strtoul(argv[4], NULL, 16);
352 printf("\nSCSI write: device %d block # %ld, "
354 scsi_curr_dev, blk, cnt);
355 n = scsi_write(scsi_curr_dev, blk, cnt,
357 printf("%ld blocks written: %s\n", n,
358 (n == cnt) ? "OK" : "ERROR");
362 return CMD_RET_USAGE;
365 /****************************************************************************************
369 #define SCSI_MAX_READ_BLK 0xFFFF /* almost the maximum amount of the scsi_ext command.. */
371 static ulong scsi_read(int device, ulong blknr, lbaint_t blkcnt, void *buffer)
373 lbaint_t start, blks;
375 unsigned short smallblks;
376 ccb* pccb=(ccb *)&tempccb;
380 pccb->target=scsi_dev_desc[device].target;
381 pccb->lun=scsi_dev_desc[device].lun;
382 buf_addr=(unsigned long)buffer;
385 debug("\nscsi_read: dev %d startblk " LBAF
386 ", blccnt " LBAF " buffer %lx\n",
387 device, start, blks, (unsigned long)buffer);
389 pccb->pdata=(unsigned char *)buf_addr;
390 if(blks>SCSI_MAX_READ_BLK) {
391 pccb->datalen=scsi_dev_desc[device].blksz * SCSI_MAX_READ_BLK;
392 smallblks=SCSI_MAX_READ_BLK;
393 scsi_setup_read_ext(pccb,start,smallblks);
394 start+=SCSI_MAX_READ_BLK;
395 blks-=SCSI_MAX_READ_BLK;
398 pccb->datalen=scsi_dev_desc[device].blksz * blks;
399 smallblks=(unsigned short) blks;
400 scsi_setup_read_ext(pccb,start,smallblks);
404 debug("scsi_read_ext: startblk " LBAF
405 ", blccnt %x buffer %lx\n",
406 start, smallblks, buf_addr);
407 if (scsi_exec(pccb) != true) {
408 scsi_print_error(pccb);
412 buf_addr+=pccb->datalen;
414 debug("scsi_read_ext: end startblk " LBAF
415 ", blccnt %x buffer %lx\n", start, smallblks, buf_addr);
419 /*******************************************************************************
423 /* Almost the maximum amount of the scsi_ext command.. */
424 #define SCSI_MAX_WRITE_BLK 0xFFFF
426 static ulong scsi_write(int device, ulong blknr,
427 lbaint_t blkcnt, const void *buffer)
429 lbaint_t start, blks;
431 unsigned short smallblks;
432 ccb* pccb = (ccb *)&tempccb;
436 pccb->target = scsi_dev_desc[device].target;
437 pccb->lun = scsi_dev_desc[device].lun;
438 buf_addr = (unsigned long)buffer;
441 debug("\n%s: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n",
442 __func__, device, start, blks, (unsigned long)buffer);
444 pccb->pdata = (unsigned char *)buf_addr;
445 if (blks > SCSI_MAX_WRITE_BLK) {
446 pccb->datalen = (scsi_dev_desc[device].blksz *
448 smallblks = SCSI_MAX_WRITE_BLK;
449 scsi_setup_write_ext(pccb, start, smallblks);
450 start += SCSI_MAX_WRITE_BLK;
451 blks -= SCSI_MAX_WRITE_BLK;
453 pccb->datalen = scsi_dev_desc[device].blksz * blks;
454 smallblks = (unsigned short)blks;
455 scsi_setup_write_ext(pccb, start, smallblks);
459 debug("%s: startblk " LBAF ", blccnt %x buffer %lx\n",
460 __func__, start, smallblks, buf_addr);
461 if (scsi_exec(pccb) != true) {
462 scsi_print_error(pccb);
466 buf_addr += pccb->datalen;
468 debug("%s: end startblk " LBAF ", blccnt %x buffer %lx\n",
469 __func__, start, smallblks, buf_addr);
473 /* copy src to dest, skipping leading and trailing blanks
474 * and null terminate the string
476 void scsi_ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len)
492 for( ; start<=end; start++) {
499 /* Trim trailing blanks, and NUL-terminate string
501 void scsi_trim_trail (unsigned char *str, unsigned int len)
503 unsigned char *p = str + len - 1;
513 int scsi_read_capacity(ccb *pccb, lbaint_t *capacity, unsigned long *blksz)
517 memset(pccb->cmd, 0, sizeof(pccb->cmd));
518 pccb->cmd[0] = SCSI_RD_CAPAC10;
519 pccb->cmd[1] = pccb->lun << 5;
521 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
524 if (scsi_exec(pccb) != true)
527 *capacity = ((lbaint_t)pccb->pdata[0] << 24) |
528 ((lbaint_t)pccb->pdata[1] << 16) |
529 ((lbaint_t)pccb->pdata[2] << 8) |
530 ((lbaint_t)pccb->pdata[3]);
532 if (*capacity != 0xffffffff) {
533 /* Read capacity (10) was sufficient for this drive. */
534 *blksz = ((unsigned long)pccb->pdata[4] << 24) |
535 ((unsigned long)pccb->pdata[5] << 16) |
536 ((unsigned long)pccb->pdata[6] << 8) |
537 ((unsigned long)pccb->pdata[7]);
541 /* Read capacity (10) was insufficient. Use read capacity (16). */
543 memset(pccb->cmd, 0, sizeof(pccb->cmd));
544 pccb->cmd[0] = SCSI_RD_CAPAC16;
547 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
550 if (scsi_exec(pccb) != true)
553 *capacity = ((uint64_t)pccb->pdata[0] << 56) |
554 ((uint64_t)pccb->pdata[1] << 48) |
555 ((uint64_t)pccb->pdata[2] << 40) |
556 ((uint64_t)pccb->pdata[3] << 32) |
557 ((uint64_t)pccb->pdata[4] << 24) |
558 ((uint64_t)pccb->pdata[5] << 16) |
559 ((uint64_t)pccb->pdata[6] << 8) |
560 ((uint64_t)pccb->pdata[7]);
562 *blksz = ((uint64_t)pccb->pdata[8] << 56) |
563 ((uint64_t)pccb->pdata[9] << 48) |
564 ((uint64_t)pccb->pdata[10] << 40) |
565 ((uint64_t)pccb->pdata[11] << 32) |
566 ((uint64_t)pccb->pdata[12] << 24) |
567 ((uint64_t)pccb->pdata[13] << 16) |
568 ((uint64_t)pccb->pdata[14] << 8) |
569 ((uint64_t)pccb->pdata[15]);
575 /************************************************************************************
576 * Some setup (fill-in) routines
578 void scsi_setup_test_unit_ready(ccb * pccb)
580 pccb->cmd[0]=SCSI_TST_U_RDY;
581 pccb->cmd[1]=pccb->lun<<5;
587 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
590 void scsi_setup_read_ext(ccb * pccb, unsigned long start, unsigned short blocks)
592 pccb->cmd[0]=SCSI_READ10;
593 pccb->cmd[1]=pccb->lun<<5;
594 pccb->cmd[2]=((unsigned char) (start>>24))&0xff;
595 pccb->cmd[3]=((unsigned char) (start>>16))&0xff;
596 pccb->cmd[4]=((unsigned char) (start>>8))&0xff;
597 pccb->cmd[5]=((unsigned char) (start))&0xff;
599 pccb->cmd[7]=((unsigned char) (blocks>>8))&0xff;
600 pccb->cmd[8]=(unsigned char) blocks & 0xff;
603 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
604 debug ("scsi_setup_read_ext: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
605 pccb->cmd[0],pccb->cmd[1],
606 pccb->cmd[2],pccb->cmd[3],pccb->cmd[4],pccb->cmd[5],
607 pccb->cmd[7],pccb->cmd[8]);
610 void scsi_setup_write_ext(ccb *pccb, unsigned long start, unsigned short blocks)
612 pccb->cmd[0] = SCSI_WRITE10;
613 pccb->cmd[1] = pccb->lun << 5;
614 pccb->cmd[2] = ((unsigned char) (start>>24)) & 0xff;
615 pccb->cmd[3] = ((unsigned char) (start>>16)) & 0xff;
616 pccb->cmd[4] = ((unsigned char) (start>>8)) & 0xff;
617 pccb->cmd[5] = ((unsigned char) (start)) & 0xff;
619 pccb->cmd[7] = ((unsigned char) (blocks>>8)) & 0xff;
620 pccb->cmd[8] = (unsigned char)blocks & 0xff;
623 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
624 debug("%s: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
626 pccb->cmd[0], pccb->cmd[1],
627 pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5],
628 pccb->cmd[7], pccb->cmd[8]);
631 void scsi_setup_read6(ccb * pccb, unsigned long start, unsigned short blocks)
633 pccb->cmd[0]=SCSI_READ6;
634 pccb->cmd[1]=pccb->lun<<5 | (((unsigned char)(start>>16))&0x1f);
635 pccb->cmd[2]=((unsigned char) (start>>8))&0xff;
636 pccb->cmd[3]=((unsigned char) (start))&0xff;
637 pccb->cmd[4]=(unsigned char) blocks & 0xff;
640 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
641 debug ("scsi_setup_read6: cmd: %02X %02X startblk %02X%02X blccnt %02X\n",
642 pccb->cmd[0],pccb->cmd[1],
643 pccb->cmd[2],pccb->cmd[3],pccb->cmd[4]);
647 void scsi_setup_inquiry(ccb * pccb)
649 pccb->cmd[0]=SCSI_INQUIRY;
650 pccb->cmd[1]=pccb->lun<<5;
653 if(pccb->datalen>255)
656 pccb->cmd[4]=(unsigned char)pccb->datalen;
659 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
666 "reset - reset SCSI controller\n"
667 "scsi info - show available SCSI devices\n"
668 "scsi scan - (re-)scan SCSI bus\n"
669 "scsi device [dev] - show or set current device\n"
670 "scsi part [dev] - print partition table of one or all SCSI devices\n"
671 "scsi read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
672 " to memory address `addr'\n"
673 "scsi write addr blk# cnt - write `cnt' blocks starting at block\n"
674 " `blk#' from memory address `addr'"
678 scsiboot, 3, 1, do_scsiboot,
679 "boot from SCSI device",