rtdef.h 47.9 KB
Newer Older
1
/*
2
 * Copyright (c) 2006-2022, RT-Thread Development Team
B
Bernard Xiong 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
5 6 7 8 9 10 11 12
 *
 * Change Logs:
 * Date           Author       Notes
 * 2007-01-10     Bernard      the first version
 * 2008-07-12     Bernard      remove all rt_int8, rt_uint32_t etc typedef
 * 2010-10-26     yi.qiu       add module support
 * 2010-11-10     Bernard      add cleanup callback function in thread exit.
 * 2011-05-09     Bernard      use builtin va_arg in GCC 4.x
B
Bernard Xiong 已提交
13
 * 2012-11-16     Bernard      change RT_NULL from ((void*)0) to 0.
14 15 16
 * 2012-12-29     Bernard      change the RT_USING_MEMPOOL location and add
 *                             RT_USING_MEMHEAP condition.
 * 2012-12-30     Bernard      add more control command for graphic.
B
Bernard Xiong 已提交
17
 * 2013-01-09     Bernard      change version number.
B
Bernard Xiong 已提交
18
 * 2015-02-01     Bernard      change version number to v2.1.0
B
bernard 已提交
19 20
 * 2017-08-31     Bernard      change version number to v3.0.0
 * 2017-11-30     Bernard      change version number to v3.0.1
B
Bernard Xiong 已提交
21
 * 2017-12-27     Bernard      change version number to v3.0.2
B
Bernard Xiong 已提交
22
 * 2018-02-24     Bernard      change version number to v3.0.3
B
Bernard Xiong 已提交
23
 * 2018-04-25     Bernard      change version number to v3.0.4
B
Bernard Xiong 已提交
24
 * 2018-05-31     Bernard      change version number to v3.1.0
B
Bernard Xiong 已提交
25
 * 2018-09-04     Bernard      change version number to v3.1.1
26
 * 2018-09-14     Bernard      apply Apache License v2.0 to RT-Thread Kernel
B
Bernard Xiong 已提交
27
 * 2018-10-13     Bernard      change version number to v4.0.0
B
Bernard Xiong 已提交
28
 * 2018-10-02     Bernard      add 64bit arch support
S
shaojinchun 已提交
29 30 31
 * 2018-11-22     Jesven       add smp member to struct rt_thread
 *                             add struct rt_cpu
 *                             add smp relevant macros
B
Bernard Xiong 已提交
32
 * 2019-01-27     Bernard      change version number to v4.0.1
B
Bernard Xiong 已提交
33
 * 2019-05-17     Bernard      change version number to v4.0.2
B
Bernard Xiong 已提交
34
 * 2019-12-20     Bernard      change version number to v4.0.3
35
 * 2020-08-10     Meco Man     add macro for struct rt_device_ops
mysterywolf's avatar
mysterywolf 已提交
36
 * 2020-10-23     Meco Man     define maximum value of ipc type
37
 * 2021-03-19     Meco Man     add security devices
armink_ztl's avatar
armink_ztl 已提交
38
 * 2021-05-10     armink       change version number to v4.0.4
mysterywolf's avatar
mysterywolf 已提交
39
 * 2021-11-19     Meco Man     change version number to v4.1.0
mysterywolf's avatar
mysterywolf 已提交
40
 * 2021-12-21     Meco Man     re-implement RT_UNUSED
G
Gabriel Wang 已提交
41
 * 2022-01-01     Gabriel      improve hooking method
42
 * 2022-01-07     Gabriel      move some __on_rt_xxxxx_hook to dedicated c source files
mysterywolf's avatar
mysterywolf 已提交
43
 * 2022-01-12     Meco Man     remove RT_THREAD_BLOCK
mysterywolf's avatar
mysterywolf 已提交
44
 * 2022-04-20     Meco Man     change version number to v4.1.1
xiaozhao86's avatar
xiaozhao86 已提交
45
 * 2022-04-21     THEWON       add macro RT_VERSION_CHECK
46
 * 2022-06-29     Meco Man     add RT_USING_LIBC and standard libc headers
47
 * 2022-08-16     Meco Man     change version number to v5.0.0
48
 * 2022-09-12     Meco Man     define rt_ssize_t
49
 */
B
Bernard Xiong 已提交
50

51 52 53
#ifndef __RT_DEF_H__
#define __RT_DEF_H__

54
#include <rtconfig.h>
55 56 57 58
#ifdef RT_USING_LIBC
#include <stdint.h>
#include <stddef.h>
#include <stdarg.h>
59
#include <sys/types.h>
60
#endif /* RT_USING_LIBC */
61

62 63 64 65 66 67 68 69
#ifdef __cplusplus
extern "C" {
#endif

/**
 * @addtogroup BasicDef
 */

O
Owen 已提交
70
/**@{*/
71 72

/* RT-Thread version information */
73 74 75
#define RT_VERSION_MAJOR                5               /**< Major version number (X.x.x) */
#define RT_VERSION_MINOR                0               /**< Minor version number (x.X.x) */
#define RT_VERSION_PATCH                0               /**< Patch version number (x.x.X) */
76 77 78

/* e.g. #if (RTTHREAD_VERSION >= RT_VERSION_CHECK(4, 1, 0) */
#define RT_VERSION_CHECK(major, minor, revise)          ((major * 10000) + (minor * 100) + revise)
79 80

/* RT-Thread version */
81
#define RTTHREAD_VERSION                RT_VERSION_CHECK(RT_VERSION_MAJOR, RT_VERSION_MINOR, RT_VERSION_PATCH)
xiaozhao86's avatar
xiaozhao86 已提交
82

83 84

/* RT-Thread basic data type definitions */
85 86 87 88
typedef int                             rt_bool_t;      /**< boolean type */
typedef signed long                     rt_base_t;      /**< Nbit CPU related date type */
typedef unsigned long                   rt_ubase_t;     /**< Nbit unsigned CPU related data type */

89
#ifndef RT_USING_ARCH_DATA_TYPE
90 91 92 93 94 95 96 97 98 99
#ifdef RT_USING_LIBC
typedef int8_t                          rt_int8_t;      /**<  8bit integer type */
typedef int16_t                         rt_int16_t;     /**< 16bit integer type */
typedef int32_t                         rt_int32_t;     /**< 32bit integer type */
typedef uint8_t                         rt_uint8_t;     /**<  8bit unsigned integer type */
typedef uint16_t                        rt_uint16_t;    /**< 16bit unsigned integer type */
typedef uint32_t                        rt_uint32_t;    /**< 32bit unsigned integer type */
typedef int64_t                         rt_int64_t;     /**< 64bit integer type */
typedef uint64_t                        rt_uint64_t;    /**< 64bit unsigned integer type */
typedef size_t                          rt_size_t;      /**< Type for size number */
100
typedef ssize_t                         rt_ssize_t;     /**< Used for a count of bytes or an error indication */
101
#else
102 103
typedef signed   char                   rt_int8_t;      /**<  8bit integer type */
typedef signed   short                  rt_int16_t;     /**< 16bit integer type */
B
Bernard Xiong 已提交
104
typedef signed   int                    rt_int32_t;     /**< 32bit integer type */
105 106
typedef unsigned char                   rt_uint8_t;     /**<  8bit unsigned integer type */
typedef unsigned short                  rt_uint16_t;    /**< 16bit unsigned integer type */
B
Bernard Xiong 已提交
107 108 109 110 111 112 113
typedef unsigned int                    rt_uint32_t;    /**< 32bit unsigned integer type */
#ifdef ARCH_CPU_64BIT
typedef signed long                     rt_int64_t;     /**< 64bit integer type */
typedef unsigned long                   rt_uint64_t;    /**< 64bit unsigned integer type */
#else
typedef signed long long                rt_int64_t;     /**< 64bit integer type */
typedef unsigned long long              rt_uint64_t;    /**< 64bit unsigned integer type */
mysterywolf's avatar
mysterywolf 已提交
114
#endif /* ARCH_CPU_64BIT */
115 116
typedef rt_ubase_t                      rt_size_t;      /**< Type for size number */
typedef rt_base_t                       rt_ssize_t;     /**< Used for a count of bytes or an error indication */
117
#endif /* RT_USING_LIBC */
mysterywolf's avatar
mysterywolf 已提交
118
#endif /* RT_USING_ARCH_DATA_TYPE */
B
Bernard Xiong 已提交
119

120 121 122 123 124 125 126 127 128 129 130
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_dev_t;       /**< Type for device */
typedef rt_base_t                       rt_off_t;       /**< Type for offset */

/* boolean type definitions */
#define RT_TRUE                         1               /**< boolean true  */
#define RT_FALSE                        0               /**< boolean fails */

131
/* null pointer definition */
132
#define RT_NULL                         0
133

O
Owen 已提交
134
/**@}*/
135 136

/* maximum value of base type */
137 138 139 140 141
#ifdef RT_USING_LIBC
#define RT_UINT8_MAX                    UINT8_MAX       /**< Maximum number of UINT8 */
#define RT_UINT16_MAX                   UINT16_MAX      /**< Maximum number of UINT16 */
#define RT_UINT32_MAX                   UINT32_MAX      /**< Maximum number of UINT32 */
#else
142 143 144
#define RT_UINT8_MAX                    0xff            /**< Maximum number of UINT8 */
#define RT_UINT16_MAX                   0xffff          /**< Maximum number of UINT16 */
#define RT_UINT32_MAX                   0xffffffff      /**< Maximum number of UINT32 */
145 146
#endif /* RT_USING_LIBC */

147
#define RT_TICK_MAX                     RT_UINT32_MAX   /**< Maximum number of tick */
148

mysterywolf's avatar
mysterywolf 已提交
149
/* maximum value of ipc type */
150 151 152 153 154
#define RT_SEM_VALUE_MAX                RT_UINT16_MAX   /**< Maximum number of semaphore .value */
#define RT_MUTEX_VALUE_MAX              RT_UINT16_MAX   /**< Maximum number of mutex .value */
#define RT_MUTEX_HOLD_MAX               RT_UINT8_MAX    /**< Maximum number of mutex .hold */
#define RT_MB_ENTRY_MAX                 RT_UINT16_MAX   /**< Maximum number of mailbox .entry */
#define RT_MQ_ENTRY_MAX                 RT_UINT16_MAX   /**< Maximum number of message queue .entry */
mysterywolf's avatar
mysterywolf 已提交
155

mysterywolf's avatar
mysterywolf 已提交
156 157
#define RT_UNUSED(x)                   ((void)x)

158
/* Compiler Related Definitions */
159
#if defined(__ARMCC_VERSION)           /* ARM Compiler */
160 161 162 163 164 165 166 167 168 169 170
#define RT_SECTION(x)               __attribute__((section(x)))
#define RT_USED                     __attribute__((used))
#define ALIGN(n)                    __attribute__((aligned(n)))
#define RT_WEAK                     __attribute__((weak))
#define rt_inline                   static __inline
/* module compiling */
#ifdef RT_USING_MODULE
#define RTT_API                     __declspec(dllimport)
#else
#define RTT_API                     __declspec(dllexport)
#endif /* RT_USING_MODULE */
171
#elif defined (__IAR_SYSTEMS_ICC__)     /* for IAR Compiler */
172 173 174 175 176 177 178
#define RT_SECTION(x)               @ x
#define RT_USED                     __root
#define PRAGMA(x)                   _Pragma(#x)
#define ALIGN(n)                    PRAGMA(data_alignment=n)
#define RT_WEAK                     __weak
#define rt_inline                   static inline
#define RTT_API
179
#elif defined (__GNUC__)                /* GNU GCC Compiler */
180 181 182 183 184 185 186 187 188 189 190 191 192 193
#ifndef RT_USING_LIBC
/* the version of GNU GCC must be greater than 4.x */
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)
#endif /* RT_USING_LIBC */
#define RT_SECTION(x)               __attribute__((section(x)))
#define RT_USED                     __attribute__((used))
#define ALIGN(n)                    __attribute__((aligned(n)))
#define RT_WEAK                     __attribute__((weak))
#define rt_inline                   static __inline
#define RTT_API
194
#elif defined (__ADSPBLACKFIN__)        /* for VisualDSP++ Compiler */
195 196 197 198 199 200
#define RT_SECTION(x)               __attribute__((section(x)))
#define RT_USED                     __attribute__((used))
#define ALIGN(n)                    __attribute__((aligned(n)))
#define RT_WEAK                     __attribute__((weak))
#define rt_inline                   static inline
#define RTT_API
201
#elif defined (_MSC_VER)
202 203 204 205 206 207
#define RT_SECTION(x)
#define RT_USED
#define ALIGN(n)                    __declspec(align(n))
#define RT_WEAK
#define rt_inline                   static __inline
#define RTT_API
208
#elif defined (__TI_COMPILER_VERSION__)
209 210 211
/* The way that TI compiler set section is different from other(at least
    * GCC and MDK) compilers. See ARM Optimizing C/C++ Compiler 5.9.3 for more
    * details. */
wannomore's avatar
wannomore 已提交
212 213
#define RT_SECTION(x)               __attribute__((section(x)))
#define RT_USED                     __attribute__((used))
214
#define PRAGMA(x)                   _Pragma(#x)
wannomore's avatar
wannomore 已提交
215 216
#define ALIGN(n)                    __attribute__((aligned(n)))
#define RT_WEAK                     __attribute__((weak))
217 218
#define rt_inline                   static inline
#define RTT_API
219
#elif defined (__TASKING__)
220 221 222 223 224 225 226
#define RT_SECTION(x)               __attribute__((section(x)))
#define RT_USED                     __attribute__((used, protect))
#define PRAGMA(x)                   _Pragma(#x)
#define ALIGN(n)                    __attribute__((__align(n)))
#define RT_WEAK                     __attribute__((weak))
#define rt_inline                   static inline
#define RTT_API
227 228
#else
    #error not supported tool chain
229
#endif /* __ARMCC_VERSION */
230

231 232 233
/* initialization export */
#ifdef RT_USING_COMPONENTS_INIT
typedef int (*init_fn_t)(void);
mysterywolf's avatar
mysterywolf 已提交
234
#ifdef _MSC_VER
235 236 237 238 239 240 241 242 243
#pragma section("rti_fn$f",read)
    #if RT_DEBUG_INIT
        struct rt_init_desc
        {
            const char* level;
            const init_fn_t fn;
            const char* fn_name;
        };
        #define INIT_EXPORT(fn, level)                                  \
244
                                const char __rti_level_##fn[] = ".rti_fn." level;       \
245 246 247 248 249 250 251 252 253 254 255
                                const char __rti_##fn##_name[] = #fn;                   \
                                __declspec(allocate("rti_fn$f"))                        \
                                RT_USED const struct rt_init_desc __rt_init_msc_##fn =  \
                                {__rti_level_##fn, fn, __rti_##fn##_name};
    #else
        struct rt_init_desc
        {
            const char* level;
            const init_fn_t fn;
        };
        #define INIT_EXPORT(fn, level)                                  \
256
                                const char __rti_level_##fn[] = ".rti_fn." level;       \
257 258 259 260
                                __declspec(allocate("rti_fn$f"))                        \
                                RT_USED const struct rt_init_desc __rt_init_msc_##fn =  \
                                {__rti_level_##fn, fn };
    #endif
261
#else
262 263 264 265 266 267
    #if RT_DEBUG_INIT
        struct rt_init_desc
        {
            const char* fn_name;
            const init_fn_t fn;
        };
268 269
        #define INIT_EXPORT(fn, level)                                                       \
            const char __rti_##fn##_name[] = #fn;                                            \
270
            RT_USED const struct rt_init_desc __rt_init_desc_##fn RT_SECTION(".rti_fn." level) = \
271 272
            { __rti_##fn##_name, fn};
    #else
273
        #define INIT_EXPORT(fn, level)                                                       \
274
            RT_USED const init_fn_t __rt_init_##fn RT_SECTION(".rti_fn." level) = fn
275
    #endif
276
#endif
277
#else
B
Bernard Xiong 已提交
278
#define INIT_EXPORT(fn, level)
279 280 281
#endif

/* board init routines will be called in board_init() function */
282
#define INIT_BOARD_EXPORT(fn)           INIT_EXPORT(fn, "1")
283 284

/* pre/device/component/env/app init routines will be called in init_thread */
285
/* components pre-initialization (pure software initialization) */
B
bernard 已提交
286
#define INIT_PREV_EXPORT(fn)            INIT_EXPORT(fn, "2")
287 288
/* device initialization */
#define INIT_DEVICE_EXPORT(fn)          INIT_EXPORT(fn, "3")
B
bernard 已提交
289
/* components initialization (dfs, lwip, ...) */
290
#define INIT_COMPONENT_EXPORT(fn)       INIT_EXPORT(fn, "4")
B
bernard 已提交
291
/* environment initialization (mount disk, ...) */
292
#define INIT_ENV_EXPORT(fn)             INIT_EXPORT(fn, "5")
293
/* application initialization (rtgui application etc ...) */
B
bernard 已提交
294
#define INIT_APP_EXPORT(fn)             INIT_EXPORT(fn, "6")
295

296 297
#if !defined(RT_USING_FINSH)
/* define these to empty, even if not include finsh.h file */
298 299 300 301
#define FINSH_FUNCTION_EXPORT(name, desc)
#define FINSH_FUNCTION_EXPORT_ALIAS(name, alias, desc)

#define MSH_CMD_EXPORT(command, desc)
A
ardafu 已提交
302
#define MSH_CMD_EXPORT_ALIAS(command, alias, desc)
303 304
#elif !defined(FINSH_USING_SYMTAB)
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc)
305 306
#endif

307 308 309 310 311 312 313 314
/* event length */
#define RT_EVENT_LENGTH                 32

/* memory management option */
#define RT_MM_PAGE_SIZE                 4096
#define RT_MM_PAGE_MASK                 (RT_MM_PAGE_SIZE - 1)
#define RT_MM_PAGE_BITS                 12

B
Bernard Xiong 已提交
315 316
/* kernel malloc definitions */
#ifndef RT_KERNEL_MALLOC
317
#define RT_KERNEL_MALLOC(sz)            rt_malloc(sz)
B
Bernard Xiong 已提交
318 319 320
#endif

#ifndef RT_KERNEL_FREE
321
#define RT_KERNEL_FREE(ptr)             rt_free(ptr)
B
Bernard Xiong 已提交
322 323
#endif

B
Bernard Xiong 已提交
324
#ifndef RT_KERNEL_REALLOC
325
#define RT_KERNEL_REALLOC(ptr, size)    rt_realloc(ptr, size)
B
Bernard Xiong 已提交
326 327
#endif

328 329 330 331
/**
 * @addtogroup Error
 */

O
Owen 已提交
332
/**@{*/
333 334 335 336 337 338 339 340 341 342 343

/* RT-Thread error code definitions */
#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 */
B
bernard 已提交
344 345
#define RT_EINTR                        9               /**< Interrupted system call */
#define RT_EINVAL                       10              /**< Invalid argument */
346

O
Owen 已提交
347
/**@}*/
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362

/**
 * @ingroup BasicDef
 *
 * @def RT_ALIGN(size, align)
 * Return the most contiguous size aligned at specified width. RT_ALIGN(13, 4)
 * would return 16.
 */
#define RT_ALIGN(size, align)           (((size) + (align) - 1) & ~((align) - 1))

/**
 * @ingroup BasicDef
 *
 * @def RT_ALIGN_DOWN(size, align)
 * Return the down number of aligned at specified width. RT_ALIGN_DOWN(13, 4)
B
Bernard Xiong 已提交
363
 * would return 12.
364 365 366
 */
#define RT_ALIGN_DOWN(size, align)      ((size) & ~((align) - 1))

B
bernard 已提交
367 368 369
/**
 * Double List structure
 */
370 371 372 373 374 375 376
struct rt_list_node
{
    struct rt_list_node *next;                          /**< point to next node. */
    struct rt_list_node *prev;                          /**< point to prev node. */
};
typedef struct rt_list_node rt_list_t;                  /**< Type for lists. */

B
bernard 已提交
377 378 379 380 381 382 383 384 385
/**
 * Single List structure
 */
struct rt_slist_node
{
    struct rt_slist_node *next;                         /**< point to next node. */
};
typedef struct rt_slist_node rt_slist_t;                /**< Type for single list. */

386 387 388 389
/**
 * @addtogroup KernelObject
 */

O
Owen 已提交
390
/**@{*/
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407

/*
 * kernel object macros
 */
#define RT_OBJECT_FLAG_MODULE           0x80            /**< is module object. */

/**
 * Base structure of Kernel object
 */
struct rt_object
{
    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 */

#ifdef RT_USING_MODULE
    void      *module_id;                               /**< id of application module */
mysterywolf's avatar
mysterywolf 已提交
408
#endif /* RT_USING_MODULE */
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
    rt_list_t  list;                                    /**< list node of kernel object */
};
typedef struct rt_object *rt_object_t;                  /**< Type for kernel objects. */

/**
 *  The object type can be one of the follows with specific
 *  macros enabled:
 *  - Thread
 *  - Semaphore
 *  - Mutex
 *  - Event
 *  - MailBox
 *  - MessageQueue
 *  - MemHeap
 *  - MemPool
 *  - Device
 *  - Timer
 *  - Module
 *  - Unknown
 *  - Static
 */
enum rt_object_class_type
{
432 433 434 435 436 437 438 439 440 441 442 443
    RT_Object_Class_Null          = 0x00,      /**< The object is not used. */
    RT_Object_Class_Thread        = 0x01,      /**< The object is a thread. */
    RT_Object_Class_Semaphore     = 0x02,      /**< The object is a semaphore. */
    RT_Object_Class_Mutex         = 0x03,      /**< The object is a mutex. */
    RT_Object_Class_Event         = 0x04,      /**< The object is a event. */
    RT_Object_Class_MailBox       = 0x05,      /**< The object is a mail box. */
    RT_Object_Class_MessageQueue  = 0x06,      /**< The object is a message queue. */
    RT_Object_Class_MemHeap       = 0x07,      /**< The object is a memory heap. */
    RT_Object_Class_MemPool       = 0x08,      /**< The object is a memory pool. */
    RT_Object_Class_Device        = 0x09,      /**< The object is a device. */
    RT_Object_Class_Timer         = 0x0a,      /**< The object is a timer. */
    RT_Object_Class_Module        = 0x0b,      /**< The object is a module. */
444 445
    RT_Object_Class_Memory        = 0x0c,      /**< The object is a memory. */
    RT_Object_Class_Unknown       = 0x0e,      /**< The object is unknown. */
446
    RT_Object_Class_Static        = 0x80       /**< The object is a static object. */
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
};

/**
 * The information of the kernel object
 */
struct rt_object_information
{
    enum rt_object_class_type type;                     /**< object class type */
    rt_list_t                 object_list;              /**< object list */
    rt_size_t                 object_size;              /**< object size */
};

/**
 * The hook function call macro
 */
G
Gabriel Wang 已提交
462 463 464
#ifndef RT_USING_HOOK
    #define __ON_HOOK_ARGS(__hook, argv)
    #define RT_OBJECT_HOOK_CALL(func, argv)
465
#else
G
Gabriel Wang 已提交
466 467 468 469 470
    #define RT_OBJECT_HOOK_CALL(func, argv)         __on_##func argv
    #ifdef RT_HOOK_USING_FUNC_PTR
        #define __ON_HOOK_ARGS(__hook, argv)        do {if ((__hook) != RT_NULL) __hook argv; } while (0)
    #else
        #define __ON_HOOK_ARGS(__hook, argv)
mysterywolf's avatar
mysterywolf 已提交
471 472
    #endif /* RT_HOOK_USING_FUNC_PTR */
#endif /* RT_USING_HOOK */
G
Gabriel Wang 已提交
473 474 475 476 477 478 479 480 481 482

#ifndef __on_rt_interrupt_switch_hook
    #define __on_rt_interrupt_switch_hook()         __ON_HOOK_ARGS(rt_interrupt_switch_hook, ())
#endif
#ifndef __on_rt_malloc_hook
    #define __on_rt_malloc_hook(addr, size)         __ON_HOOK_ARGS(rt_malloc_hook, (addr, size))
#endif
#ifndef __on_rt_free_hook
    #define __on_rt_free_hook(rmem)                 __ON_HOOK_ARGS(rt_free_hook, (rmem))
#endif
483

484

O
Owen 已提交
485
/**@}*/
486 487 488 489 490

/**
 * @addtogroup Clock
 */

O
Owen 已提交
491
/**@{*/
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507

/**
 * clock & timer macros
 */
#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 */

#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. */

#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 */
508
#define RT_TIMER_CTRL_GET_STATE         0x4             /**< get timer run state active or deactive*/
X
xiangxistu 已提交
509
#define RT_TIMER_CTRL_GET_REMAIN_TIME   0x5             /**< get the remaining hang time */
510

511 512 513 514 515 516
#ifndef RT_TIMER_SKIP_LIST_LEVEL
#define RT_TIMER_SKIP_LIST_LEVEL          1
#endif

/* 1 or 3 */
#ifndef RT_TIMER_SKIP_LIST_MASK
L
lpy 已提交
517
#define RT_TIMER_SKIP_LIST_MASK         0x3             /**< Timer skips the list mask */
518 519
#endif

520 521 522 523 524 525 526
/**
 * timer structure
 */
struct rt_timer
{
    struct rt_object parent;                            /**< inherit from rt_object */

527
    rt_list_t        row[RT_TIMER_SKIP_LIST_LEVEL];
528 529 530 531 532 533 534 535 536

    void (*timeout_func)(void *parameter);              /**< timeout function */
    void            *parameter;                         /**< timeout function's parameter */

    rt_tick_t        init_tick;                         /**< timer timeout tick */
    rt_tick_t        timeout_tick;                      /**< timeout tick */
};
typedef struct rt_timer *rt_timer_t;

O
Owen 已提交
537
/**@}*/
538

B
bernard 已提交
539 540 541 542
/**
 * @addtogroup Signal
 */
#ifdef RT_USING_SIGNALS
543
#include <sys/signal.h>
B
bernard 已提交
544 545
typedef unsigned long rt_sigset_t;
typedef void (*rt_sighandler_t)(int signo);
546
typedef siginfo_t rt_siginfo_t;
B
bernard 已提交
547 548

#define RT_SIG_MAX          32
mysterywolf's avatar
mysterywolf 已提交
549
#endif /* RT_USING_SIGNALS */
O
Owen 已提交
550
/**@}*/
B
bernard 已提交
551

552 553 554 555
/**
 * @addtogroup Thread
 */

O
Owen 已提交
556
/**@{*/
557 558 559 560 561 562 563 564 565 566 567 568 569

/*
 * Thread
 */

/*
 * thread state definitions
 */
#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_CLOSE                 0x04                /**< Closed status */
570 571 572 573
#define RT_THREAD_STAT_MASK             0x07

#define RT_THREAD_STAT_YIELD            0x08                /**< indicate whether remaining_tick has been reloaded since last schedule */
#define RT_THREAD_STAT_YIELD_MASK       RT_THREAD_STAT_YIELD
B
bernard 已提交
574

575
#define RT_THREAD_STAT_SIGNAL           0x10                /**< task hold signals */
B
bernard 已提交
576
#define RT_THREAD_STAT_SIGNAL_READY     (RT_THREAD_STAT_SIGNAL | RT_THREAD_READY)
577 578
#define RT_THREAD_STAT_SIGNAL_WAIT      0x20                /**< task is waiting for signals */
#define RT_THREAD_STAT_SIGNAL_PENDING   0x40                /**< signals is held and it has not been procressed */
B
bernard 已提交
579
#define RT_THREAD_STAT_SIGNAL_MASK      0xf0
B
bernard 已提交
580

581 582 583 584 585 586 587
/**
 * thread control command definitions
 */
#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. */
588
#define RT_THREAD_CTRL_BIND_CPU         0x04                /**< Set thread bind cpu. */
S
shaojinchun 已提交
589 590 591 592 593 594

#ifdef RT_USING_SMP

#define RT_CPU_DETACHED                 RT_CPUS_NR          /**< The thread not running on cpu. */
#define RT_CPU_MASK                     ((1 << RT_CPUS_NR) - 1) /**< All CPUs mask bit. */

S
shaojinchun 已提交
595 596
#ifndef RT_SCHEDULE_IPI
#define RT_SCHEDULE_IPI                 0
mysterywolf's avatar
mysterywolf 已提交
597
#endif /* RT_SCHEDULE_IPI */
S
shaojinchun 已提交
598

599 600
#ifndef RT_STOP_IPI
#define RT_STOP_IPI                     1
mysterywolf's avatar
mysterywolf 已提交
601
#endif /* RT_STOP_IPI */
602

S
shaojinchun 已提交
603 604
/**
 * CPUs definitions
B
Bernard Xiong 已提交
605
 *
S
shaojinchun 已提交
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
 */
struct rt_cpu
{
    struct rt_thread *current_thread;

    rt_uint16_t irq_nest;
    rt_uint8_t  irq_switch_flag;

    rt_uint8_t current_priority;
    rt_list_t priority_table[RT_THREAD_PRIORITY_MAX];
#if RT_THREAD_PRIORITY_MAX > 32
    rt_uint32_t priority_group;
    rt_uint8_t ready_table[32];
#else
    rt_uint32_t priority_group;
mysterywolf's avatar
mysterywolf 已提交
621
#endif /* RT_THREAD_PRIORITY_MAX > 32 */
S
shaojinchun 已提交
622 623 624 625

    rt_tick_t tick;
};

mysterywolf's avatar
mysterywolf 已提交
626
#endif /* RT_USING_SMP */
627 628 629 630 631 632 633 634 635 636

/**
 * Thread structure
 */
struct rt_thread
{
    /* rt object */
    char        name[RT_NAME_MAX];                      /**< the name of thread */
    rt_uint8_t  type;                                   /**< type of object */
    rt_uint8_t  flags;                                  /**< thread's flags */
B
Bernard Xiong 已提交
637

638 639
#ifdef RT_USING_MODULE
    void       *module_id;                              /**< id of application module */
mysterywolf's avatar
mysterywolf 已提交
640
#endif /* RT_USING_MODULE */
641 642 643 644 645 646 647 648 649

    rt_list_t   list;                                   /**< the object list */
    rt_list_t   tlist;                                  /**< the thread list */

    /* stack point and entry */
    void       *sp;                                     /**< stack point */
    void       *entry;                                  /**< entry */
    void       *parameter;                              /**< parameter */
    void       *stack_addr;                             /**< stack address */
W
weety 已提交
650
    rt_uint32_t stack_size;                             /**< stack size */
651 652 653 654

    /* error code */
    rt_err_t    error;                                  /**< error code */

B
bernard 已提交
655
    rt_uint8_t  stat;                                   /**< thread status */
656

S
shaojinchun 已提交
657 658
#ifdef RT_USING_SMP
    rt_uint8_t  bind_cpu;                               /**< thread is bind to cpu */
whj123999's avatar
whj123999 已提交
659
    rt_uint8_t  oncpu;                                  /**< process on cpu */
S
shaojinchun 已提交
660 661 662

    rt_uint16_t scheduler_lock_nest;                    /**< scheduler lock count */
    rt_uint16_t cpus_lock_nest;                         /**< cpus lock count */
S
shaojinchun 已提交
663
    rt_uint16_t critical_lock_nest;                     /**< critical lock count */
S
shaojinchun 已提交
664 665
#endif /*RT_USING_SMP*/

666 667
    /* priority */
    rt_uint8_t  current_priority;                       /**< current priority */
B
Bernard Xiong 已提交
668
    rt_uint8_t  init_priority;                          /**< initialized priority */
669 670 671
#if RT_THREAD_PRIORITY_MAX > 32
    rt_uint8_t  number;
    rt_uint8_t  high_mask;
mysterywolf's avatar
mysterywolf 已提交
672
#endif /* RT_THREAD_PRIORITY_MAX > 32 */
673 674
    rt_uint32_t number_mask;

B
Bernard Xiong 已提交
675 676 677 678 679 680
#ifdef RT_USING_MUTEX
    /* object for IPC */
    rt_list_t taken_object_list;
    rt_object_t pending_object;
#endif

mysterywolf's avatar
mysterywolf 已提交
681
#ifdef RT_USING_EVENT
682 683 684
    /* thread event */
    rt_uint32_t event_set;
    rt_uint8_t  event_info;
mysterywolf's avatar
mysterywolf 已提交
685
#endif /* RT_USING_EVENT */
686

mysterywolf's avatar
mysterywolf 已提交
687
#ifdef RT_USING_SIGNALS
B
bernard 已提交
688 689
    rt_sigset_t     sig_pending;                        /**< the pending signals */
    rt_sigset_t     sig_mask;                           /**< the mask bits of signal */
B
bernard 已提交
690

S
shaojinchun 已提交
691
#ifndef RT_USING_SMP
B
bernard 已提交
692
    void            *sig_ret;                           /**< the return stack pointer from signal */
mysterywolf's avatar
mysterywolf 已提交
693
#endif /* RT_USING_SMP */
B
bernard 已提交
694 695
    rt_sighandler_t *sig_vectors;                       /**< vectors of signal handler */
    void            *si_list;                           /**< the signal infor list */
mysterywolf's avatar
mysterywolf 已提交
696
#endif /* RT_USING_SIGNALS */
B
bernard 已提交
697

698 699 700
    rt_ubase_t  init_tick;                              /**< thread's initialized tick */
    rt_ubase_t  remaining_tick;                         /**< remaining tick */

F
fenghuijie 已提交
701
#ifdef RT_USING_CPU_USAGE
702
    rt_uint64_t  duration_tick;                         /**< cpu usage tick */
mysterywolf's avatar
mysterywolf 已提交
703
#endif /* RT_USING_CPU_USAGE */
F
fenghuijie 已提交
704

705 706 707 708
#ifdef RT_USING_PTHREADS
    void  *pthread_data;                                /**< the handle of pthread data, adapt 32/64bit */
#endif /* RT_USING_PTHREADS */

709 710 711 712
    struct rt_timer thread_timer;                       /**< built-in thread timer */

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

713
    /* light weight process if present */
H
heyuanjie 已提交
714
#ifdef RT_USING_LWP
715
    void        *lwp;
mysterywolf's avatar
mysterywolf 已提交
716
#endif /* RT_USING_LWP */
717

718
    rt_ubase_t user_data;                             /**< private user data beyond this thread */
719 720 721
};
typedef struct rt_thread *rt_thread_t;

O
Owen 已提交
722
/**@}*/
723 724 725 726 727

/**
 * @addtogroup IPC
 */

O
Owen 已提交
728
/**@{*/
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759

/**
 * IPC flags and control command definitions
 */
#define RT_IPC_FLAG_FIFO                0x00            /**< FIFOed IPC. @ref IPC. */
#define RT_IPC_FLAG_PRIO                0x01            /**< PRIOed IPC. @ref IPC. */

#define RT_IPC_CMD_UNKNOWN              0x00            /**< unknown IPC command */
#define RT_IPC_CMD_RESET                0x01            /**< reset IPC object */

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

/**
 * Base structure of IPC object
 */
struct rt_ipc_object
{
    struct rt_object parent;                            /**< inherit from rt_object */

    rt_list_t        suspend_thread;                    /**< threads pended on this resource */
};

#ifdef RT_USING_SEMAPHORE
/**
 * Semaphore structure
 */
struct rt_semaphore
{
    struct rt_ipc_object parent;                        /**< inherit from ipc_object */

760 761
    rt_uint16_t          value;                         /**< value of semaphore. */
    rt_uint16_t          reserved;                      /**< reserved field */
762 763
};
typedef struct rt_semaphore *rt_sem_t;
mysterywolf's avatar
mysterywolf 已提交
764
#endif /* RT_USING_SEMAPHORE */
765 766 767 768 769 770 771 772 773

#ifdef RT_USING_MUTEX
/**
 * Mutual exclusion (mutex) structure
 */
struct rt_mutex
{
    struct rt_ipc_object parent;                        /**< inherit from ipc_object */

774
    rt_uint8_t           ceiling_priority;              /**< the priority ceiling of mutexe */
B
Bernard Xiong 已提交
775
    rt_uint8_t           priority;                      /**< the maximal priority for pending thread */
776
    rt_uint8_t           hold;                          /**< numbers of thread hold the mutex */
mysterywolf's avatar
mysterywolf 已提交
777
    rt_uint8_t           reserved;                      /**< reserved field */
778 779

    struct rt_thread    *owner;                         /**< current owner of mutex */
780
    rt_list_t            taken_list;                    /**< the object list taken by thread */
781 782
};
typedef struct rt_mutex *rt_mutex_t;
mysterywolf's avatar
mysterywolf 已提交
783
#endif /* RT_USING_MUTEX */
784 785 786

#ifdef RT_USING_EVENT
/**
787
 * flag definitions in event
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802
 */
#define RT_EVENT_FLAG_AND               0x01            /**< logic and */
#define RT_EVENT_FLAG_OR                0x02            /**< logic or */
#define RT_EVENT_FLAG_CLEAR             0x04            /**< clear flag */

/*
 * event structure
 */
struct rt_event
{
    struct rt_ipc_object parent;                        /**< inherit from ipc_object */

    rt_uint32_t          set;                           /**< event set */
};
typedef struct rt_event *rt_event_t;
mysterywolf's avatar
mysterywolf 已提交
803
#endif /* RT_USING_EVENT */
804 805 806 807 808 809 810 811 812

#ifdef RT_USING_MAILBOX
/**
 * mailbox structure
 */
struct rt_mailbox
{
    struct rt_ipc_object parent;                        /**< inherit from ipc_object */

B
Bernard Xiong 已提交
813
    rt_ubase_t          *msg_pool;                      /**< start address of message buffer */
814 815 816 817 818 819 820 821 822 823

    rt_uint16_t          size;                          /**< size of message pool */

    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 */

    rt_list_t            suspend_sender_thread;         /**< sender thread suspended on this mailbox */
};
typedef struct rt_mailbox *rt_mailbox_t;
mysterywolf's avatar
mysterywolf 已提交
824
#endif /* RT_USING_MAILBOX */
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843

#ifdef RT_USING_MESSAGEQUEUE
/**
 * message queue structure
 */
struct rt_messagequeue
{
    struct rt_ipc_object parent;                        /**< inherit from ipc_object */

    void                *msg_pool;                      /**< start address of message queue */

    rt_uint16_t          msg_size;                      /**< message size of each message */
    rt_uint16_t          max_msgs;                      /**< max number of messages */

    rt_uint16_t          entry;                         /**< index of messages in the queue */

    void                *msg_queue_head;                /**< list head */
    void                *msg_queue_tail;                /**< list tail */
    void                *msg_queue_free;                /**< pointer indicated the free node of queue */
844 845

    rt_list_t            suspend_sender_thread;         /**< sender thread suspended on this message queue */
846 847
};
typedef struct rt_messagequeue *rt_mq_t;
mysterywolf's avatar
mysterywolf 已提交
848
#endif /* RT_USING_MESSAGEQUEUE */
849

O
Owen 已提交
850
/**@}*/
851 852 853 854 855

/**
 * @addtogroup MM
 */

O
Owen 已提交
856
/**@{*/
857

858 859 860 861 862 863 864 865 866 867 868 869 870 871
#ifdef RT_USING_HEAP
/*
 * memory structure
 */
struct rt_memory
{
    struct rt_object        parent;                 /**< inherit from rt_object */
    const char *            algorithm;              /**< Memory management algorithm name */
    rt_ubase_t              address;                /**< memory start address */
    rt_size_t               total;                  /**< memory size */
    rt_size_t               used;                   /**< size used */
    rt_size_t               max;                    /**< maximum usage */
};
typedef struct rt_memory *rt_mem_t;
mysterywolf's avatar
mysterywolf 已提交
872
#endif /* RT_USING_HEAP */
873

874 875 876 877 878
/*
 * memory management
 * heap & partition
 */

879 880
#ifdef RT_USING_SMALL_MEM
typedef rt_mem_t rt_smem_t;
mysterywolf's avatar
mysterywolf 已提交
881
#endif /* RT_USING_SMALL_MEM */
882 883 884

#ifdef RT_USING_SLAB
typedef rt_mem_t rt_slab_t;
mysterywolf's avatar
mysterywolf 已提交
885
#endif /* RT_USING_SLAB */
886

887 888 889 890 891 892 893
#ifdef RT_USING_MEMHEAP
/**
 * memory item on the heap
 */
struct rt_memheap_item
{
    rt_uint32_t             magic;                      /**< magic number for memheap */
B
Bernard Xiong 已提交
894 895
    struct rt_memheap      *pool_ptr;                   /**< point of pool */

896 897 898 899 900
    struct rt_memheap_item *next;                       /**< next memheap item */
    struct rt_memheap_item *prev;                       /**< prev memheap item */

    struct rt_memheap_item *next_free;                  /**< next free memheap item */
    struct rt_memheap_item *prev_free;                  /**< prev free memheap item */
C
cliff-cmc 已提交
901 902
#ifdef RT_USING_MEMTRACE
    rt_uint8_t              owner_thread_name[4];       /**< owner thread name */
mysterywolf's avatar
mysterywolf 已提交
903
#endif /* RT_USING_MEMTRACE */
904 905 906 907 908 909 910 911 912 913 914
};

/**
 * Base structure of memory heap object
 */
struct rt_memheap
{
    struct rt_object        parent;                     /**< inherit from rt_object */

    void                   *start_addr;                 /**< pool start address and size */

915 916 917
    rt_size_t               pool_size;                  /**< pool size */
    rt_size_t               available_size;             /**< available size */
    rt_size_t               max_used_size;              /**< maximum allocated size */
918 919 920 921 922 923 924

    struct rt_memheap_item *block_list;                 /**< used block list */

    struct rt_memheap_item *free_list;                  /**< free block list */
    struct rt_memheap_item  free_header;                /**< free block list header */

    struct rt_semaphore     lock;                       /**< semaphore lock */
925
    rt_bool_t               locked;                     /**< External lock mark */
926
};
mysterywolf's avatar
mysterywolf 已提交
927
#endif /* RT_USING_MEMHEAP */
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948

#ifdef RT_USING_MEMPOOL
/**
 * Base structure of Memory pool object
 */
struct rt_mempool
{
    struct rt_object parent;                            /**< inherit from rt_object */

    void            *start_address;                     /**< memory pool start */
    rt_size_t        size;                              /**< size of memory pool */

    rt_size_t        block_size;                        /**< size of memory blocks */
    rt_uint8_t      *block_list;                        /**< memory blocks list */

    rt_size_t        block_total_count;                 /**< numbers of memory block */
    rt_size_t        block_free_count;                  /**< numbers of free memory block */

    rt_list_t        suspend_thread;                    /**< threads pended on this resource */
};
typedef struct rt_mempool *rt_mp_t;
mysterywolf's avatar
mysterywolf 已提交
949
#endif /* RT_USING_MEMPOOL */
950

O
Owen 已提交
951
/**@}*/
952 953 954 955 956 957

#ifdef RT_USING_DEVICE
/**
 * @addtogroup Device
 */

O
Owen 已提交
958
/**@{*/
959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975

/**
 * device (I/O) class type
 */
enum rt_device_class_type
{
    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 */
lymzzyh's avatar
lymzzyh 已提交
976
    RT_Device_Class_USBOTG,                             /**< USB OTG bus */
977 978 979 980
    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 */
G
Grissiom 已提交
981
    RT_Device_Class_Pipe,                               /**< Pipe device */
G
Grissiom 已提交
982
    RT_Device_Class_Portal,                             /**< Portal device */
H
heyuanjie87 已提交
983
    RT_Device_Class_Timer,                              /**< Timer device */
984
    RT_Device_Class_Miscellaneous,                      /**< Miscellaneous device */
G
guozhanxin 已提交
985
    RT_Device_Class_Sensor,                             /**< Sensor device */
T
tyustli 已提交
986
    RT_Device_Class_Touch,                              /**< Touch device */
987
    RT_Device_Class_PHY,                                /**< PHY device */
988
    RT_Device_Class_Security,                           /**< Security device */
989 990 991 992 993 994
    RT_Device_Class_WLAN,                               /**< WLAN device */
    RT_Device_Class_Pin,                                /**< Pin device */
    RT_Device_Class_ADC,                                /**< ADC device */
    RT_Device_Class_DAC,                                /**< DAC device */
    RT_Device_Class_WDT,                                /**< WDT device */
    RT_Device_Class_PWM,                                /**< PWM device */
995
    RT_Device_Class_Unknown                             /**< unknown device */
996 997 998
};

/**
999
 * device flags definitions
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
 */
#define RT_DEVICE_FLAG_DEACTIVATE       0x000           /**< device is not not initialized */

#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 */

#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 */

#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 */

#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 已提交
1023
#define RT_DEVICE_OFLAG_MASK            0xf0f           /**< mask of open flag */
1024 1025 1026 1027 1028 1029

/**
 * general device commands
 */
#define RT_DEVICE_CTRL_RESUME           0x01            /**< resume device */
#define RT_DEVICE_CTRL_SUSPEND          0x02            /**< suspend device */
B
bernard 已提交
1030
#define RT_DEVICE_CTRL_CONFIG           0x03            /**< configure device */
S
SummerGift 已提交
1031
#define RT_DEVICE_CTRL_CLOSE            0x04            /**< close device */
B
bernard 已提交
1032 1033 1034 1035

#define RT_DEVICE_CTRL_SET_INT          0x10            /**< set interrupt */
#define RT_DEVICE_CTRL_CLR_INT          0x11            /**< clear interrupt */
#define RT_DEVICE_CTRL_GET_INT          0x12            /**< get interrupt status */
1036

1037 1038 1039 1040 1041
/**
 * device control
 */
#define RT_DEVICE_CTRL_BASE(Type)        (RT_Device_Class_##Type * 0x100)

1042 1043 1044
/**
 * special device commands
 */
1045 1046 1047 1048 1049 1050 1051
#define RT_DEVICE_CTRL_CHAR_STREAM      (RT_DEVICE_CTRL_BASE(Char) + 1)             /**< stream mode on char device */
#define RT_DEVICE_CTRL_BLK_GETGEOME     (RT_DEVICE_CTRL_BASE(Block) + 1)            /**< get geometry information   */
#define RT_DEVICE_CTRL_BLK_SYNC         (RT_DEVICE_CTRL_BASE(Block) + 2)            /**< flush data to block device */
#define RT_DEVICE_CTRL_BLK_ERASE        (RT_DEVICE_CTRL_BASE(Block) + 3)            /**< erase block on block device */
#define RT_DEVICE_CTRL_BLK_AUTOREFRESH  (RT_DEVICE_CTRL_BASE(Block) + 4)            /**< block device : enter/exit auto refresh mode */
#define RT_DEVICE_CTRL_NETIF_GETMAC     (RT_DEVICE_CTRL_BASE(NetIf) + 1)            /**< get mac address */
#define RT_DEVICE_CTRL_MTD_FORMAT       (RT_DEVICE_CTRL_BASE(MTD) + 1)              /**< format a MTD device */
1052 1053

typedef struct rt_device *rt_device_t;
1054 1055

#ifdef RT_USING_DEVICE_OPS
1056 1057 1058
/**
 * operations set for device object
 */
B
Bernard Xiong 已提交
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
struct rt_device_ops
{
    /* 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, int cmd, void *args);
};
mysterywolf's avatar
mysterywolf 已提交
1069
#endif /* RT_USING_DEVICE_OPS */
B
Bernard Xiong 已提交
1070

1071 1072 1073 1074 1075
/**
 * WaitQueue structure
 */
struct rt_wqueue
{
1076 1077
    rt_uint32_t flag;
    rt_list_t waiting_list;
1078 1079 1080
};
typedef struct rt_wqueue rt_wqueue_t;

1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
/**
 * Device structure
 */
struct rt_device
{
    struct rt_object          parent;                   /**< inherit from rt_object */

    enum rt_device_class_type type;                     /**< device type */
    rt_uint16_t               flag;                     /**< device flag */
    rt_uint16_t               open_flag;                /**< device open flag */

G
Grissiom 已提交
1092
    rt_uint8_t                ref_count;                /**< reference count */
1093 1094 1095 1096 1097 1098
    rt_uint8_t                device_id;                /**< 0 - 255 */

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

B
Bernard Xiong 已提交
1099 1100 1101
#ifdef RT_USING_DEVICE_OPS
    const struct rt_device_ops *ops;
#else
1102 1103 1104 1105 1106 1107
    /* 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);
B
bernard 已提交
1108
    rt_err_t  (*control)(rt_device_t dev, int cmd, void *args);
mysterywolf's avatar
mysterywolf 已提交
1109
#endif /* RT_USING_DEVICE_OPS */
B
bernard 已提交
1110

1111
#ifdef RT_USING_POSIX_DEVIO
B
bernard 已提交
1112
    const struct dfs_file_ops *fops;
1113
    struct rt_wqueue wait_queue;
mysterywolf's avatar
mysterywolf 已提交
1114
#endif /* RT_USING_POSIX_DEVIO */
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125

    void                     *user_data;                /**< device private data */
};

/**
 * block device geometry structure
 */
struct rt_device_blk_geometry
{
    rt_uint32_t sector_count;                           /**< count of sectors */
    rt_uint32_t bytes_per_sector;                       /**< number of bytes per sector */
1126
    rt_uint32_t block_size;                             /**< number of bytes to erase one block */
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
};

/**
 * sector arrange struct on block device
 */
struct rt_device_blk_sectors
{
    rt_uint32_t sector_begin;                           /**< begin sector */
    rt_uint32_t sector_end;                             /**< end sector   */
};

/**
 * cursor control command
 */
#define RT_DEVICE_CTRL_CURSOR_SET_POSITION  0x10
#define RT_DEVICE_CTRL_CURSOR_SET_TYPE      0x11

/**
 * graphic device control command
 */
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
#define RTGRAPHIC_CTRL_RECT_UPDATE      (RT_DEVICE_CTRL_BASE(Graphic) + 0)
#define RTGRAPHIC_CTRL_POWERON          (RT_DEVICE_CTRL_BASE(Graphic) + 1)
#define RTGRAPHIC_CTRL_POWEROFF         (RT_DEVICE_CTRL_BASE(Graphic) + 2)
#define RTGRAPHIC_CTRL_GET_INFO         (RT_DEVICE_CTRL_BASE(Graphic) + 3)
#define RTGRAPHIC_CTRL_SET_MODE         (RT_DEVICE_CTRL_BASE(Graphic) + 4)
#define RTGRAPHIC_CTRL_GET_EXT          (RT_DEVICE_CTRL_BASE(Graphic) + 5)
#define RTGRAPHIC_CTRL_SET_BRIGHTNESS   (RT_DEVICE_CTRL_BASE(Graphic) + 6)
#define RTGRAPHIC_CTRL_GET_BRIGHTNESS   (RT_DEVICE_CTRL_BASE(Graphic) + 7)
#define RTGRAPHIC_CTRL_GET_MODE         (RT_DEVICE_CTRL_BASE(Graphic) + 8)
#define RTGRAPHIC_CTRL_GET_STATUS       (RT_DEVICE_CTRL_BASE(Graphic) + 9)
#define RTGRAPHIC_CTRL_PAN_DISPLAY      (RT_DEVICE_CTRL_BASE(Graphic) + 10)
#define RTGRAPHIC_CTRL_WAIT_VSYNC       (RT_DEVICE_CTRL_BASE(Graphic) + 11)
1159

1160
/* graphic device */
1161 1162 1163 1164 1165 1166 1167 1168 1169
enum
{
    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,
B
bernard 已提交
1170
    RTGRAPHIC_PIXEL_FORMAT_BGR565 = RTGRAPHIC_PIXEL_FORMAT_RGB565P,
1171 1172
    RTGRAPHIC_PIXEL_FORMAT_RGB666,
    RTGRAPHIC_PIXEL_FORMAT_RGB888,
1173
    RTGRAPHIC_PIXEL_FORMAT_BGR888,
1174 1175
    RTGRAPHIC_PIXEL_FORMAT_ARGB888,
    RTGRAPHIC_PIXEL_FORMAT_ABGR888,
1176
    RTGRAPHIC_PIXEL_FORMAT_RESERVED,
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
};

/**
 * build a pixel position according to (x, y) coordinates.
 */
#define RTGRAPHIC_PIXEL_POSITION(x, y)  ((x << 16) | y)

/**
 * graphic device information structure
 */
struct rt_device_graphic_info
{
    rt_uint8_t  pixel_format;                           /**< graphic format */
    rt_uint8_t  bits_per_pixel;                         /**< bits per pixel */
1191
    rt_uint16_t pitch;                                  /**< bytes per line */
1192 1193 1194 1195 1196

    rt_uint16_t width;                                  /**< width of graphic device */
    rt_uint16_t height;                                 /**< height of graphic device */

    rt_uint8_t *framebuffer;                            /**< frame buffer */
1197
    rt_uint32_t smem_len;                               /**< allocated frame buffer size */
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
};

/**
 * rectangle information structure
 */
struct rt_device_rect_info
{
    rt_uint16_t x;                                      /**< x coordinate */
    rt_uint16_t y;                                      /**< y coordinate */
    rt_uint16_t width;                                  /**< width */
    rt_uint16_t height;                                 /**< height */
};

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

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

    void (*blit_line) (const char *pixel, int x, int y, rt_size_t size);
};
#define rt_graphix_ops(device)          ((struct rt_device_graphic_ops *)(device->user_data))

O
Owen 已提交
1226
/**@}*/
mysterywolf's avatar
mysterywolf 已提交
1227
#endif /* RT_USING_DEVICE */
1228 1229 1230 1231 1232

#ifdef __cplusplus
}
#endif

B
bernard 已提交
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
#ifdef __cplusplus
/* RT-Thread definitions for C++ */
namespace rtthread {

enum TICK_WAIT {
    WAIT_NONE = 0,
    WAIT_FOREVER = -1,
};

}

mysterywolf's avatar
mysterywolf 已提交
1244
#endif /* __cplusplus */
B
bernard 已提交
1245

mysterywolf's avatar
mysterywolf 已提交
1246
#endif /* __RT_DEF_H__ */