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_FLG_RD_H_
|
|
|
|
#define _ICE_FLG_RD_H_
|
|
|
|
|
|
|
|
struct ice_flg_rd_item {
|
|
|
|
u16 idx;
|
|
|
|
bool expose;
|
|
|
|
u8 intr_flg_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
void ice_flg_rd_dump(struct ice_hw *hw, struct ice_flg_rd_item *item);
|
|
|
|
struct ice_flg_rd_item *ice_flg_rd_table_get(struct ice_hw *hw);
|
|
|
|
u64 ice_flg_redirect(struct ice_flg_rd_item *table, u64 psr_flg);
|
|
|
|
#endif /* _ICE_FLG_RD_H_ */
|