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

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

#ifdef RT_USING_HOOK
D
dzzxzz 已提交
42 43 44
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);
45 46 47 48 49 50
#endif

/**
 * @addtogroup IPC
 */

D
dogandog 已提交
51
/**@{*/
52 53 54 55 56 57 58 59 60 61

/**
 * 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)
{
D
dzzxzz@gmail.com 已提交
62 63
    /* init ipc object */
    rt_list_init(&(ipc->suspend_thread));
64

D
dzzxzz@gmail.com 已提交
65
    return RT_EOK;
66 67 68
}

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

    return RT_EOK;
122 123 124
}

/**
125
 * This function will resume the first thread in the list of a IPC object:
126 127 128
 * - remove the thread from suspend queue of IPC object
 * - put the thread into system ready queue
 *
129
 * @param list the thread list
130 131 132
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz 已提交
133
rt_inline rt_err_t rt_ipc_list_resume(rt_list_t *list)
134
{
D
dzzxzz@gmail.com 已提交
135
    struct rt_thread *thread;
136

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

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

D
dzzxzz@gmail.com 已提交
142 143
    /* resume it */
    rt_thread_resume(thread);
144

D
dzzxzz@gmail.com 已提交
145
    return RT_EOK;
146 147 148
}

/**
149 150
 * This function will resume all suspended threads in a list, including
 * suspend list of IPC object and private list of mailbox etc.
151
 *
152
 * @param list of the threads to resume
153 154 155
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz 已提交
156
rt_inline rt_err_t rt_ipc_list_resume_all(rt_list_t *list)
157
{
D
dzzxzz@gmail.com 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
    struct rt_thread *thread;
    register rt_ubase_t temp;

    /* wakeup all suspend threads */
    while (!rt_list_isempty(list))
    {
        /* disable interrupt */
        temp = rt_hw_interrupt_disable();

        /* get next suspend thread */
        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
         * suspend list
         */
        rt_thread_resume(thread);

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

    return RT_EOK;
184 185 186 187
}

#ifdef RT_USING_SEMAPHORE
/**
D
dzzxzz@gmail.com 已提交
188 189
 * This function will initialize a semaphore and put it under control of
 * resource management.
190 191 192 193 194 195 196 197
 *
 * @param sem the semaphore object
 * @param name the name of semaphore
 * @param value the init value of semaphore
 * @param flag the flag of semaphore
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz@gmail.com 已提交
198 199 200 201
rt_err_t rt_sem_init(rt_sem_t    sem,
                     const char *name,
                     rt_uint32_t value,
                     rt_uint8_t  flag)
202
{
D
dzzxzz@gmail.com 已提交
203
    RT_ASSERT(sem != RT_NULL);
204
    RT_ASSERT(value < 0x10000U);
205

D
dzzxzz@gmail.com 已提交
206 207
    /* init object */
    rt_object_init(&(sem->parent.parent), RT_Object_Class_Semaphore, name);
208

D
dzzxzz@gmail.com 已提交
209 210
    /* init ipc object */
    rt_ipc_object_init(&(sem->parent));
211

D
dzzxzz@gmail.com 已提交
212
    /* set init value */
213
    sem->value = (rt_uint16_t)value;
214

D
dzzxzz@gmail.com 已提交
215 216
    /* set parent */
    sem->parent.parent.flag = flag;
217

D
dzzxzz@gmail.com 已提交
218
    return RT_EOK;
219
}
220
RTM_EXPORT(rt_sem_init);
221 222 223 224 225 226 227 228 229 230

/**
 * 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 已提交
231
rt_err_t rt_sem_detach(rt_sem_t sem)
232
{
233
    /* parameter check */
D
dzzxzz@gmail.com 已提交
234
    RT_ASSERT(sem != RT_NULL);
235 236
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);
    RT_ASSERT(rt_object_is_systemobject(&sem->parent.parent));
237

D
dzzxzz@gmail.com 已提交
238 239
    /* wakeup all suspend threads */
    rt_ipc_list_resume_all(&(sem->parent.suspend_thread));
240

D
dzzxzz@gmail.com 已提交
241 242
    /* detach semaphore object */
    rt_object_detach(&(sem->parent.parent));
243

D
dzzxzz@gmail.com 已提交
244
    return RT_EOK;
245
}
246
RTM_EXPORT(rt_sem_detach);
247 248 249 250 251 252 253 254 255 256 257 258 259

#ifdef RT_USING_HEAP
/**
 * This function will create a semaphore from system resource
 *
 * @param name the name of semaphore
 * @param value the init value of semaphore
 * @param flag the flag of semaphore
 *
 * @return the created semaphore, RT_NULL on error happen
 *
 * @see rt_sem_init
 */
D
dzzxzz 已提交
260
rt_sem_t rt_sem_create(const char *name, rt_uint32_t value, rt_uint8_t flag)
261
{
D
dzzxzz@gmail.com 已提交
262
    rt_sem_t sem;
263

D
dzzxzz@gmail.com 已提交
264
    RT_DEBUG_NOT_IN_INTERRUPT;
265
    RT_ASSERT(value < 0x10000U);
266

D
dzzxzz@gmail.com 已提交
267 268 269 270
    /* allocate object */
    sem = (rt_sem_t)rt_object_allocate(RT_Object_Class_Semaphore, name);
    if (sem == RT_NULL)
        return sem;
271

D
dzzxzz@gmail.com 已提交
272 273
    /* init ipc object */
    rt_ipc_object_init(&(sem->parent));
274

D
dzzxzz@gmail.com 已提交
275 276
    /* set init value */
    sem->value = value;
277

D
dzzxzz@gmail.com 已提交
278 279
    /* set parent */
    sem->parent.parent.flag = flag;
280

D
dzzxzz@gmail.com 已提交
281
    return sem;
282
}
283
RTM_EXPORT(rt_sem_create);
284 285 286 287 288 289 290 291 292 293

/**
 * 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 已提交
294
rt_err_t rt_sem_delete(rt_sem_t sem)
295
{
D
dzzxzz@gmail.com 已提交
296
    RT_DEBUG_NOT_IN_INTERRUPT;
297

298
    /* parameter check */
D
dzzxzz@gmail.com 已提交
299
    RT_ASSERT(sem != RT_NULL);
300 301
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);
    RT_ASSERT(rt_object_is_systemobject(&sem->parent.parent) == RT_FALSE);
302

D
dzzxzz@gmail.com 已提交
303 304
    /* wakeup all suspend threads */
    rt_ipc_list_resume_all(&(sem->parent.suspend_thread));
305

D
dzzxzz@gmail.com 已提交
306 307
    /* delete semaphore object */
    rt_object_delete(&(sem->parent.parent));
308

D
dzzxzz@gmail.com 已提交
309
    return RT_EOK;
310
}
311
RTM_EXPORT(rt_sem_delete);
312 313 314 315 316 317 318 319 320 321 322
#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 已提交
323
rt_err_t rt_sem_take(rt_sem_t sem, rt_int32_t time)
324
{
D
dzzxzz@gmail.com 已提交
325 326
    register rt_base_t temp;
    struct rt_thread *thread;
327

328
    /* parameter check */
D
dzzxzz@gmail.com 已提交
329
    RT_ASSERT(sem != RT_NULL);
330
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);
331

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

D
dzzxzz@gmail.com 已提交
334 335
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
336

D
dzzxzz@gmail.com 已提交
337
    RT_DEBUG_LOG(RT_DEBUG_IPC, ("thread %s take sem:%s, which value is: %d\n",
338 339 340
                                rt_thread_self()->name,
                                ((struct rt_object *)sem)->name,
                                sem->value));
341

D
dzzxzz@gmail.com 已提交
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
    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 已提交
362
            RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
363 364 365 366 367 368 369 370 371

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

D
dzzxzz@gmail.com 已提交
374 375 376 377
            /* suspend thread */
            rt_ipc_list_suspend(&(sem->parent.suspend_thread),
                                thread,
                                sem->parent.parent.flag);
378

D
dzzxzz@gmail.com 已提交
379 380 381 382
            /* has waiting time, start thread timer */
            if (time > 0)
            {
                RT_DEBUG_LOG(RT_DEBUG_IPC, ("set thread:%s to timer list\n",
383
                                            thread->name));
384

D
dzzxzz@gmail.com 已提交
385 386 387 388 389 390
                /* 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));
            }
391

D
dzzxzz@gmail.com 已提交
392 393
            /* enable interrupt */
            rt_hw_interrupt_enable(temp);
394

D
dzzxzz@gmail.com 已提交
395 396
            /* do schedule */
            rt_schedule();
397

D
dzzxzz@gmail.com 已提交
398 399 400 401 402 403
            if (thread->error != RT_EOK)
            {
                return thread->error;
            }
        }
    }
404

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

D
dzzxzz@gmail.com 已提交
407
    return RT_EOK;
408
}
409
RTM_EXPORT(rt_sem_take);
410 411 412 413 414 415 416 417 418 419

/**
 * This function will try to take a semaphore and immediately return
 *
 * @param sem the semaphore object
 *
 * @return the error code
 */
rt_err_t rt_sem_trytake(rt_sem_t sem)
{
D
dzzxzz@gmail.com 已提交
420
    return rt_sem_take(sem, 0);
421
}
422
RTM_EXPORT(rt_sem_trytake);
423 424 425 426 427 428 429 430 431 432 433

/**
 * 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 已提交
434 435
    register rt_base_t temp;
    register rt_bool_t need_schedule;
436

437 438 439 440
    /* parameter check */
    RT_ASSERT(sem != RT_NULL);
    RT_ASSERT(rt_object_get_type(&sem->parent.parent) == RT_Object_Class_Semaphore);

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

D
dzzxzz@gmail.com 已提交
443
    need_schedule = RT_FALSE;
444

D
dzzxzz@gmail.com 已提交
445 446
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
447

D
dzzxzz@gmail.com 已提交
448
    RT_DEBUG_LOG(RT_DEBUG_IPC, ("thread %s releases sem:%s, which value is: %d\n",
449 450 451
                                rt_thread_self()->name,
                                ((struct rt_object *)sem)->name,
                                sem->value));
452

D
dzzxzz@gmail.com 已提交
453 454 455 456 457 458 459 460
    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
        sem->value ++; /* increase value */
461

D
dzzxzz@gmail.com 已提交
462 463
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
464

D
dzzxzz@gmail.com 已提交
465 466 467
    /* resume a thread, re-schedule */
    if (need_schedule == RT_TRUE)
        rt_schedule();
468

D
dzzxzz@gmail.com 已提交
469
    return RT_EOK;
470
}
471
RTM_EXPORT(rt_sem_release);
472 473 474 475 476 477 478 479 480 481

/**
 * 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 已提交
482
rt_err_t rt_sem_control(rt_sem_t sem, int cmd, void *arg)
483
{
D
dzzxzz@gmail.com 已提交
484
    rt_ubase_t level;
485 486

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

D
dzzxzz@gmail.com 已提交
490 491
    if (cmd == RT_IPC_CMD_RESET)
    {
B
Bernard Xiong 已提交
492
        rt_ubase_t value;
493

D
dzzxzz@gmail.com 已提交
494
        /* get value */
B
Bernard Xiong 已提交
495
        value = (rt_ubase_t)arg;
D
dzzxzz@gmail.com 已提交
496 497
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
498

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

D
dzzxzz@gmail.com 已提交
502 503
        /* set new value */
        sem->value = (rt_uint16_t)value;
504

D
dzzxzz@gmail.com 已提交
505 506
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
507

D
dzzxzz@gmail.com 已提交
508
        rt_schedule();
509

D
dzzxzz@gmail.com 已提交
510 511
        return RT_EOK;
    }
512

D
dzzxzz@gmail.com 已提交
513
    return -RT_ERROR;
514
}
515
RTM_EXPORT(rt_sem_control);
516 517 518 519 520 521 522 523 524 525 526 527 528
#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 已提交
529
rt_err_t rt_mutex_init(rt_mutex_t mutex, const char *name, rt_uint8_t flag)
530
{
531
    /* parameter check */
D
dzzxzz@gmail.com 已提交
532
    RT_ASSERT(mutex != RT_NULL);
533

D
dzzxzz@gmail.com 已提交
534 535
    /* init object */
    rt_object_init(&(mutex->parent.parent), RT_Object_Class_Mutex, name);
536

D
dzzxzz@gmail.com 已提交
537 538
    /* init ipc object */
    rt_ipc_object_init(&(mutex->parent));
539

D
dzzxzz@gmail.com 已提交
540 541 542 543
    mutex->value = 1;
    mutex->owner = RT_NULL;
    mutex->original_priority = 0xFF;
    mutex->hold  = 0;
544

D
dzzxzz@gmail.com 已提交
545 546
    /* set flag */
    mutex->parent.parent.flag = flag;
547

D
dzzxzz@gmail.com 已提交
548
    return RT_EOK;
549
}
550
RTM_EXPORT(rt_mutex_init);
551 552 553 554 555 556 557 558 559 560

/**
 * 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 已提交
561
rt_err_t rt_mutex_detach(rt_mutex_t mutex)
562
{
563
    /* parameter check */
D
dzzxzz@gmail.com 已提交
564
    RT_ASSERT(mutex != RT_NULL);
565 566
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);
    RT_ASSERT(rt_object_is_systemobject(&mutex->parent.parent));
567

D
dzzxzz@gmail.com 已提交
568 569
    /* wakeup all suspend threads */
    rt_ipc_list_resume_all(&(mutex->parent.suspend_thread));
570

D
dzzxzz@gmail.com 已提交
571 572
    /* detach semaphore object */
    rt_object_detach(&(mutex->parent.parent));
573

D
dzzxzz@gmail.com 已提交
574
    return RT_EOK;
575
}
576
RTM_EXPORT(rt_mutex_detach);
577 578 579 580 581 582 583 584 585 586 587 588

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

D
dzzxzz@gmail.com 已提交
593
    RT_DEBUG_NOT_IN_INTERRUPT;
594

D
dzzxzz@gmail.com 已提交
595 596 597 598
    /* allocate object */
    mutex = (rt_mutex_t)rt_object_allocate(RT_Object_Class_Mutex, name);
    if (mutex == RT_NULL)
        return mutex;
599

D
dzzxzz@gmail.com 已提交
600 601
    /* init ipc object */
    rt_ipc_object_init(&(mutex->parent));
602

D
dzzxzz@gmail.com 已提交
603 604 605 606
    mutex->value              = 1;
    mutex->owner              = RT_NULL;
    mutex->original_priority  = 0xFF;
    mutex->hold               = 0;
607

D
dzzxzz@gmail.com 已提交
608 609
    /* set flag */
    mutex->parent.parent.flag = flag;
610

D
dzzxzz@gmail.com 已提交
611
    return mutex;
612
}
613
RTM_EXPORT(rt_mutex_create);
614 615 616 617 618 619 620 621 622 623

/**
 * 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 已提交
624
rt_err_t rt_mutex_delete(rt_mutex_t mutex)
625
{
D
dzzxzz@gmail.com 已提交
626
    RT_DEBUG_NOT_IN_INTERRUPT;
627

628
    /* parameter check */
D
dzzxzz@gmail.com 已提交
629
    RT_ASSERT(mutex != RT_NULL);
630 631
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);
    RT_ASSERT(rt_object_is_systemobject(&mutex->parent.parent) == RT_FALSE);
632

D
dzzxzz@gmail.com 已提交
633 634
    /* wakeup all suspend threads */
    rt_ipc_list_resume_all(&(mutex->parent.suspend_thread));
635

D
dzzxzz@gmail.com 已提交
636 637
    /* delete semaphore object */
    rt_object_delete(&(mutex->parent.parent));
638

D
dzzxzz@gmail.com 已提交
639
    return RT_EOK;
640
}
641
RTM_EXPORT(rt_mutex_delete);
642 643 644 645 646 647 648 649 650 651 652
#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 已提交
653
rt_err_t rt_mutex_take(rt_mutex_t mutex, rt_int32_t time)
654
{
D
dzzxzz@gmail.com 已提交
655 656
    register rt_base_t temp;
    struct rt_thread *thread;
657

B
bernard 已提交
658 659 660
    /* this function must not be used in interrupt even if time = 0 */
    RT_DEBUG_IN_THREAD_CONTEXT;

661
    /* parameter check */
662
    RT_ASSERT(mutex != RT_NULL);
663
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);
664 665 666

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

D
dzzxzz@gmail.com 已提交
668 669
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
670

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

D
dzzxzz@gmail.com 已提交
673
    RT_DEBUG_LOG(RT_DEBUG_IPC,
674 675
                 ("mutex_take: current thread %s, mutex value: %d, hold: %d\n",
                  thread->name, mutex->value, mutex->hold));
676

D
dzzxzz@gmail.com 已提交
677 678 679 680 681 682 683 684 685 686
    /* reset thread error */
    thread->error = RT_EOK;

    if (mutex->owner == thread)
    {
        /* it's the same thread */
        mutex->hold ++;
    }
    else
    {
B
bernard 已提交
687
__again:
D
dzzxzz@gmail.com 已提交
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
        /* The value of mutex is 1 in initial status. Therefore, if the
         * value is great than 0, it indicates the mutex is avaible.
         */
        if (mutex->value > 0)
        {
            /* mutex is available */
            mutex->value --;

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

                /* enable interrupt */
                rt_hw_interrupt_enable(temp);

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

D
dzzxzz@gmail.com 已提交
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
                /* 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,
738 739
                                 ("mutex_take: start the timer of thread:%s\n",
                                  thread->name));
740

D
dzzxzz@gmail.com 已提交
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
                    /* 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)
                {
756 757
                    /* interrupt by signal, try it again */
                    if (thread->error == -RT_EINTR) goto __again;
B
bernard 已提交
758

D
dzzxzz@gmail.com 已提交
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777
                    /* 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;
778
}
779
RTM_EXPORT(rt_mutex_take);
780 781 782 783 784 785 786 787 788 789 790

/**
 * 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 已提交
791 792 793
    register rt_base_t temp;
    struct rt_thread *thread;
    rt_bool_t need_schedule;
794

795 796 797 798
    /* parameter check */
    RT_ASSERT(mutex != RT_NULL);
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);

D
dzzxzz@gmail.com 已提交
799
    need_schedule = RT_FALSE;
800

801 802
    /* only thread could release mutex because we need test the ownership */
    RT_DEBUG_IN_THREAD_CONTEXT;
803

B
bernard 已提交
804 805 806
    /* get current thread */
    thread = rt_thread_self();

D
dzzxzz@gmail.com 已提交
807 808
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
809

D
dzzxzz@gmail.com 已提交
810
    RT_DEBUG_LOG(RT_DEBUG_IPC,
811 812
                 ("mutex_release:current thread %s, mutex value: %d, hold: %d\n",
                  thread->name, mutex->value, mutex->hold));
813

D
dzzxzz@gmail.com 已提交
814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848
    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",
849
                                        thread->name));
850

D
dzzxzz@gmail.com 已提交
851 852 853 854
            /* set new owner and priority */
            mutex->owner             = thread;
            mutex->original_priority = thread->current_priority;
            mutex->hold ++;
855

D
dzzxzz@gmail.com 已提交
856 857
            /* resume thread */
            rt_ipc_list_resume(&(mutex->parent.suspend_thread));
858

D
dzzxzz@gmail.com 已提交
859 860 861 862 863 864
            need_schedule = RT_TRUE;
        }
        else
        {
            /* increase value */
            mutex->value ++;
865

D
dzzxzz@gmail.com 已提交
866 867 868 869 870
            /* clear owner */
            mutex->owner             = RT_NULL;
            mutex->original_priority = 0xff;
        }
    }
871

D
dzzxzz@gmail.com 已提交
872 873
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
874

D
dzzxzz@gmail.com 已提交
875 876 877
    /* perform a schedule */
    if (need_schedule == RT_TRUE)
        rt_schedule();
B
bernard.xiong 已提交
878

D
dzzxzz@gmail.com 已提交
879
    return RT_EOK;
880
}
881
RTM_EXPORT(rt_mutex_release);
882 883 884 885 886 887 888 889 890 891

/**
 * 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 已提交
892
rt_err_t rt_mutex_control(rt_mutex_t mutex, int cmd, void *arg)
893
{
894 895 896 897
    /* parameter check */
    RT_ASSERT(mutex != RT_NULL);
    RT_ASSERT(rt_object_get_type(&mutex->parent.parent) == RT_Object_Class_Mutex);

D
dzzxzz@gmail.com 已提交
898
    return -RT_ERROR;
899
}
900
RTM_EXPORT(rt_mutex_control);
901 902 903 904 905 906 907 908 909 910 911 912 913
#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 已提交
914
rt_err_t rt_event_init(rt_event_t event, const char *name, rt_uint8_t flag)
915
{
916
    /* parameter check */
D
dzzxzz@gmail.com 已提交
917
    RT_ASSERT(event != RT_NULL);
918

D
dzzxzz@gmail.com 已提交
919 920
    /* init object */
    rt_object_init(&(event->parent.parent), RT_Object_Class_Event, name);
921

D
dzzxzz@gmail.com 已提交
922 923
    /* set parent flag */
    event->parent.parent.flag = flag;
924

D
dzzxzz@gmail.com 已提交
925 926
    /* init ipc object */
    rt_ipc_object_init(&(event->parent));
927

D
dzzxzz@gmail.com 已提交
928 929
    /* init event */
    event->set = 0;
930

D
dzzxzz@gmail.com 已提交
931
    return RT_EOK;
932
}
933
RTM_EXPORT(rt_event_init);
934 935 936 937 938 939 940 941 942 943

/**
 * 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 已提交
944 945
    /* parameter check */
    RT_ASSERT(event != RT_NULL);
946 947
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);
    RT_ASSERT(rt_object_is_systemobject(&event->parent.parent));
948

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

D
dzzxzz@gmail.com 已提交
952 953
    /* detach event object */
    rt_object_detach(&(event->parent.parent));
954

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

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

D
dzzxzz@gmail.com 已提交
972
    RT_DEBUG_NOT_IN_INTERRUPT;
973

D
dzzxzz@gmail.com 已提交
974 975 976 977
    /* allocate object */
    event = (rt_event_t)rt_object_allocate(RT_Object_Class_Event, name);
    if (event == RT_NULL)
        return event;
978

D
dzzxzz@gmail.com 已提交
979 980
    /* set parent */
    event->parent.parent.flag = flag;
981

D
dzzxzz@gmail.com 已提交
982 983
    /* init ipc object */
    rt_ipc_object_init(&(event->parent));
984

D
dzzxzz@gmail.com 已提交
985 986
    /* init event */
    event->set = 0;
987

D
dzzxzz@gmail.com 已提交
988
    return event;
989
}
990
RTM_EXPORT(rt_event_create);
991 992 993 994 995 996 997 998

/**
 * This function will delete an event object and release the memory
 *
 * @param event the event object
 *
 * @return the error code
 */
D
dzzxzz 已提交
999
rt_err_t rt_event_delete(rt_event_t event)
1000
{
D
dzzxzz@gmail.com 已提交
1001 1002
    /* parameter check */
    RT_ASSERT(event != RT_NULL);
1003 1004
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);
    RT_ASSERT(rt_object_is_systemobject(&event->parent.parent) == RT_FALSE);
1005

D
dzzxzz@gmail.com 已提交
1006
    RT_DEBUG_NOT_IN_INTERRUPT;
1007

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

D
dzzxzz@gmail.com 已提交
1011 1012
    /* delete event object */
    rt_object_delete(&(event->parent.parent));
1013

D
dzzxzz@gmail.com 已提交
1014
    return RT_EOK;
1015
}
1016
RTM_EXPORT(rt_event_delete);
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
#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 已提交
1030 1031 1032 1033 1034 1035 1036 1037
    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);
1038 1039
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);

D
dzzxzz@gmail.com 已提交
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
    if (set == 0)
        return -RT_ERROR;

    need_schedule = RT_FALSE;

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

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

1051 1052
    RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(event->parent.parent)));
    
D
dzzxzz@gmail.com 已提交
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
    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)
                {
                    /* save recieved event set */
                    thread->event_set = thread->event_set & event->set;

                    /* received an OR event */
                    status = RT_EOK;
                }
            }

            /* 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;
1110
}
1111
RTM_EXPORT(rt_event_send);
1112 1113

/**
D
dzzxzz@gmail.com 已提交
1114 1115
 * This function will receive an event from event object, if the event is
 * unavailable, the thread shall wait for a specified time.
1116 1117 1118
 *
 * @param event the fast event object
 * @param set the interested event set
1119 1120
 * @param option the receive option, either RT_EVENT_FLAG_AND or
 *        RT_EVENT_FLAG_OR should be set.
1121
 * @param timeout the waiting time
P
pathletboy 已提交
1122
 * @param recved the received event, if you don't care, RT_NULL can be set.
1123 1124 1125
 *
 * @return the error code
 */
D
dzzxzz@gmail.com 已提交
1126 1127 1128 1129 1130
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)
1131
{
D
dzzxzz@gmail.com 已提交
1132 1133 1134 1135
    struct rt_thread *thread;
    register rt_ubase_t level;
    register rt_base_t status;

G
Grissiom 已提交
1136
    RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
1137 1138 1139

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

D
dzzxzz@gmail.com 已提交
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
    if (set == 0)
        return -RT_ERROR;

    /* init status */
    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;
    }
1168 1169 1170 1171 1172
    else
    {
        /* either RT_EVENT_FLAG_AND or RT_EVENT_FLAG_OR should be set */
        RT_ASSERT(0);
    }
D
dzzxzz@gmail.com 已提交
1173 1174 1175 1176

    if (status == RT_EOK)
    {
        /* set received event */
1177
        if (recved)
P
pathletboy 已提交
1178
            *recved = (event->set & set);
D
dzzxzz@gmail.com 已提交
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 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

        /* received event */
        if (option & RT_EVENT_FLAG_CLEAR)
            event->set &= ~set;
    }
    else if (timeout == 0)
    {
        /* no waiting */
        thread->error = -RT_ETIMEOUT;
    }
    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 已提交
1226 1227
        if (recved)
            *recved = thread->event_set;
D
dzzxzz@gmail.com 已提交
1228 1229 1230 1231 1232 1233 1234 1235
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(level);

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

    return thread->error;
1236
}
1237
RTM_EXPORT(rt_event_recv);
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247

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

1252 1253 1254 1255
    /* parameter check */
    RT_ASSERT(event != RT_NULL);
    RT_ASSERT(rt_object_get_type(&event->parent.parent) == RT_Object_Class_Event);
    
D
dzzxzz@gmail.com 已提交
1256 1257 1258 1259
    if (cmd == RT_IPC_CMD_RESET)
    {
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
1260

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

D
dzzxzz@gmail.com 已提交
1264 1265
        /* init event set */
        event->set = 0;
1266

D
dzzxzz@gmail.com 已提交
1267 1268
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
1269

D
dzzxzz@gmail.com 已提交
1270
        rt_schedule();
1271

D
dzzxzz@gmail.com 已提交
1272 1273
        return RT_EOK;
    }
1274

D
dzzxzz@gmail.com 已提交
1275
    return -RT_ERROR;
1276
}
B
Bernard Xiong 已提交
1277
RTM_EXPORT(rt_event_control);
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
#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 已提交
1293 1294 1295 1296 1297
rt_err_t rt_mb_init(rt_mailbox_t mb,
                    const char  *name,
                    void        *msgpool,
                    rt_size_t    size,
                    rt_uint8_t   flag)
1298
{
D
dzzxzz@gmail.com 已提交
1299
    RT_ASSERT(mb != RT_NULL);
1300

D
dzzxzz@gmail.com 已提交
1301 1302
    /* init object */
    rt_object_init(&(mb->parent.parent), RT_Object_Class_MailBox, name);
1303

D
dzzxzz@gmail.com 已提交
1304 1305
    /* set parent flag */
    mb->parent.parent.flag = flag;
1306

D
dzzxzz@gmail.com 已提交
1307 1308
    /* init ipc object */
    rt_ipc_object_init(&(mb->parent));
1309

D
dzzxzz@gmail.com 已提交
1310
    /* init mailbox */
1311
    mb->msg_pool   = (rt_ubase_t *)msgpool;
D
dzzxzz@gmail.com 已提交
1312 1313 1314 1315
    mb->size       = size;
    mb->entry      = 0;
    mb->in_offset  = 0;
    mb->out_offset = 0;
1316

D
dzzxzz@gmail.com 已提交
1317 1318
    /* init an additional list of sender suspend thread */
    rt_list_init(&(mb->suspend_sender_thread));
1319

D
dzzxzz@gmail.com 已提交
1320
    return RT_EOK;
1321
}
1322
RTM_EXPORT(rt_mb_init);
1323 1324 1325 1326 1327 1328 1329 1330 1331 1332

/**
 * 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 已提交
1333 1334
    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1335 1336
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
    RT_ASSERT(rt_object_is_systemobject(&mb->parent.parent));
1337

D
dzzxzz@gmail.com 已提交
1338 1339 1340 1341
    /* 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));
1342

D
dzzxzz@gmail.com 已提交
1343 1344
    /* detach mailbox object */
    rt_object_detach(&(mb->parent.parent));
1345

D
dzzxzz@gmail.com 已提交
1346
    return RT_EOK;
1347
}
1348
RTM_EXPORT(rt_mb_detach);
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359

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

D
dzzxzz@gmail.com 已提交
1364
    RT_DEBUG_NOT_IN_INTERRUPT;
1365

D
dzzxzz@gmail.com 已提交
1366 1367 1368 1369
    /* allocate object */
    mb = (rt_mailbox_t)rt_object_allocate(RT_Object_Class_MailBox, name);
    if (mb == RT_NULL)
        return mb;
1370

D
dzzxzz@gmail.com 已提交
1371 1372
    /* set parent */
    mb->parent.parent.flag = flag;
1373

D
dzzxzz@gmail.com 已提交
1374 1375
    /* init ipc object */
    rt_ipc_object_init(&(mb->parent));
1376

D
dzzxzz@gmail.com 已提交
1377 1378
    /* init mailbox */
    mb->size     = size;
1379
    mb->msg_pool = (rt_ubase_t *)RT_KERNEL_MALLOC(mb->size * sizeof(rt_ubase_t));
D
dzzxzz@gmail.com 已提交
1380 1381 1382 1383
    if (mb->msg_pool == RT_NULL)
    {
        /* delete mailbox object */
        rt_object_delete(&(mb->parent.parent));
1384

D
dzzxzz@gmail.com 已提交
1385 1386 1387 1388 1389
        return RT_NULL;
    }
    mb->entry      = 0;
    mb->in_offset  = 0;
    mb->out_offset = 0;
1390

D
dzzxzz@gmail.com 已提交
1391 1392
    /* init an additional list of sender suspend thread */
    rt_list_init(&(mb->suspend_sender_thread));
1393

D
dzzxzz@gmail.com 已提交
1394
    return mb;
1395
}
1396
RTM_EXPORT(rt_mb_create);
1397 1398 1399 1400 1401 1402 1403 1404

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

D
dzzxzz@gmail.com 已提交
1409 1410
    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1411 1412
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
    RT_ASSERT(rt_object_is_systemobject(&mb->parent.parent) == RT_FALSE);
1413

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

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

1420 1421
    /* free mailbox pool */
    RT_KERNEL_FREE(mb->msg_pool);
1422

D
dzzxzz@gmail.com 已提交
1423 1424
    /* delete mailbox object */
    rt_object_delete(&(mb->parent.parent));
1425

D
dzzxzz@gmail.com 已提交
1426
    return RT_EOK;
1427
}
1428
RTM_EXPORT(rt_mb_delete);
1429 1430 1431
#endif

/**
1432 1433
 * This function will send a mail to mailbox object. If the mailbox is full,
 * current thread will be suspended until timeout.
1434 1435 1436
 *
 * @param mb the mailbox object
 * @param value the mail
1437
 * @param timeout the waiting time
1438 1439 1440
 *
 * @return the error code
 */
D
dzzxzz@gmail.com 已提交
1441
rt_err_t rt_mb_send_wait(rt_mailbox_t mb,
B
Bernard Xiong 已提交
1442
                         rt_ubase_t   value,
D
dzzxzz@gmail.com 已提交
1443
                         rt_int32_t   timeout)
1444
{
D
dzzxzz@gmail.com 已提交
1445 1446 1447 1448 1449 1450
    struct rt_thread *thread;
    register rt_ubase_t temp;
    rt_uint32_t tick_delta;

    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1451
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
D
dzzxzz@gmail.com 已提交
1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485

    /* 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 已提交
1486
        RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498
        /* 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",
1499
                                        thread->name));
1500

D
dzzxzz@gmail.com 已提交
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
            /* reset the timeout of thread timer and start it */
            rt_timer_control(&(thread->thread_timer),
                             RT_TIMER_CTRL_SET_TIME,
                             &timeout);
            rt_timer_start(&(thread->thread_timer));
        }

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        /* re-schedule */
        rt_schedule();

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

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

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

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

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

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        rt_schedule();

        return RT_EOK;
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

    return RT_EOK;
1560
}
1561
RTM_EXPORT(rt_mb_send_wait);
1562

1563
/**
D
dzzxzz@gmail.com 已提交
1564 1565 1566
 * 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.
1567 1568 1569 1570 1571 1572
 *
 * @param mb the mailbox object
 * @param value the mail
 *
 * @return the error code
 */
B
Bernard Xiong 已提交
1573
rt_err_t rt_mb_send(rt_mailbox_t mb, rt_ubase_t value)
1574
{
D
dzzxzz@gmail.com 已提交
1575
    return rt_mb_send_wait(mb, value, 0);
1576
}
1577
RTM_EXPORT(rt_mb_send);
1578

1579
/**
D
dzzxzz@gmail.com 已提交
1580 1581
 * 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.
1582 1583 1584 1585 1586 1587 1588
 *
 * @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 已提交
1589
rt_err_t rt_mb_recv(rt_mailbox_t mb, rt_ubase_t *value, rt_int32_t timeout)
1590
{
D
dzzxzz@gmail.com 已提交
1591 1592 1593 1594 1595 1596
    struct rt_thread *thread;
    register rt_ubase_t temp;
    rt_uint32_t tick_delta;

    /* parameter check */
    RT_ASSERT(mb != RT_NULL);
1597
    RT_ASSERT(rt_object_get_type(&mb->parent.parent) == RT_Object_Class_MailBox);
D
dzzxzz@gmail.com 已提交
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629

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

D
dzzxzz@gmail.com 已提交
1631 1632 1633
            return -RT_ETIMEOUT;
        }

G
Grissiom 已提交
1634
        RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646
        /* 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",
1647
                                        thread->name));
1648

D
dzzxzz@gmail.com 已提交
1649 1650 1651 1652 1653 1654
            /* 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));
        }
1655

D
dzzxzz@gmail.com 已提交
1656 1657
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
1658

D
dzzxzz@gmail.com 已提交
1659 1660
        /* re-schedule */
        rt_schedule();
1661

D
dzzxzz@gmail.com 已提交
1662 1663 1664 1665 1666 1667
        /* resume from suspend state */
        if (thread->error != RT_EOK)
        {
            /* return error */
            return thread->error;
        }
1668

D
dzzxzz@gmail.com 已提交
1669 1670
        /* disable interrupt */
        temp = rt_hw_interrupt_disable();
1671

D
dzzxzz@gmail.com 已提交
1672 1673 1674 1675 1676 1677 1678 1679 1680
        /* 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;
        }
    }
1681

D
dzzxzz@gmail.com 已提交
1682 1683
    /* fill ptr */
    *value = mb->msg_pool[mb->out_offset];
1684

D
dzzxzz@gmail.com 已提交
1685 1686 1687 1688 1689 1690
    /* increase output offset */
    ++ mb->out_offset;
    if (mb->out_offset >= mb->size)
        mb->out_offset = 0;
    /* decrease message entry */
    mb->entry --;
1691

D
dzzxzz@gmail.com 已提交
1692 1693 1694 1695
    /* resume suspended thread */
    if (!rt_list_isempty(&(mb->suspend_sender_thread)))
    {
        rt_ipc_list_resume(&(mb->suspend_sender_thread));
1696

D
dzzxzz@gmail.com 已提交
1697 1698
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
1699

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

D
dzzxzz@gmail.com 已提交
1702
        rt_schedule();
1703

D
dzzxzz@gmail.com 已提交
1704 1705
        return RT_EOK;
    }
1706

D
dzzxzz@gmail.com 已提交
1707 1708
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
1709

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

D
dzzxzz@gmail.com 已提交
1712
    return RT_EOK;
1713
}
1714
RTM_EXPORT(rt_mb_recv);
1715 1716 1717 1718 1719 1720 1721 1722 1723 1724

/**
 * 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 已提交
1725
rt_err_t rt_mb_control(rt_mailbox_t mb, int cmd, void *arg)
1726
{
D
dzzxzz@gmail.com 已提交
1727
    rt_ubase_t level;
1728 1729

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

D
dzzxzz@gmail.com 已提交
1733 1734 1735 1736
    if (cmd == RT_IPC_CMD_RESET)
    {
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
1737

D
dzzxzz@gmail.com 已提交
1738 1739 1740 1741
        /* 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));
1742

D
dzzxzz@gmail.com 已提交
1743 1744 1745 1746
        /* re-init mailbox */
        mb->entry      = 0;
        mb->in_offset  = 0;
        mb->out_offset = 0;
1747

D
dzzxzz@gmail.com 已提交
1748 1749
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
1750

D
dzzxzz@gmail.com 已提交
1751
        rt_schedule();
1752

D
dzzxzz@gmail.com 已提交
1753 1754
        return RT_EOK;
    }
1755

D
dzzxzz@gmail.com 已提交
1756
    return -RT_ERROR;
1757
}
B
Bernard Xiong 已提交
1758
RTM_EXPORT(rt_mb_control);
1759 1760 1761 1762 1763
#endif /* end of RT_USING_MAILBOX */

#ifdef RT_USING_MESSAGEQUEUE
struct rt_mq_message
{
D
dzzxzz@gmail.com 已提交
1764
    struct rt_mq_message *next;
1765 1766 1767
};

/**
D
dzzxzz@gmail.com 已提交
1768 1769
 * This function will initialize a message queue and put it under control of
 * resource management.
1770 1771 1772 1773 1774 1775 1776 1777 1778 1779
 *
 * @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 已提交
1780 1781 1782 1783 1784 1785
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)
1786
{
D
dzzxzz@gmail.com 已提交
1787 1788
    struct rt_mq_message *head;
    register rt_base_t temp;
1789

D
dzzxzz@gmail.com 已提交
1790 1791
    /* parameter check */
    RT_ASSERT(mq != RT_NULL);
1792

D
dzzxzz@gmail.com 已提交
1793 1794
    /* init object */
    rt_object_init(&(mq->parent.parent), RT_Object_Class_MessageQueue, name);
1795

D
dzzxzz@gmail.com 已提交
1796 1797
    /* set parent flag */
    mq->parent.parent.flag = flag;
1798

D
dzzxzz@gmail.com 已提交
1799 1800
    /* init ipc object */
    rt_ipc_object_init(&(mq->parent));
1801

D
dzzxzz@gmail.com 已提交
1802 1803
    /* set messasge pool */
    mq->msg_pool = msgpool;
1804

D
dzzxzz@gmail.com 已提交
1805 1806 1807
    /* 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));
1808

D
dzzxzz@gmail.com 已提交
1809 1810 1811
    /* init message list */
    mq->msg_queue_head = RT_NULL;
    mq->msg_queue_tail = RT_NULL;
1812

D
dzzxzz@gmail.com 已提交
1813 1814 1815 1816 1817
    /* init message empty list */
    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 +
1818
                                        temp * (mq->msg_size + sizeof(struct rt_mq_message)));
1819
        head->next = (struct rt_mq_message *)mq->msg_queue_free;
D
dzzxzz@gmail.com 已提交
1820 1821
        mq->msg_queue_free = head;
    }
1822

D
dzzxzz@gmail.com 已提交
1823 1824
    /* the initial entry is zero */
    mq->entry = 0;
1825

D
dzzxzz@gmail.com 已提交
1826
    return RT_EOK;
1827
}
1828
RTM_EXPORT(rt_mq_init);
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838

/**
 * 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 已提交
1839 1840
    /* parameter check */
    RT_ASSERT(mq != RT_NULL);
1841 1842
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
    RT_ASSERT(rt_object_is_systemobject(&mq->parent.parent));
1843

D
dzzxzz@gmail.com 已提交
1844 1845
    /* resume all suspended thread */
    rt_ipc_list_resume_all(&mq->parent.suspend_thread);
1846

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

D
dzzxzz@gmail.com 已提交
1850
    return RT_EOK;
1851
}
1852
RTM_EXPORT(rt_mq_detach);
1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864

#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 已提交
1865 1866 1867 1868
rt_mq_t rt_mq_create(const char *name,
                     rt_size_t   msg_size,
                     rt_size_t   max_msgs,
                     rt_uint8_t  flag)
1869
{
D
dzzxzz@gmail.com 已提交
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893
    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;

    /* init ipc object */
    rt_ipc_object_init(&(mq->parent));

    /* init message queue */

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

    /* allocate message pool */
1894
    mq->msg_pool = RT_KERNEL_MALLOC((mq->msg_size + sizeof(struct rt_mq_message)) * mq->max_msgs);
D
dzzxzz@gmail.com 已提交
1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
    if (mq->msg_pool == RT_NULL)
    {
        rt_mq_delete(mq);

        return RT_NULL;
    }

    /* init message list */
    mq->msg_queue_head = RT_NULL;
    mq->msg_queue_tail = RT_NULL;

    /* init message empty list */
    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 +
1911
                                        temp * (mq->msg_size + sizeof(struct rt_mq_message)));
1912
        head->next = (struct rt_mq_message *)mq->msg_queue_free;
D
dzzxzz@gmail.com 已提交
1913 1914 1915 1916 1917 1918 1919
        mq->msg_queue_free = head;
    }

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

    return mq;
1920
}
1921
RTM_EXPORT(rt_mq_create);
1922 1923 1924 1925 1926 1927 1928 1929

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

D
dzzxzz@gmail.com 已提交
1934 1935
    /* parameter check */
    RT_ASSERT(mq != RT_NULL);
1936 1937
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
    RT_ASSERT(rt_object_is_systemobject(&mq->parent.parent) == RT_FALSE);
1938

D
dzzxzz@gmail.com 已提交
1939 1940
    /* resume all suspended thread */
    rt_ipc_list_resume_all(&(mq->parent.suspend_thread));
1941

1942 1943
    /* free message queue pool */
    RT_KERNEL_FREE(mq->msg_pool);
1944

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

D
dzzxzz@gmail.com 已提交
1948
    return RT_EOK;
1949
}
1950
RTM_EXPORT(rt_mq_delete);
1951 1952 1953
#endif

/**
D
dzzxzz@gmail.com 已提交
1954 1955
 * This function will send a message to message queue object, if there are
 * threads suspended on message queue object, it will be waked up.
1956 1957 1958 1959 1960 1961 1962
 *
 * @param mq the message queue object
 * @param buffer the message
 * @param size the size of buffer
 *
 * @return the error code
 */
1963
rt_err_t rt_mq_send(rt_mq_t mq, const void *buffer, rt_size_t size)
1964
{
D
dzzxzz@gmail.com 已提交
1965 1966 1967
    register rt_ubase_t temp;
    struct rt_mq_message *msg;

1968
    /* parameter check */
D
dzzxzz@gmail.com 已提交
1969
    RT_ASSERT(mq != RT_NULL);
1970
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
D
dzzxzz@gmail.com 已提交
1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983
    RT_ASSERT(buffer != RT_NULL);
    RT_ASSERT(size != 0);

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

    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 */
1984
    msg = (struct rt_mq_message *)mq->msg_queue_free;
D
dzzxzz@gmail.com 已提交
1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038
    /* message queue is full */
    if (msg == RT_NULL)
    {
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        return -RT_EFULL;
    }
    /* move free list pointer */
    mq->msg_queue_free = msg->next;

    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

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

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

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

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

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

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        rt_schedule();

        return RT_EOK;
    }

    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

    return RT_EOK;
2039
}
2040
RTM_EXPORT(rt_mq_send);
2041 2042

/**
D
dzzxzz@gmail.com 已提交
2043 2044 2045
 * 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.
2046 2047 2048 2049 2050 2051 2052
 *
 * @param mq the message queue object
 * @param buffer the message
 * @param size the size of buffer
 *
 * @return the error code
 */
2053
rt_err_t rt_mq_urgent(rt_mq_t mq, const void *buffer, rt_size_t size)
2054
{
D
dzzxzz@gmail.com 已提交
2055 2056
    register rt_ubase_t temp;
    struct rt_mq_message *msg;
2057

2058
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2059
    RT_ASSERT(mq != RT_NULL);
2060
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
D
dzzxzz@gmail.com 已提交
2061 2062
    RT_ASSERT(buffer != RT_NULL);
    RT_ASSERT(size != 0);
2063

D
dzzxzz@gmail.com 已提交
2064 2065 2066
    /* greater than one message size */
    if (size > mq->msg_size)
        return -RT_ERROR;
2067

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

D
dzzxzz@gmail.com 已提交
2070 2071
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
2072

D
dzzxzz@gmail.com 已提交
2073 2074 2075 2076 2077 2078 2079
    /* 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);
2080

D
dzzxzz@gmail.com 已提交
2081 2082 2083 2084
        return -RT_EFULL;
    }
    /* move free list pointer */
    mq->msg_queue_free = msg->next;
2085

D
dzzxzz@gmail.com 已提交
2086 2087
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
2088

D
dzzxzz@gmail.com 已提交
2089 2090
    /* copy buffer */
    rt_memcpy(msg + 1, buffer, size);
2091

D
dzzxzz@gmail.com 已提交
2092 2093
    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
2094

D
dzzxzz@gmail.com 已提交
2095
    /* link msg to the beginning of message queue */
2096
    msg->next = (struct rt_mq_message *)mq->msg_queue_head;
D
dzzxzz@gmail.com 已提交
2097
    mq->msg_queue_head = msg;
2098

D
dzzxzz@gmail.com 已提交
2099 2100 2101
    /* if there is no tail */
    if (mq->msg_queue_tail == RT_NULL)
        mq->msg_queue_tail = msg;
2102

D
dzzxzz@gmail.com 已提交
2103 2104
    /* increase message entry */
    mq->entry ++;
2105

D
dzzxzz@gmail.com 已提交
2106 2107 2108 2109
    /* resume suspended thread */
    if (!rt_list_isempty(&mq->parent.suspend_thread))
    {
        rt_ipc_list_resume(&(mq->parent.suspend_thread));
2110

D
dzzxzz@gmail.com 已提交
2111 2112
        /* enable interrupt */
        rt_hw_interrupt_enable(temp);
2113

D
dzzxzz@gmail.com 已提交
2114
        rt_schedule();
D
dzzxzz 已提交
2115

D
dzzxzz@gmail.com 已提交
2116 2117
        return RT_EOK;
    }
2118

D
dzzxzz@gmail.com 已提交
2119 2120
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);
2121

D
dzzxzz@gmail.com 已提交
2122
    return RT_EOK;
2123
}
2124
RTM_EXPORT(rt_mq_urgent);
2125 2126

/**
D
dzzxzz@gmail.com 已提交
2127 2128 2129
 * 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.
2130 2131 2132 2133 2134 2135 2136 2137
 *
 * @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 已提交
2138 2139 2140 2141
rt_err_t rt_mq_recv(rt_mq_t    mq,
                    void      *buffer,
                    rt_size_t  size,
                    rt_int32_t timeout)
2142
{
D
dzzxzz@gmail.com 已提交
2143 2144 2145 2146 2147
    struct rt_thread *thread;
    register rt_ubase_t temp;
    struct rt_mq_message *msg;
    rt_uint32_t tick_delta;

2148
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2149
    RT_ASSERT(mq != RT_NULL);
2150
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
D
dzzxzz@gmail.com 已提交
2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173
    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 已提交
2174
        RT_DEBUG_IN_THREAD_CONTEXT;
D
dzzxzz@gmail.com 已提交
2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201

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

D
dzzxzz@gmail.com 已提交
2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 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
            /* reset the timeout of thread timer and start it */
            rt_timer_control(&(thread->thread_timer),
                             RT_TIMER_CTRL_SET_TIME,
                             &timeout);
            rt_timer_start(&(thread->thread_timer));
        }

        /* enable interrupt */
        rt_hw_interrupt_enable(temp);

        /* re-schedule */
        rt_schedule();

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

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

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

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

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

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

    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

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

    /* disable interrupt */
    temp = rt_hw_interrupt_disable();
    /* put message to free list */
    msg->next = (struct rt_mq_message *)mq->msg_queue_free;
    mq->msg_queue_free = msg;
    /* enable interrupt */
    rt_hw_interrupt_enable(temp);

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

    return RT_EOK;
2266
}
B
Bernard Xiong 已提交
2267
RTM_EXPORT(rt_mq_recv);
2268 2269

/**
D
dzzxzz@gmail.com 已提交
2270 2271
 * This function can get or set some extra attributions of a message queue
 * object.
2272 2273 2274 2275 2276 2277 2278
 *
 * @param mq the message queue object
 * @param cmd the execution command
 * @param arg the execution argument
 *
 * @return the error code
 */
B
bernard 已提交
2279
rt_err_t rt_mq_control(rt_mq_t mq, int cmd, void *arg)
2280
{
D
dzzxzz@gmail.com 已提交
2281 2282
    rt_ubase_t level;
    struct rt_mq_message *msg;
2283

2284
    /* parameter check */
D
dzzxzz@gmail.com 已提交
2285
    RT_ASSERT(mq != RT_NULL);
2286
    RT_ASSERT(rt_object_get_type(&mq->parent.parent) == RT_Object_Class_MessageQueue);
2287

D
dzzxzz@gmail.com 已提交
2288 2289 2290 2291
    if (cmd == RT_IPC_CMD_RESET)
    {
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
2292

D
dzzxzz@gmail.com 已提交
2293 2294
        /* resume all waiting thread */
        rt_ipc_list_resume_all(&mq->parent.suspend_thread);
2295

D
dzzxzz@gmail.com 已提交
2296 2297 2298 2299 2300
        /* 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;
2301

D
dzzxzz@gmail.com 已提交
2302 2303 2304 2305 2306
            /* 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;
2307

D
dzzxzz@gmail.com 已提交
2308 2309 2310 2311
            /* put message to free list */
            msg->next = (struct rt_mq_message *)mq->msg_queue_free;
            mq->msg_queue_free = msg;
        }
2312

D
dzzxzz@gmail.com 已提交
2313 2314
        /* clean entry */
        mq->entry = 0;
2315

D
dzzxzz@gmail.com 已提交
2316 2317
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
2318

D
dzzxzz@gmail.com 已提交
2319
        rt_schedule();
2320

D
dzzxzz@gmail.com 已提交
2321 2322
        return RT_EOK;
    }
2323

D
dzzxzz@gmail.com 已提交
2324
    return -RT_ERROR;
2325
}
D
dzzxzz@gmail.com 已提交
2326
RTM_EXPORT(rt_mq_control);
2327
#endif /* end of RT_USING_MESSAGEQUEUE */
D
dzzxzz 已提交
2328

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