ipc.c 70.3 KB
Newer Older
1
/*
mysterywolf's avatar
mysterywolf 已提交
2
 * Copyright (c) 2006-2021, 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
mysterywolf's avatar
mysterywolf 已提交
37
 * 2020-07-29     Meco Man     fix thread->event_set/event_info when received an
mysterywolf's avatar
mysterywolf 已提交
38
 *                             event without pending
39
 * 2020-10-11     Meco Man     add value overflow-check code
mysterywolf's avatar
mysterywolf 已提交
40 41
 * 2021-01-03     Meco Man     implement rt_mb_urgent()
 * 2021-05-30     Meco Man     implement rt_mutex_trytake()
42
 * 2021-01-20     hupu         fix priority inversion bug of mutex
43 44 45 46 47 48
 */

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

#ifdef RT_USING_HOOK
D
dzzxzz 已提交
49 50 51
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);
52 53 54 55 56 57
#endif

/**
 * @addtogroup IPC
 */

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

/**
 * 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 已提交
69
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
70
    rt_list_init(&(ipc->suspend_thread));
71

D
dzzxzz@gmail.com 已提交
72
    return RT_EOK;
73 74 75
}

/**
D
dzzxzz@gmail.com 已提交
76 77
 * This function will suspend a thread to a specified list. IPC object or some
 * double-queue object (mailbox etc.) contains this kind of list.
78
 *
B
bernard.xiong@gmail.com 已提交
79
 * @param list the IPC suspended thread list
80
 * @param thread the thread object to be suspended
D
dzzxzz@gmail.com 已提交
81 82
 * @param flag the IPC object flag,
 *        which shall be RT_IPC_FLAG_FIFO/RT_IPC_FLAG_PRIO.
83 84 85
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz@gmail.com 已提交
86 87 88
rt_inline rt_err_t rt_ipc_list_suspend(rt_list_t        *list,
                                       struct rt_thread *thread,
                                       rt_uint8_t        flag)
89
{
D
dzzxzz@gmail.com 已提交
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 124 125
    /* 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 已提交
126 127

    default:
T
tangyuxin 已提交
128
        RT_ASSERT(0);
mysterywolf's avatar
mysterywolf 已提交
129
        break;
D
dzzxzz@gmail.com 已提交
130 131 132
    }

    return RT_EOK;
133 134 135
}

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

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

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

D
dzzxzz@gmail.com 已提交
153 154
    /* resume it */
    rt_thread_resume(thread);
155

D
dzzxzz@gmail.com 已提交
156
    return RT_EOK;
157 158 159
}

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

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

B
Bernard Xiong 已提交
178
        /* get next suspended thread */
D
dzzxzz@gmail.com 已提交
179 180 181 182 183 184 185
        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 已提交
186
         * suspended list
D
dzzxzz@gmail.com 已提交
187 188 189 190 191 192 193 194
         */
        rt_thread_resume(thread);

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

    return RT_EOK;
195 196
}

St0pH@CK's avatar
St0pH@CK 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
/**
 * This function will get the highest priority from the specified
 * list of threads
 *
 * @param list of the threads
 *
 * @return the highest priority
 */
rt_uint8_t rt_ipc_get_highest_priority(rt_list_t *list)
{
    struct rt_list_node *n;
    struct rt_thread *sthread;
    rt_uint8_t priority = RT_THREAD_PRIORITY_MAX - 1;

    for (n = list->next; n != list; n = n->next)
    {
        sthread = rt_list_entry(n, struct rt_thread, tlist);

        priority = priority < sthread->current_priority ?
                    priority :
                    sthread->current_priority;
    }
    return priority;
}

222 223
#ifdef RT_USING_SEMAPHORE
/**
D
dzzxzz@gmail.com 已提交
224 225
 * This function will initialize a semaphore and put it under control of
 * resource management.
226 227 228
 *
 * @param sem the semaphore object
 * @param name the name of semaphore
B
Bernard Xiong 已提交
229
 * @param value the initial value of semaphore
230 231 232 233
 * @param flag the flag of semaphore
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz@gmail.com 已提交
234 235 236 237
rt_err_t rt_sem_init(rt_sem_t    sem,
                     const char *name,
                     rt_uint32_t value,
                     rt_uint8_t  flag)
238
{
D
dzzxzz@gmail.com 已提交
239
    RT_ASSERT(sem != RT_NULL);
240
    RT_ASSERT(value < 0x10000U);
241

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

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

B
Bernard Xiong 已提交
248
    /* set initial value */
249
    sem->value = (rt_uint16_t)value;
250

D
dzzxzz@gmail.com 已提交
251 252
    /* set parent */
    sem->parent.parent.flag = flag;
253

D
dzzxzz@gmail.com 已提交
254
    return RT_EOK;
255
}
256
RTM_EXPORT(rt_sem_init);
257 258 259 260 261 262 263 264 265 266

/**
 * 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 已提交
267
rt_err_t rt_sem_detach(rt_sem_t sem)
268
{
269
    /* parameter check */
D
dzzxzz@gmail.com 已提交
270
    RT_ASSERT(sem != RT_NULL);
271 272
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);
    RT_ASSERT(rt_object_is_systemobject(&sem->parent.parent));
273

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

D
dzzxzz@gmail.com 已提交
277 278
    /* detach semaphore object */
    rt_object_detach(&(sem->parent.parent));
279

D
dzzxzz@gmail.com 已提交
280
    return RT_EOK;
281
}
282
RTM_EXPORT(rt_sem_detach);
283 284 285 286 287 288

#ifdef RT_USING_HEAP
/**
 * This function will create a semaphore from system resource
 *
 * @param name the name of semaphore
B
Bernard Xiong 已提交
289
 * @param value the initial value of semaphore
290 291 292 293 294 295
 * @param flag the flag of semaphore
 *
 * @return the created semaphore, RT_NULL on error happen
 *
 * @see rt_sem_init
 */
D
dzzxzz 已提交
296
rt_sem_t rt_sem_create(const char *name, rt_uint32_t value, rt_uint8_t flag)
297
{
D
dzzxzz@gmail.com 已提交
298
    rt_sem_t sem;
299

D
dzzxzz@gmail.com 已提交
300
    RT_DEBUG_NOT_IN_INTERRUPT;
301
    RT_ASSERT(value < 0x10000U);
302

D
dzzxzz@gmail.com 已提交
303 304 305 306
    /* allocate object */
    sem = (rt_sem_t)rt_object_allocate(RT_Object_Class_Semaphore, name);
    if (sem == RT_NULL)
        return sem;
307

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

B
Bernard Xiong 已提交
311
    /* set initial value */
D
dzzxzz@gmail.com 已提交
312
    sem->value = value;
313

D
dzzxzz@gmail.com 已提交
314 315
    /* set parent */
    sem->parent.parent.flag = flag;
316

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

/**
 * 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 已提交
330
rt_err_t rt_sem_delete(rt_sem_t sem)
331
{
D
dzzxzz@gmail.com 已提交
332
    RT_DEBUG_NOT_IN_INTERRUPT;
333

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

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

D
dzzxzz@gmail.com 已提交
342 343
    /* delete semaphore object */
    rt_object_delete(&(sem->parent.parent));
344

D
dzzxzz@gmail.com 已提交
345
    return RT_EOK;
346
}
347
RTM_EXPORT(rt_sem_delete);
348 349 350 351 352 353 354 355 356 357 358
#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 已提交
359
rt_err_t rt_sem_take(rt_sem_t sem, rt_int32_t time)
360
{
D
dzzxzz@gmail.com 已提交
361 362
    register rt_base_t temp;
    struct rt_thread *thread;
363

364
    /* parameter check */
D
dzzxzz@gmail.com 已提交
365
    RT_ASSERT(sem != RT_NULL);
366
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);
367

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

D
dzzxzz@gmail.com 已提交
370 371
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
372

D
dzzxzz@gmail.com 已提交
373
    RT_DEBUG_LOG(RT_DEBUG_IPC, ("thread %s take sem:%s, which value is: %d\n",
374 375 376
                                rt_thread_self()->name,
                                ((struct rt_object *)sem)->name,
                                sem->value));
377

D
dzzxzz@gmail.com 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
    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 已提交
398
            RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
399 400 401 402 403 404 405 406 407

            /* 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",
408
                                        thread->name));
409

D
dzzxzz@gmail.com 已提交
410 411 412 413
            /* suspend thread */
            rt_ipc_list_suspend(&(sem->parent.suspend_thread),
                                thread,
                                sem->parent.parent.flag);
414

D
dzzxzz@gmail.com 已提交
415 416 417 418
            /* has waiting time, start thread timer */
            if (time > 0)
            {
                RT_DEBUG_LOG(RT_DEBUG_IPC, ("set thread:%s to timer list\n",
419
                                            thread->name));
420

D
dzzxzz@gmail.com 已提交
421 422 423 424 425 426
                /* 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));
            }
427

D
dzzxzz@gmail.com 已提交
428 429
            /* enable interrupt */
            rt_hw_interrupt_enable(temp);
430

D
dzzxzz@gmail.com 已提交
431 432
            /* do schedule */
            rt_schedule();
433

D
dzzxzz@gmail.com 已提交
434 435 436 437 438 439
            if (thread->error != RT_EOK)
            {
                return thread->error;
            }
        }
    }
440

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

D
dzzxzz@gmail.com 已提交
443
    return RT_EOK;
444
}
445
RTM_EXPORT(rt_sem_take);
446 447 448 449 450 451 452 453 454 455

/**
 * 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)
{
mysterywolf's avatar
mysterywolf 已提交
456
    return rt_sem_take(sem, RT_WAITING_NO);
457
}
458
RTM_EXPORT(rt_sem_trytake);
459 460 461 462 463 464 465 466 467 468 469

/**
 * 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 已提交
470 471
    register rt_base_t temp;
    register rt_bool_t need_schedule;
472

473 474 475 476
    /* parameter check */
    RT_ASSERT(sem != RT_NULL);
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);

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

D
dzzxzz@gmail.com 已提交
479
    need_schedule = RT_FALSE;
480

D
dzzxzz@gmail.com 已提交
481 482
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
483

D
dzzxzz@gmail.com 已提交
484
    RT_DEBUG_LOG(RT_DEBUG_IPC, ("thread %s releases sem:%s, which value is: %d\n",
485 486 487
                                rt_thread_self()->name,
                                ((struct rt_object *)sem)->name,
                                sem->value));
488

D
dzzxzz@gmail.com 已提交
489 490 491 492 493 494 495
    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 已提交
496
    {
mysterywolf's avatar
mysterywolf 已提交
497
        if(sem->value < RT_SEM_VALUE_MAX)
mysterywolf's avatar
mysterywolf 已提交
498 499 500 501 502 503 504 505 506
        {
            sem->value ++; /* increase value */
        }
        else
        {
            rt_hw_interrupt_enable(temp); /* enable interrupt */
            return -RT_EFULL; /* value overflowed */
        }
    }
507

D
dzzxzz@gmail.com 已提交
508 509
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
510

D
dzzxzz@gmail.com 已提交
511 512 513
    /* resume a thread, re-schedule */
    if (need_schedule == RT_TRUE)
        rt_schedule();
514

D
dzzxzz@gmail.com 已提交
515
    return RT_EOK;
516
}
517
RTM_EXPORT(rt_sem_release);
518 519 520 521 522 523 524 525 526 527

/**
 * 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 已提交
528
rt_err_t rt_sem_control(rt_sem_t sem, int cmd, void *arg)
529
{
D
dzzxzz@gmail.com 已提交
530
    rt_ubase_t level;
531 532

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

D
dzzxzz@gmail.com 已提交
536 537
    if (cmd == RT_IPC_CMD_RESET)
    {
B
Bernard Xiong 已提交
538
        rt_ubase_t value;
539

D
dzzxzz@gmail.com 已提交
540
        /* get value */
B
Bernard Xiong 已提交
541
        value = (rt_ubase_t)arg;
D
dzzxzz@gmail.com 已提交
542 543
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
544

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

D
dzzxzz@gmail.com 已提交
548 549
        /* set new value */
        sem->value = (rt_uint16_t)value;
550

D
dzzxzz@gmail.com 已提交
551 552
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
553

D
dzzxzz@gmail.com 已提交
554
        rt_schedule();
555

D
dzzxzz@gmail.com 已提交
556 557
        return RT_EOK;
    }
558

D
dzzxzz@gmail.com 已提交
559
    return -RT_ERROR;
560
}
561
RTM_EXPORT(rt_sem_control);
562 563 564 565 566 567 568 569 570 571 572 573 574
#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 已提交
575
rt_err_t rt_mutex_init(rt_mutex_t mutex, const char *name, rt_uint8_t flag)
576
{
577
    /* parameter check */
D
dzzxzz@gmail.com 已提交
578
    RT_ASSERT(mutex != RT_NULL);
579

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

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

D
dzzxzz@gmail.com 已提交
586 587 588 589
    mutex->value = 1;
    mutex->owner = RT_NULL;
    mutex->original_priority = 0xFF;
    mutex->hold  = 0;
590

D
dzzxzz@gmail.com 已提交
591 592
    /* set flag */
    mutex->parent.parent.flag = flag;
593

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

/**
 * 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 已提交
607
rt_err_t rt_mutex_detach(rt_mutex_t mutex)
608
{
609
    /* parameter check */
D
dzzxzz@gmail.com 已提交
610
    RT_ASSERT(mutex != RT_NULL);
611 612
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);
    RT_ASSERT(rt_object_is_systemobject(&mutex->parent.parent));
613

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

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

D
dzzxzz@gmail.com 已提交
620
    return RT_EOK;
621
}
622
RTM_EXPORT(rt_mutex_detach);
623 624 625 626 627 628 629 630 631 632 633 634

#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 已提交
635
rt_mutex_t rt_mutex_create(const char *name, rt_uint8_t flag)
636
{
D
dzzxzz@gmail.com 已提交
637
    struct rt_mutex *mutex;
638

D
dzzxzz@gmail.com 已提交
639
    RT_DEBUG_NOT_IN_INTERRUPT;
640

D
dzzxzz@gmail.com 已提交
641 642 643 644
    /* allocate object */
    mutex = (rt_mutex_t)rt_object_allocate(RT_Object_Class_Mutex, name);
    if (mutex == RT_NULL)
        return mutex;
645

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

D
dzzxzz@gmail.com 已提交
649 650 651 652
    mutex->value              = 1;
    mutex->owner              = RT_NULL;
    mutex->original_priority  = 0xFF;
    mutex->hold               = 0;
653

D
dzzxzz@gmail.com 已提交
654 655
    /* set flag */
    mutex->parent.parent.flag = flag;
656

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

/**
 * 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 已提交
670
rt_err_t rt_mutex_delete(rt_mutex_t mutex)
671
{
D
dzzxzz@gmail.com 已提交
672
    RT_DEBUG_NOT_IN_INTERRUPT;
673

674
    /* parameter check */
D
dzzxzz@gmail.com 已提交
675
    RT_ASSERT(mutex != RT_NULL);
676 677
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);
    RT_ASSERT(rt_object_is_systemobject(&mutex->parent.parent) == RT_FALSE);
678

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

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

D
dzzxzz@gmail.com 已提交
685
    return RT_EOK;
686
}
687
RTM_EXPORT(rt_mutex_delete);
688 689 690 691 692 693 694 695 696 697 698
#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 已提交
699
rt_err_t rt_mutex_take(rt_mutex_t mutex, rt_int32_t time)
700
{
D
dzzxzz@gmail.com 已提交
701 702
    register rt_base_t temp;
    struct rt_thread *thread;
703

B
bernard 已提交
704 705 706
    /* this function must not be used in interrupt even if time = 0 */
    RT_DEBUG_IN_THREAD_CONTEXT;

707
    /* parameter check */
708
    RT_ASSERT(mutex != RT_NULL);
709
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);
710 711 712

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

D
dzzxzz@gmail.com 已提交
714 715
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
716

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

D
dzzxzz@gmail.com 已提交
719
    RT_DEBUG_LOG(RT_DEBUG_IPC,
720 721
                 ("mutex_take: current thread %s, mutex value: %d, hold: %d\n",
                  thread->name, mutex->value, mutex->hold));
722

D
dzzxzz@gmail.com 已提交
723 724 725 726 727
    /* reset thread error */
    thread->error = RT_EOK;

    if (mutex->owner == thread)
    {
mysterywolf's avatar
mysterywolf 已提交
728
        if(mutex->hold < RT_MUTEX_HOLD_MAX)
729 730 731 732 733 734 735 736 737
        {
            /* it's the same thread */
            mutex->hold ++;
        }
        else
        {
            rt_hw_interrupt_enable(temp); /* enable interrupt */
            return -RT_EFULL; /* value overflowed */
        }
D
dzzxzz@gmail.com 已提交
738 739 740
    }
    else
    {
741
#ifdef RT_USING_SIGNALS
B
bernard 已提交
742
__again:
743
#endif /* end of RT_USING_SIGNALS */
D
dzzxzz@gmail.com 已提交
744 745 746 747 748 749 750 751 752 753 754
        /* 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;
mysterywolf's avatar
mysterywolf 已提交
755
            if(mutex->hold < RT_MUTEX_HOLD_MAX)
756 757 758 759 760 761 762 763
            {
                mutex->hold ++;
            }
            else
            {
                rt_hw_interrupt_enable(temp); /* enable interrupt */
                return -RT_EFULL; /* value overflowed */
            }
D
dzzxzz@gmail.com 已提交
764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
        }
        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",
782
                                            thread->name));
783

D
dzzxzz@gmail.com 已提交
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
                /* 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,
802 803
                                 ("mutex_take: start the timer of thread:%s\n",
                                  thread->name));
804

D
dzzxzz@gmail.com 已提交
805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
                    /* 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)
                {
820
#ifdef RT_USING_SIGNALS
821 822
                    /* interrupt by signal, try it again */
                    if (thread->error == -RT_EINTR) goto __again;
823
#endif /* end of RT_USING_SIGNALS */
B
bernard 已提交
824

D
dzzxzz@gmail.com 已提交
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
                    /* 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;
844
}
845
RTM_EXPORT(rt_mutex_take);
846

mysterywolf's avatar
mysterywolf 已提交
847 848 849 850 851 852 853 854 855 856 857 858 859
/**
 * This function will try to take a mutex and immediately return
 *
 * @param mutex the mutex object
 *
 * @return the error code
 */
rt_err_t rt_mutex_trytake(rt_mutex_t mutex)
{
    return rt_mutex_take(mutex, RT_WAITING_NO);
}
RTM_EXPORT(rt_mutex_trytake);

860 861 862 863 864 865 866 867 868 869
/**
 * 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 已提交
870 871 872
    register rt_base_t temp;
    struct rt_thread *thread;
    rt_bool_t need_schedule;
St0pH@CK's avatar
St0pH@CK 已提交
873
    rt_uint8_t max_priority_in_queue = RT_THREAD_PRIORITY_MAX - 1;
874

875 876 877 878
    /* parameter check */
    RT_ASSERT(mutex != RT_NULL);
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);

D
dzzxzz@gmail.com 已提交
879
    need_schedule = RT_FALSE;
880

881 882
    /* only thread could release mutex because we need test the ownership */
    RT_DEBUG_IN_THREAD_CONTEXT;
883

B
bernard 已提交
884 885 886
    /* get current thread */
    thread = rt_thread_self();

D
dzzxzz@gmail.com 已提交
887 888
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
889

D
dzzxzz@gmail.com 已提交
890
    RT_DEBUG_LOG(RT_DEBUG_IPC,
891 892
                 ("mutex_release:current thread %s, mutex value: %d, hold: %d\n",
                  thread->name, mutex->value, mutex->hold));
893

D
dzzxzz@gmail.com 已提交
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
    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",
929
                                        thread->name));
930

D
dzzxzz@gmail.com 已提交
931 932 933
            /* set new owner and priority */
            mutex->owner             = thread;
            mutex->original_priority = thread->current_priority;
St0pH@CK's avatar
St0pH@CK 已提交
934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949

            /* Priority adjustment occurs only when the following conditions
             * are met simultaneously:
             * 1.The type of mutex is RT_IPC_FLAG_FIFO;
             * 2.The priority of the thread to be resumed is not equal to the
             *   highest priority in the queue;
             */
            max_priority_in_queue = rt_ipc_get_highest_priority(&mutex->parent.suspend_thread);
            if (mutex->parent.parent.flag == RT_IPC_FLAG_FIFO &&
                thread->current_priority != max_priority_in_queue)
            {
                rt_thread_control(thread,
                        RT_THREAD_CTRL_CHANGE_PRIORITY,
                        &(max_priority_in_queue));
            }

mysterywolf's avatar
mysterywolf 已提交
950
            if(mutex->hold < RT_MUTEX_HOLD_MAX)
951 952 953 954 955 956 957 958
            {
                mutex->hold ++;
            }
            else
            {
                rt_hw_interrupt_enable(temp); /* enable interrupt */
                return -RT_EFULL; /* value overflowed */
            }
959

D
dzzxzz@gmail.com 已提交
960 961
            /* resume thread */
            rt_ipc_list_resume(&(mutex->parent.suspend_thread));
962

D
dzzxzz@gmail.com 已提交
963 964 965 966
            need_schedule = RT_TRUE;
        }
        else
        {
mysterywolf's avatar
mysterywolf 已提交
967
            if(mutex->value < RT_MUTEX_VALUE_MAX)
968 969 970 971 972 973 974 975 976
            {
                /* increase value */
                mutex->value ++;
            }
            else
            {
                rt_hw_interrupt_enable(temp); /* enable interrupt */
                return -RT_EFULL; /* value overflowed */
            }
mysterywolf's avatar
mysterywolf 已提交
977

D
dzzxzz@gmail.com 已提交
978 979 980 981 982
            /* clear owner */
            mutex->owner             = RT_NULL;
            mutex->original_priority = 0xff;
        }
    }
983

D
dzzxzz@gmail.com 已提交
984 985
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
986

D
dzzxzz@gmail.com 已提交
987 988 989
    /* perform a schedule */
    if (need_schedule == RT_TRUE)
        rt_schedule();
B
bernard.xiong 已提交
990

D
dzzxzz@gmail.com 已提交
991
    return RT_EOK;
992
}
993
RTM_EXPORT(rt_mutex_release);
994 995 996 997 998 999 1000 1001 1002 1003

/**
 * 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 已提交
1004
rt_err_t rt_mutex_control(rt_mutex_t mutex, int cmd, void *arg)
1005
{
1006 1007 1008 1009
    /* parameter check */
    RT_ASSERT(mutex != RT_NULL);
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);

D
dzzxzz@gmail.com 已提交
1010
    return -RT_ERROR;
1011
}
1012
RTM_EXPORT(rt_mutex_control);
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
#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 已提交
1026
rt_err_t rt_event_init(rt_event_t event, const char *name, rt_uint8_t flag)
1027
{
1028
    /* parameter check */
D
dzzxzz@gmail.com 已提交
1029
    RT_ASSERT(event != RT_NULL);
1030

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

D
dzzxzz@gmail.com 已提交
1034 1035
    /* set parent flag */
    event->parent.parent.flag = flag;
1036

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

B
Bernard Xiong 已提交
1040
    /* initialize event */
D
dzzxzz@gmail.com 已提交
1041
    event->set = 0;
1042

D
dzzxzz@gmail.com 已提交
1043
    return RT_EOK;
1044
}
1045
RTM_EXPORT(rt_event_init);
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055

/**
 * 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 已提交
1056 1057
    /* parameter check */
    RT_ASSERT(event != RT_NULL);
1058 1059
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);
    RT_ASSERT(rt_object_is_systemobject(&event->parent.parent));
1060

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

D
dzzxzz@gmail.com 已提交
1064 1065
    /* detach event object */
    rt_object_detach(&(event->parent.parent));
1066

D
dzzxzz@gmail.com 已提交
1067
    return RT_EOK;
1068
}
1069
RTM_EXPORT(rt_event_detach);
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079

#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 已提交
1080
rt_event_t rt_event_create(const char *name, rt_uint8_t flag)
1081
{
D
dzzxzz@gmail.com 已提交
1082
    rt_event_t event;
1083

D
dzzxzz@gmail.com 已提交
1084
    RT_DEBUG_NOT_IN_INTERRUPT;
1085

D
dzzxzz@gmail.com 已提交
1086 1087 1088 1089
    /* allocate object */
    event = (rt_event_t)rt_object_allocate(RT_Object_Class_Event, name);
    if (event == RT_NULL)
        return event;
1090

D
dzzxzz@gmail.com 已提交
1091 1092
    /* set parent */
    event->parent.parent.flag = flag;
1093

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

B
Bernard Xiong 已提交
1097
    /* initialize event */
D
dzzxzz@gmail.com 已提交
1098
    event->set = 0;
1099

D
dzzxzz@gmail.com 已提交
1100
    return event;
1101
}
1102
RTM_EXPORT(rt_event_create);
1103 1104 1105 1106 1107 1108 1109 1110

/**
 * This function will delete an event object and release the memory
 *
 * @param event the event object
 *
 * @return the error code
 */
D
dzzxzz 已提交
1111
rt_err_t rt_event_delete(rt_event_t event)
1112
{
D
dzzxzz@gmail.com 已提交
1113 1114
    /* parameter check */
    RT_ASSERT(event != RT_NULL);
1115 1116
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);
    RT_ASSERT(rt_object_is_systemobject(&event->parent.parent) == RT_FALSE);
1117

D
dzzxzz@gmail.com 已提交
1118
    RT_DEBUG_NOT_IN_INTERRUPT;
1119

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

D
dzzxzz@gmail.com 已提交
1123 1124
    /* delete event object */
    rt_object_delete(&(event->parent.parent));
1125

D
dzzxzz@gmail.com 已提交
1126
    return RT_EOK;
1127
}
1128
RTM_EXPORT(rt_event_delete);
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
#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 已提交
1142 1143 1144 1145 1146 1147 1148 1149
    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);
1150 1151
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);

D
dzzxzz@gmail.com 已提交
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
    if (set == 0)
        return -RT_ERROR;

    need_schedule = RT_FALSE;

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

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

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

D
dzzxzz@gmail.com 已提交
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
    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 已提交
1187
                    /* save the received event set */
D
dzzxzz@gmail.com 已提交
1188 1189 1190 1191 1192 1193
                    thread->event_set = thread->event_set & event->set;

                    /* received an OR event */
                    status = RT_EOK;
                }
            }
1194 1195 1196 1197 1198 1199 1200
            else
            {
                /* enable interrupt */
                rt_hw_interrupt_enable(level);

                return -RT_EINVAL;
            }
D
dzzxzz@gmail.com 已提交
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228

            /* 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;
1229
}
1230
RTM_EXPORT(rt_event_send);
1231 1232

/**
D
dzzxzz@gmail.com 已提交
1233 1234
 * This function will receive an event from event object, if the event is
 * unavailable, the thread shall wait for a specified time.
1235 1236 1237
 *
 * @param event the fast event object
 * @param set the interested event set
1238 1239
 * @param option the receive option, either RT_EVENT_FLAG_AND or
 *        RT_EVENT_FLAG_OR should be set.
1240
 * @param timeout the waiting time
P
pathletboy 已提交
1241
 * @param recved the received event, if you don't care, RT_NULL can be set.
1242 1243 1244
 *
 * @return the error code
 */
D
dzzxzz@gmail.com 已提交
1245 1246 1247 1248 1249
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)
1250
{
D
dzzxzz@gmail.com 已提交
1251 1252 1253 1254
    struct rt_thread *thread;
    register rt_ubase_t level;
    register rt_base_t status;

G
Grissiom 已提交
1255
    RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
1256 1257 1258

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

D
dzzxzz@gmail.com 已提交
1261 1262 1263
    if (set == 0)
        return -RT_ERROR;

B
Bernard Xiong 已提交
1264
    /* initialize status */
D
dzzxzz@gmail.com 已提交
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286
    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;
    }
1287 1288 1289 1290 1291
    else
    {
        /* either RT_EVENT_FLAG_AND or RT_EVENT_FLAG_OR should be set */
        RT_ASSERT(0);
    }
D
dzzxzz@gmail.com 已提交
1292 1293 1294 1295

    if (status == RT_EOK)
    {
        /* set received event */
1296
        if (recved)
P
pathletboy 已提交
1297
            *recved = (event->set & set);
mysterywolf's avatar
mysterywolf 已提交
1298 1299

        /* fill thread event info */
1300 1301
        thread->event_set = (event->set & set);
        thread->event_info = option;
mysterywolf's avatar
mysterywolf 已提交
1302

D
dzzxzz@gmail.com 已提交
1303 1304 1305 1306 1307 1308 1309 1310
        /* received event */
        if (option & RT_EVENT_FLAG_CLEAR)
            event->set &= ~set;
    }
    else if (timeout == 0)
    {
        /* no waiting */
        thread->error = -RT_ETIMEOUT;
1311

G
greed-island 已提交
1312 1313
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
1314

G
greed-island 已提交
1315
        return -RT_ETIMEOUT;
D
dzzxzz@gmail.com 已提交
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
    }
    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 已提交
1354 1355
        if (recved)
            *recved = thread->event_set;
D
dzzxzz@gmail.com 已提交
1356 1357 1358 1359 1360 1361 1362 1363
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(level);

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

    return thread->error;
1364
}
1365
RTM_EXPORT(rt_event_recv);
1366 1367 1368 1369 1370 1371 1372 1373 1374 1375

/**
 * 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 已提交
1376
rt_err_t rt_event_control(rt_event_t event, int cmd, void *arg)
1377
{
D
dzzxzz@gmail.com 已提交
1378
    rt_ubase_t level;
1379

1380 1381 1382
    /* parameter check */
    RT_ASSERT(event != RT_NULL);
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);
B
Bernard Xiong 已提交
1383

D
dzzxzz@gmail.com 已提交
1384 1385 1386 1387
    if (cmd == RT_IPC_CMD_RESET)
    {
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
1388

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

B
Bernard Xiong 已提交
1392
        /* initialize event set */
D
dzzxzz@gmail.com 已提交
1393
        event->set = 0;
1394

D
dzzxzz@gmail.com 已提交
1395 1396
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
1397

D
dzzxzz@gmail.com 已提交
1398
        rt_schedule();
1399

D
dzzxzz@gmail.com 已提交
1400 1401
        return RT_EOK;
    }
1402

D
dzzxzz@gmail.com 已提交
1403
    return -RT_ERROR;
1404
}
B
Bernard Xiong 已提交
1405
RTM_EXPORT(rt_event_control);
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
#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 已提交
1421 1422 1423 1424 1425
rt_err_t rt_mb_init(rt_mailbox_t mb,
                    const char  *name,
                    void        *msgpool,
                    rt_size_t    size,
                    rt_uint8_t   flag)
1426
{
D
dzzxzz@gmail.com 已提交
1427
    RT_ASSERT(mb != RT_NULL);
1428

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

D
dzzxzz@gmail.com 已提交
1432 1433
    /* set parent flag */
    mb->parent.parent.flag = flag;
1434

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

B
Bernard Xiong 已提交
1438
    /* initialize mailbox */
1439
    mb->msg_pool   = (rt_ubase_t *)msgpool;
D
dzzxzz@gmail.com 已提交
1440 1441 1442 1443
    mb->size       = size;
    mb->entry      = 0;
    mb->in_offset  = 0;
    mb->out_offset = 0;
1444

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

D
dzzxzz@gmail.com 已提交
1448
    return RT_EOK;
1449
}
1450
RTM_EXPORT(rt_mb_init);
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460

/**
 * 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 已提交
1461 1462
    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1463 1464
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
    RT_ASSERT(rt_object_is_systemobject(&mb->parent.parent));
1465

D
dzzxzz@gmail.com 已提交
1466 1467 1468 1469
    /* 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));
1470

D
dzzxzz@gmail.com 已提交
1471 1472
    /* detach mailbox object */
    rt_object_detach(&(mb->parent.parent));
1473

D
dzzxzz@gmail.com 已提交
1474
    return RT_EOK;
1475
}
1476
RTM_EXPORT(rt_mb_detach);
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487

#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 已提交
1488
rt_mailbox_t rt_mb_create(const char *name, rt_size_t size, rt_uint8_t flag)
1489
{
D
dzzxzz@gmail.com 已提交
1490
    rt_mailbox_t mb;
1491

D
dzzxzz@gmail.com 已提交
1492
    RT_DEBUG_NOT_IN_INTERRUPT;
1493

D
dzzxzz@gmail.com 已提交
1494 1495 1496 1497
    /* allocate object */
    mb = (rt_mailbox_t)rt_object_allocate(RT_Object_Class_MailBox, name);
    if (mb == RT_NULL)
        return mb;
1498

D
dzzxzz@gmail.com 已提交
1499 1500
    /* set parent */
    mb->parent.parent.flag = flag;
1501

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

B
Bernard Xiong 已提交
1505
    /* initialize mailbox */
D
dzzxzz@gmail.com 已提交
1506
    mb->size     = size;
1507
    mb->msg_pool = (rt_ubase_t *)RT_KERNEL_MALLOC(mb->size * sizeof(rt_ubase_t));
D
dzzxzz@gmail.com 已提交
1508 1509 1510 1511
    if (mb->msg_pool == RT_NULL)
    {
        /* delete mailbox object */
        rt_object_delete(&(mb->parent.parent));
1512

D
dzzxzz@gmail.com 已提交
1513 1514 1515 1516 1517
        return RT_NULL;
    }
    mb->entry      = 0;
    mb->in_offset  = 0;
    mb->out_offset = 0;
1518

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

D
dzzxzz@gmail.com 已提交
1522
    return mb;
1523
}
1524
RTM_EXPORT(rt_mb_create);
1525 1526 1527 1528 1529 1530 1531 1532

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

D
dzzxzz@gmail.com 已提交
1537 1538
    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1539 1540
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
    RT_ASSERT(rt_object_is_systemobject(&mb->parent.parent) == RT_FALSE);
1541

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

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

1548 1549
    /* free mailbox pool */
    RT_KERNEL_FREE(mb->msg_pool);
1550

D
dzzxzz@gmail.com 已提交
1551 1552
    /* delete mailbox object */
    rt_object_delete(&(mb->parent.parent));
1553

D
dzzxzz@gmail.com 已提交
1554
    return RT_EOK;
1555
}
1556
RTM_EXPORT(rt_mb_delete);
1557 1558 1559
#endif

/**
1560 1561
 * This function will send a mail to mailbox object. If the mailbox is full,
 * current thread will be suspended until timeout.
1562 1563 1564
 *
 * @param mb the mailbox object
 * @param value the mail
1565
 * @param timeout the waiting time
1566 1567 1568
 *
 * @return the error code
 */
D
dzzxzz@gmail.com 已提交
1569
rt_err_t rt_mb_send_wait(rt_mailbox_t mb,
B
Bernard Xiong 已提交
1570
                         rt_ubase_t   value,
D
dzzxzz@gmail.com 已提交
1571
                         rt_int32_t   timeout)
1572
{
D
dzzxzz@gmail.com 已提交
1573 1574 1575 1576 1577 1578
    struct rt_thread *thread;
    register rt_ubase_t temp;
    rt_uint32_t tick_delta;

    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1579
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
D
dzzxzz@gmail.com 已提交
1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612

    /* 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 已提交
1613
        RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625
        /* 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",
1626
                                        thread->name));
1627

D
dzzxzz@gmail.com 已提交
1628 1629 1630 1631 1632 1633 1634 1635 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
            /* 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;
mysterywolf's avatar
mysterywolf 已提交
1667

mysterywolf's avatar
mysterywolf 已提交
1668
    if(mb->entry < RT_MB_ENTRY_MAX)
1669 1670 1671 1672 1673 1674 1675 1676 1677
    {
        /* increase message entry */
        mb->entry ++;
    }
    else
    {
        rt_hw_interrupt_enable(temp); /* enable interrupt */
        return -RT_EFULL; /* value overflowed */
    }
mysterywolf's avatar
mysterywolf 已提交
1678

D
dzzxzz@gmail.com 已提交
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
    /* 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;
1696
}
1697
RTM_EXPORT(rt_mb_send_wait);
1698

1699
/**
D
dzzxzz@gmail.com 已提交
1700 1701 1702
 * 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.
1703 1704 1705 1706 1707 1708
 *
 * @param mb the mailbox object
 * @param value the mail
 *
 * @return the error code
 */
B
Bernard Xiong 已提交
1709
rt_err_t rt_mb_send(rt_mailbox_t mb, rt_ubase_t value)
1710
{
D
dzzxzz@gmail.com 已提交
1711
    return rt_mb_send_wait(mb, value, 0);
1712
}
1713
RTM_EXPORT(rt_mb_send);
1714

1715
/**
mysterywolf's avatar
update  
mysterywolf 已提交
1716 1717
 * This function will send an urgent mail to mailbox object, if there are threads
 * suspended on mailbox object, it will be waked up. This function will return
mysterywolf's avatar
update  
mysterywolf 已提交
1718
 * immediately.
1719 1720 1721 1722 1723 1724
 *
 * @param mb the mailbox object
 * @param value the mail
 *
 * @return the error code
 */
mysterywolf's avatar
update  
mysterywolf 已提交
1725
rt_err_t rt_mb_urgent(rt_mailbox_t mb, rt_ubase_t value)
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737
{
    register rt_ubase_t temp;

    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);

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

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

mysterywolf's avatar
update  
mysterywolf 已提交
1738 1739 1740 1741 1742 1743
    if (mb->entry == mb->size)
    {
        rt_hw_interrupt_enable(temp);
        return -RT_EFULL;
    }

1744
    /* rewind to the previous position */
mysterywolf's avatar
update  
mysterywolf 已提交
1745
    if (mb->out_offset > 0)
1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756
    {
        mb->out_offset --;
    }
    else
    {
        mb->out_offset = mb->size - 1;
    }

    /* set ptr */
    mb->msg_pool[mb->out_offset] = value;

mysterywolf's avatar
update  
mysterywolf 已提交
1757 1758
    /* increase message entry */
    mb->entry ++;
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779

    /* 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;
}
RTM_EXPORT(rt_mb_urgent);

1780
/**
D
dzzxzz@gmail.com 已提交
1781 1782
 * 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.
1783 1784 1785 1786 1787 1788 1789
 *
 * @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 已提交
1790
rt_err_t rt_mb_recv(rt_mailbox_t mb, rt_ubase_t *value, rt_int32_t timeout)
1791
{
D
dzzxzz@gmail.com 已提交
1792 1793 1794 1795 1796 1797
    struct rt_thread *thread;
    register rt_ubase_t temp;
    rt_uint32_t tick_delta;

    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1798
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
D
dzzxzz@gmail.com 已提交
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830

    /* 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 已提交
1831

D
dzzxzz@gmail.com 已提交
1832 1833 1834
            return -RT_ETIMEOUT;
        }

G
Grissiom 已提交
1835
        RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847
        /* 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",
1848
                                        thread->name));
1849

D
dzzxzz@gmail.com 已提交
1850 1851 1852 1853 1854 1855
            /* 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));
        }
1856

D
dzzxzz@gmail.com 已提交
1857 1858
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
1859

D
dzzxzz@gmail.com 已提交
1860 1861
        /* re-schedule */
        rt_schedule();
1862

D
dzzxzz@gmail.com 已提交
1863 1864 1865 1866 1867 1868
        /* resume from suspend state */
        if (thread->error != RT_EOK)
        {
            /* return error */
            return thread->error;
        }
1869

D
dzzxzz@gmail.com 已提交
1870 1871
        /* disable interrupt */
        temp = rt_hw_interrupt_disable();
1872

D
dzzxzz@gmail.com 已提交
1873 1874 1875 1876 1877 1878 1879 1880 1881
        /* 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;
        }
    }
1882

D
dzzxzz@gmail.com 已提交
1883 1884
    /* fill ptr */
    *value = mb->msg_pool[mb->out_offset];
1885

D
dzzxzz@gmail.com 已提交
1886 1887 1888 1889
    /* increase output offset */
    ++ mb->out_offset;
    if (mb->out_offset >= mb->size)
        mb->out_offset = 0;
1890

D
dzzxzz@gmail.com 已提交
1891
    /* decrease message entry */
1892 1893 1894 1895
    if(mb->entry > 0)
    {
        mb->entry --;
    }
1896

D
dzzxzz@gmail.com 已提交
1897 1898 1899 1900
    /* resume suspended thread */
    if (!rt_list_isempty(&(mb->suspend_sender_thread)))
    {
        rt_ipc_list_resume(&(mb->suspend_sender_thread));
1901

D
dzzxzz@gmail.com 已提交
1902 1903
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
1904

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

D
dzzxzz@gmail.com 已提交
1907
        rt_schedule();
1908

D
dzzxzz@gmail.com 已提交
1909 1910
        return RT_EOK;
    }
1911

D
dzzxzz@gmail.com 已提交
1912 1913
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
1914

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

D
dzzxzz@gmail.com 已提交
1917
    return RT_EOK;
1918
}
1919
RTM_EXPORT(rt_mb_recv);
1920 1921 1922 1923 1924 1925 1926 1927 1928 1929

/**
 * 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 已提交
1930
rt_err_t rt_mb_control(rt_mailbox_t mb, int cmd, void *arg)
1931
{
D
dzzxzz@gmail.com 已提交
1932
    rt_ubase_t level;
1933 1934

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

D
dzzxzz@gmail.com 已提交
1938 1939 1940 1941
    if (cmd == RT_IPC_CMD_RESET)
    {
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
1942

D
dzzxzz@gmail.com 已提交
1943 1944 1945 1946
        /* 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));
1947

D
dzzxzz@gmail.com 已提交
1948 1949 1950 1951
        /* re-init mailbox */
        mb->entry      = 0;
        mb->in_offset  = 0;
        mb->out_offset = 0;
1952

D
dzzxzz@gmail.com 已提交
1953 1954
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
1955

D
dzzxzz@gmail.com 已提交
1956
        rt_schedule();
1957

D
dzzxzz@gmail.com 已提交
1958 1959
        return RT_EOK;
    }
1960

D
dzzxzz@gmail.com 已提交
1961
    return -RT_ERROR;
1962
}
B
Bernard Xiong 已提交
1963
RTM_EXPORT(rt_mb_control);
1964 1965 1966 1967 1968
#endif /* end of RT_USING_MAILBOX */

#ifdef RT_USING_MESSAGEQUEUE
struct rt_mq_message
{
D
dzzxzz@gmail.com 已提交
1969
    struct rt_mq_message *next;
1970 1971 1972
};

/**
D
dzzxzz@gmail.com 已提交
1973 1974
 * This function will initialize a message queue and put it under control of
 * resource management.
1975 1976 1977 1978 1979 1980 1981 1982 1983 1984
 *
 * @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 已提交
1985 1986 1987 1988 1989 1990
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)
1991
{
D
dzzxzz@gmail.com 已提交
1992 1993
    struct rt_mq_message *head;
    register rt_base_t temp;
1994

D
dzzxzz@gmail.com 已提交
1995 1996
    /* parameter check */
    RT_ASSERT(mq != RT_NULL);
1997

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

D
dzzxzz@gmail.com 已提交
2001 2002
    /* set parent flag */
    mq->parent.parent.flag = flag;
2003

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

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

D
dzzxzz@gmail.com 已提交
2010 2011 2012
    /* 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));
2013

B
Bernard Xiong 已提交
2014
    /* initialize message list */
D
dzzxzz@gmail.com 已提交
2015 2016
    mq->msg_queue_head = RT_NULL;
    mq->msg_queue_tail = RT_NULL;
2017

B
Bernard Xiong 已提交
2018
    /* initialize message empty list */
D
dzzxzz@gmail.com 已提交
2019 2020 2021 2022
    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 +
2023
                                        temp * (mq->msg_size + sizeof(struct rt_mq_message)));
2024
        head->next = (struct rt_mq_message *)mq->msg_queue_free;
D
dzzxzz@gmail.com 已提交
2025 2026
        mq->msg_queue_free = head;
    }
2027

D
dzzxzz@gmail.com 已提交
2028 2029
    /* the initial entry is zero */
    mq->entry = 0;
2030

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

D
dzzxzz@gmail.com 已提交
2034
    return RT_EOK;
2035
}
2036
RTM_EXPORT(rt_mq_init);
2037 2038 2039 2040 2041 2042 2043 2044 2045 2046

/**
 * 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 已提交
2047 2048
    /* parameter check */
    RT_ASSERT(mq != RT_NULL);
2049 2050
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
    RT_ASSERT(rt_object_is_systemobject(&mq->parent.parent));
2051

D
dzzxzz@gmail.com 已提交
2052 2053
    /* resume all suspended thread */
    rt_ipc_list_resume_all(&mq->parent.suspend_thread);
2054 2055
    /* also resume all message queue private suspended thread */
    rt_ipc_list_resume_all(&(mq->suspend_sender_thread));
2056

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

D
dzzxzz@gmail.com 已提交
2060
    return RT_EOK;
2061
}
2062
RTM_EXPORT(rt_mq_detach);
2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074

#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 已提交
2075 2076 2077 2078
rt_mq_t rt_mq_create(const char *name,
                     rt_size_t   msg_size,
                     rt_size_t   max_msgs,
                     rt_uint8_t  flag)
2079
{
D
dzzxzz@gmail.com 已提交
2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093
    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 已提交
2094
    /* initialize ipc object */
D
dzzxzz@gmail.com 已提交
2095 2096
    rt_ipc_object_init(&(mq->parent));

B
Bernard Xiong 已提交
2097
    /* initialize message queue */
D
dzzxzz@gmail.com 已提交
2098 2099 2100 2101 2102 2103

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

    /* allocate message pool */
2104
    mq->msg_pool = RT_KERNEL_MALLOC((mq->msg_size + sizeof(struct rt_mq_message)) * mq->max_msgs);
D
dzzxzz@gmail.com 已提交
2105 2106
    if (mq->msg_pool == RT_NULL)
    {
2107
        rt_object_delete(&(mq->parent.parent));
D
dzzxzz@gmail.com 已提交
2108 2109 2110 2111

        return RT_NULL;
    }

B
Bernard Xiong 已提交
2112
    /* initialize message list */
D
dzzxzz@gmail.com 已提交
2113 2114 2115
    mq->msg_queue_head = RT_NULL;
    mq->msg_queue_tail = RT_NULL;

B
Bernard Xiong 已提交
2116
    /* initialize message empty list */
D
dzzxzz@gmail.com 已提交
2117 2118 2119 2120
    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 +
2121
                                        temp * (mq->msg_size + sizeof(struct rt_mq_message)));
2122
        head->next = (struct rt_mq_message *)mq->msg_queue_free;
D
dzzxzz@gmail.com 已提交
2123 2124 2125 2126 2127 2128
        mq->msg_queue_free = head;
    }

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

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

D
dzzxzz@gmail.com 已提交
2132
    return mq;
2133
}
2134
RTM_EXPORT(rt_mq_create);
2135 2136 2137 2138 2139 2140 2141 2142

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

D
dzzxzz@gmail.com 已提交
2147 2148
    /* parameter check */
    RT_ASSERT(mq != RT_NULL);
2149 2150
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
    RT_ASSERT(rt_object_is_systemobject(&mq->parent.parent) == RT_FALSE);
2151

D
dzzxzz@gmail.com 已提交
2152 2153
    /* resume all suspended thread */
    rt_ipc_list_resume_all(&(mq->parent.suspend_thread));
2154 2155
    /* also resume all message queue private suspended thread */
    rt_ipc_list_resume_all(&(mq->suspend_sender_thread));
2156

2157 2158
    /* free message queue pool */
    RT_KERNEL_FREE(mq->msg_pool);
2159

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

D
dzzxzz@gmail.com 已提交
2163
    return RT_EOK;
2164
}
2165
RTM_EXPORT(rt_mq_delete);
2166 2167 2168
#endif

/**
2169 2170
 * This function will send a message to message queue object. If the message queue is full,
 * current thread will be suspended until timeout.
2171 2172 2173 2174
 *
 * @param mq the message queue object
 * @param buffer the message
 * @param size the size of buffer
2175
 * @param timeout the waiting time
2176 2177 2178
 *
 * @return the error code
 */
2179 2180 2181 2182
rt_err_t rt_mq_send_wait(rt_mq_t     mq,
                         const void *buffer,
                         rt_size_t   size,
                         rt_int32_t  timeout)
2183
{
D
dzzxzz@gmail.com 已提交
2184 2185
    register rt_ubase_t temp;
    struct rt_mq_message *msg;
2186 2187
    rt_uint32_t tick_delta;
    struct rt_thread *thread;
D
dzzxzz@gmail.com 已提交
2188

2189
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2190
    RT_ASSERT(mq != RT_NULL);
2191
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
D
dzzxzz@gmail.com 已提交
2192 2193 2194 2195 2196 2197 2198
    RT_ASSERT(buffer != RT_NULL);
    RT_ASSERT(size != 0);

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

2199 2200 2201 2202 2203
    /* initialize delta tick */
    tick_delta = 0;
    /* get current thread */
    thread = rt_thread_self();

D
dzzxzz@gmail.com 已提交
2204 2205 2206 2207 2208 2209
    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 */
2210
    msg = (struct rt_mq_message *)mq->msg_queue_free;
2211 2212
    /* for non-blocking call */
    if (msg == RT_NULL && timeout == 0)
D
dzzxzz@gmail.com 已提交
2213 2214 2215 2216 2217 2218
    {
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        return -RT_EFULL;
    }
2219 2220

    /* message queue is full */
2221
    while ((msg = (struct rt_mq_message *)mq->msg_queue_free) == RT_NULL)
2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282
    {
        /* 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 已提交
2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308
    /* 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;

mysterywolf's avatar
mysterywolf 已提交
2309
    if(mq->entry < RT_MQ_ENTRY_MAX)
2310 2311 2312 2313 2314 2315 2316 2317 2318
    {
        /* increase message entry */
        mq->entry ++;
    }
    else
    {
        rt_hw_interrupt_enable(temp); /* enable interrupt */
        return -RT_EFULL; /* value overflowed */
    }
D
dzzxzz@gmail.com 已提交
2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336

    /* 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;
2337
}
2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353
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);
}
2354
RTM_EXPORT(rt_mq_send);
2355 2356

/**
D
dzzxzz@gmail.com 已提交
2357 2358 2359
 * 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.
2360 2361 2362 2363 2364 2365 2366
 *
 * @param mq the message queue object
 * @param buffer the message
 * @param size the size of buffer
 *
 * @return the error code
 */
2367
rt_err_t rt_mq_urgent(rt_mq_t mq, const void *buffer, rt_size_t size)
2368
{
D
dzzxzz@gmail.com 已提交
2369 2370
    register rt_ubase_t temp;
    struct rt_mq_message *msg;
2371

2372
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2373
    RT_ASSERT(mq != RT_NULL);
2374
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
D
dzzxzz@gmail.com 已提交
2375 2376
    RT_ASSERT(buffer != RT_NULL);
    RT_ASSERT(size != 0);
2377

D
dzzxzz@gmail.com 已提交
2378 2379 2380
    /* greater than one message size */
    if (size > mq->msg_size)
        return -RT_ERROR;
2381

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

D
dzzxzz@gmail.com 已提交
2384 2385
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
2386

D
dzzxzz@gmail.com 已提交
2387 2388 2389 2390 2391 2392 2393
    /* 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);
2394

D
dzzxzz@gmail.com 已提交
2395 2396 2397 2398
        return -RT_EFULL;
    }
    /* move free list pointer */
    mq->msg_queue_free = msg->next;
2399

D
dzzxzz@gmail.com 已提交
2400 2401
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
2402

D
dzzxzz@gmail.com 已提交
2403 2404
    /* copy buffer */
    rt_memcpy(msg + 1, buffer, size);
2405

D
dzzxzz@gmail.com 已提交
2406 2407
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
2408

D
dzzxzz@gmail.com 已提交
2409
    /* link msg to the beginning of message queue */
2410
    msg->next = (struct rt_mq_message *)mq->msg_queue_head;
D
dzzxzz@gmail.com 已提交
2411
    mq->msg_queue_head = msg;
2412

D
dzzxzz@gmail.com 已提交
2413 2414 2415
    /* if there is no tail */
    if (mq->msg_queue_tail == RT_NULL)
        mq->msg_queue_tail = msg;
2416

mysterywolf's avatar
mysterywolf 已提交
2417
    if(mq->entry < RT_MQ_ENTRY_MAX)
2418 2419 2420 2421 2422 2423 2424 2425 2426
    {
        /* increase message entry */
        mq->entry ++;
    }
    else
    {
        rt_hw_interrupt_enable(temp); /* enable interrupt */
        return -RT_EFULL; /* value overflowed */
    }
mysterywolf's avatar
mysterywolf 已提交
2427

D
dzzxzz@gmail.com 已提交
2428 2429 2430 2431
    /* resume suspended thread */
    if (!rt_list_isempty(&mq->parent.suspend_thread))
    {
        rt_ipc_list_resume(&(mq->parent.suspend_thread));
2432

D
dzzxzz@gmail.com 已提交
2433 2434
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
2435

D
dzzxzz@gmail.com 已提交
2436
        rt_schedule();
D
dzzxzz 已提交
2437

D
dzzxzz@gmail.com 已提交
2438 2439
        return RT_EOK;
    }
2440

D
dzzxzz@gmail.com 已提交
2441 2442
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
2443

D
dzzxzz@gmail.com 已提交
2444
    return RT_EOK;
2445
}
2446
RTM_EXPORT(rt_mq_urgent);
2447 2448

/**
D
dzzxzz@gmail.com 已提交
2449 2450 2451
 * 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.
2452 2453 2454 2455 2456 2457 2458 2459
 *
 * @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 已提交
2460 2461 2462 2463
rt_err_t rt_mq_recv(rt_mq_t    mq,
                    void      *buffer,
                    rt_size_t  size,
                    rt_int32_t timeout)
2464
{
D
dzzxzz@gmail.com 已提交
2465 2466 2467 2468 2469
    struct rt_thread *thread;
    register rt_ubase_t temp;
    struct rt_mq_message *msg;
    rt_uint32_t tick_delta;

2470
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2471
    RT_ASSERT(mq != RT_NULL);
2472
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
D
dzzxzz@gmail.com 已提交
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495
    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 已提交
2496
        RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523

        /* 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",
2524
                                        thread->name));
2525

D
dzzxzz@gmail.com 已提交
2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568
            /* 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 */
2569 2570 2571 2572
    if(mq->entry > 0)
    {
        mq->entry --;
    }
D
dzzxzz@gmail.com 已提交
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584

    /* 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;
2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600

    /* 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 已提交
2601 2602 2603 2604 2605 2606
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

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

    return RT_EOK;
2607
}
B
Bernard Xiong 已提交
2608
RTM_EXPORT(rt_mq_recv);
2609 2610

/**
D
dzzxzz@gmail.com 已提交
2611 2612
 * This function can get or set some extra attributions of a message queue
 * object.
2613 2614 2615 2616 2617 2618 2619
 *
 * @param mq the message queue object
 * @param cmd the execution command
 * @param arg the execution argument
 *
 * @return the error code
 */
B
bernard 已提交
2620
rt_err_t rt_mq_control(rt_mq_t mq, int cmd, void *arg)
2621
{
D
dzzxzz@gmail.com 已提交
2622 2623
    rt_ubase_t level;
    struct rt_mq_message *msg;
2624

2625
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2626
    RT_ASSERT(mq != RT_NULL);
2627
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
2628

D
dzzxzz@gmail.com 已提交
2629 2630 2631 2632
    if (cmd == RT_IPC_CMD_RESET)
    {
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
2633

D
dzzxzz@gmail.com 已提交
2634 2635
        /* resume all waiting thread */
        rt_ipc_list_resume_all(&mq->parent.suspend_thread);
2636 2637
        /* also resume all message queue private suspended thread */
        rt_ipc_list_resume_all(&(mq->suspend_sender_thread));
2638

D
dzzxzz@gmail.com 已提交
2639 2640 2641 2642 2643
        /* 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;
2644

D
dzzxzz@gmail.com 已提交
2645 2646 2647 2648 2649
            /* 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;
2650

D
dzzxzz@gmail.com 已提交
2651 2652 2653 2654
            /* put message to free list */
            msg->next = (struct rt_mq_message *)mq->msg_queue_free;
            mq->msg_queue_free = msg;
        }
2655

D
dzzxzz@gmail.com 已提交
2656 2657
        /* clean entry */
        mq->entry = 0;
2658

D
dzzxzz@gmail.com 已提交
2659 2660
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
2661

D
dzzxzz@gmail.com 已提交
2662
        rt_schedule();
2663

D
dzzxzz@gmail.com 已提交
2664 2665
        return RT_EOK;
    }
2666

D
dzzxzz@gmail.com 已提交
2667
    return -RT_ERROR;
2668
}
D
dzzxzz@gmail.com 已提交
2669
RTM_EXPORT(rt_mq_control);
2670
#endif /* end of RT_USING_MESSAGEQUEUE */
D
dzzxzz 已提交
2671

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