Lines Matching +full:interrupt +full:- +full:nmi
12 The In-Band Error Correction Code (IBECC) improves reliability by providing
15 not support the out-of-band ECC.
58 * Correctable Error (CE) - error is detected and corrected by IBECC module.
60 * Uncorrectable Error (UE) - error is detected by IBECC module and not
63 The IBECC driver provides error type for the higher-level application to
65 syndrome is not used in the IBECC driver but provided to higher-level
71 Exceptional care needs to be taken with Non Maskable Interrupt (NMI). NMI will
73 that no locking mechanism can protect code against an NMI happening. Zephyr's
75 higher-level synchronization primitives. So, you cannot share anything that is
76 "protected" by a lock with an NMI, because the protection does not work. The
78 against an NMI is the atomic layer. This also applies to callback function
79 which is called by NMI handler.