/* Condition header for registers dump */ struct dbg_dump_cond_hdr { struct dbg_mode_hdr mode; /* Mode header */
u8 block_id; /* block ID */
u8 data_size; /* size in dwords of the data following this header */
};
/* Condition header for idle check */ struct dbg_idle_chk_cond_hdr { struct dbg_mode_hdr mode; /* Mode header */
u16 data_size; /* size in dwords of the data following this header */
};
/* Idle Check result header */ struct dbg_idle_chk_result_hdr {
u16 rule_id; /* Failing rule index */
u16 mem_entry_id; /* Failing memory entry index */
u8 num_dumped_cond_regs; /* number of dumped condition registers */
u8 num_dumped_info_regs; /* number of dumped condition registers */
u8 severity; /* from dbg_idle_chk_severity_types enum */
u8 reserved;
};
/* Idle Check result register header */ struct dbg_idle_chk_result_reg_hdr {
u8 data; #define DBG_IDLE_CHK_RESULT_REG_HDR_IS_MEM_MASK 0x1 #define DBG_IDLE_CHK_RESULT_REG_HDR_IS_MEM_SHIFT 0 #define DBG_IDLE_CHK_RESULT_REG_HDR_REG_ID_MASK 0x7F #define DBG_IDLE_CHK_RESULT_REG_HDR_REG_ID_SHIFT 1
u8 start_entry; /* index of the first checked entry */
u16 size; /* register size in dwords */
};
/* Idle Check rule */ struct dbg_idle_chk_rule {
u16 rule_id; /* Idle Check rule ID */
u8 severity; /* value from dbg_idle_chk_severity_types enum */
u8 cond_id; /* Condition ID */
u8 num_cond_regs; /* number of condition registers */
u8 num_info_regs; /* number of info registers */
u8 num_imms; /* number of immediates in the condition */
u8 reserved1;
u16 reg_offset; /* offset of this rules registers in the idle check * register array (in dbg_idle_chk_reg units).
*/
u16 imm_offset; /* offset of this rules immediate values in the * immediate values array (in dwords).
*/
};
/* Idle check severity types */ enum dbg_idle_chk_severity_types { /* idle check failure should cause an error */
IDLE_CHK_SEVERITY_ERROR, /* idle check failure should cause an error only if theres no traffic */
IDLE_CHK_SEVERITY_ERROR_NO_TRAFFIC, /* idle check failure should cause a warning */
IDLE_CHK_SEVERITY_WARNING,
MAX_DBG_IDLE_CHK_SEVERITY_TYPES
};
/* Debug Bus Storm EID range filter params */ struct dbg_bus_storm_eid_range_params {
u8 min; /* Minimal event ID to filter on */
u8 max; /* Maximal event ID to filter on */
};
/* Debug Bus Storm EID mask filter params */ struct dbg_bus_storm_eid_mask_params {
u8 val; /* Event ID value */
u8 mask; /* Event ID mask. 1s in the mask = dont care bits. */
};
/* Debug Bus Storm EID filter params */ union dbg_bus_storm_eid_params { struct dbg_bus_storm_eid_range_params range; struct dbg_bus_storm_eid_mask_params mask;
};
/* Debug Bus Storm data */ struct dbg_bus_storm_data {
u8 enabled;
u8 mode;
u8 hw_id;
u8 eid_filter_en;
u8 eid_range_not_mask;
u8 cid_filter_en; union dbg_bus_storm_eid_params eid_filter_params;
u32 cid;
};
/***************************** Public Functions *******************************/
/** * qed_dbg_set_bin_ptr(): Sets a pointer to the binary data with debug * arrays. * * @p_hwfn: HW device data. * @bin_ptr: A pointer to the binary data with debug arrays. * * Return: enum dbg status.
*/ enum dbg_status qed_dbg_set_bin_ptr(struct qed_hwfn *p_hwfn, const u8 * const bin_ptr);
/** * qed_read_regs(): Reads registers into a buffer (using GRC). * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @buf: Destination buffer. * @addr: Source GRC address in dwords. * @len: Number of registers to read. * * Return: Void.
*/ void qed_read_regs(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, u32 *buf, u32 addr, u32 len);
/** * qed_read_fw_info(): Reads FW info from the chip. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @fw_info: (Out) a pointer to write the FW info into. * * Return: True if the FW info was read successfully from one of the Storms, * or false if all Storms are in reset. * * The FW info contains FW-related information, such as the FW version, * FW image (main/L2B/kuku), FW timestamp, etc. * The FW info is read from the internal RAM of the first Storm that is not in * reset.
*/ bool qed_read_fw_info(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, struct fw_info *fw_info); /** * qed_dbg_grc_config(): Sets the value of a GRC parameter. * * @p_hwfn: HW device data. * @grc_param: GRC parameter. * @val: Value to set. * * Return: Error if one of the following holds: * - The version wasn't set. * - Grc_param is invalid. * - Val is outside the allowed boundaries.
*/ enum dbg_status qed_dbg_grc_config(struct qed_hwfn *p_hwfn, enum dbg_grc_params grc_param, u32 val);
/** * qed_dbg_grc_set_params_default(): Reverts all GRC parameters to their * default value. * * @p_hwfn: HW device data. * * Return: Void.
*/ void qed_dbg_grc_set_params_default(struct qed_hwfn *p_hwfn); /** * qed_dbg_grc_get_dump_buf_size(): Returns the required buffer size for * GRC Dump. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @buf_size: (OUT) required buffer size (in dwords) for the GRC Dump * data. * * Return: Error if one of the following holds: * - The version wasn't set * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_grc_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *buf_size);
/** * qed_dbg_grc_dump(): Dumps GRC data into the specified buffer. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @dump_buf: Pointer to write the collected GRC data into. * @buf_size_in_dwords:Size of the specified buffer in dwords. * @num_dumped_dwords: (OUT) number of dumped dwords. * * Return: Error if one of the following holds: * - The version wasn't set. * - The specified dump buffer is too small. * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_grc_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *dump_buf,
u32 buf_size_in_dwords,
u32 *num_dumped_dwords);
/** * qed_dbg_idle_chk_get_dump_buf_size(): Returns the required buffer size * for idle check results. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @buf_size: (OUT) required buffer size (in dwords) for the idle check * data. * * return: Error if one of the following holds: * - The version wasn't set. * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_idle_chk_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *buf_size);
/** * qed_dbg_idle_chk_dump: Performs idle check and writes the results * into the specified buffer. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @dump_buf: Pointer to write the idle check data into. * @buf_size_in_dwords: Size of the specified buffer in dwords. * @num_dumped_dwords: (OUT) number of dumped dwords. * * Return: Error if one of the following holds: * - The version wasn't set. * - The specified buffer is too small. * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_idle_chk_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *dump_buf,
u32 buf_size_in_dwords,
u32 *num_dumped_dwords);
/** * qed_dbg_mcp_trace_get_dump_buf_size(): Returns the required buffer size * for mcp trace results. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @buf_size: (OUT) Required buffer size (in dwords) for mcp trace data. * * Return: Error if one of the following holds: * - The version wasn't set. * - The trace data in MCP scratchpad contain an invalid signature. * - The bundle ID in NVRAM is invalid. * - The trace meta data cannot be found (in NVRAM or image file). * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_mcp_trace_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *buf_size);
/** * qed_dbg_mcp_trace_dump(): Performs mcp trace and writes the results * into the specified buffer. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @dump_buf: Pointer to write the mcp trace data into. * @buf_size_in_dwords: Size of the specified buffer in dwords. * @num_dumped_dwords: (OUT) number of dumped dwords. * * Return: Error if one of the following holds: * - The version wasn't set. * - The specified buffer is too small. * - The trace data in MCP scratchpad contain an invalid signature. * - The bundle ID in NVRAM is invalid. * - The trace meta data cannot be found (in NVRAM or image file). * - The trace meta data cannot be read (from NVRAM or image file). * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_mcp_trace_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *dump_buf,
u32 buf_size_in_dwords,
u32 *num_dumped_dwords);
/** * qed_dbg_reg_fifo_get_dump_buf_size(): Returns the required buffer size * for grc trace fifo results. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @buf_size: (OUT) Required buffer size (in dwords) for reg fifo data. * * Return: Error if one of the following holds: * - The version wasn't set * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_reg_fifo_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *buf_size);
/** * qed_dbg_reg_fifo_dump(): Reads the reg fifo and writes the results into * the specified buffer. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @dump_buf: Pointer to write the reg fifo data into. * @buf_size_in_dwords: Size of the specified buffer in dwords. * @num_dumped_dwords: (OUT) number of dumped dwords. * * Return: Error if one of the following holds: * - The version wasn't set. * - The specified buffer is too small. * - DMAE transaction failed. * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_reg_fifo_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *dump_buf,
u32 buf_size_in_dwords,
u32 *num_dumped_dwords);
/** * qed_dbg_igu_fifo_get_dump_buf_size(): Returns the required buffer size * for the IGU fifo results. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @buf_size: (OUT) Required buffer size (in dwords) for the IGU fifo * data. * * Return: Error if one of the following holds: * - The version wasn't set. * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_igu_fifo_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *buf_size);
/** * qed_dbg_igu_fifo_dump(): Reads the IGU fifo and writes the results into * the specified buffer. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @dump_buf: Pointer to write the IGU fifo data into. * @buf_size_in_dwords: Size of the specified buffer in dwords. * @num_dumped_dwords: (OUT) number of dumped dwords. * * Return: Error if one of the following holds: * - The version wasn't set * - The specified buffer is too small * - DMAE transaction failed * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_igu_fifo_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *dump_buf,
u32 buf_size_in_dwords,
u32 *num_dumped_dwords);
/** * qed_dbg_protection_override_get_dump_buf_size(): Returns the required * buffer size for protection override window results. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @buf_size: (OUT) Required buffer size (in dwords) for protection * override data. * * Return: Error if one of the following holds: * - The version wasn't set * Otherwise, returns ok.
*/ enum dbg_status
qed_dbg_protection_override_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *buf_size); /** * qed_dbg_protection_override_dump(): Reads protection override window * entries and writes the results into the specified buffer. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @dump_buf: Pointer to write the protection override data into. * @buf_size_in_dwords: Size of the specified buffer in dwords. * @num_dumped_dwords: (OUT) number of dumped dwords. * * @return: Error if one of the following holds: * - The version wasn't set. * - The specified buffer is too small. * - DMAE transaction failed. * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_protection_override_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *dump_buf,
u32 buf_size_in_dwords,
u32 *num_dumped_dwords); /** * qed_dbg_fw_asserts_get_dump_buf_size(): Returns the required buffer * size for FW Asserts results. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @buf_size: (OUT) Required buffer size (in dwords) for FW Asserts data. * * Return: Error if one of the following holds: * - The version wasn't set. * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_fw_asserts_get_dump_buf_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *buf_size); /** * qed_dbg_fw_asserts_dump(): Reads the FW Asserts and writes the results * into the specified buffer. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @dump_buf: Pointer to write the FW Asserts data into. * @buf_size_in_dwords: Size of the specified buffer in dwords. * @num_dumped_dwords: (OUT) number of dumped dwords. * * Return: Error if one of the following holds: * - The version wasn't set. * - The specified buffer is too small. * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_fw_asserts_dump(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
u32 *dump_buf,
u32 buf_size_in_dwords,
u32 *num_dumped_dwords);
/** * qed_dbg_read_attn(): Reads the attention registers of the specified * block and type, and writes the results into the specified buffer. * * @p_hwfn: HW device data. * @p_ptt: Ptt window used for writing the registers. * @block: Block ID. * @attn_type: Attention type. * @clear_status: Indicates if the attention status should be cleared. * @results: (OUT) Pointer to write the read results into. * * Return: Error if one of the following holds: * - The version wasn't set * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_read_attn(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, enum block_id block, enum dbg_attn_type attn_type, bool clear_status, struct dbg_attn_block_result *results);
/** * qed_dbg_print_attn(): Prints attention registers values in the * specified results struct. * * @p_hwfn: HW device data. * @results: Pointer to the attention read results * * Return: Error if one of the following holds: * - The version wasn't set * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_print_attn(struct qed_hwfn *p_hwfn, struct dbg_attn_block_result *results);
/******************************* Data Types **********************************/
/***************************** Public Functions *******************************/
/** * qed_dbg_user_set_bin_ptr(): Sets a pointer to the binary data with * debug arrays. * * @p_hwfn: HW device data. * @bin_ptr: a pointer to the binary data with debug arrays. * * Return: dbg_status.
*/ enum dbg_status qed_dbg_user_set_bin_ptr(struct qed_hwfn *p_hwfn, const u8 * const bin_ptr);
/** * qed_dbg_alloc_user_data(): Allocates user debug data. * * @p_hwfn: HW device data. * @user_data_ptr: (OUT) a pointer to the allocated memory. * * Return: dbg_status.
*/ enum dbg_status qed_dbg_alloc_user_data(struct qed_hwfn *p_hwfn, void **user_data_ptr);
/** * qed_dbg_get_status_str(): Returns a string for the specified status. * * @status: A debug status code. * * Return: A string for the specified status.
*/ constchar *qed_dbg_get_status_str(enum dbg_status status);
/** * qed_get_idle_chk_results_buf_size(): Returns the required buffer size * for idle check results (in bytes). * * @p_hwfn: HW device data. * @dump_buf: idle check dump buffer. * @num_dumped_dwords: number of dwords that were dumped. * @results_buf_size: (OUT) required buffer size (in bytes) for the parsed * results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_get_idle_chk_results_buf_size(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords,
u32 *results_buf_size); /** * qed_print_idle_chk_results(): Prints idle check results * * @p_hwfn: HW device data. * @dump_buf: idle check dump buffer. * @num_dumped_dwords: number of dwords that were dumped. * @results_buf: buffer for printing the idle check results. * @num_errors: (OUT) number of errors found in idle check. * @num_warnings: (OUT) number of warnings found in idle check. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_print_idle_chk_results(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords, char *results_buf,
u32 *num_errors,
u32 *num_warnings);
/** * qed_dbg_mcp_trace_set_meta_data(): Sets the MCP Trace meta data. * * @p_hwfn: HW device data. * @meta_buf: Meta buffer. * * Return: Void. * * Needed in case the MCP Trace dump doesn't contain the meta data (e.g. due to * no NVRAM access).
*/ void qed_dbg_mcp_trace_set_meta_data(struct qed_hwfn *p_hwfn, const u32 *meta_buf);
/** * qed_get_mcp_trace_results_buf_size(): Returns the required buffer size * for MCP Trace results (in bytes). * * @p_hwfn: HW device data. * @dump_buf: MCP Trace dump buffer. * @num_dumped_dwords: number of dwords that were dumped. * @results_buf_size: (OUT) required buffer size (in bytes) for the parsed * results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_get_mcp_trace_results_buf_size(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords,
u32 *results_buf_size);
/** * qed_print_mcp_trace_results(): Prints MCP Trace results * * @p_hwfn: HW device data. * @dump_buf: MCP trace dump buffer, starting from the header. * @num_dumped_dwords: Member of dwords that were dumped. * @results_buf: Buffer for printing the mcp trace results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_print_mcp_trace_results(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords, char *results_buf);
/** * qed_mcp_trace_free_meta_data(): Frees the MCP Trace meta data. * Should be called after continuous MCP Trace parsing. * * @p_hwfn: HW device data. * * Return: Void.
*/ void qed_mcp_trace_free_meta_data(struct qed_hwfn *p_hwfn);
/** * qed_get_reg_fifo_results_buf_size(): Returns the required buffer size * for reg_fifo results (in bytes). * * @p_hwfn: HW device data. * @dump_buf: Reg fifo dump buffer. * @num_dumped_dwords: Number of dwords that were dumped. * @results_buf_size: (OUT) required buffer size (in bytes) for the parsed * results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_get_reg_fifo_results_buf_size(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords,
u32 *results_buf_size);
/** * qed_print_reg_fifo_results(): Prints reg fifo results. * * @p_hwfn: HW device data. * @dump_buf: Reg fifo dump buffer, starting from the header. * @num_dumped_dwords: Number of dwords that were dumped. * @results_buf: Buffer for printing the reg fifo results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_print_reg_fifo_results(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords, char *results_buf);
/** * qed_get_igu_fifo_results_buf_size(): Returns the required buffer size * for igu_fifo results (in bytes). * * @p_hwfn: HW device data. * @dump_buf: IGU fifo dump buffer. * @num_dumped_dwords: number of dwords that were dumped. * @results_buf_size: (OUT) required buffer size (in bytes) for the parsed * results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_get_igu_fifo_results_buf_size(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords,
u32 *results_buf_size);
/** * qed_print_igu_fifo_results(): Prints IGU fifo results * * @p_hwfn: HW device data. * @dump_buf: IGU fifo dump buffer, starting from the header. * @num_dumped_dwords: Number of dwords that were dumped. * @results_buf: Buffer for printing the IGU fifo results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_print_igu_fifo_results(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords, char *results_buf);
/** * qed_get_protection_override_results_buf_size(): Returns the required * buffer size for protection override results (in bytes). * * @p_hwfn: HW device data. * @dump_buf: Protection override dump buffer. * @num_dumped_dwords: Number of dwords that were dumped. * @results_buf_size: (OUT) required buffer size (in bytes) for the parsed * results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status
qed_get_protection_override_results_buf_size(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords,
u32 *results_buf_size);
/** * qed_print_protection_override_results(): Prints protection override * results. * * @p_hwfn: HW device data. * @dump_buf: Protection override dump buffer, starting from the header. * @num_dumped_dwords: Number of dwords that were dumped. * @results_buf: Buffer for printing the reg fifo results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_print_protection_override_results(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords, char *results_buf);
/** * qed_get_fw_asserts_results_buf_size(): Returns the required buffer size * for FW Asserts results (in bytes). * * @p_hwfn: HW device data. * @dump_buf: FW Asserts dump buffer. * @num_dumped_dwords: number of dwords that were dumped. * @results_buf_size: (OUT) required buffer size (in bytes) for the parsed * results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_get_fw_asserts_results_buf_size(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords,
u32 *results_buf_size);
/** * qed_print_fw_asserts_results(): Prints FW Asserts results. * * @p_hwfn: HW device data. * @dump_buf: FW Asserts dump buffer, starting from the header. * @num_dumped_dwords: number of dwords that were dumped. * @results_buf: buffer for printing the FW Asserts results. * * Return: Error if the parsing fails, ok otherwise.
*/ enum dbg_status qed_print_fw_asserts_results(struct qed_hwfn *p_hwfn,
u32 *dump_buf,
u32 num_dumped_dwords, char *results_buf);
/** * qed_dbg_parse_attn(): Parses and prints attention registers values in * the specified results struct. * * @p_hwfn: HW device data. * @results: Pointer to the attention read results * * Return: Error if one of the following holds: * - The version wasn't set. * Otherwise, returns ok.
*/ enum dbg_status qed_dbg_parse_attn(struct qed_hwfn *p_hwfn, struct dbg_attn_block_result *results); #endif
Messung V0.5
¤ Dauer der Verarbeitung: 0.39 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.