Home | History | Annotate | Download | only in PiSmmCpuDxeSmm

Lines Matching refs:Timer

2 SMM Timer feature support

28 Initialize Timer for SMM AP Sync.
55 Start Timer for SMM AP Sync.
69 Check if the SMM AP Sync timer is timeout.
71 @param Timer The start timer from the begin.
77 IN UINT64 Timer
85 // We need to consider the case that CurrentTimer is equal to Timer
86 // when some timer runs too slow and CPU runs fast. We think roll over
93 if (CurrentTimer <= Timer) {
94 Delta = Timer - CurrentTimer;
99 Delta = mCycle - (CurrentTimer - Timer) + 1;
105 if (CurrentTimer >= Timer) {
106 Delta = CurrentTimer - Timer;
111 Delta = mCycle - (Timer - CurrentTimer) + 1;