ipc.c 65.6 KB
Newer Older
1
/*
2
 * Copyright (c) 2006-2018, RT-Thread Development Team
B
Bernard Xiong 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
5 6 7 8 9
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-03-14     Bernard      the first version
 * 2006-04-25     Bernard      implement semaphore
10
 * 2006-05-03     Bernard      add RT_IPC_DEBUG
11 12 13 14 15 16 17 18 19 20
 *                             modify the type of IPC waiting time to rt_int32_t
 * 2006-05-10     Bernard      fix the semaphore take bug and add IPC object
 * 2006-05-12     Bernard      implement mailbox and message queue
 * 2006-05-20     Bernard      implement mutex
 * 2006-05-23     Bernard      implement fast event
 * 2006-05-24     Bernard      implement event
 * 2006-06-03     Bernard      fix the thread timer init bug
 * 2006-06-05     Bernard      fix the mutex release bug
 * 2006-06-07     Bernard      fix the message queue send bug
 * 2006-08-04     Bernard      add hook support
B
bernard.xiong 已提交
21
 * 2009-05-21     Yi.qiu       fix the sem release bug
22 23
 * 2009-07-18     Bernard      fix the event clear bug
 * 2009-09-09     Bernard      remove fast event and fix ipc release bug
24
 * 2009-10-10     Bernard      change semaphore and mutex value to unsigned value
B
bernard.xiong 已提交
25
 * 2009-10-25     Bernard      change the mb/mq receive timeout to 0 if the
26
 *                             re-calculated delta tick is a negative number.
B
bernard.xiong 已提交
27
 * 2009-12-16     Bernard      fix the rt_ipc_object_suspend issue when IPC flag
28
 *                             is RT_IPC_FLAG_PRIO
29
 * 2010-01-20     mbbill       remove rt_ipc_object_decrease function.
30
 * 2010-04-20     Bernard      move memcpy outside interrupt disable in mq
qiuyiuestc's avatar
qiuyiuestc 已提交
31
 * 2010-10-26     yi.qiu       add module support in rt_mp_delete and rt_mq_delete
32
 * 2010-11-10     Bernard      add IPC reset command implementation.
33
 * 2011-12-18     Bernard      add more parameter checking in message queue
34
 * 2013-09-14     Grissiom     add an option check in rt_event_recv
B
Bernard Xiong 已提交
35
 * 2018-10-02     Bernard      add 64bit support for mailbox
36
 * 2019-09-16     tyx          add send wait support for message queue
37
 * 2020-07-29     Meco Man     fix thread->event_set/event_info when received an 
mysterywolf's avatar
mysterywolf 已提交
38 39 40
 *                             event without pending
 * 2020-10-11     Meco Man     add semaphore values' overflow-check code
 *                             in the function of rt_sem_release
41 42 43 44 45 46
 */

#include <rtthread.h>
#include <rthw.h>

#ifdef RT_USING_HOOK
D
dzzxzz 已提交
47 48 49
extern void (*rt_object_trytake_hook)(struct rt_object *object);
extern void (*rt_object_take_hook)(struct rt_object *object);
extern void (*rt_object_put_hook)(struct rt_object *object);
50 51 52 53 54 55
#endif

/**
 * @addtogroup IPC
 */

D
dogandog 已提交
56
/**@{*/
57 58 59 60 61 62 63 64 65 66

/**
 * This function will initialize an IPC object
 *
 * @param ipc the IPC object
 *
 * @return the operation status, RT_EOK on successful
 */
rt_inline rt_err_t rt_ipc_object_init(struct rt_ipc_object *ipc)
{
B
Bernard Xiong 已提交
67
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
68
    rt_list_init(&(ipc->suspend_thread));
69

D
dzzxzz@gmail.com 已提交
70
    return RT_EOK;
71 72 73
}

/**
D
dzzxzz@gmail.com 已提交
74 75
 * This function will suspend a thread to a specified list. IPC object or some
 * double-queue object (mailbox etc.) contains this kind of list.
76
 *
B
bernard.xiong@gmail.com 已提交
77
 * @param list the IPC suspended thread list
78
 * @param thread the thread object to be suspended
D
dzzxzz@gmail.com 已提交
79 80
 * @param flag the IPC object flag,
 *        which shall be RT_IPC_FLAG_FIFO/RT_IPC_FLAG_PRIO.
81 82 83
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz@gmail.com 已提交
84 85 86
rt_inline rt_err_t rt_ipc_list_suspend(rt_list_t        *list,
                                       struct rt_thread *thread,
                                       rt_uint8_t        flag)
87
{
D
dzzxzz@gmail.com 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
    /* suspend thread */
    rt_thread_suspend(thread);

    switch (flag)
    {
    case RT_IPC_FLAG_FIFO:
        rt_list_insert_before(list, &(thread->tlist));
        break;

    case RT_IPC_FLAG_PRIO:
        {
            struct rt_list_node *n;
            struct rt_thread *sthread;

            /* find a suitable position */
            for (n = list->next; n != list; n = n->next)
            {
                sthread = rt_list_entry(n, struct rt_thread, tlist);

                /* find out */
                if (thread->current_priority < sthread->current_priority)
                {
                    /* insert this thread before the sthread */
                    rt_list_insert_before(&(sthread->tlist), &(thread->tlist));
                    break;
                }
            }

            /*
             * not found a suitable position,
             * append to the end of suspend_thread list
             */
            if (n == list)
                rt_list_insert_before(list, &(thread->tlist));
        }
        break;
C
chenchaoqun 已提交
124 125 126

    default:
        break;  
D
dzzxzz@gmail.com 已提交
127 128 129
    }

    return RT_EOK;
130 131 132
}

/**
133
 * This function will resume the first thread in the list of a IPC object:
134 135 136
 * - remove the thread from suspend queue of IPC object
 * - put the thread into system ready queue
 *
137
 * @param list the thread list
138 139 140
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz 已提交
141
rt_inline rt_err_t rt_ipc_list_resume(rt_list_t *list)
142
{
D
dzzxzz@gmail.com 已提交
143
    struct rt_thread *thread;
144

D
dzzxzz@gmail.com 已提交
145 146
    /* get thread entry */
    thread = rt_list_entry(list->next, struct rt_thread, tlist);
147

D
dzzxzz@gmail.com 已提交
148
    RT_DEBUG_LOG(RT_DEBUG_IPC, ("resume thread:%s\n", thread->name));
149

D
dzzxzz@gmail.com 已提交
150 151
    /* resume it */
    rt_thread_resume(thread);
152

D
dzzxzz@gmail.com 已提交
153
    return RT_EOK;
154 155 156
}

/**
157 158
 * This function will resume all suspended threads in a list, including
 * suspend list of IPC object and private list of mailbox etc.
159
 *
160
 * @param list of the threads to resume
161 162 163
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz 已提交
164
rt_inline rt_err_t rt_ipc_list_resume_all(rt_list_t *list)
165
{
D
dzzxzz@gmail.com 已提交
166 167 168
    struct rt_thread *thread;
    register rt_ubase_t temp;

B
Bernard Xiong 已提交
169
    /* wakeup all suspended threads */
D
dzzxzz@gmail.com 已提交
170 171 172 173 174
    while (!rt_list_isempty(list))
    {
        /* disable interrupt */
        temp = rt_hw_interrupt_disable();

B
Bernard Xiong 已提交
175
        /* get next suspended thread */
D
dzzxzz@gmail.com 已提交
176 177 178 179 180 181 182
        thread = rt_list_entry(list->next, struct rt_thread, tlist);
        /* set error code to RT_ERROR */
        thread->error = -RT_ERROR;

        /*
         * resume thread
         * In rt_thread_resume function, it will remove current thread from
B
Bernard Xiong 已提交
183
         * suspended list
D
dzzxzz@gmail.com 已提交
184 185 186 187 188 189 190 191
         */
        rt_thread_resume(thread);

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
    }

    return RT_EOK;
192 193 194 195
}

#ifdef RT_USING_SEMAPHORE
/**
D
dzzxzz@gmail.com 已提交
196 197
 * This function will initialize a semaphore and put it under control of
 * resource management.
198 199 200
 *
 * @param sem the semaphore object
 * @param name the name of semaphore
B
Bernard Xiong 已提交
201
 * @param value the initial value of semaphore
202 203 204 205
 * @param flag the flag of semaphore
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz@gmail.com 已提交
206 207 208 209
rt_err_t rt_sem_init(rt_sem_t    sem,
                     const char *name,
                     rt_uint32_t value,
                     rt_uint8_t  flag)
210
{
D
dzzxzz@gmail.com 已提交
211
    RT_ASSERT(sem != RT_NULL);
212
    RT_ASSERT(value < 0x10000U);
213

B
Bernard Xiong 已提交
214
    /* initialize object */
D
dzzxzz@gmail.com 已提交
215
    rt_object_init(&(sem->parent.parent), RT_Object_Class_Semaphore, name);
216

B
Bernard Xiong 已提交
217
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
218
    rt_ipc_object_init(&(sem->parent));
219

B
Bernard Xiong 已提交
220
    /* set initial value */
221
    sem->value = (rt_uint16_t)value;
222

D
dzzxzz@gmail.com 已提交
223 224
    /* set parent */
    sem->parent.parent.flag = flag;
225

D
dzzxzz@gmail.com 已提交
226
    return RT_EOK;
227
}
228
RTM_EXPORT(rt_sem_init);
229 230 231 232 233 234 235 236 237 238

/**
 * This function will detach a semaphore from resource management
 *
 * @param sem the semaphore object
 *
 * @return the operation status, RT_EOK on successful
 *
 * @see rt_sem_delete
 */
D
dzzxzz 已提交
239
rt_err_t rt_sem_detach(rt_sem_t sem)
240
{
241
    /* parameter check */
D
dzzxzz@gmail.com 已提交
242
    RT_ASSERT(sem != RT_NULL);
243 244
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);
    RT_ASSERT(rt_object_is_systemobject(&sem->parent.parent));
245

B
Bernard Xiong 已提交
246
    /* wakeup all suspended threads */
D
dzzxzz@gmail.com 已提交
247
    rt_ipc_list_resume_all(&(sem->parent.suspend_thread));
248

D
dzzxzz@gmail.com 已提交
249 250
    /* detach semaphore object */
    rt_object_detach(&(sem->parent.parent));
251

D
dzzxzz@gmail.com 已提交
252
    return RT_EOK;
253
}
254
RTM_EXPORT(rt_sem_detach);
255 256 257 258 259 260

#ifdef RT_USING_HEAP
/**
 * This function will create a semaphore from system resource
 *
 * @param name the name of semaphore
B
Bernard Xiong 已提交
261
 * @param value the initial value of semaphore
262 263 264 265 266 267
 * @param flag the flag of semaphore
 *
 * @return the created semaphore, RT_NULL on error happen
 *
 * @see rt_sem_init
 */
D
dzzxzz 已提交
268
rt_sem_t rt_sem_create(const char *name, rt_uint32_t value, rt_uint8_t flag)
269
{
D
dzzxzz@gmail.com 已提交
270
    rt_sem_t sem;
271

D
dzzxzz@gmail.com 已提交
272
    RT_DEBUG_NOT_IN_INTERRUPT;
273
    RT_ASSERT(value < 0x10000U);
274

D
dzzxzz@gmail.com 已提交
275 276 277 278
    /* allocate object */
    sem = (rt_sem_t)rt_object_allocate(RT_Object_Class_Semaphore, name);
    if (sem == RT_NULL)
        return sem;
279

B
Bernard Xiong 已提交
280
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
281
    rt_ipc_object_init(&(sem->parent));
282

B
Bernard Xiong 已提交
283
    /* set initial value */
D
dzzxzz@gmail.com 已提交
284
    sem->value = value;
285

D
dzzxzz@gmail.com 已提交
286 287
    /* set parent */
    sem->parent.parent.flag = flag;
288

D
dzzxzz@gmail.com 已提交
289
    return sem;
290
}
291
RTM_EXPORT(rt_sem_create);
292 293 294 295 296 297 298 299 300 301

/**
 * This function will delete a semaphore object and release the memory
 *
 * @param sem the semaphore object
 *
 * @return the error code
 *
 * @see rt_sem_detach
 */
D
dzzxzz 已提交
302
rt_err_t rt_sem_delete(rt_sem_t sem)
303
{
D
dzzxzz@gmail.com 已提交
304
    RT_DEBUG_NOT_IN_INTERRUPT;
305

306
    /* parameter check */
D
dzzxzz@gmail.com 已提交
307
    RT_ASSERT(sem != RT_NULL);
308 309
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);
    RT_ASSERT(rt_object_is_systemobject(&sem->parent.parent) == RT_FALSE);
310

B
Bernard Xiong 已提交
311
    /* wakeup all suspended threads */
D
dzzxzz@gmail.com 已提交
312
    rt_ipc_list_resume_all(&(sem->parent.suspend_thread));
313

D
dzzxzz@gmail.com 已提交
314 315
    /* delete semaphore object */
    rt_object_delete(&(sem->parent.parent));
316

D
dzzxzz@gmail.com 已提交
317
    return RT_EOK;
318
}
319
RTM_EXPORT(rt_sem_delete);
320 321 322 323 324 325 326 327 328 329 330
#endif

/**
 * This function will take a semaphore, if the semaphore is unavailable, the
 * thread shall wait for a specified time.
 *
 * @param sem the semaphore object
 * @param time the waiting time
 *
 * @return the error code
 */
D
dzzxzz 已提交
331
rt_err_t rt_sem_take(rt_sem_t sem, rt_int32_t time)
332
{
D
dzzxzz@gmail.com 已提交
333 334
    register rt_base_t temp;
    struct rt_thread *thread;
335

336
    /* parameter check */
D
dzzxzz@gmail.com 已提交
337
    RT_ASSERT(sem != RT_NULL);
338
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);
339

D
dzzxzz@gmail.com 已提交
340
    RT_OBJECT_HOOK_CALL(rt_object_trytake_hook, (&(sem->parent.parent)));
341

D
dzzxzz@gmail.com 已提交
342 343
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
344

D
dzzxzz@gmail.com 已提交
345
    RT_DEBUG_LOG(RT_DEBUG_IPC, ("thread %s take sem:%s, which value is: %d\n",
346 347 348
                                rt_thread_self()->name,
                                ((struct rt_object *)sem)->name,
                                sem->value));
349

D
dzzxzz@gmail.com 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
    if (sem->value > 0)
    {
        /* semaphore is available */
        sem->value --;

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
    }
    else
    {
        /* no waiting, return with timeout */
        if (time == 0)
        {
            rt_hw_interrupt_enable(temp);

            return -RT_ETIMEOUT;
        }
        else
        {
            /* current context checking */
G
Grissiom 已提交
370
            RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
371 372 373 374 375 376 377 378 379

            /* semaphore is unavailable, push to suspend list */
            /* get current thread */
            thread = rt_thread_self();

            /* reset thread error number */
            thread->error = RT_EOK;

            RT_DEBUG_LOG(RT_DEBUG_IPC, ("sem take: suspend thread - %s\n",
380
                                        thread->name));
381

D
dzzxzz@gmail.com 已提交
382 383 384 385
            /* suspend thread */
            rt_ipc_list_suspend(&(sem->parent.suspend_thread),
                                thread,
                                sem->parent.parent.flag);
386

D
dzzxzz@gmail.com 已提交
387 388 389 390
            /* has waiting time, start thread timer */
            if (time > 0)
            {
                RT_DEBUG_LOG(RT_DEBUG_IPC, ("set thread:%s to timer list\n",
391
                                            thread->name));
392

D
dzzxzz@gmail.com 已提交
393 394 395 396 397 398
                /* reset the timeout of thread timer and start it */
                rt_timer_control(&(thread->thread_timer),
                                 RT_TIMER_CTRL_SET_TIME,
                                 &time);
                rt_timer_start(&(thread->thread_timer));
            }
399

D
dzzxzz@gmail.com 已提交
400 401
            /* enable interrupt */
            rt_hw_interrupt_enable(temp);
402

D
dzzxzz@gmail.com 已提交
403 404
            /* do schedule */
            rt_schedule();
405

D
dzzxzz@gmail.com 已提交
406 407 408 409 410 411
            if (thread->error != RT_EOK)
            {
                return thread->error;
            }
        }
    }
412

D
dzzxzz@gmail.com 已提交
413
    RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(sem->parent.parent)));
414

D
dzzxzz@gmail.com 已提交
415
    return RT_EOK;
416
}
417
RTM_EXPORT(rt_sem_take);
418 419 420 421 422 423 424 425 426 427

/**
 * This function will try to take a semaphore and immediately return
 *
 * @param sem the semaphore object
 *
 * @return the error code
 */
rt_err_t rt_sem_trytake(rt_sem_t sem)
{
D
dzzxzz@gmail.com 已提交
428
    return rt_sem_take(sem, 0);
429
}
430
RTM_EXPORT(rt_sem_trytake);
431 432 433 434 435 436 437 438 439 440 441

/**
 * This function will release a semaphore, if there are threads suspended on
 * semaphore, it will be waked up.
 *
 * @param sem the semaphore object
 *
 * @return the error code
 */
rt_err_t rt_sem_release(rt_sem_t sem)
{
D
dzzxzz@gmail.com 已提交
442 443
    register rt_base_t temp;
    register rt_bool_t need_schedule;
444

445 446 447 448
    /* parameter check */
    RT_ASSERT(sem != RT_NULL);
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);

D
dzzxzz@gmail.com 已提交
449
    RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(sem->parent.parent)));
450

D
dzzxzz@gmail.com 已提交
451
    need_schedule = RT_FALSE;
452

D
dzzxzz@gmail.com 已提交
453 454
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
455

D
dzzxzz@gmail.com 已提交
456
    RT_DEBUG_LOG(RT_DEBUG_IPC, ("thread %s releases sem:%s, which value is: %d\n",
457 458 459
                                rt_thread_self()->name,
                                ((struct rt_object *)sem)->name,
                                sem->value));
460

D
dzzxzz@gmail.com 已提交
461 462 463 464 465 466 467
    if (!rt_list_isempty(&sem->parent.suspend_thread))
    {
        /* resume the suspended thread */
        rt_ipc_list_resume(&(sem->parent.suspend_thread));
        need_schedule = RT_TRUE;
    }
    else
mysterywolf's avatar
mysterywolf 已提交
468 469 470 471 472 473 474 475 476 477 478
    {
        if(sem->value < 65535u)
        {
            sem->value ++; /* increase value */
        }
        else
        {
            rt_hw_interrupt_enable(temp); /* enable interrupt */
            return -RT_EFULL; /* value overflowed */
        }
    }
479

D
dzzxzz@gmail.com 已提交
480 481
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
482

D
dzzxzz@gmail.com 已提交
483 484 485
    /* resume a thread, re-schedule */
    if (need_schedule == RT_TRUE)
        rt_schedule();
486

D
dzzxzz@gmail.com 已提交
487
    return RT_EOK;
488
}
489
RTM_EXPORT(rt_sem_release);
490 491 492 493 494 495 496 497 498 499

/**
 * This function can get or set some extra attributions of a semaphore object.
 *
 * @param sem the semaphore object
 * @param cmd the execution command
 * @param arg the execution argument
 *
 * @return the error code
 */
B
bernard 已提交
500
rt_err_t rt_sem_control(rt_sem_t sem, int cmd, void *arg)
501
{
D
dzzxzz@gmail.com 已提交
502
    rt_ubase_t level;
503 504

    /* parameter check */
D
dzzxzz@gmail.com 已提交
505
    RT_ASSERT(sem != RT_NULL);
506
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);
507

D
dzzxzz@gmail.com 已提交
508 509
    if (cmd == RT_IPC_CMD_RESET)
    {
B
Bernard Xiong 已提交
510
        rt_ubase_t value;
511

D
dzzxzz@gmail.com 已提交
512
        /* get value */
B
Bernard Xiong 已提交
513
        value = (rt_ubase_t)arg;
D
dzzxzz@gmail.com 已提交
514 515
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
516

D
dzzxzz@gmail.com 已提交
517 518
        /* resume all waiting thread */
        rt_ipc_list_resume_all(&sem->parent.suspend_thread);
519

D
dzzxzz@gmail.com 已提交
520 521
        /* set new value */
        sem->value = (rt_uint16_t)value;
522

D
dzzxzz@gmail.com 已提交
523 524
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
525

D
dzzxzz@gmail.com 已提交
526
        rt_schedule();
527

D
dzzxzz@gmail.com 已提交
528 529
        return RT_EOK;
    }
530

D
dzzxzz@gmail.com 已提交
531
    return -RT_ERROR;
532
}
533
RTM_EXPORT(rt_sem_control);
534 535 536 537 538 539 540 541 542 543 544 545 546
#endif /* end of RT_USING_SEMAPHORE */

#ifdef RT_USING_MUTEX
/**
 * This function will initialize a mutex and put it under control of resource
 * management.
 *
 * @param mutex the mutex object
 * @param name the name of mutex
 * @param flag the flag of mutex
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz 已提交
547
rt_err_t rt_mutex_init(rt_mutex_t mutex, const char *name, rt_uint8_t flag)
548
{
549
    /* parameter check */
D
dzzxzz@gmail.com 已提交
550
    RT_ASSERT(mutex != RT_NULL);
551

B
Bernard Xiong 已提交
552
    /* initialize object */
D
dzzxzz@gmail.com 已提交
553
    rt_object_init(&(mutex->parent.parent), RT_Object_Class_Mutex, name);
554

B
Bernard Xiong 已提交
555
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
556
    rt_ipc_object_init(&(mutex->parent));
557

D
dzzxzz@gmail.com 已提交
558 559 560 561
    mutex->value = 1;
    mutex->owner = RT_NULL;
    mutex->original_priority = 0xFF;
    mutex->hold  = 0;
562

D
dzzxzz@gmail.com 已提交
563 564
    /* set flag */
    mutex->parent.parent.flag = flag;
565

D
dzzxzz@gmail.com 已提交
566
    return RT_EOK;
567
}
568
RTM_EXPORT(rt_mutex_init);
569 570 571 572 573 574 575 576 577 578

/**
 * This function will detach a mutex from resource management
 *
 * @param mutex the mutex object
 *
 * @return the operation status, RT_EOK on successful
 *
 * @see rt_mutex_delete
 */
D
dzzxzz 已提交
579
rt_err_t rt_mutex_detach(rt_mutex_t mutex)
580
{
581
    /* parameter check */
D
dzzxzz@gmail.com 已提交
582
    RT_ASSERT(mutex != RT_NULL);
583 584
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);
    RT_ASSERT(rt_object_is_systemobject(&mutex->parent.parent));
585

B
Bernard Xiong 已提交
586
    /* wakeup all suspended threads */
D
dzzxzz@gmail.com 已提交
587
    rt_ipc_list_resume_all(&(mutex->parent.suspend_thread));
588

B
Bernard Xiong 已提交
589
    /* detach semaphore object */
D
dzzxzz@gmail.com 已提交
590
    rt_object_detach(&(mutex->parent.parent));
591

D
dzzxzz@gmail.com 已提交
592
    return RT_EOK;
593
}
594
RTM_EXPORT(rt_mutex_detach);
595 596 597 598 599 600 601 602 603 604 605 606

#ifdef RT_USING_HEAP
/**
 * This function will create a mutex from system resource
 *
 * @param name the name of mutex
 * @param flag the flag of mutex
 *
 * @return the created mutex, RT_NULL on error happen
 *
 * @see rt_mutex_init
 */
D
dzzxzz 已提交
607
rt_mutex_t rt_mutex_create(const char *name, rt_uint8_t flag)
608
{
D
dzzxzz@gmail.com 已提交
609
    struct rt_mutex *mutex;
610

D
dzzxzz@gmail.com 已提交
611
    RT_DEBUG_NOT_IN_INTERRUPT;
612

D
dzzxzz@gmail.com 已提交
613 614 615 616
    /* allocate object */
    mutex = (rt_mutex_t)rt_object_allocate(RT_Object_Class_Mutex, name);
    if (mutex == RT_NULL)
        return mutex;
617

B
Bernard Xiong 已提交
618
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
619
    rt_ipc_object_init(&(mutex->parent));
620

D
dzzxzz@gmail.com 已提交
621 622 623 624
    mutex->value              = 1;
    mutex->owner              = RT_NULL;
    mutex->original_priority  = 0xFF;
    mutex->hold               = 0;
625

D
dzzxzz@gmail.com 已提交
626 627
    /* set flag */
    mutex->parent.parent.flag = flag;
628

D
dzzxzz@gmail.com 已提交
629
    return mutex;
630
}
631
RTM_EXPORT(rt_mutex_create);
632 633 634 635 636 637 638 639 640 641

/**
 * This function will delete a mutex object and release the memory
 *
 * @param mutex the mutex object
 *
 * @return the error code
 *
 * @see rt_mutex_detach
 */
D
dzzxzz 已提交
642
rt_err_t rt_mutex_delete(rt_mutex_t mutex)
643
{
D
dzzxzz@gmail.com 已提交
644
    RT_DEBUG_NOT_IN_INTERRUPT;
645

646
    /* parameter check */
D
dzzxzz@gmail.com 已提交
647
    RT_ASSERT(mutex != RT_NULL);
648 649
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);
    RT_ASSERT(rt_object_is_systemobject(&mutex->parent.parent) == RT_FALSE);
650

B
Bernard Xiong 已提交
651
    /* wakeup all suspended threads */
D
dzzxzz@gmail.com 已提交
652
    rt_ipc_list_resume_all(&(mutex->parent.suspend_thread));
653

I
iglencao 已提交
654
    /* delete mutex object */
D
dzzxzz@gmail.com 已提交
655
    rt_object_delete(&(mutex->parent.parent));
656

D
dzzxzz@gmail.com 已提交
657
    return RT_EOK;
658
}
659
RTM_EXPORT(rt_mutex_delete);
660 661 662 663 664 665 666 667 668 669 670
#endif

/**
 * This function will take a mutex, if the mutex is unavailable, the
 * thread shall wait for a specified time.
 *
 * @param mutex the mutex object
 * @param time the waiting time
 *
 * @return the error code
 */
D
dzzxzz 已提交
671
rt_err_t rt_mutex_take(rt_mutex_t mutex, rt_int32_t time)
672
{
D
dzzxzz@gmail.com 已提交
673 674
    register rt_base_t temp;
    struct rt_thread *thread;
675

B
bernard 已提交
676 677 678
    /* this function must not be used in interrupt even if time = 0 */
    RT_DEBUG_IN_THREAD_CONTEXT;

679
    /* parameter check */
680
    RT_ASSERT(mutex != RT_NULL);
681
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);
682 683 684

    /* get current thread */
    thread = rt_thread_self();
685

D
dzzxzz@gmail.com 已提交
686 687
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
688

D
dzzxzz@gmail.com 已提交
689
    RT_OBJECT_HOOK_CALL(rt_object_trytake_hook, (&(mutex->parent.parent)));
690

D
dzzxzz@gmail.com 已提交
691
    RT_DEBUG_LOG(RT_DEBUG_IPC,
692 693
                 ("mutex_take: current thread %s, mutex value: %d, hold: %d\n",
                  thread->name, mutex->value, mutex->hold));
694

D
dzzxzz@gmail.com 已提交
695 696 697 698 699 700 701 702 703 704
    /* reset thread error */
    thread->error = RT_EOK;

    if (mutex->owner == thread)
    {
        /* it's the same thread */
        mutex->hold ++;
    }
    else
    {
705
#ifdef RT_USING_SIGNALS
B
bernard 已提交
706
__again:
707
#endif /* end of RT_USING_SIGNALS */
D
dzzxzz@gmail.com 已提交
708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
        /* The value of mutex is 1 in initial status. Therefore, if the
         * value is great than 0, it indicates the mutex is avaible.
         */
        if (mutex->value > 0)
        {
            /* mutex is available */
            mutex->value --;

            /* set mutex owner and original priority */
            mutex->owner             = thread;
            mutex->original_priority = thread->current_priority;
            mutex->hold ++;
        }
        else
        {
            /* no waiting, return with timeout */
            if (time == 0)
            {
                /* set error as timeout */
                thread->error = -RT_ETIMEOUT;

                /* enable interrupt */
                rt_hw_interrupt_enable(temp);

                return -RT_ETIMEOUT;
            }
            else
            {
                /* mutex is unavailable, push to suspend list */
                RT_DEBUG_LOG(RT_DEBUG_IPC, ("mutex_take: suspend thread: %s\n",
738
                                            thread->name));
739

D
dzzxzz@gmail.com 已提交
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757
                /* change the owner thread priority of mutex */
                if (thread->current_priority < mutex->owner->current_priority)
                {
                    /* change the owner thread priority */
                    rt_thread_control(mutex->owner,
                                      RT_THREAD_CTRL_CHANGE_PRIORITY,
                                      &thread->current_priority);
                }

                /* suspend current thread */
                rt_ipc_list_suspend(&(mutex->parent.suspend_thread),
                                    thread,
                                    mutex->parent.parent.flag);

                /* has waiting time, start thread timer */
                if (time > 0)
                {
                    RT_DEBUG_LOG(RT_DEBUG_IPC,
758 759
                                 ("mutex_take: start the timer of thread:%s\n",
                                  thread->name));
760

D
dzzxzz@gmail.com 已提交
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
                    /* reset the timeout of thread timer and start it */
                    rt_timer_control(&(thread->thread_timer),
                                     RT_TIMER_CTRL_SET_TIME,
                                     &time);
                    rt_timer_start(&(thread->thread_timer));
                }

                /* enable interrupt */
                rt_hw_interrupt_enable(temp);

                /* do schedule */
                rt_schedule();

                if (thread->error != RT_EOK)
                {
776
#ifdef RT_USING_SIGNALS
777 778
                    /* interrupt by signal, try it again */
                    if (thread->error == -RT_EINTR) goto __again;
779
#endif /* end of RT_USING_SIGNALS */
B
bernard 已提交
780

D
dzzxzz@gmail.com 已提交
781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
                    /* return error */
                    return thread->error;
                }
                else
                {
                    /* the mutex is taken successfully. */
                    /* disable interrupt */
                    temp = rt_hw_interrupt_disable();
                }
            }
        }
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

    RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(mutex->parent.parent)));

    return RT_EOK;
800
}
801
RTM_EXPORT(rt_mutex_take);
802 803 804 805 806 807 808 809 810 811 812

/**
 * This function will release a mutex, if there are threads suspended on mutex,
 * it will be waked up.
 *
 * @param mutex the mutex object
 *
 * @return the error code
 */
rt_err_t rt_mutex_release(rt_mutex_t mutex)
{
D
dzzxzz@gmail.com 已提交
813 814 815
    register rt_base_t temp;
    struct rt_thread *thread;
    rt_bool_t need_schedule;
816

817 818 819 820
    /* parameter check */
    RT_ASSERT(mutex != RT_NULL);
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);

D
dzzxzz@gmail.com 已提交
821
    need_schedule = RT_FALSE;
822

823 824
    /* only thread could release mutex because we need test the ownership */
    RT_DEBUG_IN_THREAD_CONTEXT;
825

B
bernard 已提交
826 827 828
    /* get current thread */
    thread = rt_thread_self();

D
dzzxzz@gmail.com 已提交
829 830
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
831

D
dzzxzz@gmail.com 已提交
832
    RT_DEBUG_LOG(RT_DEBUG_IPC,
833 834
                 ("mutex_release:current thread %s, mutex value: %d, hold: %d\n",
                  thread->name, mutex->value, mutex->hold));
835

D
dzzxzz@gmail.com 已提交
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
    RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(mutex->parent.parent)));

    /* mutex only can be released by owner */
    if (thread != mutex->owner)
    {
        thread->error = -RT_ERROR;

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        return -RT_ERROR;
    }

    /* decrease hold */
    mutex->hold --;
    /* if no hold */
    if (mutex->hold == 0)
    {
        /* change the owner thread to original priority */
        if (mutex->original_priority != mutex->owner->current_priority)
        {
            rt_thread_control(mutex->owner,
                              RT_THREAD_CTRL_CHANGE_PRIORITY,
                              &(mutex->original_priority));
        }

        /* wakeup suspended thread */
        if (!rt_list_isempty(&mutex->parent.suspend_thread))
        {
            /* get suspended thread */
            thread = rt_list_entry(mutex->parent.suspend_thread.next,
                                   struct rt_thread,
                                   tlist);

            RT_DEBUG_LOG(RT_DEBUG_IPC, ("mutex_release: resume thread: %s\n",
871
                                        thread->name));
872

D
dzzxzz@gmail.com 已提交
873 874 875 876
            /* set new owner and priority */
            mutex->owner             = thread;
            mutex->original_priority = thread->current_priority;
            mutex->hold ++;
877

D
dzzxzz@gmail.com 已提交
878 879
            /* resume thread */
            rt_ipc_list_resume(&(mutex->parent.suspend_thread));
880

D
dzzxzz@gmail.com 已提交
881 882 883 884 885 886
            need_schedule = RT_TRUE;
        }
        else
        {
            /* increase value */
            mutex->value ++;
887

D
dzzxzz@gmail.com 已提交
888 889 890 891 892
            /* clear owner */
            mutex->owner             = RT_NULL;
            mutex->original_priority = 0xff;
        }
    }
893

D
dzzxzz@gmail.com 已提交
894 895
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
896

D
dzzxzz@gmail.com 已提交
897 898 899
    /* perform a schedule */
    if (need_schedule == RT_TRUE)
        rt_schedule();
B
bernard.xiong 已提交
900

D
dzzxzz@gmail.com 已提交
901
    return RT_EOK;
902
}
903
RTM_EXPORT(rt_mutex_release);
904 905 906 907 908 909 910 911 912 913

/**
 * This function can get or set some extra attributions of a mutex object.
 *
 * @param mutex the mutex object
 * @param cmd the execution command
 * @param arg the execution argument
 *
 * @return the error code
 */
B
bernard 已提交
914
rt_err_t rt_mutex_control(rt_mutex_t mutex, int cmd, void *arg)
915
{
916 917 918 919
    /* parameter check */
    RT_ASSERT(mutex != RT_NULL);
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);

D
dzzxzz@gmail.com 已提交
920
    return -RT_ERROR;
921
}
922
RTM_EXPORT(rt_mutex_control);
923 924 925 926 927 928 929 930 931 932 933 934 935
#endif /* end of RT_USING_MUTEX */

#ifdef RT_USING_EVENT
/**
 * This function will initialize an event and put it under control of resource
 * management.
 *
 * @param event the event object
 * @param name the name of event
 * @param flag the flag of event
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz 已提交
936
rt_err_t rt_event_init(rt_event_t event, const char *name, rt_uint8_t flag)
937
{
938
    /* parameter check */
D
dzzxzz@gmail.com 已提交
939
    RT_ASSERT(event != RT_NULL);
940

B
Bernard Xiong 已提交
941
    /* initialize object */
D
dzzxzz@gmail.com 已提交
942
    rt_object_init(&(event->parent.parent), RT_Object_Class_Event, name);
943

D
dzzxzz@gmail.com 已提交
944 945
    /* set parent flag */
    event->parent.parent.flag = flag;
946

B
Bernard Xiong 已提交
947
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
948
    rt_ipc_object_init(&(event->parent));
949

B
Bernard Xiong 已提交
950
    /* initialize event */
D
dzzxzz@gmail.com 已提交
951
    event->set = 0;
952

D
dzzxzz@gmail.com 已提交
953
    return RT_EOK;
954
}
955
RTM_EXPORT(rt_event_init);
956 957 958 959 960 961 962 963 964 965

/**
 * This function will detach an event object from resource management
 *
 * @param event the event object
 *
 * @return the operation status, RT_EOK on successful
 */
rt_err_t rt_event_detach(rt_event_t event)
{
D
dzzxzz@gmail.com 已提交
966 967
    /* parameter check */
    RT_ASSERT(event != RT_NULL);
968 969
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);
    RT_ASSERT(rt_object_is_systemobject(&event->parent.parent));
970

D
dzzxzz@gmail.com 已提交
971 972
    /* resume all suspended thread */
    rt_ipc_list_resume_all(&(event->parent.suspend_thread));
973

D
dzzxzz@gmail.com 已提交
974 975
    /* detach event object */
    rt_object_detach(&(event->parent.parent));
976

D
dzzxzz@gmail.com 已提交
977
    return RT_EOK;
978
}
979
RTM_EXPORT(rt_event_detach);
980 981 982 983 984 985 986 987 988 989

#ifdef RT_USING_HEAP
/**
 * This function will create an event object from system resource
 *
 * @param name the name of event
 * @param flag the flag of event
 *
 * @return the created event, RT_NULL on error happen
 */
D
dzzxzz 已提交
990
rt_event_t rt_event_create(const char *name, rt_uint8_t flag)
991
{
D
dzzxzz@gmail.com 已提交
992
    rt_event_t event;
993

D
dzzxzz@gmail.com 已提交
994
    RT_DEBUG_NOT_IN_INTERRUPT;
995

D
dzzxzz@gmail.com 已提交
996 997 998 999
    /* allocate object */
    event = (rt_event_t)rt_object_allocate(RT_Object_Class_Event, name);
    if (event == RT_NULL)
        return event;
1000

D
dzzxzz@gmail.com 已提交
1001 1002
    /* set parent */
    event->parent.parent.flag = flag;
1003

B
Bernard Xiong 已提交
1004
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
1005
    rt_ipc_object_init(&(event->parent));
1006

B
Bernard Xiong 已提交
1007
    /* initialize event */
D
dzzxzz@gmail.com 已提交
1008
    event->set = 0;
1009

D
dzzxzz@gmail.com 已提交
1010
    return event;
1011
}
1012
RTM_EXPORT(rt_event_create);
1013 1014 1015 1016 1017 1018 1019 1020

/**
 * This function will delete an event object and release the memory
 *
 * @param event the event object
 *
 * @return the error code
 */
D
dzzxzz 已提交
1021
rt_err_t rt_event_delete(rt_event_t event)
1022
{
D
dzzxzz@gmail.com 已提交
1023 1024
    /* parameter check */
    RT_ASSERT(event != RT_NULL);
1025 1026
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);
    RT_ASSERT(rt_object_is_systemobject(&event->parent.parent) == RT_FALSE);
1027

D
dzzxzz@gmail.com 已提交
1028
    RT_DEBUG_NOT_IN_INTERRUPT;
1029

D
dzzxzz@gmail.com 已提交
1030 1031
    /* resume all suspended thread */
    rt_ipc_list_resume_all(&(event->parent.suspend_thread));
1032

D
dzzxzz@gmail.com 已提交
1033 1034
    /* delete event object */
    rt_object_delete(&(event->parent.parent));
1035

D
dzzxzz@gmail.com 已提交
1036
    return RT_EOK;
1037
}
1038
RTM_EXPORT(rt_event_delete);
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
#endif

/**
 * This function will send an event to the event object, if there are threads
 * suspended on event object, it will be waked up.
 *
 * @param event the event object
 * @param set the event set
 *
 * @return the error code
 */
rt_err_t rt_event_send(rt_event_t event, rt_uint32_t set)
{
D
dzzxzz@gmail.com 已提交
1052 1053 1054 1055 1056 1057 1058 1059
    struct rt_list_node *n;
    struct rt_thread *thread;
    register rt_ubase_t level;
    register rt_base_t status;
    rt_bool_t need_schedule;

    /* parameter check */
    RT_ASSERT(event != RT_NULL);
1060 1061
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);

D
dzzxzz@gmail.com 已提交
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
    if (set == 0)
        return -RT_ERROR;

    need_schedule = RT_FALSE;

    /* disable interrupt */
    level = rt_hw_interrupt_disable();

    /* set event */
    event->set |= set;

1073
    RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(event->parent.parent)));
B
Bernard Xiong 已提交
1074

D
dzzxzz@gmail.com 已提交
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
    if (!rt_list_isempty(&event->parent.suspend_thread))
    {
        /* search thread list to resume thread */
        n = event->parent.suspend_thread.next;
        while (n != &(event->parent.suspend_thread))
        {
            /* get thread */
            thread = rt_list_entry(n, struct rt_thread, tlist);

            status = -RT_ERROR;
            if (thread->event_info & RT_EVENT_FLAG_AND)
            {
                if ((thread->event_set & event->set) == thread->event_set)
                {
                    /* received an AND event */
                    status = RT_EOK;
                }
            }
            else if (thread->event_info & RT_EVENT_FLAG_OR)
            {
                if (thread->event_set & event->set)
                {
B
Bernard Xiong 已提交
1097
                    /* save the received event set */
D
dzzxzz@gmail.com 已提交
1098 1099 1100 1101 1102 1103
                    thread->event_set = thread->event_set & event->set;

                    /* received an OR event */
                    status = RT_EOK;
                }
            }
1104 1105 1106 1107 1108 1109 1110
            else
            {
                /* enable interrupt */
                rt_hw_interrupt_enable(level);

                return -RT_EINVAL;
            }
D
dzzxzz@gmail.com 已提交
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138

            /* move node to the next */
            n = n->next;

            /* condition is satisfied, resume thread */
            if (status == RT_EOK)
            {
                /* clear event */
                if (thread->event_info & RT_EVENT_FLAG_CLEAR)
                    event->set &= ~thread->event_set;

                /* resume thread, and thread list breaks out */
                rt_thread_resume(thread);

                /* need do a scheduling */
                need_schedule = RT_TRUE;
            }
        }
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(level);

    /* do a schedule */
    if (need_schedule == RT_TRUE)
        rt_schedule();

    return RT_EOK;
1139
}
1140
RTM_EXPORT(rt_event_send);
1141 1142

/**
D
dzzxzz@gmail.com 已提交
1143 1144
 * This function will receive an event from event object, if the event is
 * unavailable, the thread shall wait for a specified time.
1145 1146 1147
 *
 * @param event the fast event object
 * @param set the interested event set
1148 1149
 * @param option the receive option, either RT_EVENT_FLAG_AND or
 *        RT_EVENT_FLAG_OR should be set.
1150
 * @param timeout the waiting time
P
pathletboy 已提交
1151
 * @param recved the received event, if you don't care, RT_NULL can be set.
1152 1153 1154
 *
 * @return the error code
 */
D
dzzxzz@gmail.com 已提交
1155 1156 1157 1158 1159
rt_err_t rt_event_recv(rt_event_t   event,
                       rt_uint32_t  set,
                       rt_uint8_t   option,
                       rt_int32_t   timeout,
                       rt_uint32_t *recved)
1160
{
D
dzzxzz@gmail.com 已提交
1161 1162 1163 1164
    struct rt_thread *thread;
    register rt_ubase_t level;
    register rt_base_t status;

G
Grissiom 已提交
1165
    RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
1166 1167 1168

    /* parameter check */
    RT_ASSERT(event != RT_NULL);
1169 1170
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);

D
dzzxzz@gmail.com 已提交
1171 1172 1173
    if (set == 0)
        return -RT_ERROR;

B
Bernard Xiong 已提交
1174
    /* initialize status */
D
dzzxzz@gmail.com 已提交
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
    status = -RT_ERROR;
    /* get current thread */
    thread = rt_thread_self();
    /* reset thread error */
    thread->error = RT_EOK;

    RT_OBJECT_HOOK_CALL(rt_object_trytake_hook, (&(event->parent.parent)));

    /* disable interrupt */
    level = rt_hw_interrupt_disable();

    /* check event set */
    if (option & RT_EVENT_FLAG_AND)
    {
        if ((event->set & set) == set)
            status = RT_EOK;
    }
    else if (option & RT_EVENT_FLAG_OR)
    {
        if (event->set & set)
            status = RT_EOK;
    }
1197 1198 1199 1200 1201
    else
    {
        /* either RT_EVENT_FLAG_AND or RT_EVENT_FLAG_OR should be set */
        RT_ASSERT(0);
    }
D
dzzxzz@gmail.com 已提交
1202 1203 1204 1205

    if (status == RT_EOK)
    {
        /* set received event */
1206
        if (recved)
P
pathletboy 已提交
1207
            *recved = (event->set & set);
1208 1209 1210 1211 1212
            
        /* fill thread event info */            
        thread->event_set = (event->set & set);
        thread->event_info = option;
        
D
dzzxzz@gmail.com 已提交
1213 1214 1215 1216 1217 1218 1219 1220
        /* received event */
        if (option & RT_EVENT_FLAG_CLEAR)
            event->set &= ~set;
    }
    else if (timeout == 0)
    {
        /* no waiting */
        thread->error = -RT_ETIMEOUT;
1221

G
greed-island 已提交
1222 1223
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
1224

G
greed-island 已提交
1225
        return -RT_ETIMEOUT;
D
dzzxzz@gmail.com 已提交
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
    }
    else
    {
        /* fill thread event info */
        thread->event_set  = set;
        thread->event_info = option;

        /* put thread to suspended thread list */
        rt_ipc_list_suspend(&(event->parent.suspend_thread),
                            thread,
                            event->parent.parent.flag);

        /* if there is a waiting timeout, active thread timer */
        if (timeout > 0)
        {
            /* reset the timeout of thread timer and start it */
            rt_timer_control(&(thread->thread_timer),
                             RT_TIMER_CTRL_SET_TIME,
                             &timeout);
            rt_timer_start(&(thread->thread_timer));
        }

        /* enable interrupt */
        rt_hw_interrupt_enable(level);

        /* do a schedule */
        rt_schedule();

        if (thread->error != RT_EOK)
        {
            /* return error */
            return thread->error;
        }

        /* received an event, disable interrupt to protect */
        level = rt_hw_interrupt_disable();

        /* set received event */
P
pathletboy 已提交
1264 1265
        if (recved)
            *recved = thread->event_set;
D
dzzxzz@gmail.com 已提交
1266 1267 1268 1269 1270 1271 1272 1273
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(level);

    RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(event->parent.parent)));

    return thread->error;
1274
}
1275
RTM_EXPORT(rt_event_recv);
1276 1277 1278 1279 1280 1281 1282 1283 1284 1285

/**
 * This function can get or set some extra attributions of an event object.
 *
 * @param event the event object
 * @param cmd the execution command
 * @param arg the execution argument
 *
 * @return the error code
 */
B
bernard 已提交
1286
rt_err_t rt_event_control(rt_event_t event, int cmd, void *arg)
1287
{
D
dzzxzz@gmail.com 已提交
1288
    rt_ubase_t level;
1289

1290 1291 1292
    /* parameter check */
    RT_ASSERT(event != RT_NULL);
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);
B
Bernard Xiong 已提交
1293

D
dzzxzz@gmail.com 已提交
1294 1295 1296 1297
    if (cmd == RT_IPC_CMD_RESET)
    {
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
1298

D
dzzxzz@gmail.com 已提交
1299 1300
        /* resume all waiting thread */
        rt_ipc_list_resume_all(&event->parent.suspend_thread);
1301

B
Bernard Xiong 已提交
1302
        /* initialize event set */
D
dzzxzz@gmail.com 已提交
1303
        event->set = 0;
1304

D
dzzxzz@gmail.com 已提交
1305 1306
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
1307

D
dzzxzz@gmail.com 已提交
1308
        rt_schedule();
1309

D
dzzxzz@gmail.com 已提交
1310 1311
        return RT_EOK;
    }
1312

D
dzzxzz@gmail.com 已提交
1313
    return -RT_ERROR;
1314
}
B
Bernard Xiong 已提交
1315
RTM_EXPORT(rt_event_control);
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
#endif /* end of RT_USING_EVENT */

#ifdef RT_USING_MAILBOX
/**
 * This function will initialize a mailbox and put it under control of resource
 * management.
 *
 * @param mb the mailbox object
 * @param name the name of mailbox
 * @param msgpool the begin address of buffer to save received mail
 * @param size the size of mailbox
 * @param flag the flag of mailbox
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz@gmail.com 已提交
1331 1332 1333 1334 1335
rt_err_t rt_mb_init(rt_mailbox_t mb,
                    const char  *name,
                    void        *msgpool,
                    rt_size_t    size,
                    rt_uint8_t   flag)
1336
{
D
dzzxzz@gmail.com 已提交
1337
    RT_ASSERT(mb != RT_NULL);
1338

B
Bernard Xiong 已提交
1339
    /* initialize object */
D
dzzxzz@gmail.com 已提交
1340
    rt_object_init(&(mb->parent.parent), RT_Object_Class_MailBox, name);
1341

D
dzzxzz@gmail.com 已提交
1342 1343
    /* set parent flag */
    mb->parent.parent.flag = flag;
1344

B
Bernard Xiong 已提交
1345
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
1346
    rt_ipc_object_init(&(mb->parent));
1347

B
Bernard Xiong 已提交
1348
    /* initialize mailbox */
1349
    mb->msg_pool   = (rt_ubase_t *)msgpool;
D
dzzxzz@gmail.com 已提交
1350 1351 1352 1353
    mb->size       = size;
    mb->entry      = 0;
    mb->in_offset  = 0;
    mb->out_offset = 0;
1354

B
Bernard Xiong 已提交
1355
    /* initialize an additional list of sender suspend thread */
D
dzzxzz@gmail.com 已提交
1356
    rt_list_init(&(mb->suspend_sender_thread));
1357

D
dzzxzz@gmail.com 已提交
1358
    return RT_EOK;
1359
}
1360
RTM_EXPORT(rt_mb_init);
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370

/**
 * This function will detach a mailbox from resource management
 *
 * @param mb the mailbox object
 *
 * @return the operation status, RT_EOK on successful
 */
rt_err_t rt_mb_detach(rt_mailbox_t mb)
{
D
dzzxzz@gmail.com 已提交
1371 1372
    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1373 1374
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
    RT_ASSERT(rt_object_is_systemobject(&mb->parent.parent));
1375

D
dzzxzz@gmail.com 已提交
1376 1377 1378 1379
    /* resume all suspended thread */
    rt_ipc_list_resume_all(&(mb->parent.suspend_thread));
    /* also resume all mailbox private suspended thread */
    rt_ipc_list_resume_all(&(mb->suspend_sender_thread));
1380

D
dzzxzz@gmail.com 已提交
1381 1382
    /* detach mailbox object */
    rt_object_detach(&(mb->parent.parent));
1383

D
dzzxzz@gmail.com 已提交
1384
    return RT_EOK;
1385
}
1386
RTM_EXPORT(rt_mb_detach);
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397

#ifdef RT_USING_HEAP
/**
 * This function will create a mailbox object from system resource
 *
 * @param name the name of mailbox
 * @param size the size of mailbox
 * @param flag the flag of mailbox
 *
 * @return the created mailbox, RT_NULL on error happen
 */
D
dzzxzz 已提交
1398
rt_mailbox_t rt_mb_create(const char *name, rt_size_t size, rt_uint8_t flag)
1399
{
D
dzzxzz@gmail.com 已提交
1400
    rt_mailbox_t mb;
1401

D
dzzxzz@gmail.com 已提交
1402
    RT_DEBUG_NOT_IN_INTERRUPT;
1403

D
dzzxzz@gmail.com 已提交
1404 1405 1406 1407
    /* allocate object */
    mb = (rt_mailbox_t)rt_object_allocate(RT_Object_Class_MailBox, name);
    if (mb == RT_NULL)
        return mb;
1408

D
dzzxzz@gmail.com 已提交
1409 1410
    /* set parent */
    mb->parent.parent.flag = flag;
1411

B
Bernard Xiong 已提交
1412
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
1413
    rt_ipc_object_init(&(mb->parent));
1414

B
Bernard Xiong 已提交
1415
    /* initialize mailbox */
D
dzzxzz@gmail.com 已提交
1416
    mb->size     = size;
1417
    mb->msg_pool = (rt_ubase_t *)RT_KERNEL_MALLOC(mb->size * sizeof(rt_ubase_t));
D
dzzxzz@gmail.com 已提交
1418 1419 1420 1421
    if (mb->msg_pool == RT_NULL)
    {
        /* delete mailbox object */
        rt_object_delete(&(mb->parent.parent));
1422

D
dzzxzz@gmail.com 已提交
1423 1424 1425 1426 1427
        return RT_NULL;
    }
    mb->entry      = 0;
    mb->in_offset  = 0;
    mb->out_offset = 0;
1428

B
Bernard Xiong 已提交
1429
    /* initialize an additional list of sender suspend thread */
D
dzzxzz@gmail.com 已提交
1430
    rt_list_init(&(mb->suspend_sender_thread));
1431

D
dzzxzz@gmail.com 已提交
1432
    return mb;
1433
}
1434
RTM_EXPORT(rt_mb_create);
1435 1436 1437 1438 1439 1440 1441 1442

/**
 * This function will delete a mailbox object and release the memory
 *
 * @param mb the mailbox object
 *
 * @return the error code
 */
D
dzzxzz 已提交
1443
rt_err_t rt_mb_delete(rt_mailbox_t mb)
M
mbbill@gmail.com 已提交
1444
{
D
dzzxzz@gmail.com 已提交
1445
    RT_DEBUG_NOT_IN_INTERRUPT;
1446

D
dzzxzz@gmail.com 已提交
1447 1448
    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1449 1450
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
    RT_ASSERT(rt_object_is_systemobject(&mb->parent.parent) == RT_FALSE);
1451

D
dzzxzz@gmail.com 已提交
1452 1453
    /* resume all suspended thread */
    rt_ipc_list_resume_all(&(mb->parent.suspend_thread));
1454

D
dzzxzz@gmail.com 已提交
1455 1456
    /* also resume all mailbox private suspended thread */
    rt_ipc_list_resume_all(&(mb->suspend_sender_thread));
1457

1458 1459
    /* free mailbox pool */
    RT_KERNEL_FREE(mb->msg_pool);
1460

D
dzzxzz@gmail.com 已提交
1461 1462
    /* delete mailbox object */
    rt_object_delete(&(mb->parent.parent));
1463

D
dzzxzz@gmail.com 已提交
1464
    return RT_EOK;
1465
}
1466
RTM_EXPORT(rt_mb_delete);
1467 1468 1469
#endif

/**
1470 1471
 * This function will send a mail to mailbox object. If the mailbox is full,
 * current thread will be suspended until timeout.
1472 1473 1474
 *
 * @param mb the mailbox object
 * @param value the mail
1475
 * @param timeout the waiting time
1476 1477 1478
 *
 * @return the error code
 */
D
dzzxzz@gmail.com 已提交
1479
rt_err_t rt_mb_send_wait(rt_mailbox_t mb,
B
Bernard Xiong 已提交
1480
                         rt_ubase_t   value,
D
dzzxzz@gmail.com 已提交
1481
                         rt_int32_t   timeout)
1482
{
D
dzzxzz@gmail.com 已提交
1483 1484 1485 1486 1487 1488
    struct rt_thread *thread;
    register rt_ubase_t temp;
    rt_uint32_t tick_delta;

    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1489
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
D
dzzxzz@gmail.com 已提交
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523

    /* initialize delta tick */
    tick_delta = 0;
    /* get current thread */
    thread = rt_thread_self();

    RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(mb->parent.parent)));

    /* disable interrupt */
    temp = rt_hw_interrupt_disable();

    /* for non-blocking call */
    if (mb->entry == mb->size && timeout == 0)
    {
        rt_hw_interrupt_enable(temp);

        return -RT_EFULL;
    }

    /* mailbox is full */
    while (mb->entry == mb->size)
    {
        /* reset error number in thread */
        thread->error = RT_EOK;

        /* no waiting, return timeout */
        if (timeout == 0)
        {
            /* enable interrupt */
            rt_hw_interrupt_enable(temp);

            return -RT_EFULL;
        }

G
Grissiom 已提交
1524
        RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536
        /* suspend current thread */
        rt_ipc_list_suspend(&(mb->suspend_sender_thread),
                            thread,
                            mb->parent.parent.flag);

        /* has waiting time, start thread timer */
        if (timeout > 0)
        {
            /* get the start tick of timer */
            tick_delta = rt_tick_get();

            RT_DEBUG_LOG(RT_DEBUG_IPC, ("mb_send_wait: start timer of thread:%s\n",
1537
                                        thread->name));
1538

D
dzzxzz@gmail.com 已提交
1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597
            /* reset the timeout of thread timer and start it */
            rt_timer_control(&(thread->thread_timer),
                             RT_TIMER_CTRL_SET_TIME,
                             &timeout);
            rt_timer_start(&(thread->thread_timer));
        }

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        /* re-schedule */
        rt_schedule();

        /* resume from suspend state */
        if (thread->error != RT_EOK)
        {
            /* return error */
            return thread->error;
        }

        /* disable interrupt */
        temp = rt_hw_interrupt_disable();

        /* if it's not waiting forever and then re-calculate timeout tick */
        if (timeout > 0)
        {
            tick_delta = rt_tick_get() - tick_delta;
            timeout -= tick_delta;
            if (timeout < 0)
                timeout = 0;
        }
    }

    /* set ptr */
    mb->msg_pool[mb->in_offset] = value;
    /* increase input offset */
    ++ mb->in_offset;
    if (mb->in_offset >= mb->size)
        mb->in_offset = 0;
    /* increase message entry */
    mb->entry ++;

    /* resume suspended thread */
    if (!rt_list_isempty(&mb->parent.suspend_thread))
    {
        rt_ipc_list_resume(&(mb->parent.suspend_thread));

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        rt_schedule();

        return RT_EOK;
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

    return RT_EOK;
1598
}
1599
RTM_EXPORT(rt_mb_send_wait);
1600

1601
/**
D
dzzxzz@gmail.com 已提交
1602 1603 1604
 * This function will send a mail to mailbox object, if there are threads
 * suspended on mailbox object, it will be waked up. This function will return
 * immediately, if you want blocking send, use rt_mb_send_wait instead.
1605 1606 1607 1608 1609 1610
 *
 * @param mb the mailbox object
 * @param value the mail
 *
 * @return the error code
 */
B
Bernard Xiong 已提交
1611
rt_err_t rt_mb_send(rt_mailbox_t mb, rt_ubase_t value)
1612
{
D
dzzxzz@gmail.com 已提交
1613
    return rt_mb_send_wait(mb, value, 0);
1614
}
1615
RTM_EXPORT(rt_mb_send);
1616

1617
/**
D
dzzxzz@gmail.com 已提交
1618 1619
 * This function will receive a mail from mailbox object, if there is no mail
 * in mailbox object, the thread shall wait for a specified time.
1620 1621 1622 1623 1624 1625 1626
 *
 * @param mb the mailbox object
 * @param value the received mail will be saved in
 * @param timeout the waiting time
 *
 * @return the error code
 */
B
Bernard Xiong 已提交
1627
rt_err_t rt_mb_recv(rt_mailbox_t mb, rt_ubase_t *value, rt_int32_t timeout)
1628
{
D
dzzxzz@gmail.com 已提交
1629 1630 1631 1632 1633 1634
    struct rt_thread *thread;
    register rt_ubase_t temp;
    rt_uint32_t tick_delta;

    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1635
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
D
dzzxzz@gmail.com 已提交
1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667

    /* initialize delta tick */
    tick_delta = 0;
    /* get current thread */
    thread = rt_thread_self();

    RT_OBJECT_HOOK_CALL(rt_object_trytake_hook, (&(mb->parent.parent)));

    /* disable interrupt */
    temp = rt_hw_interrupt_disable();

    /* for non-blocking call */
    if (mb->entry == 0 && timeout == 0)
    {
        rt_hw_interrupt_enable(temp);

        return -RT_ETIMEOUT;
    }

    /* mailbox is empty */
    while (mb->entry == 0)
    {
        /* reset error number in thread */
        thread->error = RT_EOK;

        /* no waiting, return timeout */
        if (timeout == 0)
        {
            /* enable interrupt */
            rt_hw_interrupt_enable(temp);

            thread->error = -RT_ETIMEOUT;
B
Bernard Xiong 已提交
1668

D
dzzxzz@gmail.com 已提交
1669 1670 1671
            return -RT_ETIMEOUT;
        }

G
Grissiom 已提交
1672
        RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
        /* suspend current thread */
        rt_ipc_list_suspend(&(mb->parent.suspend_thread),
                            thread,
                            mb->parent.parent.flag);

        /* has waiting time, start thread timer */
        if (timeout > 0)
        {
            /* get the start tick of timer */
            tick_delta = rt_tick_get();

            RT_DEBUG_LOG(RT_DEBUG_IPC, ("mb_recv: start timer of thread:%s\n",
1685
                                        thread->name));
1686

D
dzzxzz@gmail.com 已提交
1687 1688 1689 1690 1691 1692
            /* reset the timeout of thread timer and start it */
            rt_timer_control(&(thread->thread_timer),
                             RT_TIMER_CTRL_SET_TIME,
                             &timeout);
            rt_timer_start(&(thread->thread_timer));
        }
1693

D
dzzxzz@gmail.com 已提交
1694 1695
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
1696

D
dzzxzz@gmail.com 已提交
1697 1698
        /* re-schedule */
        rt_schedule();
1699

D
dzzxzz@gmail.com 已提交
1700 1701 1702 1703 1704 1705
        /* resume from suspend state */
        if (thread->error != RT_EOK)
        {
            /* return error */
            return thread->error;
        }
1706

D
dzzxzz@gmail.com 已提交
1707 1708
        /* disable interrupt */
        temp = rt_hw_interrupt_disable();
1709

D
dzzxzz@gmail.com 已提交
1710 1711 1712 1713 1714 1715 1716 1717 1718
        /* if it's not waiting forever and then re-calculate timeout tick */
        if (timeout > 0)
        {
            tick_delta = rt_tick_get() - tick_delta;
            timeout -= tick_delta;
            if (timeout < 0)
                timeout = 0;
        }
    }
1719

D
dzzxzz@gmail.com 已提交
1720 1721
    /* fill ptr */
    *value = mb->msg_pool[mb->out_offset];
1722

D
dzzxzz@gmail.com 已提交
1723 1724 1725 1726 1727 1728
    /* increase output offset */
    ++ mb->out_offset;
    if (mb->out_offset >= mb->size)
        mb->out_offset = 0;
    /* decrease message entry */
    mb->entry --;
1729

D
dzzxzz@gmail.com 已提交
1730 1731 1732 1733
    /* resume suspended thread */
    if (!rt_list_isempty(&(mb->suspend_sender_thread)))
    {
        rt_ipc_list_resume(&(mb->suspend_sender_thread));
1734

D
dzzxzz@gmail.com 已提交
1735 1736
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
1737

D
dzzxzz@gmail.com 已提交
1738
        RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(mb->parent.parent)));
1739

D
dzzxzz@gmail.com 已提交
1740
        rt_schedule();
1741

D
dzzxzz@gmail.com 已提交
1742 1743
        return RT_EOK;
    }
1744

D
dzzxzz@gmail.com 已提交
1745 1746
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
1747

D
dzzxzz@gmail.com 已提交
1748
    RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(mb->parent.parent)));
1749

D
dzzxzz@gmail.com 已提交
1750
    return RT_EOK;
1751
}
1752
RTM_EXPORT(rt_mb_recv);
1753 1754 1755 1756 1757 1758 1759 1760 1761 1762

/**
 * This function can get or set some extra attributions of a mailbox object.
 *
 * @param mb the mailbox object
 * @param cmd the execution command
 * @param arg the execution argument
 *
 * @return the error code
 */
B
bernard 已提交
1763
rt_err_t rt_mb_control(rt_mailbox_t mb, int cmd, void *arg)
1764
{
D
dzzxzz@gmail.com 已提交
1765
    rt_ubase_t level;
1766 1767

    /* parameter check */
D
dzzxzz@gmail.com 已提交
1768
    RT_ASSERT(mb != RT_NULL);
1769
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
1770

D
dzzxzz@gmail.com 已提交
1771 1772 1773 1774
    if (cmd == RT_IPC_CMD_RESET)
    {
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
1775

D
dzzxzz@gmail.com 已提交
1776 1777 1778 1779
        /* resume all waiting thread */
        rt_ipc_list_resume_all(&(mb->parent.suspend_thread));
        /* also resume all mailbox private suspended thread */
        rt_ipc_list_resume_all(&(mb->suspend_sender_thread));
1780

D
dzzxzz@gmail.com 已提交
1781 1782 1783 1784
        /* re-init mailbox */
        mb->entry      = 0;
        mb->in_offset  = 0;
        mb->out_offset = 0;
1785

D
dzzxzz@gmail.com 已提交
1786 1787
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
1788

D
dzzxzz@gmail.com 已提交
1789
        rt_schedule();
1790

D
dzzxzz@gmail.com 已提交
1791 1792
        return RT_EOK;
    }
1793

D
dzzxzz@gmail.com 已提交
1794
    return -RT_ERROR;
1795
}
B
Bernard Xiong 已提交
1796
RTM_EXPORT(rt_mb_control);
1797 1798 1799 1800 1801
#endif /* end of RT_USING_MAILBOX */

#ifdef RT_USING_MESSAGEQUEUE
struct rt_mq_message
{
D
dzzxzz@gmail.com 已提交
1802
    struct rt_mq_message *next;
1803 1804 1805
};

/**
D
dzzxzz@gmail.com 已提交
1806 1807
 * This function will initialize a message queue and put it under control of
 * resource management.
1808 1809 1810 1811 1812 1813 1814 1815 1816 1817
 *
 * @param mq the message object
 * @param name the name of message queue
 * @param msgpool the beginning address of buffer to save messages
 * @param msg_size the maximum size of message
 * @param pool_size the size of buffer to save messages
 * @param flag the flag of message queue
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz@gmail.com 已提交
1818 1819 1820 1821 1822 1823
rt_err_t rt_mq_init(rt_mq_t     mq,
                    const char *name,
                    void       *msgpool,
                    rt_size_t   msg_size,
                    rt_size_t   pool_size,
                    rt_uint8_t  flag)
1824
{
D
dzzxzz@gmail.com 已提交
1825 1826
    struct rt_mq_message *head;
    register rt_base_t temp;
1827

D
dzzxzz@gmail.com 已提交
1828 1829
    /* parameter check */
    RT_ASSERT(mq != RT_NULL);
1830

B
Bernard Xiong 已提交
1831
    /* initialize object */
D
dzzxzz@gmail.com 已提交
1832
    rt_object_init(&(mq->parent.parent), RT_Object_Class_MessageQueue, name);
1833

D
dzzxzz@gmail.com 已提交
1834 1835
    /* set parent flag */
    mq->parent.parent.flag = flag;
1836

B
Bernard Xiong 已提交
1837
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
1838
    rt_ipc_object_init(&(mq->parent));
1839

B
Bernard Xiong 已提交
1840
    /* set message pool */
D
dzzxzz@gmail.com 已提交
1841
    mq->msg_pool = msgpool;
1842

D
dzzxzz@gmail.com 已提交
1843 1844 1845
    /* get correct message size */
    mq->msg_size = RT_ALIGN(msg_size, RT_ALIGN_SIZE);
    mq->max_msgs = pool_size / (mq->msg_size + sizeof(struct rt_mq_message));
1846

B
Bernard Xiong 已提交
1847
    /* initialize message list */
D
dzzxzz@gmail.com 已提交
1848 1849
    mq->msg_queue_head = RT_NULL;
    mq->msg_queue_tail = RT_NULL;
1850

B
Bernard Xiong 已提交
1851
    /* initialize message empty list */
D
dzzxzz@gmail.com 已提交
1852 1853 1854 1855
    mq->msg_queue_free = RT_NULL;
    for (temp = 0; temp < mq->max_msgs; temp ++)
    {
        head = (struct rt_mq_message *)((rt_uint8_t *)mq->msg_pool +
1856
                                        temp * (mq->msg_size + sizeof(struct rt_mq_message)));
1857
        head->next = (struct rt_mq_message *)mq->msg_queue_free;
D
dzzxzz@gmail.com 已提交
1858 1859
        mq->msg_queue_free = head;
    }
1860

D
dzzxzz@gmail.com 已提交
1861 1862
    /* the initial entry is zero */
    mq->entry = 0;
1863

B
Bernard Xiong 已提交
1864
    /* initialize an additional list of sender suspend thread */
1865 1866
    rt_list_init(&(mq->suspend_sender_thread));

D
dzzxzz@gmail.com 已提交
1867
    return RT_EOK;
1868
}
1869
RTM_EXPORT(rt_mq_init);
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879

/**
 * This function will detach a message queue object from resource management
 *
 * @param mq the message queue object
 *
 * @return the operation status, RT_EOK on successful
 */
rt_err_t rt_mq_detach(rt_mq_t mq)
{
D
dzzxzz@gmail.com 已提交
1880 1881
    /* parameter check */
    RT_ASSERT(mq != RT_NULL);
1882 1883
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
    RT_ASSERT(rt_object_is_systemobject(&mq->parent.parent));
1884

D
dzzxzz@gmail.com 已提交
1885 1886
    /* resume all suspended thread */
    rt_ipc_list_resume_all(&mq->parent.suspend_thread);
1887 1888
    /* also resume all message queue private suspended thread */
    rt_ipc_list_resume_all(&(mq->suspend_sender_thread));
1889

D
dzzxzz@gmail.com 已提交
1890 1891
    /* detach message queue object */
    rt_object_detach(&(mq->parent.parent));
1892

D
dzzxzz@gmail.com 已提交
1893
    return RT_EOK;
1894
}
1895
RTM_EXPORT(rt_mq_detach);
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907

#ifdef RT_USING_HEAP
/**
 * This function will create a message queue object from system resource
 *
 * @param name the name of message queue
 * @param msg_size the size of message
 * @param max_msgs the maximum number of message in queue
 * @param flag the flag of message queue
 *
 * @return the created message queue, RT_NULL on error happen
 */
D
dzzxzz@gmail.com 已提交
1908 1909 1910 1911
rt_mq_t rt_mq_create(const char *name,
                     rt_size_t   msg_size,
                     rt_size_t   max_msgs,
                     rt_uint8_t  flag)
1912
{
D
dzzxzz@gmail.com 已提交
1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926
    struct rt_messagequeue *mq;
    struct rt_mq_message *head;
    register rt_base_t temp;

    RT_DEBUG_NOT_IN_INTERRUPT;

    /* allocate object */
    mq = (rt_mq_t)rt_object_allocate(RT_Object_Class_MessageQueue, name);
    if (mq == RT_NULL)
        return mq;

    /* set parent */
    mq->parent.parent.flag = flag;

B
Bernard Xiong 已提交
1927
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
1928 1929
    rt_ipc_object_init(&(mq->parent));

B
Bernard Xiong 已提交
1930
    /* initialize message queue */
D
dzzxzz@gmail.com 已提交
1931 1932 1933 1934 1935 1936

    /* get correct message size */
    mq->msg_size = RT_ALIGN(msg_size, RT_ALIGN_SIZE);
    mq->max_msgs = max_msgs;

    /* allocate message pool */
1937
    mq->msg_pool = RT_KERNEL_MALLOC((mq->msg_size + sizeof(struct rt_mq_message)) * mq->max_msgs);
D
dzzxzz@gmail.com 已提交
1938 1939
    if (mq->msg_pool == RT_NULL)
    {
1940
        rt_object_delete(&(mq->parent.parent));
D
dzzxzz@gmail.com 已提交
1941 1942 1943 1944

        return RT_NULL;
    }

B
Bernard Xiong 已提交
1945
    /* initialize message list */
D
dzzxzz@gmail.com 已提交
1946 1947 1948
    mq->msg_queue_head = RT_NULL;
    mq->msg_queue_tail = RT_NULL;

B
Bernard Xiong 已提交
1949
    /* initialize message empty list */
D
dzzxzz@gmail.com 已提交
1950 1951 1952 1953
    mq->msg_queue_free = RT_NULL;
    for (temp = 0; temp < mq->max_msgs; temp ++)
    {
        head = (struct rt_mq_message *)((rt_uint8_t *)mq->msg_pool +
1954
                                        temp * (mq->msg_size + sizeof(struct rt_mq_message)));
1955
        head->next = (struct rt_mq_message *)mq->msg_queue_free;
D
dzzxzz@gmail.com 已提交
1956 1957 1958 1959 1960 1961
        mq->msg_queue_free = head;
    }

    /* the initial entry is zero */
    mq->entry = 0;

B
Bernard Xiong 已提交
1962
    /* initialize an additional list of sender suspend thread */
1963 1964
    rt_list_init(&(mq->suspend_sender_thread));

D
dzzxzz@gmail.com 已提交
1965
    return mq;
1966
}
1967
RTM_EXPORT(rt_mq_create);
1968 1969 1970 1971 1972 1973 1974 1975

/**
 * This function will delete a message queue object and release the memory
 *
 * @param mq the message queue object
 *
 * @return the error code
 */
D
dzzxzz 已提交
1976
rt_err_t rt_mq_delete(rt_mq_t mq)
1977
{
D
dzzxzz@gmail.com 已提交
1978
    RT_DEBUG_NOT_IN_INTERRUPT;
1979

D
dzzxzz@gmail.com 已提交
1980 1981
    /* parameter check */
    RT_ASSERT(mq != RT_NULL);
1982 1983
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
    RT_ASSERT(rt_object_is_systemobject(&mq->parent.parent) == RT_FALSE);
1984

D
dzzxzz@gmail.com 已提交
1985 1986
    /* resume all suspended thread */
    rt_ipc_list_resume_all(&(mq->parent.suspend_thread));
1987 1988
    /* also resume all message queue private suspended thread */
    rt_ipc_list_resume_all(&(mq->suspend_sender_thread));
1989

1990 1991
    /* free message queue pool */
    RT_KERNEL_FREE(mq->msg_pool);
1992

D
dzzxzz@gmail.com 已提交
1993 1994
    /* delete message queue object */
    rt_object_delete(&(mq->parent.parent));
1995

D
dzzxzz@gmail.com 已提交
1996
    return RT_EOK;
1997
}
1998
RTM_EXPORT(rt_mq_delete);
1999 2000 2001
#endif

/**
2002 2003
 * This function will send a message to message queue object. If the message queue is full,
 * current thread will be suspended until timeout.
2004 2005 2006 2007
 *
 * @param mq the message queue object
 * @param buffer the message
 * @param size the size of buffer
2008
 * @param timeout the waiting time
2009 2010 2011
 *
 * @return the error code
 */
2012 2013 2014 2015
rt_err_t rt_mq_send_wait(rt_mq_t     mq,
                         const void *buffer,
                         rt_size_t   size,
                         rt_int32_t  timeout)
2016
{
D
dzzxzz@gmail.com 已提交
2017 2018
    register rt_ubase_t temp;
    struct rt_mq_message *msg;
2019 2020
    rt_uint32_t tick_delta;
    struct rt_thread *thread;
D
dzzxzz@gmail.com 已提交
2021

2022
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2023
    RT_ASSERT(mq != RT_NULL);
2024
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
D
dzzxzz@gmail.com 已提交
2025 2026 2027 2028 2029 2030 2031
    RT_ASSERT(buffer != RT_NULL);
    RT_ASSERT(size != 0);

    /* greater than one message size */
    if (size > mq->msg_size)
        return -RT_ERROR;

2032 2033 2034 2035 2036
    /* initialize delta tick */
    tick_delta = 0;
    /* get current thread */
    thread = rt_thread_self();

D
dzzxzz@gmail.com 已提交
2037 2038 2039 2040 2041 2042
    RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(mq->parent.parent)));

    /* disable interrupt */
    temp = rt_hw_interrupt_disable();

    /* get a free list, there must be an empty item */
2043
    msg = (struct rt_mq_message *)mq->msg_queue_free;
2044 2045
    /* for non-blocking call */
    if (msg == RT_NULL && timeout == 0)
D
dzzxzz@gmail.com 已提交
2046 2047 2048 2049 2050 2051
    {
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        return -RT_EFULL;
    }
2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115

    /* message queue is full */
    while ((msg = mq->msg_queue_free) == RT_NULL)
    {
        /* reset error number in thread */
        thread->error = RT_EOK;

        /* no waiting, return timeout */
        if (timeout == 0)
        {
            /* enable interrupt */
            rt_hw_interrupt_enable(temp);

            return -RT_EFULL;
        }

        RT_DEBUG_IN_THREAD_CONTEXT;
        /* suspend current thread */
        rt_ipc_list_suspend(&(mq->suspend_sender_thread),
                            thread,
                            mq->parent.parent.flag);

        /* has waiting time, start thread timer */
        if (timeout > 0)
        {
            /* get the start tick of timer */
            tick_delta = rt_tick_get();

            RT_DEBUG_LOG(RT_DEBUG_IPC, ("mq_send_wait: start timer of thread:%s\n",
                                        thread->name));

            /* reset the timeout of thread timer and start it */
            rt_timer_control(&(thread->thread_timer),
                             RT_TIMER_CTRL_SET_TIME,
                             &timeout);
            rt_timer_start(&(thread->thread_timer));
        }

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        /* re-schedule */
        rt_schedule();

        /* resume from suspend state */
        if (thread->error != RT_EOK)
        {
            /* return error */
            return thread->error;
        }

        /* disable interrupt */
        temp = rt_hw_interrupt_disable();

        /* if it's not waiting forever and then re-calculate timeout tick */
        if (timeout > 0)
        {
            tick_delta = rt_tick_get() - tick_delta;
            timeout -= tick_delta;
            if (timeout < 0)
                timeout = 0;
        }
    }

D
dzzxzz@gmail.com 已提交
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161
    /* move free list pointer */
    mq->msg_queue_free = msg->next;

    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

    /* the msg is the new tailer of list, the next shall be NULL */
    msg->next = RT_NULL;
    /* copy buffer */
    rt_memcpy(msg + 1, buffer, size);

    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
    /* link msg to message queue */
    if (mq->msg_queue_tail != RT_NULL)
    {
        /* if the tail exists, */
        ((struct rt_mq_message *)mq->msg_queue_tail)->next = msg;
    }

    /* set new tail */
    mq->msg_queue_tail = msg;
    /* if the head is empty, set head */
    if (mq->msg_queue_head == RT_NULL)
        mq->msg_queue_head = msg;

    /* increase message entry */
    mq->entry ++;

    /* resume suspended thread */
    if (!rt_list_isempty(&mq->parent.suspend_thread))
    {
        rt_ipc_list_resume(&(mq->parent.suspend_thread));

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        rt_schedule();

        return RT_EOK;
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

    return RT_EOK;
2162
}
2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178
RTM_EXPORT(rt_mq_send_wait)

/**
 * This function will send a message to message queue object, if there are
 * threads suspended on message queue object, it will be waked up.
 *
 * @param mq the message queue object
 * @param buffer the message
 * @param size the size of buffer
 *
 * @return the error code
 */
rt_err_t rt_mq_send(rt_mq_t mq, const void *buffer, rt_size_t size)
{
    return rt_mq_send_wait(mq, buffer, size, 0);
}
2179
RTM_EXPORT(rt_mq_send);
2180 2181

/**
D
dzzxzz@gmail.com 已提交
2182 2183 2184
 * This function will send an urgent message to message queue object, which
 * means the message will be inserted to the head of message queue. If there
 * are threads suspended on message queue object, it will be waked up.
2185 2186 2187 2188 2189 2190 2191
 *
 * @param mq the message queue object
 * @param buffer the message
 * @param size the size of buffer
 *
 * @return the error code
 */
2192
rt_err_t rt_mq_urgent(rt_mq_t mq, const void *buffer, rt_size_t size)
2193
{
D
dzzxzz@gmail.com 已提交
2194 2195
    register rt_ubase_t temp;
    struct rt_mq_message *msg;
2196

2197
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2198
    RT_ASSERT(mq != RT_NULL);
2199
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
D
dzzxzz@gmail.com 已提交
2200 2201
    RT_ASSERT(buffer != RT_NULL);
    RT_ASSERT(size != 0);
2202

D
dzzxzz@gmail.com 已提交
2203 2204 2205
    /* greater than one message size */
    if (size > mq->msg_size)
        return -RT_ERROR;
2206

D
dzzxzz@gmail.com 已提交
2207
    RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(mq->parent.parent)));
2208

D
dzzxzz@gmail.com 已提交
2209 2210
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
2211

D
dzzxzz@gmail.com 已提交
2212 2213 2214 2215 2216 2217 2218
    /* get a free list, there must be an empty item */
    msg = (struct rt_mq_message *)mq->msg_queue_free;
    /* message queue is full */
    if (msg == RT_NULL)
    {
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
2219

D
dzzxzz@gmail.com 已提交
2220 2221 2222 2223
        return -RT_EFULL;
    }
    /* move free list pointer */
    mq->msg_queue_free = msg->next;
2224

D
dzzxzz@gmail.com 已提交
2225 2226
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
2227

D
dzzxzz@gmail.com 已提交
2228 2229
    /* copy buffer */
    rt_memcpy(msg + 1, buffer, size);
2230

D
dzzxzz@gmail.com 已提交
2231 2232
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
2233

D
dzzxzz@gmail.com 已提交
2234
    /* link msg to the beginning of message queue */
2235
    msg->next = (struct rt_mq_message *)mq->msg_queue_head;
D
dzzxzz@gmail.com 已提交
2236
    mq->msg_queue_head = msg;
2237

D
dzzxzz@gmail.com 已提交
2238 2239 2240
    /* if there is no tail */
    if (mq->msg_queue_tail == RT_NULL)
        mq->msg_queue_tail = msg;
2241

D
dzzxzz@gmail.com 已提交
2242 2243
    /* increase message entry */
    mq->entry ++;
2244

D
dzzxzz@gmail.com 已提交
2245 2246 2247 2248
    /* resume suspended thread */
    if (!rt_list_isempty(&mq->parent.suspend_thread))
    {
        rt_ipc_list_resume(&(mq->parent.suspend_thread));
2249

D
dzzxzz@gmail.com 已提交
2250 2251
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
2252

D
dzzxzz@gmail.com 已提交
2253
        rt_schedule();
D
dzzxzz 已提交
2254

D
dzzxzz@gmail.com 已提交
2255 2256
        return RT_EOK;
    }
2257

D
dzzxzz@gmail.com 已提交
2258 2259
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
2260

D
dzzxzz@gmail.com 已提交
2261
    return RT_EOK;
2262
}
2263
RTM_EXPORT(rt_mq_urgent);
2264 2265

/**
D
dzzxzz@gmail.com 已提交
2266 2267 2268
 * This function will receive a message from message queue object, if there is
 * no message in message queue object, the thread shall wait for a specified
 * time.
2269 2270 2271 2272 2273 2274 2275 2276
 *
 * @param mq the message queue object
 * @param buffer the received message will be saved in
 * @param size the size of buffer
 * @param timeout the waiting time
 *
 * @return the error code
 */
D
dzzxzz@gmail.com 已提交
2277 2278 2279 2280
rt_err_t rt_mq_recv(rt_mq_t    mq,
                    void      *buffer,
                    rt_size_t  size,
                    rt_int32_t timeout)
2281
{
D
dzzxzz@gmail.com 已提交
2282 2283 2284 2285 2286
    struct rt_thread *thread;
    register rt_ubase_t temp;
    struct rt_mq_message *msg;
    rt_uint32_t tick_delta;

2287
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2288
    RT_ASSERT(mq != RT_NULL);
2289
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
D
dzzxzz@gmail.com 已提交
2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312
    RT_ASSERT(buffer != RT_NULL);
    RT_ASSERT(size != 0);

    /* initialize delta tick */
    tick_delta = 0;
    /* get current thread */
    thread = rt_thread_self();
    RT_OBJECT_HOOK_CALL(rt_object_trytake_hook, (&(mq->parent.parent)));

    /* disable interrupt */
    temp = rt_hw_interrupt_disable();

    /* for non-blocking call */
    if (mq->entry == 0 && timeout == 0)
    {
        rt_hw_interrupt_enable(temp);

        return -RT_ETIMEOUT;
    }

    /* message queue is empty */
    while (mq->entry == 0)
    {
G
Grissiom 已提交
2313
        RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340

        /* reset error number in thread */
        thread->error = RT_EOK;

        /* no waiting, return timeout */
        if (timeout == 0)
        {
            /* enable interrupt */
            rt_hw_interrupt_enable(temp);

            thread->error = -RT_ETIMEOUT;

            return -RT_ETIMEOUT;
        }

        /* suspend current thread */
        rt_ipc_list_suspend(&(mq->parent.suspend_thread),
                            thread,
                            mq->parent.parent.flag);

        /* has waiting time, start thread timer */
        if (timeout > 0)
        {
            /* get the start tick of timer */
            tick_delta = rt_tick_get();

            RT_DEBUG_LOG(RT_DEBUG_IPC, ("set thread:%s to timer list\n",
2341
                                        thread->name));
2342

D
dzzxzz@gmail.com 已提交
2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398
            /* reset the timeout of thread timer and start it */
            rt_timer_control(&(thread->thread_timer),
                             RT_TIMER_CTRL_SET_TIME,
                             &timeout);
            rt_timer_start(&(thread->thread_timer));
        }

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        /* re-schedule */
        rt_schedule();

        /* recv message */
        if (thread->error != RT_EOK)
        {
            /* return error */
            return thread->error;
        }

        /* disable interrupt */
        temp = rt_hw_interrupt_disable();

        /* if it's not waiting forever and then re-calculate timeout tick */
        if (timeout > 0)
        {
            tick_delta = rt_tick_get() - tick_delta;
            timeout -= tick_delta;
            if (timeout < 0)
                timeout = 0;
        }
    }

    /* get message from queue */
    msg = (struct rt_mq_message *)mq->msg_queue_head;

    /* move message queue head */
    mq->msg_queue_head = msg->next;
    /* reach queue tail, set to NULL */
    if (mq->msg_queue_tail == msg)
        mq->msg_queue_tail = RT_NULL;

    /* decrease message entry */
    mq->entry --;

    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

    /* copy message */
    rt_memcpy(buffer, msg + 1, size > mq->msg_size ? mq->msg_size : size);

    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
    /* put message to free list */
    msg->next = (struct rt_mq_message *)mq->msg_queue_free;
    mq->msg_queue_free = msg;
2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414

    /* resume suspended thread */
    if (!rt_list_isempty(&(mq->suspend_sender_thread)))
    {
        rt_ipc_list_resume(&(mq->suspend_sender_thread));

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(mq->parent.parent)));

        rt_schedule();

        return RT_EOK;
    }

D
dzzxzz@gmail.com 已提交
2415 2416 2417 2418 2419 2420
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

    RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(mq->parent.parent)));

    return RT_EOK;
2421
}
B
Bernard Xiong 已提交
2422
RTM_EXPORT(rt_mq_recv);
2423 2424

/**
D
dzzxzz@gmail.com 已提交
2425 2426
 * This function can get or set some extra attributions of a message queue
 * object.
2427 2428 2429 2430 2431 2432 2433
 *
 * @param mq the message queue object
 * @param cmd the execution command
 * @param arg the execution argument
 *
 * @return the error code
 */
B
bernard 已提交
2434
rt_err_t rt_mq_control(rt_mq_t mq, int cmd, void *arg)
2435
{
D
dzzxzz@gmail.com 已提交
2436 2437
    rt_ubase_t level;
    struct rt_mq_message *msg;
2438

2439
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2440
    RT_ASSERT(mq != RT_NULL);
2441
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
2442

D
dzzxzz@gmail.com 已提交
2443 2444 2445 2446
    if (cmd == RT_IPC_CMD_RESET)
    {
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
2447

D
dzzxzz@gmail.com 已提交
2448 2449
        /* resume all waiting thread */
        rt_ipc_list_resume_all(&mq->parent.suspend_thread);
2450 2451
        /* also resume all message queue private suspended thread */
        rt_ipc_list_resume_all(&(mq->suspend_sender_thread));
2452

D
dzzxzz@gmail.com 已提交
2453 2454 2455 2456 2457
        /* release all message in the queue */
        while (mq->msg_queue_head != RT_NULL)
        {
            /* get message from queue */
            msg = (struct rt_mq_message *)mq->msg_queue_head;
2458

D
dzzxzz@gmail.com 已提交
2459 2460 2461 2462 2463
            /* move message queue head */
            mq->msg_queue_head = msg->next;
            /* reach queue tail, set to NULL */
            if (mq->msg_queue_tail == msg)
                mq->msg_queue_tail = RT_NULL;
2464

D
dzzxzz@gmail.com 已提交
2465 2466 2467 2468
            /* put message to free list */
            msg->next = (struct rt_mq_message *)mq->msg_queue_free;
            mq->msg_queue_free = msg;
        }
2469

D
dzzxzz@gmail.com 已提交
2470 2471
        /* clean entry */
        mq->entry = 0;
2472

D
dzzxzz@gmail.com 已提交
2473 2474
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
2475

D
dzzxzz@gmail.com 已提交
2476
        rt_schedule();
2477

D
dzzxzz@gmail.com 已提交
2478 2479
        return RT_EOK;
    }
2480

D
dzzxzz@gmail.com 已提交
2481
    return -RT_ERROR;
2482
}
D
dzzxzz@gmail.com 已提交
2483
RTM_EXPORT(rt_mq_control);
2484
#endif /* end of RT_USING_MESSAGEQUEUE */
D
dzzxzz 已提交
2485

D
dogandog 已提交
2486
/**@}*/