| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810 |
- /*
- * Copyright (c) 2014, Mentor Graphics Corporation
- * Copyright (c) 2015 Xilinx, Inc.
- * Copyright (c) 2016 Freescale Semiconductor, Inc.
- * Copyright 2016-2023 NXP
- * Copyright 2021 ACRIOS Systems s.r.o.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * 3. Neither the name of the copyright holder nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
- /**************************************************************************
- * FILE NAME
- *
- * rpmsg_env_freertos.c
- *
- *
- * DESCRIPTION
- *
- * This file is FreeRTOS Implementation of env layer for OpenAMP.
- *
- *
- **************************************************************************/
- #include "rtthread.h"
- #include "rthw.h"
- #define DBG_TAG "rpmsg.env"
- #define DBG_LVL DBG_WARNING
- #include <rtdbg.h>
- #include "rpmsg_compiler.h"
- #include "rpmsg_env.h"
- #include "rpmsg_platform.h"
- #include "virtqueue.h"
- #include "rpmsg_lite.h"
- #include <stdlib.h>
- #include <string.h>
- static int32_t env_init_counter = 0;
- static rt_sem_t env_sema = ((void *)0);
- static rt_event_t event_group = ((void *)0);
- #if defined(RL_USE_STATIC_API) && (RL_USE_STATIC_API == 1)
- struct rt_semaphore env_sem_static_context;
- struct rt_event event_group_static_context;
- #endif
- /* RL_ENV_MAX_MUTEX_COUNT is an arbitrary count greater than 'count'
- if the inital count is 1, this function behaves as a mutex
- if it is greater than 1, it acts as a "resource allocator" with
- the maximum of 'count' resources available.
- Currently, only the first use-case is applicable/applied in RPMsg-Lite.
- */
- #define RL_ENV_MAX_MUTEX_COUNT (1)
- /* Max supported ISR counts */
- #define ISR_COUNT (32U)
- /*!
- * Structure to keep track of registered ISR's.
- */
- struct isr_info
- {
- void *data;
- };
- static struct isr_info isr_table[ISR_COUNT];
- #if defined(RL_USE_ENVIRONMENT_CONTEXT) && (RL_USE_ENVIRONMENT_CONTEXT == 1)
- #error "This RPMsg-Lite port requires RL_USE_ENVIRONMENT_CONTEXT set to 0"
- #endif
- #if defined(AARCH64)
- static int32_t os_in_isr(void)
- {
- return 0;
- }
- #endif
- /*!
- * env_in_isr
- *
- * @returns - true, if currently in ISR
- *
- */
- static int32_t env_in_isr(void)
- {
- #if defined(AARCH64)
- return os_in_isr();
- #else
- return platform_in_isr();
- #endif
- return 0;
- }
- /*!
- * env_wait_for_link_up
- *
- * Wait until the link_state parameter of the rpmsg_lite_instance is set.
- * Utilize events to avoid busy loop implementation.
- *
- */
- uint32_t env_wait_for_link_up(volatile uint32_t *link_state, uint32_t link_id, uint32_t timeout_ms)
- {
- rt_uint32_t recved;
- rt_int32_t timeout;
- if (*link_state != 1U)
- {
- if (timeout_ms == RL_BLOCK)
- timeout = RT_WAITING_FOREVER;
- else
- timeout = rt_tick_from_millisecond(timeout_ms);
- if (rt_event_recv(event_group, 1 << link_id, RT_EVENT_FLAG_CLEAR | RT_EVENT_FLAG_OR, timeout, &recved) == RT_EOK)
- {
- return 1U;
- }
- else
- {
- LOG_E("rt_event_recv failed...");
- return 0U;
- }
- }
- else
- {
- return 1U;
- }
- }
- /*!
- * env_tx_callback
- *
- * Set event to notify task waiting in env_wait_for_link_up().
- *
- */
- void env_tx_callback(uint32_t link_id)
- {
- rt_event_send(event_group, 1UL << link_id);
- }
- /*!
- * env_init
- *
- * Initializes OS/BM environment.
- *
- */
- int32_t env_init(void)
- {
- int32_t retval;
- rt_base_t level;
- level = rt_hw_interrupt_disable(); /* stop scheduler */
- /* verify 'env_init_counter' */
- RL_ASSERT(env_init_counter >= 0);
- if (env_init_counter < 0)
- {
- /* coco begin validated: (env_init_counter < 0) condition will never met unless RAM is corrupted */
- rt_hw_interrupt_enable(level); /* re-enable scheduler */
- return -1;
- /* coco end */
- }
- env_init_counter++;
- /* multiple call of 'env_init' - return ok */
- if (env_init_counter == 1)
- {
- /* first call */
- #if defined(RL_USE_STATIC_API) && (RL_USE_STATIC_API == 1)
- if (rt_sem_init(&env_sem_static_context, "rl_sem", 0, RT_IPC_FLAG_FIFO) != RT_EOK)
- {
- LOG_E("rt_sem_init failed ...");
- rt_hw_interrupt_enable(level);
- return -1;
- }
- env_sema = &env_sem_static_context;
- if (rt_event_init(&event_group_static_context, "rl_event", RT_IPC_FLAG_FIFO) != EOK)
- {
- LOG_E("rt_event_init failed ...");
- rt_sem_detach(&env_sem_static_context);
- rt_hw_interrupt_enable(level);
- return -1;
- }
- event_group = &event_group_static_context;
- #else
- env_sema = rt_sem_create("rl_sem", 0, RT_IPC_FLAG_FIFO);
- if (env_sema == RT_NULL)
- {
- rt_hw_interrupt_enable(level);
- return -1;
- }
- event_group = rt_event_create("rl_event", RT_IPC_FLAG_FIFO);
- if (event_group == RT_NULL)
- {
- rt_sem_delete(env_sema);
- rt_hw_interrupt_enable(level);
- return -1;
- }
- #endif
- (void)memset(isr_table, 0, sizeof(isr_table));
- rt_hw_interrupt_enable(level);
- retval = platform_init();
- return retval;
- }
- else
- {
- rt_hw_interrupt_enable(level);
- /* Get the semaphore and then return it,
- * this allows for platform_init() to block
- * if needed and other tasks to wait for the
- * blocking to be done.
- * This is in ENV layer as this is ENV specific.*/
- if (rt_sem_take(env_sema, RT_WAITING_FOREVER) == RT_EOK)
- {
- rt_sem_release(env_sema);
- }
- return 0;
- }
- }
- /*!
- * env_deinit
- *
- * Uninitializes OS/BM environment.
- *
- * @returns - execution status
- */
- int32_t env_deinit(void)
- {
- int32_t retval;
- rt_base_t level;
- level = rt_hw_interrupt_disable(); /* stop scheduler */
- /* verify 'env_init_counter' */
- RL_ASSERT(env_init_counter > 0);
- if (env_init_counter <= 0)
- {
- rt_hw_interrupt_enable(level); /* re-enable scheduler */
- return -1;
- }
- /* counter on zero - call platform deinit */
- env_init_counter--;
- /* multiple call of 'env_deinit' - return ok */
- if (env_init_counter <= 0)
- {
- /* last call */
- (void)memset(isr_table, 0, sizeof(isr_table));
- retval = platform_deinit();
- rt_event_delete(event_group);
- event_group = ((void *)0);
- rt_sem_delete(env_sema);
- env_sema = ((void *)0);
- rt_hw_interrupt_enable(level);
- return retval;
- }
- else
- {
- rt_hw_interrupt_enable(level);
- return 0;
- }
- }
- #if !(defined(RL_USE_STATIC_API) && (RL_USE_STATIC_API == 1))
- /*!
- * env_allocate_memory - implementation
- *
- * @param size
- */
- void *env_allocate_memory(uint32_t size)
- {
- return (rt_malloc(size));
- }
- /*!
- * env_free_memory - implementation
- *
- * @param ptr
- */
- void env_free_memory(void *ptr)
- {
- if (ptr != ((void *)0))
- {
- rt_free(ptr);
- }
- }
- #endif
- /*!
- *
- * env_memset - implementation
- *
- * @param ptr
- * @param value
- * @param size
- */
- void env_memset(void *ptr, int32_t value, uint32_t size)
- {
- (void)memset(ptr, value, size);
- }
- /*!
- *
- * env_memcpy - implementation
- *
- * @param dst
- * @param src
- * @param len
- */
- void env_memcpy(void *dst, void const *src, uint32_t len)
- {
- (void)memcpy(dst, src, len);
- }
- /*!
- *
- * env_strcmp - implementation
- *
- * @param dst
- * @param src
- */
- int32_t env_strcmp(const char *dst, const char *src)
- {
- return (strcmp(dst, src));
- }
- /*!
- *
- * env_strncpy - implementation
- *
- * @param dest
- * @param src
- * @param len
- */
- void env_strncpy(char *dest, const char *src, uint32_t len)
- {
- (void)strncpy(dest, src, len);
- }
- /*!
- *
- * env_strncmp - implementation
- *
- * @param dest
- * @param src
- * @param len
- */
- int32_t env_strncmp(char *dest, const char *src, uint32_t len)
- {
- return (strncmp(dest, src, len));
- }
- /*!
- *
- * env_mb - implementation
- *
- */
- void env_mb(void)
- {
- MEM_BARRIER();
- }
- /*!
- * env_rmb - implementation
- */
- void env_rmb(void)
- {
- MEM_BARRIER();
- }
- /*!
- * env_wmb - implementation
- */
- void env_wmb(void)
- {
- MEM_BARRIER();
- }
- /*!
- * env_map_vatopa - implementation
- *
- * @param address
- */
- uint32_t env_map_vatopa(void *address)
- {
- return platform_vatopa(address);
- }
- /*!
- * env_map_patova - implementation
- *
- * @param address
- */
- void *env_map_patova(uint32_t address)
- {
- return platform_patova(address);
- }
- /*!
- * env_create_mutex
- *
- * Creates a mutex with the given initial count.
- *
- */
- #if defined(RL_USE_STATIC_API) && (RL_USE_STATIC_API == 1)
- int32_t env_create_mutex(void **lock, int32_t count, void *context)
- #else
- int32_t env_create_mutex(void **lock, int32_t count)
- #endif
- {
- if (count > RL_ENV_MAX_MUTEX_COUNT)
- {
- return -1;
- }
- #if defined(RL_USE_STATIC_API) && (RL_USE_STATIC_API == 1)
- if (rt_mutex_init(context, "rl_mutex", RT_IPC_FLAG_PRIO) != RT_EOK)
- {
- LOG_E("rt_mutex_init failed ...");
- return -1;
- }
- *lock = context;
- #else
- *lock = rt_mutex_create("rl_mutex", RT_IPC_FLAG_PRIO);
- #endif
- if (*lock != ((void *)0))
- {
- return 0;
- }
- else
- {
- return -1;
- }
- }
- /*!
- * env_delete_mutex
- *
- * Deletes the given lock
- *
- */
- void env_delete_mutex(void *lock)
- {
- rt_mutex_delete(lock);
- }
- /*!
- * env_lock_mutex
- *
- * Tries to acquire the lock, if lock is not available then call to
- * this function will suspend.
- */
- void env_lock_mutex(void *lock)
- {
- rt_mutex_take(lock, RT_WAITING_FOREVER);
- }
- /*!
- * env_unlock_mutex
- *
- * Releases the given lock.
- */
- void env_unlock_mutex(void *lock)
- {
- rt_mutex_release(lock);
- }
- /*!
- * env_create_sync_lock
- *
- * Creates a synchronization lock primitive. It is used
- * when signal has to be sent from the interrupt context to main
- * thread context.
- */
- #if defined(RL_USE_STATIC_API) && (RL_USE_STATIC_API == 1)
- int32_t env_create_sync_lock(void **lock, int32_t state, void *context)
- {
- return env_create_mutex(lock, state, context); /* state=1 .. initially free */
- }
- #else
- int32_t env_create_sync_lock(void **lock, int32_t state)
- {
- return env_create_mutex(lock, state); /* state=1 .. initially free */
- }
- #endif
- /*!
- * env_delete_sync_lock
- *
- * Deletes the given lock
- *
- */
- void env_delete_sync_lock(void *lock)
- {
- if (lock != ((void *)0))
- {
- env_delete_mutex(lock);
- }
- }
- /*!
- * env_acquire_sync_lock
- *
- * Tries to acquire the lock, if lock is not available then call to
- * this function waits for lock to become available.
- */
- void env_acquire_sync_lock(void *lock)
- {
- rt_mutex_take((rt_mutex_t)lock, RT_WAITING_FOREVER);
- }
- /*!
- * env_release_sync_lock
- *
- * Releases the given lock.
- */
- void env_release_sync_lock(void *lock)
- {
- rt_mutex_release((rt_mutex_t)lock);
- }
- /*!
- * env_sleep_msec
- *
- * Suspends the calling thread for given time , in msecs.
- */
- void env_sleep_msec(uint32_t num_msec)
- {
- rt_thread_mdelay(num_msec);
- }
- /*!
- * env_register_isr
- *
- * Registers interrupt handler data for the given interrupt vector.
- *
- * @param vector_id - virtual interrupt vector number
- * @param data - interrupt handler data (virtqueue)
- */
- void env_register_isr(uint32_t vector_id, void *data)
- {
- RL_ASSERT(vector_id < ISR_COUNT);
- if (vector_id < ISR_COUNT)
- {
- isr_table[vector_id].data = data;
- }
- }
- /*!
- * env_unregister_isr
- *
- * Unregisters interrupt handler data for the given interrupt vector.
- *
- * @param vector_id - virtual interrupt vector number
- */
- void env_unregister_isr(uint32_t vector_id)
- {
- RL_ASSERT(vector_id < ISR_COUNT);
- if (vector_id < ISR_COUNT)
- {
- isr_table[vector_id].data = ((void *)0);
- }
- }
- /*!
- * env_enable_interrupt
- *
- * Enables the given interrupt
- *
- * @param vector_id - virtual interrupt vector number
- */
- void env_enable_interrupt(uint32_t vector_id)
- {
- (void)platform_interrupt_enable(vector_id);
- }
- /*!
- * env_disable_interrupt
- *
- * Disables the given interrupt
- *
- * @param vector_id - virtual interrupt vector number
- */
- void env_disable_interrupt(uint32_t vector_id)
- {
- (void)platform_interrupt_disable(vector_id);
- }
- /*!
- * env_map_memory
- *
- * Enables memory mapping for given memory region.
- *
- * @param pa - physical address of memory
- * @param va - logical address of memory
- * @param size - memory size
- * param flags - flags for cache/uncached and access type
- */
- void env_map_memory(uint32_t pa, uint32_t va, uint32_t size, uint32_t flags)
- {
- platform_map_mem_region(va, pa, size, flags);
- }
- /*!
- * env_disable_cache
- *
- * Disables system caches.
- *
- */
- void env_disable_cache(void)
- {
- platform_cache_all_flush_invalidate();
- platform_cache_disable();
- }
- /*!
- *
- * env_get_timestamp
- *
- * Returns a 64 bit time stamp.
- *
- *
- */
- uint64_t env_get_timestamp(void)
- {
- return (uint64_t)rt_tick_get();
- }
- /*========================================================= */
- /* Util data / functions */
- void env_isr(uint32_t vector)
- {
- struct isr_info *info;
- RL_ASSERT(vector < ISR_COUNT);
- if (vector < ISR_COUNT)
- {
- info = &isr_table[vector];
- virtqueue_notification((struct virtqueue *)info->data);
- }
- }
- /*
- * env_create_queue
- *
- * Creates a message queue.
- *
- * @param queue - pointer to created queue
- * @param length - maximum number of elements in the queue
- * @param element_size - queue element size in bytes
- * @param queue_static_storage - pointer to queue static storage buffer
- * @param queue_static_context - pointer to queue static context
- *
- * @return - status of function execution
- */
- #if defined(RL_USE_STATIC_API) && (RL_USE_STATIC_API == 1)
- int32_t env_create_queue(void **queue,
- int32_t length,
- int32_t element_size,
- uint8_t *queue_static_storage,
- rpmsg_static_queue_ctxt *queue_static_context)
- {
- if (rt_mq_init(queue_static_context, "rl_mq", queue_static_storage, element_size, length, RT_IPC_FLAG_PRIO) != RT_EOK)
- {
- LOG_E("rt_mq_init failed ...");
- return -1;
- }
- *queue = queue_static_context;
- #else
- int32_t env_create_queue(void **queue, int32_t length, int32_t element_size)
- {
- *queue = rt_mq_create("rl_mq", element_size, length, RT_IPC_FLAG_PRIO);
- #endif
- if (*queue != ((void *)0))
- {
- return 0;
- }
- else
- {
- LOG_E("rt_mq_create failed...");
- }
- return -1;
- }
- /*!
- * env_delete_queue
- *
- * Deletes the message queue.
- *
- * @param queue - queue to delete
- */
- void env_delete_queue(void *queue)
- {
- rt_mq_delete(queue);
- }
- /*!
- * env_put_queue
- *
- * Put an element in a queue.
- *
- * @param queue - queue to put element in
- * @param msg - pointer to the message to be put into the queue
- * @param timeout_ms - timeout in ms
- *
- * @return - status of function execution
- */
- int32_t env_put_queue(void *queue, void *msg, uintptr_t timeout_ms)
- {
- rt_int32_t timeout;
- if (timeout_ms == RL_BLOCK)
- timeout = RT_WAITING_FOREVER;
- else
- timeout = rt_tick_from_millisecond(timeout_ms);
- rt_mq_t mq = (rt_mq_t)queue;
- rt_err_t ret = rt_mq_send_wait(mq, msg, mq->msg_size, timeout);
- if (ret < 0)
- {
- LOG_E("rt_mq_send_wait failed ret:%d", ret);
- return 0;
- }
- else
- LOG_D("rt_mq_send_wait success...");
-
- return 1;
- }
- /*!
- * env_get_queue
- *
- * Get an element out of a queue.
- *
- * @param queue - queue to get element from
- * @param msg - pointer to a memory to save the message
- * @param timeout_ms - timeout in ms
- *
- * @return - status of function execution
- */
- int32_t env_get_queue(void *queue, void *msg, uintptr_t timeout_ms)
- {
- rt_int32_t timeout;
- if (timeout_ms == RL_BLOCK)
- timeout = RT_WAITING_FOREVER;
- else
- timeout = rt_tick_from_millisecond(timeout_ms);
- rt_mq_t mq = (rt_mq_t)queue;
- rt_err_t ret = rt_mq_recv(mq, msg, mq->msg_size, timeout);
- if (ret < 0)
- {
- LOG_E("rt_mq_recv failed ret:%d", ret);
- return 0;
- }
- else
- LOG_D("rt_mq_recv success...");
- return 1;
- }
- /*!
- * env_get_current_queue_size
- *
- * Get current queue size.
- *
- * @param queue - queue pointer
- *
- * @return - Number of queued items in the queue
- */
- int32_t env_get_current_queue_size(void *queue)
- {
- rt_mq_t mq = (rt_mq_t)queue;
-
- return mq->entry;
- }
|