mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Andrey Smirnov <andrew.smirnov@gmail.com>
To: barebox@lists.infradead.org
Cc: Andrey Smirnov <andrew.smirnov@gmail.com>
Subject: [PATCH 18/26] usb: storage: Introduce usb_stor_transport()
Date: Thu,  7 Mar 2019 00:00:28 -0800	[thread overview]
Message-ID: <20190307080036.28028-19-andrew.smirnov@gmail.com> (raw)
In-Reply-To: <20190307080036.28028-1-andrew.smirnov@gmail.com>

Move retry logic found in all of the low-level usb_stor_* functions
into a standalone subroutine and convert the rest of the code to use
it.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
 drivers/usb/storage/usb.c | 213 +++++++++++++++++++++-----------------
 1 file changed, 117 insertions(+), 96 deletions(-)

diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c
index faf9ec2b4..5a5d075ec 100644
--- a/drivers/usb/storage/usb.c
+++ b/drivers/usb/storage/usb.c
@@ -34,41 +34,7 @@
  * USB Storage routines
  ***********************************************************************/
 
-static int usb_stor_inquiry(struct us_blk_dev *usb_blkdev)
-{
-	struct us_data *us = usb_blkdev->us;
-	struct device_d *dev = &us->pusb_dev->dev;
-	int retries, result;
-	u8 cmd[6];
-	const u32 datalen = 36;
-	u8 *data = xzalloc(datalen);
-
-	retries = 3;
-	do {
-		dev_dbg(dev, "SCSI_INQUIRY\n");
-		memset(cmd, 0, sizeof(cmd));
-		cmd[0] = SCSI_INQUIRY;
-		cmd[3] = (u8)(datalen >> 8);
-		cmd[4] = (u8)(datalen >> 0);
-		result = us->transport(usb_blkdev, cmd, sizeof(cmd),
-				       data, datalen);
-		dev_dbg(dev, "SCSI_INQUIRY returns %d\n", result);
-		if (result == USB_STOR_TRANSPORT_GOOD) {
-			dev_dbg(dev, "Peripheral type: %x, removable: %x\n",
-				data[0], (data[1] >> 7));
-			dev_dbg(dev, "ISO ver: %x, resp format: %x\n",
-				data[2], data[3]);
-			dev_dbg(dev, "Vendor/product/rev: %28s\n",
-				&data[8]);
-			// TODO:  process and store device info
-			break;
-		}
-	} while (retries--);
-
-	free(data);
-
-	return result ? -ENODEV : 0;
-}
+#define USB_STOR_NO_REQUEST_SENSE	-1
 
 static int usb_stor_request_sense(struct us_blk_dev *usb_blkdev)
 {
@@ -92,92 +58,147 @@ static int usb_stor_request_sense(struct us_blk_dev *usb_blkdev)
 	return 0;
 }
 
-static int usb_stor_test_unit_ready(struct us_blk_dev *usb_blkdev)
+static const char *usb_stor_opcode_name(u8 opcode)
+{
+	switch (opcode) {
+	case SCSI_INQUIRY:
+		return "SCSI_INQUIRY";
+	case SCSI_TST_U_RDY:
+		return "SCSI_TST_U_RDY";
+	case SCSI_RD_CAPAC:
+		return "SCSI_RD_CAPAC";
+	case SCSI_READ10:
+		return "SCSI_READ10";
+	case SCSI_WRITE10:
+		return "SCSI_WRITE10";
+	};
+
+	return "UNKNOWN";
+}
+
+static int usb_stor_transport(struct us_blk_dev *usb_blkdev,
+			      const u8 *cmd, u8 cmdlen,
+			      void *data, u32 datalen,
+			      int retries, int request_sense_delay_ms)
 {
 	struct us_data *us = usb_blkdev->us;
 	struct device_d *dev = &us->pusb_dev->dev;
-	u8 cmd[12];
-	int retries, result;
-
-	retries = 10;
-	do {
-		dev_dbg(dev, "SCSI_TST_U_RDY\n");
-		memset(cmd, 0, sizeof(cmd));
-		cmd[0] = SCSI_TST_U_RDY;
-		result = us->transport(usb_blkdev, cmd, sizeof(cmd),
-				       NULL, 0);
-		dev_dbg(dev, "SCSI_TST_U_RDY returns %d\n", result);
-		if (result == USB_STOR_TRANSPORT_GOOD)
+	int i, ret;
+
+
+	for (i = 0; i < retries; i++) {
+		dev_dbg(dev, "%s\n", usb_stor_opcode_name(cmd[0]));
+		ret = us->transport(usb_blkdev, cmd, cmdlen, data, datalen);
+		dev_dbg(dev, "%s returns %d\n", usb_stor_opcode_name(cmd[0]),
+			ret);
+		if (ret == USB_STOR_TRANSPORT_GOOD)
 			return 0;
+
+		if (request_sense_delay_ms == USB_STOR_NO_REQUEST_SENSE)
+			continue;
+
 		usb_stor_request_sense(usb_blkdev);
-		mdelay(100);
-	} while (retries--);
 
-	return -ENODEV;
+		if (request_sense_delay_ms)
+			mdelay(request_sense_delay_ms);
+	}
+
+	return -EIO;
+}
+
+static int usb_stor_inquiry(struct us_blk_dev *usb_blkdev)
+{
+	struct device_d *dev = &usb_blkdev->us->pusb_dev->dev;
+	int ret;
+	u8 cmd[6];
+	const u32 datalen = 36;
+	u8 *data = xzalloc(datalen);
+
+	memset(cmd, 0, sizeof(cmd));
+	cmd[0] = SCSI_INQUIRY;
+	cmd[3] = (u8)(datalen >> 8);
+	cmd[4] = (u8)(datalen >> 0);
+
+	ret = usb_stor_transport(usb_blkdev, cmd, sizeof(cmd), data, datalen,
+				 3, USB_STOR_NO_REQUEST_SENSE);
+	if (ret < 0) {
+		ret = -ENODEV;
+		goto exit;
+	}
+
+	dev_dbg(dev, "Peripheral type: %x, removable: %x\n",
+		data[0], (data[1] >> 7));
+	dev_dbg(dev, "ISO ver: %x, resp format: %x\n",
+		data[2], data[3]);
+	dev_dbg(dev, "Vendor/product/rev: %28s\n",
+		&data[8]);
+	// TODO:  process and store device info
+
+exit:
+	free(data);
+	return ret;
+}
+
+static int usb_stor_test_unit_ready(struct us_blk_dev *usb_blkdev)
+{
+	u8 cmd[12];
+	int ret;
+
+	memset(cmd, 0, sizeof(cmd));
+	cmd[0] = SCSI_TST_U_RDY;
+
+	ret = usb_stor_transport(usb_blkdev, cmd, sizeof(cmd), NULL, 0,
+				 10, 100);
+	if (ret < 0)
+		return -ENODEV;
+
+	return 0;
 }
 
 static int usb_stor_read_capacity(struct us_blk_dev *usb_blkdev,
 				  u32 *last_lba, u32 *block_length)
 {
-	struct us_data *us = usb_blkdev->us;
-	struct device_d *dev = &us->pusb_dev->dev;
-	int retries, result;
+	struct device_d *dev = &usb_blkdev->us->pusb_dev->dev;
 	const u32 datalen = 8;
 	u32 *data = xzalloc(datalen);
 	u8 cmd[10];
+	int ret;
 
-	retries = 3;
-	do {
-		dev_dbg(dev, "SCSI_RD_CAPAC\n");
-		memset(cmd, 0, sizeof(cmd));
-		cmd[0] = SCSI_RD_CAPAC;
-
-		result = us->transport(usb_blkdev, cmd, sizeof(cmd), data,
-				       datalen);
-		dev_dbg(dev, "SCSI_RD_CAPAC returns %d\n", result);
-
-		if (result == USB_STOR_TRANSPORT_GOOD) {
-			dev_dbg(dev, "Read Capacity returns: 0x%x, 0x%x\n",
-				data[0], data[1]);
-			*last_lba = be32_to_cpu(data[0]);
-			*block_length = be32_to_cpu(data[1]);
-			break;
-		}
-	} while (retries--);
+	memset(cmd, 0, sizeof(cmd));
+	cmd[0] = SCSI_RD_CAPAC;
 
-	free(data);
+	ret = usb_stor_transport(usb_blkdev, cmd, sizeof(cmd), data, datalen,
+				 3, USB_STOR_NO_REQUEST_SENSE);
+	if (ret < 0)
+		goto exit;
+
+	dev_dbg(dev, "Read Capacity returns: 0x%x, 0x%x\n",
+		data[0], data[1]);
+	*last_lba = be32_to_cpu(data[0]);
+	*block_length = be32_to_cpu(data[1]);
 
-	return result ? -EIO : 0;
+exit:
+	free(data);
+	return ret;
 }
 
 static int usb_stor_io_10(struct us_blk_dev *usb_blkdev, u8 opcode,
 			  unsigned long start, u8 *data,
 			  unsigned short blocks)
 {
-	struct us_data *us = usb_blkdev->us;
-	int retries, result;
-	const u32 datalen = blocks * SECTOR_SIZE;
 	u8 cmd[10];
 
-	retries = 2;
-	do {
-		memset(cmd, 0, sizeof(cmd));
-
-		cmd[0] = opcode;
-		cmd[2] = (u8)(start >> 24);
-		cmd[3] = (u8)(start >> 16);
-		cmd[4] = (u8)(start >> 8);
-		cmd[5] = (u8)(start >> 0);
-		cmd[7] = (u8)(blocks >> 8);
-		cmd[8] = (u8)(blocks >> 0);
-		result = us->transport(usb_blkdev, cmd, sizeof(cmd),
-				       data, datalen);
-		if (result == USB_STOR_TRANSPORT_GOOD)
-			return 0;
-		usb_stor_request_sense(usb_blkdev);
-	} while (retries--);
-
-	return -EIO;
+	memset(cmd, 0, sizeof(cmd));
+	cmd[0] = opcode;
+	cmd[2] = (u8)(start >> 24);
+	cmd[3] = (u8)(start >> 16);
+	cmd[4] = (u8)(start >> 8);
+	cmd[5] = (u8)(start >> 0);
+	cmd[7] = (u8)(blocks >> 8);
+	cmd[8] = (u8)(blocks >> 0);
+
+	return usb_stor_transport(usb_blkdev, cmd, sizeof(cmd), data,
+				  blocks * SECTOR_SIZE, 2, 0);
 }
 
 /***********************************************************************
-- 
2.20.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  parent reply	other threads:[~2019-03-07  8:01 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-07  8:00 [PATCH 00/26] USB storage improvements Andrey Smirnov
2019-03-07  8:00 ` [PATCH 01/26] usb: storage: Simplify memory allocation in usb_stor_probe() Andrey Smirnov
2019-03-07  8:00 ` [PATCH 02/26] usb: storage: Replace custom debug tracing with dev_dbg Andrey Smirnov
2019-03-07  8:00 ` [PATCH 03/26] usb: storage: Don't use "unsigned long" for 32-bit values Andrey Smirnov
2019-03-07  8:00 ` [PATCH 04/26] usb: storage: Make usb_stor_read_capacity() a standalone function Andrey Smirnov
2019-03-07  8:00 ` [PATCH 05/26] usb: storage: Make usb_stor_inquiry() " Andrey Smirnov
2019-03-07  8:00 ` [PATCH 06/26] usb: storage: Make usb_stor_test_unit_ready() " Andrey Smirnov
2019-03-07  8:00 ` [PATCH 07/26] usb: storage: Make usb_stor_read_10() " Andrey Smirnov
2019-03-07  8:00 ` [PATCH 08/26] usb: storage: Make usb_stor_write_10() " Andrey Smirnov
2019-03-07  8:00 ` [PATCH 09/26] usb: storage: Drop extra call to transport in usb_stor_write_10() Andrey Smirnov
2019-03-07  8:00 ` [PATCH 10/26] usb: storage: Share code for READ(10) and WRITE(10) Andrey Smirnov
2019-03-07  8:00 ` [PATCH 11/26] usb: storage: Make usb_stor_request_sense() a standalone function Andrey Smirnov
2019-03-07  8:00 ` [PATCH 12/26] usb: storage: Remove unused variables Andrey Smirnov
2019-03-07  8:00 ` [PATCH 13/26] usb: storage: Drop struct SCSI_cmd_block Andrey Smirnov
2019-03-07  8:00 ` [PATCH 14/26] usb: hub: Do not include <scsi.h> Andrey Smirnov
2019-03-07  8:00 ` [PATCH 15/26] ata: ahci: " Andrey Smirnov
2019-03-07  8:00 ` [PATCH 16/26] usb: storage: Drop unused fields in struct us_data Andrey Smirnov
2019-03-07  8:00 ` [PATCH 17/26] usb: storage: Drop unused us_blkdev_list Andrey Smirnov
2019-03-07  8:00 ` Andrey Smirnov [this message]
2019-03-07  8:00 ` [PATCH 19/26] usb: storage: Use put_unaligned_be* helpers Andrey Smirnov
2019-03-07  8:00 ` [PATCH 20/26] usb: Drop usb_disable_asynch() Andrey Smirnov
2019-03-07  8:00 ` [PATCH 21/26] usb: storage: Drop unnecessary check in usb_stor_blk_io() Andrey Smirnov
2019-03-07  8:00 ` [PATCH 22/26] usb: storage: Drop needless macro Andrey Smirnov
2019-03-07  8:00 ` [PATCH 23/26] usb: storage: Use simple boolean to speficy read vs. write operation Andrey Smirnov
2019-03-07  8:00 ` [PATCH 24/26] usb: storage: Simplify I/O loop in usb_stor_blk_io() Andrey Smirnov
2019-03-07  8:00 ` [PATCH 25/26] usb: storage: Drop unnecessary assignment Andrey Smirnov
2019-03-07  8:00 ` [PATCH 26/26] usb: storage: Inline usb_limit_blk_cnt() Andrey Smirnov
2019-03-11  7:11 ` [PATCH 00/26] USB storage improvements Sascha Hauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190307080036.28028-19-andrew.smirnov@gmail.com \
    --to=andrew.smirnov@gmail.com \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox