]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Core/Dxe/Event/Tpl.c
move header files in MdeModulePkg\Core\Dxe except DxeMain.h into their corresponding...
[mirror_edk2.git] / MdeModulePkg / Core / Dxe / Event / Tpl.c
... / ...
CommitLineData
1/** @file\r
2 Task priority (TPL) functions.\r
3\r
4Copyright (c) 2006 - 2008, Intel Corporation. <BR>\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include "DxeMain.h"\r
16#include "Event.h"\r
17\r
18/**\r
19 Set Interrupt State.\r
20\r
21 @param Enable The state of enable or disable interrupt\r
22\r
23**/\r
24VOID\r
25CoreSetInterruptState (\r
26 IN BOOLEAN Enable\r
27 )\r
28{\r
29 if (gCpu != NULL) {\r
30 if (Enable) {\r
31 gCpu->EnableInterrupt(gCpu);\r
32 } else {\r
33 gCpu->DisableInterrupt(gCpu);\r
34 }\r
35 }\r
36}\r
37\r
38\r
39/**\r
40 Raise the task priority level to the new level.\r
41 High level is implemented by disabling processor interrupts.\r
42\r
43 @param NewTpl New task priority level\r
44\r
45 @return The previous task priority level\r
46\r
47**/\r
48EFI_TPL\r
49EFIAPI\r
50CoreRaiseTpl (\r
51 IN EFI_TPL NewTpl\r
52 )\r
53{\r
54 EFI_TPL OldTpl;\r
55\r
56 OldTpl = gEfiCurrentTpl;\r
57 ASSERT (OldTpl <= NewTpl);\r
58 ASSERT (VALID_TPL (NewTpl));\r
59\r
60 //\r
61 // If raising to high level, disable interrupts\r
62 //\r
63 if (NewTpl >= TPL_HIGH_LEVEL && OldTpl < TPL_HIGH_LEVEL) {\r
64 CoreSetInterruptState (FALSE);\r
65 }\r
66\r
67 //\r
68 // Set the new value\r
69 //\r
70 gEfiCurrentTpl = NewTpl;\r
71\r
72 return OldTpl;\r
73}\r
74\r
75\r
76\r
77\r
78/**\r
79 Lowers the task priority to the previous value. If the new\r
80 priority unmasks events at a higher priority, they are dispatched.\r
81\r
82 @param NewTpl New, lower, task priority\r
83\r
84**/\r
85VOID\r
86EFIAPI\r
87CoreRestoreTpl (\r
88 IN EFI_TPL NewTpl\r
89 )\r
90{\r
91 EFI_TPL OldTpl;\r
92\r
93 OldTpl = gEfiCurrentTpl;\r
94 ASSERT (NewTpl <= OldTpl);\r
95 ASSERT (VALID_TPL (NewTpl));\r
96\r
97 //\r
98 // If lowering below HIGH_LEVEL, make sure\r
99 // interrupts are enabled\r
100 //\r
101\r
102 if (OldTpl >= TPL_HIGH_LEVEL && NewTpl < TPL_HIGH_LEVEL) {\r
103 gEfiCurrentTpl = TPL_HIGH_LEVEL;\r
104 }\r
105\r
106 //\r
107 // Dispatch any pending events\r
108 //\r
109 while (((-2 << NewTpl) & gEventPending) != 0) {\r
110 gEfiCurrentTpl = HighBitSet64 (gEventPending);\r
111 if (gEfiCurrentTpl < TPL_HIGH_LEVEL) {\r
112 CoreSetInterruptState (TRUE);\r
113 }\r
114 CoreDispatchEventNotifies (gEfiCurrentTpl);\r
115 }\r
116\r
117 //\r
118 // Set the new value\r
119 //\r
120\r
121 gEfiCurrentTpl = NewTpl;\r
122\r
123 //\r
124 // If lowering below HIGH_LEVEL, make sure\r
125 // interrupts are enabled\r
126 //\r
127 if (gEfiCurrentTpl < TPL_HIGH_LEVEL) {\r
128 CoreSetInterruptState (TRUE);\r
129 }\r
130\r
131}\r