diff options
author | Sudarsana Reddy Kalluru <skalluru@marvell.com> | 2019-08-30 10:42:05 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-08-31 23:32:30 +0300 |
commit | 3b86bd076284724489381e391f84a34078b3d5bc (patch) | |
tree | 846cda0cf8007662f760e707e06396910b9f145a /include/linux/qed | |
parent | d44a3ced7023d3ff05e3be947b094e1d96562584 (diff) | |
download | linux-3b86bd076284724489381e391f84a34078b3d5bc.tar.xz |
qed: Add APIs for configuring grc dump config flags.
The patch adds driver support for configuring the grc dump config flags.
Signed-off-by: Sudarsana Reddy Kalluru <skalluru@marvell.com>
Signed-off-by: Ariel Elior <aelior@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/qed')
-rw-r--r-- | include/linux/qed/qed_if.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/qed/qed_if.h b/include/linux/qed/qed_if.h index 06fd9580c9e5..e35463860c84 100644 --- a/include/linux/qed/qed_if.h +++ b/include/linux/qed/qed_if.h @@ -1143,6 +1143,15 @@ struct qed_common_ops { */ int (*read_nvm_cfg)(struct qed_dev *cdev, u8 **buf, u32 cmd, u32 entity_id); + +/** + * @brief set_grc_config - Configure value for grc config id. + * @param cdev + * @param cfg_id - grc config id + * @param val - grc config value + * + */ + int (*set_grc_config)(struct qed_dev *cdev, u32 cfg_id, u32 val); }; #define MASK_FIELD(_name, _value) \ |