2022-09-06 04:00:10 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2023-09-13 12:21:49 +00:00
|
|
|
* Copyright(c) 2001-2022 Intel Corporation
|
2022-09-06 04:00:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ICE_PARSER_UTIL_H_
|
|
|
|
#define _ICE_PARSER_UTIL_H_
|
|
|
|
|
|
|
|
#include "ice_imem.h"
|
|
|
|
#include "ice_metainit.h"
|
|
|
|
|
|
|
|
struct ice_lbl_item {
|
|
|
|
u16 idx;
|
|
|
|
char label[64];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ice_pkg_sect_hdr {
|
|
|
|
__le16 count;
|
|
|
|
__le16 offset;
|
|
|
|
};
|
|
|
|
|
|
|
|
void ice_lbl_dump(struct ice_hw *hw, struct ice_lbl_item *item);
|
|
|
|
void ice_parse_item_dflt(struct ice_hw *hw, u16 idx, void *item,
|
|
|
|
void *data, int size);
|
|
|
|
|
|
|
|
void *ice_parser_sect_item_get(u32 sect_type, void *section,
|
|
|
|
u32 index, u32 *offset);
|
|
|
|
|
|
|
|
void *ice_parser_create_table(struct ice_hw *hw, u32 sect_type,
|
|
|
|
u32 item_size, u32 length,
|
|
|
|
void *(*handler)(u32 sect_type, void *section,
|
|
|
|
u32 index, u32 *offset),
|
|
|
|
void (*parse_item)(struct ice_hw *hw, u16 idx,
|
|
|
|
void *item, void *data,
|
|
|
|
int size),
|
|
|
|
bool no_offset);
|
|
|
|
#endif /* _ICE_PARSER_UTIL_H_ */
|