comparison src/g23m-fad/tcpip/include/rvm_priorities.h @ 1:fa8dc04885d8

src/g23m-*: import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Oct 2020 06:25:50 +0000
parents
children
comparison
equal deleted inserted replaced
0:4e78acac3d88 1:fa8dc04885d8
1 /****************************************************************************
2 * *
3 * Name rvm_priorities.h *
4 * *
5 * Function this file priorities defintitions for basic SWEs *
6 * It includes a file rvm_ext_priorities.h where are defined *
7 * "custom" priorities. *
8 * *
9 * Version 0.1 *
10 * *
11 * Date Modification *
12 * ------------------------------------ *
13 * 10/11/2000 Create *
14 * *
15 * Author Cristian Livadiotti (c-livadiotti@ti.com) *
16 * *
17 * (C) Copyright 2000 by Texas Instruments Incorporated, All Rights Reserved*
18 ****************************************************************************/
19
20 #ifndef __RVM_PRIORITIES_H_
21 #define __RVM_PRIORITIES_H_
22
23 #include "rvm_ext_priorities.h"
24
25 /* PRIORITIES SETTING: */
26 /* All user priority should be set under 250: */
27 /* Higher values are reserved */
28
29 /*
30 ** Bluetooth Priorities:
31 ** All set to same value, except ATP (not a task) and HCI (valid on PC only)
32 */
33 #define RVM_HCI_TASK_PRIORITY (250)
34 #define RVM_L2CAP_TASK_PRIORITY (240)
35 #define RVM_BTCTRL_TASK_PRIORITY (240)
36 #define RVM_RFCOMM_TASK_PRIORITY (240)
37 #define RVM_SPP_TASK_PRIORITY (240)
38 #define RVM_SDP_TASK_PRIORITY (240)
39 #define RVM_HSG_TASK_PRIORITY (240)
40 #define RVM_DUN_GW_TASK_PRIORITY (240)
41 #define RVM_FAX_GW_TASK_PRIORITY (240)
42 #define RVM_ATP_UART_TASK_PRIORITY (240)
43 #define RVM_ATP_TASK_PRIORITY (255)
44
45 /*
46 ** Drivers and Services Priorities
47 ** Note: FFS priority should be lower than every user
48 */
49 #define RVM_SPI_TASK_PRIORITY (39)
50 #define RVM_TTY_TASK_PRIORITY (240)
51 #define RVM_AUDIO_TASK_PRIORITY (245)
52 #define RVM_AUDIO_BGD_TASK_PRIORITY (246)
53 #define RVM_RTC_TASK_PRIORITY (248)
54 #define RVM_FFS_TASK_PRIORITY (250)
55 #define RVM_TRACE_TASK_PRIORITY (251)
56 #define RVM_DAR_TASK_PRIORITY (245)
57 #define RVM_ETM_TASK_PRIORITY (249)
58 #define RVM_MKS_TASK_PRIORITY (255)
59 #define RVM_KPD_TASK_PRIORITY (10)
60
61 #define RVM_MPM_TASK_PRIORITY (242)
62
63 #define RVM_RNET_WS_TASK_PRIORITY (80)
64 #define RVM_RNET_RT_TASK_PRIORITY (240)
65 #define RVM_DCM_TASK_PRIORITY (240)
66 #define RVM_MFW_TASK_PRIORITY (245)
67
68 /*
69 ** RV Test Menu and Dummy Tasks Priorities
70 */
71 #define RVM_RVTEST_MENU_TASK_PRIORITY (240)
72 #define RVM_DUMMY_TASK_PRIORITY (80)
73 //#define IDLE_TASK_PRIORITY (80) /* A-M-E-N-D-E-D! */
74 #define RVM_INVKR_TASK_PRIORITY (240) /* A-M-E-N-D-E-D! */
75 #define RVM_TE1_TASK_PRIORITY (240) /* A-M-E-N-D-E-D! */
76 #define RVM_TE2_TASK_PRIORITY (240) /* A-M-E-N-D-E-D! */
77 #define RVM_TE3_TASK_PRIORITY (240) /* A-M-E-N-D-E-D! */
78 #define RVM_TE4_TASK_PRIORITY (240) /* A-M-E-N-D-E-D! */
79 #define RVM_TE5_TASK_PRIORITY (240) /* A-M-E-N-D-E-D! */
80 #define RVM_TE6_TASK_PRIORITY (240) /* A-M-E-N-D-E-D! */
81
82 #define RVM_TMS_TASK_PRIORITY (200) /* A-M-E-N-D-E-D! */
83 #endif /* __RVM_PRIORITIES_H_ */
84