Home
last modified time | relevance | path

Searched refs:maxLatencyNs (Results 1 – 4 of 4) sorted by relevance

/device/google/contexthub/firmware/os/platform/stm32/
Dexti.c110 static void extiUpdateMaxLatency(uint32_t maxLatencyNs) in extiUpdateMaxLatency() argument
112 if (!maxLatencyNs && mMaxLatency) in extiUpdateMaxLatency()
114 else if (maxLatencyNs && !mMaxLatency) in extiUpdateMaxLatency()
115 platRequestDevInSleepMode(Stm32sleepDevExti, maxLatencyNs); in extiUpdateMaxLatency()
116 else if (maxLatencyNs && mMaxLatency) in extiUpdateMaxLatency()
117 platAdjustDevInSleepMode(Stm32sleepDevExti, maxLatencyNs); in extiUpdateMaxLatency()
118 mMaxLatency = maxLatencyNs; in extiUpdateMaxLatency()
166 int extiSetMaxLatency(struct ChainedIsr *isr, uint32_t maxLatencyNs) in extiSetMaxLatency() argument
173 if (maxLatencyNs != isr->maxLatencyNs) { in extiSetMaxLatency()
174 latency = isr->maxLatencyNs; in extiSetMaxLatency()
[all …]
/device/google/contexthub/firmware/os/inc/
Disr.h38 uint32_t maxLatencyNs; member
102 if (!latency || (curIsr->maxLatencyNs && curIsr->maxLatencyNs < latency)) in maxLatencyIsr()
103 latency = curIsr->maxLatencyNs; in maxLatencyIsr()
/device/google/contexthub/firmware/os/platform/stm32/inc/plat/
Dexti.h71 int extiSetMaxLatency(struct ChainedIsr *isr, uint32_t maxLatencyNs);
/device/google/contexthub/firmware/os/drivers/vsync/
Dvsync.c202 mTask.isr.maxLatencyNs = MAX_VSYNC_INT_LATENCY; in startTask()