Searched refs:tisr (Results 1 - 8 of 8) sorted by relevance

/seL4-refos-master/kernel/include/drivers/timer/
H A Dam335x.h21 uint32_t tisr; // 28h IRQSTATUS Timer IRQSTATUS Register member in struct:timer
46 bool_t overflow = !!(timer->tisr & TISR_OVF_FLAG);
69 if (timer->tisr & TISR_OVF_FLAG) {
71 timer->tisr = TISR_OVF_FLAG;
72 assert((timer->tisr & TISR_OVF_FLAG) == 0);
75 if (timer->tisr & TISR_MATCH_FLAG) {
80 timer->tisr = TISR_MATCH_FLAG;
81 assert((timer->tisr & TISR_MATCH_FLAG) == 0);
88 timer->tisr = TISR_OVF_FLAG | TISR_MATCH_FLAG | TISR_TCAR_FLAG;
H A Domap3430.h19 uint32_t tisr; /* GPTIMER_TISR 0x18 */ member in struct:timer
53 bool_t overflow = !!(timer->tisr & TISR_OVF_FLAG);
61 if (timer->tisr & TISR_OVF_FLAG) {
66 timer->tisr = TISR_OVF_FLAG | TISR_MATCH_FLAG;
67 assert((timer->tisr & TISR_OVF_FLAG) == 0);
72 timer->tisr = TISR_OVF_FLAG;
/seL4-refos-master/libs/libplatsupport/src/mach/omap/
H A Dgpt.c148 uint32_t tisr; // GPTIMER_TISR 0x18 member in struct:gpt_map
183 uint32_t tisr = gpt->gpt_map->tisr; local
186 if (tisr & BIT(OVF_IT_FLAG)) {
191 gpt->gpt_map->tisr = (BIT(OVF_IT_FLAG) | BIT(MAT_IT_FLAG) | BIT(TCAR_IT_FLAG));
198 if (tisr & BIT(OVF_IT_FLAG)) {
200 } else if (tisr & BIT(MAT_IT_FLAG)) {
275 gpt->gpt_map->tisr |= BIT(OVF_IT_FLAG);
286 assert(!(gpt->gpt_map->tisr & BIT(OVF_IT_FLAG)));
312 overflow = !!(gpt->gpt_map->tisr
[all...]
/seL4-refos-master/projects/util_libs/libplatsupport/src/mach/omap/
H A Dgpt.c148 uint32_t tisr; // GPTIMER_TISR 0x18 member in struct:gpt_map
183 uint32_t tisr = gpt->gpt_map->tisr; local
186 if (tisr & BIT(OVF_IT_FLAG)) {
191 gpt->gpt_map->tisr = (BIT(OVF_IT_FLAG) | BIT(MAT_IT_FLAG) | BIT(TCAR_IT_FLAG));
198 if (tisr & BIT(OVF_IT_FLAG)) {
200 } else if (tisr & BIT(MAT_IT_FLAG)) {
275 gpt->gpt_map->tisr |= BIT(OVF_IT_FLAG);
286 assert(!(gpt->gpt_map->tisr & BIT(OVF_IT_FLAG)));
312 overflow = !!(gpt->gpt_map->tisr
[all...]
/seL4-refos-master/libs/libplatsupport/src/plat/am335x/
H A Dtimer.c100 dmt->hw->tisr = TISR_IRQ_CLEAR;
127 dmt->hw->tisr = TISR_IRQ_CLEAR;
140 dmt->hw->tisr = TISR_IRQ_CLEAR;
155 return dmt->hw->tisr & TISR_OVF_IT_FLAG;
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/am335x/
H A Dtimer.c100 dmt->hw->tisr = TISR_IRQ_CLEAR;
127 dmt->hw->tisr = TISR_IRQ_CLEAR;
140 dmt->hw->tisr = TISR_IRQ_CLEAR;
155 return dmt->hw->tisr & TISR_OVF_IT_FLAG;
/seL4-refos-master/libs/libplatsupport/plat_include/am335x/platsupport/plat/
H A Dtimer.h46 uint32_t tisr; // 28h IRQSTATUS Timer IRQSTATUS Register member in struct:dmt_map
/seL4-refos-master/projects/util_libs/libplatsupport/plat_include/am335x/platsupport/plat/
H A Dtimer.h46 uint32_t tisr; // 28h IRQSTATUS Timer IRQSTATUS Register member in struct:dmt_map

Completed in 31 milliseconds