mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-19 05:55:22 +00:00
Change all the Intel and Wind River code license from BSD-3 to Apache 2. Change-Id: Id8be2c1c161a06ea8a0b9f38e17660e11dbb384b Signed-off-by: Javier B Perez Hernandez <javier.b.perez.hernandez@linux.intel.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com> Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
246 lines
6.2 KiB
C
246 lines
6.2 KiB
C
/*
|
|
* Copyright (c) 1997-2014 Wind River Systems, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @file mailbox.h
|
|
* @brief Microkernel mailbox header file
|
|
*/
|
|
|
|
|
|
#ifndef _MAILBOX_H
|
|
#define _MAILBOX_H
|
|
|
|
|
|
/**
|
|
* @brief Microkernel Mailboxes
|
|
* @defgroup microkernel_mailbox Microkernel Mailboxes
|
|
* @ingroup microkernel_services
|
|
* @{
|
|
*/
|
|
|
|
/* externs */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @cond internal
|
|
*/
|
|
extern int _task_mbox_put(kmbox_t mbox,
|
|
kpriority_t prio,
|
|
struct k_msg *M,
|
|
int32_t time);
|
|
|
|
extern int _task_mbox_get(kmbox_t mbox, struct k_msg *M, int32_t time);
|
|
|
|
extern void _task_mbox_block_put(kmbox_t mbox,
|
|
kpriority_t prio,
|
|
struct k_msg *M,
|
|
ksem_t sem);
|
|
|
|
extern void _task_mbox_data_get(struct k_msg *M);
|
|
|
|
extern int _task_mbox_data_block_get(struct k_msg *M,
|
|
struct k_block *rxblock,
|
|
kmemory_pool_t pid,
|
|
int32_t time);
|
|
/**
|
|
* @brief Initializer for microkernel mailbox
|
|
*/
|
|
#define __K_MAILBOX_DEFAULT \
|
|
{ \
|
|
.writers = NULL, \
|
|
.readers = NULL, \
|
|
.count = 0, \
|
|
}
|
|
/**
|
|
* @endcond
|
|
*/
|
|
|
|
/**
|
|
* @brief Send a message to a mailbox
|
|
*
|
|
* This routine sends a message to a mailbox and looks for a matching receiver.
|
|
*
|
|
* @param b mailbox
|
|
* @param p priority of data transfer
|
|
* @param m pointer to message to send
|
|
*
|
|
* @return RC_OK, RC_FAIL on success, failure respectively
|
|
*/
|
|
#define task_mbox_put(b, p, m) _task_mbox_put(b, p, m, TICKS_NONE)
|
|
|
|
/**
|
|
* @brief Send a message to a mailbox and wait
|
|
*
|
|
* This routine sends a message to a mailbox and looks for a matching receiver.
|
|
*
|
|
* @param b mailbox
|
|
* @param p priority of data transfer
|
|
* @param m pointer to message to send
|
|
*
|
|
* @return RC_OK, RC_FAIL on success, failure respectively
|
|
*/
|
|
#define task_mbox_put_wait(b, p, m) _task_mbox_put(b, p, m, TICKS_UNLIMITED)
|
|
|
|
#ifdef CONFIG_SYS_CLOCK_EXISTS
|
|
|
|
/**
|
|
* @brief Send a message to a mailbox and wait for timeout
|
|
*
|
|
* This routine sends a message to a mailbox and looks for a matching receiver.
|
|
*
|
|
* @param b mailbox
|
|
* @param p priority of data transfer
|
|
* @param m pointer to message to send
|
|
* @param t maximum number of ticks to wait
|
|
*
|
|
* @return RC_OK, RC_FAIL, RC_TIME on success, failure, timeout respectively
|
|
*/
|
|
#define task_mbox_put_wait_timeout(b, p, m, t) _task_mbox_put(b, p, m, t)
|
|
#endif
|
|
|
|
/**
|
|
* @brief Gets struct k_msg message header structure information from
|
|
* a mailbox
|
|
*
|
|
* @param b mailbox
|
|
* @param m pointer to message
|
|
*
|
|
* @return RC_OK, RC_FAIL on success, failure respectively
|
|
*/
|
|
#define task_mbox_get(b, m) _task_mbox_get(b, m, TICKS_NONE)
|
|
|
|
/**
|
|
* @brief Gets struct k_msg message header structure information from
|
|
* a mailbox and wait
|
|
*
|
|
* @param b mailbox
|
|
* @param m pointer to message
|
|
*
|
|
* @return RC_OK, RC_FAIL on success, failure respectively
|
|
*/
|
|
#define task_mbox_get_wait(b, m) _task_mbox_get(b, m, TICKS_UNLIMITED)
|
|
|
|
#ifdef CONFIG_SYS_CLOCK_EXISTS
|
|
|
|
/**
|
|
* @brief Gets struct k_msg message header structure information from
|
|
* a mailbox and wait with timeout.
|
|
*
|
|
* @param b mailbox
|
|
* @param m pointer to message
|
|
* @param t maximum number of ticks to wait
|
|
*
|
|
* @return RC_OK, RC_FAIL, RC_TIME on success, failure, timeout respectively
|
|
*/
|
|
#define task_mbox_get_wait_timeout(b, m, t) _task_mbox_get(b, m, t)
|
|
#endif
|
|
|
|
/**
|
|
* @brief Send a message asynchronously to a mailbox
|
|
*
|
|
* This routine sends a message to a mailbox and does not wait for a matching
|
|
* receiver. There is no exchange header returned to the sender. When the data
|
|
* has been transferred to the receiver, the semaphore signaling is performed.
|
|
*
|
|
* @param b mailbox to which to send message
|
|
* @param p priority of data transfer
|
|
* @param m pointer to message to send
|
|
* @param s semaphore to signal when transfer is complete
|
|
*
|
|
* @return N/A
|
|
*/
|
|
#define task_mbox_block_put(b, p, m, s) _task_mbox_block_put(b, p, m, s)
|
|
|
|
|
|
/**
|
|
* @brief Get message data
|
|
*
|
|
* This routine is called for either of the two following purposes:
|
|
* 1. To transfer data if the call to task_mbox_get() resulted in a non-zero size
|
|
* field in the struct k_msg header structure.
|
|
* 2. To wake up and release a transmitting task that is blocked on a call to
|
|
* task_mbox_put[wait|wait_timeout]().
|
|
*
|
|
* @param m message from which to get data
|
|
*
|
|
* @return N/A
|
|
*/
|
|
#define task_mbox_data_get(m) _task_mbox_data_get(m)
|
|
|
|
/**
|
|
* @brief Get the mailbox data and place in a memory pool block
|
|
*
|
|
* @param m message from which to get data
|
|
* @param b block
|
|
* @param p pool
|
|
*
|
|
* @return RC_OK upon success, RC_FAIL upon failure
|
|
*/
|
|
#define task_mbox_data_block_get(m, b, p) \
|
|
_task_mbox_data_block_get(m, b, p, TICKS_NONE)
|
|
|
|
/**
|
|
* @brief Get the mailbox data and place in a memory pool block and wait
|
|
*
|
|
* @param m message from which to get data
|
|
* @param b block
|
|
* @param p pool
|
|
*
|
|
* @return RC_OK upon success, RC_FAIL upon failure
|
|
*/
|
|
#define task_mbox_data_block_get_wait(m, b, p) \
|
|
_task_mbox_data_block_get(m, b, p, TICKS_UNLIMITED)
|
|
|
|
#ifdef CONFIG_SYS_CLOCK_EXISTS
|
|
/**
|
|
* @brief Get the mailbox data and place in a memory pool block and wait
|
|
*
|
|
* @param m message from which to get data
|
|
* @param b block
|
|
* @param p pool
|
|
* @param t timeout
|
|
*
|
|
* @return RC_OK upon success, RC_FAIL upon failure
|
|
*/
|
|
#define task_mbox_data_block_get_wait_timeout(m, b, p, t) \
|
|
_task_mbox_data_block_get(m, b, p, t)
|
|
#endif
|
|
|
|
|
|
/**
|
|
* @brief Define a private microkernel mailbox
|
|
*
|
|
* This declares and initializes a private mailbox. The new mailbox
|
|
* can be passed to the microkernel mailbox functions.
|
|
*
|
|
* @param name Name of the mailbox
|
|
*/
|
|
#define DEFINE_MAILBOX(name) \
|
|
struct _k_mbox_struct _k_mbox_obj_##name = __K_MAILBOX_DEFAULT; \
|
|
const kmbox_t name = (kmbox_t)&_k_mbox_obj_##name;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
#endif /* _MAILBOX_H */
|