habanalabs: rename dev_attr_grp to dev_clk_attr_grp
In this attribute group we are only adding clocks. This is in preparation for adding a device specific attribute group which is not related to clocks. Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
This commit is contained in:
parent
7ae439a061
commit
be028a3648
|
@ -1286,8 +1286,7 @@ struct hl_asic_funcs {
|
|||
bool user_address, u64 val);
|
||||
int (*debugfs_read_dma)(struct hl_device *hdev, u64 addr, u32 size,
|
||||
void *blob_addr);
|
||||
void (*add_device_attr)(struct hl_device *hdev,
|
||||
struct attribute_group *dev_attr_grp);
|
||||
void (*add_device_attr)(struct hl_device *hdev, struct attribute_group *dev_clk_attr_grp);
|
||||
void (*handle_eqe)(struct hl_device *hdev,
|
||||
struct hl_eq_entry *eq_entry);
|
||||
void* (*get_events_stat)(struct hl_device *hdev, bool aggregate,
|
||||
|
@ -3106,7 +3105,7 @@ int hl_set_power(struct hl_device *hdev, int sensor_index, u32 attr, long value)
|
|||
int hl_get_power(struct hl_device *hdev, int sensor_index, u32 attr, long *value);
|
||||
int hl_fw_get_clk_rate(struct hl_device *hdev, u32 *cur_clk, u32 *max_clk);
|
||||
void hl_fw_set_pll_profile(struct hl_device *hdev);
|
||||
void hl_sysfs_add_dev_clk_attr(struct hl_device *hdev, struct attribute_group *dev_attr_grp);
|
||||
void hl_sysfs_add_dev_clk_attr(struct hl_device *hdev, struct attribute_group *dev_clk_attr_grp);
|
||||
|
||||
void hw_sob_get(struct hl_hw_sob *hw_sob);
|
||||
void hw_sob_put(struct hl_hw_sob *hw_sob);
|
||||
|
|
|
@ -426,9 +426,9 @@ static const struct attribute_group *hl_dev_inference_attr_groups[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
void hl_sysfs_add_dev_clk_attr(struct hl_device *hdev, struct attribute_group *dev_attr_grp)
|
||||
void hl_sysfs_add_dev_clk_attr(struct hl_device *hdev, struct attribute_group *dev_clk_attr_grp)
|
||||
{
|
||||
dev_attr_grp->attrs = hl_dev_clk_attrs;
|
||||
dev_clk_attr_grp->attrs = hl_dev_clk_attrs;
|
||||
}
|
||||
|
||||
int hl_sysfs_init(struct hl_device *hdev)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0
|
||||
*
|
||||
* Copyright 2016-2019 HabanaLabs, Ltd.
|
||||
* Copyright 2016-2022 HabanaLabs, Ltd.
|
||||
* All Rights Reserved.
|
||||
*
|
||||
*/
|
||||
|
@ -217,8 +217,7 @@ u64 goya_get_max_power(struct hl_device *hdev);
|
|||
void goya_set_max_power(struct hl_device *hdev, u64 value);
|
||||
|
||||
void goya_set_pll_profile(struct hl_device *hdev, enum hl_pll_frequency freq);
|
||||
void goya_add_device_attr(struct hl_device *hdev,
|
||||
struct attribute_group *dev_attr_grp);
|
||||
void goya_add_device_attr(struct hl_device *hdev, struct attribute_group *dev_clk_attr_grp);
|
||||
int goya_cpucp_info_get(struct hl_device *hdev);
|
||||
int goya_debug_coresight(struct hl_device *hdev, struct hl_ctx *ctx, void *data);
|
||||
void goya_halt_coresight(struct hl_device *hdev, struct hl_ctx *ctx);
|
||||
|
|
|
@ -350,7 +350,7 @@ static DEVICE_ATTR_RW(pm_mng_profile);
|
|||
static DEVICE_ATTR_RW(tpc_clk);
|
||||
static DEVICE_ATTR_RO(tpc_clk_curr);
|
||||
|
||||
static struct attribute *goya_dev_attrs[] = {
|
||||
static struct attribute *goya_clk_dev_attrs[] = {
|
||||
&dev_attr_high_pll.attr,
|
||||
&dev_attr_ic_clk.attr,
|
||||
&dev_attr_ic_clk_curr.attr,
|
||||
|
@ -362,8 +362,7 @@ static struct attribute *goya_dev_attrs[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
void goya_add_device_attr(struct hl_device *hdev,
|
||||
struct attribute_group *dev_attr_grp)
|
||||
void goya_add_device_attr(struct hl_device *hdev, struct attribute_group *dev_clk_attr_grp)
|
||||
{
|
||||
dev_attr_grp->attrs = goya_dev_attrs;
|
||||
dev_clk_attr_grp->attrs = goya_clk_dev_attrs;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue