123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- /*
- * Copyright (c) 2022, sakumisu
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include "usbh_core.h"
- #include "usbh_msc.h"
- #include "usb_scsi.h"
- #undef USB_DBG_TAG
- #define USB_DBG_TAG "usbh_msc"
- #include "usb_log.h"
- #define DEV_FORMAT "/dev/sd%c"
- #ifndef CONFIG_USBHOST_MSC_READY_CHECK_TIMES
- #define CONFIG_USBHOST_MSC_READY_CHECK_TIMES 10
- #endif
- USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_msc_cbw_csw[CONFIG_USBHOST_MAX_MSC_CLASS][USB_ALIGN_UP(64, CONFIG_USB_ALIGN_SIZE)];
- USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_msc_buf[CONFIG_USBHOST_MAX_MSC_CLASS][USB_ALIGN_UP(64, CONFIG_USB_ALIGN_SIZE)];
- static struct usbh_msc g_msc_class[CONFIG_USBHOST_MAX_MSC_CLASS];
- static uint32_t g_devinuse = 0;
- static struct usbh_msc_modeswitch_config *g_msc_modeswitch_config = NULL;
- static struct usbh_msc *usbh_msc_class_alloc(void)
- {
- uint8_t devno;
- for (devno = 0; devno < CONFIG_USBHOST_MAX_MSC_CLASS; devno++) {
- if ((g_devinuse & (1U << devno)) == 0) {
- g_devinuse |= (1U << devno);
- memset(&g_msc_class[devno], 0, sizeof(struct usbh_msc));
- g_msc_class[devno].sdchar = 'a' + devno;
- return &g_msc_class[devno];
- }
- }
- return NULL;
- }
- static void usbh_msc_class_free(struct usbh_msc *msc_class)
- {
- uint8_t devno = msc_class->sdchar - 'a';
- if (devno < 32) {
- g_devinuse &= ~(1U << devno);
- }
- memset(msc_class, 0, sizeof(struct usbh_msc));
- }
- static int usbh_msc_get_maxlun(struct usbh_msc *msc_class, uint8_t *buffer)
- {
- struct usb_setup_packet *setup;
- if (!msc_class || !msc_class->hport) {
- return -USB_ERR_INVAL;
- }
- setup = msc_class->hport->setup;
- setup->bmRequestType = USB_REQUEST_DIR_IN | USB_REQUEST_CLASS | USB_REQUEST_RECIPIENT_INTERFACE;
- setup->bRequest = MSC_REQUEST_GET_MAX_LUN;
- setup->wValue = 0;
- setup->wIndex = msc_class->intf;
- setup->wLength = 1;
- return usbh_control_transfer(msc_class->hport, setup, buffer);
- }
- static void usbh_msc_cbw_dump(struct CBW *cbw)
- {
- int i;
- USB_LOG_DBG("CBW:\r\n");
- USB_LOG_DBG(" signature: 0x%08x\r\n", (unsigned int)cbw->dSignature);
- USB_LOG_DBG(" tag: 0x%08x\r\n", (unsigned int)cbw->dTag);
- USB_LOG_DBG(" datlen: 0x%08x\r\n", (unsigned int)cbw->dDataLength);
- USB_LOG_DBG(" flags: 0x%02x\r\n", cbw->bmFlags);
- USB_LOG_DBG(" lun: 0x%02x\r\n", cbw->bLUN);
- USB_LOG_DBG(" cblen: 0x%02x\r\n", cbw->bCBLength);
- USB_LOG_DBG("CB:\r\n");
- for (i = 0; i < cbw->bCBLength; i += 8) {
- USB_LOG_DBG(" 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\r\n",
- cbw->CB[i], cbw->CB[i + 1], cbw->CB[i + 2],
- cbw->CB[i + 3], cbw->CB[i + 4], cbw->CB[i + 5],
- cbw->CB[i + 6], cbw->CB[i + 7]);
- }
- }
- static void usbh_msc_csw_dump(struct CSW *csw)
- {
- (void)csw;
- USB_LOG_DBG("CSW:\r\n");
- USB_LOG_DBG(" signature: 0x%08x\r\n", (unsigned int)csw->dSignature);
- USB_LOG_DBG(" tag: 0x%08x\r\n", (unsigned int)csw->dTag);
- USB_LOG_DBG(" residue: 0x%08x\r\n", (unsigned int)csw->dDataResidue);
- USB_LOG_DBG(" status: 0x%02x\r\n", csw->bStatus);
- }
- static inline int usbh_msc_bulk_in_transfer(struct usbh_msc *msc_class, uint8_t *buffer, uint32_t buflen, uint32_t timeout)
- {
- int ret;
- struct usbh_urb *urb = &msc_class->bulkin_urb;
- usbh_bulk_urb_fill(urb, msc_class->hport, msc_class->bulkin, buffer, buflen, timeout, NULL, NULL);
- ret = usbh_submit_urb(urb);
- if (ret == 0) {
- ret = urb->actual_length;
- }
- return ret;
- }
- static inline int usbh_msc_bulk_out_transfer(struct usbh_msc *msc_class, uint8_t *buffer, uint32_t buflen, uint32_t timeout)
- {
- int ret;
- struct usbh_urb *urb = &msc_class->bulkout_urb;
- usbh_bulk_urb_fill(urb, msc_class->hport, msc_class->bulkout, buffer, buflen, timeout, NULL, NULL);
- ret = usbh_submit_urb(urb);
- if (ret == 0) {
- ret = urb->actual_length;
- }
- return ret;
- }
- static int usbh_bulk_cbw_csw_xfer(struct usbh_msc *msc_class, struct CBW *cbw, struct CSW *csw, uint8_t *buffer, uint32_t timeout)
- {
- int nbytes;
- usbh_msc_cbw_dump(cbw);
- /* Send the CBW */
- nbytes = usbh_msc_bulk_out_transfer(msc_class, (uint8_t *)cbw, USB_SIZEOF_MSC_CBW, timeout);
- if (nbytes < 0) {
- USB_LOG_ERR("cbw transfer error: %d\r\n", nbytes);
- goto __err_exit;
- }
- if (cbw->dDataLength != 0) {
- if (cbw->CB[0] == SCSI_CMD_WRITE10) {
- nbytes = usbh_msc_bulk_out_transfer(msc_class, buffer, cbw->dDataLength, timeout);
- } else if (cbw->CB[0] == SCSI_CMD_READCAPACITY10) {
- nbytes = usbh_msc_bulk_in_transfer(msc_class, buffer, cbw->dDataLength, timeout);
- if (nbytes >= 0) {
- /* Save the capacity information */
- msc_class->blocknum = GET_BE32(&buffer[0]) + 1;
- msc_class->blocksize = GET_BE32(&buffer[4]);
- }
- } else {
- nbytes = usbh_msc_bulk_in_transfer(msc_class, buffer, cbw->dDataLength, timeout);
- }
- if (nbytes < 0) {
- USB_LOG_ERR("msc data transfer error: %d\r\n", nbytes);
- goto __err_exit;
- }
- }
- /* Receive the CSW */
- memset(csw, 0, USB_SIZEOF_MSC_CSW);
- nbytes = usbh_msc_bulk_in_transfer(msc_class, (uint8_t *)csw, USB_SIZEOF_MSC_CSW, timeout);
- if (nbytes < 0) {
- USB_LOG_ERR("csw transfer error: %d\r\n", nbytes);
- goto __err_exit;
- }
- usbh_msc_csw_dump(csw);
- /* check csw status */
- if (csw->dSignature != MSC_CSW_Signature) {
- USB_LOG_ERR("csw signature error\r\n");
- return -USB_ERR_INVAL;
- }
- if (csw->bStatus != 0) {
- USB_LOG_ERR("csw bStatus %d\r\n", csw->bStatus);
- return -USB_ERR_INVAL;
- }
- __err_exit:
- return nbytes < 0 ? (int)nbytes : 0;
- }
- static inline int usbh_msc_scsi_testunitready(struct usbh_msc *msc_class)
- {
- struct CBW *cbw;
- /* Construct the CBW */
- cbw = (struct CBW *)g_msc_cbw_csw[msc_class->sdchar - 'a'];
- memset(cbw, 0, USB_SIZEOF_MSC_CBW);
- cbw->dSignature = MSC_CBW_Signature;
- cbw->bCBLength = SCSICMD_TESTUNITREADY_SIZEOF;
- cbw->CB[0] = SCSI_CMD_TESTUNITREADY;
- return usbh_bulk_cbw_csw_xfer(msc_class, cbw, (struct CSW *)g_msc_cbw_csw[msc_class->sdchar - 'a'], NULL, CONFIG_USBHOST_MSC_TIMEOUT);
- }
- static inline int usbh_msc_scsi_requestsense(struct usbh_msc *msc_class)
- {
- struct CBW *cbw;
- /* Construct the CBW */
- cbw = (struct CBW *)g_msc_cbw_csw[msc_class->sdchar - 'a'];
- memset(cbw, 0, USB_SIZEOF_MSC_CBW);
- cbw->dSignature = MSC_CBW_Signature;
- cbw->bmFlags = 0x80;
- cbw->dDataLength = SCSIRESP_FIXEDSENSEDATA_SIZEOF;
- cbw->bCBLength = SCSICMD_REQUESTSENSE_SIZEOF;
- cbw->CB[0] = SCSI_CMD_REQUESTSENSE;
- cbw->CB[4] = SCSIRESP_FIXEDSENSEDATA_SIZEOF;
- return usbh_bulk_cbw_csw_xfer(msc_class, cbw, (struct CSW *)g_msc_cbw_csw[msc_class->sdchar - 'a'], g_msc_buf[msc_class->sdchar - 'a'], CONFIG_USBHOST_MSC_TIMEOUT);
- }
- static inline int usbh_msc_scsi_inquiry(struct usbh_msc *msc_class)
- {
- struct CBW *cbw;
- /* Construct the CBW */
- cbw = (struct CBW *)g_msc_cbw_csw[msc_class->sdchar - 'a'];
- memset(cbw, 0, USB_SIZEOF_MSC_CBW);
- cbw->dSignature = MSC_CBW_Signature;
- cbw->dDataLength = SCSIRESP_INQUIRY_SIZEOF;
- cbw->bmFlags = 0x80;
- cbw->bCBLength = SCSICMD_INQUIRY_SIZEOF;
- cbw->CB[0] = SCSI_CMD_INQUIRY;
- cbw->CB[4] = SCSIRESP_INQUIRY_SIZEOF;
- return usbh_bulk_cbw_csw_xfer(msc_class, cbw, (struct CSW *)g_msc_cbw_csw[msc_class->sdchar - 'a'], g_msc_buf[msc_class->sdchar - 'a'], CONFIG_USBHOST_MSC_TIMEOUT);
- }
- static inline int usbh_msc_scsi_readcapacity10(struct usbh_msc *msc_class)
- {
- struct CBW *cbw;
- /* Construct the CBW */
- cbw = (struct CBW *)g_msc_cbw_csw[msc_class->sdchar - 'a'];
- memset(cbw, 0, USB_SIZEOF_MSC_CBW);
- cbw->dSignature = MSC_CBW_Signature;
- cbw->dDataLength = SCSIRESP_READCAPACITY10_SIZEOF;
- cbw->bmFlags = 0x80;
- cbw->bCBLength = SCSICMD_READCAPACITY10_SIZEOF;
- cbw->CB[0] = SCSI_CMD_READCAPACITY10;
- return usbh_bulk_cbw_csw_xfer(msc_class, cbw, (struct CSW *)g_msc_cbw_csw[msc_class->sdchar - 'a'], g_msc_buf[msc_class->sdchar - 'a'], CONFIG_USBHOST_MSC_TIMEOUT);
- }
- static inline void usbh_msc_modeswitch(struct usbh_msc *msc_class, const uint8_t *message)
- {
- struct CBW *cbw;
- /* Construct the CBW */
- cbw = (struct CBW *)g_msc_cbw_csw[msc_class->sdchar - 'a'];
- memcpy(g_msc_cbw_csw[msc_class->sdchar - 'a'], message, 31);
- usbh_bulk_cbw_csw_xfer(msc_class, cbw, (struct CSW *)g_msc_cbw_csw[msc_class->sdchar - 'a'], NULL, CONFIG_USBHOST_MSC_TIMEOUT);
- }
- static int usbh_msc_connect(struct usbh_hubport *hport, uint8_t intf)
- {
- struct usb_endpoint_descriptor *ep_desc;
- struct usbh_msc_modeswitch_config *config;
- int ret;
- struct usbh_msc *msc_class = usbh_msc_class_alloc();
- if (msc_class == NULL) {
- USB_LOG_ERR("Fail to alloc msc_class\r\n");
- return -USB_ERR_NOMEM;
- }
- msc_class->hport = hport;
- msc_class->intf = intf;
- hport->config.intf[intf].priv = msc_class;
- ret = usbh_msc_get_maxlun(msc_class, g_msc_buf[msc_class->sdchar - 'a']);
- if (ret < 0) {
- if (ret == -USB_ERR_STALL) {
- USB_LOG_WRN("Device does not support multiple LUNs\r\n");
- g_msc_buf[msc_class->sdchar - 'a'][0] = 0;
- } else {
- return ret;
- }
- }
- USB_LOG_INFO("Get max LUN:%u\r\n", g_msc_buf[msc_class->sdchar - 'a'][0] + 1);
- for (uint8_t i = 0; i < hport->config.intf[intf].altsetting[0].intf_desc.bNumEndpoints; i++) {
- ep_desc = &hport->config.intf[intf].altsetting[0].ep[i].ep_desc;
- if (ep_desc->bEndpointAddress & 0x80) {
- USBH_EP_INIT(msc_class->bulkin, ep_desc);
- } else {
- USBH_EP_INIT(msc_class->bulkout, ep_desc);
- }
- }
- if (g_msc_modeswitch_config) {
- uint8_t num = 0;
- while (1) {
- config = &g_msc_modeswitch_config[num];
- if (config && config->name) {
- if ((hport->device_desc.idVendor == config->vid) &&
- (hport->device_desc.idProduct == config->pid)) {
- USB_LOG_INFO("%s usb_modeswitch enable\r\n", config->name);
- usbh_msc_modeswitch(msc_class, config->message_content);
- return 0;
- }
- num++;
- } else {
- break;
- }
- }
- }
- snprintf(hport->config.intf[intf].devname, CONFIG_USBHOST_DEV_NAMELEN, DEV_FORMAT, msc_class->sdchar);
- USB_LOG_INFO("Register MSC Class:%s\r\n", hport->config.intf[intf].devname);
- usbh_msc_run(msc_class);
- return ret;
- }
- static int usbh_msc_disconnect(struct usbh_hubport *hport, uint8_t intf)
- {
- int ret = 0;
- struct usbh_msc *msc_class = (struct usbh_msc *)hport->config.intf[intf].priv;
- if (msc_class) {
- if (msc_class->bulkin) {
- usbh_kill_urb(&msc_class->bulkin_urb);
- }
- if (msc_class->bulkout) {
- usbh_kill_urb(&msc_class->bulkout_urb);
- }
- if (hport->config.intf[intf].devname[0] != '\0') {
- USB_LOG_INFO("Unregister MSC Class:%s\r\n", hport->config.intf[intf].devname);
- usbh_msc_stop(msc_class);
- }
- usbh_msc_class_free(msc_class);
- }
- return ret;
- }
- int usbh_msc_scsi_init(struct usbh_msc *msc_class)
- {
- int ret;
- uint16_t cnt;
- cnt = 0;
- while (usbh_msc_scsi_testunitready(msc_class) < 0) {
- USB_LOG_WRN("Device not ready, try again...\r\n");
- ret = usbh_msc_scsi_requestsense(msc_class);
- if (ret < 0) {
- USB_LOG_ERR("Fail to scsi_testunitready\r\n");
- }
- cnt++;
- if (cnt > CONFIG_USBHOST_MSC_READY_CHECK_TIMES) {
- return -USB_ERR_NODEV;
- }
- }
- ret = usbh_msc_scsi_inquiry(msc_class);
- if (ret < 0) {
- USB_LOG_ERR("Fail to scsi_inquiry\r\n");
- return ret;
- }
- ret = usbh_msc_scsi_readcapacity10(msc_class);
- if (ret < 0) {
- USB_LOG_ERR("Fail to scsi_readcapacity10\r\n");
- return ret;
- }
- if (msc_class->blocksize > 0) {
- USB_LOG_INFO("Capacity info:\r\n");
- USB_LOG_INFO("Block num:%d,block size:%d\r\n", (unsigned int)msc_class->blocknum, (unsigned int)msc_class->blocksize);
- } else {
- USB_LOG_ERR("Invalid block size\r\n");
- return -USB_ERR_RANGE;
- }
- return 0;
- }
- int usbh_msc_scsi_write10(struct usbh_msc *msc_class, uint32_t start_sector, const uint8_t *buffer, uint32_t nsectors)
- {
- struct CBW *cbw;
- /* Construct the CBW */
- cbw = (struct CBW *)g_msc_cbw_csw[msc_class->sdchar - 'a'];
- memset(cbw, 0, USB_SIZEOF_MSC_CBW);
- cbw->dSignature = MSC_CBW_Signature;
- cbw->dDataLength = (msc_class->blocksize * nsectors);
- cbw->bCBLength = SCSICMD_WRITE10_SIZEOF;
- cbw->CB[0] = SCSI_CMD_WRITE10;
- SET_BE32(&cbw->CB[2], start_sector);
- SET_BE16(&cbw->CB[7], nsectors);
- return usbh_bulk_cbw_csw_xfer(msc_class, cbw, (struct CSW *)g_msc_cbw_csw[msc_class->sdchar - 'a'], (uint8_t *)buffer, CONFIG_USBHOST_MSC_TIMEOUT);
- }
- int usbh_msc_scsi_read10(struct usbh_msc *msc_class, uint32_t start_sector, const uint8_t *buffer, uint32_t nsectors)
- {
- struct CBW *cbw;
- /* Construct the CBW */
- cbw = (struct CBW *)g_msc_cbw_csw[msc_class->sdchar - 'a'];
- memset(cbw, 0, USB_SIZEOF_MSC_CBW);
- cbw->dSignature = MSC_CBW_Signature;
- cbw->dDataLength = (msc_class->blocksize * nsectors);
- cbw->bmFlags = 0x80;
- cbw->bCBLength = SCSICMD_READ10_SIZEOF;
- cbw->CB[0] = SCSI_CMD_READ10;
- SET_BE32(&cbw->CB[2], start_sector);
- SET_BE16(&cbw->CB[7], nsectors);
- return usbh_bulk_cbw_csw_xfer(msc_class, cbw, (struct CSW *)g_msc_cbw_csw[msc_class->sdchar - 'a'], (uint8_t *)buffer, CONFIG_USBHOST_MSC_TIMEOUT);
- }
- void usbh_msc_modeswitch_enable(struct usbh_msc_modeswitch_config *config)
- {
- if (config) {
- g_msc_modeswitch_config = config;
- } else {
- g_msc_modeswitch_config = NULL;
- }
- }
- __WEAK void usbh_msc_run(struct usbh_msc *msc_class)
- {
- (void)msc_class;
- }
- __WEAK void usbh_msc_stop(struct usbh_msc *msc_class)
- {
- (void)msc_class;
- }
- const struct usbh_class_driver msc_class_driver = {
- .driver_name = "msc",
- .connect = usbh_msc_connect,
- .disconnect = usbh_msc_disconnect
- };
- CLASS_INFO_DEFINE const struct usbh_class_info msc_class_info = {
- .match_flags = USB_CLASS_MATCH_INTF_CLASS | USB_CLASS_MATCH_INTF_SUBCLASS | USB_CLASS_MATCH_INTF_PROTOCOL,
- .bInterfaceClass = USB_DEVICE_CLASS_MASS_STORAGE,
- .bInterfaceSubClass = MSC_SUBCLASS_SCSI,
- .bInterfaceProtocol = MSC_PROTOCOL_BULK_ONLY,
- .id_table = NULL,
- .class_driver = &msc_class_driver
- };
|