rtdef.h 29.7 KB
Newer Older
1 2 3
/*
 * File      : rtdef.h
 * This file is part of RT-Thread RTOS
D
dzzxzz 已提交
4
 * COPYRIGHT (C) 2006 - 2012, RT-Thread Development Team
5 6 7
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
D
dzzxzz 已提交
8
 * http://www.rt-thread.org/license/LICENSE
9 10 11 12
 *
 * Change Logs:
 * Date           Author       Notes
 * 2007-01-10     Bernard      the first version
D
dzzxzz 已提交
13
 * 2008-07-12     Bernard      remove all rt_int8, rt_uint32_t etc typedef
qiuyiuestc's avatar
qiuyiuestc 已提交
14
 * 2010-10-26     yi.qiu       add module support
15
 * 2010-11-10     Bernard      add cleanup callback function in thread exit.
B
bernard.xiong 已提交
16
 * 2011-05-09     Bernard      use builtin va_arg in GCC 4.x
17
 */
D
dzzxzz 已提交
18
 
19 20 21 22 23 24 25 26 27
#ifndef __RT_DEF_H__
#define __RT_DEF_H__

#include <rtconfig.h>

#ifdef __cplusplus
extern "C" {
#endif

B
bernard.xiong@gmail.com 已提交
28 29 30
/**
 * @addtogroup BasicDef
 */
D
dzzxzz 已提交
31

B
bernard.xiong@gmail.com 已提交
32 33
/*@{*/

qiuyiuestc's avatar
qiuyiuestc 已提交
34
/* RT-Thread version information */
35 36 37
#define RT_VERSION                      1L              /* major version number */
#define RT_SUBVERSION                   1L              /* minor version number */
#define RT_REVISION                     0L              /* revise version number */
B
bernard.xiong@gmail.com 已提交
38

39
/* RT-Thread version */
D
dzzxzz 已提交
40
#define RTTHREAD_VERSION                ((RT_VERSION * 10000) + \
41
                                         (RT_SUBVERSION * 100) + RT_REVISION)
42

B
bernard.xiong@gmail.com 已提交
43
/* RT-Thread basic data type definitions */
44 45 46 47 48 49 50
typedef signed   char                   rt_int8_t;      /*  8bit integer type */
typedef signed   short                  rt_int16_t;     /* 16bit integer type */
typedef signed   long                   rt_int32_t;     /* 32bit integer type */
typedef unsigned char                   rt_uint8_t;     /*  8bit unsigned integer type */
typedef unsigned short                  rt_uint16_t;    /* 16bit unsigned integer type */
typedef unsigned long                   rt_uint32_t;    /* 32bit unsigned integer type */
typedef int                             rt_bool_t;      /* boolean type */
51 52

/* 32bit CPU */
53 54
typedef long                            rt_base_t;      /* Nbit CPU related date type */
typedef unsigned long                   rt_ubase_t;     /* Nbit unsigned CPU related data type */
B
bernard.xiong@gmail.com 已提交
55

56 57 58 59 60 61 62
typedef rt_base_t                       rt_err_t;       /* Type for error number */
typedef rt_uint32_t                     rt_time_t;      /* Type for time stamp */
typedef rt_uint32_t                     rt_tick_t;      /* Type for tick count */
typedef rt_base_t                       rt_flag_t;      /* Type for flags */
typedef rt_ubase_t                      rt_size_t;      /* Type for size number */
typedef rt_ubase_t                      rt_dev_t;       /* Type for device */
typedef rt_base_t                       rt_off_t;       /* Type for offset */
B
bernard.xiong@gmail.com 已提交
63

B
bernard.xiong@gmail.com 已提交
64
/* boolean type definitions */
65 66
#define RT_TRUE                         1               /* boolean true  */
#define RT_FALSE                        0               /* boolean fails */
D
dzzxzz 已提交
67

B
bernard.xiong@gmail.com 已提交
68
/*@}*/
69

B
bernard.xiong@gmail.com 已提交
70
/* maximum value of base type */
71 72 73 74
#define RT_UINT8_MAX                    0xff            /* Maxium number of UINT8 */
#define RT_UINT16_MAX                   0xffff          /* Maxium number of UINT16 */
#define RT_UINT32_MAX                   0xffffffff      /* Maxium number of UINT32 */
#define RT_TICK_MAX                     RT_UINT32_MAX   /* Maxium number of tick */
75

B
bernard.xiong 已提交
76
/* Compiler Related Definitions */
D
dzzxzz 已提交
77
#ifdef __CC_ARM                         /* ARM Compiler */
78 79 80 81 82 83 84
    #include <stdarg.h>
    #define SECTION(x)                  __attribute__((section(x)))
    #define UNUSED                      __attribute__((unused))
    #define ALIGN(n)                    __attribute__((aligned(n)))
    #define rt_inline                   static __inline
    /* module compiling */
    #ifdef RT_USING_MODULE
85
        #define RTT_API                 __declspec(dllimport)
86
    #else
87
        #define RTT_API                 __declspec(dllexport)
88
    #endif
89

D
dzzxzz 已提交
90
#elif defined (__IAR_SYSTEMS_ICC__)     /* for IAR Compiler */
91 92 93 94 95 96 97
    #include <stdarg.h>
    #define SECTION(x)                  @ x
    #define UNUSED
    #define PRAGMA(x)                   _Pragma(#x)
    #define ALIGN(n)                    PRAGMA(data_alignment=n)
    #define rt_inline                   static inline
    #define RTT_API
98

D
dzzxzz 已提交
99
#elif defined (__GNUC__)                /* GNU GCC Compiler */
100 101 102 103 104
    #ifdef RT_USING_NEWLIB
        #include <stdarg.h>
    #else
        #if __GNUC__ < 4
            typedef void *__sys_va_list;
105
            typedef __sys_va_list       va_list;
106 107 108 109
            #define __va_rounded_size(type) \
                (((sizeof(type) + sizeof(int) - 1) / sizeof(int)) * sizeof(int))
            #define va_start(ap, lastarg)   \
                (ap = ((char *) &(lastarg) + __va_rounded_size(lastarg)))
110
            #define va_end(ap)          ((void)0)
111 112 113 114 115
            /*  little endian */
            #define va_arg(ap, type)    \
                (ap = (__sys_va_list) ((char *)(ap) + __va_rounded_size(type)),  \
                *((type *) (void *) ((char *)(ap) - __va_rounded_size(type))))
        #else
116 117 118 119 120
            typedef __builtin_va_list   __gnuc_va_list;
            typedef __gnuc_va_list      va_list;
            #define va_start(v,l)       __builtin_va_start(v,l)
            #define va_end(v)           __builtin_va_end(v)
            #define va_arg(v,l)         __builtin_va_arg(v,l)
121 122 123 124 125 126 127 128
        #endif
    #endif

    #define SECTION(x)                  __attribute__((section(x)))
    #define UNUSED                      __attribute__((unused))
    #define ALIGN(n)                    __attribute__((aligned(n)))
    #define rt_inline                   static __inline
    #define RTT_API
129 130 131 132 133 134
#elif defined (__ADSPBLACKFIN__)        /* for VisualDSP++ Compiler */
    #include <stdarg.h>
    #define SECTION(x)                  __attribute__((section(x)))
    #define UNUSED                      __attribute__((unused))
    #define ALIGN(n)                    __attribute__((aligned(n)))
    #define rt_inline                   static inline
135
    #define RTT_API 
136 137 138 139 140 141 142
#elif defined (_MSC_VER)
    #include <stdarg.h>
    #define SECTION(x)
    #define UNUSED
    #define ALIGN(n)                    __declspec(align(n))
    #define rt_inline                   static __inline
    #define RTT_API
143 144
#endif

D
dzzxzz 已提交
145 146
/* event length */
#define RT_EVENT_LENGTH                 32
147 148

/* memory management option */
D
dzzxzz 已提交
149 150 151
#define RT_MM_PAGE_SIZE                 4096
#define RT_MM_PAGE_MASK                 (RT_MM_PAGE_SIZE - 1)
#define RT_MM_PAGE_BITS                 12
152 153 154 155

/**
 * @addtogroup Error
 */
D
dzzxzz 已提交
156

157
/*@{*/
D
dzzxzz 已提交
158

B
bernard.xiong@gmail.com 已提交
159
/* RT-Thread error code definitions */
160 161 162 163 164 165 166 167 168
#define RT_EOK                          0               /* There is no error */
#define RT_ERROR                        1               /* A generic error happens */
#define RT_ETIMEOUT                     2               /* Timed out */
#define RT_EFULL                        3               /* The resource is full */
#define RT_EEMPTY                       4               /* The resource is empty */
#define RT_ENOMEM                       5               /* No memory */
#define RT_ENOSYS                       6               /* No system */
#define RT_EBUSY                        7               /* Busy */
#define RT_EIO                          8               /* IO error */
D
dzzxzz 已提交
169

170 171 172
/*@}*/

/**
B
bernard.xiong@gmail.com 已提交
173 174
 * @ingroup BasicDef
 *
175 176
 * @def RT_ALIGN(size, align)
 * Return the most contiguous size aligned at specified width. RT_ALIGN(13, 4)
177
 * would return 16.
B
bernard.xiong@gmail.com 已提交
178
 */
D
dzzxzz 已提交
179
#define RT_ALIGN(size, align)           (((size) + (align) - 1) & ~((align) - 1))
D
dzzxzz 已提交
180

B
bernard.xiong@gmail.com 已提交
181 182
/**
 * @ingroup BasicDef
183 184 185 186
 *
 * @def RT_ALIGN_DOWN(size, align)
 * Return the down number of aligned at specified width. RT_ALIGN_DOWN(13, 4)
 * would return 12. 
187
 */
D
dzzxzz 已提交
188
#define RT_ALIGN_DOWN(size, align)      ((size) & ~((align) - 1))
189 190

/**
B
bernard.xiong@gmail.com 已提交
191 192
 * @ingroup BasicDef
 *
193 194 195
 * @def RT_NULL
 * Similar as the \c NULL in C library.
 */
D
dzzxzz 已提交
196
#define RT_NULL                         ((void *)0)
197 198 199

struct rt_list_node
{
200 201
    struct rt_list_node *next;                          /* point to next node. */
    struct rt_list_node *prev;                          /* point to prev node. */
202
};
203
typedef struct rt_list_node rt_list_t;                  /* Type for lists. */
204 205 206 207

/**
 * @addtogroup KernelObject
 */
D
dzzxzz 已提交
208

209
/*@{*/
qiuyiuestc's avatar
qiuyiuestc 已提交
210 211 212 213

/*
 * kernel object macros
 */
214
#define RT_OBJECT_FLAG_MODULE           0x80            /* is module object. */
qiuyiuestc's avatar
qiuyiuestc 已提交
215

B
bernard.xiong@gmail.com 已提交
216
/**
217 218 219 220
 * Base structure of Kernel object
 */
struct rt_object
{
221 222 223
    char       name[RT_NAME_MAX];                       /* name of kernel object */
    rt_uint8_t type;                                    /* type of kernel object */
    rt_uint8_t flag;                                    /* flag of kernel object */
qiuyiuestc's avatar
qiuyiuestc 已提交
224

B
bernard.xiong@gmail.com 已提交
225
#ifdef RT_USING_MODULE
226
    void      *module_id;                               /* id of application module */
B
bernard.xiong@gmail.com 已提交
227
#endif
228
    rt_list_t  list;                                    /* list node of kernel object */
229
};
230
typedef struct rt_object *rt_object_t;                  /* Type for kernel objects. */
D
dzzxzz 已提交
231 232 233 234 235 236 237 238 239 240

/**
 *  The object type can be one of the follows with specific
 *  macros enabled:
 *  - Thread
 *  - Semaphore
 *  - Mutex
 *  - Event
 *  - MailBox
 *  - MessageQueue
241
 *  - MemHeap
D
dzzxzz 已提交
242
 *  - MemPool
243
 *  - Device
D
dzzxzz 已提交
244
 *  - Timer
245
 *  - Module
D
dzzxzz 已提交
246 247
 *  - Unknown
 *  - Static
248 249 250
 */
enum rt_object_class_type
{
251
    RT_Object_Class_Thread = 0,                         /* The object is a thread. */
252
#ifdef RT_USING_SEMAPHORE
253
    RT_Object_Class_Semaphore,                          /* The object is a semaphore. */
254 255
#endif
#ifdef RT_USING_MUTEX
256
    RT_Object_Class_Mutex,                              /* The object is a mutex. */
257 258
#endif
#ifdef RT_USING_EVENT
259
    RT_Object_Class_Event,                              /* The object is a event. */
260 261
#endif
#ifdef RT_USING_MAILBOX
262
    RT_Object_Class_MailBox,                            /* The object is a mail box. */
263 264
#endif
#ifdef RT_USING_MESSAGEQUEUE
265
    RT_Object_Class_MessageQueue,                       /* The object is a message queue. */
266 267
#endif
#ifdef RT_USING_MEMHEAP
268
    RT_Object_Class_MemHeap,                            /* The object is a memory heap */
269 270
#endif
#ifdef RT_USING_MEMPOOL
271
    RT_Object_Class_MemPool,                            /* The object is a memory pool. */
272 273
#endif
#ifdef RT_USING_DEVICE
274
    RT_Object_Class_Device,                             /* The object is a device */
275
#endif
276
    RT_Object_Class_Timer,                              /* The object is a timer. */
277
#ifdef RT_USING_MODULE
278
    RT_Object_Class_Module,                             /* The object is a module. */
279
#endif
280 281
    RT_Object_Class_Unknown,                            /* The object is unknown. */
    RT_Object_Class_Static = 0x80                       /* The object is a static object. */
282
};
283

B
bernard.xiong@gmail.com 已提交
284 285
/**
 * The information of the kernel object
286 287 288
 */
struct rt_object_information
{
289 290 291
    enum rt_object_class_type type;                     /* object class type */
    rt_list_t                 object_list;              /* object list */
    rt_size_t                 object_size;              /* object size */
292
};
293 294 295 296 297

/**
 * The hook function call macro
 */
#ifdef RT_USING_HOOK
298 299
#define RT_OBJECT_HOOK_CALL(func, argv) \
    do { if ((func) != RT_NULL) func argv; } while (0)
300
#else
301
#define RT_OBJECT_HOOK_CALL(func, argv) 
302 303
#endif

304 305 306 307 308
/*@}*/

/**
 * @addtogroup Clock
 */
D
dzzxzz 已提交
309

310 311
/*@{*/

B
bernard.xiong@gmail.com 已提交
312
/**
313 314
 * clock & timer macros
 */
315 316 317 318
#define RT_TIMER_FLAG_DEACTIVATED       0x0             /* timer is deactive */
#define RT_TIMER_FLAG_ACTIVATED         0x1             /* timer is active */
#define RT_TIMER_FLAG_ONE_SHOT          0x0             /* one shot timer */
#define RT_TIMER_FLAG_PERIODIC          0x2             /* periodic timer */
319

320 321
#define RT_TIMER_FLAG_HARD_TIMER        0x0             /* hard timer,the timer's callback function will be called in tick isr. */
#define RT_TIMER_FLAG_SOFT_TIMER        0x4             /* soft timer,the timer's callback function will be called in timer thread. */
322

323 324 325 326
#define RT_TIMER_CTRL_SET_TIME          0x0             /* set timer control command */
#define RT_TIMER_CTRL_GET_TIME          0x1             /* get timer control command */
#define RT_TIMER_CTRL_SET_ONESHOT       0x2             /* change timer to one shot */
#define RT_TIMER_CTRL_SET_PERIODIC      0x3             /* change timer to periodic */
327

B
bernard.xiong@gmail.com 已提交
328
/**
329 330 331 332
 * timer structure
 */
struct rt_timer
{
333
    struct rt_object parent;                            /* inherit from rt_object */
334

335
    rt_list_t        list;                              /* the node of timer list */
336

337 338
    void (*timeout_func)(void *parameter);              /* timeout function */
    void            *parameter;                         /* timeout function's parameter */
339

340 341
    rt_tick_t        init_tick;                         /* timer timeout tick */
    rt_tick_t        timeout_tick;                      /* timeout tick */
342
};
D
dzzxzz 已提交
343
typedef struct rt_timer *rt_timer_t;
D
dzzxzz 已提交
344

345 346 347 348 349
/*@}*/

/**
 * @addtogroup Thread
 */
D
dzzxzz 已提交
350

351 352 353 354 355 356
/*@{*/

/*
 * Thread
 */

B
bernard.xiong@gmail.com 已提交
357 358 359
/*
 * thread state definitions
 */
360 361 362 363 364 365
#define RT_THREAD_INIT                  0x00                /* Initialized status */
#define RT_THREAD_READY                 0x01                /* Ready status */
#define RT_THREAD_SUSPEND               0x02                /* Suspend status */
#define RT_THREAD_RUNNING               0x03                /* Running status */
#define RT_THREAD_BLOCK                 RT_THREAD_SUSPEND   /* Blocked status */
#define RT_THREAD_CLOSE                 0x04                /* Closed status */
366

B
bernard.xiong@gmail.com 已提交
367 368 369
/**
 * thread control command definitions
 */
370 371 372 373
#define RT_THREAD_CTRL_STARTUP          0x00                /* Startup thread. */
#define RT_THREAD_CTRL_CLOSE            0x01                /* Close thread. */
#define RT_THREAD_CTRL_CHANGE_PRIORITY  0x02                /* Change thread priority. */
#define RT_THREAD_CTRL_INFO             0x03                /* Get thread information. */
374

B
bernard.xiong@gmail.com 已提交
375 376
/**
 * Thread structure
377 378 379
 */
struct rt_thread
{
380
    /* rt object */
381 382 383
    char        name[RT_NAME_MAX];                      /* the name of thread */
    rt_uint8_t  type;                                   /* type of object */
    rt_uint8_t  flags;                                  /* thread's flags */
384
    
qiuyiuestc's avatar
qiuyiuestc 已提交
385
#ifdef RT_USING_MODULE
386
    void       *module_id;                              /* id of application module */
qiuyiuestc's avatar
qiuyiuestc 已提交
387
#endif
388

389 390
    rt_list_t   list;                                   /* the object list */
    rt_list_t   tlist;                                  /* the thread list */
391

392
    /* stack point and entry */
393 394 395 396 397
    void       *sp;                                     /* stack point */
    void       *entry;                                  /* entry */
    void       *parameter;                              /* parameter */
    void       *stack_addr;                             /* stack address */
    rt_uint16_t stack_size;                             /* stack size */
398

399
    /* error code */
400
    rt_err_t    error;                                  /* error code */
401

402
    rt_uint8_t  stat;                                   /* thread stat */
403

404
    /* priority */
405 406
    rt_uint8_t  current_priority;                       /* current priority */
    rt_uint8_t  init_priority;                          /* initialized priority */
407
#if RT_THREAD_PRIORITY_MAX > 32
408 409
    rt_uint8_t  number;
    rt_uint8_t  high_mask;
410
#endif
411
    rt_uint32_t number_mask;
412

B
bernard.xiong 已提交
413
#if defined(RT_USING_EVENT)
414 415 416
    /* thread event */
    rt_uint32_t event_set;
    rt_uint8_t  event_info;
417 418
#endif

419 420
    rt_ubase_t  init_tick;                              /* thread's initialized tick */
    rt_ubase_t  remaining_tick;                         /* remaining tick */
421

422
    struct rt_timer thread_timer;                       /* built-in thread timer */
423

424
    void (*cleanup)(struct rt_thread *tid);             /* cleanup function when thread exit */
425

426
    rt_uint32_t user_data;                              /* private user data beyond this thread */
427
};
D
dzzxzz 已提交
428 429
typedef struct rt_thread *rt_thread_t;

430 431 432 433 434
/*@}*/

/**
 * @addtogroup IPC
 */
D
dzzxzz 已提交
435

436
/*@{*/
B
bernard.xiong@gmail.com 已提交
437 438

/**
B
bernard.xiong@gmail.com 已提交
439
 * IPC flags and control command definitions
440
 */
441 442
#define RT_IPC_FLAG_FIFO                0x00            /* FIFOed IPC. @ref IPC. */
#define RT_IPC_FLAG_PRIO                0x01            /* PRIOed IPC. @ref IPC. */
443

444 445
#define RT_IPC_CMD_UNKNOWN              0x00            /* unknown IPC command */
#define RT_IPC_CMD_RESET                0x01            /* reset IPC object */
446

447 448
#define RT_WAITING_FOREVER              -1              /* Block forever until get resource. */
#define RT_WAITING_NO                   0               /* Non-block. */
449

B
bernard.xiong@gmail.com 已提交
450
/**
451 452 453 454
 * Base structure of IPC object
 */
struct rt_ipc_object
{
455
    struct rt_object parent;                            /* inherit from rt_object */
456

457
    rt_list_t        suspend_thread;                    /* threads pended on this resource */
458 459 460
};

#ifdef RT_USING_SEMAPHORE
B
bernard.xiong@gmail.com 已提交
461 462
/**
 * Semaphore structure
463 464 465
 */
struct rt_semaphore
{
466
    struct rt_ipc_object parent;                        /* inherit from ipc_object */
467

468
    rt_uint16_t          value;                         /* value of semaphore. */
469
};
D
dzzxzz 已提交
470
typedef struct rt_semaphore *rt_sem_t;
471 472 473
#endif

#ifdef RT_USING_MUTEX
B
bernard.xiong@gmail.com 已提交
474 475
/**
 * Mutual exclusion (mutex) structure
476 477 478
 */
struct rt_mutex
{
479
    struct rt_ipc_object parent;                        /* inherit from ipc_object */
480

481
    rt_uint16_t          value;                         /* value of mutex */
482

483 484
    rt_uint8_t           original_priority;             /* priority of last thread hold the mutex */
    rt_uint8_t           hold;                          /* numbers of thread hold the mutex */
485

486
    struct rt_thread    *owner;                         /* current owner of mutex */
487
};
D
dzzxzz 已提交
488
typedef struct rt_mutex *rt_mutex_t;
489 490 491
#endif

#ifdef RT_USING_EVENT
B
bernard.xiong@gmail.com 已提交
492 493 494
/**
 * flag defintions in event
 */
495 496 497
#define RT_EVENT_FLAG_AND               0x01            /* logic and */
#define RT_EVENT_FLAG_OR                0x02            /* logic or */
#define RT_EVENT_FLAG_CLEAR             0x04            /* clear flag */
B
bernard.xiong@gmail.com 已提交
498

499
/*
B
bernard.xiong@gmail.com 已提交
500
 * event structure
501 502 503
 */
struct rt_event
{
504
    struct rt_ipc_object parent;                        /* inherit from ipc_object */
505

506
    rt_uint32_t          set;                           /* event set */
507
};
D
dzzxzz 已提交
508
typedef struct rt_event *rt_event_t;
509 510 511
#endif

#ifdef RT_USING_MAILBOX
B
bernard.xiong@gmail.com 已提交
512 513
/**
 * mailbox structure
514 515 516
 */
struct rt_mailbox
{
517
    struct rt_ipc_object parent;                        /* inherit from ipc_object */
518

519
    rt_uint32_t         *msg_pool;                      /* start address of message buffer */
520

521
    rt_uint16_t          size;                          /* size of message pool */
522

523 524 525
    rt_uint16_t          entry;                         /* index of messages in msg_pool */
    rt_uint16_t          in_offset;                     /* input offset of the message buffer */
    rt_uint16_t          out_offset;                    /* output offset of the message buffer */
526

527
    rt_list_t            suspend_sender_thread;         /* sender thread suspended on this mailbox */
528
};
D
dzzxzz 已提交
529
typedef struct rt_mailbox *rt_mailbox_t;
530 531 532
#endif

#ifdef RT_USING_MESSAGEQUEUE
B
bernard.xiong@gmail.com 已提交
533 534
/**
 * message queue structure
535 536 537
 */
struct rt_messagequeue
{
538
    struct rt_ipc_object parent;                        /* inherit from ipc_object */
539

540
    void                *msg_pool;                      /* start address of message queue */
541

542 543
    rt_uint16_t          msg_size;                      /* message size of each message */
    rt_uint16_t          max_msgs;                      /* max number of messages */
544

545
    rt_uint16_t          entry;                         /* index of messages in the queue */
546

547 548 549
    void                *msg_queue_head;                /* list head */
    void                *msg_queue_tail;                /* list tail */
    void                *msg_queue_free;                /* pointer indicated the free node of queue */
550
};
D
dzzxzz 已提交
551
typedef struct rt_messagequeue *rt_mq_t;
552
#endif
D
dzzxzz 已提交
553

554 555
/*@}*/

D
dzzxzz 已提交
556
#ifdef RT_USING_MEMPOOL
557 558 559
/**
 * @addtogroup MM
 */
D
dzzxzz 已提交
560

561
/*@{*/
D
dzzxzz 已提交
562

563 564 565 566
/*
 * memory management
 * heap & partition
 */
D
dzzxzz 已提交
567

568 569 570 571 572
/**
 * memory item on the heap
 */
struct rt_memheap_item
{
573 574 575 576 577
    rt_uint32_t             magic;
    struct rt_memheap_item *next;
    struct rt_memheap_item *prev;
    struct rt_memheap_item *next_free;
    struct rt_memheap_item *prev_free;
578

579
    struct rt_memheap      *pool_ptr;
580 581 582 583 584 585 586
};

/**
 * Base structure of memory heap object
 */
struct rt_memheap
{
587
    struct rt_object        parent;
588

589
    void                   *start_addr;                 /* pool start address and size */
590

591 592
    rt_uint32_t             pool_size;
    rt_uint32_t             available_size;
593

594
    struct rt_memheap_item *block_list;                 /* used block list */
595

596 597
    struct rt_memheap_item *free_list;                  /* free block list */
    struct rt_memheap_item  free_header;                /* free block list header */
598 599
};

B
bernard.xiong@gmail.com 已提交
600
/**
601 602 603 604
 * Base structure of Memory pool object
 */
struct rt_mempool
{
605
    struct rt_object parent;                            /* inherit from rt_object */
606

607 608
    void            *start_address;                     /* memory pool start */
    rt_size_t        size;                              /* size of memory pool */
609

610 611
    rt_size_t        block_size;                        /* size of memory blocks */
    rt_uint8_t      *block_list;                        /* memory blocks list */
612

613 614
    rt_size_t        block_total_count;                 /* numbers of memory block */
    rt_size_t        block_free_count;                  /* numbers of free memory block */
615

616 617
    rt_list_t        suspend_thread;                    /* threads pended on this resource */
    rt_size_t        suspend_thread_count;              /* numbers of thread pended on this resource */
618
};
D
dzzxzz 已提交
619
typedef struct rt_mempool *rt_mp_t;
D
dzzxzz 已提交
620

621
/*@}*/
D
dzzxzz 已提交
622
#endif
623 624 625 626 627

#ifdef RT_USING_DEVICE
/**
 * @addtogroup Device
 */
D
dzzxzz 已提交
628

629 630
/*@{*/

B
bernard.xiong@gmail.com 已提交
631 632
/**
 * device (I/O) class type
633 634 635
 */
enum rt_device_class_type
{
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
    RT_Device_Class_Char = 0,                           /* character device */
    RT_Device_Class_Block,                              /* block device */
    RT_Device_Class_NetIf,                              /* net interface */
    RT_Device_Class_MTD,                                /* memory device */
    RT_Device_Class_CAN,                                /* CAN device */
    RT_Device_Class_RTC,                                /* RTC device */
    RT_Device_Class_Sound,                              /* Sound device */
    RT_Device_Class_Graphic,                            /* Graphic device */
    RT_Device_Class_I2CBUS,                             /* I2C bus device */
    RT_Device_Class_USBDevice,                          /* USB slave device */
    RT_Device_Class_USBHost,                            /* USB host bus */
    RT_Device_Class_SPIBUS,                             /* SPI bus device */
    RT_Device_Class_SPIDevice,                          /* SPI device */
    RT_Device_Class_SDIO,                               /* SDIO bus device */
    RT_Device_Class_PM,                                 /* PM pseudo device */
    RT_Device_Class_Unknown                             /* unknown device */
652 653
};

B
bernard.xiong@gmail.com 已提交
654 655 656
/**
 * device flags defitions
 */
657
#define RT_DEVICE_FLAG_DEACTIVATE       0x000           /* device is not not initialized */
B
bernard.xiong@gmail.com 已提交
658

659 660 661
#define RT_DEVICE_FLAG_RDONLY           0x001           /* read only */
#define RT_DEVICE_FLAG_WRONLY           0x002           /* write only */
#define RT_DEVICE_FLAG_RDWR             0x003           /* read and write */
B
bernard.xiong@gmail.com 已提交
662

663 664 665 666 667
#define RT_DEVICE_FLAG_REMOVABLE        0x004           /* removable device */
#define RT_DEVICE_FLAG_STANDALONE       0x008           /* standalone device */
#define RT_DEVICE_FLAG_ACTIVATED        0x010           /* device is activated */
#define RT_DEVICE_FLAG_SUSPENDED        0x020           /* device is suspended */
#define RT_DEVICE_FLAG_STREAM           0x040           /* stream mode */
B
bernard.xiong@gmail.com 已提交
668

669 670 671 672
#define RT_DEVICE_FLAG_INT_RX           0x100           /* INT mode on Rx */
#define RT_DEVICE_FLAG_DMA_RX           0x200           /* DMA mode on Rx */
#define RT_DEVICE_FLAG_INT_TX           0x400           /* INT mode on Tx */
#define RT_DEVICE_FLAG_DMA_TX           0x800           /* DMA mode on Tx */
B
bernard.xiong@gmail.com 已提交
673

674 675 676 677 678
#define RT_DEVICE_OFLAG_CLOSE           0x000           /* device is closed */
#define RT_DEVICE_OFLAG_RDONLY          0x001           /* read only access */
#define RT_DEVICE_OFLAG_WRONLY          0x002           /* write only access */
#define RT_DEVICE_OFLAG_RDWR            0x003           /* read and write */
#define RT_DEVICE_OFLAG_OPEN            0x008           /* device is opened */
B
bernard.xiong@gmail.com 已提交
679 680 681 682

/**
 * general device commands
 */
683 684
#define RT_DEVICE_CTRL_RESUME           0x01            /* resume device */
#define RT_DEVICE_CTRL_SUSPEND          0x02            /* suspend device */
B
bernard.xiong@gmail.com 已提交
685 686 687 688

/**
 * special device commands
 */
689
#define RT_DEVICE_CTRL_CHAR_STREAM      0x10            /* stream mode on char device */
690 691
#define RT_DEVICE_CTRL_BLK_GETGEOME     0x10            /* get geometry information   */
#define RT_DEVICE_CTRL_BLK_SYNC         0x11            /* flush data to block device */
692 693 694 695
#define RT_DEVICE_CTRL_NETIF_GETMAC     0x10            /* get mac address */
#define RT_DEVICE_CTRL_MTD_FORMAT       0x10            /* format a MTD device */
#define RT_DEVICE_CTRL_RTC_GET_TIME     0x10            /* get time */
#define RT_DEVICE_CTRL_RTC_SET_TIME     0x11            /* set time */
696

D
dzzxzz 已提交
697
typedef struct rt_device *rt_device_t;
B
bernard.xiong@gmail.com 已提交
698 699
/**
 * Device structure
700 701 702
 */
struct rt_device
{
703
    struct rt_object          parent;                   /* inherit from rt_object */
704

705 706 707
    enum rt_device_class_type type;                     /* device type */
    rt_uint16_t               flag;                     /* device flag */
    rt_uint16_t               open_flag;                /* device open flag */
708

709
    rt_uint8_t                device_id;                /* 0 - 255 */
710

711 712
    /* device call back */
    rt_err_t (*rx_indicate)(rt_device_t dev, rt_size_t size);
713
    rt_err_t (*tx_complete)(rt_device_t dev, void *buffer);
714

715 716 717 718 719 720 721
    /* common device interface */
    rt_err_t  (*init)   (rt_device_t dev);
    rt_err_t  (*open)   (rt_device_t dev, rt_uint16_t oflag);
    rt_err_t  (*close)  (rt_device_t dev);
    rt_size_t (*read)   (rt_device_t dev, rt_off_t pos, void *buffer, rt_size_t size);
    rt_size_t (*write)  (rt_device_t dev, rt_off_t pos, const void *buffer, rt_size_t size);
    rt_err_t  (*control)(rt_device_t dev, rt_uint8_t cmd, void *args);
722 723

#ifdef RT_USING_DEVICE_SUSPEND
724 725
    rt_err_t (*suspend) (rt_device_t dev);
    rt_err_t (*resumed) (rt_device_t dev);
726 727
#endif

728
    void                     *user_data;                /* device private data */
729 730
};

B
bernard.xiong@gmail.com 已提交
731 732 733
/**
 * block device geometry structure
 */
734 735
struct rt_device_blk_geometry
{
736 737 738
    rt_uint32_t sector_count;                           /* count of sectors */
    rt_uint32_t bytes_per_sector;                       /* number of bytes per sector */
    rt_uint32_t block_size;                             /* size to erase one block */
739
};
B
bernard.xiong@gmail.com 已提交
740 741

/**
D
dzzxzz 已提交
742
 * graphic device control command
B
bernard.xiong@gmail.com 已提交
743
 */
744 745 746 747 748
#define RTGRAPHIC_CTRL_RECT_UPDATE      0
#define RTGRAPHIC_CTRL_POWERON          1
#define RTGRAPHIC_CTRL_POWEROFF         2
#define RTGRAPHIC_CTRL_GET_INFO         3
#define RTGRAPHIC_CTRL_SET_MODE         4
749 750
#define RTGRAPHIC_CTRL_FILL_RECT        5
#define RTGRAPHIC_CTRL_DRAW_RECT        6
B
bernard.xiong@gmail.com 已提交
751 752

/* graphic deice */
D
dzzxzz 已提交
753
enum
B
bernard.xiong@gmail.com 已提交
754
{
755 756 757 758 759 760 761 762 763 764
    RTGRAPHIC_PIXEL_FORMAT_MONO = 0,
    RTGRAPHIC_PIXEL_FORMAT_GRAY4,
    RTGRAPHIC_PIXEL_FORMAT_GRAY16,
    RTGRAPHIC_PIXEL_FORMAT_RGB332,
    RTGRAPHIC_PIXEL_FORMAT_RGB444,
    RTGRAPHIC_PIXEL_FORMAT_RGB565,
    RTGRAPHIC_PIXEL_FORMAT_RGB565P,
    RTGRAPHIC_PIXEL_FORMAT_RGB666,
    RTGRAPHIC_PIXEL_FORMAT_RGB888,
    RTGRAPHIC_PIXEL_FORMAT_ARGB888
B
bernard.xiong@gmail.com 已提交
765
};
D
dzzxzz 已提交
766

B
bernard.xiong@gmail.com 已提交
767 768 769
/**
 * build a pixel position according to (x, y) coordinates.
 */
770
#define RTGRAPHIC_PIXEL_POSITION(x, y)  ((x << 16) | y)
B
bernard.xiong@gmail.com 已提交
771 772 773 774 775 776

/**
 * graphic device information structure
 */
struct rt_device_graphic_info
{
777 778 779
    rt_uint8_t  pixel_format;                           /* graphic format */
    rt_uint8_t  bits_per_pixel;                         /* bits per pixel */
    rt_uint16_t reserved;                               /* reserved field */
B
bernard.xiong@gmail.com 已提交
780

781 782
    rt_uint16_t width;                                  /* width of graphic device */
    rt_uint16_t height;                                 /* height of graphic device */
B
bernard.xiong@gmail.com 已提交
783

784
    rt_uint8_t *framebuffer;                            /* frame buffer */
B
bernard.xiong@gmail.com 已提交
785 786 787 788 789 790 791
};

/**
 * rectangle information structure
 */
struct rt_device_rect_info
{
792 793 794 795
    rt_uint16_t x;
    rt_uint16_t y;                                      /* x, y coordinate */
    rt_uint16_t width;
    rt_uint16_t height;                                 /* width and height */
B
bernard.xiong@gmail.com 已提交
796
};
797 798 799 800 801 802

/**
 * graphic operations
 */
struct rt_device_graphic_ops
{
803 804
    void (*set_pixel) (const char *pixel, int x, int y);
    void (*get_pixel) (char *pixel, int x, int y);
805

806 807
    void (*draw_hline)(const char *pixel, int x1, int x2, int y);
    void (*draw_vline)(const char *pixel, int x, int y1, int y2);
808

809
    void (*blit_line) (const char *pixel, int x, int y, rt_size_t size);
810
};
811
#define rt_graphix_ops(device)          ((struct rt_device_graphic_ops *)(device->user_data))
D
dzzxzz 已提交
812

B
bernard.xiong@gmail.com 已提交
813
/*@}*/
D
dzzxzz 已提交
814
#endif
815

D
dzzxzz 已提交
816
#ifdef RT_USING_MODULE
B
bernard.xiong@gmail.com 已提交
817 818 819
/**
 * @addtogroup Module
 */
D
dzzxzz 已提交
820

B
bernard.xiong@gmail.com 已提交
821
/*@{*/
D
dzzxzz 已提交
822

qiuyiuestc's avatar
qiuyiuestc 已提交
823 824 825 826
/*
 * module system
 */

827 828
#define RT_MODULE_FLAG_WITHENTRY        0x00            /* with entry point */
#define RT_MODULE_FLAG_WITHOUTENTRY     0x01            /* without entry point */
qiuyiuestc's avatar
qiuyiuestc 已提交
829

B
bernard.xiong@gmail.com 已提交
830 831 832
/**
 * Application Module structure
 */
qiuyiuestc's avatar
qiuyiuestc 已提交
833 834
struct rt_module
{
835
    struct rt_object             parent;                /* inherit from object */
qiuyiuestc's avatar
qiuyiuestc 已提交
836

837
    rt_uint8_t                  *module_space;          /* module memory space */
qiuyiuestc's avatar
qiuyiuestc 已提交
838

839 840 841 842
    void                        *module_entry;          /* entry address of module's thread */
    rt_thread_t                  module_thread;         /* stack size of module's thread */
    rt_uint32_t                  stack_size;            /* priority of module's thread */
    rt_uint32_t                  thread_priority;
qiuyiuestc's avatar
qiuyiuestc 已提交
843

qiuyiuestc's avatar
qiuyiuestc 已提交
844
#ifdef RT_USING_SLAB
845
    /* module memory allocator */
846 847 848
    void                        *mem_list;              /* module's free memory list */
    void                        *page_array;            /* module's using pages */
    rt_uint32_t                  page_cnt;              /* module's using pages count */
qiuyiuestc's avatar
qiuyiuestc 已提交
849
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
850

851 852
    rt_uint32_t                  nsym;                  /* number of symbol in the module */
    struct rt_module_symtab     *symtab;                /* module symbol table */
qiuyiuestc's avatar
qiuyiuestc 已提交
853

854
    rt_uint32_t                  nref;                  /* reference count */
855
    
856
    /* object in this module, module object is the last basic object type */
857
    struct rt_object_information module_object[RT_Object_Class_Unknown];
qiuyiuestc's avatar
qiuyiuestc 已提交
858
};
D
dzzxzz 已提交
859
typedef struct rt_module *rt_module_t;
qiuyiuestc's avatar
qiuyiuestc 已提交
860

861 862 863 864 865 866 867 868
/*@}*/
#endif

#ifdef __cplusplus
}
#endif

#endif