blob: 2b87548bd3153b577891863a5b932b03117e5a2d [file] [log] [blame]
Simon Glass11f610e2016-05-01 11:36:09 -06001/*
2 * (C) Copyright 2001
3 * Denis Peter, MPL AG Switzerland
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
Simon Glass535556b2016-05-01 11:36:24 -06009#include <dm.h>
Simon Glass11f610e2016-05-01 11:36:09 -060010#include <inttypes.h>
11#include <pci.h>
12#include <scsi.h>
Michal Simeke8a016b2016-09-08 15:06:45 +020013#include <dm/device-internal.h>
14#include <dm/uclass-internal.h>
Simon Glass11f610e2016-05-01 11:36:09 -060015
Michal Simeke8a016b2016-09-08 15:06:45 +020016#if !defined(CONFIG_DM_SCSI)
Simon Glass099c2392017-06-14 21:28:35 -060017# ifdef CONFIG_SCSI_DEV_LIST
18# define SCSI_DEV_LIST CONFIG_SCSI_DEV_LIST
19# else
20# ifdef CONFIG_SATA_ULI5288
Simon Glass11f610e2016-05-01 11:36:09 -060021
Simon Glass099c2392017-06-14 21:28:35 -060022# define SCSI_VEND_ID 0x10b9
23# define SCSI_DEV_ID 0x5288
Simon Glass11f610e2016-05-01 11:36:09 -060024
Simon Glass099c2392017-06-14 21:28:35 -060025# elif !defined(CONFIG_SCSI_AHCI_PLAT)
26# error no scsi device defined
27# endif
28# define SCSI_DEV_LIST {SCSI_VEND_ID, SCSI_DEV_ID}
29# endif
Michal Simeke8a016b2016-09-08 15:06:45 +020030#endif
Simon Glass11f610e2016-05-01 11:36:09 -060031
32#if defined(CONFIG_PCI) && !defined(CONFIG_SCSI_AHCI_PLAT)
33const struct pci_device_id scsi_device_list[] = { SCSI_DEV_LIST };
34#endif
Simon Glassb9560ad2017-06-14 21:28:30 -060035static struct scsi_cmd tempccb; /* temporary scsi command buffer */
Simon Glass11f610e2016-05-01 11:36:09 -060036
37static unsigned char tempbuff[512]; /* temporary data buffer */
38
Michal Simeke8a016b2016-09-08 15:06:45 +020039#if !defined(CONFIG_DM_SCSI)
Simon Glass11f610e2016-05-01 11:36:09 -060040static int scsi_max_devs; /* number of highest available scsi device */
41
42static int scsi_curr_dev; /* current device */
43
44static struct blk_desc scsi_dev_desc[CONFIG_SYS_SCSI_MAX_DEVICE];
Michal Simeke8a016b2016-09-08 15:06:45 +020045#endif
Simon Glass11f610e2016-05-01 11:36:09 -060046
47/* almost the maximum amount of the scsi_ext command.. */
48#define SCSI_MAX_READ_BLK 0xFFFF
49#define SCSI_LBA48_READ 0xFFFFFFF
50
Simon Glassb9560ad2017-06-14 21:28:30 -060051static void scsi_print_error(struct scsi_cmd *pccb)
Simon Glassa6fb1852017-06-14 21:28:23 -060052{
53 /* Dummy function that could print an error for debugging */
54}
55
Simon Glass11f610e2016-05-01 11:36:09 -060056#ifdef CONFIG_SYS_64BIT_LBA
Simon Glassb9560ad2017-06-14 21:28:30 -060057void scsi_setup_read16(struct scsi_cmd *pccb, lbaint_t start,
58 unsigned long blocks)
Simon Glass11f610e2016-05-01 11:36:09 -060059{
60 pccb->cmd[0] = SCSI_READ16;
61 pccb->cmd[1] = pccb->lun << 5;
62 pccb->cmd[2] = (unsigned char)(start >> 56) & 0xff;
63 pccb->cmd[3] = (unsigned char)(start >> 48) & 0xff;
64 pccb->cmd[4] = (unsigned char)(start >> 40) & 0xff;
65 pccb->cmd[5] = (unsigned char)(start >> 32) & 0xff;
66 pccb->cmd[6] = (unsigned char)(start >> 24) & 0xff;
67 pccb->cmd[7] = (unsigned char)(start >> 16) & 0xff;
68 pccb->cmd[8] = (unsigned char)(start >> 8) & 0xff;
69 pccb->cmd[9] = (unsigned char)start & 0xff;
70 pccb->cmd[10] = 0;
71 pccb->cmd[11] = (unsigned char)(blocks >> 24) & 0xff;
72 pccb->cmd[12] = (unsigned char)(blocks >> 16) & 0xff;
73 pccb->cmd[13] = (unsigned char)(blocks >> 8) & 0xff;
74 pccb->cmd[14] = (unsigned char)blocks & 0xff;
75 pccb->cmd[15] = 0;
76 pccb->cmdlen = 16;
77 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
78 debug("scsi_setup_read16: cmd: %02X %02X startblk %02X%02X%02X%02X%02X%02X%02X%02X blccnt %02X%02X%02X%02X\n",
79 pccb->cmd[0], pccb->cmd[1],
80 pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5],
81 pccb->cmd[6], pccb->cmd[7], pccb->cmd[8], pccb->cmd[9],
82 pccb->cmd[11], pccb->cmd[12], pccb->cmd[13], pccb->cmd[14]);
83}
84#endif
85
Simon Glassb9560ad2017-06-14 21:28:30 -060086static void scsi_setup_read_ext(struct scsi_cmd *pccb, lbaint_t start,
Michal Simek545a2842016-11-30 11:53:43 +010087 unsigned short blocks)
Simon Glass11f610e2016-05-01 11:36:09 -060088{
89 pccb->cmd[0] = SCSI_READ10;
90 pccb->cmd[1] = pccb->lun << 5;
91 pccb->cmd[2] = (unsigned char)(start >> 24) & 0xff;
92 pccb->cmd[3] = (unsigned char)(start >> 16) & 0xff;
93 pccb->cmd[4] = (unsigned char)(start >> 8) & 0xff;
94 pccb->cmd[5] = (unsigned char)start & 0xff;
95 pccb->cmd[6] = 0;
96 pccb->cmd[7] = (unsigned char)(blocks >> 8) & 0xff;
97 pccb->cmd[8] = (unsigned char)blocks & 0xff;
98 pccb->cmd[6] = 0;
99 pccb->cmdlen = 10;
100 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
101 debug("scsi_setup_read_ext: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
102 pccb->cmd[0], pccb->cmd[1],
103 pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5],
104 pccb->cmd[7], pccb->cmd[8]);
105}
106
Simon Glassb9560ad2017-06-14 21:28:30 -0600107static void scsi_setup_write_ext(struct scsi_cmd *pccb, lbaint_t start,
Michal Simek545a2842016-11-30 11:53:43 +0100108 unsigned short blocks)
Simon Glass11f610e2016-05-01 11:36:09 -0600109{
110 pccb->cmd[0] = SCSI_WRITE10;
111 pccb->cmd[1] = pccb->lun << 5;
112 pccb->cmd[2] = (unsigned char)(start >> 24) & 0xff;
113 pccb->cmd[3] = (unsigned char)(start >> 16) & 0xff;
114 pccb->cmd[4] = (unsigned char)(start >> 8) & 0xff;
115 pccb->cmd[5] = (unsigned char)start & 0xff;
116 pccb->cmd[6] = 0;
117 pccb->cmd[7] = ((unsigned char)(blocks >> 8)) & 0xff;
118 pccb->cmd[8] = (unsigned char)blocks & 0xff;
119 pccb->cmd[9] = 0;
120 pccb->cmdlen = 10;
121 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
122 debug("%s: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
123 __func__,
124 pccb->cmd[0], pccb->cmd[1],
125 pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5],
126 pccb->cmd[7], pccb->cmd[8]);
127}
128
Simon Glassb9560ad2017-06-14 21:28:30 -0600129static void scsi_setup_inquiry(struct scsi_cmd *pccb)
Simon Glass11f610e2016-05-01 11:36:09 -0600130{
131 pccb->cmd[0] = SCSI_INQUIRY;
132 pccb->cmd[1] = pccb->lun << 5;
133 pccb->cmd[2] = 0;
134 pccb->cmd[3] = 0;
135 if (pccb->datalen > 255)
136 pccb->cmd[4] = 255;
137 else
138 pccb->cmd[4] = (unsigned char)pccb->datalen;
139 pccb->cmd[5] = 0;
140 pccb->cmdlen = 6;
141 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
142}
143
Simon Glass535556b2016-05-01 11:36:24 -0600144#ifdef CONFIG_BLK
145static ulong scsi_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
146 void *buffer)
147#else
Simon Glass11f610e2016-05-01 11:36:09 -0600148static ulong scsi_read(struct blk_desc *block_dev, lbaint_t blknr,
149 lbaint_t blkcnt, void *buffer)
Simon Glass535556b2016-05-01 11:36:24 -0600150#endif
Simon Glass11f610e2016-05-01 11:36:09 -0600151{
Simon Glass535556b2016-05-01 11:36:24 -0600152#ifdef CONFIG_BLK
153 struct blk_desc *block_dev = dev_get_uclass_platdata(dev);
Simon Glass4682c8a2017-06-14 21:28:40 -0600154 struct udevice *bdev = dev->parent;
155#else
156 struct udevice *bdev = NULL;
Simon Glass535556b2016-05-01 11:36:24 -0600157#endif
Simon Glass11f610e2016-05-01 11:36:09 -0600158 lbaint_t start, blks;
159 uintptr_t buf_addr;
160 unsigned short smallblks = 0;
Simon Glassb9560ad2017-06-14 21:28:30 -0600161 struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb;
Simon Glass11f610e2016-05-01 11:36:09 -0600162
163 /* Setup device */
Michal Simekcdb93b22016-11-18 16:22:42 +0100164 pccb->target = block_dev->target;
165 pccb->lun = block_dev->lun;
Simon Glass11f610e2016-05-01 11:36:09 -0600166 buf_addr = (unsigned long)buffer;
167 start = blknr;
168 blks = blkcnt;
169 debug("\nscsi_read: dev %d startblk " LBAF
170 ", blccnt " LBAF " buffer %lx\n",
Michal Simekcdb93b22016-11-18 16:22:42 +0100171 block_dev->devnum, start, blks, (unsigned long)buffer);
Simon Glass11f610e2016-05-01 11:36:09 -0600172 do {
173 pccb->pdata = (unsigned char *)buf_addr;
174#ifdef CONFIG_SYS_64BIT_LBA
175 if (start > SCSI_LBA48_READ) {
176 unsigned long blocks;
177 blocks = min_t(lbaint_t, blks, SCSI_MAX_READ_BLK);
Michal Simekcdb93b22016-11-18 16:22:42 +0100178 pccb->datalen = block_dev->blksz * blocks;
Simon Glass11f610e2016-05-01 11:36:09 -0600179 scsi_setup_read16(pccb, start, blocks);
180 start += blocks;
181 blks -= blocks;
182 } else
183#endif
184 if (blks > SCSI_MAX_READ_BLK) {
Michal Simekcdb93b22016-11-18 16:22:42 +0100185 pccb->datalen = block_dev->blksz *
Simon Glass11f610e2016-05-01 11:36:09 -0600186 SCSI_MAX_READ_BLK;
187 smallblks = SCSI_MAX_READ_BLK;
188 scsi_setup_read_ext(pccb, start, smallblks);
189 start += SCSI_MAX_READ_BLK;
190 blks -= SCSI_MAX_READ_BLK;
191 } else {
Michal Simekcdb93b22016-11-18 16:22:42 +0100192 pccb->datalen = block_dev->blksz * blks;
Simon Glass11f610e2016-05-01 11:36:09 -0600193 smallblks = (unsigned short)blks;
194 scsi_setup_read_ext(pccb, start, smallblks);
195 start += blks;
196 blks = 0;
197 }
198 debug("scsi_read_ext: startblk " LBAF
199 ", blccnt %x buffer %" PRIXPTR "\n",
200 start, smallblks, buf_addr);
Simon Glass4682c8a2017-06-14 21:28:40 -0600201 if (scsi_exec(bdev, pccb)) {
Simon Glass11f610e2016-05-01 11:36:09 -0600202 scsi_print_error(pccb);
203 blkcnt -= blks;
204 break;
205 }
206 buf_addr += pccb->datalen;
207 } while (blks != 0);
208 debug("scsi_read_ext: end startblk " LBAF
209 ", blccnt %x buffer %" PRIXPTR "\n", start, smallblks, buf_addr);
210 return blkcnt;
211}
212
213/*******************************************************************************
214 * scsi_write
215 */
216
217/* Almost the maximum amount of the scsi_ext command.. */
218#define SCSI_MAX_WRITE_BLK 0xFFFF
219
Simon Glass535556b2016-05-01 11:36:24 -0600220#ifdef CONFIG_BLK
221static ulong scsi_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
222 const void *buffer)
223#else
Simon Glass11f610e2016-05-01 11:36:09 -0600224static ulong scsi_write(struct blk_desc *block_dev, lbaint_t blknr,
225 lbaint_t blkcnt, const void *buffer)
Simon Glass535556b2016-05-01 11:36:24 -0600226#endif
Simon Glass11f610e2016-05-01 11:36:09 -0600227{
Simon Glass535556b2016-05-01 11:36:24 -0600228#ifdef CONFIG_BLK
229 struct blk_desc *block_dev = dev_get_uclass_platdata(dev);
Simon Glass4682c8a2017-06-14 21:28:40 -0600230 struct udevice *bdev = dev->parent;
231#else
232 struct udevice *bdev = NULL;
Simon Glass535556b2016-05-01 11:36:24 -0600233#endif
Simon Glass11f610e2016-05-01 11:36:09 -0600234 lbaint_t start, blks;
235 uintptr_t buf_addr;
236 unsigned short smallblks;
Simon Glassb9560ad2017-06-14 21:28:30 -0600237 struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb;
Simon Glass11f610e2016-05-01 11:36:09 -0600238
Simon Glass11f610e2016-05-01 11:36:09 -0600239 /* Setup device */
Michal Simekcdb93b22016-11-18 16:22:42 +0100240 pccb->target = block_dev->target;
241 pccb->lun = block_dev->lun;
Simon Glass11f610e2016-05-01 11:36:09 -0600242 buf_addr = (unsigned long)buffer;
243 start = blknr;
244 blks = blkcnt;
245 debug("\n%s: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n",
Michal Simekcdb93b22016-11-18 16:22:42 +0100246 __func__, block_dev->devnum, start, blks, (unsigned long)buffer);
Simon Glass11f610e2016-05-01 11:36:09 -0600247 do {
248 pccb->pdata = (unsigned char *)buf_addr;
249 if (blks > SCSI_MAX_WRITE_BLK) {
Michal Simekcdb93b22016-11-18 16:22:42 +0100250 pccb->datalen = (block_dev->blksz *
Simon Glass11f610e2016-05-01 11:36:09 -0600251 SCSI_MAX_WRITE_BLK);
252 smallblks = SCSI_MAX_WRITE_BLK;
253 scsi_setup_write_ext(pccb, start, smallblks);
254 start += SCSI_MAX_WRITE_BLK;
255 blks -= SCSI_MAX_WRITE_BLK;
256 } else {
Michal Simekcdb93b22016-11-18 16:22:42 +0100257 pccb->datalen = block_dev->blksz * blks;
Simon Glass11f610e2016-05-01 11:36:09 -0600258 smallblks = (unsigned short)blks;
259 scsi_setup_write_ext(pccb, start, smallblks);
260 start += blks;
261 blks = 0;
262 }
263 debug("%s: startblk " LBAF ", blccnt %x buffer %" PRIXPTR "\n",
264 __func__, start, smallblks, buf_addr);
Simon Glass4682c8a2017-06-14 21:28:40 -0600265 if (scsi_exec(bdev, pccb)) {
Simon Glass11f610e2016-05-01 11:36:09 -0600266 scsi_print_error(pccb);
267 blkcnt -= blks;
268 break;
269 }
270 buf_addr += pccb->datalen;
271 } while (blks != 0);
272 debug("%s: end startblk " LBAF ", blccnt %x buffer %" PRIXPTR "\n",
273 __func__, start, smallblks, buf_addr);
274 return blkcnt;
275}
276
Simon Glass11f610e2016-05-01 11:36:09 -0600277#if defined(CONFIG_PCI) && !defined(CONFIG_SCSI_AHCI_PLAT)
278void scsi_init(void)
279{
280 int busdevfunc = -1;
281 int i;
282 /*
283 * Find a device from the list, this driver will support a single
284 * controller.
285 */
286 for (i = 0; i < ARRAY_SIZE(scsi_device_list); i++) {
287 /* get PCI Device ID */
288#ifdef CONFIG_DM_PCI
289 struct udevice *dev;
290 int ret;
291
292 ret = dm_pci_find_device(scsi_device_list[i].vendor,
293 scsi_device_list[i].device, 0, &dev);
294 if (!ret) {
295 busdevfunc = dm_pci_get_bdf(dev);
296 break;
297 }
298#else
299 busdevfunc = pci_find_device(scsi_device_list[i].vendor,
300 scsi_device_list[i].device,
301 0);
302#endif
303 if (busdevfunc != -1)
304 break;
305 }
306
307 if (busdevfunc == -1) {
308 printf("Error: SCSI Controller(s) ");
309 for (i = 0; i < ARRAY_SIZE(scsi_device_list); i++) {
310 printf("%04X:%04X ",
311 scsi_device_list[i].vendor,
312 scsi_device_list[i].device);
313 }
314 printf("not found\n");
315 return;
316 }
317#ifdef DEBUG
318 else {
319 printf("SCSI Controller (%04X,%04X) found (%d:%d:%d)\n",
320 scsi_device_list[i].vendor,
321 scsi_device_list[i].device,
322 (busdevfunc >> 16) & 0xFF,
323 (busdevfunc >> 11) & 0x1F,
324 (busdevfunc >> 8) & 0x7);
325 }
326#endif
327 bootstage_start(BOOTSTAGE_ID_ACCUM_SCSI, "ahci");
328 scsi_low_level_init(busdevfunc);
Simon Glass8eab1a52017-06-14 21:28:41 -0600329 scsi_scan(true);
Simon Glass11f610e2016-05-01 11:36:09 -0600330 bootstage_accum(BOOTSTAGE_ID_ACCUM_SCSI);
331}
332#endif
333
Simon Glass11f610e2016-05-01 11:36:09 -0600334/* copy src to dest, skipping leading and trailing blanks
335 * and null terminate the string
336 */
Michal Simek545a2842016-11-30 11:53:43 +0100337static void scsi_ident_cpy(unsigned char *dest, unsigned char *src,
338 unsigned int len)
Simon Glass11f610e2016-05-01 11:36:09 -0600339{
340 int start, end;
341
342 start = 0;
343 while (start < len) {
344 if (src[start] != ' ')
345 break;
346 start++;
347 }
348 end = len-1;
349 while (end > start) {
350 if (src[end] != ' ')
351 break;
352 end--;
353 }
354 for (; start <= end; start++)
355 *dest ++= src[start];
356 *dest = '\0';
357}
358
Simon Glass4682c8a2017-06-14 21:28:40 -0600359static int scsi_read_capacity(struct udevice *dev, struct scsi_cmd *pccb,
360 lbaint_t *capacity, unsigned long *blksz)
Simon Glass11f610e2016-05-01 11:36:09 -0600361{
362 *capacity = 0;
363
364 memset(pccb->cmd, '\0', sizeof(pccb->cmd));
365 pccb->cmd[0] = SCSI_RD_CAPAC10;
366 pccb->cmd[1] = pccb->lun << 5;
367 pccb->cmdlen = 10;
368 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
369
370 pccb->datalen = 8;
Simon Glassf6580ef2017-06-14 21:28:44 -0600371 if (scsi_exec(dev, pccb))
Simon Glass11f610e2016-05-01 11:36:09 -0600372 return 1;
373
374 *capacity = ((lbaint_t)pccb->pdata[0] << 24) |
375 ((lbaint_t)pccb->pdata[1] << 16) |
376 ((lbaint_t)pccb->pdata[2] << 8) |
377 ((lbaint_t)pccb->pdata[3]);
378
379 if (*capacity != 0xffffffff) {
380 /* Read capacity (10) was sufficient for this drive. */
381 *blksz = ((unsigned long)pccb->pdata[4] << 24) |
382 ((unsigned long)pccb->pdata[5] << 16) |
383 ((unsigned long)pccb->pdata[6] << 8) |
384 ((unsigned long)pccb->pdata[7]);
385 return 0;
386 }
387
388 /* Read capacity (10) was insufficient. Use read capacity (16). */
389 memset(pccb->cmd, '\0', sizeof(pccb->cmd));
390 pccb->cmd[0] = SCSI_RD_CAPAC16;
391 pccb->cmd[1] = 0x10;
392 pccb->cmdlen = 16;
393 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
394
395 pccb->datalen = 16;
Simon Glassf6580ef2017-06-14 21:28:44 -0600396 if (scsi_exec(dev, pccb))
Simon Glass11f610e2016-05-01 11:36:09 -0600397 return 1;
398
399 *capacity = ((uint64_t)pccb->pdata[0] << 56) |
400 ((uint64_t)pccb->pdata[1] << 48) |
401 ((uint64_t)pccb->pdata[2] << 40) |
402 ((uint64_t)pccb->pdata[3] << 32) |
403 ((uint64_t)pccb->pdata[4] << 24) |
404 ((uint64_t)pccb->pdata[5] << 16) |
405 ((uint64_t)pccb->pdata[6] << 8) |
406 ((uint64_t)pccb->pdata[7]);
407
408 *blksz = ((uint64_t)pccb->pdata[8] << 56) |
409 ((uint64_t)pccb->pdata[9] << 48) |
410 ((uint64_t)pccb->pdata[10] << 40) |
411 ((uint64_t)pccb->pdata[11] << 32) |
412 ((uint64_t)pccb->pdata[12] << 24) |
413 ((uint64_t)pccb->pdata[13] << 16) |
414 ((uint64_t)pccb->pdata[14] << 8) |
415 ((uint64_t)pccb->pdata[15]);
416
417 return 0;
418}
419
420
421/*
422 * Some setup (fill-in) routines
423 */
Simon Glassb9560ad2017-06-14 21:28:30 -0600424static void scsi_setup_test_unit_ready(struct scsi_cmd *pccb)
Simon Glass11f610e2016-05-01 11:36:09 -0600425{
426 pccb->cmd[0] = SCSI_TST_U_RDY;
427 pccb->cmd[1] = pccb->lun << 5;
428 pccb->cmd[2] = 0;
429 pccb->cmd[3] = 0;
430 pccb->cmd[4] = 0;
431 pccb->cmd[5] = 0;
432 pccb->cmdlen = 6;
433 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
434}
435
Michal Simek0b3a58e2016-11-30 12:50:58 +0100436/**
437 * scsi_init_dev_desc_priv - initialize only SCSI specific blk_desc properties
438 *
439 * @dev_desc: Block device description pointer
440 */
441static void scsi_init_dev_desc_priv(struct blk_desc *dev_desc)
Michal Simek92ca4762016-11-18 15:27:00 +0100442{
443 dev_desc->target = 0xff;
444 dev_desc->lun = 0xff;
Michal Simek92ca4762016-11-18 15:27:00 +0100445 dev_desc->log2blksz =
446 LOG2_INVALID(typeof(dev_desc->log2blksz));
447 dev_desc->type = DEV_TYPE_UNKNOWN;
448 dev_desc->vendor[0] = 0;
449 dev_desc->product[0] = 0;
450 dev_desc->revision[0] = 0;
451 dev_desc->removable = false;
Michal Simek92ca4762016-11-18 15:27:00 +0100452#ifndef CONFIG_BLK
453 dev_desc->block_read = scsi_read;
454 dev_desc->block_write = scsi_write;
455#endif
456}
457
Michal Simeke8a016b2016-09-08 15:06:45 +0200458#if !defined(CONFIG_DM_SCSI)
Michal Simek0b3a58e2016-11-30 12:50:58 +0100459/**
460 * scsi_init_dev_desc - initialize all SCSI specific blk_desc properties
461 *
462 * @dev_desc: Block device description pointer
463 * @devnum: Device number
464 */
465static void scsi_init_dev_desc(struct blk_desc *dev_desc, int devnum)
466{
467 dev_desc->lba = 0;
468 dev_desc->blksz = 0;
469 dev_desc->if_type = IF_TYPE_SCSI;
470 dev_desc->devnum = devnum;
471 dev_desc->part_type = PART_TYPE_UNKNOWN;
472
473 scsi_init_dev_desc_priv(dev_desc);
474}
Michal Simeke8a016b2016-09-08 15:06:45 +0200475#endif
Michal Simekbccfd9e2016-11-18 16:14:24 +0100476
Michal Simek570712f2016-11-18 15:42:13 +0100477/**
478 * scsi_detect_dev - Detect scsi device
479 *
Michal Simekbccfd9e2016-11-18 16:14:24 +0100480 * @target: target id
Jean-Jacques Hiblote39cecf2017-04-07 13:42:06 +0200481 * @lun: target lun
Michal Simek570712f2016-11-18 15:42:13 +0100482 * @dev_desc: block device description
Michal Simek570712f2016-11-18 15:42:13 +0100483 *
484 * The scsi_detect_dev detects and fills a dev_desc structure when the device is
Jean-Jacques Hiblote39cecf2017-04-07 13:42:06 +0200485 * detected.
Michal Simek570712f2016-11-18 15:42:13 +0100486 *
487 * Return: 0 on success, error value otherwise
488 */
Simon Glass4682c8a2017-06-14 21:28:40 -0600489static int scsi_detect_dev(struct udevice *dev, int target, int lun,
490 struct blk_desc *dev_desc)
Michal Simek570712f2016-11-18 15:42:13 +0100491{
492 unsigned char perq, modi;
493 lbaint_t capacity;
494 unsigned long blksz;
Simon Glassb9560ad2017-06-14 21:28:30 -0600495 struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb;
Michal Simek570712f2016-11-18 15:42:13 +0100496
Michal Simekbccfd9e2016-11-18 16:14:24 +0100497 pccb->target = target;
Jean-Jacques Hiblote39cecf2017-04-07 13:42:06 +0200498 pccb->lun = lun;
Michal Simek570712f2016-11-18 15:42:13 +0100499 pccb->pdata = (unsigned char *)&tempbuff;
500 pccb->datalen = 512;
501 scsi_setup_inquiry(pccb);
Simon Glassf6580ef2017-06-14 21:28:44 -0600502 if (scsi_exec(dev, pccb)) {
Michal Simek570712f2016-11-18 15:42:13 +0100503 if (pccb->contr_stat == SCSI_SEL_TIME_OUT) {
504 /*
505 * selection timeout => assuming no
506 * device present
507 */
508 debug("Selection timeout ID %d\n",
509 pccb->target);
510 return -ETIMEDOUT;
511 }
512 scsi_print_error(pccb);
513 return -ENODEV;
514 }
515 perq = tempbuff[0];
516 modi = tempbuff[1];
517 if ((perq & 0x1f) == 0x1f)
518 return -ENODEV; /* skip unknown devices */
519 if ((modi & 0x80) == 0x80) /* drive is removable */
520 dev_desc->removable = true;
521 /* get info for this device */
522 scsi_ident_cpy((unsigned char *)dev_desc->vendor,
523 &tempbuff[8], 8);
524 scsi_ident_cpy((unsigned char *)dev_desc->product,
525 &tempbuff[16], 16);
526 scsi_ident_cpy((unsigned char *)dev_desc->revision,
527 &tempbuff[32], 4);
528 dev_desc->target = pccb->target;
529 dev_desc->lun = pccb->lun;
530
531 pccb->datalen = 0;
532 scsi_setup_test_unit_ready(pccb);
Simon Glassf6580ef2017-06-14 21:28:44 -0600533 if (scsi_exec(dev, pccb)) {
Michal Simek570712f2016-11-18 15:42:13 +0100534 if (dev_desc->removable) {
535 dev_desc->type = perq;
536 goto removable;
537 }
538 scsi_print_error(pccb);
539 return -EINVAL;
540 }
Simon Glass4682c8a2017-06-14 21:28:40 -0600541 if (scsi_read_capacity(dev, pccb, &capacity, &blksz)) {
Michal Simek570712f2016-11-18 15:42:13 +0100542 scsi_print_error(pccb);
543 return -EINVAL;
544 }
545 dev_desc->lba = capacity;
546 dev_desc->blksz = blksz;
547 dev_desc->log2blksz = LOG2(dev_desc->blksz);
548 dev_desc->type = perq;
Michal Simek570712f2016-11-18 15:42:13 +0100549removable:
550 return 0;
551}
552
Simon Glass11f610e2016-05-01 11:36:09 -0600553/*
554 * (re)-scan the scsi bus and reports scsi device info
555 * to the user if mode = 1
556 */
Michal Simeke8a016b2016-09-08 15:06:45 +0200557#if defined(CONFIG_DM_SCSI)
Simon Glass8eab1a52017-06-14 21:28:41 -0600558static int do_scsi_scan_one(struct udevice *dev, int id, int lun, bool verbose)
Jean-Jacques Hiblotd52063b2017-04-24 11:51:26 +0200559{
560 int ret;
561 struct udevice *bdev;
562 struct blk_desc bd;
563 struct blk_desc *bdesc;
564 char str[10];
565
566 /*
567 * detect the scsi driver to get information about its geometry (block
568 * size, number of blocks) and other parameters (ids, type, ...)
569 */
570 scsi_init_dev_desc_priv(&bd);
Simon Glass4682c8a2017-06-14 21:28:40 -0600571 if (scsi_detect_dev(dev, id, lun, &bd))
Jean-Jacques Hiblotd52063b2017-04-24 11:51:26 +0200572 return -ENODEV;
573
574 /*
575 * Create only one block device and do detection
576 * to make sure that there won't be a lot of
577 * block devices created
578 */
579 snprintf(str, sizeof(str), "id%dlun%d", id, lun);
580 ret = blk_create_devicef(dev, "scsi_blk", str, IF_TYPE_SCSI, -1,
581 bd.blksz, bd.blksz * bd.lba, &bdev);
582 if (ret) {
583 debug("Can't create device\n");
584 return ret;
585 }
586
587 bdesc = dev_get_uclass_platdata(bdev);
588 bdesc->target = id;
589 bdesc->lun = lun;
590 bdesc->removable = bd.removable;
591 bdesc->type = bd.type;
592 memcpy(&bdesc->vendor, &bd.vendor, sizeof(bd.vendor));
593 memcpy(&bdesc->product, &bd.product, sizeof(bd.product));
594 memcpy(&bdesc->revision, &bd.revision, sizeof(bd.revision));
595 part_init(bdesc);
596
Simon Glass8eab1a52017-06-14 21:28:41 -0600597 if (verbose) {
Jean-Jacques Hiblotd52063b2017-04-24 11:51:26 +0200598 printf(" Device %d: ", 0);
599 dev_print(bdesc);
600 }
601 return 0;
602}
603
Simon Glass5c561762017-06-14 21:28:45 -0600604int scsi_scan_dev(struct udevice *dev, bool verbose)
605{
606 struct scsi_platdata *uc_plat; /* scsi controller platdata */
607 int ret;
608 int i;
609 int lun;
610
611 /* probe SCSI controller driver */
612 ret = device_probe(dev);
613 if (ret)
614 return ret;
615
616 /* Get controller platdata */
617 uc_plat = dev_get_uclass_platdata(dev);
618
619 for (i = 0; i < uc_plat->max_id; i++)
620 for (lun = 0; lun < uc_plat->max_lun; lun++)
621 do_scsi_scan_one(dev, i, lun, verbose);
622
623 return 0;
624}
625
Simon Glass8eab1a52017-06-14 21:28:41 -0600626int scsi_scan(bool verbose)
Michal Simeke8a016b2016-09-08 15:06:45 +0200627{
Michal Simeke8a016b2016-09-08 15:06:45 +0200628 struct uclass *uc;
629 struct udevice *dev; /* SCSI controller */
630 int ret;
631
Simon Glass8eab1a52017-06-14 21:28:41 -0600632 if (verbose)
Michal Simeke8a016b2016-09-08 15:06:45 +0200633 printf("scanning bus for devices...\n");
634
Michal Simekf8f41ae2017-01-02 09:40:09 +0100635 blk_unbind_all(IF_TYPE_SCSI);
636
Michal Simeke8a016b2016-09-08 15:06:45 +0200637 ret = uclass_get(UCLASS_SCSI, &uc);
638 if (ret)
639 return ret;
640
641 uclass_foreach_dev(dev, uc) {
Simon Glass5c561762017-06-14 21:28:45 -0600642 ret = scsi_scan_dev(dev, verbose);
Michal Simeke8a016b2016-09-08 15:06:45 +0200643 if (ret)
644 return ret;
Michal Simeke8a016b2016-09-08 15:06:45 +0200645 }
646
647 return 0;
648}
649#else
Simon Glass8eab1a52017-06-14 21:28:41 -0600650int scsi_scan(bool verbose)
Simon Glass11f610e2016-05-01 11:36:09 -0600651{
Michal Simek570712f2016-11-18 15:42:13 +0100652 unsigned char i, lun;
653 int ret;
Simon Glass11f610e2016-05-01 11:36:09 -0600654
Simon Glass8eab1a52017-06-14 21:28:41 -0600655 if (verbose)
Simon Glass11f610e2016-05-01 11:36:09 -0600656 printf("scanning bus for devices...\n");
Michal Simek92ca4762016-11-18 15:27:00 +0100657 for (i = 0; i < CONFIG_SYS_SCSI_MAX_DEVICE; i++)
658 scsi_init_dev_desc(&scsi_dev_desc[i], i);
659
Simon Glass11f610e2016-05-01 11:36:09 -0600660 scsi_max_devs = 0;
661 for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) {
Simon Glass11f610e2016-05-01 11:36:09 -0600662 for (lun = 0; lun < CONFIG_SYS_SCSI_MAX_LUN; lun++) {
Simon Glass4682c8a2017-06-14 21:28:40 -0600663 ret = scsi_detect_dev(NULL, i, lun,
Jean-Jacques Hiblote39cecf2017-04-07 13:42:06 +0200664 &scsi_dev_desc[scsi_max_devs]);
Michal Simek570712f2016-11-18 15:42:13 +0100665 if (ret)
Simon Glass11f610e2016-05-01 11:36:09 -0600666 continue;
Jean-Jacques Hiblot1330a722017-04-07 13:42:07 +0200667 part_init(&scsi_dev_desc[scsi_max_devs]);
Simon Glass11f610e2016-05-01 11:36:09 -0600668
Simon Glass8eab1a52017-06-14 21:28:41 -0600669 if (verbose) {
Michal Simek570712f2016-11-18 15:42:13 +0100670 printf(" Device %d: ", 0);
Simon Glass11f610e2016-05-01 11:36:09 -0600671 dev_print(&scsi_dev_desc[scsi_max_devs]);
Simon Glass8eab1a52017-06-14 21:28:41 -0600672 }
Simon Glass11f610e2016-05-01 11:36:09 -0600673 scsi_max_devs++;
674 } /* next LUN */
675 }
676 if (scsi_max_devs > 0)
677 scsi_curr_dev = 0;
678 else
679 scsi_curr_dev = -1;
680
681 printf("Found %d device(s).\n", scsi_max_devs);
682#ifndef CONFIG_SPL_BUILD
683 setenv_ulong("scsidevs", scsi_max_devs);
684#endif
Michal Simekc002e392016-11-30 12:12:31 +0100685 return 0;
Simon Glass11f610e2016-05-01 11:36:09 -0600686}
Michal Simeke8a016b2016-09-08 15:06:45 +0200687#endif
Simon Glass11f610e2016-05-01 11:36:09 -0600688
Simon Glass535556b2016-05-01 11:36:24 -0600689#ifdef CONFIG_BLK
690static const struct blk_ops scsi_blk_ops = {
691 .read = scsi_read,
692 .write = scsi_write,
693};
694
695U_BOOT_DRIVER(scsi_blk) = {
696 .name = "scsi_blk",
697 .id = UCLASS_BLK,
698 .ops = &scsi_blk_ops,
699};
700#else
Simon Glass11f610e2016-05-01 11:36:09 -0600701U_BOOT_LEGACY_BLK(scsi) = {
Ed Swarthout69c125f2016-06-01 08:11:24 -0500702 .if_typename = "scsi",
Simon Glass11f610e2016-05-01 11:36:09 -0600703 .if_type = IF_TYPE_SCSI,
704 .max_devs = CONFIG_SYS_SCSI_MAX_DEVICE,
705 .desc = scsi_dev_desc,
706};
Simon Glass535556b2016-05-01 11:36:24 -0600707#endif