提交 713b1f00 编写于 作者: qiuyiuestc's avatar qiuyiuestc 提交者: heyuanjie87

Merge pull request #87 from grissiom/static-usbd

Static usbd
...@@ -374,6 +374,20 @@ typedef struct ustorage_csw* ustorage_csw_t; ...@@ -374,6 +374,20 @@ typedef struct ustorage_csw* ustorage_csw_t;
#pragma pack() #pragma pack()
/*
* USB device event loop thread configurations
*/
/* the stack size of USB thread */
#ifndef RT_USBD_THREAD_STACK_SZ
#define RT_USBD_THREAD_STACK_SZ 2048
#endif
/* the priority of USB thread */
#ifndef RT_USBD_THREAD_PRIO
#define RT_USBD_THREAD_PRIO 8
#endif
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
......
...@@ -1274,7 +1274,7 @@ rt_err_t rt_usbd_set_config(udevice_t device, rt_uint8_t value) ...@@ -1274,7 +1274,7 @@ rt_err_t rt_usbd_set_config(udevice_t device, rt_uint8_t value)
return RT_TRUE; return RT_TRUE;
} }
static struct rt_messagequeue *usb_mq; static struct rt_messagequeue usb_mq;
/** /**
* This function is the main entry of usb device thread, it is in charge of * This function is the main entry of usb device thread, it is in charge of
...@@ -1294,7 +1294,7 @@ static void rt_usbd_thread_entry(void* parameter) ...@@ -1294,7 +1294,7 @@ static void rt_usbd_thread_entry(void* parameter)
uep_t ep; uep_t ep;
/* receive message */ /* receive message */
if(rt_mq_recv(usb_mq, if(rt_mq_recv(&usb_mq,
&msg, sizeof(struct udev_msg), &msg, sizeof(struct udev_msg),
RT_WAITING_FOREVER) != RT_EOK ) RT_WAITING_FOREVER) != RT_EOK )
continue; continue;
...@@ -1341,9 +1341,20 @@ rt_err_t rt_usbd_post_event(struct udev_msg* msg, rt_size_t size) ...@@ -1341,9 +1341,20 @@ rt_err_t rt_usbd_post_event(struct udev_msg* msg, rt_size_t size)
RT_ASSERT(msg != RT_NULL); RT_ASSERT(msg != RT_NULL);
/* send message to usb message queue */ /* send message to usb message queue */
return rt_mq_send(usb_mq, (void*)msg, size); return rt_mq_send(&usb_mq, (void*)msg, size);
} }
ALIGN(RT_ALIGN_SIZE)
static rt_uint8_t usb_thread_stack[RT_USBD_THREAD_STACK_SZ];
static struct rt_thread usb_thread;
#define USBD_MQ_MSG_SZ 32
#define USBD_MQ_MAX_MSG 16
/* internal of the message queue: every message is associated with a pointer,
* so in order to recveive USBD_MQ_MAX_MSG messages, we have to allocate more
* than USBD_MQ_MSG_SZ*USBD_MQ_MAX_MSG memery. */
static rt_uint8_t usb_mq_pool[(USBD_MQ_MSG_SZ+sizeof(void*))*USBD_MQ_MAX_MSG];
/** /**
* This function will initialize usb device thread. * This function will initialize usb device thread.
* *
...@@ -1352,21 +1363,16 @@ rt_err_t rt_usbd_post_event(struct udev_msg* msg, rt_size_t size) ...@@ -1352,21 +1363,16 @@ rt_err_t rt_usbd_post_event(struct udev_msg* msg, rt_size_t size)
*/ */
rt_err_t rt_usbd_core_init(void) rt_err_t rt_usbd_core_init(void)
{ {
rt_thread_t thread;
rt_list_init(&device_list); rt_list_init(&device_list);
/* create an usb message queue */ /* create an usb message queue */
usb_mq = rt_mq_create("usbd", 32, 16, RT_IPC_FLAG_FIFO); rt_mq_init(&usb_mq, "usbd", usb_mq_pool, USBD_MQ_MSG_SZ,
sizeof(usb_mq_pool), RT_IPC_FLAG_FIFO);
/* create usb device thread */
thread = rt_thread_create("usbd", rt_usbd_thread_entry, RT_NULL, /* init usb device thread */
2048, 8, 20); rt_thread_init(&usb_thread, "usbd", rt_usbd_thread_entry, RT_NULL,
if(thread != RT_NULL) usb_thread_stack, RT_USBD_THREAD_STACK_SZ, RT_USBD_THREAD_PRIO, 20);
{ /* rt_thread_init should always be OK, so start the thread without further
/* startup usb device thread */ * checking. */
rt_thread_startup(thread); return rt_thread_startup(&usb_thread);
}
return RT_EOK;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册