blob: 8019adabfc45010f840a3299c7dc2cbb0de35e63 [file] [log] [blame]
wdenke887afc2002-08-27 09:44:07 +00001/*
2 * (C) Copyright 2001
3 * Denis Peter, MPL AG Switzerland
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
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.
12 *
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.
17 *
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,
21 * MA 02111-1307 USA
22 *
23 *
24 *
25 */
26
27/*
28 * SCSI support.
29 */
wdenke887afc2002-08-27 09:44:07 +000030#include <common.h>
31#include <command.h>
wdenke887afc2002-08-27 09:44:07 +000032#include <asm/processor.h>
33#include <scsi.h>
34#include <image.h>
wdenke887afc2002-08-27 09:44:07 +000035#include <pci.h>
36
wdenke887afc2002-08-27 09:44:07 +000037#ifdef CONFIG_SCSI_SYM53C8XX
38#define SCSI_VEND_ID 0x1000
39#ifndef CONFIG_SCSI_DEV_ID
40#define SCSI_DEV_ID 0x0001
41#else
42#define SCSI_DEV_ID CONFIG_SCSI_DEV_ID
43#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080044#elif defined CONFIG_SATA_ULI5288
45
46#define SCSI_VEND_ID 0x10b9
47#define SCSI_DEV_ID 0x5288
48
wdenke887afc2002-08-27 09:44:07 +000049#else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080050#error no scsi device defined
wdenke887afc2002-08-27 09:44:07 +000051#endif
52
53
54static ccb tempccb; /* temporary scsi command buffer */
55
56static unsigned char tempbuff[512]; /* temporary data buffer */
57
58static int scsi_max_devs; /* number of highest available scsi device */
59
60static int scsi_curr_dev; /* current device */
61
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020062static block_dev_desc_t scsi_dev_desc[CONFIG_SYS_SCSI_MAX_DEVICE];
wdenke887afc2002-08-27 09:44:07 +000063
64/********************************************************************************
65 * forward declerations of some Setup Routines
66 */
67void scsi_setup_test_unit_ready(ccb * pccb);
68void scsi_setup_read_capacity(ccb * pccb);
69void scsi_setup_read6(ccb * pccb, unsigned long start, unsigned short blocks);
70void scsi_setup_read_ext(ccb * pccb, unsigned long start, unsigned short blocks);
71void scsi_setup_inquiry(ccb * pccb);
72void scsi_ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
73
74
Grant Likely2089cab2007-02-20 09:05:45 +010075ulong scsi_read(int device, ulong blknr, ulong blkcnt, void *buffer);
wdenke887afc2002-08-27 09:44:07 +000076
77
78/*********************************************************************************
79 * (re)-scan the scsi bus and reports scsi device info
80 * to the user if mode = 1
81 */
82void scsi_scan(int mode)
83{
84 unsigned char i,perq,modi,lun;
85 unsigned long capacity,blksz;
86 ccb* pccb=(ccb *)&tempccb;
87
88 if(mode==1) {
89 printf("scanning bus for devices...\n");
90 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020091 for(i=0;i<CONFIG_SYS_SCSI_MAX_DEVICE;i++) {
wdenke887afc2002-08-27 09:44:07 +000092 scsi_dev_desc[i].target=0xff;
93 scsi_dev_desc[i].lun=0xff;
94 scsi_dev_desc[i].lba=0;
95 scsi_dev_desc[i].blksz=0;
96 scsi_dev_desc[i].type=DEV_TYPE_UNKNOWN;
97 scsi_dev_desc[i].vendor[0]=0;
98 scsi_dev_desc[i].product[0]=0;
99 scsi_dev_desc[i].revision[0]=0;
100 scsi_dev_desc[i].removable=FALSE;
101 scsi_dev_desc[i].if_type=IF_TYPE_SCSI;
102 scsi_dev_desc[i].dev=i;
103 scsi_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
104 scsi_dev_desc[i].block_read=scsi_read;
105 }
106 scsi_max_devs=0;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200107 for(i=0;i<CONFIG_SYS_SCSI_MAX_SCSI_ID;i++) {
wdenke887afc2002-08-27 09:44:07 +0000108 pccb->target=i;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200109 for(lun=0;lun<CONFIG_SYS_SCSI_MAX_LUN;lun++) {
wdenke887afc2002-08-27 09:44:07 +0000110 pccb->lun=lun;
111 pccb->pdata=(unsigned char *)&tempbuff;
112 pccb->datalen=512;
113 scsi_setup_inquiry(pccb);
114 if(scsi_exec(pccb)!=TRUE) {
115 if(pccb->contr_stat==SCSI_SEL_TIME_OUT) {
wdenkf1276d42005-02-03 23:00:49 +0000116 debug ("Selection timeout ID %d\n",pccb->target);
wdenke887afc2002-08-27 09:44:07 +0000117 continue; /* selection timeout => assuming no device present */
118 }
119 scsi_print_error(pccb);
120 continue;
121 }
122 perq=tempbuff[0];
123 modi=tempbuff[1];
124 if((perq & 0x1f)==0x1f) {
125 continue; /* skip unknown devices */
126 }
127 if((modi&0x80)==0x80) /* drive is removable */
128 scsi_dev_desc[scsi_max_devs].removable=TRUE;
129 /* get info for this device */
Stefan Roese4404c162007-11-17 07:58:25 +0100130 scsi_ident_cpy((unsigned char *)&scsi_dev_desc[scsi_max_devs].vendor[0],
131 &tempbuff[8], 8);
132 scsi_ident_cpy((unsigned char *)&scsi_dev_desc[scsi_max_devs].product[0],
133 &tempbuff[16], 16);
134 scsi_ident_cpy((unsigned char *)&scsi_dev_desc[scsi_max_devs].revision[0],
135 &tempbuff[32], 4);
wdenke887afc2002-08-27 09:44:07 +0000136 scsi_dev_desc[scsi_max_devs].target=pccb->target;
137 scsi_dev_desc[scsi_max_devs].lun=pccb->lun;
138
139 pccb->datalen=0;
140 scsi_setup_test_unit_ready(pccb);
141 if(scsi_exec(pccb)!=TRUE) {
142 if(scsi_dev_desc[scsi_max_devs].removable==TRUE) {
143 scsi_dev_desc[scsi_max_devs].type=perq;
144 goto removable;
145 }
146 scsi_print_error(pccb);
147 continue;
148 }
149 pccb->datalen=8;
150 scsi_setup_read_capacity(pccb);
151 if(scsi_exec(pccb)!=TRUE) {
152 scsi_print_error(pccb);
153 continue;
154 }
155 capacity=((unsigned long)tempbuff[0]<<24)|((unsigned long)tempbuff[1]<<16)|
156 ((unsigned long)tempbuff[2]<<8)|((unsigned long)tempbuff[3]);
157 blksz=((unsigned long)tempbuff[4]<<24)|((unsigned long)tempbuff[5]<<16)|
158 ((unsigned long)tempbuff[6]<<8)|((unsigned long)tempbuff[7]);
159 scsi_dev_desc[scsi_max_devs].lba=capacity;
160 scsi_dev_desc[scsi_max_devs].blksz=blksz;
161 scsi_dev_desc[scsi_max_devs].type=perq;
162 init_part(&scsi_dev_desc[scsi_max_devs]);
163removable:
164 if(mode==1) {
165 printf (" Device %d: ", scsi_max_devs);
166 dev_print(&scsi_dev_desc[scsi_max_devs]);
167 } /* if mode */
168 scsi_max_devs++;
169 } /* next LUN */
170 }
171 if(scsi_max_devs>0)
172 scsi_curr_dev=0;
173 else
Wolfgang Denkdc770c72008-07-14 15:19:07 +0200174 scsi_curr_dev = -1;
wdenke887afc2002-08-27 09:44:07 +0000175}
176
177
wdenke887afc2002-08-27 09:44:07 +0000178void scsi_init(void)
179{
180 int busdevfunc;
181
182 busdevfunc=pci_find_device(SCSI_VEND_ID,SCSI_DEV_ID,0); /* get PCI Device ID */
183 if(busdevfunc==-1) {
184 printf("Error SCSI Controller (%04X,%04X) not found\n",SCSI_VEND_ID,SCSI_DEV_ID);
185 return;
186 }
187#ifdef DEBUG
188 else {
189 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);
190 }
191#endif
192 scsi_low_level_init(busdevfunc);
193 scsi_scan(1);
194}
195
196block_dev_desc_t * scsi_get_dev(int dev)
197{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200198 return (dev < CONFIG_SYS_SCSI_MAX_DEVICE) ? &scsi_dev_desc[dev] : NULL;
wdenke887afc2002-08-27 09:44:07 +0000199}
200
201
wdenke887afc2002-08-27 09:44:07 +0000202/******************************************************************************
203 * scsi boot command intepreter. Derived from diskboot
204 */
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200205int do_scsiboot (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000206{
207 char *boot_device = NULL;
208 char *ep;
209 int dev, part = 0;
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100210 ulong addr, cnt;
wdenke887afc2002-08-27 09:44:07 +0000211 disk_partition_t info;
212 image_header_t *hdr;
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100213#if defined(CONFIG_FIT)
Marian Balakowiczcefb4022008-06-06 23:07:40 +0200214 const void *fit_hdr = NULL;
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100215#endif
wdenke887afc2002-08-27 09:44:07 +0000216
217 switch (argc) {
218 case 1:
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200219 addr = CONFIG_SYS_LOAD_ADDR;
wdenke887afc2002-08-27 09:44:07 +0000220 boot_device = getenv ("bootdevice");
221 break;
222 case 2:
223 addr = simple_strtoul(argv[1], NULL, 16);
224 boot_device = getenv ("bootdevice");
225 break;
226 case 3:
227 addr = simple_strtoul(argv[1], NULL, 16);
228 boot_device = argv[2];
229 break;
230 default:
Wolfgang Denk3b683112010-07-17 01:06:04 +0200231 return cmd_usage(cmdtp);
wdenke887afc2002-08-27 09:44:07 +0000232 }
233
234 if (!boot_device) {
235 puts ("\n** No boot device **\n");
236 return 1;
237 }
238
239 dev = simple_strtoul(boot_device, &ep, 16);
240 printf("booting from dev %d\n",dev);
241 if (scsi_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
242 printf ("\n** Device %d not available\n", dev);
243 return 1;
244 }
245
246 if (*ep) {
247 if (*ep != ':') {
248 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
249 return 1;
250 }
251 part = simple_strtoul(++ep, NULL, 16);
252 }
Denis Peter3957bc12007-04-13 09:13:33 +0200253 if (get_partition_info (&scsi_dev_desc[dev], part, &info)) {
wdenke887afc2002-08-27 09:44:07 +0000254 printf("error reading partinfo\n");
255 return 1;
256 }
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200257 if ((strncmp((char *)(info.type), BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
258 (strncmp((char *)(info.type), BOOT_PART_COMP, sizeof(info.type)) != 0)) {
wdenke887afc2002-08-27 09:44:07 +0000259 printf ("\n** Invalid partition type \"%.32s\""
260 " (expect \"" BOOT_PART_TYPE "\")\n",
261 info.type);
262 return 1;
263 }
264
265 printf ("\nLoading from SCSI device %d, partition %d: "
266 "Name: %.32s Type: %.32s\n",
267 dev, part, info.name, info.type);
268
wdenkf1276d42005-02-03 23:00:49 +0000269 debug ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
wdenke887afc2002-08-27 09:44:07 +0000270 info.start, info.size, info.blksz);
271
272 if (scsi_read (dev, info.start, 1, (ulong *)addr) != 1) {
273 printf ("** Read error on %d:%d\n", dev, part);
274 return 1;
275 }
276
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100277 switch (genimg_get_format ((void *)addr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100278 case IMAGE_FORMAT_LEGACY:
279 hdr = (image_header_t *)addr;
wdenke887afc2002-08-27 09:44:07 +0000280
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100281 if (!image_check_hcrc (hdr)) {
282 puts ("\n** Bad Header Checksum **\n");
283 return 1;
284 }
285
286 image_print_contents (hdr);
287 cnt = image_get_image_size (hdr);
288 break;
289#if defined(CONFIG_FIT)
290 case IMAGE_FORMAT_FIT:
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100291 fit_hdr = (const void *)addr;
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100292 puts ("Fit image detected...\n");
293
294 cnt = fit_get_size (fit_hdr);
295 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100296#endif
297 default:
298 puts ("** Unknown image type\n");
wdenkf1276d42005-02-03 23:00:49 +0000299 return 1;
300 }
301
wdenkf1276d42005-02-03 23:00:49 +0000302 cnt += info.blksz - 1;
303 cnt /= info.blksz;
304 cnt -= 1;
305
wdenke887afc2002-08-27 09:44:07 +0000306 if (scsi_read (dev, info.start+1, cnt,
307 (ulong *)(addr+info.blksz)) != cnt) {
308 printf ("** Read error on %d:%d\n", dev, part);
309 return 1;
310 }
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100311
312#if defined(CONFIG_FIT)
313 /* This cannot be done earlier, we need complete FIT image in RAM first */
Marian Balakowiczcefb4022008-06-06 23:07:40 +0200314 if (genimg_get_format ((void *)addr) == IMAGE_FORMAT_FIT) {
315 if (!fit_check_format (fit_hdr)) {
316 puts ("** Bad FIT image format\n");
317 return 1;
318 }
319 fit_print_contents (fit_hdr);
320 }
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100321#endif
322
wdenke887afc2002-08-27 09:44:07 +0000323 /* Loading ok, update default load address */
324 load_addr = addr;
325
326 flush_cache (addr, (cnt+1)*info.blksz);
327
Mike Frysinger194c2e82011-06-05 13:43:02 +0000328 return bootm_maybe_autostart(cmdtp, argv[0]);
wdenke887afc2002-08-27 09:44:07 +0000329}
330
331/*********************************************************************************
332 * scsi command intepreter
333 */
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200334int do_scsi (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000335{
336 switch (argc) {
337 case 0:
Wolfgang Denk3b683112010-07-17 01:06:04 +0200338 case 1: return cmd_usage(cmdtp);
339
wdenke887afc2002-08-27 09:44:07 +0000340 case 2:
341 if (strncmp(argv[1],"res",3) == 0) {
342 printf("\nReset SCSI\n");
343 scsi_bus_reset();
344 scsi_scan(1);
345 return 0;
346 }
347 if (strncmp(argv[1],"inf",3) == 0) {
348 int i;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200349 for (i=0; i<CONFIG_SYS_SCSI_MAX_DEVICE; ++i) {
wdenke887afc2002-08-27 09:44:07 +0000350 if(scsi_dev_desc[i].type==DEV_TYPE_UNKNOWN)
351 continue; /* list only known devices */
352 printf ("SCSI dev. %d: ", i);
353 dev_print(&scsi_dev_desc[i]);
354 }
355 return 0;
356 }
357 if (strncmp(argv[1],"dev",3) == 0) {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200358 if ((scsi_curr_dev < 0) || (scsi_curr_dev >= CONFIG_SYS_SCSI_MAX_DEVICE)) {
wdenke887afc2002-08-27 09:44:07 +0000359 printf("\nno SCSI devices available\n");
360 return 1;
361 }
362 printf ("\n Device %d: ", scsi_curr_dev);
363 dev_print(&scsi_dev_desc[scsi_curr_dev]);
364 return 0;
365 }
366 if (strncmp(argv[1],"scan",4) == 0) {
367 scsi_scan(1);
368 return 0;
369 }
370 if (strncmp(argv[1],"part",4) == 0) {
371 int dev, ok;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200372 for (ok=0, dev=0; dev<CONFIG_SYS_SCSI_MAX_DEVICE; ++dev) {
wdenke887afc2002-08-27 09:44:07 +0000373 if (scsi_dev_desc[dev].type!=DEV_TYPE_UNKNOWN) {
374 ok++;
375 if (dev)
376 printf("\n");
wdenkf1276d42005-02-03 23:00:49 +0000377 debug ("print_part of %x\n",dev);
wdenke887afc2002-08-27 09:44:07 +0000378 print_part(&scsi_dev_desc[dev]);
379 }
380 }
381 if (!ok)
382 printf("\nno SCSI devices available\n");
383 return 1;
384 }
Wolfgang Denk3b683112010-07-17 01:06:04 +0200385 return cmd_usage(cmdtp);
Wolfgang Denka1be4762008-05-20 16:00:29 +0200386 case 3:
wdenke887afc2002-08-27 09:44:07 +0000387 if (strncmp(argv[1],"dev",3) == 0) {
388 int dev = (int)simple_strtoul(argv[2], NULL, 10);
389 printf ("\nSCSI device %d: ", dev);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200390 if (dev >= CONFIG_SYS_SCSI_MAX_DEVICE) {
wdenke887afc2002-08-27 09:44:07 +0000391 printf("unknown device\n");
392 return 1;
393 }
394 printf ("\n Device %d: ", dev);
395 dev_print(&scsi_dev_desc[dev]);
396 if(scsi_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
397 return 1;
398 }
399 scsi_curr_dev = dev;
400 printf("... is now current device\n");
401 return 0;
402 }
403 if (strncmp(argv[1],"part",4) == 0) {
404 int dev = (int)simple_strtoul(argv[2], NULL, 10);
405 if(scsi_dev_desc[dev].type != DEV_TYPE_UNKNOWN) {
406 print_part(&scsi_dev_desc[dev]);
407 }
408 else {
409 printf ("\nSCSI device %d not available\n", dev);
410 }
411 return 1;
412 }
Wolfgang Denk3b683112010-07-17 01:06:04 +0200413 return cmd_usage(cmdtp);
wdenke887afc2002-08-27 09:44:07 +0000414 default:
415 /* at least 4 args */
416 if (strcmp(argv[1],"read") == 0) {
417 ulong addr = simple_strtoul(argv[2], NULL, 16);
418 ulong blk = simple_strtoul(argv[3], NULL, 16);
419 ulong cnt = simple_strtoul(argv[4], NULL, 16);
420 ulong n;
421 printf ("\nSCSI read: device %d block # %ld, count %ld ... ",
422 scsi_curr_dev, blk, cnt);
423 n = scsi_read(scsi_curr_dev, blk, cnt, (ulong *)addr);
424 printf ("%ld blocks read: %s\n",n,(n==cnt) ? "OK" : "ERROR");
425 return 0;
426 }
427 } /* switch */
Wolfgang Denk3b683112010-07-17 01:06:04 +0200428 return cmd_usage(cmdtp);
wdenke887afc2002-08-27 09:44:07 +0000429}
430
431/****************************************************************************************
432 * scsi_read
433 */
434
435#define SCSI_MAX_READ_BLK 0xFFFF /* almost the maximum amount of the scsi_ext command.. */
436
Grant Likely2089cab2007-02-20 09:05:45 +0100437ulong scsi_read(int device, ulong blknr, ulong blkcnt, void *buffer)
wdenke887afc2002-08-27 09:44:07 +0000438{
439 ulong start,blks, buf_addr;
440 unsigned short smallblks;
441 ccb* pccb=(ccb *)&tempccb;
442 device&=0xff;
443 /* Setup device
444 */
445 pccb->target=scsi_dev_desc[device].target;
446 pccb->lun=scsi_dev_desc[device].lun;
447 buf_addr=(unsigned long)buffer;
448 start=blknr;
449 blks=blkcnt;
wdenkf1276d42005-02-03 23:00:49 +0000450 debug ("\nscsi_read: dev %d startblk %lx, blccnt %lx buffer %lx\n",device,start,blks,(unsigned long)buffer);
wdenke887afc2002-08-27 09:44:07 +0000451 do {
452 pccb->pdata=(unsigned char *)buf_addr;
453 if(blks>SCSI_MAX_READ_BLK) {
454 pccb->datalen=scsi_dev_desc[device].blksz * SCSI_MAX_READ_BLK;
455 smallblks=SCSI_MAX_READ_BLK;
456 scsi_setup_read_ext(pccb,start,smallblks);
457 start+=SCSI_MAX_READ_BLK;
458 blks-=SCSI_MAX_READ_BLK;
459 }
460 else {
461 pccb->datalen=scsi_dev_desc[device].blksz * blks;
462 smallblks=(unsigned short) blks;
463 scsi_setup_read_ext(pccb,start,smallblks);
464 start+=blks;
465 blks=0;
466 }
wdenkf1276d42005-02-03 23:00:49 +0000467 debug ("scsi_read_ext: startblk %lx, blccnt %x buffer %lx\n",start,smallblks,buf_addr);
wdenke887afc2002-08-27 09:44:07 +0000468 if(scsi_exec(pccb)!=TRUE) {
469 scsi_print_error(pccb);
470 blkcnt-=blks;
471 break;
472 }
473 buf_addr+=pccb->datalen;
474 } while(blks!=0);
wdenkf1276d42005-02-03 23:00:49 +0000475 debug ("scsi_read_ext: end startblk %lx, blccnt %x buffer %lx\n",start,smallblks,buf_addr);
wdenke887afc2002-08-27 09:44:07 +0000476 return(blkcnt);
477}
478
479/* copy src to dest, skipping leading and trailing blanks
480 * and null terminate the string
481 */
482void scsi_ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len)
483{
484 int start,end;
485
486 start=0;
487 while(start<len) {
488 if(src[start]!=' ')
489 break;
490 start++;
491 }
492 end=len-1;
493 while(end>start) {
494 if(src[end]!=' ')
495 break;
496 end--;
497 }
498 for( ; start<=end; start++) {
499 *dest++=src[start];
500 }
501 *dest='\0';
502}
503
504
wdenke887afc2002-08-27 09:44:07 +0000505/* Trim trailing blanks, and NUL-terminate string
506 */
507void scsi_trim_trail (unsigned char *str, unsigned int len)
508{
509 unsigned char *p = str + len - 1;
510
511 while (len-- > 0) {
512 *p-- = '\0';
513 if (*p != ' ') {
514 return;
515 }
516 }
517}
518
519
520/************************************************************************************
521 * Some setup (fill-in) routines
522 */
523void scsi_setup_test_unit_ready(ccb * pccb)
524{
525 pccb->cmd[0]=SCSI_TST_U_RDY;
526 pccb->cmd[1]=pccb->lun<<5;
527 pccb->cmd[2]=0;
528 pccb->cmd[3]=0;
529 pccb->cmd[4]=0;
530 pccb->cmd[5]=0;
531 pccb->cmdlen=6;
532 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
533}
534
535void scsi_setup_read_capacity(ccb * pccb)
536{
537 pccb->cmd[0]=SCSI_RD_CAPAC;
538 pccb->cmd[1]=pccb->lun<<5;
539 pccb->cmd[2]=0;
540 pccb->cmd[3]=0;
541 pccb->cmd[4]=0;
542 pccb->cmd[5]=0;
543 pccb->cmd[6]=0;
544 pccb->cmd[7]=0;
545 pccb->cmd[8]=0;
546 pccb->cmd[9]=0;
547 pccb->cmdlen=10;
548 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
549
550}
551
552void scsi_setup_read_ext(ccb * pccb, unsigned long start, unsigned short blocks)
553{
554 pccb->cmd[0]=SCSI_READ10;
555 pccb->cmd[1]=pccb->lun<<5;
556 pccb->cmd[2]=((unsigned char) (start>>24))&0xff;
557 pccb->cmd[3]=((unsigned char) (start>>16))&0xff;
558 pccb->cmd[4]=((unsigned char) (start>>8))&0xff;
559 pccb->cmd[5]=((unsigned char) (start))&0xff;
560 pccb->cmd[6]=0;
561 pccb->cmd[7]=((unsigned char) (blocks>>8))&0xff;
562 pccb->cmd[8]=(unsigned char) blocks & 0xff;
563 pccb->cmd[6]=0;
564 pccb->cmdlen=10;
565 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
wdenkf1276d42005-02-03 23:00:49 +0000566 debug ("scsi_setup_read_ext: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
wdenke887afc2002-08-27 09:44:07 +0000567 pccb->cmd[0],pccb->cmd[1],
568 pccb->cmd[2],pccb->cmd[3],pccb->cmd[4],pccb->cmd[5],
569 pccb->cmd[7],pccb->cmd[8]);
570}
571
572void scsi_setup_read6(ccb * pccb, unsigned long start, unsigned short blocks)
573{
574 pccb->cmd[0]=SCSI_READ6;
575 pccb->cmd[1]=pccb->lun<<5 | (((unsigned char)(start>>16))&0x1f);
576 pccb->cmd[2]=((unsigned char) (start>>8))&0xff;
577 pccb->cmd[3]=((unsigned char) (start))&0xff;
578 pccb->cmd[4]=(unsigned char) blocks & 0xff;
579 pccb->cmd[5]=0;
580 pccb->cmdlen=6;
581 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
wdenkf1276d42005-02-03 23:00:49 +0000582 debug ("scsi_setup_read6: cmd: %02X %02X startblk %02X%02X blccnt %02X\n",
wdenke887afc2002-08-27 09:44:07 +0000583 pccb->cmd[0],pccb->cmd[1],
584 pccb->cmd[2],pccb->cmd[3],pccb->cmd[4]);
585}
586
587
588void scsi_setup_inquiry(ccb * pccb)
589{
590 pccb->cmd[0]=SCSI_INQUIRY;
591 pccb->cmd[1]=pccb->lun<<5;
592 pccb->cmd[2]=0;
593 pccb->cmd[3]=0;
594 if(pccb->datalen>255)
595 pccb->cmd[4]=255;
596 else
597 pccb->cmd[4]=(unsigned char)pccb->datalen;
598 pccb->cmd[5]=0;
599 pccb->cmdlen=6;
600 pccb->msgout[0]=SCSI_IDENTIFY; /* NOT USED */
601}
602
Wolfgang Denk6a3d6b02005-08-04 01:14:12 +0200603
604U_BOOT_CMD(
605 scsi, 5, 1, do_scsi,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600606 "SCSI sub-system",
Wolfgang Denk6a3d6b02005-08-04 01:14:12 +0200607 "reset - reset SCSI controller\n"
608 "scsi info - show available SCSI devices\n"
609 "scsi scan - (re-)scan SCSI bus\n"
610 "scsi device [dev] - show or set current device\n"
611 "scsi part [dev] - print partition table of one or all SCSI devices\n"
612 "scsi read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200613 " to memory address `addr'"
Wolfgang Denk6a3d6b02005-08-04 01:14:12 +0200614);
615
616U_BOOT_CMD(
617 scsiboot, 3, 1, do_scsiboot,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600618 "boot from SCSI device",
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200619 "loadAddr dev:part"
Wolfgang Denk6a3d6b02005-08-04 01:14:12 +0200620);