1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114 |
- /*
- * File : mstorage.c
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2012, RT-Thread Development Team
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Change Logs:
- * Date Author Notes
- * 2012-10-01 Yi Qiu first version
- * 2012-11-25 Heyuanjie87 reduce the memory consumption
- * 2012-12-09 Heyuanjie87 change function and endpoint handler
- * 2013-07-25 Yi Qiu update for USB CV test
- */
- #include <rtthread.h>
- #include <rtservice.h>
- #include "drivers/usb_device.h"
- #include "mstorage.h"
- #ifdef RT_USB_DEVICE_MSTORAGE
- enum STAT
- {
- STAT_CBW,
- STAT_CMD,
- STAT_CSW,
- STAT_RECEIVE,
- STAT_SEND,
- };
- typedef enum
- {
- FIXED,
- COUNT,
- BLOCK_COUNT,
- }CB_SIZE_TYPE;
- typedef enum
- {
- DIR_IN,
- DIR_OUT,
- DIR_NONE,
- }CB_DIR;
- typedef rt_size_t (*cbw_handler)(ufunction_t func, ustorage_cbw_t cbw);
- struct scsi_cmd
- {
- rt_uint16_t cmd;
- cbw_handler handler;
- rt_size_t cmd_len;
- CB_SIZE_TYPE type;
- rt_size_t data_size;
- CB_DIR dir;
- };
- struct mstorage
- {
- struct ustorage_csw csw_response;
- uep_t ep_in;
- uep_t ep_out;
- int status;
- rt_uint32_t cb_data_size;
- rt_device_t disk;
- rt_uint32_t block;
- rt_int32_t count;
- rt_int32_t size;
- struct scsi_cmd* processing;
- struct rt_device_blk_geometry geometry;
- };
- static struct udevice_descriptor dev_desc =
- {
- USB_DESC_LENGTH_DEVICE, //bLength;
- USB_DESC_TYPE_DEVICE, //type;
- USB_BCD_VERSION, //bcdUSB;
- USB_CLASS_MASS_STORAGE, //bDeviceClass;
- 0x00, //bDeviceSubClass;
- 0x00, //bDeviceProtocol;
- 0x40, //bMaxPacketSize0;
- _VENDOR_ID, //idVendor;
- _PRODUCT_ID, //idProduct;
- USB_BCD_DEVICE, //bcdDevice;
- USB_STRING_MANU_INDEX, //iManufacturer;
- USB_STRING_PRODUCT_INDEX, //iProduct;
- USB_STRING_SERIAL_INDEX, //iSerialNumber;
- USB_DYNAMIC, //bNumConfigurations;
- };
- static struct usb_qualifier_descriptor dev_qualifier =
- {
- sizeof(dev_qualifier),
- USB_DESC_TYPE_DEVICEQUALIFIER,
- 0x0200,
- USB_CLASS_MASS_STORAGE,
- 0x00,
- 64,
- 0x01,
- 0,
- };
- const static struct umass_descriptor _mass_desc =
- {
- #ifdef RT_USB_DEVICE_COMPOSITE
- /* Interface Association Descriptor */
- USB_DESC_LENGTH_IAD,
- USB_DESC_TYPE_IAD,
- USB_DYNAMIC,
- 0x01,
- USB_CLASS_MASS_STORAGE,
- 0x06,
- 0x50,
- 0x00,
- #endif
- USB_DESC_LENGTH_INTERFACE, //bLength;
- USB_DESC_TYPE_INTERFACE, //type;
- USB_DYNAMIC, //bInterfaceNumber;
- 0x00, //bAlternateSetting;
- 0x02, //bNumEndpoints
- USB_CLASS_MASS_STORAGE, //bInterfaceClass;
- 0x06, //bInterfaceSubClass;
- 0x50, //bInterfaceProtocol;
- 0x00, //iInterface;
- USB_DESC_LENGTH_ENDPOINT, //bLength;
- USB_DESC_TYPE_ENDPOINT, //type;
- USB_DYNAMIC | USB_DIR_OUT, //bEndpointAddress;
- USB_EP_ATTR_BULK, //bmAttributes;
- 0x40, //wMaxPacketSize;
- 0x00, //bInterval;
- USB_DESC_LENGTH_ENDPOINT, //bLength;
- USB_DESC_TYPE_ENDPOINT, //type;
- USB_DYNAMIC | USB_DIR_IN, //bEndpointAddress;
- USB_EP_ATTR_BULK, //bmAttributes;
- 0x40, //wMaxPacketSize;
- 0x00, //bInterval;
- };
- const static char* _ustring[] =
- {
- "Language",
- "RT-Thread Team.",
- "RTT Mass Storage",
- "320219198301",
- "Configuration",
- "Interface",
- };
- static rt_size_t _test_unit_ready(ufunction_t func, ustorage_cbw_t cbw);
- static rt_size_t _request_sense(ufunction_t func, ustorage_cbw_t cbw);
- static rt_size_t _inquiry_cmd(ufunction_t func, ustorage_cbw_t cbw);
- static rt_size_t _allow_removal(ufunction_t func, ustorage_cbw_t cbw);
- static rt_size_t _start_stop(ufunction_t func, ustorage_cbw_t cbw);
- static rt_size_t _mode_sense_6(ufunction_t func, ustorage_cbw_t cbw);
- static rt_size_t _read_capacities(ufunction_t func, ustorage_cbw_t cbw);
- static rt_size_t _read_capacity(ufunction_t func, ustorage_cbw_t cbw);
- static rt_size_t _read_10(ufunction_t func, ustorage_cbw_t cbw);
- static rt_size_t _write_10(ufunction_t func, ustorage_cbw_t cbw);
- static rt_size_t _verify_10(ufunction_t func, ustorage_cbw_t cbw);
- static struct scsi_cmd cmd_data[] =
- {
- {SCSI_TEST_UNIT_READY, _test_unit_ready, 6, FIXED, 0, DIR_NONE},
- {SCSI_REQUEST_SENSE, _request_sense, 6, COUNT, 0, DIR_IN},
- {SCSI_INQUIRY_CMD, _inquiry_cmd, 6, COUNT, 0, DIR_IN},
- {SCSI_ALLOW_REMOVAL, _allow_removal, 6, FIXED, 0, DIR_NONE},
- {SCSI_MODE_SENSE_6, _mode_sense_6, 6, COUNT, 0, DIR_IN},
- {SCSI_START_STOP, _start_stop, 6, FIXED, 0, DIR_NONE},
- {SCSI_READ_CAPACITIES, _read_capacities, 10, COUNT, 0, DIR_NONE},
- {SCSI_READ_CAPACITY, _read_capacity, 10, FIXED, 8, DIR_IN},
- {SCSI_READ_10, _read_10, 10, BLOCK_COUNT, 0, DIR_IN},
- {SCSI_WRITE_10, _write_10, 10, BLOCK_COUNT, 0, DIR_OUT},
- {SCSI_VERIFY_10, _verify_10, 10, FIXED, 0, DIR_NONE},
- };
- static void _send_status(ufunction_t func)
- {
- struct mstorage *data;
- RT_ASSERT(func != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_send_status\n"));
- data = (struct mstorage*)func->user_data;
- data->ep_in->request.buffer = (rt_uint8_t*)&data->csw_response;
- data->ep_in->request.size = SIZEOF_CSW;
- data->ep_in->request.req_type = UIO_REQUEST_WRITE;
- rt_usbd_io_request(func->device, data->ep_in, &data->ep_in->request);
- data->status = STAT_CSW;
- }
- static rt_size_t _test_unit_ready(ufunction_t func, ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_test_unit_ready\n"));
- data = (struct mstorage*)func->user_data;
- data->csw_response.status = 0;
-
- return 0;
- }
- static rt_size_t _allow_removal(ufunction_t func, ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_allow_removal\n"));
- data = (struct mstorage*)func->user_data;
- data->csw_response.status = 0;
- return 0;
- }
- /**
- * This function will handle inquiry command request.
- *
- * @param func the usb function object.
- * @param cbw the command block wrapper.
- *
- * @return RT_EOK on successful.
- */
- static rt_size_t _inquiry_cmd(ufunction_t func, ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- rt_uint8_t *buf;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_ASSERT(cbw != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_inquiry_cmd\n"));
- data = (struct mstorage*)func->user_data;
- buf = data->ep_in->buffer;
- *(rt_uint32_t*)&buf[0] = 0x0 | (0x80 << 8);
- *(rt_uint32_t*)&buf[4] = 31;
- rt_memset(&buf[8], 0x20, 28);
- rt_memcpy(&buf[8], "RTT", 3);
- rt_memcpy(&buf[16], "USB Disk", 8);
- data->cb_data_size = MIN(data->cb_data_size, SIZEOF_INQUIRY_CMD);
- data->ep_in->request.buffer = buf;
- data->ep_in->request.size = data->cb_data_size;
- data->ep_in->request.req_type = UIO_REQUEST_WRITE;
- rt_usbd_io_request(func->device, data->ep_in, &data->ep_in->request);
- data->status = STAT_CMD;
- return data->cb_data_size;
- }
- /**
- * This function will handle sense request.
- *
- * @param func the usb function object.
- * @param cbw the command block wrapper.
- *
- * @return RT_EOK on successful.
- */
- static rt_size_t _request_sense(ufunction_t func, ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- struct request_sense_data *buf;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_ASSERT(cbw != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_request_sense\n"));
-
- data = (struct mstorage*)func->user_data;
- buf = (struct request_sense_data *)data->ep_in->buffer;
- buf->ErrorCode = 0x70;
- buf->Valid = 0;
- buf->SenseKey = 2;
- buf->Information[0] = 0;
- buf->Information[1] = 0;
- buf->Information[2] = 0;
- buf->Information[3] = 0;
- buf->AdditionalSenseLength = 0x0a;
- buf->AdditionalSenseCode = 0x3a;
- buf->AdditionalSenseCodeQualifier = 0;
- data->cb_data_size = MIN(data->cb_data_size, SIZEOF_REQUEST_SENSE);
- data->ep_in->request.buffer = (rt_uint8_t*)data->ep_in->buffer;
- data->ep_in->request.size = data->cb_data_size;
- data->ep_in->request.req_type = UIO_REQUEST_WRITE;
- rt_usbd_io_request(func->device, data->ep_in, &data->ep_in->request);
- data->status = STAT_CMD;
- return data->cb_data_size;
- }
- /**
- * This function will handle mode_sense_6 request.
- *
- * @param func the usb function object.
- * @param cbw the command block wrapper.
- *
- * @return RT_EOK on successful.
- */
- static rt_size_t _mode_sense_6(ufunction_t func, ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- rt_uint8_t *buf;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_ASSERT(cbw != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_mode_sense_6\n"));
- data = (struct mstorage*)func->user_data;
- buf = data->ep_in->buffer;
- buf[0] = 3;
- buf[1] = 0;
- buf[2] = 0;
- buf[3] = 0;
- data->cb_data_size = MIN(data->cb_data_size, SIZEOF_MODE_SENSE_6);
- data->ep_in->request.buffer = buf;
- data->ep_in->request.size = data->cb_data_size;
- data->ep_in->request.req_type = UIO_REQUEST_WRITE;
- rt_usbd_io_request(func->device, data->ep_in, &data->ep_in->request);
- data->status = STAT_CMD;
- return data->cb_data_size;
- }
- /**
- * This function will handle read_capacities request.
- *
- * @param func the usb function object.
- * @param cbw the command block wrapper.
- *
- * @return RT_EOK on successful.
- */
- static rt_size_t _read_capacities(ufunction_t func, ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- rt_uint8_t *buf;
- rt_uint32_t sector_count, sector_size;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_ASSERT(cbw != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_read_capacities\n"));
- data = (struct mstorage*)func->user_data;
- buf = data->ep_in->buffer;
- sector_count = data->geometry.sector_count;
- sector_size = data->geometry.bytes_per_sector;
- *(rt_uint32_t*)&buf[0] = 0x08000000;
- buf[4] = sector_count >> 24;
- buf[5] = 0xff & (sector_count >> 16);
- buf[6] = 0xff & (sector_count >> 8);
- buf[7] = 0xff & (sector_count);
- buf[8] = 0x02;
- buf[9] = 0xff & (sector_size >> 16);
- buf[10] = 0xff & (sector_size >> 8);
- buf[11] = 0xff & sector_size;
- data->cb_data_size = MIN(data->cb_data_size, SIZEOF_READ_CAPACITIES);
- data->ep_in->request.buffer = buf;
- data->ep_in->request.size = data->cb_data_size;
- data->ep_in->request.req_type = UIO_REQUEST_WRITE;
- rt_usbd_io_request(func->device, data->ep_in, &data->ep_in->request);
- data->status = STAT_CMD;
- return data->cb_data_size;
- }
- /**
- * This function will handle read_capacity request.
- *
- * @param func the usb function object.
- * @param cbw the command block wapper.
- *
- * @return RT_EOK on successful.
- */
- static rt_size_t _read_capacity(ufunction_t func, ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- rt_uint8_t *buf;
- rt_uint32_t sector_count, sector_size;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_ASSERT(cbw != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_read_capacity\n"));
- data = (struct mstorage*)func->user_data;
- buf = data->ep_in->buffer;
- sector_count = data->geometry.sector_count;
- sector_size = data->geometry.bytes_per_sector;
- buf[0] = sector_count >> 24;
- buf[1] = 0xff & (sector_count >> 16);
- buf[2] = 0xff & (sector_count >> 8);
- buf[3] = 0xff & (sector_count);
- buf[4] = 0x0;
- buf[5] = 0xff & (sector_size >> 16);
- buf[6] = 0xff & (sector_size >> 8);
- buf[7] = 0xff & sector_size;
- data->cb_data_size = MIN(data->cb_data_size, SIZEOF_READ_CAPACITY);
- data->ep_in->request.buffer = buf;
- data->ep_in->request.size = data->cb_data_size;
- data->ep_in->request.req_type = UIO_REQUEST_WRITE;
- rt_usbd_io_request(func->device, data->ep_in, &data->ep_in->request);
- data->status = STAT_CMD;
- return data->cb_data_size;
- }
- /**
- * This function will handle read_10 request.
- *
- * @param func the usb function object.
- * @param cbw the command block wrapper.
- *
- * @return RT_EOK on successful.
- */
- static rt_size_t _read_10(ufunction_t func, ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- rt_size_t size;
-
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_ASSERT(cbw != RT_NULL);
- data = (struct mstorage*)func->user_data;
- data->block = cbw->cb[2]<<24 | cbw->cb[3]<<16 | cbw->cb[4]<<8 |
- cbw->cb[5]<<0;
- data->count = cbw->cb[7]<<8 | cbw->cb[8]<<0;
- RT_ASSERT(data->count < data->geometry.sector_count);
- data->csw_response.data_reside = data->cb_data_size;
- size = rt_device_read(data->disk, data->block, data->ep_in->buffer, 1);
- if(size == 0)
- {
- rt_kprintf("read data error\n");
- }
- data->ep_in->request.buffer = data->ep_in->buffer;
- data->ep_in->request.size = data->geometry.bytes_per_sector;
- data->ep_in->request.req_type = UIO_REQUEST_WRITE;
- rt_usbd_io_request(func->device, data->ep_in, &data->ep_in->request);
- data->status = STAT_SEND;
-
- return data->geometry.bytes_per_sector;
- }
- /**
- * This function will handle write_10 request.
- *
- * @param func the usb function object.
- * @param cbw the command block wrapper.
- *
- * @return RT_EOK on successful.
- */
- static rt_size_t _write_10(ufunction_t func, ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_ASSERT(cbw != RT_NULL);
- data = (struct mstorage*)func->user_data;
- data->block = cbw->cb[2]<<24 | cbw->cb[3]<<16 | cbw->cb[4]<<8 |
- cbw->cb[5]<<0;
- data->count = cbw->cb[7]<<8 | cbw->cb[8];
- data->csw_response.data_reside = cbw->xfer_len;
- data->size = data->count * data->geometry.bytes_per_sector;
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_write_10 count 0x%x block 0x%x 0x%x\n",
- data->count, data->block, data->geometry.sector_count));
- data->csw_response.data_reside = data->cb_data_size;
-
- data->ep_out->request.buffer = data->ep_out->buffer;
- data->ep_out->request.size = data->geometry.bytes_per_sector;
- data->ep_out->request.req_type = UIO_REQUEST_READ_FULL;
- rt_usbd_io_request(func->device, data->ep_out, &data->ep_out->request);
- data->status = STAT_RECEIVE;
-
- return data->geometry.bytes_per_sector;
- }
- /**
- * This function will handle verify_10 request.
- *
- * @param func the usb function object.
- *
- * @return RT_EOK on successful.
- */
- static rt_size_t _verify_10(ufunction_t func, ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_verify_10\n"));
- data = (struct mstorage*)func->user_data;
- data->csw_response.status = 0;
-
- return 0;
- }
- static rt_size_t _start_stop(ufunction_t func,
- ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_start_stop\n"));
- data = (struct mstorage*)func->user_data;
- data->csw_response.status = 0;
-
- return 0;
- }
- static rt_err_t _ep_in_handler(ufunction_t func, rt_size_t size)
- {
- struct mstorage *data;
-
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_ep_in_handler\n"));
-
- data = (struct mstorage*)func->user_data;
- switch(data->status)
- {
- case STAT_CSW:
- if(data->ep_in->request.size != SIZEOF_CSW)
- {
- rt_kprintf("Size of csw command error\n");
- rt_usbd_ep_set_stall(func->device, data->ep_in);
- }
- else
- {
- RT_DEBUG_LOG(RT_DEBUG_USB, ("return to cbw status\n"));
- data->ep_out->request.buffer = data->ep_out->buffer;
- data->ep_out->request.size = SIZEOF_CBW;
- data->ep_out->request.req_type = UIO_REQUEST_READ_FULL;
- rt_usbd_io_request(func->device, data->ep_out, &data->ep_out->request);
- data->status = STAT_CBW;
- }
- break;
- case STAT_CMD:
- if(data->csw_response.data_reside == 0xFF)
- {
- data->csw_response.data_reside = 0;
- }
- else
- {
- data->csw_response.data_reside -= data->ep_in->request.size;
- if(data->csw_response.data_reside != 0)
- {
- RT_DEBUG_LOG(RT_DEBUG_USB, ("data_reside %d, request %d\n",
- data->csw_response.data_reside, data->ep_in->request.size));
- if(data->processing->dir == DIR_OUT)
- {
- rt_usbd_ep_set_stall(func->device, data->ep_out);
- }
- else
- {
- rt_usbd_ep_set_stall(func->device, data->ep_in);
- }
- data->csw_response.data_reside = 0;
- }
- }
- _send_status(func);
- break;
- case STAT_SEND:
- data->csw_response.data_reside -= data->ep_in->request.size;
- data->count--;
- data->block++;
- if(data->count > 0 && data->csw_response.data_reside > 0)
- {
- if(rt_device_read(data->disk, data->block, data->ep_in->buffer, 1) == 0)
- {
- rt_kprintf("disk read error\n");
- rt_usbd_ep_set_stall(func->device, data->ep_in);
- return -RT_ERROR;
- }
- data->ep_in->request.buffer = data->ep_in->buffer;
- data->ep_in->request.size = data->geometry.bytes_per_sector;
- data->ep_in->request.req_type = UIO_REQUEST_WRITE;
- rt_usbd_io_request(func->device, data->ep_in, &data->ep_in->request);
- }
- else
- {
- _send_status(func);
- }
- break;
- }
- return RT_EOK;
- }
- #ifdef MASS_CBW_DUMP
- static void cbw_dump(struct ustorage_cbw* cbw)
- {
- RT_ASSERT(cbw != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("signature 0x%x\n", cbw->signature));
- RT_DEBUG_LOG(RT_DEBUG_USB, ("tag 0x%x\n", cbw->tag));
- RT_DEBUG_LOG(RT_DEBUG_USB, ("xfer_len 0x%x\n", cbw->xfer_len));
- RT_DEBUG_LOG(RT_DEBUG_USB, ("dflags 0x%x\n", cbw->dflags));
- RT_DEBUG_LOG(RT_DEBUG_USB, ("lun 0x%x\n", cbw->lun));
- RT_DEBUG_LOG(RT_DEBUG_USB, ("cb_len 0x%x\n", cbw->cb_len));
- RT_DEBUG_LOG(RT_DEBUG_USB, ("cb[0] 0x%x\n", cbw->cb[0]));
- }
- #endif
- static struct scsi_cmd* _find_cbw_command(rt_uint16_t cmd)
- {
- int i;
- for(i=0; i<sizeof(cmd_data)/sizeof(struct scsi_cmd); i++)
- {
- if(cmd_data[i].cmd == cmd)
- return &cmd_data[i];
- }
- return RT_NULL;
- }
- static void _cb_len_calc(ufunction_t func, struct scsi_cmd* cmd,
- ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(cmd != RT_NULL);
- RT_ASSERT(cbw != RT_NULL);
- data = (struct mstorage*)func->user_data;
- if(cmd->cmd_len == 6)
- {
- switch(cmd->type)
- {
- case COUNT:
- data->cb_data_size = cbw->cb[4];
- break;
- case BLOCK_COUNT:
- data->cb_data_size = cbw->cb[4] * data->geometry.bytes_per_sector;
- break;
- case FIXED:
- data->cb_data_size = cmd->data_size;
- break;
- default:
- break;
- }
- }
- else if(cmd->cmd_len == 10)
- {
- switch(cmd->type)
- {
- case COUNT:
- data->cb_data_size = cbw->cb[7]<<8 | cbw->cb[8];
- break;
- case BLOCK_COUNT:
- data->cb_data_size = (cbw->cb[7]<<8 | cbw->cb[8]) *
- data->geometry.bytes_per_sector;
- break;
- case FIXED:
- data->cb_data_size = cmd->data_size;
- break;
- default:
- break;
- }
- }
- else
- {
- // rt_kprintf("cmd_len error %d\n", cmd->cmd_len);
- }
- }
- static rt_bool_t _cbw_verify(ufunction_t func, struct scsi_cmd* cmd,
- ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- RT_ASSERT(cmd != RT_NULL);
- RT_ASSERT(cbw != RT_NULL);
- RT_ASSERT(func != RT_NULL);
- data = (struct mstorage*)func->user_data;
- if(cmd->cmd_len != cbw->cb_len)
- {
- // rt_kprintf("cb_len error\n");
- cmd->cmd_len = cbw->cb_len;
- }
- if(cbw->xfer_len > 0 && data->cb_data_size == 0)
- {
- rt_kprintf("xfer_len > 0 && data_size == 0\n");
- return RT_FALSE;
- }
- if(cbw->xfer_len == 0 && data->cb_data_size > 0)
- {
- rt_kprintf("xfer_len == 0 && data_size > 0");
- return RT_FALSE;
- }
- if((cbw->dflags & USB_DIR_IN) && cmd->dir == DIR_OUT ||
- !(cbw->dflags & USB_DIR_IN) && cmd->dir == DIR_IN)
- {
- rt_kprintf("dir error\n");
- return RT_FALSE;
- }
- if(cbw->xfer_len > data->cb_data_size)
- {
- rt_kprintf("xfer_len > data_size\n");
- return RT_FALSE;
- }
-
- if(cbw->xfer_len < data->cb_data_size)
- {
- // rt_kprintf("xfer_len < data_size\n");
- data->cb_data_size = cbw->xfer_len;
- data->csw_response.status = 1;
- }
- return RT_TRUE;
- }
- static rt_size_t _cbw_handler(ufunction_t func, struct scsi_cmd* cmd,
- ustorage_cbw_t cbw)
- {
- struct mstorage *data;
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(cbw != RT_NULL);
- RT_ASSERT(cmd->handler != RT_NULL);
-
- data = (struct mstorage*)func->user_data;
- data->processing = cmd;
- return cmd->handler(func, cbw);
- }
- /**
- * This function will handle mass storage bulk out endpoint request.
- *
- * @param func the usb function object.
- * @param size request size.
- *
- * @return RT_EOK.
- */
- static rt_err_t _ep_out_handler(ufunction_t func, rt_size_t size)
- {
- struct mstorage *data;
- struct scsi_cmd* cmd;
- rt_size_t len;
- struct ustorage_cbw* cbw;
-
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("_ep_out_handler %d\n", size));
-
- data = (struct mstorage*)func->user_data;
- cbw = (struct ustorage_cbw*)data->ep_out->buffer;
- if(data->status == STAT_CBW)
- {
- /* dump cbw information */
- if(cbw->signature != CBW_SIGNATURE || size != SIZEOF_CBW)
- {
- goto exit;
- }
- data->csw_response.signature = CSW_SIGNATURE;
- data->csw_response.tag = cbw->tag;
- data->csw_response.data_reside = cbw->xfer_len;
- data->csw_response.status = 0;
- RT_DEBUG_LOG(RT_DEBUG_USB, ("ep_out reside %d\n", data->csw_response.data_reside));
-
- cmd = _find_cbw_command(cbw->cb[0]);
- if(cmd == RT_NULL)
- {
- rt_kprintf("can't find cbw command\n");
- goto exit;
- }
- _cb_len_calc(func, cmd, cbw);
- if(!_cbw_verify(func, cmd, cbw))
- {
- goto exit;
- }
-
- len = _cbw_handler(func, cmd, cbw);
- if(len == 0)
- {
- _send_status(func);
- }
-
- return RT_EOK;
- }
- else if(data->status == STAT_RECEIVE)
- {
- RT_DEBUG_LOG(RT_DEBUG_USB, ("\nwrite size %d block 0x%x oount 0x%x\n",
- size, data->block, data->size));
-
- data->size -= size;
- data->csw_response.data_reside -= size;
- rt_device_write(data->disk, data->block, data->ep_out->buffer, 1);
- if(data->csw_response.data_reside != 0)
- {
- data->ep_out->request.buffer = data->ep_out->buffer;
- data->ep_out->request.size = data->geometry.bytes_per_sector;
- data->ep_out->request.req_type = UIO_REQUEST_READ_FULL;
- rt_usbd_io_request(func->device, data->ep_out, &data->ep_out->request);
- data->block ++;
- }
- else
- {
- _send_status(func);
- }
- return RT_EOK;
- }
- exit:
- if(data->csw_response.data_reside)
- {
- if(cbw->dflags & USB_DIR_IN)
- {
- rt_usbd_ep_set_stall(func->device, data->ep_in);
- }
- else
- {
- rt_usbd_ep_set_stall(func->device, data->ep_in);
- rt_usbd_ep_set_stall(func->device, data->ep_out);
- }
- }
- data->csw_response.status = 1;
- _send_status(func);
-
- return -RT_ERROR;
- }
- /**
- * This function will handle mass storage interface request.
- *
- * @param func the usb function object.
- * @param setup the setup request.
- *
- * @return RT_EOK on successful.
- */
- static rt_err_t _interface_handler(ufunction_t func, ureq_t setup)
- {
- rt_uint8_t lun = 0;
-
- RT_ASSERT(func != RT_NULL);
- RT_ASSERT(func->device != RT_NULL);
- RT_ASSERT(setup != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("mstorage_interface_handler\n"));
- switch(setup->bRequest)
- {
- case USBREQ_GET_MAX_LUN:
-
- RT_DEBUG_LOG(RT_DEBUG_USB, ("USBREQ_GET_MAX_LUN\n"));
-
- if(setup->wValue || setup->wLength != 1)
- {
- rt_usbd_ep0_set_stall(func->device);
- }
- else
- {
- rt_usbd_ep0_write(func->device, &lun, setup->wLength);
- }
- break;
- case USBREQ_MASS_STORAGE_RESET:
- RT_DEBUG_LOG(RT_DEBUG_USB, ("USBREQ_MASS_STORAGE_RESET\n"));
-
- if(setup->wValue || setup->wLength != 0)
- {
- rt_usbd_ep0_set_stall(func->device);
- }
- else
- {
- dcd_ep0_send_status(func->device->dcd);
- }
- break;
- default:
- rt_kprintf("unknown interface request\n");
- break;
- }
- return RT_EOK;
- }
- /**
- * This function will run mass storage function, it will be called on handle set configuration request.
- *
- * @param func the usb function object.
- *
- * @return RT_EOK on successful.
- */
- static rt_err_t _function_enable(ufunction_t func)
- {
- struct mstorage *data;
- RT_ASSERT(func != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("Mass storage function enabled\n"));
- data = (struct mstorage*)func->user_data;
- data->disk = rt_device_find(RT_USB_MSTORAGE_DISK_NAME);
- if(data->disk == RT_NULL)
- {
- rt_kprintf("no data->disk named %s\n", RT_USB_MSTORAGE_DISK_NAME);
- return -RT_ERROR;
- }
- if(rt_device_open(data->disk, RT_DEVICE_OFLAG_RDWR) != RT_EOK)
- {
- rt_kprintf("disk open error\n");
- return -RT_ERROR;
- }
-
- if(rt_device_control(data->disk, RT_DEVICE_CTRL_BLK_GETGEOME,
- (void*)&data->geometry) != RT_EOK)
- {
- rt_kprintf("get disk info error\n");
- return -RT_ERROR;
- }
-
- data->ep_in->buffer = (rt_uint8_t*)rt_malloc(data->geometry.bytes_per_sector);
- if(data->ep_in->buffer == RT_NULL)
- {
- rt_kprintf("no memory\n");
- return -RT_ENOMEM;
- }
- data->ep_out->buffer = (rt_uint8_t*)rt_malloc(data->geometry.bytes_per_sector);
- if(data->ep_out->buffer == RT_NULL)
- {
- rt_free(data->ep_in->buffer);
- rt_kprintf("no memory\n");
- return -RT_ENOMEM;
- }
-
- /* prepare to read CBW request */
- data->ep_out->request.buffer = data->ep_out->buffer;
- data->ep_out->request.size = SIZEOF_CBW;
- data->ep_out->request.req_type = UIO_REQUEST_READ_FULL;
- rt_usbd_io_request(func->device, data->ep_out, &data->ep_out->request);
-
- return RT_EOK;
- }
- /**
- * This function will stop mass storage function, it will be called on handle set configuration request.
- *
- * @param device the usb device object.
- *
- * @return RT_EOK on successful.
- */
- static rt_err_t _function_disable(ufunction_t func)
- {
- struct mstorage *data;
- RT_ASSERT(func != RT_NULL);
- RT_DEBUG_LOG(RT_DEBUG_USB, ("Mass storage function disabled\n"));
- data = (struct mstorage*)func->user_data;
- if(data->ep_in->buffer != RT_NULL)
- {
- rt_free(data->ep_in->buffer);
- data->ep_in->buffer = RT_NULL;
- }
- if(data->ep_out->buffer != RT_NULL)
- {
- rt_free(data->ep_out->buffer);
- data->ep_out->buffer = RT_NULL;
- }
- if(data->disk != RT_NULL)
- {
- rt_device_close(data->disk);
- data->disk = RT_NULL;
- }
-
- data->status = STAT_CBW;
-
- return RT_EOK;
- }
- static struct ufunction_ops ops =
- {
- _function_enable,
- _function_disable,
- RT_NULL,
- };
- static rt_err_t _mstorage_descriptor_config(umass_desc_t desc, rt_uint8_t cintf_nr)
- {
- #ifdef RT_USB_DEVICE_COMPOSITE
- desc->iad_desc.bFirstInterface = cintf_nr;
- #endif
- return RT_EOK;
- }
- /**
- * This function will create a mass storage function instance.
- *
- * @param device the usb device object.
- *
- * @return RT_EOK on successful.
- */
- ufunction_t rt_usbd_function_mstorage_create(udevice_t device)
- {
- uintf_t intf;
- struct mstorage *data;
- ufunction_t func;
- ualtsetting_t setting;
- umass_desc_t mass_desc;
- /* parameter check */
- RT_ASSERT(device != RT_NULL);
- /* set usb device string description */
- rt_usbd_device_set_string(device, _ustring);
-
- /* create a mass storage function */
- func = rt_usbd_function_new(device, &dev_desc, &ops);
- device->dev_qualifier = &dev_qualifier;
-
- /* allocate memory for mass storage function data */
- data = (struct mstorage*)rt_malloc(sizeof(struct mstorage));
- rt_memset(data, 0, sizeof(struct mstorage));
- func->user_data = (void*)data;
- /* create an interface object */
- intf = rt_usbd_interface_new(device, _interface_handler);
- /* create an alternate setting object */
- setting = rt_usbd_altsetting_new(sizeof(struct umass_descriptor));
-
- /* config desc in alternate setting */
- rt_usbd_altsetting_config_descriptor(setting, &_mass_desc, (rt_off_t)&((umass_desc_t)0)->intf_desc);
- /* configure the msc interface descriptor */
- _mstorage_descriptor_config(setting->desc, intf->intf_num);
- /* create a bulk out and a bulk in endpoint */
- mass_desc = (umass_desc_t)setting->desc;
- data->ep_in = rt_usbd_endpoint_new(&mass_desc->ep_in_desc, _ep_in_handler);
- data->ep_out = rt_usbd_endpoint_new(&mass_desc->ep_out_desc, _ep_out_handler);
- /* add the bulk out and bulk in endpoint to the alternate setting */
- rt_usbd_altsetting_add_endpoint(setting, data->ep_out);
- rt_usbd_altsetting_add_endpoint(setting, data->ep_in);
- /* add the alternate setting to the interface, then set default setting */
- rt_usbd_interface_add_altsetting(intf, setting);
- rt_usbd_set_altsetting(intf, 0);
- /* add the interface to the mass storage function */
- rt_usbd_function_add_interface(func, intf);
- return func;
- }
- #endif
|