rt-thread/components/drivers/usb/usbhost/class/mass.h

51 lines
1.3 KiB
C
Raw Normal View History

2017-11-11 10:51:47 +08:00
/*
* Copyright (c) 2006-2023, RT-Thread Development Team
2017-11-11 10:51:47 +08:00
*
2018-10-14 19:37:18 +08:00
* SPDX-License-Identifier: Apache-2.0
2017-11-11 10:51:47 +08:00
*
* Change Logs:
* Date Author Notes
* 2011-12-12 Yi Qiu first version
*/
#ifndef __MASS_H__
#define __MASS_H__
#include <rtthread.h>
#include "dfs_fs.h"
#define MAX_PARTITION_COUNT 4
#define SECTOR_SIZE 512
struct ustor_data
{
struct dfs_partition part;
2017-12-14 03:14:44 +08:00
struct uhintf* intf;
2017-11-11 10:51:47 +08:00
int udisk_id;
const char path;
};
struct ustor
{
upipe_t pipe_in;
upipe_t pipe_out;
rt_uint32_t capicity[2];
2021-03-08 18:19:04 +08:00
2017-11-11 10:51:47 +08:00
struct rt_device dev[MAX_PARTITION_COUNT];
rt_uint8_t dev_cnt;
2021-03-08 18:19:04 +08:00
};
2017-11-11 10:51:47 +08:00
typedef struct ustor* ustor_t;
2017-12-14 03:14:44 +08:00
rt_err_t rt_usbh_storage_get_max_lun(struct uhintf* intf, rt_uint8_t* max_lun);
rt_err_t rt_usbh_storage_reset(struct uhintf* intf);
2021-03-08 18:19:04 +08:00
rt_err_t rt_usbh_storage_read10(struct uhintf* intf, rt_uint8_t *buffer,
2017-11-11 10:51:47 +08:00
rt_uint32_t sector, rt_size_t count, int timeout);
2021-03-08 18:19:04 +08:00
rt_err_t rt_usbh_storage_write10(struct uhintf* intf, rt_uint8_t *buffer,
2017-11-11 10:51:47 +08:00
rt_uint32_t sector, rt_size_t count, int timeout);
2017-12-14 03:14:44 +08:00
rt_err_t rt_usbh_storage_request_sense(struct uhintf* intf, rt_uint8_t* buffer);
rt_err_t rt_usbh_storage_test_unit_ready(struct uhintf* intf);
rt_err_t rt_usbh_storage_inquiry(struct uhintf* intf, rt_uint8_t* buffer);
rt_err_t rt_usbh_storage_get_capacity(struct uhintf* intf, rt_uint8_t* buffer);
2017-11-11 10:51:47 +08:00
#endif