2022-08-18 21:41:19 +08:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, sakumisu
|
2022-02-08 11:44:46 +08:00
|
|
|
*
|
2022-08-18 21:41:19 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2022-02-08 11:44:46 +08:00
|
|
|
*/
|
2022-08-18 21:41:19 +08:00
|
|
|
#ifndef USBH_MSC_H
|
|
|
|
|
#define USBH_MSC_H
|
2022-02-08 11:44:46 +08:00
|
|
|
|
|
|
|
|
#include "usb_msc.h"
|
|
|
|
|
#include "usb_scsi.h"
|
|
|
|
|
|
|
|
|
|
struct usbh_msc {
|
2022-03-19 11:23:40 +08:00
|
|
|
struct usbh_hubport *hport;
|
2023-11-15 22:08:26 +08:00
|
|
|
struct usb_endpoint_descriptor *bulkin; /* Bulk IN endpoint */
|
|
|
|
|
struct usb_endpoint_descriptor *bulkout; /* Bulk OUT endpoint */
|
|
|
|
|
struct usbh_urb bulkin_urb; /* Bulk IN urb */
|
|
|
|
|
struct usbh_urb bulkout_urb; /* Bulk OUT urb */
|
2022-03-19 11:23:40 +08:00
|
|
|
|
2022-02-08 11:44:46 +08:00
|
|
|
uint8_t intf; /* Data interface number */
|
|
|
|
|
uint8_t sdchar;
|
2023-11-15 22:08:26 +08:00
|
|
|
uint32_t blocknum; /* Number of blocks on the USB mass storage device */
|
|
|
|
|
uint16_t blocksize; /* Block size of USB mass storage device */
|
2024-04-24 22:40:55 +08:00
|
|
|
|
|
|
|
|
void *user_data;
|
2022-02-08 11:44:46 +08:00
|
|
|
};
|
|
|
|
|
|
2023-11-04 16:45:20 +08:00
|
|
|
struct usbh_msc_modeswitch_config {
|
|
|
|
|
const char *name;
|
|
|
|
|
uint16_t vid; /* Vendor ID (for vendor/product specific devices) */
|
|
|
|
|
uint16_t pid; /* Product ID (for vendor/product specific devices) */
|
|
|
|
|
const uint8_t *message_content;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void usbh_msc_modeswitch_enable(struct usbh_msc_modeswitch_config *config);
|
2025-01-26 00:15:33 +08:00
|
|
|
int usbh_msc_scsi_init(struct usbh_msc *msc_class);
|
2022-02-24 12:29:06 +08:00
|
|
|
int usbh_msc_scsi_write10(struct usbh_msc *msc_class, uint32_t start_sector, const uint8_t *buffer, uint32_t nsectors);
|
|
|
|
|
int usbh_msc_scsi_read10(struct usbh_msc *msc_class, uint32_t start_sector, const uint8_t *buffer, uint32_t nsectors);
|
|
|
|
|
|
2022-11-26 23:52:58 +08:00
|
|
|
void usbh_msc_run(struct usbh_msc *msc_class);
|
|
|
|
|
void usbh_msc_stop(struct usbh_msc *msc_class);
|
|
|
|
|
|
2022-02-08 11:44:46 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-08-18 21:41:19 +08:00
|
|
|
#endif /* USBH_MSC_H */
|