| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- /*
- * Copyright (c) 2025, sakumisu
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include "usb_osal.h"
- #include "usb_errno.h"
- #include "usb_config.h"
- #include "usb_log.h"
- #include <version.h>
- #if (KERNELVERSION >= 0x3020000)
- #include <zephyr/kernel.h>
- #else
- #include <kernel.h>
- #endif
- struct release_thread_work {
- struct k_work work;
- usb_osal_thread_t thread;
- };
- usb_osal_thread_t usb_osal_thread_create(const char *name, uint32_t stack_size, uint32_t prio, usb_thread_entry_t entry, void *args)
- {
- k_tid_t tid = NULL;
- struct k_thread *thread = (struct k_thread *)k_aligned_alloc(8, sizeof(struct k_thread) + stack_size);
- k_thread_stack_t *stack = (k_thread_stack_t *)thread;
- if (thread == NULL) {
- USB_LOG_ERR("Create thread faild\r\n");
- return NULL;
- }
- tid = k_thread_create(thread, (k_thread_stack_t *)&stack[sizeof(struct k_thread)],
- stack_size,
- (k_thread_entry_t)entry,
- args, NULL, NULL,
- prio,
- 0,
- K_NO_WAIT);
- #if defined(CONFIG_THREAD_NAME)
- k_thread_name_set(tid, name);
- #endif
- return (usb_osal_thread_t)tid;
- }
- static void release_thread_handler(struct k_work *work)
- {
- struct release_thread_work *release_work = (struct release_thread_work *)work;
- k_free(release_work->thread);
- k_work_cancel(work);
- k_free(release_work);
- }
- void usb_osal_thread_delete(usb_osal_thread_t thread)
- {
- struct release_thread_work *release_work;
- if (thread == NULL) {
- #if (KERNELVERSION >= 0x3070000)
- thread = k_sched_current_thread_query();
- #else
- thread = z_current_get();
- #endif
- release_work = k_malloc(sizeof(struct release_thread_work));
- release_work->thread = thread;
- k_work_init(&release_work->work, release_thread_handler);
- k_work_submit(&release_work->work);
- k_thread_abort(thread);
- return;
- }
- k_thread_abort(thread);
- k_free(thread);
- }
- void usb_osal_thread_schedule_other(void)
- {
- #if (KERNELVERSION >= 0x3070000)
- struct k_thread *current_thread = k_sched_current_thread_query();
- #else
- struct k_thread *current_thread = z_current_get();
- #endif
- const int old_priority = k_thread_priority_get(current_thread);
- k_thread_priority_set(current_thread, K_LOWEST_APPLICATION_THREAD_PRIO);
- k_yield();
- k_thread_priority_set(current_thread, old_priority);
- }
- usb_osal_sem_t usb_osal_sem_create(uint32_t initial_count)
- {
- struct k_sem *sem;
- sem = k_malloc(sizeof(struct k_sem));
- if (sem == NULL) {
- USB_LOG_ERR("Create semaphore faild\r\n");
- return NULL;
- }
- k_sem_init(sem, initial_count, 1);
- return (usb_osal_sem_t)sem;
- }
- void usb_osal_sem_delete(usb_osal_sem_t sem)
- {
- while (k_sem_take((struct k_sem *)sem, K_NO_WAIT) != 0) {
- break;
- }
- k_free((struct k_sem *)sem);
- }
- int usb_osal_sem_take(usb_osal_sem_t sem, uint32_t timeout)
- {
- if (timeout == USB_OSAL_WAITING_FOREVER) {
- return (k_sem_take((struct k_sem *)sem, K_FOREVER) == 0) ? 0 : -USB_ERR_TIMEOUT;
- } else {
- return (k_sem_take((struct k_sem *)sem, K_MSEC(timeout)) == 0) ? 0 : -USB_ERR_TIMEOUT;
- }
- }
- int usb_osal_sem_give(usb_osal_sem_t sem)
- {
- k_sem_give((struct k_sem *)sem);
- return 0;
- }
- void usb_osal_sem_reset(usb_osal_sem_t sem)
- {
- k_sem_reset((struct k_sem *)sem);
- }
- usb_osal_mutex_t usb_osal_mutex_create(void)
- {
- struct k_mutex *mutex;
- mutex = k_malloc(sizeof(struct k_mutex));
- if (mutex == NULL) {
- USB_LOG_ERR("Create mutex faild\r\n");
- return NULL;
- }
- k_mutex_init(mutex);
- return (usb_osal_mutex_t)mutex;
- }
- void usb_osal_mutex_delete(usb_osal_mutex_t mutex)
- {
- k_free((struct k_mutex *)mutex);
- }
- int usb_osal_mutex_take(usb_osal_mutex_t mutex)
- {
- return (k_mutex_lock((struct k_mutex *)mutex, K_FOREVER) == 0) ? 0 : -USB_ERR_TIMEOUT;
- }
- int usb_osal_mutex_give(usb_osal_mutex_t mutex)
- {
- return (k_mutex_unlock((struct k_mutex *)mutex) == 0) ? 0 : -USB_ERR_INVAL;
- }
- usb_osal_mq_t usb_osal_mq_create(uint32_t max_msgs)
- {
- struct k_msgq *msgq;
- msgq = k_malloc(sizeof(struct k_msgq));
- if (msgq == NULL) {
- USB_LOG_ERR("Create message queue faild\r\n");
- return NULL;
- }
- if (k_msgq_alloc_init(msgq, sizeof(uintptr_t), max_msgs) != 0) {
- return NULL;
- }
- return (usb_osal_mq_t)msgq;
- }
- void usb_osal_mq_delete(usb_osal_mq_t mq)
- {
- struct k_msgq *msgq;
- msgq = (struct k_msgq *)mq;
- k_msgq_purge(msgq);
- k_free(msgq->buffer_start);
- k_free(msgq);
- }
- int usb_osal_mq_send(usb_osal_mq_t mq, uintptr_t addr)
- {
- struct k_msgq *msgq;
- msgq = (struct k_msgq *)mq;
- if (k_is_in_isr()) {
- return (k_msgq_put(msgq, &addr, K_NO_WAIT) == 0) ? 0 : -USB_ERR_TIMEOUT;
- } else {
- return (k_msgq_put(msgq, &addr, K_FOREVER) == 0) ? 0 : -USB_ERR_TIMEOUT;
- }
- }
- int usb_osal_mq_recv(usb_osal_mq_t mq, uintptr_t *addr, uint32_t timeout)
- {
- struct k_msgq *msgq;
- msgq = (struct k_msgq *)mq;
- if (k_is_in_isr()) {
- return (k_msgq_get(msgq, addr, K_NO_WAIT) == 0) ? 0 : -USB_ERR_TIMEOUT;
- } else {
- if (timeout == USB_OSAL_WAITING_FOREVER) {
- return (k_msgq_get(msgq, addr, K_FOREVER) == 0) ? 0 : -USB_ERR_TIMEOUT;
- } else {
- return (k_msgq_get(msgq, addr, K_MSEC(timeout)) == 0) ? 0 : -USB_ERR_TIMEOUT;
- }
- }
- }
- static void zephyr_timer_wrapper(struct k_timer *ktimer)
- {
- struct usb_osal_timer *timer = (struct usb_osal_timer *)ktimer->user_data;
- timer->handler(timer->argument);
- }
- struct usb_osal_timer *usb_osal_timer_create(const char *name, uint32_t timeout_ms, usb_timer_handler_t handler, void *argument, bool is_period)
- {
- struct usb_osal_timer *timer;
- (void)name;
- timer = k_malloc(sizeof(struct usb_osal_timer));
- if (timer == NULL) {
- USB_LOG_ERR("Create timer faild\r\n");
- return NULL;
- }
- memset(timer, 0, sizeof(struct usb_osal_timer));
- timer->timer = k_malloc(sizeof(struct k_timer));
- if (timer->timer == NULL) {
- USB_LOG_ERR("Create timer faild\r\n");
- return NULL;
- }
- timer->handler = handler;
- timer->argument = argument;
- timer->is_period = is_period;
- timer->timeout_ms = timeout_ms;
- k_timer_init(timer->timer, zephyr_timer_wrapper, NULL);
- k_timer_user_data_set(timer->timer, timer);
- return timer;
- }
- void usb_osal_timer_delete(struct usb_osal_timer *timer)
- {
- k_timer_stop(timer->timer);
- k_free(timer->timer);
- k_free(timer);
- }
- void usb_osal_timer_start(struct usb_osal_timer *timer)
- {
- if (timer->is_period) {
- k_timer_start(timer->timer, K_MSEC(timer->timeout_ms), K_MSEC(timer->timeout_ms));
- } else {
- k_timer_start(timer->timer, K_MSEC(timer->timeout_ms), K_NO_WAIT);
- }
- }
- void usb_osal_timer_stop(struct usb_osal_timer *timer)
- {
- k_timer_stop(timer->timer);
- }
- size_t usb_osal_enter_critical_section(void)
- {
- return irq_lock();
- }
- void usb_osal_leave_critical_section(size_t flag)
- {
- irq_unlock(flag);
- }
- void usb_osal_msleep(uint32_t delay)
- {
- k_sleep(K_MSEC(delay));
- }
- void *usb_osal_malloc(size_t size)
- {
- return k_malloc(size);
- }
- void usb_osal_free(void *ptr)
- {
- k_free(ptr);
- }
|