Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2001 |
| 4 | * Denis Peter, MPL AG Switzerland |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 655306c | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 8 | #include <blk.h> |
Simon Glass | 1ea9789 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 9 | #include <bootstage.h> |
Simon Glass | 5bf96dc | 2016-05-01 11:36:24 -0600 | [diff] [blame] | 10 | #include <dm.h> |
Simon Glass | 07dc93c | 2019-08-01 09:46:47 -0600 | [diff] [blame] | 11 | #include <env.h> |
Stefan Roese | c52ee3e | 2021-04-07 09:12:36 +0200 | [diff] [blame] | 12 | #include <libata.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Simon Glass | 655306c | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 14 | #include <part.h> |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 15 | #include <pci.h> |
| 16 | #include <scsi.h> |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 17 | #include <dm/device-internal.h> |
| 18 | #include <dm/uclass-internal.h> |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 19 | |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 20 | #if !defined(CONFIG_DM_SCSI) |
Simon Glass | 0ada891 | 2017-06-14 21:28:35 -0600 | [diff] [blame] | 21 | # ifdef CONFIG_SCSI_DEV_LIST |
| 22 | # define SCSI_DEV_LIST CONFIG_SCSI_DEV_LIST |
| 23 | # else |
| 24 | # ifdef CONFIG_SATA_ULI5288 |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 25 | |
Simon Glass | 0ada891 | 2017-06-14 21:28:35 -0600 | [diff] [blame] | 26 | # define SCSI_VEND_ID 0x10b9 |
| 27 | # define SCSI_DEV_ID 0x5288 |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 28 | |
Simon Glass | 0ada891 | 2017-06-14 21:28:35 -0600 | [diff] [blame] | 29 | # elif !defined(CONFIG_SCSI_AHCI_PLAT) |
| 30 | # error no scsi device defined |
| 31 | # endif |
| 32 | # define SCSI_DEV_LIST {SCSI_VEND_ID, SCSI_DEV_ID} |
| 33 | # endif |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 34 | #endif |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 35 | |
Simon Glass | 57e7c2a | 2017-06-14 21:28:47 -0600 | [diff] [blame] | 36 | #if defined(CONFIG_PCI) && !defined(CONFIG_SCSI_AHCI_PLAT) && \ |
| 37 | !defined(CONFIG_DM_SCSI) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 38 | const struct pci_device_id scsi_device_list[] = { SCSI_DEV_LIST }; |
| 39 | #endif |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 40 | static struct scsi_cmd tempccb; /* temporary scsi command buffer */ |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 41 | |
| 42 | static unsigned char tempbuff[512]; /* temporary data buffer */ |
| 43 | |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 44 | #if !defined(CONFIG_DM_SCSI) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 45 | static int scsi_max_devs; /* number of highest available scsi device */ |
| 46 | |
| 47 | static int scsi_curr_dev; /* current device */ |
| 48 | |
Simon Glass | 1a46224 | 2022-01-31 07:49:36 -0700 | [diff] [blame] | 49 | static struct blk_desc scsi_dev_desc[SCSI_MAX_DEVICE]; |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 50 | #endif |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 51 | |
| 52 | /* almost the maximum amount of the scsi_ext command.. */ |
Faiz Abbas | b26c614 | 2019-10-15 18:24:33 +0530 | [diff] [blame] | 53 | #define SCSI_MAX_BLK 0xFFFF |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 54 | #define SCSI_LBA48_READ 0xFFFFFFF |
| 55 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 56 | static void scsi_print_error(struct scsi_cmd *pccb) |
Simon Glass | 1674098 | 2017-06-14 21:28:23 -0600 | [diff] [blame] | 57 | { |
| 58 | /* Dummy function that could print an error for debugging */ |
| 59 | } |
| 60 | |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 61 | #ifdef CONFIG_SYS_64BIT_LBA |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 62 | void scsi_setup_read16(struct scsi_cmd *pccb, lbaint_t start, |
| 63 | unsigned long blocks) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 64 | { |
| 65 | pccb->cmd[0] = SCSI_READ16; |
| 66 | pccb->cmd[1] = pccb->lun << 5; |
| 67 | pccb->cmd[2] = (unsigned char)(start >> 56) & 0xff; |
| 68 | pccb->cmd[3] = (unsigned char)(start >> 48) & 0xff; |
| 69 | pccb->cmd[4] = (unsigned char)(start >> 40) & 0xff; |
| 70 | pccb->cmd[5] = (unsigned char)(start >> 32) & 0xff; |
| 71 | pccb->cmd[6] = (unsigned char)(start >> 24) & 0xff; |
| 72 | pccb->cmd[7] = (unsigned char)(start >> 16) & 0xff; |
| 73 | pccb->cmd[8] = (unsigned char)(start >> 8) & 0xff; |
| 74 | pccb->cmd[9] = (unsigned char)start & 0xff; |
| 75 | pccb->cmd[10] = 0; |
| 76 | pccb->cmd[11] = (unsigned char)(blocks >> 24) & 0xff; |
| 77 | pccb->cmd[12] = (unsigned char)(blocks >> 16) & 0xff; |
| 78 | pccb->cmd[13] = (unsigned char)(blocks >> 8) & 0xff; |
| 79 | pccb->cmd[14] = (unsigned char)blocks & 0xff; |
| 80 | pccb->cmd[15] = 0; |
| 81 | pccb->cmdlen = 16; |
| 82 | pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */ |
| 83 | debug("scsi_setup_read16: cmd: %02X %02X startblk %02X%02X%02X%02X%02X%02X%02X%02X blccnt %02X%02X%02X%02X\n", |
| 84 | pccb->cmd[0], pccb->cmd[1], |
| 85 | pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5], |
| 86 | pccb->cmd[6], pccb->cmd[7], pccb->cmd[8], pccb->cmd[9], |
| 87 | pccb->cmd[11], pccb->cmd[12], pccb->cmd[13], pccb->cmd[14]); |
| 88 | } |
| 89 | #endif |
| 90 | |
Faiz Abbas | 76a6fa6 | 2019-10-15 18:24:32 +0530 | [diff] [blame] | 91 | static void scsi_setup_inquiry(struct scsi_cmd *pccb) |
| 92 | { |
| 93 | pccb->cmd[0] = SCSI_INQUIRY; |
| 94 | pccb->cmd[1] = pccb->lun << 5; |
| 95 | pccb->cmd[2] = 0; |
| 96 | pccb->cmd[3] = 0; |
| 97 | if (pccb->datalen > 255) |
| 98 | pccb->cmd[4] = 255; |
| 99 | else |
| 100 | pccb->cmd[4] = (unsigned char)pccb->datalen; |
| 101 | pccb->cmd[5] = 0; |
| 102 | pccb->cmdlen = 6; |
| 103 | pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */ |
| 104 | } |
| 105 | |
| 106 | #ifdef CONFIG_BLK |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 107 | static void scsi_setup_read_ext(struct scsi_cmd *pccb, lbaint_t start, |
Michal Simek | 9ec32f3 | 2016-11-30 11:53:43 +0100 | [diff] [blame] | 108 | unsigned short blocks) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 109 | { |
| 110 | pccb->cmd[0] = SCSI_READ10; |
| 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[6] = 0; |
| 120 | pccb->cmdlen = 10; |
| 121 | pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */ |
| 122 | debug("scsi_setup_read_ext: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n", |
| 123 | pccb->cmd[0], pccb->cmd[1], |
| 124 | pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5], |
| 125 | pccb->cmd[7], pccb->cmd[8]); |
| 126 | } |
| 127 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 128 | static void scsi_setup_write_ext(struct scsi_cmd *pccb, lbaint_t start, |
Michal Simek | 9ec32f3 | 2016-11-30 11:53:43 +0100 | [diff] [blame] | 129 | unsigned short blocks) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 130 | { |
| 131 | pccb->cmd[0] = SCSI_WRITE10; |
| 132 | pccb->cmd[1] = pccb->lun << 5; |
| 133 | pccb->cmd[2] = (unsigned char)(start >> 24) & 0xff; |
| 134 | pccb->cmd[3] = (unsigned char)(start >> 16) & 0xff; |
| 135 | pccb->cmd[4] = (unsigned char)(start >> 8) & 0xff; |
| 136 | pccb->cmd[5] = (unsigned char)start & 0xff; |
| 137 | pccb->cmd[6] = 0; |
| 138 | pccb->cmd[7] = ((unsigned char)(blocks >> 8)) & 0xff; |
| 139 | pccb->cmd[8] = (unsigned char)blocks & 0xff; |
| 140 | pccb->cmd[9] = 0; |
| 141 | pccb->cmdlen = 10; |
| 142 | pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */ |
| 143 | debug("%s: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n", |
| 144 | __func__, |
| 145 | pccb->cmd[0], pccb->cmd[1], |
| 146 | pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5], |
| 147 | pccb->cmd[7], pccb->cmd[8]); |
| 148 | } |
| 149 | |
Simon Glass | 5bf96dc | 2016-05-01 11:36:24 -0600 | [diff] [blame] | 150 | static ulong scsi_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt, |
| 151 | void *buffer) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 152 | { |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 153 | struct blk_desc *block_dev = dev_get_uclass_plat(dev); |
Simon Glass | 11b2b62 | 2017-06-14 21:28:40 -0600 | [diff] [blame] | 154 | struct udevice *bdev = dev->parent; |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 155 | struct scsi_plat *uc_plat = dev_get_uclass_plat(bdev); |
Faiz Abbas | b26c614 | 2019-10-15 18:24:33 +0530 | [diff] [blame] | 156 | lbaint_t start, blks, max_blks; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 157 | uintptr_t buf_addr; |
| 158 | unsigned short smallblks = 0; |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 159 | struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 160 | |
| 161 | /* Setup device */ |
Michal Simek | de6840a | 2016-11-18 16:22:42 +0100 | [diff] [blame] | 162 | pccb->target = block_dev->target; |
| 163 | pccb->lun = block_dev->lun; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 164 | buf_addr = (unsigned long)buffer; |
| 165 | start = blknr; |
| 166 | blks = blkcnt; |
Faiz Abbas | b26c614 | 2019-10-15 18:24:33 +0530 | [diff] [blame] | 167 | if (uc_plat->max_bytes_per_req) |
| 168 | max_blks = uc_plat->max_bytes_per_req / block_dev->blksz; |
| 169 | else |
| 170 | max_blks = SCSI_MAX_BLK; |
| 171 | |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 172 | debug("\nscsi_read: dev %d startblk " LBAF |
| 173 | ", blccnt " LBAF " buffer %lx\n", |
Michal Simek | de6840a | 2016-11-18 16:22:42 +0100 | [diff] [blame] | 174 | block_dev->devnum, start, blks, (unsigned long)buffer); |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 175 | do { |
| 176 | pccb->pdata = (unsigned char *)buf_addr; |
Faiz Abbas | 2094809 | 2019-10-15 18:24:35 +0530 | [diff] [blame] | 177 | pccb->dma_dir = DMA_FROM_DEVICE; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 178 | #ifdef CONFIG_SYS_64BIT_LBA |
| 179 | if (start > SCSI_LBA48_READ) { |
| 180 | unsigned long blocks; |
Faiz Abbas | b26c614 | 2019-10-15 18:24:33 +0530 | [diff] [blame] | 181 | blocks = min_t(lbaint_t, blks, max_blks); |
Michal Simek | de6840a | 2016-11-18 16:22:42 +0100 | [diff] [blame] | 182 | pccb->datalen = block_dev->blksz * blocks; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 183 | scsi_setup_read16(pccb, start, blocks); |
| 184 | start += blocks; |
| 185 | blks -= blocks; |
| 186 | } else |
| 187 | #endif |
Faiz Abbas | b26c614 | 2019-10-15 18:24:33 +0530 | [diff] [blame] | 188 | if (blks > max_blks) { |
| 189 | pccb->datalen = block_dev->blksz * max_blks; |
| 190 | smallblks = max_blks; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 191 | scsi_setup_read_ext(pccb, start, smallblks); |
Faiz Abbas | b26c614 | 2019-10-15 18:24:33 +0530 | [diff] [blame] | 192 | start += max_blks; |
| 193 | blks -= max_blks; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 194 | } else { |
Michal Simek | de6840a | 2016-11-18 16:22:42 +0100 | [diff] [blame] | 195 | pccb->datalen = block_dev->blksz * blks; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 196 | smallblks = (unsigned short)blks; |
| 197 | scsi_setup_read_ext(pccb, start, smallblks); |
| 198 | start += blks; |
| 199 | blks = 0; |
| 200 | } |
| 201 | debug("scsi_read_ext: startblk " LBAF |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 202 | ", blccnt %x buffer %lX\n", |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 203 | start, smallblks, buf_addr); |
Simon Glass | 11b2b62 | 2017-06-14 21:28:40 -0600 | [diff] [blame] | 204 | if (scsi_exec(bdev, pccb)) { |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 205 | scsi_print_error(pccb); |
| 206 | blkcnt -= blks; |
| 207 | break; |
| 208 | } |
| 209 | buf_addr += pccb->datalen; |
| 210 | } while (blks != 0); |
| 211 | debug("scsi_read_ext: end startblk " LBAF |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 212 | ", blccnt %x buffer %lX\n", start, smallblks, buf_addr); |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 213 | return blkcnt; |
| 214 | } |
| 215 | |
| 216 | /******************************************************************************* |
| 217 | * scsi_write |
| 218 | */ |
| 219 | |
Simon Glass | 5bf96dc | 2016-05-01 11:36:24 -0600 | [diff] [blame] | 220 | static ulong scsi_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt, |
| 221 | const void *buffer) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 222 | { |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 223 | struct blk_desc *block_dev = dev_get_uclass_plat(dev); |
Simon Glass | 11b2b62 | 2017-06-14 21:28:40 -0600 | [diff] [blame] | 224 | struct udevice *bdev = dev->parent; |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 225 | struct scsi_plat *uc_plat = dev_get_uclass_plat(bdev); |
Faiz Abbas | b26c614 | 2019-10-15 18:24:33 +0530 | [diff] [blame] | 226 | lbaint_t start, blks, max_blks; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 227 | uintptr_t buf_addr; |
| 228 | unsigned short smallblks; |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 229 | struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 230 | |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 231 | /* Setup device */ |
Michal Simek | de6840a | 2016-11-18 16:22:42 +0100 | [diff] [blame] | 232 | pccb->target = block_dev->target; |
| 233 | pccb->lun = block_dev->lun; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 234 | buf_addr = (unsigned long)buffer; |
| 235 | start = blknr; |
| 236 | blks = blkcnt; |
Faiz Abbas | b26c614 | 2019-10-15 18:24:33 +0530 | [diff] [blame] | 237 | if (uc_plat->max_bytes_per_req) |
| 238 | max_blks = uc_plat->max_bytes_per_req / block_dev->blksz; |
| 239 | else |
| 240 | max_blks = SCSI_MAX_BLK; |
| 241 | |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 242 | debug("\n%s: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n", |
Michal Simek | de6840a | 2016-11-18 16:22:42 +0100 | [diff] [blame] | 243 | __func__, block_dev->devnum, start, blks, (unsigned long)buffer); |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 244 | do { |
| 245 | pccb->pdata = (unsigned char *)buf_addr; |
Faiz Abbas | 2094809 | 2019-10-15 18:24:35 +0530 | [diff] [blame] | 246 | pccb->dma_dir = DMA_TO_DEVICE; |
Faiz Abbas | b26c614 | 2019-10-15 18:24:33 +0530 | [diff] [blame] | 247 | if (blks > max_blks) { |
| 248 | pccb->datalen = block_dev->blksz * max_blks; |
| 249 | smallblks = max_blks; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 250 | scsi_setup_write_ext(pccb, start, smallblks); |
Faiz Abbas | b26c614 | 2019-10-15 18:24:33 +0530 | [diff] [blame] | 251 | start += max_blks; |
| 252 | blks -= max_blks; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 253 | } else { |
Michal Simek | de6840a | 2016-11-18 16:22:42 +0100 | [diff] [blame] | 254 | pccb->datalen = block_dev->blksz * blks; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 255 | smallblks = (unsigned short)blks; |
| 256 | scsi_setup_write_ext(pccb, start, smallblks); |
| 257 | start += blks; |
| 258 | blks = 0; |
| 259 | } |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 260 | debug("%s: startblk " LBAF ", blccnt %x buffer %lx\n", |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 261 | __func__, start, smallblks, buf_addr); |
Simon Glass | 11b2b62 | 2017-06-14 21:28:40 -0600 | [diff] [blame] | 262 | if (scsi_exec(bdev, pccb)) { |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 263 | scsi_print_error(pccb); |
| 264 | blkcnt -= blks; |
| 265 | break; |
| 266 | } |
| 267 | buf_addr += pccb->datalen; |
| 268 | } while (blks != 0); |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 269 | debug("%s: end startblk " LBAF ", blccnt %x buffer %lX\n", |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 270 | __func__, start, smallblks, buf_addr); |
| 271 | return blkcnt; |
| 272 | } |
Faiz Abbas | 76a6fa6 | 2019-10-15 18:24:32 +0530 | [diff] [blame] | 273 | #endif |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 274 | |
Simon Glass | 57e7c2a | 2017-06-14 21:28:47 -0600 | [diff] [blame] | 275 | #if defined(CONFIG_PCI) && !defined(CONFIG_SCSI_AHCI_PLAT) && \ |
| 276 | !defined(CONFIG_DM_SCSI) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 277 | void scsi_init(void) |
| 278 | { |
| 279 | int busdevfunc = -1; |
| 280 | int i; |
| 281 | /* |
| 282 | * Find a device from the list, this driver will support a single |
| 283 | * controller. |
| 284 | */ |
| 285 | for (i = 0; i < ARRAY_SIZE(scsi_device_list); i++) { |
| 286 | /* get PCI Device ID */ |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 287 | struct udevice *dev; |
| 288 | int ret; |
| 289 | |
| 290 | ret = dm_pci_find_device(scsi_device_list[i].vendor, |
| 291 | scsi_device_list[i].device, 0, &dev); |
| 292 | if (!ret) { |
| 293 | busdevfunc = dm_pci_get_bdf(dev); |
| 294 | break; |
| 295 | } |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 296 | if (busdevfunc != -1) |
| 297 | break; |
| 298 | } |
| 299 | |
| 300 | if (busdevfunc == -1) { |
| 301 | printf("Error: SCSI Controller(s) "); |
| 302 | for (i = 0; i < ARRAY_SIZE(scsi_device_list); i++) { |
| 303 | printf("%04X:%04X ", |
| 304 | scsi_device_list[i].vendor, |
| 305 | scsi_device_list[i].device); |
| 306 | } |
| 307 | printf("not found\n"); |
| 308 | return; |
| 309 | } |
| 310 | #ifdef DEBUG |
| 311 | else { |
| 312 | printf("SCSI Controller (%04X,%04X) found (%d:%d:%d)\n", |
| 313 | scsi_device_list[i].vendor, |
| 314 | scsi_device_list[i].device, |
| 315 | (busdevfunc >> 16) & 0xFF, |
| 316 | (busdevfunc >> 11) & 0x1F, |
| 317 | (busdevfunc >> 8) & 0x7); |
| 318 | } |
| 319 | #endif |
| 320 | bootstage_start(BOOTSTAGE_ID_ACCUM_SCSI, "ahci"); |
| 321 | scsi_low_level_init(busdevfunc); |
Simon Glass | 4822873 | 2017-06-14 21:28:41 -0600 | [diff] [blame] | 322 | scsi_scan(true); |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 323 | bootstage_accum(BOOTSTAGE_ID_ACCUM_SCSI); |
| 324 | } |
| 325 | #endif |
| 326 | |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 327 | /* copy src to dest, skipping leading and trailing blanks |
| 328 | * and null terminate the string |
| 329 | */ |
Michal Simek | 9ec32f3 | 2016-11-30 11:53:43 +0100 | [diff] [blame] | 330 | static void scsi_ident_cpy(unsigned char *dest, unsigned char *src, |
| 331 | unsigned int len) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 332 | { |
| 333 | int start, end; |
| 334 | |
| 335 | start = 0; |
| 336 | while (start < len) { |
| 337 | if (src[start] != ' ') |
| 338 | break; |
| 339 | start++; |
| 340 | } |
| 341 | end = len-1; |
| 342 | while (end > start) { |
| 343 | if (src[end] != ' ') |
| 344 | break; |
| 345 | end--; |
| 346 | } |
| 347 | for (; start <= end; start++) |
| 348 | *dest ++= src[start]; |
| 349 | *dest = '\0'; |
| 350 | } |
| 351 | |
Simon Glass | 11b2b62 | 2017-06-14 21:28:40 -0600 | [diff] [blame] | 352 | static int scsi_read_capacity(struct udevice *dev, struct scsi_cmd *pccb, |
| 353 | lbaint_t *capacity, unsigned long *blksz) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 354 | { |
| 355 | *capacity = 0; |
| 356 | |
| 357 | memset(pccb->cmd, '\0', sizeof(pccb->cmd)); |
| 358 | pccb->cmd[0] = SCSI_RD_CAPAC10; |
| 359 | pccb->cmd[1] = pccb->lun << 5; |
| 360 | pccb->cmdlen = 10; |
| 361 | pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */ |
| 362 | |
| 363 | pccb->datalen = 8; |
Simon Glass | a140e86 | 2017-06-14 21:28:44 -0600 | [diff] [blame] | 364 | if (scsi_exec(dev, pccb)) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 365 | return 1; |
| 366 | |
| 367 | *capacity = ((lbaint_t)pccb->pdata[0] << 24) | |
| 368 | ((lbaint_t)pccb->pdata[1] << 16) | |
| 369 | ((lbaint_t)pccb->pdata[2] << 8) | |
| 370 | ((lbaint_t)pccb->pdata[3]); |
| 371 | |
| 372 | if (*capacity != 0xffffffff) { |
| 373 | /* Read capacity (10) was sufficient for this drive. */ |
| 374 | *blksz = ((unsigned long)pccb->pdata[4] << 24) | |
| 375 | ((unsigned long)pccb->pdata[5] << 16) | |
| 376 | ((unsigned long)pccb->pdata[6] << 8) | |
| 377 | ((unsigned long)pccb->pdata[7]); |
| 378 | return 0; |
| 379 | } |
| 380 | |
| 381 | /* Read capacity (10) was insufficient. Use read capacity (16). */ |
| 382 | memset(pccb->cmd, '\0', sizeof(pccb->cmd)); |
| 383 | pccb->cmd[0] = SCSI_RD_CAPAC16; |
| 384 | pccb->cmd[1] = 0x10; |
| 385 | pccb->cmdlen = 16; |
| 386 | pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */ |
| 387 | |
| 388 | pccb->datalen = 16; |
Faiz Abbas | 2094809 | 2019-10-15 18:24:35 +0530 | [diff] [blame] | 389 | pccb->dma_dir = DMA_FROM_DEVICE; |
Simon Glass | a140e86 | 2017-06-14 21:28:44 -0600 | [diff] [blame] | 390 | if (scsi_exec(dev, pccb)) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 391 | return 1; |
| 392 | |
| 393 | *capacity = ((uint64_t)pccb->pdata[0] << 56) | |
| 394 | ((uint64_t)pccb->pdata[1] << 48) | |
| 395 | ((uint64_t)pccb->pdata[2] << 40) | |
| 396 | ((uint64_t)pccb->pdata[3] << 32) | |
| 397 | ((uint64_t)pccb->pdata[4] << 24) | |
| 398 | ((uint64_t)pccb->pdata[5] << 16) | |
| 399 | ((uint64_t)pccb->pdata[6] << 8) | |
| 400 | ((uint64_t)pccb->pdata[7]); |
| 401 | |
| 402 | *blksz = ((uint64_t)pccb->pdata[8] << 56) | |
| 403 | ((uint64_t)pccb->pdata[9] << 48) | |
| 404 | ((uint64_t)pccb->pdata[10] << 40) | |
| 405 | ((uint64_t)pccb->pdata[11] << 32) | |
| 406 | ((uint64_t)pccb->pdata[12] << 24) | |
| 407 | ((uint64_t)pccb->pdata[13] << 16) | |
| 408 | ((uint64_t)pccb->pdata[14] << 8) | |
| 409 | ((uint64_t)pccb->pdata[15]); |
| 410 | |
| 411 | return 0; |
| 412 | } |
| 413 | |
| 414 | |
| 415 | /* |
| 416 | * Some setup (fill-in) routines |
| 417 | */ |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 418 | static void scsi_setup_test_unit_ready(struct scsi_cmd *pccb) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 419 | { |
| 420 | pccb->cmd[0] = SCSI_TST_U_RDY; |
| 421 | pccb->cmd[1] = pccb->lun << 5; |
| 422 | pccb->cmd[2] = 0; |
| 423 | pccb->cmd[3] = 0; |
| 424 | pccb->cmd[4] = 0; |
| 425 | pccb->cmd[5] = 0; |
| 426 | pccb->cmdlen = 6; |
| 427 | pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */ |
| 428 | } |
| 429 | |
Michal Simek | 6241b52 | 2016-11-30 12:50:58 +0100 | [diff] [blame] | 430 | /** |
| 431 | * scsi_init_dev_desc_priv - initialize only SCSI specific blk_desc properties |
| 432 | * |
| 433 | * @dev_desc: Block device description pointer |
| 434 | */ |
| 435 | static void scsi_init_dev_desc_priv(struct blk_desc *dev_desc) |
Michal Simek | ac0a18d1 | 2016-11-18 15:27:00 +0100 | [diff] [blame] | 436 | { |
| 437 | dev_desc->target = 0xff; |
| 438 | dev_desc->lun = 0xff; |
Michal Simek | ac0a18d1 | 2016-11-18 15:27:00 +0100 | [diff] [blame] | 439 | dev_desc->log2blksz = |
| 440 | LOG2_INVALID(typeof(dev_desc->log2blksz)); |
| 441 | dev_desc->type = DEV_TYPE_UNKNOWN; |
| 442 | dev_desc->vendor[0] = 0; |
| 443 | dev_desc->product[0] = 0; |
| 444 | dev_desc->revision[0] = 0; |
| 445 | dev_desc->removable = false; |
Michal Simek | ac0a18d1 | 2016-11-18 15:27:00 +0100 | [diff] [blame] | 446 | } |
| 447 | |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 448 | #if !defined(CONFIG_DM_SCSI) |
Michal Simek | 6241b52 | 2016-11-30 12:50:58 +0100 | [diff] [blame] | 449 | /** |
| 450 | * scsi_init_dev_desc - initialize all SCSI specific blk_desc properties |
| 451 | * |
| 452 | * @dev_desc: Block device description pointer |
| 453 | * @devnum: Device number |
| 454 | */ |
| 455 | static void scsi_init_dev_desc(struct blk_desc *dev_desc, int devnum) |
| 456 | { |
| 457 | dev_desc->lba = 0; |
| 458 | dev_desc->blksz = 0; |
| 459 | dev_desc->if_type = IF_TYPE_SCSI; |
| 460 | dev_desc->devnum = devnum; |
| 461 | dev_desc->part_type = PART_TYPE_UNKNOWN; |
| 462 | |
| 463 | scsi_init_dev_desc_priv(dev_desc); |
| 464 | } |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 465 | #endif |
Michal Simek | 4091749 | 2016-11-18 16:14:24 +0100 | [diff] [blame] | 466 | |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 467 | /** |
| 468 | * scsi_detect_dev - Detect scsi device |
| 469 | * |
Michal Simek | 4091749 | 2016-11-18 16:14:24 +0100 | [diff] [blame] | 470 | * @target: target id |
Jean-Jacques Hiblot | 0c447f0 | 2017-04-07 13:42:06 +0200 | [diff] [blame] | 471 | * @lun: target lun |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 472 | * @dev_desc: block device description |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 473 | * |
| 474 | * The scsi_detect_dev detects and fills a dev_desc structure when the device is |
Jean-Jacques Hiblot | 0c447f0 | 2017-04-07 13:42:06 +0200 | [diff] [blame] | 475 | * detected. |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 476 | * |
| 477 | * Return: 0 on success, error value otherwise |
| 478 | */ |
Simon Glass | 11b2b62 | 2017-06-14 21:28:40 -0600 | [diff] [blame] | 479 | static int scsi_detect_dev(struct udevice *dev, int target, int lun, |
| 480 | struct blk_desc *dev_desc) |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 481 | { |
| 482 | unsigned char perq, modi; |
| 483 | lbaint_t capacity; |
| 484 | unsigned long blksz; |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 485 | struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb; |
Faiz Abbas | 3645a48 | 2019-10-15 18:24:34 +0530 | [diff] [blame] | 486 | int count, err; |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 487 | |
Michal Simek | 4091749 | 2016-11-18 16:14:24 +0100 | [diff] [blame] | 488 | pccb->target = target; |
Jean-Jacques Hiblot | 0c447f0 | 2017-04-07 13:42:06 +0200 | [diff] [blame] | 489 | pccb->lun = lun; |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 490 | pccb->pdata = (unsigned char *)&tempbuff; |
| 491 | pccb->datalen = 512; |
Faiz Abbas | 2094809 | 2019-10-15 18:24:35 +0530 | [diff] [blame] | 492 | pccb->dma_dir = DMA_FROM_DEVICE; |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 493 | scsi_setup_inquiry(pccb); |
Simon Glass | a140e86 | 2017-06-14 21:28:44 -0600 | [diff] [blame] | 494 | if (scsi_exec(dev, pccb)) { |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 495 | if (pccb->contr_stat == SCSI_SEL_TIME_OUT) { |
| 496 | /* |
| 497 | * selection timeout => assuming no |
| 498 | * device present |
| 499 | */ |
| 500 | debug("Selection timeout ID %d\n", |
| 501 | pccb->target); |
| 502 | return -ETIMEDOUT; |
| 503 | } |
| 504 | scsi_print_error(pccb); |
| 505 | return -ENODEV; |
| 506 | } |
| 507 | perq = tempbuff[0]; |
| 508 | modi = tempbuff[1]; |
| 509 | if ((perq & 0x1f) == 0x1f) |
| 510 | return -ENODEV; /* skip unknown devices */ |
| 511 | if ((modi & 0x80) == 0x80) /* drive is removable */ |
| 512 | dev_desc->removable = true; |
| 513 | /* get info for this device */ |
| 514 | scsi_ident_cpy((unsigned char *)dev_desc->vendor, |
| 515 | &tempbuff[8], 8); |
| 516 | scsi_ident_cpy((unsigned char *)dev_desc->product, |
| 517 | &tempbuff[16], 16); |
| 518 | scsi_ident_cpy((unsigned char *)dev_desc->revision, |
| 519 | &tempbuff[32], 4); |
| 520 | dev_desc->target = pccb->target; |
| 521 | dev_desc->lun = pccb->lun; |
| 522 | |
Faiz Abbas | 3645a48 | 2019-10-15 18:24:34 +0530 | [diff] [blame] | 523 | for (count = 0; count < 3; count++) { |
| 524 | pccb->datalen = 0; |
| 525 | scsi_setup_test_unit_ready(pccb); |
| 526 | err = scsi_exec(dev, pccb); |
| 527 | if (!err) |
| 528 | break; |
| 529 | } |
| 530 | if (err) { |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 531 | if (dev_desc->removable) { |
| 532 | dev_desc->type = perq; |
| 533 | goto removable; |
| 534 | } |
| 535 | scsi_print_error(pccb); |
| 536 | return -EINVAL; |
| 537 | } |
Simon Glass | 11b2b62 | 2017-06-14 21:28:40 -0600 | [diff] [blame] | 538 | if (scsi_read_capacity(dev, pccb, &capacity, &blksz)) { |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 539 | scsi_print_error(pccb); |
| 540 | return -EINVAL; |
| 541 | } |
| 542 | dev_desc->lba = capacity; |
| 543 | dev_desc->blksz = blksz; |
| 544 | dev_desc->log2blksz = LOG2(dev_desc->blksz); |
| 545 | dev_desc->type = perq; |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 546 | removable: |
| 547 | return 0; |
| 548 | } |
| 549 | |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 550 | /* |
| 551 | * (re)-scan the scsi bus and reports scsi device info |
| 552 | * to the user if mode = 1 |
| 553 | */ |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 554 | #if defined(CONFIG_DM_SCSI) |
Simon Glass | 4822873 | 2017-06-14 21:28:41 -0600 | [diff] [blame] | 555 | static int do_scsi_scan_one(struct udevice *dev, int id, int lun, bool verbose) |
Jean-Jacques Hiblot | cdf96eb | 2017-04-24 11:51:26 +0200 | [diff] [blame] | 556 | { |
| 557 | int ret; |
| 558 | struct udevice *bdev; |
| 559 | struct blk_desc bd; |
| 560 | struct blk_desc *bdesc; |
| 561 | char str[10]; |
| 562 | |
| 563 | /* |
| 564 | * detect the scsi driver to get information about its geometry (block |
| 565 | * size, number of blocks) and other parameters (ids, type, ...) |
| 566 | */ |
| 567 | scsi_init_dev_desc_priv(&bd); |
Simon Glass | 11b2b62 | 2017-06-14 21:28:40 -0600 | [diff] [blame] | 568 | if (scsi_detect_dev(dev, id, lun, &bd)) |
Jean-Jacques Hiblot | cdf96eb | 2017-04-24 11:51:26 +0200 | [diff] [blame] | 569 | return -ENODEV; |
| 570 | |
| 571 | /* |
| 572 | * Create only one block device and do detection |
| 573 | * to make sure that there won't be a lot of |
| 574 | * block devices created |
| 575 | */ |
| 576 | snprintf(str, sizeof(str), "id%dlun%d", id, lun); |
| 577 | ret = blk_create_devicef(dev, "scsi_blk", str, IF_TYPE_SCSI, -1, |
Jean-Jacques Hiblot | 99b324a | 2017-06-09 16:45:18 +0200 | [diff] [blame] | 578 | bd.blksz, bd.lba, &bdev); |
Jean-Jacques Hiblot | cdf96eb | 2017-04-24 11:51:26 +0200 | [diff] [blame] | 579 | if (ret) { |
| 580 | debug("Can't create device\n"); |
| 581 | return ret; |
| 582 | } |
| 583 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 584 | bdesc = dev_get_uclass_plat(bdev); |
Jean-Jacques Hiblot | cdf96eb | 2017-04-24 11:51:26 +0200 | [diff] [blame] | 585 | bdesc->target = id; |
| 586 | bdesc->lun = lun; |
| 587 | bdesc->removable = bd.removable; |
| 588 | bdesc->type = bd.type; |
| 589 | memcpy(&bdesc->vendor, &bd.vendor, sizeof(bd.vendor)); |
| 590 | memcpy(&bdesc->product, &bd.product, sizeof(bd.product)); |
| 591 | memcpy(&bdesc->revision, &bd.revision, sizeof(bd.revision)); |
Stefan Roese | c52ee3e | 2021-04-07 09:12:36 +0200 | [diff] [blame] | 592 | if (IS_ENABLED(CONFIG_SYS_BIG_ENDIAN)) { |
| 593 | ata_swap_buf_le16((u16 *)&bdesc->vendor, sizeof(bd.vendor) / 2); |
| 594 | ata_swap_buf_le16((u16 *)&bdesc->product, sizeof(bd.product) / 2); |
| 595 | ata_swap_buf_le16((u16 *)&bdesc->revision, sizeof(bd.revision) / 2); |
| 596 | } |
Jean-Jacques Hiblot | cdf96eb | 2017-04-24 11:51:26 +0200 | [diff] [blame] | 597 | |
Simon Glass | 4822873 | 2017-06-14 21:28:41 -0600 | [diff] [blame] | 598 | if (verbose) { |
Heinrich Schuchardt | c5382b7 | 2019-02-05 18:06:24 +0100 | [diff] [blame] | 599 | printf(" Device %d: ", bdesc->devnum); |
Jean-Jacques Hiblot | cdf96eb | 2017-04-24 11:51:26 +0200 | [diff] [blame] | 600 | dev_print(bdesc); |
| 601 | } |
| 602 | return 0; |
| 603 | } |
| 604 | |
Simon Glass | 600d001 | 2017-06-14 21:28:45 -0600 | [diff] [blame] | 605 | int scsi_scan_dev(struct udevice *dev, bool verbose) |
| 606 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 607 | struct scsi_plat *uc_plat; /* scsi controller plat */ |
Simon Glass | 600d001 | 2017-06-14 21:28:45 -0600 | [diff] [blame] | 608 | int ret; |
| 609 | int i; |
| 610 | int lun; |
| 611 | |
| 612 | /* probe SCSI controller driver */ |
| 613 | ret = device_probe(dev); |
| 614 | if (ret) |
| 615 | return ret; |
| 616 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 617 | /* Get controller plat */ |
| 618 | uc_plat = dev_get_uclass_plat(dev); |
Simon Glass | 600d001 | 2017-06-14 21:28:45 -0600 | [diff] [blame] | 619 | |
| 620 | for (i = 0; i < uc_plat->max_id; i++) |
| 621 | for (lun = 0; lun < uc_plat->max_lun; lun++) |
| 622 | do_scsi_scan_one(dev, i, lun, verbose); |
| 623 | |
| 624 | return 0; |
| 625 | } |
| 626 | |
Simon Glass | 4822873 | 2017-06-14 21:28:41 -0600 | [diff] [blame] | 627 | int scsi_scan(bool verbose) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 628 | { |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 629 | struct uclass *uc; |
| 630 | struct udevice *dev; /* SCSI controller */ |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 631 | int ret; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 632 | |
Simon Glass | 4822873 | 2017-06-14 21:28:41 -0600 | [diff] [blame] | 633 | if (verbose) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 634 | printf("scanning bus for devices...\n"); |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 635 | |
Michal Simek | 9c49b8c | 2017-01-02 09:40:09 +0100 | [diff] [blame] | 636 | blk_unbind_all(IF_TYPE_SCSI); |
| 637 | |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 638 | ret = uclass_get(UCLASS_SCSI, &uc); |
| 639 | if (ret) |
| 640 | return ret; |
| 641 | |
| 642 | uclass_foreach_dev(dev, uc) { |
Simon Glass | 600d001 | 2017-06-14 21:28:45 -0600 | [diff] [blame] | 643 | ret = scsi_scan_dev(dev, verbose); |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 644 | if (ret) |
| 645 | return ret; |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | return 0; |
| 649 | } |
| 650 | #else |
Simon Glass | 4822873 | 2017-06-14 21:28:41 -0600 | [diff] [blame] | 651 | int scsi_scan(bool verbose) |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 652 | { |
| 653 | unsigned char i, lun; |
| 654 | int ret; |
| 655 | |
Simon Glass | 4822873 | 2017-06-14 21:28:41 -0600 | [diff] [blame] | 656 | if (verbose) |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 657 | printf("scanning bus for devices...\n"); |
Simon Glass | 1a46224 | 2022-01-31 07:49:36 -0700 | [diff] [blame] | 658 | for (i = 0; i < SCSI_MAX_DEVICE; i++) |
Michal Simek | ac0a18d1 | 2016-11-18 15:27:00 +0100 | [diff] [blame] | 659 | scsi_init_dev_desc(&scsi_dev_desc[i], i); |
| 660 | |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 661 | scsi_max_devs = 0; |
| 662 | for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) { |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 663 | for (lun = 0; lun < CONFIG_SYS_SCSI_MAX_LUN; lun++) { |
Heinrich Schuchardt | c5382b7 | 2019-02-05 18:06:24 +0100 | [diff] [blame] | 664 | struct blk_desc *bdesc = &scsi_dev_desc[scsi_max_devs]; |
| 665 | |
| 666 | ret = scsi_detect_dev(NULL, i, lun, bdesc); |
Michal Simek | ebbde65 | 2016-11-18 15:42:13 +0100 | [diff] [blame] | 667 | if (ret) |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 668 | continue; |
Heinrich Schuchardt | c5382b7 | 2019-02-05 18:06:24 +0100 | [diff] [blame] | 669 | part_init(bdesc); |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 670 | |
Simon Glass | 4822873 | 2017-06-14 21:28:41 -0600 | [diff] [blame] | 671 | if (verbose) { |
Heinrich Schuchardt | c5382b7 | 2019-02-05 18:06:24 +0100 | [diff] [blame] | 672 | printf(" Device %d: ", bdesc->devnum); |
| 673 | dev_print(bdesc); |
Simon Glass | 4822873 | 2017-06-14 21:28:41 -0600 | [diff] [blame] | 674 | } |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 675 | scsi_max_devs++; |
| 676 | } /* next LUN */ |
| 677 | } |
| 678 | if (scsi_max_devs > 0) |
| 679 | scsi_curr_dev = 0; |
| 680 | else |
| 681 | scsi_curr_dev = -1; |
| 682 | |
| 683 | printf("Found %d device(s).\n", scsi_max_devs); |
| 684 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 4d949a2 | 2017-08-03 12:22:10 -0600 | [diff] [blame] | 685 | env_set_ulong("scsidevs", scsi_max_devs); |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 686 | #endif |
Michal Simek | 5dc196f | 2016-11-30 12:12:31 +0100 | [diff] [blame] | 687 | return 0; |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 688 | } |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 689 | #endif |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 690 | |
Simon Glass | 5bf96dc | 2016-05-01 11:36:24 -0600 | [diff] [blame] | 691 | #ifdef CONFIG_BLK |
| 692 | static const struct blk_ops scsi_blk_ops = { |
| 693 | .read = scsi_read, |
| 694 | .write = scsi_write, |
| 695 | }; |
| 696 | |
| 697 | U_BOOT_DRIVER(scsi_blk) = { |
| 698 | .name = "scsi_blk", |
| 699 | .id = UCLASS_BLK, |
| 700 | .ops = &scsi_blk_ops, |
| 701 | }; |
| 702 | #else |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 703 | U_BOOT_LEGACY_BLK(scsi) = { |
Ed Swarthout | 987a955 | 2016-06-01 08:11:24 -0500 | [diff] [blame] | 704 | .if_typename = "scsi", |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 705 | .if_type = IF_TYPE_SCSI, |
Simon Glass | 1a46224 | 2022-01-31 07:49:36 -0700 | [diff] [blame] | 706 | .max_devs = SCSI_MAX_DEVICE, |
Simon Glass | c8e89ab | 2016-05-01 11:36:09 -0600 | [diff] [blame] | 707 | .desc = scsi_dev_desc, |
| 708 | }; |
Simon Glass | 5bf96dc | 2016-05-01 11:36:24 -0600 | [diff] [blame] | 709 | #endif |