Lines Matching full:error

3  * CAAM Error Reporting
11 #include "error.h"
66 { 0x00, "No error." },
67 …{ 0x01, "SGT Length Error. The descriptor is trying to read more data than is contained in the SGT…
68 { 0x02, "SGT Null Entry Error." },
69 { 0x03, "Job Ring Control Error. There is a bad value in the Job Ring Control register." },
82 … FIFO STORE decremented the input or output sequence length below 0. This error may result if a bu…
84 { 0x12, "Shared Descriptor Header Error" },
85 { 0x13, "Header Error. Invalid length or parity, or certain other problems." },
86 { 0x14, "Burster Error. Burster has gotten to an illegal state" },
87 …{ 0x15, "Context Register Length Error. The descriptor is trying to read or write past the end of …
88 { 0x16, "DMA Error" },
92 { 0x1C, "DECO Watchdog timer timeout error" },
94 { 0x1E, "DECO attempted to copy data from a DECO that had an unmasked Descriptor error" },
95 …{ 0x1F, "LIODN error. DECO was trying to share from itself or from another DECO but the two Non-SE…
97 …{ 0x21, "Nonce error. When using EKT (CCM) key encryption option in the FIFO STORE Command, the No…
99 { 0x23, "Read Input Frame error" },
100 { 0x24, "JDKEK, TDKEK or TDSK not loaded error" },
101 { 0x80, "DNR (do not run) error" },
104 { 0x83, "Anti-replay LATE error" },
105 { 0x84, "Anti-replay REPLAY error" },
109 …{ 0x88, "Protocol Format Error - A protocol has seen an error in the format of data received. When…
110 …{ 0x89, "Protocol Size Error - A protocol has seen an error in size. When running RSA, pdb size N …
111 { 0xC1, "Blob Command error: Undefined mode" },
112 { 0xC2, "Blob Command error: Secure Memory Blob mode error" },
113 { 0xC4, "Blob Command error: Black Blob key or input size error" },
114 { 0xC5, "Blob Command error: Invalid key destination" },
115 { 0xC8, "Blob Command error: Trusted/Secure mode error" },
124 { 0x00, "No error" },
126 { 0x20, "FD format error"},
127 { 0x21, "FD command format error"},
128 { 0x23, "FL format error"},
156 { 0xD0, "FLC read error"},
157 { 0xD1, "FL read error"},
158 { 0xD2, "FL write error"},
159 { 0xD3, "OF SGT write error"},
160 { 0xD4, "PTA read error"},
161 { 0xD5, "PTA write error"},
162 { 0xD6, "OF SGT F-bit write error"},
163 { 0xD7, "ASA write error"},
164 { 0xE1, "FLC[ICR]=0 ICID error"},
165 { 0xE2, "FLC[ICR]=1 ICID error"},
186 "No error.",
187 "Mode error.",
188 "Data size error.",
189 "Key size error.",
190 "PKHA A memory size error.",
191 "PKHA B memory size error.",
192 "Data arrived out of sequence error.",
193 "PKHA divide-by-zero error.",
194 "PKHA modulus even error.",
195 "DES key parity error.",
197 "Hardware error.",
216 "Hardware error",
221 const char *error) in report_ccb_status() argument
247 /* RNG-only error */ in report_ccb_status()
261 error, idx_str, idx, cha_str, cha_err_code, in report_ccb_status()
268 const char *error) in report_jump_status() argument
271 status, error, __func__); in report_jump_status()
277 const char *error) in report_deco_status() argument
283 const char *err_str = "unidentified error value 0x"; in report_deco_status()
302 status, error, idx_str, idx, err_str, err_err_code); in report_deco_status()
308 const char *error) in report_qi_status() argument
311 const char *err_str = "unidentified error value 0x"; in report_qi_status()
325 status, error, err_str, err_err_code); in report_qi_status()
331 const char *error) in report_jr_status() argument
334 status, error, __func__); in report_jr_status()
340 const char *error) in report_cond_code_status() argument
343 status, error, __func__); in report_cond_code_status()
352 const char *error); in caam_strstatus()
353 const char *error; in caam_strstatus() member
355 { NULL, "No error" }, in caam_strstatus()
373 const char *error = status_src[ssrc].error; in caam_strstatus() local
376 * If there is an error handling function, call it to report the error. in caam_strstatus()
377 * Otherwise print the error source name. in caam_strstatus()
380 return status_src[ssrc].report_ssed(jrdev, status, error); in caam_strstatus()
382 if (error) in caam_strstatus()
383 dev_err(jrdev, "%d: %s\n", ssrc, error); in caam_strstatus()
385 dev_err(jrdev, "%d: unknown error source\n", ssrc); in caam_strstatus()
392 MODULE_DESCRIPTION("FSL CAAM error reporting");