blob: bcdeda95ed1514119057cc67974fec465cf5672c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassc8e89ab2016-05-01 11:36:09 -06002/*
3 * (C) Copyright 2001
4 * Denis Peter, MPL AG Switzerland
Simon Glassc8e89ab2016-05-01 11:36:09 -06005 */
6
Simon Glass1af3eed2023-01-17 10:47:43 -07007#define LOG_CATEGORY UCLASS_SCSI
8
Simon Glass655306c2020-05-10 11:39:58 -06009#include <blk.h>
Simon Glass9985e9c2023-01-17 10:47:45 -070010#include <bootdev.h>
Simon Glass1ea97892020-05-10 11:40:00 -060011#include <bootstage.h>
Simon Glass5bf96dc2016-05-01 11:36:24 -060012#include <dm.h>
Simon Glass07dc93c2019-08-01 09:46:47 -060013#include <env.h>
Stefan Roesec52ee3e2021-04-07 09:12:36 +020014#include <libata.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
Marek Vasut60b20b42023-08-07 02:26:12 +020016#include <memalign.h>
Simon Glass655306c2020-05-10 11:39:58 -060017#include <part.h>
Simon Glassc8e89ab2016-05-01 11:36:09 -060018#include <pci.h>
19#include <scsi.h>
Michal Simekc886f352016-09-08 15:06:45 +020020#include <dm/device-internal.h>
21#include <dm/uclass-internal.h>
Simon Glassc8e89ab2016-05-01 11:36:09 -060022
Simon Glass5fb559d2017-06-14 21:28:30 -060023static struct scsi_cmd tempccb; /* temporary scsi command buffer */
Simon Glassc8e89ab2016-05-01 11:36:09 -060024
Marek Vasut60b20b42023-08-07 02:26:12 +020025DEFINE_CACHE_ALIGN_BUFFER(u8, tempbuff, 512); /* temporary data buffer */
Simon Glassc8e89ab2016-05-01 11:36:09 -060026
Simon Glassc8e89ab2016-05-01 11:36:09 -060027/* almost the maximum amount of the scsi_ext command.. */
Faiz Abbasb26c6142019-10-15 18:24:33 +053028#define SCSI_MAX_BLK 0xFFFF
Simon Glassc8e89ab2016-05-01 11:36:09 -060029#define SCSI_LBA48_READ 0xFFFFFFF
30
Simon Glass5fb559d2017-06-14 21:28:30 -060031static void scsi_print_error(struct scsi_cmd *pccb)
Simon Glass16740982017-06-14 21:28:23 -060032{
33 /* Dummy function that could print an error for debugging */
34}
35
Simon Glassc8e89ab2016-05-01 11:36:09 -060036#ifdef CONFIG_SYS_64BIT_LBA
Simon Glass5fb559d2017-06-14 21:28:30 -060037void scsi_setup_read16(struct scsi_cmd *pccb, lbaint_t start,
38 unsigned long blocks)
Simon Glassc8e89ab2016-05-01 11:36:09 -060039{
40 pccb->cmd[0] = SCSI_READ16;
41 pccb->cmd[1] = pccb->lun << 5;
42 pccb->cmd[2] = (unsigned char)(start >> 56) & 0xff;
43 pccb->cmd[3] = (unsigned char)(start >> 48) & 0xff;
44 pccb->cmd[4] = (unsigned char)(start >> 40) & 0xff;
45 pccb->cmd[5] = (unsigned char)(start >> 32) & 0xff;
46 pccb->cmd[6] = (unsigned char)(start >> 24) & 0xff;
47 pccb->cmd[7] = (unsigned char)(start >> 16) & 0xff;
48 pccb->cmd[8] = (unsigned char)(start >> 8) & 0xff;
49 pccb->cmd[9] = (unsigned char)start & 0xff;
50 pccb->cmd[10] = 0;
51 pccb->cmd[11] = (unsigned char)(blocks >> 24) & 0xff;
52 pccb->cmd[12] = (unsigned char)(blocks >> 16) & 0xff;
53 pccb->cmd[13] = (unsigned char)(blocks >> 8) & 0xff;
54 pccb->cmd[14] = (unsigned char)blocks & 0xff;
55 pccb->cmd[15] = 0;
56 pccb->cmdlen = 16;
57 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
58 debug("scsi_setup_read16: cmd: %02X %02X startblk %02X%02X%02X%02X%02X%02X%02X%02X blccnt %02X%02X%02X%02X\n",
59 pccb->cmd[0], pccb->cmd[1],
60 pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5],
61 pccb->cmd[6], pccb->cmd[7], pccb->cmd[8], pccb->cmd[9],
62 pccb->cmd[11], pccb->cmd[12], pccb->cmd[13], pccb->cmd[14]);
63}
64#endif
65
Faiz Abbas76a6fa62019-10-15 18:24:32 +053066static void scsi_setup_inquiry(struct scsi_cmd *pccb)
67{
68 pccb->cmd[0] = SCSI_INQUIRY;
69 pccb->cmd[1] = pccb->lun << 5;
70 pccb->cmd[2] = 0;
71 pccb->cmd[3] = 0;
72 if (pccb->datalen > 255)
73 pccb->cmd[4] = 255;
74 else
75 pccb->cmd[4] = (unsigned char)pccb->datalen;
76 pccb->cmd[5] = 0;
77 pccb->cmdlen = 6;
78 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
79}
80
Simon Glass5fb559d2017-06-14 21:28:30 -060081static void scsi_setup_read_ext(struct scsi_cmd *pccb, lbaint_t start,
Michal Simek9ec32f32016-11-30 11:53:43 +010082 unsigned short blocks)
Simon Glassc8e89ab2016-05-01 11:36:09 -060083{
84 pccb->cmd[0] = SCSI_READ10;
85 pccb->cmd[1] = pccb->lun << 5;
86 pccb->cmd[2] = (unsigned char)(start >> 24) & 0xff;
87 pccb->cmd[3] = (unsigned char)(start >> 16) & 0xff;
88 pccb->cmd[4] = (unsigned char)(start >> 8) & 0xff;
89 pccb->cmd[5] = (unsigned char)start & 0xff;
90 pccb->cmd[6] = 0;
91 pccb->cmd[7] = (unsigned char)(blocks >> 8) & 0xff;
92 pccb->cmd[8] = (unsigned char)blocks & 0xff;
93 pccb->cmd[6] = 0;
94 pccb->cmdlen = 10;
95 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
96 debug("scsi_setup_read_ext: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
97 pccb->cmd[0], pccb->cmd[1],
98 pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5],
99 pccb->cmd[7], pccb->cmd[8]);
100}
101
Simon Glass5fb559d2017-06-14 21:28:30 -0600102static void scsi_setup_write_ext(struct scsi_cmd *pccb, lbaint_t start,
Michal Simek9ec32f32016-11-30 11:53:43 +0100103 unsigned short blocks)
Simon Glassc8e89ab2016-05-01 11:36:09 -0600104{
105 pccb->cmd[0] = SCSI_WRITE10;
106 pccb->cmd[1] = pccb->lun << 5;
107 pccb->cmd[2] = (unsigned char)(start >> 24) & 0xff;
108 pccb->cmd[3] = (unsigned char)(start >> 16) & 0xff;
109 pccb->cmd[4] = (unsigned char)(start >> 8) & 0xff;
110 pccb->cmd[5] = (unsigned char)start & 0xff;
111 pccb->cmd[6] = 0;
112 pccb->cmd[7] = ((unsigned char)(blocks >> 8)) & 0xff;
113 pccb->cmd[8] = (unsigned char)blocks & 0xff;
114 pccb->cmd[9] = 0;
115 pccb->cmdlen = 10;
116 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
117 debug("%s: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
118 __func__,
119 pccb->cmd[0], pccb->cmd[1],
120 pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5],
121 pccb->cmd[7], pccb->cmd[8]);
122}
123
Simon Glass5bf96dc2016-05-01 11:36:24 -0600124static ulong scsi_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
125 void *buffer)
Simon Glassc8e89ab2016-05-01 11:36:09 -0600126{
Simon Glass71fa5b42020-12-03 16:55:18 -0700127 struct blk_desc *block_dev = dev_get_uclass_plat(dev);
Simon Glass11b2b622017-06-14 21:28:40 -0600128 struct udevice *bdev = dev->parent;
Simon Glassb75b15b2020-12-03 16:55:23 -0700129 struct scsi_plat *uc_plat = dev_get_uclass_plat(bdev);
Faiz Abbasb26c6142019-10-15 18:24:33 +0530130 lbaint_t start, blks, max_blks;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600131 uintptr_t buf_addr;
132 unsigned short smallblks = 0;
Simon Glass5fb559d2017-06-14 21:28:30 -0600133 struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600134
135 /* Setup device */
Michal Simekde6840a2016-11-18 16:22:42 +0100136 pccb->target = block_dev->target;
137 pccb->lun = block_dev->lun;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600138 buf_addr = (unsigned long)buffer;
139 start = blknr;
140 blks = blkcnt;
Faiz Abbasb26c6142019-10-15 18:24:33 +0530141 if (uc_plat->max_bytes_per_req)
142 max_blks = uc_plat->max_bytes_per_req / block_dev->blksz;
143 else
144 max_blks = SCSI_MAX_BLK;
145
Simon Glassc8e89ab2016-05-01 11:36:09 -0600146 debug("\nscsi_read: dev %d startblk " LBAF
147 ", blccnt " LBAF " buffer %lx\n",
Michal Simekde6840a2016-11-18 16:22:42 +0100148 block_dev->devnum, start, blks, (unsigned long)buffer);
Simon Glassc8e89ab2016-05-01 11:36:09 -0600149 do {
150 pccb->pdata = (unsigned char *)buf_addr;
Faiz Abbas20948092019-10-15 18:24:35 +0530151 pccb->dma_dir = DMA_FROM_DEVICE;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600152#ifdef CONFIG_SYS_64BIT_LBA
153 if (start > SCSI_LBA48_READ) {
154 unsigned long blocks;
Faiz Abbasb26c6142019-10-15 18:24:33 +0530155 blocks = min_t(lbaint_t, blks, max_blks);
Michal Simekde6840a2016-11-18 16:22:42 +0100156 pccb->datalen = block_dev->blksz * blocks;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600157 scsi_setup_read16(pccb, start, blocks);
158 start += blocks;
159 blks -= blocks;
160 } else
161#endif
Faiz Abbasb26c6142019-10-15 18:24:33 +0530162 if (blks > max_blks) {
163 pccb->datalen = block_dev->blksz * max_blks;
164 smallblks = max_blks;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600165 scsi_setup_read_ext(pccb, start, smallblks);
Faiz Abbasb26c6142019-10-15 18:24:33 +0530166 start += max_blks;
167 blks -= max_blks;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600168 } else {
Michal Simekde6840a2016-11-18 16:22:42 +0100169 pccb->datalen = block_dev->blksz * blks;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600170 smallblks = (unsigned short)blks;
171 scsi_setup_read_ext(pccb, start, smallblks);
172 start += blks;
173 blks = 0;
174 }
175 debug("scsi_read_ext: startblk " LBAF
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900176 ", blccnt %x buffer %lX\n",
Simon Glassc8e89ab2016-05-01 11:36:09 -0600177 start, smallblks, buf_addr);
Simon Glass11b2b622017-06-14 21:28:40 -0600178 if (scsi_exec(bdev, pccb)) {
Simon Glassc8e89ab2016-05-01 11:36:09 -0600179 scsi_print_error(pccb);
180 blkcnt -= blks;
181 break;
182 }
183 buf_addr += pccb->datalen;
184 } while (blks != 0);
185 debug("scsi_read_ext: end startblk " LBAF
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900186 ", blccnt %x buffer %lX\n", start, smallblks, buf_addr);
Simon Glassc8e89ab2016-05-01 11:36:09 -0600187 return blkcnt;
188}
189
190/*******************************************************************************
191 * scsi_write
192 */
193
Simon Glass5bf96dc2016-05-01 11:36:24 -0600194static ulong scsi_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
195 const void *buffer)
Simon Glassc8e89ab2016-05-01 11:36:09 -0600196{
Simon Glass71fa5b42020-12-03 16:55:18 -0700197 struct blk_desc *block_dev = dev_get_uclass_plat(dev);
Simon Glass11b2b622017-06-14 21:28:40 -0600198 struct udevice *bdev = dev->parent;
Simon Glassb75b15b2020-12-03 16:55:23 -0700199 struct scsi_plat *uc_plat = dev_get_uclass_plat(bdev);
Faiz Abbasb26c6142019-10-15 18:24:33 +0530200 lbaint_t start, blks, max_blks;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600201 uintptr_t buf_addr;
202 unsigned short smallblks;
Simon Glass5fb559d2017-06-14 21:28:30 -0600203 struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600204
Simon Glassc8e89ab2016-05-01 11:36:09 -0600205 /* Setup device */
Michal Simekde6840a2016-11-18 16:22:42 +0100206 pccb->target = block_dev->target;
207 pccb->lun = block_dev->lun;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600208 buf_addr = (unsigned long)buffer;
209 start = blknr;
210 blks = blkcnt;
Faiz Abbasb26c6142019-10-15 18:24:33 +0530211 if (uc_plat->max_bytes_per_req)
212 max_blks = uc_plat->max_bytes_per_req / block_dev->blksz;
213 else
214 max_blks = SCSI_MAX_BLK;
215
Simon Glassc8e89ab2016-05-01 11:36:09 -0600216 debug("\n%s: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n",
Michal Simekde6840a2016-11-18 16:22:42 +0100217 __func__, block_dev->devnum, start, blks, (unsigned long)buffer);
Simon Glassc8e89ab2016-05-01 11:36:09 -0600218 do {
219 pccb->pdata = (unsigned char *)buf_addr;
Faiz Abbas20948092019-10-15 18:24:35 +0530220 pccb->dma_dir = DMA_TO_DEVICE;
Faiz Abbasb26c6142019-10-15 18:24:33 +0530221 if (blks > max_blks) {
222 pccb->datalen = block_dev->blksz * max_blks;
223 smallblks = max_blks;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600224 scsi_setup_write_ext(pccb, start, smallblks);
Faiz Abbasb26c6142019-10-15 18:24:33 +0530225 start += max_blks;
226 blks -= max_blks;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600227 } else {
Michal Simekde6840a2016-11-18 16:22:42 +0100228 pccb->datalen = block_dev->blksz * blks;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600229 smallblks = (unsigned short)blks;
230 scsi_setup_write_ext(pccb, start, smallblks);
231 start += blks;
232 blks = 0;
233 }
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900234 debug("%s: startblk " LBAF ", blccnt %x buffer %lx\n",
Simon Glassc8e89ab2016-05-01 11:36:09 -0600235 __func__, start, smallblks, buf_addr);
Simon Glass11b2b622017-06-14 21:28:40 -0600236 if (scsi_exec(bdev, pccb)) {
Simon Glassc8e89ab2016-05-01 11:36:09 -0600237 scsi_print_error(pccb);
238 blkcnt -= blks;
239 break;
240 }
241 buf_addr += pccb->datalen;
242 } while (blks != 0);
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900243 debug("%s: end startblk " LBAF ", blccnt %x buffer %lX\n",
Simon Glassc8e89ab2016-05-01 11:36:09 -0600244 __func__, start, smallblks, buf_addr);
245 return blkcnt;
246}
Marek Vasutb980e212023-08-14 01:50:00 +0200247
248#if IS_ENABLED(CONFIG_BOUNCE_BUFFER)
249static int scsi_buffer_aligned(struct udevice *dev, struct bounce_buffer *state)
250{
251 struct scsi_ops *ops = scsi_get_ops(dev->parent);
252
253 if (ops->buffer_aligned)
254 return ops->buffer_aligned(dev->parent, state);
255
256 return 1;
257}
258#endif /* CONFIG_BOUNCE_BUFFER */
Simon Glassc8e89ab2016-05-01 11:36:09 -0600259
Simon Glassc8e89ab2016-05-01 11:36:09 -0600260/* copy src to dest, skipping leading and trailing blanks
261 * and null terminate the string
262 */
Michal Simek9ec32f32016-11-30 11:53:43 +0100263static void scsi_ident_cpy(unsigned char *dest, unsigned char *src,
264 unsigned int len)
Simon Glassc8e89ab2016-05-01 11:36:09 -0600265{
266 int start, end;
267
268 start = 0;
269 while (start < len) {
270 if (src[start] != ' ')
271 break;
272 start++;
273 }
274 end = len-1;
275 while (end > start) {
276 if (src[end] != ' ')
277 break;
278 end--;
279 }
280 for (; start <= end; start++)
281 *dest ++= src[start];
282 *dest = '\0';
283}
284
Simon Glass11b2b622017-06-14 21:28:40 -0600285static int scsi_read_capacity(struct udevice *dev, struct scsi_cmd *pccb,
286 lbaint_t *capacity, unsigned long *blksz)
Simon Glassc8e89ab2016-05-01 11:36:09 -0600287{
288 *capacity = 0;
289
290 memset(pccb->cmd, '\0', sizeof(pccb->cmd));
291 pccb->cmd[0] = SCSI_RD_CAPAC10;
292 pccb->cmd[1] = pccb->lun << 5;
293 pccb->cmdlen = 10;
Nikita Yushchenkoef793ee2023-11-13 11:51:02 +0600294 pccb->dma_dir = DMA_FROM_DEVICE;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600295 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
296
297 pccb->datalen = 8;
Simon Glassa140e862017-06-14 21:28:44 -0600298 if (scsi_exec(dev, pccb))
Simon Glassc8e89ab2016-05-01 11:36:09 -0600299 return 1;
300
301 *capacity = ((lbaint_t)pccb->pdata[0] << 24) |
302 ((lbaint_t)pccb->pdata[1] << 16) |
303 ((lbaint_t)pccb->pdata[2] << 8) |
304 ((lbaint_t)pccb->pdata[3]);
305
306 if (*capacity != 0xffffffff) {
307 /* Read capacity (10) was sufficient for this drive. */
308 *blksz = ((unsigned long)pccb->pdata[4] << 24) |
309 ((unsigned long)pccb->pdata[5] << 16) |
310 ((unsigned long)pccb->pdata[6] << 8) |
311 ((unsigned long)pccb->pdata[7]);
Julius Lehmann18afb602024-10-26 20:06:44 +0200312 *capacity += 1;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600313 return 0;
314 }
315
316 /* Read capacity (10) was insufficient. Use read capacity (16). */
317 memset(pccb->cmd, '\0', sizeof(pccb->cmd));
318 pccb->cmd[0] = SCSI_RD_CAPAC16;
319 pccb->cmd[1] = 0x10;
320 pccb->cmdlen = 16;
321 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
322
323 pccb->datalen = 16;
Faiz Abbas20948092019-10-15 18:24:35 +0530324 pccb->dma_dir = DMA_FROM_DEVICE;
Simon Glassa140e862017-06-14 21:28:44 -0600325 if (scsi_exec(dev, pccb))
Simon Glassc8e89ab2016-05-01 11:36:09 -0600326 return 1;
327
328 *capacity = ((uint64_t)pccb->pdata[0] << 56) |
329 ((uint64_t)pccb->pdata[1] << 48) |
330 ((uint64_t)pccb->pdata[2] << 40) |
331 ((uint64_t)pccb->pdata[3] << 32) |
332 ((uint64_t)pccb->pdata[4] << 24) |
333 ((uint64_t)pccb->pdata[5] << 16) |
334 ((uint64_t)pccb->pdata[6] << 8) |
335 ((uint64_t)pccb->pdata[7]);
Julius Lehmann18afb602024-10-26 20:06:44 +0200336 *capacity += 1;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600337
338 *blksz = ((uint64_t)pccb->pdata[8] << 56) |
339 ((uint64_t)pccb->pdata[9] << 48) |
340 ((uint64_t)pccb->pdata[10] << 40) |
341 ((uint64_t)pccb->pdata[11] << 32) |
342 ((uint64_t)pccb->pdata[12] << 24) |
343 ((uint64_t)pccb->pdata[13] << 16) |
344 ((uint64_t)pccb->pdata[14] << 8) |
345 ((uint64_t)pccb->pdata[15]);
346
347 return 0;
348}
349
Simon Glassc8e89ab2016-05-01 11:36:09 -0600350/*
351 * Some setup (fill-in) routines
352 */
Simon Glass5fb559d2017-06-14 21:28:30 -0600353static void scsi_setup_test_unit_ready(struct scsi_cmd *pccb)
Simon Glassc8e89ab2016-05-01 11:36:09 -0600354{
355 pccb->cmd[0] = SCSI_TST_U_RDY;
356 pccb->cmd[1] = pccb->lun << 5;
357 pccb->cmd[2] = 0;
358 pccb->cmd[3] = 0;
359 pccb->cmd[4] = 0;
360 pccb->cmd[5] = 0;
361 pccb->cmdlen = 6;
362 pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
363}
364
Michal Simek6241b522016-11-30 12:50:58 +0100365/**
366 * scsi_init_dev_desc_priv - initialize only SCSI specific blk_desc properties
367 *
368 * @dev_desc: Block device description pointer
369 */
370static void scsi_init_dev_desc_priv(struct blk_desc *dev_desc)
Michal Simekac0a18d12016-11-18 15:27:00 +0100371{
Tom Rini0154cfe2023-11-08 14:28:11 -0500372 memset(dev_desc, 0, sizeof(struct blk_desc));
Michal Simekac0a18d12016-11-18 15:27:00 +0100373 dev_desc->target = 0xff;
374 dev_desc->lun = 0xff;
Michal Simekac0a18d12016-11-18 15:27:00 +0100375 dev_desc->log2blksz =
376 LOG2_INVALID(typeof(dev_desc->log2blksz));
377 dev_desc->type = DEV_TYPE_UNKNOWN;
Johan Jonker10a986c2023-10-18 16:01:10 +0200378#if IS_ENABLED(CONFIG_BOUNCE_BUFFER)
379 dev_desc->bb = true;
380#endif /* CONFIG_BOUNCE_BUFFER */
Michal Simekac0a18d12016-11-18 15:27:00 +0100381}
382
Michal Simekebbde652016-11-18 15:42:13 +0100383/**
384 * scsi_detect_dev - Detect scsi device
385 *
Michal Simek40917492016-11-18 16:14:24 +0100386 * @target: target id
Jean-Jacques Hiblot0c447f02017-04-07 13:42:06 +0200387 * @lun: target lun
Michal Simekebbde652016-11-18 15:42:13 +0100388 * @dev_desc: block device description
Michal Simekebbde652016-11-18 15:42:13 +0100389 *
390 * The scsi_detect_dev detects and fills a dev_desc structure when the device is
Jean-Jacques Hiblot0c447f02017-04-07 13:42:06 +0200391 * detected.
Michal Simekebbde652016-11-18 15:42:13 +0100392 *
393 * Return: 0 on success, error value otherwise
394 */
Simon Glass11b2b622017-06-14 21:28:40 -0600395static int scsi_detect_dev(struct udevice *dev, int target, int lun,
396 struct blk_desc *dev_desc)
Michal Simekebbde652016-11-18 15:42:13 +0100397{
398 unsigned char perq, modi;
399 lbaint_t capacity;
400 unsigned long blksz;
Simon Glass5fb559d2017-06-14 21:28:30 -0600401 struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb;
Faiz Abbas3645a482019-10-15 18:24:34 +0530402 int count, err;
Michal Simekebbde652016-11-18 15:42:13 +0100403
Michal Simek40917492016-11-18 16:14:24 +0100404 pccb->target = target;
Jean-Jacques Hiblot0c447f02017-04-07 13:42:06 +0200405 pccb->lun = lun;
Marek Vasut60b20b42023-08-07 02:26:12 +0200406 pccb->pdata = tempbuff;
Michal Simekebbde652016-11-18 15:42:13 +0100407 pccb->datalen = 512;
Faiz Abbas20948092019-10-15 18:24:35 +0530408 pccb->dma_dir = DMA_FROM_DEVICE;
Michal Simekebbde652016-11-18 15:42:13 +0100409 scsi_setup_inquiry(pccb);
Simon Glassa140e862017-06-14 21:28:44 -0600410 if (scsi_exec(dev, pccb)) {
Michal Simekebbde652016-11-18 15:42:13 +0100411 if (pccb->contr_stat == SCSI_SEL_TIME_OUT) {
412 /*
413 * selection timeout => assuming no
414 * device present
415 */
416 debug("Selection timeout ID %d\n",
417 pccb->target);
418 return -ETIMEDOUT;
419 }
420 scsi_print_error(pccb);
421 return -ENODEV;
422 }
423 perq = tempbuff[0];
424 modi = tempbuff[1];
425 if ((perq & 0x1f) == 0x1f)
426 return -ENODEV; /* skip unknown devices */
427 if ((modi & 0x80) == 0x80) /* drive is removable */
428 dev_desc->removable = true;
429 /* get info for this device */
430 scsi_ident_cpy((unsigned char *)dev_desc->vendor,
431 &tempbuff[8], 8);
432 scsi_ident_cpy((unsigned char *)dev_desc->product,
433 &tempbuff[16], 16);
434 scsi_ident_cpy((unsigned char *)dev_desc->revision,
435 &tempbuff[32], 4);
436 dev_desc->target = pccb->target;
437 dev_desc->lun = pccb->lun;
438
Faiz Abbas3645a482019-10-15 18:24:34 +0530439 for (count = 0; count < 3; count++) {
440 pccb->datalen = 0;
Nikita Yushchenkoef793ee2023-11-13 11:51:02 +0600441 pccb->dma_dir = DMA_NONE;
Faiz Abbas3645a482019-10-15 18:24:34 +0530442 scsi_setup_test_unit_ready(pccb);
443 err = scsi_exec(dev, pccb);
444 if (!err)
445 break;
446 }
447 if (err) {
Michal Simekebbde652016-11-18 15:42:13 +0100448 if (dev_desc->removable) {
449 dev_desc->type = perq;
450 goto removable;
451 }
452 scsi_print_error(pccb);
453 return -EINVAL;
454 }
Simon Glass11b2b622017-06-14 21:28:40 -0600455 if (scsi_read_capacity(dev, pccb, &capacity, &blksz)) {
Michal Simekebbde652016-11-18 15:42:13 +0100456 scsi_print_error(pccb);
457 return -EINVAL;
458 }
459 dev_desc->lba = capacity;
460 dev_desc->blksz = blksz;
461 dev_desc->log2blksz = LOG2(dev_desc->blksz);
462 dev_desc->type = perq;
Michal Simekebbde652016-11-18 15:42:13 +0100463removable:
464 return 0;
465}
466
Simon Glassc8e89ab2016-05-01 11:36:09 -0600467/*
468 * (re)-scan the scsi bus and reports scsi device info
469 * to the user if mode = 1
470 */
Simon Glass48228732017-06-14 21:28:41 -0600471static int do_scsi_scan_one(struct udevice *dev, int id, int lun, bool verbose)
Jean-Jacques Hiblotcdf96eb2017-04-24 11:51:26 +0200472{
473 int ret;
474 struct udevice *bdev;
475 struct blk_desc bd;
476 struct blk_desc *bdesc;
Simon Glass1af3eed2023-01-17 10:47:43 -0700477 char str[10], *name;
Jean-Jacques Hiblotcdf96eb2017-04-24 11:51:26 +0200478
479 /*
480 * detect the scsi driver to get information about its geometry (block
481 * size, number of blocks) and other parameters (ids, type, ...)
482 */
483 scsi_init_dev_desc_priv(&bd);
Simon Glass11b2b622017-06-14 21:28:40 -0600484 if (scsi_detect_dev(dev, id, lun, &bd))
Jean-Jacques Hiblotcdf96eb2017-04-24 11:51:26 +0200485 return -ENODEV;
486
487 /*
488 * Create only one block device and do detection
489 * to make sure that there won't be a lot of
490 * block devices created
491 */
492 snprintf(str, sizeof(str), "id%dlun%d", id, lun);
Simon Glass1af3eed2023-01-17 10:47:43 -0700493 name = strdup(str);
494 if (!name)
495 return log_msg_ret("nam", -ENOMEM);
496 ret = blk_create_devicef(dev, "scsi_blk", name, UCLASS_SCSI, -1,
Simon Glassdbfa32c2022-08-11 19:34:59 -0600497 bd.blksz, bd.lba, &bdev);
Jean-Jacques Hiblotcdf96eb2017-04-24 11:51:26 +0200498 if (ret) {
499 debug("Can't create device\n");
500 return ret;
501 }
Simon Glass1af3eed2023-01-17 10:47:43 -0700502 device_set_name_alloced(bdev);
Jean-Jacques Hiblotcdf96eb2017-04-24 11:51:26 +0200503
Simon Glass71fa5b42020-12-03 16:55:18 -0700504 bdesc = dev_get_uclass_plat(bdev);
Jean-Jacques Hiblotcdf96eb2017-04-24 11:51:26 +0200505 bdesc->target = id;
506 bdesc->lun = lun;
507 bdesc->removable = bd.removable;
508 bdesc->type = bd.type;
Johan Jonker10a986c2023-10-18 16:01:10 +0200509 bdesc->bb = bd.bb;
Jean-Jacques Hiblotcdf96eb2017-04-24 11:51:26 +0200510 memcpy(&bdesc->vendor, &bd.vendor, sizeof(bd.vendor));
511 memcpy(&bdesc->product, &bd.product, sizeof(bd.product));
512 memcpy(&bdesc->revision, &bd.revision, sizeof(bd.revision));
Stefan Roesec52ee3e2021-04-07 09:12:36 +0200513 if (IS_ENABLED(CONFIG_SYS_BIG_ENDIAN)) {
514 ata_swap_buf_le16((u16 *)&bdesc->vendor, sizeof(bd.vendor) / 2);
515 ata_swap_buf_le16((u16 *)&bdesc->product, sizeof(bd.product) / 2);
516 ata_swap_buf_le16((u16 *)&bdesc->revision, sizeof(bd.revision) / 2);
517 }
Jean-Jacques Hiblotcdf96eb2017-04-24 11:51:26 +0200518
AKASHI Takahiro368c3d52022-03-08 20:36:39 +0900519 ret = blk_probe_or_unbind(bdev);
520 if (ret < 0)
521 /* TODO: undo create */
Simon Glass9985e9c2023-01-17 10:47:45 -0700522 return log_msg_ret("pro", ret);
523
Simon Glassb1d581d2023-07-30 11:15:14 -0600524 ret = bootdev_setup_for_sibling_blk(bdev, "scsi_bootdev");
Simon Glass9985e9c2023-01-17 10:47:45 -0700525 if (ret)
526 return log_msg_ret("bd", ret);
AKASHI Takahiro368c3d52022-03-08 20:36:39 +0900527
Simon Glass48228732017-06-14 21:28:41 -0600528 if (verbose) {
Heinrich Schuchardtc5382b72019-02-05 18:06:24 +0100529 printf(" Device %d: ", bdesc->devnum);
Jean-Jacques Hiblotcdf96eb2017-04-24 11:51:26 +0200530 dev_print(bdesc);
531 }
532 return 0;
533}
534
Simon Glass600d0012017-06-14 21:28:45 -0600535int scsi_scan_dev(struct udevice *dev, bool verbose)
536{
Simon Glassb75b15b2020-12-03 16:55:23 -0700537 struct scsi_plat *uc_plat; /* scsi controller plat */
Simon Glass600d0012017-06-14 21:28:45 -0600538 int ret;
539 int i;
540 int lun;
541
542 /* probe SCSI controller driver */
543 ret = device_probe(dev);
544 if (ret)
545 return ret;
546
Simon Glass71fa5b42020-12-03 16:55:18 -0700547 /* Get controller plat */
548 uc_plat = dev_get_uclass_plat(dev);
Simon Glass600d0012017-06-14 21:28:45 -0600549
550 for (i = 0; i < uc_plat->max_id; i++)
551 for (lun = 0; lun < uc_plat->max_lun; lun++)
552 do_scsi_scan_one(dev, i, lun, verbose);
553
554 return 0;
555}
556
Simon Glass48228732017-06-14 21:28:41 -0600557int scsi_scan(bool verbose)
Simon Glassc8e89ab2016-05-01 11:36:09 -0600558{
Michal Simekc886f352016-09-08 15:06:45 +0200559 struct uclass *uc;
560 struct udevice *dev; /* SCSI controller */
Michal Simekebbde652016-11-18 15:42:13 +0100561 int ret;
Simon Glassc8e89ab2016-05-01 11:36:09 -0600562
Simon Glass48228732017-06-14 21:28:41 -0600563 if (verbose)
Simon Glassc8e89ab2016-05-01 11:36:09 -0600564 printf("scanning bus for devices...\n");
Michal Simekc886f352016-09-08 15:06:45 +0200565
566 ret = uclass_get(UCLASS_SCSI, &uc);
567 if (ret)
568 return ret;
569
Simon Glass01ed80a2023-01-17 10:47:44 -0700570 /* remove all children of the SCSI devices */
571 uclass_foreach_dev(dev, uc) {
572 log_debug("unbind %s\n", dev->name);
573 ret = device_chld_remove(dev, NULL, DM_REMOVE_NORMAL);
574 if (!ret)
575 ret = device_chld_unbind(dev, NULL);
576 if (ret) {
577 if (verbose)
578 printf("unable to unbind devices (%dE)\n", ret);
579 return log_msg_ret("unb", ret);
580 }
581 }
582
Michal Simekc886f352016-09-08 15:06:45 +0200583 uclass_foreach_dev(dev, uc) {
Simon Glass600d0012017-06-14 21:28:45 -0600584 ret = scsi_scan_dev(dev, verbose);
Michal Simekc886f352016-09-08 15:06:45 +0200585 if (ret)
586 return ret;
Michal Simekc886f352016-09-08 15:06:45 +0200587 }
588
589 return 0;
590}
Michal Simekc886f352016-09-08 15:06:45 +0200591
Simon Glass5bf96dc2016-05-01 11:36:24 -0600592static const struct blk_ops scsi_blk_ops = {
593 .read = scsi_read,
594 .write = scsi_write,
Marek Vasutb980e212023-08-14 01:50:00 +0200595#if IS_ENABLED(CONFIG_BOUNCE_BUFFER)
596 .buffer_aligned = scsi_buffer_aligned,
597#endif /* CONFIG_BOUNCE_BUFFER */
Simon Glass5bf96dc2016-05-01 11:36:24 -0600598};
599
600U_BOOT_DRIVER(scsi_blk) = {
601 .name = "scsi_blk",
602 .id = UCLASS_BLK,
603 .ops = &scsi_blk_ops,
604};