2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2021-03-09 05:39:04 +08:00
|
|
|
* sched/mqueue/mq_initialize.c
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2024-09-11 19:45:11 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
2020-03-10 23:26:30 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you 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
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2020-03-10 23:26:30 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2020-03-10 23:26:30 +08:00
|
|
|
* 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.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Included Files
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2009-12-15 02:39:29 +08:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2009-12-15 03:30:18 +08:00
|
|
|
#include <stdint.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <nuttx/kmalloc.h>
|
2024-08-26 17:33:50 +08:00
|
|
|
#include <nuttx/nuttx.h>
|
2023-02-22 11:08:22 +08:00
|
|
|
#include <nuttx/trace.h>
|
2009-12-15 02:39:29 +08:00
|
|
|
|
2014-08-09 02:31:23 +08:00
|
|
|
#include "mqueue/mqueue.h"
|
2024-03-26 19:56:48 +08:00
|
|
|
#include "mqueue/msg.h"
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2024-08-26 17:33:50 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_MQUEUE
|
|
|
|
# define MQ_BLOCK_SIZE \
|
|
|
|
ALIGN_UP(MQ_MSG_SIZE(MQ_MAX_BYTES), sizeof(void *))
|
|
|
|
#endif
|
|
|
|
|
2024-05-29 08:53:32 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Type Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
struct msgpool_s
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_DISABLE_MQUEUE
|
2024-08-26 17:33:50 +08:00
|
|
|
uint8_t mqueue[MQ_BLOCK_SIZE *
|
|
|
|
(CONFIG_PREALLOC_MQ_MSGS +
|
|
|
|
CONFIG_PREALLOC_MQ_IRQ_MSGS)];
|
2024-05-29 08:53:32 +08:00
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_DISABLE_MQUEUE_SYSV
|
|
|
|
struct msgbuf_s msgbuf[CONFIG_PREALLOC_MQ_MSGS];
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2015-10-03 06:30:35 +08:00
|
|
|
* Public Data
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
#ifndef CONFIG_DISABLE_MQUEUE
|
|
|
|
|
2012-07-15 03:30:31 +08:00
|
|
|
/* The g_msgfree is a list of messages that are available for general
|
|
|
|
* use. The number of messages in this list is a system configuration
|
|
|
|
* item.
|
2007-02-18 07:21:28 +08:00
|
|
|
*/
|
|
|
|
|
2024-04-11 15:36:29 +08:00
|
|
|
struct list_node g_msgfree;
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-07-15 03:30:31 +08:00
|
|
|
/* The g_msgfreeInt is a list of messages that are reserved for use by
|
|
|
|
* interrupt handlers.
|
2007-02-18 07:21:28 +08:00
|
|
|
*/
|
|
|
|
|
2024-04-11 15:36:29 +08:00
|
|
|
struct list_node g_msgfreeirq;
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
#endif
|
|
|
|
|
2024-05-29 08:53:32 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* This is a pool of pre-allocated message queue buffers */
|
|
|
|
|
|
|
|
static struct msgpool_s g_msgpool;
|
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Private Functions
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2024-03-26 19:56:48 +08:00
|
|
|
* Name: mq_msgblockinit
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
|
|
|
* Description:
|
2024-03-26 19:56:48 +08:00
|
|
|
* Initialize a block of messages and place them on the free list.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Input Parameters:
|
2007-02-18 07:21:28 +08:00
|
|
|
* queue
|
2012-07-15 03:30:31 +08:00
|
|
|
*
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
#ifndef CONFIG_DISABLE_MQUEUE
|
|
|
|
static FAR void * mq_msgblockinit(FAR struct list_node *list,
|
2024-08-26 17:33:50 +08:00
|
|
|
FAR uint8_t *block,
|
2024-05-29 08:53:32 +08:00
|
|
|
uint16_t nmsgs, uint8_t alloc_type)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2024-08-26 17:33:50 +08:00
|
|
|
FAR struct mqueue_msg_s *mqmsgblock;
|
2024-03-26 19:56:48 +08:00
|
|
|
int i;
|
2024-08-26 17:33:50 +08:00
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
for (i = 0; i < nmsgs; i++)
|
|
|
|
{
|
2024-08-26 17:33:50 +08:00
|
|
|
mqmsgblock = (FAR struct mqueue_msg_s *)block;
|
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
mqmsgblock->type = alloc_type;
|
|
|
|
list_add_tail(list, &mqmsgblock->node);
|
2024-08-26 17:33:50 +08:00
|
|
|
block += MQ_BLOCK_SIZE;
|
2024-03-26 19:56:48 +08:00
|
|
|
}
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2024-08-26 17:33:50 +08:00
|
|
|
return block;
|
2024-03-26 19:56:48 +08:00
|
|
|
}
|
|
|
|
#endif
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: sysv_msgblockinit
|
|
|
|
****************************************************************************/
|
2014-09-30 03:35:32 +08:00
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
#ifndef CONFIG_DISABLE_MQUEUE_SYSV
|
|
|
|
static FAR void *sysv_msgblockinit(FAR struct list_node *list,
|
|
|
|
FAR struct msgbuf_s *msg, uint16_t nmsgs)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < nmsgs; i++)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2024-04-11 15:36:29 +08:00
|
|
|
list_add_tail(list, &msg->node);
|
2024-03-26 19:56:48 +08:00
|
|
|
msg++;
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
2024-03-26 19:56:48 +08:00
|
|
|
|
|
|
|
return msg;
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
2024-03-26 19:56:48 +08:00
|
|
|
#endif
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Public Functions
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2017-10-09 23:06:46 +08:00
|
|
|
* Name: nxmq_initialize
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
|
|
|
* Description:
|
2021-05-06 10:18:49 +08:00
|
|
|
* This function initializes the message system. This function must
|
2012-07-15 03:30:31 +08:00
|
|
|
* be called early in the initialization sequence before any of the
|
|
|
|
* other message interfaces execute.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Input Parameters:
|
2007-02-18 07:21:28 +08:00
|
|
|
* None
|
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Returned Value:
|
2007-02-18 07:21:28 +08:00
|
|
|
* None
|
|
|
|
*
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2017-10-09 23:06:46 +08:00
|
|
|
void nxmq_initialize(void)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2024-05-29 08:53:32 +08:00
|
|
|
FAR void *msg = &g_msgpool;
|
2024-03-26 19:56:48 +08:00
|
|
|
|
2023-02-22 11:08:22 +08:00
|
|
|
sched_trace_begin();
|
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
/* Initialize a block of messages for general use */
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_MQUEUE
|
2024-04-11 15:36:29 +08:00
|
|
|
list_initialize(&g_msgfree);
|
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
msg = mq_msgblockinit(&g_msgfree, msg, CONFIG_PREALLOC_MQ_MSGS,
|
|
|
|
MQ_ALLOC_FIXED);
|
|
|
|
|
|
|
|
/* Initialize a block of messages for use exclusively by
|
2007-02-18 07:21:28 +08:00
|
|
|
* interrupt handlers
|
|
|
|
*/
|
|
|
|
|
2024-04-11 15:36:29 +08:00
|
|
|
list_initialize(&g_msgfreeirq);
|
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
msg = mq_msgblockinit(&g_msgfreeirq, msg, CONFIG_PREALLOC_MQ_IRQ_MSGS,
|
|
|
|
MQ_ALLOC_IRQ);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_MQUEUE_SYSV
|
2024-04-11 15:36:29 +08:00
|
|
|
list_initialize(&g_msgfreelist);
|
|
|
|
|
2024-03-26 19:56:48 +08:00
|
|
|
msg = sysv_msgblockinit(&g_msgfreelist, msg, CONFIG_PREALLOC_MQ_MSGS);
|
|
|
|
#endif
|
2023-02-22 11:08:22 +08:00
|
|
|
|
|
|
|
sched_trace_end();
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|