Lines Matching refs:priority
418 low and medium priority interrupts that can be
551 The handlers provided for low and medium priority interrupts are just
558 The high priority interrupt handlers provided may be considered templates
563 This FreeRTOS port supports strict priority-based nesting of interrupts.
564 An interrupt may only nest on top of one of strictly lower priority.
565 Equal priority interrupts concurrently pending are handled in an
566 application-defined sequence before any lower priority interrupts
568 interrupt level (PS.INTLEVEL) is used to control the interrupt priority
573 bounds on interrupt latency (for a given priority) and stack depth.
575 Software prioritization of interrupts at the same priority is controlled
602 the high-priority class of interrupts (which do not interact with
610 If the cause is a level 1 (low-priority) or medium-priority interrupt,
611 the handler enables all interrupts above that priority level after
628 one, before calling the user handler. This allows a higher priority
629 interrupt to pre-empt the lower priority handler.
633 Medium priority interrupts are those at levels 2 up to XCHAL_EXCM_LEVEL,
636 Interrupt levels above XCHAL_EXCM_LEVEL are of the high-priority class.
637 The Xtensa hardware documentation considers medium priority interrupts
638 to be a special case of high-priority interrupts, but from a software
641 Dispatch of medium-priority interrupts is discussed in the section
646 High priority interrupts are those strictly above XCHAL_EXCM_LEVEL,
649 High priority handlers may not directly interact with FreeRTOS at all,
653 to be handled in only a few cycles. A high priority interrupt handler
654 may trigger a software interrupt at a medium or low priority level to
658 priority interrupt, providing for fast dispatch and efficient nesting
659 on top of lower priority interrupts. Handlers are templates included
661 These templates are written for only one interrupt per high priority
665 quickly to the interrupted task or lower priority handler.
743 interrupt handler and all medium and high priority interrupt handlers,
745 unless in a high-priority interrupt handler). These hooks are enabled