2019-03-20 16:11:42 +07:00
|
|
|
/*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2019-05-14 11:48:05 +07:00
|
|
|
* Copyright (c) 2019 Ha Thach (tinyusb.org)
|
2019-03-20 16:11:42 +07:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* This file is part of the TinyUSB stack.
|
|
|
|
*/
|
2018-09-04 14:20:30 +07:00
|
|
|
|
|
|
|
#ifndef OSAL_MYNEWT_H_
|
|
|
|
#define OSAL_MYNEWT_H_
|
|
|
|
|
|
|
|
#include "os/os.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// TASK API
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
static inline void osal_task_delay(uint32_t msec)
|
|
|
|
{
|
|
|
|
os_time_delay( os_time_ms_to_ticks32(msec) );
|
|
|
|
}
|
|
|
|
|
2019-03-21 00:36:52 +07:00
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// Semaphore API
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
typedef struct os_sem osal_semaphore_def_t;
|
|
|
|
typedef struct os_sem* osal_semaphore_t;
|
|
|
|
|
|
|
|
static inline osal_semaphore_t osal_semaphore_create(osal_semaphore_def_t* semdef)
|
|
|
|
{
|
|
|
|
return (os_sem_init(semdef, 0) == OS_OK) ? (osal_semaphore_t) semdef : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool osal_semaphore_post(osal_semaphore_t sem_hdl, bool in_isr)
|
|
|
|
{
|
|
|
|
(void) in_isr;
|
|
|
|
return os_sem_release(sem_hdl) == OS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool osal_semaphore_wait(osal_semaphore_t sem_hdl, uint32_t msec)
|
|
|
|
{
|
|
|
|
uint32_t const ticks = (msec == OSAL_TIMEOUT_WAIT_FOREVER) ? OS_TIMEOUT_NEVER : os_time_ms_to_ticks32(msec);
|
|
|
|
return os_sem_pend(sem_hdl, ticks) == OS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void osal_semaphore_reset(osal_semaphore_t sem_hdl)
|
|
|
|
{
|
|
|
|
// TODO implement later
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// MUTEX API (priority inheritance)
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
typedef struct os_mutex osal_mutex_def_t;
|
|
|
|
typedef struct os_mutex* osal_mutex_t;
|
|
|
|
|
|
|
|
static inline osal_mutex_t osal_mutex_create(osal_mutex_def_t* mdef)
|
|
|
|
{
|
|
|
|
return (os_mutex_init(mdef) == OS_OK) ? (osal_mutex_t) mdef : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool osal_mutex_lock(osal_mutex_t mutex_hdl, uint32_t msec)
|
|
|
|
{
|
|
|
|
uint32_t const ticks = (msec == OSAL_TIMEOUT_WAIT_FOREVER) ? OS_TIMEOUT_NEVER : os_time_ms_to_ticks32(msec);
|
|
|
|
return os_mutex_pend(mutex_hdl, ticks) == OS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool osal_mutex_unlock(osal_mutex_t mutex_hdl)
|
|
|
|
{
|
|
|
|
return os_mutex_release(mutex_hdl) == OS_OK;
|
|
|
|
}
|
|
|
|
|
2018-09-04 14:20:30 +07:00
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// QUEUE API
|
|
|
|
//--------------------------------------------------------------------+
|
2018-12-05 17:01:19 +07:00
|
|
|
|
|
|
|
// role device/host is used by OS NONE for mutex (disable usb isr) only
|
|
|
|
#define OSAL_QUEUE_DEF(_role, _name, _depth, _type) \
|
2018-09-04 14:20:30 +07:00
|
|
|
static _type _name##_##buf[_depth];\
|
2019-11-29 16:25:08 +01:00
|
|
|
static struct os_event _name##_##evbuf[_depth];\
|
2018-09-04 14:20:30 +07:00
|
|
|
osal_queue_def_t _name = { .depth = _depth, .item_sz = sizeof(_type), .buf = _name##_##buf, .evbuf = _name##_##evbuf};\
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint16_t depth;
|
|
|
|
uint16_t item_sz;
|
|
|
|
void* buf;
|
|
|
|
void* evbuf;
|
|
|
|
|
|
|
|
struct os_mempool mpool;
|
|
|
|
struct os_mempool epool;
|
|
|
|
|
|
|
|
struct os_eventq evq;
|
|
|
|
}osal_queue_def_t;
|
|
|
|
|
|
|
|
typedef osal_queue_def_t* osal_queue_t;
|
|
|
|
|
|
|
|
static inline osal_queue_t osal_queue_create(osal_queue_def_t* qdef)
|
|
|
|
{
|
|
|
|
if ( OS_OK != os_mempool_init(&qdef->mpool, qdef->depth, qdef->item_sz, qdef->buf, "usbd queue") ) return NULL;
|
|
|
|
if ( OS_OK != os_mempool_init(&qdef->epool, qdef->depth, sizeof(struct os_event), qdef->evbuf, "usbd evqueue") ) return NULL;
|
|
|
|
|
|
|
|
os_eventq_init(&qdef->evq);
|
|
|
|
return (osal_queue_t) qdef;
|
|
|
|
}
|
|
|
|
|
2019-03-21 00:54:42 +07:00
|
|
|
static inline bool osal_queue_receive(osal_queue_t const qhdl, void* data)
|
2018-09-04 14:20:30 +07:00
|
|
|
{
|
|
|
|
struct os_event* ev;
|
2019-03-21 00:54:42 +07:00
|
|
|
ev = os_eventq_get(&qhdl->evq);
|
2018-09-04 14:20:30 +07:00
|
|
|
|
2019-03-21 00:54:42 +07:00
|
|
|
memcpy(data, ev->ev_arg, qhdl->item_sz); // copy message
|
|
|
|
os_memblock_put(&qhdl->mpool, ev->ev_arg); // put back mem block
|
|
|
|
os_memblock_put(&qhdl->epool, ev); // put back ev block
|
2018-09-04 14:20:30 +07:00
|
|
|
|
2019-03-21 00:54:42 +07:00
|
|
|
return true;
|
2018-09-04 14:20:30 +07:00
|
|
|
}
|
|
|
|
|
2019-03-21 00:54:42 +07:00
|
|
|
static inline bool osal_queue_send(osal_queue_t const qhdl, void const * data, bool in_isr)
|
2018-09-04 14:20:30 +07:00
|
|
|
{
|
2018-10-23 15:53:29 +07:00
|
|
|
(void) in_isr;
|
|
|
|
|
2018-09-04 14:20:30 +07:00
|
|
|
// get a block from mem pool for data
|
2019-03-21 00:54:42 +07:00
|
|
|
void* ptr = os_memblock_get(&qhdl->mpool);
|
2018-09-04 14:20:30 +07:00
|
|
|
if (!ptr) return false;
|
2019-03-21 00:54:42 +07:00
|
|
|
memcpy(ptr, data, qhdl->item_sz);
|
2018-09-04 14:20:30 +07:00
|
|
|
|
|
|
|
// get a block from event pool to put into queue
|
2019-03-21 00:54:42 +07:00
|
|
|
struct os_event* ev = (struct os_event*) os_memblock_get(&qhdl->epool);
|
2018-09-04 14:20:30 +07:00
|
|
|
if (!ev)
|
|
|
|
{
|
2019-03-21 00:54:42 +07:00
|
|
|
os_memblock_put(&qhdl->mpool, ptr);
|
2018-09-04 14:20:30 +07:00
|
|
|
return false;
|
|
|
|
}
|
2018-10-23 12:19:32 +07:00
|
|
|
tu_memclr(ev, sizeof(struct os_event));
|
2018-09-04 14:20:30 +07:00
|
|
|
ev->ev_arg = ptr;
|
|
|
|
|
2019-03-21 00:54:42 +07:00
|
|
|
os_eventq_put(&qhdl->evq, ev);
|
2018-09-04 14:20:30 +07:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* OSAL_MYNEWT_H_ */
|