2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-05-01 17:36:09 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2001
|
|
|
|
* Denis Peter, MPL AG Switzerland
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:39:58 +00:00
|
|
|
#include <blk.h>
|
2020-05-10 17:40:00 +00:00
|
|
|
#include <bootstage.h>
|
2016-05-01 17:36:24 +00:00
|
|
|
#include <dm.h>
|
2019-08-01 15:46:47 +00:00
|
|
|
#include <env.h>
|
2021-04-07 07:12:36 +00:00
|
|
|
#include <libata.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2020-05-10 17:39:58 +00:00
|
|
|
#include <part.h>
|
2016-05-01 17:36:09 +00:00
|
|
|
#include <pci.h>
|
|
|
|
#include <scsi.h>
|
2016-09-08 13:06:45 +00:00
|
|
|
#include <dm/device-internal.h>
|
|
|
|
#include <dm/uclass-internal.h>
|
2016-05-01 17:36:09 +00:00
|
|
|
|
2016-09-08 13:06:45 +00:00
|
|
|
#if !defined(CONFIG_DM_SCSI)
|
2017-06-15 03:28:35 +00:00
|
|
|
# ifdef CONFIG_SCSI_DEV_LIST
|
|
|
|
# define SCSI_DEV_LIST CONFIG_SCSI_DEV_LIST
|
|
|
|
# else
|
|
|
|
# ifdef CONFIG_SATA_ULI5288
|
2016-05-01 17:36:09 +00:00
|
|
|
|
2017-06-15 03:28:35 +00:00
|
|
|
# define SCSI_VEND_ID 0x10b9
|
|
|
|
# define SCSI_DEV_ID 0x5288
|
2016-05-01 17:36:09 +00:00
|
|
|
|
2017-06-15 03:28:35 +00:00
|
|
|
# elif !defined(CONFIG_SCSI_AHCI_PLAT)
|
|
|
|
# error no scsi device defined
|
|
|
|
# endif
|
|
|
|
# define SCSI_DEV_LIST {SCSI_VEND_ID, SCSI_DEV_ID}
|
|
|
|
# endif
|
2016-09-08 13:06:45 +00:00
|
|
|
#endif
|
2016-05-01 17:36:09 +00:00
|
|
|
|
2017-06-15 03:28:47 +00:00
|
|
|
#if defined(CONFIG_PCI) && !defined(CONFIG_SCSI_AHCI_PLAT) && \
|
|
|
|
!defined(CONFIG_DM_SCSI)
|
2016-05-01 17:36:09 +00:00
|
|
|
const struct pci_device_id scsi_device_list[] = { SCSI_DEV_LIST };
|
|
|
|
#endif
|
2017-06-15 03:28:30 +00:00
|
|
|
static struct scsi_cmd tempccb; /* temporary scsi command buffer */
|
2016-05-01 17:36:09 +00:00
|
|
|
|
|
|
|
static unsigned char tempbuff[512]; /* temporary data buffer */
|
|
|
|
|
2016-09-08 13:06:45 +00:00
|
|
|
#if !defined(CONFIG_DM_SCSI)
|
2016-05-01 17:36:09 +00:00
|
|
|
static int scsi_max_devs; /* number of highest available scsi device */
|
|
|
|
|
|
|
|
static int scsi_curr_dev; /* current device */
|
|
|
|
|
|
|
|
static struct blk_desc scsi_dev_desc[CONFIG_SYS_SCSI_MAX_DEVICE];
|
2016-09-08 13:06:45 +00:00
|
|
|
#endif
|
2016-05-01 17:36:09 +00:00
|
|
|
|
|
|
|
/* almost the maximum amount of the scsi_ext command.. */
|
2019-10-15 12:54:33 +00:00
|
|
|
#define SCSI_MAX_BLK 0xFFFF
|
2016-05-01 17:36:09 +00:00
|
|
|
#define SCSI_LBA48_READ 0xFFFFFFF
|
|
|
|
|
2017-06-15 03:28:30 +00:00
|
|
|
static void scsi_print_error(struct scsi_cmd *pccb)
|
2017-06-15 03:28:23 +00:00
|
|
|
{
|
|
|
|
/* Dummy function that could print an error for debugging */
|
|
|
|
}
|
|
|
|
|
2016-05-01 17:36:09 +00:00
|
|
|
#ifdef CONFIG_SYS_64BIT_LBA
|
2017-06-15 03:28:30 +00:00
|
|
|
void scsi_setup_read16(struct scsi_cmd *pccb, lbaint_t start,
|
|
|
|
unsigned long blocks)
|
2016-05-01 17:36:09 +00:00
|
|
|
{
|
|
|
|
pccb->cmd[0] = SCSI_READ16;
|
|
|
|
pccb->cmd[1] = pccb->lun << 5;
|
|
|
|
pccb->cmd[2] = (unsigned char)(start >> 56) & 0xff;
|
|
|
|
pccb->cmd[3] = (unsigned char)(start >> 48) & 0xff;
|
|
|
|
pccb->cmd[4] = (unsigned char)(start >> 40) & 0xff;
|
|
|
|
pccb->cmd[5] = (unsigned char)(start >> 32) & 0xff;
|
|
|
|
pccb->cmd[6] = (unsigned char)(start >> 24) & 0xff;
|
|
|
|
pccb->cmd[7] = (unsigned char)(start >> 16) & 0xff;
|
|
|
|
pccb->cmd[8] = (unsigned char)(start >> 8) & 0xff;
|
|
|
|
pccb->cmd[9] = (unsigned char)start & 0xff;
|
|
|
|
pccb->cmd[10] = 0;
|
|
|
|
pccb->cmd[11] = (unsigned char)(blocks >> 24) & 0xff;
|
|
|
|
pccb->cmd[12] = (unsigned char)(blocks >> 16) & 0xff;
|
|
|
|
pccb->cmd[13] = (unsigned char)(blocks >> 8) & 0xff;
|
|
|
|
pccb->cmd[14] = (unsigned char)blocks & 0xff;
|
|
|
|
pccb->cmd[15] = 0;
|
|
|
|
pccb->cmdlen = 16;
|
|
|
|
pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
|
|
|
|
debug("scsi_setup_read16: cmd: %02X %02X startblk %02X%02X%02X%02X%02X%02X%02X%02X blccnt %02X%02X%02X%02X\n",
|
|
|
|
pccb->cmd[0], pccb->cmd[1],
|
|
|
|
pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5],
|
|
|
|
pccb->cmd[6], pccb->cmd[7], pccb->cmd[8], pccb->cmd[9],
|
|
|
|
pccb->cmd[11], pccb->cmd[12], pccb->cmd[13], pccb->cmd[14]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-10-15 12:54:32 +00:00
|
|
|
static void scsi_setup_inquiry(struct scsi_cmd *pccb)
|
|
|
|
{
|
|
|
|
pccb->cmd[0] = SCSI_INQUIRY;
|
|
|
|
pccb->cmd[1] = pccb->lun << 5;
|
|
|
|
pccb->cmd[2] = 0;
|
|
|
|
pccb->cmd[3] = 0;
|
|
|
|
if (pccb->datalen > 255)
|
|
|
|
pccb->cmd[4] = 255;
|
|
|
|
else
|
|
|
|
pccb->cmd[4] = (unsigned char)pccb->datalen;
|
|
|
|
pccb->cmd[5] = 0;
|
|
|
|
pccb->cmdlen = 6;
|
|
|
|
pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_BLK
|
2017-06-15 03:28:30 +00:00
|
|
|
static void scsi_setup_read_ext(struct scsi_cmd *pccb, lbaint_t start,
|
2016-11-30 10:53:43 +00:00
|
|
|
unsigned short blocks)
|
2016-05-01 17:36:09 +00:00
|
|
|
{
|
|
|
|
pccb->cmd[0] = SCSI_READ10;
|
|
|
|
pccb->cmd[1] = pccb->lun << 5;
|
|
|
|
pccb->cmd[2] = (unsigned char)(start >> 24) & 0xff;
|
|
|
|
pccb->cmd[3] = (unsigned char)(start >> 16) & 0xff;
|
|
|
|
pccb->cmd[4] = (unsigned char)(start >> 8) & 0xff;
|
|
|
|
pccb->cmd[5] = (unsigned char)start & 0xff;
|
|
|
|
pccb->cmd[6] = 0;
|
|
|
|
pccb->cmd[7] = (unsigned char)(blocks >> 8) & 0xff;
|
|
|
|
pccb->cmd[8] = (unsigned char)blocks & 0xff;
|
|
|
|
pccb->cmd[6] = 0;
|
|
|
|
pccb->cmdlen = 10;
|
|
|
|
pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
|
|
|
|
debug("scsi_setup_read_ext: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
|
|
|
|
pccb->cmd[0], pccb->cmd[1],
|
|
|
|
pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5],
|
|
|
|
pccb->cmd[7], pccb->cmd[8]);
|
|
|
|
}
|
|
|
|
|
2017-06-15 03:28:30 +00:00
|
|
|
static void scsi_setup_write_ext(struct scsi_cmd *pccb, lbaint_t start,
|
2016-11-30 10:53:43 +00:00
|
|
|
unsigned short blocks)
|
2016-05-01 17:36:09 +00:00
|
|
|
{
|
|
|
|
pccb->cmd[0] = SCSI_WRITE10;
|
|
|
|
pccb->cmd[1] = pccb->lun << 5;
|
|
|
|
pccb->cmd[2] = (unsigned char)(start >> 24) & 0xff;
|
|
|
|
pccb->cmd[3] = (unsigned char)(start >> 16) & 0xff;
|
|
|
|
pccb->cmd[4] = (unsigned char)(start >> 8) & 0xff;
|
|
|
|
pccb->cmd[5] = (unsigned char)start & 0xff;
|
|
|
|
pccb->cmd[6] = 0;
|
|
|
|
pccb->cmd[7] = ((unsigned char)(blocks >> 8)) & 0xff;
|
|
|
|
pccb->cmd[8] = (unsigned char)blocks & 0xff;
|
|
|
|
pccb->cmd[9] = 0;
|
|
|
|
pccb->cmdlen = 10;
|
|
|
|
pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
|
|
|
|
debug("%s: cmd: %02X %02X startblk %02X%02X%02X%02X blccnt %02X%02X\n",
|
|
|
|
__func__,
|
|
|
|
pccb->cmd[0], pccb->cmd[1],
|
|
|
|
pccb->cmd[2], pccb->cmd[3], pccb->cmd[4], pccb->cmd[5],
|
|
|
|
pccb->cmd[7], pccb->cmd[8]);
|
|
|
|
}
|
|
|
|
|
2016-05-01 17:36:24 +00:00
|
|
|
static ulong scsi_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
|
|
|
|
void *buffer)
|
2016-05-01 17:36:09 +00:00
|
|
|
{
|
2020-12-03 23:55:18 +00:00
|
|
|
struct blk_desc *block_dev = dev_get_uclass_plat(dev);
|
2017-06-15 03:28:40 +00:00
|
|
|
struct udevice *bdev = dev->parent;
|
2020-12-03 23:55:23 +00:00
|
|
|
struct scsi_plat *uc_plat = dev_get_uclass_plat(bdev);
|
2019-10-15 12:54:33 +00:00
|
|
|
lbaint_t start, blks, max_blks;
|
2016-05-01 17:36:09 +00:00
|
|
|
uintptr_t buf_addr;
|
|
|
|
unsigned short smallblks = 0;
|
2017-06-15 03:28:30 +00:00
|
|
|
struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb;
|
2016-05-01 17:36:09 +00:00
|
|
|
|
|
|
|
/* Setup device */
|
2016-11-18 15:22:42 +00:00
|
|
|
pccb->target = block_dev->target;
|
|
|
|
pccb->lun = block_dev->lun;
|
2016-05-01 17:36:09 +00:00
|
|
|
buf_addr = (unsigned long)buffer;
|
|
|
|
start = blknr;
|
|
|
|
blks = blkcnt;
|
2019-10-15 12:54:33 +00:00
|
|
|
if (uc_plat->max_bytes_per_req)
|
|
|
|
max_blks = uc_plat->max_bytes_per_req / block_dev->blksz;
|
|
|
|
else
|
|
|
|
max_blks = SCSI_MAX_BLK;
|
|
|
|
|
2016-05-01 17:36:09 +00:00
|
|
|
debug("\nscsi_read: dev %d startblk " LBAF
|
|
|
|
", blccnt " LBAF " buffer %lx\n",
|
2016-11-18 15:22:42 +00:00
|
|
|
block_dev->devnum, start, blks, (unsigned long)buffer);
|
2016-05-01 17:36:09 +00:00
|
|
|
do {
|
|
|
|
pccb->pdata = (unsigned char *)buf_addr;
|
2019-10-15 12:54:35 +00:00
|
|
|
pccb->dma_dir = DMA_FROM_DEVICE;
|
2016-05-01 17:36:09 +00:00
|
|
|
#ifdef CONFIG_SYS_64BIT_LBA
|
|
|
|
if (start > SCSI_LBA48_READ) {
|
|
|
|
unsigned long blocks;
|
2019-10-15 12:54:33 +00:00
|
|
|
blocks = min_t(lbaint_t, blks, max_blks);
|
2016-11-18 15:22:42 +00:00
|
|
|
pccb->datalen = block_dev->blksz * blocks;
|
2016-05-01 17:36:09 +00:00
|
|
|
scsi_setup_read16(pccb, start, blocks);
|
|
|
|
start += blocks;
|
|
|
|
blks -= blocks;
|
|
|
|
} else
|
|
|
|
#endif
|
2019-10-15 12:54:33 +00:00
|
|
|
if (blks > max_blks) {
|
|
|
|
pccb->datalen = block_dev->blksz * max_blks;
|
|
|
|
smallblks = max_blks;
|
2016-05-01 17:36:09 +00:00
|
|
|
scsi_setup_read_ext(pccb, start, smallblks);
|
2019-10-15 12:54:33 +00:00
|
|
|
start += max_blks;
|
|
|
|
blks -= max_blks;
|
2016-05-01 17:36:09 +00:00
|
|
|
} else {
|
2016-11-18 15:22:42 +00:00
|
|
|
pccb->datalen = block_dev->blksz * blks;
|
2016-05-01 17:36:09 +00:00
|
|
|
smallblks = (unsigned short)blks;
|
|
|
|
scsi_setup_read_ext(pccb, start, smallblks);
|
|
|
|
start += blks;
|
|
|
|
blks = 0;
|
|
|
|
}
|
|
|
|
debug("scsi_read_ext: startblk " LBAF
|
2018-08-06 11:47:40 +00:00
|
|
|
", blccnt %x buffer %lX\n",
|
2016-05-01 17:36:09 +00:00
|
|
|
start, smallblks, buf_addr);
|
2017-06-15 03:28:40 +00:00
|
|
|
if (scsi_exec(bdev, pccb)) {
|
2016-05-01 17:36:09 +00:00
|
|
|
scsi_print_error(pccb);
|
|
|
|
blkcnt -= blks;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
buf_addr += pccb->datalen;
|
|
|
|
} while (blks != 0);
|
|
|
|
debug("scsi_read_ext: end startblk " LBAF
|
2018-08-06 11:47:40 +00:00
|
|
|
", blccnt %x buffer %lX\n", start, smallblks, buf_addr);
|
2016-05-01 17:36:09 +00:00
|
|
|
return blkcnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* scsi_write
|
|
|
|
*/
|
|
|
|
|
2016-05-01 17:36:24 +00:00
|
|
|
static ulong scsi_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
|
|
|
|
const void *buffer)
|
2016-05-01 17:36:09 +00:00
|
|
|
{
|
2020-12-03 23:55:18 +00:00
|
|
|
struct blk_desc *block_dev = dev_get_uclass_plat(dev);
|
2017-06-15 03:28:40 +00:00
|
|
|
struct udevice *bdev = dev->parent;
|
2020-12-03 23:55:23 +00:00
|
|
|
struct scsi_plat *uc_plat = dev_get_uclass_plat(bdev);
|
2019-10-15 12:54:33 +00:00
|
|
|
lbaint_t start, blks, max_blks;
|
2016-05-01 17:36:09 +00:00
|
|
|
uintptr_t buf_addr;
|
|
|
|
unsigned short smallblks;
|
2017-06-15 03:28:30 +00:00
|
|
|
struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb;
|
2016-05-01 17:36:09 +00:00
|
|
|
|
|
|
|
/* Setup device */
|
2016-11-18 15:22:42 +00:00
|
|
|
pccb->target = block_dev->target;
|
|
|
|
pccb->lun = block_dev->lun;
|
2016-05-01 17:36:09 +00:00
|
|
|
buf_addr = (unsigned long)buffer;
|
|
|
|
start = blknr;
|
|
|
|
blks = blkcnt;
|
2019-10-15 12:54:33 +00:00
|
|
|
if (uc_plat->max_bytes_per_req)
|
|
|
|
max_blks = uc_plat->max_bytes_per_req / block_dev->blksz;
|
|
|
|
else
|
|
|
|
max_blks = SCSI_MAX_BLK;
|
|
|
|
|
2016-05-01 17:36:09 +00:00
|
|
|
debug("\n%s: dev %d startblk " LBAF ", blccnt " LBAF " buffer %lx\n",
|
2016-11-18 15:22:42 +00:00
|
|
|
__func__, block_dev->devnum, start, blks, (unsigned long)buffer);
|
2016-05-01 17:36:09 +00:00
|
|
|
do {
|
|
|
|
pccb->pdata = (unsigned char *)buf_addr;
|
2019-10-15 12:54:35 +00:00
|
|
|
pccb->dma_dir = DMA_TO_DEVICE;
|
2019-10-15 12:54:33 +00:00
|
|
|
if (blks > max_blks) {
|
|
|
|
pccb->datalen = block_dev->blksz * max_blks;
|
|
|
|
smallblks = max_blks;
|
2016-05-01 17:36:09 +00:00
|
|
|
scsi_setup_write_ext(pccb, start, smallblks);
|
2019-10-15 12:54:33 +00:00
|
|
|
start += max_blks;
|
|
|
|
blks -= max_blks;
|
2016-05-01 17:36:09 +00:00
|
|
|
} else {
|
2016-11-18 15:22:42 +00:00
|
|
|
pccb->datalen = block_dev->blksz * blks;
|
2016-05-01 17:36:09 +00:00
|
|
|
smallblks = (unsigned short)blks;
|
|
|
|
scsi_setup_write_ext(pccb, start, smallblks);
|
|
|
|
start += blks;
|
|
|
|
blks = 0;
|
|
|
|
}
|
2018-08-06 11:47:40 +00:00
|
|
|
debug("%s: startblk " LBAF ", blccnt %x buffer %lx\n",
|
2016-05-01 17:36:09 +00:00
|
|
|
__func__, start, smallblks, buf_addr);
|
2017-06-15 03:28:40 +00:00
|
|
|
if (scsi_exec(bdev, pccb)) {
|
2016-05-01 17:36:09 +00:00
|
|
|
scsi_print_error(pccb);
|
|
|
|
blkcnt -= blks;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
buf_addr += pccb->datalen;
|
|
|
|
} while (blks != 0);
|
2018-08-06 11:47:40 +00:00
|
|
|
debug("%s: end startblk " LBAF ", blccnt %x buffer %lX\n",
|
2016-05-01 17:36:09 +00:00
|
|
|
__func__, start, smallblks, buf_addr);
|
|
|
|
return blkcnt;
|
|
|
|
}
|
2019-10-15 12:54:32 +00:00
|
|
|
#endif
|
2016-05-01 17:36:09 +00:00
|
|
|
|
2017-06-15 03:28:47 +00:00
|
|
|
#if defined(CONFIG_PCI) && !defined(CONFIG_SCSI_AHCI_PLAT) && \
|
|
|
|
!defined(CONFIG_DM_SCSI)
|
2016-05-01 17:36:09 +00:00
|
|
|
void scsi_init(void)
|
|
|
|
{
|
|
|
|
int busdevfunc = -1;
|
|
|
|
int i;
|
|
|
|
/*
|
|
|
|
* Find a device from the list, this driver will support a single
|
|
|
|
* controller.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < ARRAY_SIZE(scsi_device_list); i++) {
|
|
|
|
/* get PCI Device ID */
|
|
|
|
#ifdef CONFIG_DM_PCI
|
|
|
|
struct udevice *dev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = dm_pci_find_device(scsi_device_list[i].vendor,
|
|
|
|
scsi_device_list[i].device, 0, &dev);
|
|
|
|
if (!ret) {
|
|
|
|
busdevfunc = dm_pci_get_bdf(dev);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
busdevfunc = pci_find_device(scsi_device_list[i].vendor,
|
|
|
|
scsi_device_list[i].device,
|
|
|
|
0);
|
|
|
|
#endif
|
|
|
|
if (busdevfunc != -1)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (busdevfunc == -1) {
|
|
|
|
printf("Error: SCSI Controller(s) ");
|
|
|
|
for (i = 0; i < ARRAY_SIZE(scsi_device_list); i++) {
|
|
|
|
printf("%04X:%04X ",
|
|
|
|
scsi_device_list[i].vendor,
|
|
|
|
scsi_device_list[i].device);
|
|
|
|
}
|
|
|
|
printf("not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
|
|
else {
|
|
|
|
printf("SCSI Controller (%04X,%04X) found (%d:%d:%d)\n",
|
|
|
|
scsi_device_list[i].vendor,
|
|
|
|
scsi_device_list[i].device,
|
|
|
|
(busdevfunc >> 16) & 0xFF,
|
|
|
|
(busdevfunc >> 11) & 0x1F,
|
|
|
|
(busdevfunc >> 8) & 0x7);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
bootstage_start(BOOTSTAGE_ID_ACCUM_SCSI, "ahci");
|
|
|
|
scsi_low_level_init(busdevfunc);
|
2017-06-15 03:28:41 +00:00
|
|
|
scsi_scan(true);
|
2016-05-01 17:36:09 +00:00
|
|
|
bootstage_accum(BOOTSTAGE_ID_ACCUM_SCSI);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* copy src to dest, skipping leading and trailing blanks
|
|
|
|
* and null terminate the string
|
|
|
|
*/
|
2016-11-30 10:53:43 +00:00
|
|
|
static void scsi_ident_cpy(unsigned char *dest, unsigned char *src,
|
|
|
|
unsigned int len)
|
2016-05-01 17:36:09 +00:00
|
|
|
{
|
|
|
|
int start, end;
|
|
|
|
|
|
|
|
start = 0;
|
|
|
|
while (start < len) {
|
|
|
|
if (src[start] != ' ')
|
|
|
|
break;
|
|
|
|
start++;
|
|
|
|
}
|
|
|
|
end = len-1;
|
|
|
|
while (end > start) {
|
|
|
|
if (src[end] != ' ')
|
|
|
|
break;
|
|
|
|
end--;
|
|
|
|
}
|
|
|
|
for (; start <= end; start++)
|
|
|
|
*dest ++= src[start];
|
|
|
|
*dest = '\0';
|
|
|
|
}
|
|
|
|
|
2017-06-15 03:28:40 +00:00
|
|
|
static int scsi_read_capacity(struct udevice *dev, struct scsi_cmd *pccb,
|
|
|
|
lbaint_t *capacity, unsigned long *blksz)
|
2016-05-01 17:36:09 +00:00
|
|
|
{
|
|
|
|
*capacity = 0;
|
|
|
|
|
|
|
|
memset(pccb->cmd, '\0', sizeof(pccb->cmd));
|
|
|
|
pccb->cmd[0] = SCSI_RD_CAPAC10;
|
|
|
|
pccb->cmd[1] = pccb->lun << 5;
|
|
|
|
pccb->cmdlen = 10;
|
|
|
|
pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
|
|
|
|
|
|
|
|
pccb->datalen = 8;
|
2017-06-15 03:28:44 +00:00
|
|
|
if (scsi_exec(dev, pccb))
|
2016-05-01 17:36:09 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
*capacity = ((lbaint_t)pccb->pdata[0] << 24) |
|
|
|
|
((lbaint_t)pccb->pdata[1] << 16) |
|
|
|
|
((lbaint_t)pccb->pdata[2] << 8) |
|
|
|
|
((lbaint_t)pccb->pdata[3]);
|
|
|
|
|
|
|
|
if (*capacity != 0xffffffff) {
|
|
|
|
/* Read capacity (10) was sufficient for this drive. */
|
|
|
|
*blksz = ((unsigned long)pccb->pdata[4] << 24) |
|
|
|
|
((unsigned long)pccb->pdata[5] << 16) |
|
|
|
|
((unsigned long)pccb->pdata[6] << 8) |
|
|
|
|
((unsigned long)pccb->pdata[7]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read capacity (10) was insufficient. Use read capacity (16). */
|
|
|
|
memset(pccb->cmd, '\0', sizeof(pccb->cmd));
|
|
|
|
pccb->cmd[0] = SCSI_RD_CAPAC16;
|
|
|
|
pccb->cmd[1] = 0x10;
|
|
|
|
pccb->cmdlen = 16;
|
|
|
|
pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
|
|
|
|
|
|
|
|
pccb->datalen = 16;
|
2019-10-15 12:54:35 +00:00
|
|
|
pccb->dma_dir = DMA_FROM_DEVICE;
|
2017-06-15 03:28:44 +00:00
|
|
|
if (scsi_exec(dev, pccb))
|
2016-05-01 17:36:09 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
*capacity = ((uint64_t)pccb->pdata[0] << 56) |
|
|
|
|
((uint64_t)pccb->pdata[1] << 48) |
|
|
|
|
((uint64_t)pccb->pdata[2] << 40) |
|
|
|
|
((uint64_t)pccb->pdata[3] << 32) |
|
|
|
|
((uint64_t)pccb->pdata[4] << 24) |
|
|
|
|
((uint64_t)pccb->pdata[5] << 16) |
|
|
|
|
((uint64_t)pccb->pdata[6] << 8) |
|
|
|
|
((uint64_t)pccb->pdata[7]);
|
|
|
|
|
|
|
|
*blksz = ((uint64_t)pccb->pdata[8] << 56) |
|
|
|
|
((uint64_t)pccb->pdata[9] << 48) |
|
|
|
|
((uint64_t)pccb->pdata[10] << 40) |
|
|
|
|
((uint64_t)pccb->pdata[11] << 32) |
|
|
|
|
((uint64_t)pccb->pdata[12] << 24) |
|
|
|
|
((uint64_t)pccb->pdata[13] << 16) |
|
|
|
|
((uint64_t)pccb->pdata[14] << 8) |
|
|
|
|
((uint64_t)pccb->pdata[15]);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Some setup (fill-in) routines
|
|
|
|
*/
|
2017-06-15 03:28:30 +00:00
|
|
|
static void scsi_setup_test_unit_ready(struct scsi_cmd *pccb)
|
2016-05-01 17:36:09 +00:00
|
|
|
{
|
|
|
|
pccb->cmd[0] = SCSI_TST_U_RDY;
|
|
|
|
pccb->cmd[1] = pccb->lun << 5;
|
|
|
|
pccb->cmd[2] = 0;
|
|
|
|
pccb->cmd[3] = 0;
|
|
|
|
pccb->cmd[4] = 0;
|
|
|
|
pccb->cmd[5] = 0;
|
|
|
|
pccb->cmdlen = 6;
|
|
|
|
pccb->msgout[0] = SCSI_IDENTIFY; /* NOT USED */
|
|
|
|
}
|
|
|
|
|
2016-11-30 11:50:58 +00:00
|
|
|
/**
|
|
|
|
* scsi_init_dev_desc_priv - initialize only SCSI specific blk_desc properties
|
|
|
|
*
|
|
|
|
* @dev_desc: Block device description pointer
|
|
|
|
*/
|
|
|
|
static void scsi_init_dev_desc_priv(struct blk_desc *dev_desc)
|
2016-11-18 14:27:00 +00:00
|
|
|
{
|
|
|
|
dev_desc->target = 0xff;
|
|
|
|
dev_desc->lun = 0xff;
|
|
|
|
dev_desc->log2blksz =
|
|
|
|
LOG2_INVALID(typeof(dev_desc->log2blksz));
|
|
|
|
dev_desc->type = DEV_TYPE_UNKNOWN;
|
|
|
|
dev_desc->vendor[0] = 0;
|
|
|
|
dev_desc->product[0] = 0;
|
|
|
|
dev_desc->revision[0] = 0;
|
|
|
|
dev_desc->removable = false;
|
|
|
|
}
|
|
|
|
|
2016-09-08 13:06:45 +00:00
|
|
|
#if !defined(CONFIG_DM_SCSI)
|
2016-11-30 11:50:58 +00:00
|
|
|
/**
|
|
|
|
* scsi_init_dev_desc - initialize all SCSI specific blk_desc properties
|
|
|
|
*
|
|
|
|
* @dev_desc: Block device description pointer
|
|
|
|
* @devnum: Device number
|
|
|
|
*/
|
|
|
|
static void scsi_init_dev_desc(struct blk_desc *dev_desc, int devnum)
|
|
|
|
{
|
|
|
|
dev_desc->lba = 0;
|
|
|
|
dev_desc->blksz = 0;
|
|
|
|
dev_desc->if_type = IF_TYPE_SCSI;
|
|
|
|
dev_desc->devnum = devnum;
|
|
|
|
dev_desc->part_type = PART_TYPE_UNKNOWN;
|
|
|
|
|
|
|
|
scsi_init_dev_desc_priv(dev_desc);
|
|
|
|
}
|
2016-09-08 13:06:45 +00:00
|
|
|
#endif
|
2016-11-18 15:14:24 +00:00
|
|
|
|
2016-11-18 14:42:13 +00:00
|
|
|
/**
|
|
|
|
* scsi_detect_dev - Detect scsi device
|
|
|
|
*
|
2016-11-18 15:14:24 +00:00
|
|
|
* @target: target id
|
2017-04-07 11:42:06 +00:00
|
|
|
* @lun: target lun
|
2016-11-18 14:42:13 +00:00
|
|
|
* @dev_desc: block device description
|
|
|
|
*
|
|
|
|
* The scsi_detect_dev detects and fills a dev_desc structure when the device is
|
2017-04-07 11:42:06 +00:00
|
|
|
* detected.
|
2016-11-18 14:42:13 +00:00
|
|
|
*
|
|
|
|
* Return: 0 on success, error value otherwise
|
|
|
|
*/
|
2017-06-15 03:28:40 +00:00
|
|
|
static int scsi_detect_dev(struct udevice *dev, int target, int lun,
|
|
|
|
struct blk_desc *dev_desc)
|
2016-11-18 14:42:13 +00:00
|
|
|
{
|
|
|
|
unsigned char perq, modi;
|
|
|
|
lbaint_t capacity;
|
|
|
|
unsigned long blksz;
|
2017-06-15 03:28:30 +00:00
|
|
|
struct scsi_cmd *pccb = (struct scsi_cmd *)&tempccb;
|
2019-10-15 12:54:34 +00:00
|
|
|
int count, err;
|
2016-11-18 14:42:13 +00:00
|
|
|
|
2016-11-18 15:14:24 +00:00
|
|
|
pccb->target = target;
|
2017-04-07 11:42:06 +00:00
|
|
|
pccb->lun = lun;
|
2016-11-18 14:42:13 +00:00
|
|
|
pccb->pdata = (unsigned char *)&tempbuff;
|
|
|
|
pccb->datalen = 512;
|
2019-10-15 12:54:35 +00:00
|
|
|
pccb->dma_dir = DMA_FROM_DEVICE;
|
2016-11-18 14:42:13 +00:00
|
|
|
scsi_setup_inquiry(pccb);
|
2017-06-15 03:28:44 +00:00
|
|
|
if (scsi_exec(dev, pccb)) {
|
2016-11-18 14:42:13 +00:00
|
|
|
if (pccb->contr_stat == SCSI_SEL_TIME_OUT) {
|
|
|
|
/*
|
|
|
|
* selection timeout => assuming no
|
|
|
|
* device present
|
|
|
|
*/
|
|
|
|
debug("Selection timeout ID %d\n",
|
|
|
|
pccb->target);
|
|
|
|
return -ETIMEDOUT;
|
|
|
|
}
|
|
|
|
scsi_print_error(pccb);
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
perq = tempbuff[0];
|
|
|
|
modi = tempbuff[1];
|
|
|
|
if ((perq & 0x1f) == 0x1f)
|
|
|
|
return -ENODEV; /* skip unknown devices */
|
|
|
|
if ((modi & 0x80) == 0x80) /* drive is removable */
|
|
|
|
dev_desc->removable = true;
|
|
|
|
/* get info for this device */
|
|
|
|
scsi_ident_cpy((unsigned char *)dev_desc->vendor,
|
|
|
|
&tempbuff[8], 8);
|
|
|
|
scsi_ident_cpy((unsigned char *)dev_desc->product,
|
|
|
|
&tempbuff[16], 16);
|
|
|
|
scsi_ident_cpy((unsigned char *)dev_desc->revision,
|
|
|
|
&tempbuff[32], 4);
|
|
|
|
dev_desc->target = pccb->target;
|
|
|
|
dev_desc->lun = pccb->lun;
|
|
|
|
|
2019-10-15 12:54:34 +00:00
|
|
|
for (count = 0; count < 3; count++) {
|
|
|
|
pccb->datalen = 0;
|
|
|
|
scsi_setup_test_unit_ready(pccb);
|
|
|
|
err = scsi_exec(dev, pccb);
|
|
|
|
if (!err)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (err) {
|
2016-11-18 14:42:13 +00:00
|
|
|
if (dev_desc->removable) {
|
|
|
|
dev_desc->type = perq;
|
|
|
|
goto removable;
|
|
|
|
}
|
|
|
|
scsi_print_error(pccb);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2017-06-15 03:28:40 +00:00
|
|
|
if (scsi_read_capacity(dev, pccb, &capacity, &blksz)) {
|
2016-11-18 14:42:13 +00:00
|
|
|
scsi_print_error(pccb);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
dev_desc->lba = capacity;
|
|
|
|
dev_desc->blksz = blksz;
|
|
|
|
dev_desc->log2blksz = LOG2(dev_desc->blksz);
|
|
|
|
dev_desc->type = perq;
|
|
|
|
removable:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-01 17:36:09 +00:00
|
|
|
/*
|
|
|
|
* (re)-scan the scsi bus and reports scsi device info
|
|
|
|
* to the user if mode = 1
|
|
|
|
*/
|
2016-09-08 13:06:45 +00:00
|
|
|
#if defined(CONFIG_DM_SCSI)
|
2017-06-15 03:28:41 +00:00
|
|
|
static int do_scsi_scan_one(struct udevice *dev, int id, int lun, bool verbose)
|
2017-04-24 09:51:26 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct udevice *bdev;
|
|
|
|
struct blk_desc bd;
|
|
|
|
struct blk_desc *bdesc;
|
|
|
|
char str[10];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* detect the scsi driver to get information about its geometry (block
|
|
|
|
* size, number of blocks) and other parameters (ids, type, ...)
|
|
|
|
*/
|
|
|
|
scsi_init_dev_desc_priv(&bd);
|
2017-06-15 03:28:40 +00:00
|
|
|
if (scsi_detect_dev(dev, id, lun, &bd))
|
2017-04-24 09:51:26 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create only one block device and do detection
|
|
|
|
* to make sure that there won't be a lot of
|
|
|
|
* block devices created
|
|
|
|
*/
|
|
|
|
snprintf(str, sizeof(str), "id%dlun%d", id, lun);
|
|
|
|
ret = blk_create_devicef(dev, "scsi_blk", str, IF_TYPE_SCSI, -1,
|
2017-06-09 14:45:18 +00:00
|
|
|
bd.blksz, bd.lba, &bdev);
|
2017-04-24 09:51:26 +00:00
|
|
|
if (ret) {
|
|
|
|
debug("Can't create device\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-12-03 23:55:18 +00:00
|
|
|
bdesc = dev_get_uclass_plat(bdev);
|
2017-04-24 09:51:26 +00:00
|
|
|
bdesc->target = id;
|
|
|
|
bdesc->lun = lun;
|
|
|
|
bdesc->removable = bd.removable;
|
|
|
|
bdesc->type = bd.type;
|
|
|
|
memcpy(&bdesc->vendor, &bd.vendor, sizeof(bd.vendor));
|
|
|
|
memcpy(&bdesc->product, &bd.product, sizeof(bd.product));
|
|
|
|
memcpy(&bdesc->revision, &bd.revision, sizeof(bd.revision));
|
2021-04-07 07:12:36 +00:00
|
|
|
if (IS_ENABLED(CONFIG_SYS_BIG_ENDIAN)) {
|
|
|
|
ata_swap_buf_le16((u16 *)&bdesc->vendor, sizeof(bd.vendor) / 2);
|
|
|
|
ata_swap_buf_le16((u16 *)&bdesc->product, sizeof(bd.product) / 2);
|
|
|
|
ata_swap_buf_le16((u16 *)&bdesc->revision, sizeof(bd.revision) / 2);
|
|
|
|
}
|
2017-04-24 09:51:26 +00:00
|
|
|
|
2017-06-15 03:28:41 +00:00
|
|
|
if (verbose) {
|
2019-02-05 17:06:24 +00:00
|
|
|
printf(" Device %d: ", bdesc->devnum);
|
2017-04-24 09:51:26 +00:00
|
|
|
dev_print(bdesc);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-15 03:28:45 +00:00
|
|
|
int scsi_scan_dev(struct udevice *dev, bool verbose)
|
|
|
|
{
|
2020-12-03 23:55:23 +00:00
|
|
|
struct scsi_plat *uc_plat; /* scsi controller plat */
|
2017-06-15 03:28:45 +00:00
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
int lun;
|
|
|
|
|
|
|
|
/* probe SCSI controller driver */
|
|
|
|
ret = device_probe(dev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2020-12-03 23:55:18 +00:00
|
|
|
/* Get controller plat */
|
|
|
|
uc_plat = dev_get_uclass_plat(dev);
|
2017-06-15 03:28:45 +00:00
|
|
|
|
|
|
|
for (i = 0; i < uc_plat->max_id; i++)
|
|
|
|
for (lun = 0; lun < uc_plat->max_lun; lun++)
|
|
|
|
do_scsi_scan_one(dev, i, lun, verbose);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-15 03:28:41 +00:00
|
|
|
int scsi_scan(bool verbose)
|
2016-09-08 13:06:45 +00:00
|
|
|
{
|
|
|
|
struct uclass *uc;
|
|
|
|
struct udevice *dev; /* SCSI controller */
|
|
|
|
int ret;
|
|
|
|
|
2017-06-15 03:28:41 +00:00
|
|
|
if (verbose)
|
2016-09-08 13:06:45 +00:00
|
|
|
printf("scanning bus for devices...\n");
|
|
|
|
|
scsi: dm: Unbind all scsi based block devices before new scan
New scan should unbind all block devices not to be listed again.
Without this patch if scsi reset or scan is called new block devices are
created which point to the same id and lun.
For example:
ZynqMP> scsi scan
scsi_scan: if_type=2, devnum=0: sdhci@ff170000.blk, 6, 0
scsi_scan: if_type=2, devnum=0: ahci@fd0c0000.id1lun0, 2, 0
scsi_scan: if_type=2, devnum=0: ahci@fd0c0000.id1lun0, 2, 1
scsi_scan: if_type=2, devnum=0: ahci@fd0c0000.id1lun0, 2, 2
scsi_scan: if_type=2, devnum=0: ahci@fd0c0000.id1lun0, 2, 3
scsi_scan: if_type=2, devnum=0: ahci@fd0c0000.id1lun0, 2, 4
scanning bus for devices...
Device 0: (1:0) Vendor: ATA Prod.: KINGSTON SVP200S Rev: 501A
Type: Hard Disk
Capacity: 57241.8 MB = 55.9 GB (117231408 x 512)
Reported-by: Ken Ma <make@marvell.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Acked-by: Simon Glass <sjg@chromium.org>
2017-01-02 08:40:09 +00:00
|
|
|
blk_unbind_all(IF_TYPE_SCSI);
|
|
|
|
|
2016-09-08 13:06:45 +00:00
|
|
|
ret = uclass_get(UCLASS_SCSI, &uc);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
uclass_foreach_dev(dev, uc) {
|
2017-06-15 03:28:45 +00:00
|
|
|
ret = scsi_scan_dev(dev, verbose);
|
2016-09-08 13:06:45 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2017-06-15 03:28:41 +00:00
|
|
|
int scsi_scan(bool verbose)
|
2016-05-01 17:36:09 +00:00
|
|
|
{
|
2016-11-18 14:42:13 +00:00
|
|
|
unsigned char i, lun;
|
|
|
|
int ret;
|
2016-05-01 17:36:09 +00:00
|
|
|
|
2017-06-15 03:28:41 +00:00
|
|
|
if (verbose)
|
2016-05-01 17:36:09 +00:00
|
|
|
printf("scanning bus for devices...\n");
|
2016-11-18 14:27:00 +00:00
|
|
|
for (i = 0; i < CONFIG_SYS_SCSI_MAX_DEVICE; i++)
|
|
|
|
scsi_init_dev_desc(&scsi_dev_desc[i], i);
|
|
|
|
|
2016-05-01 17:36:09 +00:00
|
|
|
scsi_max_devs = 0;
|
|
|
|
for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) {
|
|
|
|
for (lun = 0; lun < CONFIG_SYS_SCSI_MAX_LUN; lun++) {
|
2019-02-05 17:06:24 +00:00
|
|
|
struct blk_desc *bdesc = &scsi_dev_desc[scsi_max_devs];
|
|
|
|
|
|
|
|
ret = scsi_detect_dev(NULL, i, lun, bdesc);
|
2016-11-18 14:42:13 +00:00
|
|
|
if (ret)
|
2016-05-01 17:36:09 +00:00
|
|
|
continue;
|
2019-02-05 17:06:24 +00:00
|
|
|
part_init(bdesc);
|
2016-11-18 14:42:13 +00:00
|
|
|
|
2017-06-15 03:28:41 +00:00
|
|
|
if (verbose) {
|
2019-02-05 17:06:24 +00:00
|
|
|
printf(" Device %d: ", bdesc->devnum);
|
|
|
|
dev_print(bdesc);
|
2017-06-15 03:28:41 +00:00
|
|
|
}
|
2016-05-01 17:36:09 +00:00
|
|
|
scsi_max_devs++;
|
|
|
|
} /* next LUN */
|
|
|
|
}
|
|
|
|
if (scsi_max_devs > 0)
|
|
|
|
scsi_curr_dev = 0;
|
|
|
|
else
|
|
|
|
scsi_curr_dev = -1;
|
|
|
|
|
|
|
|
printf("Found %d device(s).\n", scsi_max_devs);
|
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2017-08-03 18:22:10 +00:00
|
|
|
env_set_ulong("scsidevs", scsi_max_devs);
|
2016-05-01 17:36:09 +00:00
|
|
|
#endif
|
2016-11-30 11:12:31 +00:00
|
|
|
return 0;
|
2016-05-01 17:36:09 +00:00
|
|
|
}
|
2016-09-08 13:06:45 +00:00
|
|
|
#endif
|
2016-05-01 17:36:09 +00:00
|
|
|
|
2016-05-01 17:36:24 +00:00
|
|
|
#ifdef CONFIG_BLK
|
|
|
|
static const struct blk_ops scsi_blk_ops = {
|
|
|
|
.read = scsi_read,
|
|
|
|
.write = scsi_write,
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(scsi_blk) = {
|
|
|
|
.name = "scsi_blk",
|
|
|
|
.id = UCLASS_BLK,
|
|
|
|
.ops = &scsi_blk_ops,
|
|
|
|
};
|
|
|
|
#else
|
2016-05-01 17:36:09 +00:00
|
|
|
U_BOOT_LEGACY_BLK(scsi) = {
|
2016-06-01 13:11:24 +00:00
|
|
|
.if_typename = "scsi",
|
2016-05-01 17:36:09 +00:00
|
|
|
.if_type = IF_TYPE_SCSI,
|
|
|
|
.max_devs = CONFIG_SYS_SCSI_MAX_DEVICE,
|
|
|
|
.desc = scsi_dev_desc,
|
|
|
|
};
|
2016-05-01 17:36:24 +00:00
|
|
|
#endif
|